ipn/ipnserver: grant client r/w access if peer uid matches tailscaled

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
pull/1423/head
Brad Fitzpatrick 3 years ago committed by Brad Fitzpatrick
parent 63ed4dd6c9
commit 15b6969a95

@ -19,6 +19,7 @@ import (
"os/signal"
"os/user"
"runtime"
"strconv"
"strings"
"sync"
"sync/atomic"
@ -336,6 +337,10 @@ func isReadonlyConn(c net.Conn, logf logger.Logf) bool {
logf("connection from userid %v; root has access", uid)
return rw
}
if selfUID := os.Getuid(); selfUID != 0 && uid == strconv.Itoa(selfUID) {
logf("connection from userid %v; connection from non-root user matching daemon has access", uid)
return rw
}
var adminGroupID string
switch runtime.GOOS {
case "darwin":

Loading…
Cancel
Save