2023-01-27 13:37:20 -08:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-03-03 09:33:09 -08:00
|
|
|
|
|
|
|
// Package paths returns platform and user-specific default paths to
|
|
|
|
// Tailscale files and directories.
|
|
|
|
package paths
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2021-02-05 09:53:54 -08:00
|
|
|
"path/filepath"
|
2020-03-03 09:33:09 -08:00
|
|
|
"runtime"
|
2021-05-30 10:48:22 +05:00
|
|
|
|
2022-08-04 10:43:49 -07:00
|
|
|
"tailscale.com/syncs"
|
2021-05-30 10:48:22 +05:00
|
|
|
"tailscale.com/version/distro"
|
2020-03-03 09:33:09 -08:00
|
|
|
)
|
|
|
|
|
2021-05-20 14:33:49 +02:00
|
|
|
// AppSharedDir is a string set by the iOS or Android app on start
|
2021-03-31 14:08:32 -07:00
|
|
|
// containing a directory we can read/write in.
|
2022-08-04 10:43:49 -07:00
|
|
|
var AppSharedDir syncs.AtomicValue[string]
|
2021-03-31 14:08:32 -07:00
|
|
|
|
2020-03-03 09:33:09 -08: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" {
|
2022-11-21 09:00:20 -08:00
|
|
|
return `\\.\pipe\ProtectedPrefix\Administrators\Tailscale\tailscaled`
|
2020-03-03 09:33:09 -08:00
|
|
|
}
|
2021-02-13 12:10:20 -08:00
|
|
|
if runtime.GOOS == "darwin" {
|
|
|
|
return "/var/run/tailscaled.socket"
|
|
|
|
}
|
2022-03-01 19:49:24 -08:00
|
|
|
switch distro.Get() {
|
|
|
|
case distro.Synology:
|
2022-12-02 09:35:49 -08:00
|
|
|
if distro.DSMVersion() == 6 {
|
|
|
|
return "/var/packages/Tailscale/etc/tailscaled.sock"
|
2021-04-02 12:02:53 -04:00
|
|
|
}
|
2022-12-02 09:35:49 -08:00
|
|
|
// DSM 7 (and higher? or failure to detect.)
|
|
|
|
return "/var/packages/Tailscale/var/tailscaled.sock"
|
2022-03-01 19:49:24 -08:00
|
|
|
case distro.Gokrazy:
|
|
|
|
return "/perm/tailscaled/tailscaled.sock"
|
2022-12-02 09:41:39 -08:00
|
|
|
case distro.QNAP:
|
|
|
|
return "/tmp/tailscale/tailscaled.sock"
|
2021-04-02 12:02:53 -04:00
|
|
|
}
|
2020-03-03 17:37:37 -08:00
|
|
|
if fi, err := os.Stat("/var/run"); err == nil && fi.IsDir() {
|
|
|
|
return "/var/run/tailscale/tailscaled.sock"
|
2020-03-03 09:33:09 -08:00
|
|
|
}
|
|
|
|
return "tailscaled.sock"
|
|
|
|
}
|
|
|
|
|
2023-08-23 21:19:11 -07:00
|
|
|
// Overridden in init by OS-specific files.
|
|
|
|
var (
|
|
|
|
stateFileFunc func() string
|
|
|
|
|
|
|
|
// ensureStateDirPerms applies a restrictive ACL/chmod
|
|
|
|
// to the provided directory.
|
|
|
|
ensureStateDirPerms = func(string) error { return nil }
|
|
|
|
)
|
2020-03-03 09:33:09 -08:00
|
|
|
|
|
|
|
// 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 09:53:54 -08:00
|
|
|
if runtime.GOOS == "windows" {
|
2021-09-14 19:29:07 -07:00
|
|
|
return filepath.Join(os.Getenv("ProgramData"), "Tailscale", "server-state.conf")
|
2021-02-05 09:53:54 -08:00
|
|
|
}
|
2020-03-03 09:33:09 -08:00
|
|
|
return ""
|
|
|
|
}
|
2021-09-21 15:00:30 -06:00
|
|
|
|
2022-09-25 14:29:55 -04:00
|
|
|
// MkStateDir ensures that dirPath, the daemon's configuration directory
|
2021-09-21 15:00:30 -06:00
|
|
|
// containing machine keys etc, both exists and has the correct permissions.
|
|
|
|
// We want it to only be accessible to the user the daemon is running under.
|
|
|
|
func MkStateDir(dirPath string) error {
|
|
|
|
if err := os.MkdirAll(dirPath, 0700); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ensureStateDirPerms(dirPath)
|
|
|
|
}
|
2023-08-23 21:19:11 -07:00
|
|
|
|
|
|
|
// LegacyStateFilePath returns the legacy path to the state file when
|
|
|
|
// it was stored under the current user's %LocalAppData%.
|
|
|
|
//
|
|
|
|
// It is only called on Windows.
|
|
|
|
func LegacyStateFilePath() string {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return filepath.Join(os.Getenv("LocalAppData"), "Tailscale", "server-state.conf")
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|