2020-03-03 17:33:09 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Package paths returns platform and user-specific default paths to
|
|
|
|
// Tailscale files and directories.
|
|
|
|
package paths
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2021-02-05 17:53:54 +00:00
|
|
|
"path/filepath"
|
2020-03-03 17:33:09 +00:00
|
|
|
"runtime"
|
2021-03-31 21:08:32 +00:00
|
|
|
"sync/atomic"
|
2020-03-03 17:33:09 +00:00
|
|
|
)
|
|
|
|
|
2021-03-31 21:08:32 +00:00
|
|
|
// IOSSharedDir is a string set by the iOS app on start
|
|
|
|
// containing a directory we can read/write in.
|
|
|
|
var IOSSharedDir atomic.Value
|
|
|
|
|
2020-03-03 17:33:09 +00:00
|
|
|
// DefaultTailscaledSocket returns the path to the tailscaled Unix socket
|
|
|
|
// or the empty string if there's no reasonable default.
|
|
|
|
func DefaultTailscaledSocket() string {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return ""
|
|
|
|
}
|
2021-02-13 20:10:20 +00:00
|
|
|
if runtime.GOOS == "darwin" {
|
|
|
|
return "/var/run/tailscaled.socket"
|
|
|
|
}
|
2021-04-02 16:02:53 +00:00
|
|
|
if runtime.GOOS == "linux" {
|
|
|
|
// TODO(crawshaw): does this path change with DSM7?
|
|
|
|
const synologySock = "/volume1/@appstore/Tailscale/var/tailscaled.sock" // SYNOPKG_PKGDEST in scripts/installer
|
|
|
|
if fi, err := os.Stat(filepath.Dir(synologySock)); err == nil && fi.IsDir() {
|
|
|
|
return synologySock
|
|
|
|
}
|
|
|
|
}
|
2020-03-04 01:37:37 +00:00
|
|
|
if fi, err := os.Stat("/var/run"); err == nil && fi.IsDir() {
|
|
|
|
return "/var/run/tailscale/tailscaled.sock"
|
2020-03-03 17:33:09 +00:00
|
|
|
}
|
|
|
|
return "tailscaled.sock"
|
|
|
|
}
|
|
|
|
|
|
|
|
var stateFileFunc func() string
|
|
|
|
|
|
|
|
// DefaultTailscaledStateFile returns the default path to the
|
|
|
|
// tailscaled state file, or the empty string if there's no reasonable
|
|
|
|
// default value.
|
|
|
|
func DefaultTailscaledStateFile() string {
|
|
|
|
if f := stateFileFunc; f != nil {
|
|
|
|
return f()
|
|
|
|
}
|
2021-02-05 17:53:54 +00:00
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return filepath.Join(os.Getenv("LocalAppData"), "Tailscale", "server-state.conf")
|
|
|
|
}
|
2020-03-03 17:33:09 +00:00
|
|
|
return ""
|
|
|
|
}
|