ssh/tailssh: enable recording of non-pty sessions
Updates tailscale/corp#9967
Signed-off-by: Maisem Ali <maisem@tailscale.com>
(cherry picked from commit 8a246487c2
)
pull/7789/head
parent
0651c1a069
commit
8414c591e5
|
@ -1130,10 +1130,7 @@ func (ss *sshSession) recorders() []netip.AddrPort {
|
|||
}
|
||||
|
||||
func (ss *sshSession) shouldRecord() bool {
|
||||
// for now only record pty sessions
|
||||
// TODO(bradfitz,maisem): support recording non-pty stuff too.
|
||||
_, _, isPtyReq := ss.Pty()
|
||||
return isPtyReq && len(ss.recorders()) > 0
|
||||
return len(ss.recorders()) > 0
|
||||
}
|
||||
|
||||
type sshConnInfo struct {
|
||||
|
|
|
@ -539,7 +539,8 @@ func TestSSH(t *testing.T) {
|
|||
node: &tailcfg.Node{},
|
||||
uprof: tailcfg.UserProfile{},
|
||||
}
|
||||
sc.finalAction = &tailcfg.SSHAction{Accept: true}
|
||||
sc.action0 = &tailcfg.SSHAction{Accept: true}
|
||||
sc.finalAction = sc.action0
|
||||
|
||||
sc.Handler = func(s ssh.Session) {
|
||||
sc.newSSHSession(s).run()
|
||||
|
|
Loading…
Reference in New Issue