-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathproxy.go
584 lines (532 loc) · 18.3 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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
/*
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"
"github.com/gravitational/teleport"
apidefaults "github.com/gravitational/teleport/api/defaults"
"github.com/gravitational/teleport/api/types"
apiutils "github.com/gravitational/teleport/api/utils"
"github.com/gravitational/teleport/lib/defaults"
"github.com/gravitational/teleport/lib/reversetunnel"
"github.com/gravitational/teleport/lib/srv"
"github.com/gravitational/teleport/lib/sshutils"
"github.com/gravitational/teleport/lib/utils"
"github.com/google/uuid"
"github.com/gravitational/trace"
"github.com/prometheus/client_golang/prometheus"
"github.com/sirupsen/logrus"
)
var ( // failedConnectingToNode counts failed attempts to connect to a node
proxiedSessions = prometheus.NewGauge(
prometheus.GaugeOpts{
Name: teleport.MetricProxySSHSessions,
Help: "Number of active sessions through this proxy",
},
)
failedConnectingToNode = prometheus.NewCounter(
prometheus.CounterOpts{
Name: teleport.MetricFailedConnectToNodeAttempts,
Help: "Number of failed SSH connection attempts to a node. Use with `teleport_connect_to_node_attempts_total` to get the failure rate.",
},
)
connectingToNode = prometheus.NewCounter(
prometheus.CounterOpts{
Namespace: teleport.MetricNamespace,
Name: teleport.MetricConnectToNodeAttempts,
Help: "Number of SSH connection attempts to a node. Use with `failed_connect_to_node_attempts_total` to get the failure rate.",
},
)
prometheusCollectors = []prometheus.Collector{proxiedSessions, failedConnectingToNode, connectingToNode}
)
// proxySubsys implements an SSH subsystem for proxying listening sockets from
// remote hosts to a proxy client (AKA port mapping)
type proxySubsys struct {
proxySubsysRequest
srv *Server
ctx *srv.ServerContext
log *logrus.Entry
closeC chan struct{}
error error
closeOnce sync.Once
}
// 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 parseProxySubsysRequest(request string) (proxySubsysRequest, 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 proxySubsysRequest{}, trace.BadParameter(paramMessage)
}
requestBody := strings.TrimPrefix(request, prefix)
namespace := apidefaults.Namespace
var err error
parts := strings.Split(requestBody, "@")
switch {
case len(parts) == 0: // "proxy:"
return proxySubsysRequest{}, trace.BadParameter(paramMessage)
case len(parts) == 1: // "proxy:host:22"
targetHost, targetPort, err = utils.SplitHostPort(parts[0])
if err != nil {
return proxySubsysRequest{}, 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 proxySubsysRequest{}, trace.BadParameter(paramMessage)
}
}
clusterName = parts[1]
if clusterName == "" && targetHost == "" {
return proxySubsysRequest{}, 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 proxySubsysRequest{}, trace.BadParameter(paramMessage)
}
}
return proxySubsysRequest{
namespace: namespace,
host: targetHost,
port: targetPort,
clusterName: clusterName,
}, nil
}
// parseProxySubsys decodes a proxy subsystem request and sets up a proxy subsystem instance.
// See parseProxySubsysRequest for details on the request format.
func parseProxySubsys(request string, srv *Server, ctx *srv.ServerContext) (*proxySubsys, error) {
req, err := parseProxySubsysRequest(request)
if err != nil {
return nil, trace.Wrap(err)
}
subsys, err := newProxySubsys(ctx, srv, req)
if err != nil {
return nil, trace.Wrap(err)
}
return subsys, nil
}
// proxySubsysRequest encodes proxy subsystem request parameters.
type proxySubsysRequest struct {
namespace string
host string
port string
clusterName string
}
func (p *proxySubsysRequest) String() string {
return fmt.Sprintf("host=%v, port=%v, cluster=%v", p.host, p.port, p.clusterName)
}
// SpecifiedPort returns whether the port is set, and it has a non-zero value
func (p *proxySubsysRequest) SpecifiedPort() bool {
return len(p.port) > 0 && p.port != "0"
}
// SetDefaults sets default values.
func (p *proxySubsysRequest) SetDefaults() {
if p.namespace == "" {
p.namespace = apidefaults.Namespace
}
}
// 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(ctx *srv.ServerContext, srv *Server, req proxySubsysRequest) (*proxySubsys, error) {
err := utils.RegisterPrometheusCollectors(prometheusCollectors...)
if err != nil {
return nil, trace.Wrap(err)
}
req.SetDefaults()
if req.clusterName == "" && ctx.Identity.RouteToCluster != "" {
log.Debugf("Proxy subsystem: routing user %q to cluster %q based on the route to cluster extension.",
ctx.Identity.TeleportUser, ctx.Identity.RouteToCluster,
)
req.clusterName = ctx.Identity.RouteToCluster
}
if req.clusterName != "" && srv.proxyTun != nil {
_, err := srv.tunnelWithRoles(ctx).GetSite(req.clusterName)
if err != nil {
return nil, trace.BadParameter("invalid format for proxy request: unknown cluster %q", req.clusterName)
}
}
log.Debugf("newProxySubsys(%v).", req)
return &proxySubsys{
proxySubsysRequest: req,
ctx: ctx,
srv: srv,
log: logrus.WithFields(logrus.Fields{
trace.Component: teleport.ComponentSubsystemProxy,
trace.ComponentFields: map[string]string{},
}),
closeC: make(chan struct{}),
}, 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.tunnelWithRoles(ctx)
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)
trueClientIP, ok := ctx.GetEnv(sshutils.TrueClientAddrVar)
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, err := tunnel.GetSites()
if err != nil {
return trace.Wrap(err)
}
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())
proxiedSessions.Inc()
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, 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 (
strategy types.RoutingStrategy
servers []types.Server
err error
)
localCluster, _ := t.srv.proxyAccessPoint.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.proxyAccessPoint.GetNodes(ctx.CancelContext(), t.namespace)
if err != nil {
t.log.Warn(err)
}
cfg, err := t.srv.authService.GetClusterNetworkingConfig(ctx.CancelContext())
if err != nil {
t.log.Warn(err)
} else {
strategy = cfg.GetRoutingStrategy()
}
} 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(ctx.CancelContext(), t.namespace)
if err != nil {
t.log.Warn(err)
}
cfg, err := siteClient.GetClusterNetworkingConfig(ctx.CancelContext())
if err != nil {
t.log.Warn(err)
} else {
strategy = cfg.GetRoutingStrategy()
}
}
}
// if port is 0, it means the client wants us to figure out
// which port to use
t.log.Debugf("proxy connecting to host=%v port=%v, exact port=%v, strategy=%s", t.host, t.port, t.SpecifiedPort(), strategy)
// determine which server to connect to
server, err := t.getMatchingServer(servers, strategy)
if err != nil {
return trace.Wrap(err)
}
// 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 server.GetUseTunnel() {
serverAddr = reversetunnel.LocalNode
}
} else {
if !t.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,
}
connectingToNode.Inc()
conn, err := site.Dial(reversetunnel.DialParams{
From: remoteAddr,
To: toAddr,
GetUserAgent: t.ctx.StartAgentChannel,
Address: t.host,
ServerID: serverID,
Principals: principals,
ConnType: types.NodeTunnel,
})
if err != nil {
failedConnectingToNode.Inc()
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)
proxiedSessions.Inc()
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, ch)
}()
return nil
}
// getMatchingServer determines the server to connect to from the provided servers. Duplicate entries are treated
// differently based on strategy. Legacy behavior of returning an ambiguous error occurs if the strategy
// is types.RoutingStrategy_UNAMBIGUOUS_MATCH. When the strategy is types.RoutingStrategy_MOST_RECENT then
// the server that has heartbeated most recently will be returned instead of an error. If no matches are found then
// both the types.Server and error returned will be nil.
func (t *proxySubsys) getMatchingServer(servers []types.Server, strategy types.RoutingStrategy) (types.Server, error) {
// check if hostname is a valid uuid or EC2 node ID. If it is, we will
// preferentially match by node ID over node hostname.
_, err := uuid.Parse(t.host)
hostIsUniqueID := err == nil || utils.IsEC2NodeID(t.host)
ips, _ := net.LookupHost(t.host)
// enumerate and try to find a server with self-registered with a matching name/IP:
var matches []types.Server
for _, server := range servers {
// If the host parameter is a UUID or EC2 node ID, and it matches the
// Node ID, treat this as an unambiguous match.
if hostIsUniqueID && server.GetName() == t.host {
matches = []types.Server{server}
break
}
// If the server has connected over a reverse tunnel, match only on hostname.
if server.GetUseTunnel() {
if t.host == server.GetHostname() {
matches = append(matches, server)
}
continue
}
ip, port, err := net.SplitHostPort(server.GetAddr())
if err != nil {
t.log.Errorf("Failed to parse address %q: %v.", server.GetAddr(), err)
continue
}
if t.host == ip || t.host == server.GetHostname() || apiutils.SliceContainsStr(ips, ip) {
if !t.SpecifiedPort() || t.port == port {
matches = append(matches, server)
continue
}
}
}
var server types.Server
switch {
case strategy == types.RoutingStrategy_MOST_RECENT:
// find the most recent of all the matches
for _, m := range matches {
if server == nil || m.Expiry().After(server.Expiry()) {
server = m
}
}
case len(matches) > 1:
// if we matched more than one server, then the target was ambiguous.
return nil, trace.NotFound(teleport.NodeIsAmbiguous)
case len(matches) == 1:
server = matches[0]
}
// If we matched zero nodes but hostname is a UUID (or EC2 node ID) then it
// isn't sane to fallback to dns based resolution. This has the unfortunate
// consequence of preventing users from calling OpenSSH nodes which happen
// to use hostnames which are also valid UUIDs. This restriction is
// necessary in order to protect users attempting to connect to a node by
// UUID from being re-routed to an unintended target if the node is offline.
// This restriction can be lifted if we decide to move to explicit UUID
// based resolution in the future.
if hostIsUniqueID && server == nil {
idType := "UUID"
if utils.IsEC2NodeID(t.host) {
idType = "EC2"
}
return nil, trace.NotFound("unable to locate node matching %s-like target %s", idType, t.host)
}
return server, nil
}
func (t *proxySubsys) close(err error) {
t.closeOnce.Do(func() {
proxiedSessions.Dec()
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)
_, 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)
}
}