mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-23 09:21:41 +00:00

This updates all source files to use a new standard header for copyright and license declaration. Notably, copyright no longer includes a date, and we now use the standard SPDX-License-Identifier header. This commit was done almost entirely mechanically with perl, and then some minimal manual fixes. Updates #6865 Signed-off-by: Will Norris <will@tailscale.com>
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !js && !windows
|
|
|
|
package cli
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strconv"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func init() {
|
|
getSSHClientEnvVar = func() string {
|
|
if os.Getenv("SUDO_USER") == "" {
|
|
// No sudo, just check the env.
|
|
return os.Getenv("SSH_CLIENT")
|
|
}
|
|
if runtime.GOOS != "linux" {
|
|
// TODO(maisem): implement this for other platforms. It's not clear
|
|
// if there is a way to get the environment for a given process on
|
|
// darwin and bsd.
|
|
return ""
|
|
}
|
|
// SID is the session ID of the user's login session.
|
|
// It is also the process ID of the original shell that the user logged in with.
|
|
// We only need to check the environment of that process.
|
|
sid, err := unix.Getsid(os.Getpid())
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
b, err := os.ReadFile(filepath.Join("/proc", strconv.Itoa(sid), "environ"))
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
prefix := []byte("SSH_CLIENT=")
|
|
for _, env := range bytes.Split(b, []byte{0}) {
|
|
if bytes.HasPrefix(env, prefix) {
|
|
return string(env[len(prefix):])
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
}
|