mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-03 23:05:50 +00:00
ssh/tailssh: simplify matchRule with Reject rules
Updates #3802 Change-Id: I59fe111eef5ac8abbcbcec922e293712a65a4830 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
31094d557b
commit
c994eba763
@ -976,7 +976,10 @@ func (c *conn) matchRule(r *tailcfg.SSHRule, pubKey gossh.PublicKey) (a *tailcfg
|
|||||||
if c.ruleExpired(r) {
|
if c.ruleExpired(r) {
|
||||||
return nil, "", errRuleExpired
|
return nil, "", errRuleExpired
|
||||||
}
|
}
|
||||||
if !r.Action.Reject || r.SSHUsers != nil {
|
if !r.Action.Reject {
|
||||||
|
// For all but Reject rules, SSHUsers is required.
|
||||||
|
// If SSHUsers is nil or empty, mapLocalUser will return an
|
||||||
|
// empty string anyway.
|
||||||
localUser = mapLocalUser(r.SSHUsers, c.info.sshUser)
|
localUser = mapLocalUser(r.SSHUsers, c.info.sshUser)
|
||||||
if localUser == "" {
|
if localUser == "" {
|
||||||
return nil, "", errUserMatch
|
return nil, "", errUserMatch
|
||||||
|
Loading…
x
Reference in New Issue
Block a user