-
Notifications
You must be signed in to change notification settings - Fork 0
/
fakeconn.go
215 lines (177 loc) · 5.15 KB
/
fakeconn.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
Copyright 2015 Gravitational, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package utils
import (
"io"
"net"
"sync"
"time"
"golang.org/x/crypto/ssh"
"github.com/gravitational/trace"
"github.com/sirupsen/logrus"
)
// PipeNetConn implemetns net.Conn from io.Reader,io.Writer and io.Closer
type PipeNetConn struct {
reader io.Reader
writer io.Writer
closer io.Closer
localAddr net.Addr
remoteAddr net.Addr
}
// NewPipeNetConn returns a net.Conn like object
// using Pipe as an underlying implementation over reader, writer and closer
func NewPipeNetConn(reader io.Reader,
writer io.Writer,
closer io.Closer,
fakelocalAddr net.Addr,
fakeRemoteAddr net.Addr) *PipeNetConn {
return &PipeNetConn{
reader: reader,
writer: writer,
closer: closer,
localAddr: fakelocalAddr,
remoteAddr: fakeRemoteAddr,
}
}
func (nc *PipeNetConn) Read(buf []byte) (n int, e error) {
return nc.reader.Read(buf)
}
func (nc *PipeNetConn) Write(buf []byte) (n int, e error) {
return nc.writer.Write(buf)
}
func (nc *PipeNetConn) Close() error {
if nc.closer != nil {
return nc.closer.Close()
}
return nil
}
func (nc *PipeNetConn) LocalAddr() net.Addr {
return nc.localAddr
}
func (nc *PipeNetConn) RemoteAddr() net.Addr {
return nc.remoteAddr
}
func (nc *PipeNetConn) SetDeadline(t time.Time) error {
return nil
}
func (nc *PipeNetConn) SetReadDeadline(t time.Time) error {
return nil
}
func (nc *PipeNetConn) SetWriteDeadline(t time.Time) error {
return nil
}
// DualPipeAddrConn creates a net.Pipe to connect a client and a server. The
// two net.Conn instances are wrapped in an addrConn which holds the source and
// destination addresses.
func DualPipeNetConn(srcAddr net.Addr, dstAddr net.Addr) (*PipeNetConn, *PipeNetConn) {
server, client := net.Pipe()
serverConn := NewPipeNetConn(server, server, server, dstAddr, srcAddr)
clientConn := NewPipeNetConn(client, client, client, srcAddr, dstAddr)
return serverConn, clientConn
}
func SplitReaders(r1 io.Reader, r2 io.Reader) io.Reader {
reader, writer := io.Pipe()
go io.Copy(writer, r1)
go io.Copy(writer, r2)
return reader
}
// NewChConn returns a new net.Conn implemented over
// SSH channel
func NewChConn(conn ssh.Conn, ch ssh.Channel) *ChConn {
c := &ChConn{}
c.Channel = ch
c.conn = conn
return c
}
// NewExclusiveChConn returns a new net.Conn implemented over
// SSH channel, whenever this connection closes
func NewExclusiveChConn(conn ssh.Conn, ch ssh.Channel) *ChConn {
c := &ChConn{
exclusive: true,
}
c.Channel = ch
c.conn = conn
return c
}
// ChConn is a net.Conn like object
// that uses SSH channel
type ChConn struct {
mu sync.Mutex
ssh.Channel
conn ssh.Conn
// exclusive indicates that whenever this channel connection
// is getting closed, the underlying connection is closed as well
exclusive bool
}
// UseTunnel makes a channel request asking for the type of connection. If
// the other side does not respond (older cluster) or takes to long to
// respond, be on the safe side and assume it's not a tunnel connection.
func (c *ChConn) UseTunnel() bool {
responseCh := make(chan bool, 1)
go func() {
ok, err := c.SendRequest(ConnectionTypeRequest, true, nil)
if err != nil {
responseCh <- false
return
}
responseCh <- ok
}()
select {
case response := <-responseCh:
return response
case <-time.After(1 * time.Second):
logrus.Debugf("Timed out waiting for response: returning false.")
return false
}
}
// Close closes channel and if the ChConn is exclusive, connection as well
func (c *ChConn) Close() error {
c.mu.Lock()
defer c.mu.Unlock()
err := c.Channel.Close()
if !c.exclusive {
return trace.Wrap(err)
}
err2 := c.conn.Close()
return trace.NewAggregate(err, err2)
}
// LocalAddr returns a local address of a connection
// Uses underlying net.Conn implementation
func (c *ChConn) LocalAddr() net.Addr {
return c.conn.LocalAddr()
}
// RemoteAddr returns a remote address of a connection
// Uses underlying net.Conn implementation
func (c *ChConn) RemoteAddr() net.Addr {
return c.conn.RemoteAddr()
}
// SetDeadline sets a connection deadline
// ignored for the channel connection
func (c *ChConn) SetDeadline(t time.Time) error {
return nil
}
// SetReadDeadline sets a connection read deadline
// ignored for the channel connection
func (c *ChConn) SetReadDeadline(t time.Time) error {
return nil
}
// SetWriteDeadline sets write deadline on a connection
// ignored for the channel connection
func (c *ChConn) SetWriteDeadline(t time.Time) error {
return nil
}
const (
// ConnectionTypeRequest is a request sent over a SSH channel that returns a
// boolean which indicates the connection type (direct or tunnel).
ConnectionTypeRequest = "x-teleport-connection-type"
)