-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.go
466 lines (426 loc) · 13.8 KB
/
proxy.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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
/*
Copyright 2016 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 regular
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net"
"strconv"
"strings"
"sync"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/agent"
"github.com/gravitational/teleport"
"github.com/gravitational/teleport/lib/defaults"
"github.com/gravitational/teleport/lib/reversetunnel"
"github.com/gravitational/teleport/lib/services"
"github.com/gravitational/teleport/lib/srv"
"github.com/gravitational/teleport/lib/sshutils"
"github.com/gravitational/teleport/lib/utils"
"github.com/gravitational/trace"
"github.com/sirupsen/logrus"
)
// proxySubsys implements an SSH subsystem for proxying listening sockets from
// remote hosts to a proxy client (AKA port mapping)
type proxySubsys struct {
proxySubsysConfig
log *logrus.Entry
closeC chan struct{}
error error
closeOnce sync.Once
agent agent.Agent
agentChannel ssh.Channel
}
// parseProxySubsys looks at the requested subsystem name and returns a fully configured
// proxy subsystem
//
// proxy subsystem name can take the following forms:
// "proxy:host:22" - standard SSH request to connect to host:22 on the 1st cluster
// "proxy:@clustername" - Teleport request to connect to an auth server for cluster with name 'clustername'
// "proxy:host:22@clustername" - Teleport request to connect to host:22 on cluster 'clustername'
// "proxy:host:22@namespace@clustername"
func parseProxySubsys(request string, srv *Server, ctx *srv.ServerContext) (*proxySubsys, error) {
log.Debugf("parse_proxy_subsys(%q)", request)
var (
clusterName string
targetHost string
targetPort string
paramMessage = fmt.Sprintf("invalid format for proxy request: %q, expected 'proxy:host:port@cluster'", request)
)
const prefix = "proxy:"
// get rid of 'proxy:' prefix:
if strings.Index(request, prefix) != 0 {
return nil, trace.BadParameter(paramMessage)
}
requestBody := strings.TrimPrefix(request, prefix)
namespace := defaults.Namespace
var err error
parts := strings.Split(requestBody, "@")
switch {
case len(parts) == 0: // "proxy:"
return nil, trace.BadParameter(paramMessage)
case len(parts) == 1: // "proxy:host:22"
targetHost, targetPort, err = utils.SplitHostPort(parts[0])
if err != nil {
return nil, trace.BadParameter(paramMessage)
}
case len(parts) == 2: // "proxy:@clustername" or "proxy:host:22@clustername"
if parts[0] != "" {
targetHost, targetPort, err = utils.SplitHostPort(parts[0])
if err != nil {
return nil, trace.BadParameter(paramMessage)
}
}
clusterName = parts[1]
if clusterName == "" && targetHost == "" {
return nil, trace.BadParameter("invalid format for proxy request: missing cluster name or target host in %q", request)
}
case len(parts) >= 3: // "proxy:host:22@namespace@clustername"
clusterName = strings.Join(parts[2:], "@")
namespace = parts[1]
targetHost, targetPort, err = utils.SplitHostPort(parts[0])
if err != nil {
return nil, trace.BadParameter(paramMessage)
}
}
return newProxySubsys(proxySubsysConfig{
namespace: namespace,
srv: srv,
ctx: ctx,
host: targetHost,
port: targetPort,
clusterName: clusterName,
})
}
// proxySubsysConfig is a proxy subsystem configuration
type proxySubsysConfig struct {
namespace string
host string
port string
clusterName string
srv *Server
ctx *srv.ServerContext
}
func (p *proxySubsysConfig) String() string {
return fmt.Sprintf("host=%v, port=%v, cluster=%v", p.host, p.port, p.clusterName)
}
// CheckAndSetDefaults checks and sets defaults
func (p *proxySubsysConfig) CheckAndSetDefaults() error {
if p.namespace == "" {
p.namespace = defaults.Namespace
}
if p.srv == nil {
return trace.BadParameter("missing parameter server")
}
if p.ctx == nil {
return trace.BadParameter("missing parameter context")
}
if p.clusterName == "" && p.ctx.Identity.RouteToCluster != "" {
log.Debugf("Proxy subsystem: routing user %q to cluster %q based on the route to cluster extension.",
p.ctx.Identity.TeleportUser, p.ctx.Identity.RouteToCluster,
)
p.clusterName = p.ctx.Identity.RouteToCluster
}
if p.clusterName != "" && p.srv.proxyTun != nil {
_, err := p.srv.proxyTun.GetSite(p.clusterName)
if err != nil {
return trace.BadParameter("invalid format for proxy request: unknown cluster %q", p.clusterName)
}
}
return nil
}
// newProxySubsys is a helper that creates a proxy subsystem from
// a port forwarding request, used to implement ProxyJump feature in proxy
// and reuse the code
func newProxySubsys(cfg proxySubsysConfig) (*proxySubsys, error) {
if err := cfg.CheckAndSetDefaults(); err != nil {
return nil, trace.Wrap(err)
}
log.Debugf("newProxySubsys(%v).", cfg)
return &proxySubsys{
proxySubsysConfig: cfg,
log: logrus.WithFields(logrus.Fields{
trace.Component: teleport.ComponentSubsystemProxy,
trace.ComponentFields: map[string]string{},
}),
closeC: make(chan struct{}),
agent: cfg.ctx.GetAgent(),
agentChannel: cfg.ctx.GetAgentChannel(),
}, nil
}
func (t *proxySubsys) String() string {
return fmt.Sprintf("proxySubsys(cluster=%s/%s, host=%s, port=%s)",
t.namespace, t.clusterName, t.host, t.port)
}
// Start is called by Golang's ssh when it needs to engage this sybsystem (typically to establish
// a mapping connection between a client & remote node we're proxying to)
func (t *proxySubsys) Start(sconn *ssh.ServerConn, ch ssh.Channel, req *ssh.Request, ctx *srv.ServerContext) error {
// once we start the connection, update logger to include component fields
t.log = logrus.WithFields(logrus.Fields{
trace.Component: teleport.ComponentSubsystemProxy,
trace.ComponentFields: map[string]string{
"src": sconn.RemoteAddr().String(),
"dst": sconn.LocalAddr().String(),
},
})
t.log.Debugf("Starting subsystem")
var (
site reversetunnel.RemoteSite
err error
tunnel = t.srv.proxyTun
clientAddr = sconn.RemoteAddr()
)
// did the client pass us a true client IP ahead of time via an environment variable?
// (usually the web client would do that)
ctx.Lock()
trueClientIP, ok := ctx.GetEnv(sshutils.TrueClientAddrVar)
ctx.Unlock()
if ok {
a, err := utils.ParseAddr(trueClientIP)
if err == nil {
clientAddr = a
}
}
// get the cluster by name:
if t.clusterName != "" {
site, err = tunnel.GetSite(t.clusterName)
if err != nil {
t.log.Warn(err)
return trace.Wrap(err)
}
}
// connecting to a specific host:
if t.host != "" {
// no site given? use the 1st one:
if site == nil {
sites := tunnel.GetSites()
if len(sites) == 0 {
t.log.Error("Not connected to any remote clusters")
return trace.NotFound("no connected sites")
}
site = sites[0]
t.clusterName = site.GetName()
t.log.Debugf("Cluster not specified. connecting to default='%s'", site.GetName())
}
return t.proxyToHost(ctx, site, clientAddr, ch)
}
// connect to a site's auth server:
return t.proxyToSite(ctx, site, clientAddr, ch)
}
// proxyToSite establishes a proxy connection from the connected SSH client to the
// auth server of the requested remote site
func (t *proxySubsys) proxyToSite(
ctx *srv.ServerContext, site reversetunnel.RemoteSite, remoteAddr net.Addr, ch ssh.Channel) error {
conn, err := site.DialAuthServer()
if err != nil {
return trace.Wrap(err)
}
t.log.Infof("Connected to auth server: %v", conn.RemoteAddr())
go func() {
var err error
defer func() {
t.close(err)
}()
defer ch.Close()
_, err = io.Copy(ch, conn)
}()
go func() {
var err error
defer func() {
t.close(err)
}()
defer conn.Close()
_, err = io.Copy(conn, srv.NewTrackingReader(ctx, ch))
}()
return nil
}
// proxyToHost establishes a proxy connection from the connected SSH client to the
// requested remote node (t.host:t.port) via the given site
func (t *proxySubsys) proxyToHost(
ctx *srv.ServerContext, site reversetunnel.RemoteSite, remoteAddr net.Addr, ch ssh.Channel) error {
//
// first, lets fetch a list of servers at the given site. this allows us to
// match the given "host name" against node configuration (their 'nodename' setting)
//
// but failing to fetch the list of servers is also OK, we'll use standard
// network resolution (by IP or DNS)
//
var (
servers []services.Server
err error
)
localCluster, _ := t.srv.authService.GetClusterName()
// going to "local" CA? lets use the caching 'auth service' directly and avoid
// hitting the reverse tunnel link (it can be offline if the CA is down)
if site.GetName() == localCluster.GetName() {
servers, err = t.srv.authService.GetNodes(t.namespace, services.SkipValidation())
if err != nil {
t.log.Warn(err)
}
} else {
// "remote" CA? use a reverse tunnel to talk to it:
siteClient, err := site.CachingAccessPoint()
if err != nil {
t.log.Warn(err)
} else {
servers, err = siteClient.GetNodes(t.namespace, services.SkipValidation())
if err != nil {
t.log.Warn(err)
}
}
}
// if port is 0, it means the client wants us to figure out
// which port to use
specifiedPort := len(t.port) > 0 && t.port != "0"
ips, _ := net.LookupHost(t.host)
t.log.Debugf("proxy connecting to host=%v port=%v, exact port=%v", t.host, t.port, specifiedPort)
// enumerate and try to find a server with self-registered with a matching name/IP:
var server services.Server
for i := range servers {
// If the server has connected over a reverse tunnel, match only on hostname.
if servers[i].GetUseTunnel() {
if t.host == servers[i].GetHostname() {
server = servers[i]
break
}
continue
}
ip, port, err := net.SplitHostPort(servers[i].GetAddr())
if err != nil {
t.log.Errorf("Failed to parse address %q: %v.", servers[i].GetAddr(), err)
continue
}
if t.host == ip || t.host == servers[i].GetHostname() || utils.SliceContainsStr(ips, ip) {
if !specifiedPort || t.port == port {
server = servers[i]
break
}
}
}
// Create a slice of principals that will be added into the host certificate.
// Here t.host is either an IP address or a DNS name as the user requested.
principals := []string{t.host}
// Used to store the server ID (hostUUID.clusterName) of a Teleport node.
var serverID string
// Resolve the IP address to dial to because the hostname may not be
// DNS resolvable.
var serverAddr string
if server != nil {
// Add hostUUID.clusterName to list of principals.
serverID = fmt.Sprintf("%v.%v", server.GetName(), t.clusterName)
principals = append(principals, serverID)
// Add IP address (if it exists) of the node to list of principals.
serverAddr = server.GetAddr()
if serverAddr != "" {
host, _, err := net.SplitHostPort(serverAddr)
if err != nil {
return trace.Wrap(err)
}
principals = append(principals, host)
}
} else {
if !specifiedPort {
t.port = strconv.Itoa(defaults.SSHServerListenPort)
}
serverAddr = net.JoinHostPort(t.host, t.port)
t.log.Warnf("server lookup failed: using default=%v", serverAddr)
}
// Pass the agent along to the site. If the proxy is in recording mode, this
// agent is used to perform user authentication. Pass the DNS name to the
// dialer as well so the forwarding proxy can generate a host certificate
// with the correct hostname).
toAddr := &utils.NetAddr{
AddrNetwork: "tcp",
Addr: serverAddr,
}
conn, err := site.Dial(reversetunnel.DialParams{
From: remoteAddr,
To: toAddr,
UserAgent: t.agent,
Address: t.host,
ServerID: serverID,
Principals: principals,
})
if err != nil {
return trace.Wrap(err)
}
// this custom SSH handshake allows SSH proxy to relay the client's IP
// address to the SSH server
t.doHandshake(remoteAddr, ch, conn)
go func() {
var err error
defer func() {
t.close(err)
}()
defer ch.Close()
_, err = io.Copy(ch, conn)
}()
go func() {
var err error
defer func() {
t.close(err)
}()
defer conn.Close()
_, err = io.Copy(conn, srv.NewTrackingReader(ctx, ch))
}()
return nil
}
func (t *proxySubsys) close(err error) {
t.closeOnce.Do(func() {
t.error = err
close(t.closeC)
})
}
func (t *proxySubsys) Wait() error {
<-t.closeC
return t.error
}
// doHandshake allows a proxy server to send additional information (client IP)
// to an SSH server before establishing a bridge
func (t *proxySubsys) doHandshake(clientAddr net.Addr, clientConn io.ReadWriter, serverConn io.ReadWriter) {
// on behalf of a client ask the server for it's version:
buff := make([]byte, sshutils.MaxVersionStringBytes)
n, err := serverConn.Read(buff)
if err != nil {
t.log.Error(err)
return
}
// chop off extra unused bytes at the end of the buffer:
buff = buff[:n]
// is that a Teleport server?
if bytes.HasPrefix(buff, []byte(sshutils.SSHVersionPrefix)) {
// if we're connecting to a Teleport SSH server, send our own "handshake payload"
// message, along with a client's IP:
hp := &sshutils.HandshakePayload{
ClientAddr: clientAddr.String(),
}
payloadJSON, err := json.Marshal(hp)
if err != nil {
t.log.Error(err)
} else {
// send a JSON payload sandwitched between 'teleport proxy signature' and 0x00:
payload := fmt.Sprintf("%s%s\x00", sshutils.ProxyHelloSignature, payloadJSON)
n, err = serverConn.Write([]byte(payload))
if err != nil {
t.log.Error(err)
}
}
}
// forwrd server's response to the client:
_, err = clientConn.Write(buff)
if err != nil {
t.log.Error(err)
}
}