mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 04:55:31 +00:00
safesocket: fix CLI for macsys GUI variant
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
ace2faf7ec
commit
5bc6d17f87
@ -7,6 +7,7 @@
|
|||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
@ -20,6 +21,32 @@ func init() {
|
|||||||
localTCPPortAndToken = localTCPPortAndTokenDarwin
|
localTCPPortAndToken = localTCPPortAndTokenDarwin
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// localTCPPortAndTokenMacsys returns the localhost TCP port number and auth token
|
||||||
|
// from the directory dir, if dir is for the "macsys" variant.
|
||||||
|
//
|
||||||
|
// In that case the files are:
|
||||||
|
// /Library/Tailscale/ipnport => $port (symlink with localhost port number target)
|
||||||
|
// /Library/Tailscale/sameuserproof-$port is a file with auth
|
||||||
|
func localTCPPortAndTokenMacsys(dir string) (port int, token string, err error) {
|
||||||
|
portStr, err := os.Readlink(filepath.Join(dir, "ipnport"))
|
||||||
|
if err != nil {
|
||||||
|
return 0, "", err
|
||||||
|
}
|
||||||
|
port, err = strconv.Atoi(portStr)
|
||||||
|
if err != nil {
|
||||||
|
return 0, "", err
|
||||||
|
}
|
||||||
|
authb, err := os.ReadFile(filepath.Join(dir, "sameuserproof-"+portStr))
|
||||||
|
if err != nil {
|
||||||
|
return 0, "", err
|
||||||
|
}
|
||||||
|
auth := strings.TrimSpace(string(authb))
|
||||||
|
if auth == "" {
|
||||||
|
return 0, "", errors.New("empty auth token in sameuserproof file")
|
||||||
|
}
|
||||||
|
return port, auth, nil
|
||||||
|
}
|
||||||
|
|
||||||
func localTCPPortAndTokenDarwin() (port int, token string, err error) {
|
func localTCPPortAndTokenDarwin() (port int, token string, err error) {
|
||||||
// There are two ways this binary can be run: as the Mac App Store sandboxed binary,
|
// There are two ways this binary can be run: as the Mac App Store sandboxed binary,
|
||||||
// or a normal binary that somebody built or download and are being run from outside
|
// or a normal binary that somebody built or download and are being run from outside
|
||||||
@ -27,6 +54,11 @@ func localTCPPortAndTokenDarwin() (port int, token string, err error) {
|
|||||||
// to the local daemon.
|
// to the local daemon.
|
||||||
|
|
||||||
if dir := os.Getenv("TS_MACOS_CLI_SHARED_DIR"); dir != "" {
|
if dir := os.Getenv("TS_MACOS_CLI_SHARED_DIR"); dir != "" {
|
||||||
|
// First see if we're running as the non-AppStore "macsys" variant.
|
||||||
|
if port, token, err := localTCPPortAndTokenMacsys(dir); err == nil {
|
||||||
|
return port, token, nil
|
||||||
|
}
|
||||||
|
|
||||||
// The current binary (this process) is sandboxed. The user is
|
// The current binary (this process) is sandboxed. The user is
|
||||||
// running the CLI via /Applications/Tailscale.app/Contents/MacOS/Tailscale
|
// running the CLI via /Applications/Tailscale.app/Contents/MacOS/Tailscale
|
||||||
// which sets the TS_MACOS_CLI_SHARED_DIR environment variable.
|
// which sets the TS_MACOS_CLI_SHARED_DIR environment variable.
|
||||||
@ -51,7 +83,7 @@ func localTCPPortAndTokenDarwin() (port int, token string, err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// The current process is running outside the sandbox, so use
|
// The current process is running outside the sandbox, so use
|
||||||
// lsof to find the IPNExtension:
|
// lsof to find the IPNExtension (the Mac App Store variant).
|
||||||
|
|
||||||
cmd := exec.Command("lsof",
|
cmd := exec.Command("lsof",
|
||||||
"-n", // numeric sockets; don't do DNS lookups, etc
|
"-n", // numeric sockets; don't do DNS lookups, etc
|
||||||
@ -62,6 +94,12 @@ func localTCPPortAndTokenDarwin() (port int, token string, err error) {
|
|||||||
)
|
)
|
||||||
out, err := cmd.Output()
|
out, err := cmd.Output()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
// Before returning an error, see if we're running the
|
||||||
|
// macsys variant at the normal location.
|
||||||
|
if port, token, err := localTCPPortAndTokenMacsys("/Library/Tailscale"); err == nil {
|
||||||
|
return port, token, nil
|
||||||
|
}
|
||||||
|
|
||||||
return 0, "", fmt.Errorf("failed to run '%s' looking for IPNExtension: %w", cmd, err)
|
return 0, "", fmt.Errorf("failed to run '%s' looking for IPNExtension: %w", cmd, err)
|
||||||
}
|
}
|
||||||
bs := bufio.NewScanner(bytes.NewReader(out))
|
bs := bufio.NewScanner(bytes.NewReader(out))
|
||||||
@ -83,5 +121,11 @@ func localTCPPortAndTokenDarwin() (port int, token string, err error) {
|
|||||||
}
|
}
|
||||||
return port, token, nil
|
return port, token, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Before returning an error, see if we're running the
|
||||||
|
// macsys variant at the normal location.
|
||||||
|
if port, token, err := localTCPPortAndTokenMacsys("/Library/Tailscale"); err == nil {
|
||||||
|
return port, token, nil
|
||||||
|
}
|
||||||
return 0, "", ErrTokenNotFound
|
return 0, "", ErrTokenNotFound
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user