-
Notifications
You must be signed in to change notification settings - Fork 0
/
sshserver.go
1204 lines (1088 loc) · 33.7 KB
/
sshserver.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
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
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 srv implements SSH server that supports multiplexing
// tunneling, SSH connections proxying and only supports Key based auth
package srv
import (
"fmt"
"io"
"io/ioutil"
"net"
"os"
"os/exec"
"os/user"
"path/filepath"
"strconv"
"strings"
"sync"
"time"
"github.com/gravitational/teleport"
"github.com/gravitational/teleport/lib/auth"
"github.com/gravitational/teleport/lib/defaults"
"github.com/gravitational/teleport/lib/events"
"github.com/gravitational/teleport/lib/limiter"
"github.com/gravitational/teleport/lib/reversetunnel"
"github.com/gravitational/teleport/lib/services"
rsession "github.com/gravitational/teleport/lib/session"
"github.com/gravitational/teleport/lib/sshutils"
"github.com/gravitational/teleport/lib/teleagent"
"github.com/gravitational/teleport/lib/utils"
log "github.com/Sirupsen/logrus"
"github.com/gravitational/trace"
"github.com/jonboulle/clockwork"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/agent"
)
// Server implements SSH server that uses configuration backend and
// certificate-based authentication
type Server struct {
sync.Mutex
namespace string
addr utils.NetAddr
hostname string
certChecker ssh.CertChecker
srv *sshutils.Server
hostSigner ssh.Signer
shell string
authService auth.AccessPoint
reg *sessionRegistry
sessionServer rsession.Service
limiter *limiter.Limiter
labels map[string]string //static server labels
cmdLabels map[string]services.CommandLabel //dymanic server labels
labelsMutex *sync.Mutex
proxyMode bool
proxyTun reversetunnel.Server
advertiseIP net.IP
proxyPublicAddr utils.NetAddr
// server UUID gets generated once on the first start and never changes
// usually stored in a file inside the data dir
uuid string
// this gets set to true for unit testing
isTestStub bool
// sets to true when the server needs to be stopped
closer *utils.CloseBroadcaster
// alog points to the AuditLog this server uses to report
// auditable events
alog events.IAuditLog
// clock is a system clock
clock clockwork.Clock
// permitUserEnvironment controls if this server will read ~/.tsh/environment
// before creating a new session.
permitUserEnvironment bool
// ciphers is a list of ciphers that the server supports. If omitted,
// the defaults will be used.
ciphers []string
// kexAlgorithms is a list of key exchange (KEX) algorithms that the
// server supports. If omitted, the defaults will be used.
kexAlgorithms []string
// macAlgorithms is a list of message authentication codes (MAC) that
// the server supports. If omitted the defaults will be used.
macAlgorithms []string
}
// ServerOption is a functional option passed to the server
type ServerOption func(s *Server) error
// Close closes listening socket and stops accepting connections
func (s *Server) Close() error {
s.closer.Close()
s.reg.Close()
return s.srv.Close()
}
// Start starts server
func (s *Server) Start() error {
if len(s.cmdLabels) > 0 {
s.updateLabels()
}
go s.heartbeatPresence()
return s.srv.Start()
}
// Wait waits until server stops
func (s *Server) Wait() {
s.srv.Wait()
}
// SetShell sets default shell that will be executed for interactive
// sessions
func SetShell(shell string) ServerOption {
return func(s *Server) error {
s.shell = shell
return nil
}
}
// SetSessionServer represents realtime session registry server
func SetSessionServer(srv rsession.Service) ServerOption {
return func(s *Server) error {
s.sessionServer = srv
return nil
}
}
// SetProxyMode starts this server in SSH proxying mode
func SetProxyMode(tsrv reversetunnel.Server) ServerOption {
return func(s *Server) error {
s.proxyMode = (tsrv != nil)
s.proxyTun = tsrv
return nil
}
}
// SetLabels sets dynamic and static labels that server will report to the
// auth servers
func SetLabels(labels map[string]string,
cmdLabels services.CommandLabels) ServerOption {
return func(s *Server) error {
for name, label := range cmdLabels {
if label.GetPeriod() < time.Second {
label.SetPeriod(time.Second)
cmdLabels[name] = label
log.Warningf("label period can't be less that 1 second. Period for label '%v' was set to 1 second", name)
}
}
s.labels = labels
s.cmdLabels = cmdLabels
return nil
}
}
// SetLimiter sets rate and connection limiter for this server
func SetLimiter(limiter *limiter.Limiter) ServerOption {
return func(s *Server) error {
s.limiter = limiter
return nil
}
}
// SetAuditLog assigns an audit log interfaces to this server
func SetAuditLog(alog events.IAuditLog) ServerOption {
return func(s *Server) error {
s.alog = alog
return nil
}
}
func SetNamespace(namespace string) ServerOption {
return func(s *Server) error {
s.namespace = namespace
return nil
}
}
// SetPermitUserEnvironment allows you to set the value of permitUserEnvironment.
func SetPermitUserEnvironment(permitUserEnvironment bool) ServerOption {
return func(s *Server) error {
s.permitUserEnvironment = permitUserEnvironment
return nil
}
}
func SetCiphers(ciphers []string) ServerOption {
return func(s *Server) error {
s.ciphers = ciphers
return nil
}
}
func SetKEXAlgorithms(kexAlgorithms []string) ServerOption {
return func(s *Server) error {
s.kexAlgorithms = kexAlgorithms
return nil
}
}
func SetMACAlgorithms(macAlgorithms []string) ServerOption {
return func(s *Server) error {
s.macAlgorithms = macAlgorithms
return nil
}
}
// New returns an unstarted server
func New(addr utils.NetAddr,
hostname string,
signers []ssh.Signer,
authService auth.AccessPoint,
dataDir string,
advertiseIP net.IP,
proxyPublicAddr utils.NetAddr,
options ...ServerOption) (*Server, error) {
// read the host UUID:
uuid, err := utils.ReadOrMakeHostUUID(dataDir)
if err != nil {
return nil, trace.Wrap(err)
}
s := &Server{
addr: addr,
authService: authService,
hostname: hostname,
labelsMutex: &sync.Mutex{},
advertiseIP: advertiseIP,
proxyPublicAddr: proxyPublicAddr,
uuid: uuid,
closer: utils.NewCloseBroadcaster(),
clock: clockwork.NewRealClock(),
}
s.limiter, err = limiter.NewLimiter(limiter.LimiterConfig{})
if err != nil {
return nil, trace.Wrap(err)
}
s.certChecker = ssh.CertChecker{IsAuthority: s.isAuthority}
for _, o := range options {
if err := o(s); err != nil {
return nil, trace.Wrap(err)
}
}
var component string
if s.proxyMode {
component = teleport.ComponentProxy
} else {
component = teleport.ComponentNode
}
s.reg = newSessionRegistry(s)
srv, err := sshutils.NewServer(
component,
addr, s, signers,
sshutils.AuthMethods{PublicKey: s.keyAuth},
sshutils.SetLimiter(s.limiter),
sshutils.SetRequestHandler(s),
sshutils.SetCiphers(s.ciphers),
sshutils.SetKEXAlgorithms(s.kexAlgorithms),
sshutils.SetMACAlgorithms(s.macAlgorithms))
if err != nil {
return nil, trace.Wrap(err)
}
s.srv = srv
return s, nil
}
func (s *Server) getNamespace() string {
return services.ProcessNamespace(s.namespace)
}
func (s *Server) logFields(fields map[string]interface{}) log.Fields {
var component string
if s.proxyMode {
component = teleport.ComponentProxy
} else {
component = teleport.ComponentNode
}
return log.Fields{
teleport.Component: component,
teleport.ComponentFields: fields,
}
}
// Addr returns server address
func (s *Server) Addr() string {
return s.srv.Addr()
}
// ID returns server ID
func (s *Server) ID() string {
return s.uuid
}
// PermitUserEnvironment returns if ~/.tsh/environment will be read before a
// session is created by this server.
func (s *Server) PermitUserEnvironment() bool {
return s.permitUserEnvironment
}
func (s *Server) setAdvertiseIP(ip net.IP) {
s.Lock()
defer s.Unlock()
s.advertiseIP = ip
}
func (s *Server) getAdvertiseIP() net.IP {
s.Lock()
defer s.Unlock()
return s.advertiseIP
}
// AdvertiseAddr returns an address this server should be publicly accessible
// as, in "ip:host" form
func (s *Server) AdvertiseAddr() string {
// set if we have explicit --advertise-ip option
if s.getAdvertiseIP() == nil {
return s.addr.Addr
}
_, port, _ := net.SplitHostPort(s.addr.Addr)
return net.JoinHostPort(s.getAdvertiseIP().String(), port)
}
func (s *Server) getInfo() services.Server {
return &services.ServerV2{
Kind: services.KindNode,
Version: services.V2,
Metadata: services.Metadata{
Name: s.ID(),
Namespace: s.getNamespace(),
Labels: s.labels,
},
Spec: services.ServerSpecV2{
CmdLabels: services.LabelsToV2(s.getCommandLabels()),
Addr: s.AdvertiseAddr(),
Hostname: s.hostname,
},
}
}
// registerServer attempts to register server in the cluster
func (s *Server) registerServer() error {
srv := s.getInfo()
srv.SetTTL(s.clock, defaults.ServerHeartbeatTTL)
if !s.proxyMode {
return trace.Wrap(s.authService.UpsertNode(srv))
}
srv.SetPublicAddr(s.proxyPublicAddr.String())
return trace.Wrap(s.authService.UpsertProxy(srv))
}
// heartbeatPresence periodically calls into the auth server to let everyone
// know we're up & alive
func (s *Server) heartbeatPresence() {
sleepTime := defaults.ServerHeartbeatTTL/2 + utils.RandomDuration(defaults.ServerHeartbeatTTL/10)
ticker := time.NewTicker(sleepTime)
defer ticker.Stop()
for {
if err := s.registerServer(); err != nil {
log.Warningf("failed to announce %v presence: %v", s.ID(), err)
}
select {
case <-ticker.C:
continue
case <-s.closer.C:
{
log.Debugf("server.heartbeatPresence() exited")
return
}
}
}
}
func (s *Server) updateLabels() {
for name, label := range s.cmdLabels {
go s.periodicUpdateLabel(name, label.Clone())
}
}
func (s *Server) syncUpdateLabels() {
for name, label := range s.getCommandLabels() {
s.updateLabel(name, label)
}
}
func (s *Server) updateLabel(name string, label services.CommandLabel) {
out, err := exec.Command(label.GetCommand()[0], label.GetCommand()[1:]...).Output()
if err != nil {
log.Errorf(err.Error())
label.SetResult(err.Error() + " output: " + string(out))
} else {
label.SetResult(strings.TrimSpace(string(out)))
}
s.setCommandLabel(name, label)
}
func (s *Server) periodicUpdateLabel(name string, label services.CommandLabel) {
for {
s.updateLabel(name, label)
time.Sleep(label.GetPeriod())
}
}
func (s *Server) setCommandLabel(name string, value services.CommandLabel) {
s.labelsMutex.Lock()
defer s.labelsMutex.Unlock()
s.cmdLabels[name] = value
}
func (s *Server) getCommandLabels() map[string]services.CommandLabel {
s.labelsMutex.Lock()
defer s.labelsMutex.Unlock()
out := make(map[string]services.CommandLabel, len(s.cmdLabels))
for key, val := range s.cmdLabels {
out[key] = val.Clone()
}
return out
}
// extractRolesFromCert extracts roles from certificate metadata extensions
func (s *Server) extractRolesFromCert(cert *ssh.Certificate) ([]string, error) {
data, ok := cert.Extensions[teleport.CertExtensionTeleportRoles]
if !ok {
// it's ok to not have any roles in the metadata
return nil, nil
}
return services.UnmarshalCertRoles(data)
}
// checkPermissionToLogin checks the given certificate (supplied by a connected client)
// to see if this certificate can be allowed to login as user:login pair
func (s *Server) checkPermissionToLogin(cert *ssh.Certificate, teleportUser, osUser string) (string, error) {
// enumerate all known CAs and see if any of them signed the
// supplied certificate
log.Debugf("[HA SSH NODE] checkPermsissionToLogin(%v, %v)", teleportUser, osUser)
cas, err := s.authService.GetCertAuthorities(services.UserCA, false)
if err != nil {
return "", trace.Wrap(err)
}
var ca services.CertAuthority
for i := range cas {
checkers, err := cas[i].Checkers()
if err != nil {
return "", trace.Wrap(err)
}
for _, checker := range checkers {
if sshutils.KeysEqual(cert.SignatureKey, checker) {
ca = cas[i]
break
}
}
}
// the certificate was signed by unknown authority
if ca == nil {
return "", trace.AccessDenied(
"the certificate for user '%v' is signed by untrusted CA",
teleportUser)
}
domainName, err := s.authService.GetDomainName()
if err != nil {
return "", trace.Wrap(err)
}
// for local users, go and check their individual permissions
var roles services.RoleSet
if domainName == ca.GetClusterName() {
users, err := s.authService.GetUsers()
if err != nil {
return "", trace.Wrap(err)
}
for _, u := range users {
if u.GetName() == teleportUser {
roles, err = services.FetchRoles(u.GetRoles(), s.authService)
if err != nil {
return "", trace.Wrap(err)
}
}
}
} else {
certRoles, err := s.extractRolesFromCert(cert)
if err != nil {
log.Errorf("failed to extract roles from cert: %v", err)
return "", trace.AccessDenied("failed to parse certificate roles")
}
roleNames, err := ca.CombinedMapping().Map(certRoles)
if err != nil {
log.Errorf("failed to map roles %v", err)
return "", trace.AccessDenied("failed to map roles")
}
roles, err = services.FetchRoles(roleNames, s.authService)
if err != nil {
return "", trace.Wrap(err)
}
}
if err := roles.CheckAccessToServer(osUser, s.getInfo()); err != nil {
return "", trace.AccessDenied("user %s@%s is not authorized to login as %v@%s: %v",
teleportUser, ca.GetClusterName(), osUser, domainName, err)
}
return domainName, nil
}
// fetchRoleSet fretches role set for a given user
func (s *Server) fetchRoleSet(teleportUser string, clusterName string) (services.RoleSet, error) {
localClusterName, err := s.authService.GetDomainName()
if err != nil {
return nil, trace.Wrap(err)
}
cas, err := s.authService.GetCertAuthorities(services.UserCA, false)
if err != nil {
return nil, trace.Wrap(err)
}
var ca services.CertAuthority
for i := range cas {
if cas[i].GetClusterName() == clusterName {
ca = cas[i]
break
}
}
if ca == nil {
return nil, trace.NotFound("could not find certificate authority for cluster %v and user %v", clusterName, teleportUser)
}
var roles services.RoleSet
if localClusterName == clusterName {
users, err := s.authService.GetUsers()
if err != nil {
return nil, trace.Wrap(err)
}
for _, u := range users {
if u.GetName() == teleportUser {
roles, err = services.FetchRoles(u.GetRoles(), s.authService)
if err != nil {
return nil, trace.Wrap(err)
}
}
}
} else {
roles, err = services.FetchRoles(ca.GetRoles(), s.authService)
if err != nil {
return nil, trace.Wrap(err)
}
}
return roles, err
}
// isAuthority is called during checking the client key, to see if the signing
// key is the real CA authority key.
func (s *Server) isAuthority(cert ssh.PublicKey) bool {
// find cert authority by it's key
cas, err := s.authService.GetCertAuthorities(services.UserCA, false)
if err != nil {
log.Warningf("%v", trace.DebugReport(err))
return false
}
for i := range cas {
checkers, err := cas[i].Checkers()
if err != nil {
log.Warningf("%v", err)
return false
}
for _, checker := range checkers {
if sshutils.KeysEqual(cert, checker) {
return true
}
}
}
return false
}
// EmitAuditEvent logs a given event to the audit log attached to the
// server who owns these sessions
func (s *Server) EmitAuditEvent(eventType string, fields events.EventFields) {
log.Debugf("server.EmitAuditEvent(%v)", eventType)
alog := s.alog
if alog != nil {
if err := alog.EmitAuditEvent(eventType, fields); err != nil {
log.Error(err)
}
} else {
log.Warn("SSH server has no audit log")
}
}
// keyAuth implements SSH client authentication using public keys and is called
// by the server every time the client connects
func (s *Server) keyAuth(conn ssh.ConnMetadata, key ssh.PublicKey) (*ssh.Permissions, error) {
cid := fmt.Sprintf("conn(%v->%v, user=%v)", conn.RemoteAddr(), conn.LocalAddr(), conn.User())
fingerprint := fmt.Sprintf("%v %v", key.Type(), sshutils.Fingerprint(key))
log.Debugf("[SSH] %v auth attempt with key %v", cid, fingerprint)
logger := log.WithFields(log.Fields{
"local": conn.LocalAddr(),
"remote": conn.RemoteAddr(),
"user": conn.User(),
"fingerprint": fingerprint,
})
cert, ok := key.(*ssh.Certificate)
log.Debugf("[SSH] %v auth attempt with key %v, %#v", cid, fingerprint, cert)
if !ok {
log.Debugf("[SSH] auth attempt, unsupported key type for %v", fingerprint)
return nil, trace.BadParameter("unsupported key type: %v", fingerprint)
}
if len(cert.ValidPrincipals) == 0 {
log.Debugf("[SSH] need a valid principal for key %v", fingerprint)
return nil, trace.BadParameter("need a valid principal for key %v", fingerprint)
}
if len(cert.KeyId) == 0 {
log.Debugf("[SSH] need a valid key ID for key %v", fingerprint)
return nil, trace.BadParameter("need a valid key for key %v", fingerprint)
}
teleportUser := cert.KeyId
logAuditEvent := func(err error) {
// only failed attempts are logged right now
if err != nil {
fields := events.EventFields{
events.EventUser: teleportUser,
events.AuthAttemptSuccess: false,
events.AuthAttemptErr: err.Error(),
}
log.Warningf("[SSH] failed login attempt %#v", fields)
s.EmitAuditEvent(events.AuthAttemptEvent, fields)
}
}
permissions, err := s.certChecker.Authenticate(conn, key)
if err != nil {
logAuditEvent(err)
return nil, trace.Wrap(err)
}
if err := s.certChecker.CheckCert(conn.User(), cert); err != nil {
logAuditEvent(err)
return nil, trace.Wrap(err)
}
logger.Debugf("[SSH] successfully authenticated")
// see if the host user is valid (no need to do this in proxy mode)
if !s.proxyMode {
_, err = user.Lookup(conn.User())
if err != nil {
host, _ := os.Hostname()
logger.Warningf("host '%s' does not have OS user '%s'", host, conn.User())
logger.Errorf("no such user")
return nil, trace.AccessDenied("no such user: '%s'", conn.User())
}
}
// this is the only way I know of to pass valid principal with the
// connection
permissions.Extensions[utils.CertTeleportUser] = teleportUser
if s.proxyMode {
return permissions, nil
}
clusterName, err := s.checkPermissionToLogin(cert, teleportUser, conn.User())
if err != nil {
logger.Errorf("Permission denied: %v", err)
logAuditEvent(err)
return nil, trace.Wrap(err)
}
permissions.Extensions[utils.CertTeleportClusterName] = clusterName
return permissions, nil
}
// HandleRequest is a callback for handling global out-of-band requests.
func (s *Server) HandleRequest(r *ssh.Request) {
switch r.Type {
case teleport.KeepAliveReqType:
s.handleKeepAlive(r)
default:
log.Debugf("[SSH] Discarding %q global request: %+v", r.Type, r)
}
}
// HandleNewChan is called when new channel is opened
func (s *Server) HandleNewChan(nc net.Conn, sconn *ssh.ServerConn, nch ssh.NewChannel) {
channelType := nch.ChannelType()
if s.proxyMode {
if channelType == "session" { // interactive sessions
ch, requests, err := nch.Accept()
if err != nil {
log.Infof("could not accept channel (%s)", err)
}
go s.handleSessionRequests(sconn, ch, requests)
} else {
nch.Reject(ssh.UnknownChannelType, fmt.Sprintf("unknown channel type: %v", channelType))
}
return
}
switch channelType {
// a client requested the terminal size to be sent along with every
// session message (Teleport-specific SSH channel for web-based terminals)
case "x-teleport-request-resize-events":
ch, _, _ := nch.Accept()
go s.handleTerminalResize(sconn, ch)
case "session": // interactive sessions
ch, requests, err := nch.Accept()
if err != nil {
log.Infof("could not accept channel (%s)", err)
}
go s.handleSessionRequests(sconn, ch, requests)
case "direct-tcpip": //port forwarding
req, err := sshutils.ParseDirectTCPIPReq(nch.ExtraData())
if err != nil {
log.Errorf("failed to parse request data: %v, err: %v", string(nch.ExtraData()), err)
nch.Reject(ssh.UnknownChannelType, "failed to parse direct-tcpip request")
}
ch, _, err := nch.Accept()
if err != nil {
log.Infof("could not accept channel (%s)", err)
}
go s.handleDirectTCPIPRequest(sconn, ch, req)
default:
nch.Reject(ssh.UnknownChannelType, fmt.Sprintf("unknown channel type: %v", channelType))
}
}
// handleDirectTCPIPRequest does the port forwarding
func (s *Server) handleDirectTCPIPRequest(sconn *ssh.ServerConn, ch ssh.Channel, req *sshutils.DirectTCPIPReq) {
// ctx holds the connection context and keeps track of the associated resources
ctx := newCtx(s, sconn)
ctx.isTestStub = s.isTestStub
ctx.addCloser(ch)
defer ctx.Debugf("direct-tcp closed")
defer ctx.Close()
addr := fmt.Sprintf("%v:%d", req.Host, req.Port)
ctx.Infof("direct-tcpip channel: %#v to --> %v", req, addr)
conn, err := net.Dial("tcp", addr)
if err != nil {
ctx.Infof("failed connecting to: %v, err: %v", addr, err)
return
}
defer conn.Close()
// audit event:
s.EmitAuditEvent(events.PortForwardEvent, events.EventFields{
events.PortForwardAddr: addr,
events.EventLogin: ctx.login,
events.LocalAddr: sconn.LocalAddr().String(),
events.RemoteAddr: sconn.RemoteAddr().String(),
})
wg := &sync.WaitGroup{}
wg.Add(1)
go func() {
defer wg.Done()
io.Copy(ch, conn)
ch.Close()
}()
wg.Add(1)
go func() {
defer wg.Done()
io.Copy(conn, ch)
conn.Close()
}()
wg.Wait()
}
// handleTerminalResize is called by the web proxy via its SSH connection.
// when a web browser connects to the web API, the web proxy asks us,
// by creating this new SSH channel, to start injecting the terminal size
// into every SSH write back to it.
//
// this is the only way to make web-based terminal UI not break apart
// when window changes its size
func (s *Server) handleTerminalResize(sconn *ssh.ServerConn, ch ssh.Channel) {
// the party may not be immediately available for this connection,
// keep asking for a full second:
for i := 0; i < 10; i++ {
party := s.reg.PartyForConnection(sconn)
if party == nil {
time.Sleep(time.Millisecond * 100)
continue
}
// this starts a loop which will keep updating the terminal
// size for every SSH write back to this connection
party.termSizePusher(ch)
return
}
}
// handleSessionRequests handles out of band session requests once the session channel has been created
// this function's loop handles all the "exec", "subsystem" and "shell" requests.
func (s *Server) handleSessionRequests(sconn *ssh.ServerConn, ch ssh.Channel, in <-chan *ssh.Request) {
// ctx holds the connection context and keeps track of the associated resources
ctx := newCtx(s, sconn)
ctx.isTestStub = s.isTestStub
ctx.addCloser(ch)
defer ctx.Close()
// As SSH conversation progresses, at some point a session will be created and
// its ID will be added to the environment
updateContext := func() error {
ssid, found := ctx.getEnv(sshutils.SessionEnvVar)
if !found {
return nil
}
// make sure whatever session is requested is a valid session
_, err := rsession.ParseID(ssid)
if err != nil {
return trace.BadParameter("invalid session id")
}
findSession := func() (*session, bool) {
s.reg.Lock()
defer s.reg.Unlock()
return s.reg.findSession(rsession.ID(ssid))
}
// update ctx with a session ID
ctx.session, _ = findSession()
if ctx.session == nil {
log.Debugf("[SSH] will create new session for SSH connection %v", sconn.RemoteAddr())
} else {
log.Debugf("[SSH] will join session %v for SSH connection %v", ctx.session, sconn.RemoteAddr())
}
return nil
}
for {
// update ctx with the session ID:
if !s.proxyMode {
err := updateContext()
if err != nil {
errorMessage := fmt.Sprintf("unable to update context: %v", err)
ctx.Errorf("[SSH] %v", errorMessage)
// write the error to channel and close it
ch.Stderr().Write([]byte(errorMessage))
_, err := ch.SendRequest("exit-status", false, ssh.Marshal(struct{ C uint32 }{C: teleport.RemoteCommandFailure}))
if err != nil {
ctx.Errorf("[SSH] failed to send exit status %v", errorMessage)
}
return
}
}
select {
case creq := <-ctx.subsystemResultC:
// this means that subsystem has finished executing and
// want us to close session and the channel
ctx.Debugf("[SSH] close session request: %v", creq.err)
return
case req := <-in:
if req == nil {
// this will happen when the client closes/drops the connection
ctx.Debugf("[SSH] client %v disconnected", sconn.RemoteAddr())
return
}
if err := s.dispatch(ch, req, ctx); err != nil {
replyError(ch, req, err)
return
}
if req.WantReply {
req.Reply(true, nil)
}
case result := <-ctx.result:
ctx.Debugf("[SSH] ctx.result = %v", result)
// this means that exec process has finished and delivered the execution result,
// we send it back and close the session
_, err := ch.SendRequest("exit-status", false, ssh.Marshal(struct{ C uint32 }{C: uint32(result.code)}))
if err != nil {
ctx.Infof("[SSH] %v failed to send exit status: %v", result.command, err)
}
return
}
}
}
// dispatch receives an SSH request for a subsystem and disptaches the request to the
// appropriate subsystem implementation
func (s *Server) dispatch(ch ssh.Channel, req *ssh.Request, ctx *ctx) error {
ctx.Debugf("[SSH] ssh.dispatch(req=%v, wantReply=%v)", req.Type, req.WantReply)
// if this SSH server is configured to only proxy, we do not support anything other
// than our own custom "subsystems" and environment manipulation
if s.proxyMode {
switch req.Type {
case "subsystem":
return s.handleSubsystem(ch, req, ctx)
case "env":
// we currently ignore setting any environment variables via SSH for security purposes
return s.handleEnv(ch, req, ctx)
default:
return trace.BadParameter(
"proxy doesn't support request type '%v'", req.Type)
}
}
switch req.Type {
case "exec":
// exec is a remote execution of a program, does not use PTY
return s.handleExec(ch, req, ctx)
case sshutils.PTYReq:
// SSH client asked to allocate PTY
return s.handlePTYReq(ch, req, ctx)
case "shell":
// SSH client asked to launch shell, we allocate PTY and start shell session
ctx.exec = &execResponse{ctx: ctx}
if err := s.reg.openSession(ch, req, ctx); err != nil {
log.Error(err)
return trace.Wrap(err)
}
return nil
case "env":
return s.handleEnv(ch, req, ctx)
case "subsystem":
// subsystems are SSH subsystems defined in http://tools.ietf.org/html/rfc4254 6.6
// they are in essence SSH session extensions, allowing to implement new SSH commands
return s.handleSubsystem(ch, req, ctx)
case sshutils.WindowChangeReq:
return s.handleWinChange(ch, req, ctx)
case sshutils.AgentReq:
// This happens when SSH client has agent forwarding enabled, in this case
// client sends a special request, in return SSH server opens new channel
// that uses SSH protocol for agent drafted here:
// https://tools.ietf.org/html/draft-ietf-secsh-agent-02
// the open ssh proto spec that we implement is here:
// http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.agent
return s.handleAgentForward(ch, req, ctx)
default:
return trace.BadParameter(
"proxy doesn't support request type '%v'", req.Type)
}
}
func (s *Server) handleAgentForward(ch ssh.Channel, req *ssh.Request, ctx *ctx) error {
roles, err := s.fetchRoleSet(ctx.teleportUser, ctx.clusterName)
if err != nil {
return trace.Wrap(err)
}
if err := roles.CheckAgentForward(ctx.login); err != nil {
log.Warningf("[SSH:node] denied forward agent %v", err)
return trace.Wrap(err)
}
systemUser, err := user.Lookup(ctx.login)
if err != nil {
return trace.ConvertSystemError(err)
}
uid, err := strconv.Atoi(systemUser.Uid)
if err != nil {
return trace.Wrap(err)
}
gid, err := strconv.Atoi(systemUser.Gid)
if err != nil {
return trace.Wrap(err)
}
authChan, _, err := ctx.conn.OpenChannel("auth-agent@openssh.com", nil)
if err != nil {
return trace.Wrap(err)
}
clientAgent := agent.NewClient(authChan)
ctx.setAgent(clientAgent, authChan)
pid := os.Getpid()
socketDir, err := ioutil.TempDir(os.TempDir(), "teleport-")
if err != nil {
return trace.Wrap(err)
}
dirCloser := &utils.RemoveDirCloser{Path: socketDir}
socketPath := filepath.Join(socketDir, fmt.Sprintf("teleport-%v.socket", pid))
if err := os.Chown(socketDir, uid, gid); err != nil {
if err := dirCloser.Close(); err != nil {
log.Warn("failed to remove directory: %v", err)