-
Notifications
You must be signed in to change notification settings - Fork 0
/
sess.go
964 lines (859 loc) · 24.8 KB
/
sess.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
/*
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
import (
"fmt"
"io"
"sync"
"time"
"github.com/gravitational/teleport"
"github.com/gravitational/teleport/lib/defaults"
"github.com/gravitational/teleport/lib/events"
rsession "github.com/gravitational/teleport/lib/session"
"github.com/gravitational/teleport/lib/sshutils"
"github.com/gravitational/teleport/lib/state"
"github.com/gravitational/trace"
"github.com/prometheus/client_golang/prometheus"
log "github.com/sirupsen/logrus"
"golang.org/x/crypto/ssh"
)
const (
// number of the most recent session writes (what's been written
// in a terminal) to be instanly replayed to the newly joining
// parties
instantReplayLen = 20
// maxTermSyncErrorCount defines how many subsequent erorrs
// we should tolerate before giving up trying to sync the
// term size
maxTermSyncErrorCount = 5
)
var (
serverSessions = prometheus.NewGauge(
prometheus.GaugeOpts{
Name: "server_interactive_sessions_total",
Help: "Number of active sessions",
},
)
)
func init() {
// Metrics have to be registered to be exposed:
prometheus.MustRegister(serverSessions)
}
// sessionRegistry holds a map of all active sessions on a given
// SSH server
type sessionRegistry struct {
sync.Mutex
sessions map[rsession.ID]*session
srv *Server
}
func (s *sessionRegistry) addSession(sess *session) {
s.Lock()
defer s.Unlock()
s.sessions[sess.id] = sess
}
func (r *sessionRegistry) Close() {
r.Lock()
defer r.Unlock()
for _, s := range r.sessions {
s.Close()
}
log.Debugf("sessionRegistry.Close()")
}
// joinShell either joins an existing session or starts a new shell
func (s *sessionRegistry) openSession(ch ssh.Channel, req *ssh.Request, ctx *ctx) error {
if ctx.session != nil {
// emit "joined session" event:
s.srv.EmitAuditEvent(events.SessionJoinEvent, events.EventFields{
events.SessionEventID: string(ctx.session.id),
events.EventNamespace: s.srv.getNamespace(),
events.EventLogin: ctx.login,
events.EventUser: ctx.teleportUser,
events.LocalAddr: ctx.conn.LocalAddr().String(),
events.RemoteAddr: ctx.conn.RemoteAddr().String(),
events.SessionServerID: ctx.srv.ID(),
})
ctx.Infof("[SESSION] joining session: %v", ctx.session.id)
_, err := ctx.session.join(ch, req, ctx)
return trace.Wrap(err)
}
// session not found? need to create one. start by getting/generating an ID for it
sid, found := ctx.getEnv(sshutils.SessionEnvVar)
if !found {
sid = string(rsession.NewID())
ctx.setEnv(sshutils.SessionEnvVar, sid)
}
// This logic allows concurrent request to create a new session
// to fail, what is ok because we should never have this condition
sess, err := newSession(rsession.ID(sid), s, ctx)
if err != nil {
return trace.Wrap(err)
}
ctx.session = sess
s.addSession(sess)
ctx.Infof("[SESSION] new session %v", sid)
if err := sess.start(ch, ctx); err != nil {
sess.Close()
return trace.Wrap(err)
}
return nil
}
// leaveSession removes the given party from this session
func (s *sessionRegistry) leaveSession(party *party) error {
sess := party.s
s.Lock()
defer s.Unlock()
// remove from in-memory representation of the session:
if err := sess.removeParty(party); err != nil {
return trace.Wrap(err)
}
// emit "session leave" event (party left the session)
s.srv.EmitAuditEvent(events.SessionLeaveEvent, events.EventFields{
events.SessionEventID: string(sess.id),
events.EventUser: party.user,
events.SessionServerID: party.serverID,
events.EventNamespace: s.srv.getNamespace(),
})
// this goroutine runs for a short amount of time only after a session
// becomes empty (no parties). It allows session to "linger" for a bit
// allowing parties to reconnect if they lost connection momentarily
lingerAndDie := func() {
lingerTTL := sess.GetLingerTTL()
if lingerTTL > 0 {
time.Sleep(lingerTTL)
}
// not lingering anymore? someone reconnected? cool then... no need
// to die...
if !sess.isLingering() {
log.Infof("[session.registry] session %v becomes active again", sess.id)
return
}
log.Infof("[session.registry] session %v to be garbage collected", sess.id)
// no more people left? Need to end the session!
s.Lock()
delete(s.sessions, sess.id)
s.Unlock()
// send an event indicating that this session has ended
s.srv.EmitAuditEvent(events.SessionEndEvent, events.EventFields{
events.SessionEventID: string(sess.id),
events.EventUser: party.user,
events.EventNamespace: s.srv.getNamespace(),
})
if err := sess.Close(); err != nil {
log.Error(err)
}
// mark it as inactive in the DB
if s.srv.sessionServer != nil {
False := false
s.srv.sessionServer.UpdateSession(rsession.UpdateRequest{
ID: sess.id,
Active: &False,
Namespace: s.srv.getNamespace(),
})
}
}
go lingerAndDie()
return nil
}
// getParties allows to safely return a list of parties connected to this
// session (as determined by ctx)
func (s *sessionRegistry) getParties(ctx *ctx) (parties []*party) {
sess := ctx.session
if sess != nil {
sess.Lock()
defer sess.Unlock()
parties = make([]*party, 0, len(sess.parties))
for _, p := range sess.parties {
parties = append(parties, p)
}
}
return parties
}
// notifyWinChange is called when an SSH server receives a command notifying
// us that the terminal size has changed
func (s *sessionRegistry) notifyWinChange(params rsession.TerminalParams, ctx *ctx) error {
if ctx.session == nil {
log.Debugf("notifyWinChange(): no session found!")
return nil
}
sid := ctx.session.id
// report this to the event/audit log:
s.srv.EmitAuditEvent(events.ResizeEvent, events.EventFields{
events.EventNamespace: s.srv.getNamespace(),
events.SessionEventID: sid,
events.EventLogin: ctx.login,
events.EventUser: ctx.teleportUser,
events.TerminalSize: params.Serialize(),
})
err := ctx.session.term.setWinsize(params)
if err != nil {
return trace.Wrap(err)
}
// notify all connected parties about the change in real time
// (if they're capable)
for _, p := range s.getParties(ctx) {
p.onWindowChanged(¶ms)
}
go func() {
err := s.srv.sessionServer.UpdateSession(
rsession.UpdateRequest{ID: sid, TerminalParams: ¶ms, Namespace: s.srv.getNamespace()})
if err != nil {
log.Error(err)
}
}()
return nil
}
func (s *sessionRegistry) broadcastResult(sid rsession.ID, r execResult) error {
s.Lock()
defer s.Unlock()
sess, found := s.findSession(sid)
if !found {
return trace.NotFound("session %v not found", sid)
}
sess.broadcastResult(r)
return nil
}
func (s *sessionRegistry) findSession(id rsession.ID) (*session, bool) {
sess, found := s.sessions[id]
return sess, found
}
func newSessionRegistry(srv *Server) *sessionRegistry {
if srv.sessionServer == nil {
panic("need a session server")
}
return &sessionRegistry{
srv: srv,
sessions: make(map[rsession.ID]*session),
}
}
// session struct describes an active (in progress) SSH session. These sessions
// are managed by 'sessionRegistry' containers which are attached to SSH servers.
type session struct {
sync.Mutex
// session ID. unique GUID, this is what people use to "join" sessions
id rsession.ID
// parent session container
registry *sessionRegistry
// this writer is used to broadcast terminal I/O to different clients
writer *multiWriter
// parties are connected lients/users
parties map[rsession.ID]*party
term *terminal
// closeC channel is used to kill all goroutines owned
// by the session
closeC chan bool
// Linger TTL means "how long to keep session in memory after the last client
// disconnected". It's useful to keep it alive for a bit in case the client
// temporarily dropped the connection and will reconnect (or a browser-based
// client hits "page refresh").
lingerTTL time.Duration
// termSizeC is used to push terminal resize events from SSH "on-size-changed"
// event handler into "push-to-web-client" loop.
termSizeC chan []byte
// login stores the login of the initial session creator
login string
closeOnce sync.Once
}
// newSession creates a new session with a given ID within a given context.
func newSession(id rsession.ID, r *sessionRegistry, context *ctx) (*session, error) {
serverSessions.Inc()
rsess := rsession.Session{
ID: id,
TerminalParams: rsession.TerminalParams{
W: teleport.DefaultTerminalWidth,
H: teleport.DefaultTerminalHeight,
},
Login: context.login,
Created: time.Now().UTC(),
LastActive: time.Now().UTC(),
ServerID: context.srv.ID(),
Namespace: r.srv.getNamespace(),
}
term := context.getTerm()
if term != nil {
winsize, err := term.getWinsize()
if err != nil {
return nil, trace.Wrap(err)
}
rsess.TerminalParams.W = int(winsize.Width - 1)
rsess.TerminalParams.H = int(winsize.Height)
}
err := r.srv.sessionServer.CreateSession(rsess)
if err != nil {
if trace.IsAlreadyExists(err) {
// if session already exists, make sure they are compatible
// Login matches existing login
existing, err := r.srv.sessionServer.GetSession(r.srv.getNamespace(), id)
if err != nil {
return nil, trace.Wrap(err)
}
if existing.Login != rsess.Login {
return nil, trace.AccessDenied(
"can't switch users from %v to %v for session %v",
rsess.Login, existing.Login, id)
}
}
// return nil, trace.Wrap(err)
// No need to abort. Perhaps the auth server is down?
// Log the error and continue:
log.Errorf("failed logging new session: %v", err)
}
sess := &session{
id: id,
registry: r,
parties: make(map[rsession.ID]*party),
writer: newMultiWriter(),
login: context.login,
closeC: make(chan bool),
lingerTTL: defaults.SessionRefreshPeriod * 10,
}
return sess, nil
}
// PartyForConnection finds an existing party which owns the given connection
func (r *sessionRegistry) PartyForConnection(sconn *ssh.ServerConn) *party {
r.Lock()
defer r.Unlock()
for _, session := range r.sessions {
session.Lock()
defer session.Unlock()
parties := session.parties
for _, party := range parties {
if party.sconn == sconn {
return party
}
}
}
return nil
}
// This goroutine pushes terminal resize events directly into a connected web client
func (p *party) termSizePusher(ch ssh.Channel) {
var (
err error
n int
)
defer func() {
if err != nil {
log.Error(err)
}
}()
for err == nil {
select {
case newSize := <-p.termSizeC:
n, err = ch.Write(newSize)
if err == io.EOF {
continue
}
if err != nil || n == 0 {
return
}
case <-p.closeC:
return
}
}
}
// isLingering returns 'true' if every party has left this session
func (s *session) isLingering() bool {
s.Lock()
defer s.Unlock()
return len(s.parties) == 0
}
// Close ends the active session forcing all clients to disconnect and freeing all resources
func (s *session) Close() error {
serverSessions.Dec()
s.closeOnce.Do(func() {
// closing needs to happen asynchronously because the last client
// (session writer) will try to close this session, causing a deadlock
// because of closeOnce
go func() {
log.Infof("session.Close(%v)", s.id)
if s.term != nil {
s.term.Close()
}
close(s.closeC)
// close all writers in our multi-writer
s.writer.Lock()
defer s.writer.Unlock()
for writerName, writer := range s.writer.writers {
log.Infof("session.close(writer=%v)", writerName)
closer, ok := io.Writer(writer).(io.WriteCloser)
if ok {
closer.Close()
}
}
}()
})
return nil
}
// sessionRecorder implements io.Writer to be plugged into the multi-writer
// associated with every session. It forwards session stream to the audit log
type sessionRecorder struct {
// alog is the audit log to store session chunks
alog events.IAuditLog
// sid defines the session to record
sid rsession.ID
// namespace is session namespace
namespace string
}
func newSessionRecorder(alog events.IAuditLog, namespace string, sid rsession.ID) (*sessionRecorder, error) {
var auditLog events.IAuditLog
var err error
if alog == nil {
auditLog = &events.DiscardAuditLog{}
} else {
auditLog, err = state.NewCachingAuditLog(state.CachingAuditLogConfig{
Namespace: namespace,
SessionID: string(sid),
Server: alog,
})
if err != nil {
return nil, trace.Wrap(err)
}
}
sr := &sessionRecorder{
alog: auditLog,
sid: sid,
namespace: namespace,
}
return sr, nil
}
// Write takes a chunk and writes it into the audit log
func (r *sessionRecorder) Write(data []byte) (int, error) {
// we are copying buffer to prevent data corruption:
// io.Copy allocates single buffer and calls multiple writes in a loop
// our PostSessionChunk is async and sends reader wrapping buffer
// to the channel. This can lead to cases when the buffer is re-used
// and data is corrupted unless we copy the data buffer in the first place
dataCopy := make([]byte, len(data))
copy(dataCopy, data)
// post the chunk of bytes to the audit log:
chunk := &events.SessionChunk{
Data: dataCopy,
Time: time.Now().UTC().UnixNano(),
}
if err := r.alog.PostSessionSlice(events.SessionSlice{
Namespace: r.namespace,
SessionID: string(r.sid),
Chunks: []*events.SessionChunk{chunk},
}); err != nil {
log.Error(trace.DebugReport(err))
}
return len(data), nil
}
// Close() closes audit log caching forwarder
func (r *sessionRecorder) Close() error {
return r.alog.Close()
}
// start starts a new interactive process (or a shell) in the current session
func (s *session) start(ch ssh.Channel, ctx *ctx) error {
// create a new "party" (connected client)
p := newParty(s, ch, ctx)
// allocate a terminal or take the one previously allocated via a
// seaprate "allocate TTY" SSH request
if ctx.getTerm() != nil {
s.term = ctx.getTerm()
ctx.setTerm(nil)
} else {
var err error
if s.term, err = newTerminal(); err != nil {
ctx.Infof("handleShell failed to create term: %v", err)
return trace.Wrap(err)
}
}
// prepare environment & Launch shell:
cmd, err := prepInteractiveCommand(ctx)
if err != nil {
return trace.Wrap(err)
}
ctx.Debugf("session exec: %#v", cmd)
if err := s.term.run(cmd); err != nil {
ctx.Errorf("shell command (%v %v) failed: %v", cmd.Path, cmd.Args, err)
return trace.ConvertSystemError(err)
}
if err := s.addParty(p); err != nil {
return trace.Wrap(err)
}
// emit "new session created" event:
s.registry.srv.EmitAuditEvent(events.SessionStartEvent, events.EventFields{
events.EventNamespace: ctx.srv.getNamespace(),
events.SessionEventID: string(s.id),
events.SessionServerID: ctx.srv.ID(),
events.EventLogin: ctx.login,
events.EventUser: ctx.teleportUser,
events.LocalAddr: ctx.conn.LocalAddr().String(),
events.RemoteAddr: ctx.conn.RemoteAddr().String(),
events.TerminalSize: s.term.params.Serialize(),
})
// start recording this session
auditLog := s.registry.srv.alog
if auditLog != nil {
recorder, err := newSessionRecorder(auditLog, ctx.srv.getNamespace(), s.id)
if err != nil {
return trace.Wrap(err)
}
s.writer.addWriter("session-recorder", recorder, true)
}
// start asynchronous loop of synchronizing session state with
// the session server (terminal size and activity)
go s.pollAndSync()
// Pipe session to shell and visa-versa capturing input and output
s.term.Add(1)
go func() {
// notify terminal about a copy process going on
defer s.term.Add(-1)
io.Copy(s.writer, s.term.pty)
log.Infof("session.io.copy() stopped")
}()
// wait for the shell to complete:
go func() {
result, err := collectStatus(cmd, cmd.Wait())
if result != nil {
s.registry.broadcastResult(s.id, *result)
}
if err != nil {
log.Errorf("shell exited with error: %v", err)
} else {
// no error? this means the command exited cleanly: no need
// for this session to "linger" after this.
s.SetLingerTTL(time.Duration(0))
}
}()
// wait for the session to end before the shell, kill the shell
go func() {
<-s.closeC
if cmd.Process != nil {
if err := cmd.Process.Kill(); err != nil {
if err.Error() != "os: process already finished" {
log.Error(trace.DebugReport(err))
}
}
}
}()
return nil
}
func (s *session) broadcastResult(r execResult) {
for _, p := range s.parties {
p.ctx.sendResult(r)
}
}
func (s *session) String() string {
return fmt.Sprintf("session(id=%v, parties=%v)", s.id, len(s.parties))
}
// removeParty removes the party from two places:
// 1. from in-memory dictionary inside of this session
// 2. from sessin server's storage
func (s *session) removeParty(p *party) error {
p.ctx.Infof("session.removeParty(%v)", p)
ns := s.getNamespace()
// in-memory locked remove:
lockedRemove := func() {
s.Lock()
defer s.Unlock()
delete(s.parties, p.id)
s.writer.deleteWriter(string(p.id))
}
lockedRemove()
// remove from the session server (asynchronously)
storageRemove := func(db rsession.Service) {
dbSession, err := db.GetSession(ns, s.id)
if err != nil {
log.Error(err)
return
}
if dbSession != nil && dbSession.RemoveParty(p.id) {
db.UpdateSession(rsession.UpdateRequest{
ID: dbSession.ID,
Parties: &dbSession.Parties,
Namespace: ns,
})
}
}
if s.registry.srv.sessionServer != nil {
go storageRemove(s.registry.srv.sessionServer)
}
return nil
}
func (s *session) GetLingerTTL() time.Duration {
s.Lock()
defer s.Unlock()
return s.lingerTTL
}
func (s *session) SetLingerTTL(ttl time.Duration) {
s.Lock()
defer s.Unlock()
s.lingerTTL = ttl
}
func (s *session) getNamespace() string {
return s.registry.srv.getNamespace()
}
// pollAndSync is a loop inside a goroutite which keeps synchronizing the terminal
// size to what's in the session (so all connected parties have the same terminal size)
// it also updates 'active' field on the session.
func (s *session) pollAndSync() {
log.Debugf("[session.registry] start pollAndSync()\b")
defer log.Debugf("[session.registry] end pollAndSync()\n")
ns := s.getNamespace()
sessionServer := s.registry.srv.sessionServer
if sessionServer == nil {
return
}
errCount := 0
sync := func() error {
sess, err := sessionServer.GetSession(ns, s.id)
if err != nil || sess == nil {
return trace.Wrap(err)
}
var active = true
sessionServer.UpdateSession(rsession.UpdateRequest{
Namespace: ns,
ID: sess.ID,
Active: &active,
Parties: nil,
})
winSize, err := s.term.getWinsize()
if err != nil {
return err
}
termSizeChanged := (int(winSize.Width) != sess.TerminalParams.W ||
int(winSize.Height) != sess.TerminalParams.H)
if termSizeChanged {
log.Debugf("terminal has changed from: %v to %v", sess.TerminalParams, winSize)
err = s.term.setWinsize(sess.TerminalParams)
}
return err
}
tick := time.NewTicker(defaults.TerminalSizeRefreshPeriod)
defer tick.Stop()
for {
if err := sync(); err != nil {
log.Infof("sync term error: %v", err)
errCount++
// if the error count keeps going up, this means we're stuck in
// a bad state: end this goroutine to avoid leaks
if errCount > maxTermSyncErrorCount {
return
}
} else {
errCount = 0
}
select {
case <-s.closeC:
log.Infof("[SSH] terminal sync stopped")
return
case <-tick.C:
}
}
}
// addParty is called when a new party joins the session.
func (s *session) addParty(p *party) error {
if s.login != p.login {
return trace.AccessDenied(
"can't switch users from %v to %v for session %v",
s.login, p.login, s.id)
}
s.parties[p.id] = p
// write last chunk (so the newly joined parties won't stare
// at a blank screen)
getRecentWrite := func() []byte {
s.writer.Lock()
defer s.writer.Unlock()
data := make([]byte, 0, 1024)
for i := range s.writer.recentWrites {
data = append(data, s.writer.recentWrites[i]...)
}
return data
}
p.Write(getRecentWrite())
// register this party as one of the session writers
// (output will go to it)
s.writer.addWriter(string(p.id), p, true)
p.ctx.addCloser(p)
s.term.Add(1)
// update session on the session server
storageUpdate := func(db rsession.Service) {
dbSession, err := db.GetSession(s.getNamespace(), s.id)
if err != nil {
log.Error(err)
return
}
log.Infof("PARTY: %v %v", dbSession, err)
dbSession.Parties = append(dbSession.Parties, rsession.Party{
ID: p.id,
User: p.user,
ServerID: p.serverID,
RemoteAddr: p.site,
LastActive: p.getLastActive(),
})
db.UpdateSession(rsession.UpdateRequest{
ID: dbSession.ID,
Parties: &dbSession.Parties,
Namespace: s.getNamespace(),
})
}
if s.registry.srv.sessionServer != nil {
go storageUpdate(s.registry.srv.sessionServer)
}
p.ctx.Infof("[SESSION] new party joined: %v", p.String())
// this goroutine keeps pumping party's input into the session
go func() {
defer s.term.Add(-1)
_, err := io.Copy(s.term.pty, p)
p.ctx.Infof("party.io.copy(%v) closed", p.id)
if err != nil {
log.Error(err)
}
}()
return nil
}
func (s *session) join(ch ssh.Channel, req *ssh.Request, ctx *ctx) (*party, error) {
p := newParty(s, ch, ctx)
if err := s.addParty(p); err != nil {
return nil, trace.Wrap(err)
}
return p, nil
}
func newMultiWriter() *multiWriter {
return &multiWriter{writers: make(map[string]writerWrapper)}
}
type multiWriter struct {
sync.RWMutex
writers map[string]writerWrapper
recentWrites [][]byte
}
type writerWrapper struct {
io.WriteCloser
closeOnError bool
}
func (m *multiWriter) addWriter(id string, w io.WriteCloser, closeOnError bool) {
m.Lock()
defer m.Unlock()
m.writers[id] = writerWrapper{WriteCloser: w, closeOnError: closeOnError}
}
func (m *multiWriter) deleteWriter(id string) {
m.Lock()
defer m.Unlock()
delete(m.writers, id)
}
func (m *multiWriter) lockedAddRecentWrite(p []byte) {
// make a copy of it (this slice is based on a shared buffer)
clone := make([]byte, len(p))
copy(clone, p)
// add to the list of recent writes
m.recentWrites = append(m.recentWrites, clone)
for len(m.recentWrites) > instantReplayLen {
m.recentWrites = m.recentWrites[1:]
}
}
// Write multiplexes the input to multiple sub-writers. The entire point
// of multiWriter is to do this
func (m *multiWriter) Write(p []byte) (n int, err error) {
// lock and make a local copy of available writers:
getWriters := func() (writers []writerWrapper) {
m.RLock()
defer m.RUnlock()
writers = make([]writerWrapper, 0, len(m.writers))
for _, w := range m.writers {
writers = append(writers, w)
}
// add the recent write chunk to the "instant replay" buffer
// of the session, to be replayed to newly joining parties:
m.lockedAddRecentWrite(p)
return writers
}
// unlock and multiplex the write to all writers:
for _, w := range getWriters() {
n, err = w.Write(p)
if err != nil {
if w.closeOnError {
return
}
continue
}
if n != len(p) {
err = io.ErrShortWrite
return
}
}
return len(p), nil
}
func newParty(s *session, ch ssh.Channel, ctx *ctx) *party {
return &party{
user: ctx.teleportUser,
login: ctx.login,
serverID: s.registry.srv.ID(),
site: ctx.conn.RemoteAddr().String(),
id: rsession.NewID(),
ch: ch,
ctx: ctx,
s: s,
sconn: ctx.conn,
termSizeC: make(chan []byte, 5),
closeC: make(chan bool),
}
}
type party struct {
sync.Mutex
login string
user string
serverID string
site string
id rsession.ID
s *session
sconn *ssh.ServerConn
ch ssh.Channel
ctx *ctx
closeC chan bool
termSizeC chan []byte
lastActive time.Time
closeOnce sync.Once
}
func (p *party) onWindowChanged(params *rsession.TerminalParams) {
log.Debugf("party(%s).onWindowChanged(%v)", p.id, params.Serialize())
p.Lock()
defer p.Unlock()
// this prefix will be appended to the end of every socker write going
// to this party:
prefix := []byte("\x00" + params.Serialize())
if p.termSizeC != nil && len(p.termSizeC) == 0 {
p.termSizeC <- prefix
}
}
func (p *party) updateActivity() {
p.Lock()
defer p.Unlock()
p.lastActive = time.Now()
}
func (p *party) getLastActive() time.Time {
p.Lock()
defer p.Unlock()
return p.lastActive
}
func (p *party) Read(bytes []byte) (int, error) {
p.updateActivity()
return p.ch.Read(bytes)
}
func (p *party) Write(bytes []byte) (int, error) {
return p.ch.Write(bytes)
}
func (p *party) String() string {
return fmt.Sprintf("%v party(id=%v)", p.ctx, p.id)
}
func (p *party) Close() (err error) {
p.closeOnce.Do(func() {
p.ctx.Infof("party[%v].Close()", p.id)
if err = p.s.registry.leaveSession(p); err != nil {
p.ctx.Error(err)
}
close(p.closeC)
close(p.termSizeC)
})
return err
}