mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-09 17:52:57 +01:00
This file was never truly necessary and has never actually been used in the history of Tailscale's open source releases. A Brief History of AUTHORS files --- The AUTHORS file was a pattern developed at Google, originally for Chromium, then adopted by Go and a bunch of other projects. The problem was that Chromium originally had a copyright line only recognizing Google as the copyright holder. Because Google (and most open source projects) do not require copyright assignemnt for contributions, each contributor maintains their copyright. Some large corporate contributors then tried to add their own name to the copyright line in the LICENSE file or in file headers. This quickly becomes unwieldy, and puts a tremendous burden on anyone building on top of Chromium, since the license requires that they keep all copyright lines intact. The compromise was to create an AUTHORS file that would list all of the copyright holders. The LICENSE file and source file headers would then include that list by reference, listing the copyright holder as "The Chromium Authors". This also become cumbersome to simply keep the file up to date with a high rate of new contributors. Plus it's not always obvious who the copyright holder is. Sometimes it is the individual making the contribution, but many times it may be their employer. There is no way for the proejct maintainer to know. Eventually, Google changed their policy to no longer recommend trying to keep the AUTHORS file up to date proactively, and instead to only add to it when requested: https://opensource.google/docs/releasing/authors. They are also clear that: > Adding contributors to the AUTHORS file is entirely within the > project's discretion and has no implications for copyright ownership. It was primarily added to appease a small number of large contributors that insisted that they be recognized as copyright holders (which was entirely their right to do). But it's not truly necessary, and not even the most accurate way of identifying contributors and/or copyright holders. In practice, we've never added anyone to our AUTHORS file. It only lists Tailscale, so it's not really serving any purpose. It also causes confusion because Tailscalars put the "Tailscale Inc & AUTHORS" header in other open source repos which don't actually have an AUTHORS file, so it's ambiguous what that means. Instead, we just acknowledge that the contributors to Tailscale (whoever they are) are copyright holders for their individual contributions. We also have the benefit of using the DCO (developercertificate.org) which provides some additional certification of their right to make the contribution. The source file changes were purely mechanical with: git ls-files | xargs sed -i -e 's/\(Tailscale Inc &\) AUTHORS/\1 contributors/g' Updates #cleanup Change-Id: Ia101a4a3005adb9118051b3416f5a64a4a45987d Signed-off-by: Will Norris <will@tailscale.com>
305 lines
9.9 KiB
Go
305 lines
9.9 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Windows-specific stuff that can't go in clientupdate.go because it needs
|
|
// x/sys/windows.
|
|
|
|
package clientupdate
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"golang.org/x/sys/windows"
|
|
"tailscale.com/util/winutil"
|
|
"tailscale.com/util/winutil/authenticode"
|
|
)
|
|
|
|
const (
|
|
// winMSIEnv is the environment variable that, if set, is the MSI file for
|
|
// the update command to install. It's passed like this so we can stop the
|
|
// tailscale.exe process from running before the msiexec process runs and
|
|
// tries to overwrite ourselves.
|
|
winMSIEnv = "TS_UPDATE_WIN_MSI"
|
|
// winVersionEnv is the environment variable that is set along with
|
|
// winMSIEnv and carries the version of tailscale that is being installed.
|
|
// It is used for logging purposes.
|
|
winVersionEnv = "TS_UPDATE_WIN_VERSION"
|
|
// updaterPrefix is the prefix for the temporary executable created by [makeSelfCopy].
|
|
updaterPrefix = "tailscale-updater"
|
|
)
|
|
|
|
func makeSelfCopy() (origPathExe, tmpPathExe string, err error) {
|
|
selfExe, err := os.Executable()
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
f, err := os.Open(selfExe)
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
defer f.Close()
|
|
f2, err := os.CreateTemp("", updaterPrefix+"-*.exe")
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
if err := markTempFileWindows(f2.Name()); err != nil {
|
|
return "", "", err
|
|
}
|
|
if _, err := io.Copy(f2, f); err != nil {
|
|
f2.Close()
|
|
return "", "", err
|
|
}
|
|
return selfExe, f2.Name(), f2.Close()
|
|
}
|
|
|
|
func markTempFileWindows(name string) error {
|
|
name16 := windows.StringToUTF16Ptr(name)
|
|
return windows.MoveFileEx(name16, nil, windows.MOVEFILE_DELAY_UNTIL_REBOOT)
|
|
}
|
|
|
|
const certSubjectTailscale = "Tailscale Inc."
|
|
|
|
func verifyAuthenticode(path string) error {
|
|
return authenticode.Verify(path, certSubjectTailscale)
|
|
}
|
|
|
|
func isTSGUIPresent() bool {
|
|
us, err := os.Executable()
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
tsgui := filepath.Join(filepath.Dir(us), "tsgui.dll")
|
|
_, err = os.Stat(tsgui)
|
|
return err == nil
|
|
}
|
|
|
|
func (up *Updater) updateWindows() error {
|
|
if msi := os.Getenv(winMSIEnv); msi != "" {
|
|
// stdout/stderr from this part of the install could be lost since the
|
|
// parent tailscaled is replaced. Create a temp log file to have some
|
|
// output to debug with in case update fails.
|
|
close, err := up.switchOutputToFile()
|
|
if err != nil {
|
|
up.Logf("failed to create log file for installation: %v; proceeding with existing outputs", err)
|
|
} else {
|
|
defer close.Close()
|
|
}
|
|
|
|
up.Logf("installing %v ...", msi)
|
|
if err := up.installMSI(msi); err != nil {
|
|
up.Logf("MSI install failed: %v", err)
|
|
return err
|
|
}
|
|
|
|
up.Logf("success.")
|
|
return nil
|
|
}
|
|
|
|
if !winutil.IsCurrentProcessElevated() {
|
|
return errors.New(`update must be run as Administrator
|
|
|
|
you can run the command prompt as Administrator one of these ways:
|
|
* right-click cmd.exe, select 'Run as administrator'
|
|
* press Windows+x, then press a
|
|
* press Windows+r, type in "cmd", then press Ctrl+Shift+Enter`)
|
|
}
|
|
ver, err := requestedTailscaleVersion(up.Version, up.Track)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
arch := runtime.GOARCH
|
|
if arch == "386" {
|
|
arch = "x86"
|
|
}
|
|
if !up.confirm(ver) {
|
|
return nil
|
|
}
|
|
|
|
tsDir := filepath.Join(os.Getenv("ProgramData"), "Tailscale")
|
|
msiDir := filepath.Join(tsDir, "MSICache")
|
|
if fi, err := os.Stat(tsDir); err != nil {
|
|
return fmt.Errorf("expected %s to exist, got stat error: %w", tsDir, err)
|
|
} else if !fi.IsDir() {
|
|
return fmt.Errorf("expected %s to be a directory; got %v", tsDir, fi.Mode())
|
|
}
|
|
if err := os.MkdirAll(msiDir, 0700); err != nil {
|
|
return err
|
|
}
|
|
up.cleanupOldDownloads(filepath.Join(msiDir, "*.msi"))
|
|
|
|
qualifiers := []string{ver, arch}
|
|
// TODO(aaron): Temporary hack so autoupdate still works on winui builds;
|
|
// remove when we enable winui by default on the unstable track.
|
|
if isTSGUIPresent() {
|
|
qualifiers = append(qualifiers, "winui")
|
|
}
|
|
|
|
pkgsPath := fmt.Sprintf("%s/tailscale-setup-%s.msi", up.Track, strings.Join(qualifiers, "-"))
|
|
msiTarget := filepath.Join(msiDir, path.Base(pkgsPath))
|
|
if err := up.downloadURLToFile(pkgsPath, msiTarget); err != nil {
|
|
return err
|
|
}
|
|
|
|
up.Logf("verifying MSI authenticode...")
|
|
if err := verifyAuthenticode(msiTarget); err != nil {
|
|
return fmt.Errorf("authenticode verification of %s failed: %w", msiTarget, err)
|
|
}
|
|
up.Logf("authenticode verification succeeded")
|
|
|
|
up.Logf("making tailscale.exe copy to switch to...")
|
|
up.cleanupOldDownloads(filepath.Join(os.TempDir(), updaterPrefix+"-*.exe"))
|
|
_, selfCopy, err := makeSelfCopy()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer os.Remove(selfCopy)
|
|
up.Logf("running tailscale.exe copy for final install...")
|
|
|
|
cmd := exec.Command(selfCopy, "update")
|
|
cmd.Env = append(os.Environ(), winMSIEnv+"="+msiTarget, winVersionEnv+"="+ver)
|
|
cmd.Stdout = up.Stderr
|
|
cmd.Stderr = up.Stderr
|
|
cmd.Stdin = os.Stdin
|
|
if err := cmd.Start(); err != nil {
|
|
return err
|
|
}
|
|
// Once it's started, exit ourselves, so the binary is free
|
|
// to be replaced.
|
|
os.Exit(0)
|
|
panic("unreachable")
|
|
}
|
|
|
|
func (up *Updater) installMSI(msi string) error {
|
|
var err error
|
|
for tries := 0; tries < 2; tries++ {
|
|
// msiexec.exe requires exclusive access to the log file, so create a dedicated one for each run.
|
|
installLogPath := up.startNewLogFile("tailscale-installer", os.Getenv(winVersionEnv))
|
|
up.Logf("Install log: %s", installLogPath)
|
|
cmd := exec.Command("msiexec.exe", "/i", filepath.Base(msi), "/quiet", "/norestart", "/qn", "/L*v", installLogPath)
|
|
cmd.Dir = filepath.Dir(msi)
|
|
cmd.Stdout = up.Stdout
|
|
cmd.Stderr = up.Stderr
|
|
cmd.Stdin = os.Stdin
|
|
err = cmd.Run()
|
|
switch err := err.(type) {
|
|
case nil:
|
|
// Success.
|
|
return nil
|
|
case *exec.ExitError:
|
|
// For possible error codes returned by Windows Installer, see
|
|
// https://web.archive.org/web/20250409144914/https://learn.microsoft.com/en-us/windows/win32/msi/error-codes
|
|
switch windows.Errno(err.ExitCode()) {
|
|
case windows.ERROR_SUCCESS_REBOOT_REQUIRED:
|
|
// In most cases, updating Tailscale should not require a reboot.
|
|
// If it does, it might be because we failed to close the GUI
|
|
// and the installer couldn't replace its executable.
|
|
// The old GUI will continue to run until the next reboot.
|
|
// Not ideal, but also not a retryable error.
|
|
up.Logf("[unexpected] reboot required")
|
|
return nil
|
|
case windows.ERROR_SUCCESS_REBOOT_INITIATED:
|
|
// Same as above, but perhaps the device is configured to prompt
|
|
// the user to reboot and the user has chosen to reboot now.
|
|
up.Logf("[unexpected] reboot initiated")
|
|
return nil
|
|
case windows.ERROR_INSTALL_ALREADY_RUNNING:
|
|
// The Windows Installer service is currently busy.
|
|
// It could be our own install initiated by user/MDM/GP, another MSI install or perhaps a Windows Update install.
|
|
// Anyway, we can't do anything about it right now. The user (or tailscaled) can retry later.
|
|
// Retrying now will likely fail, and is risky since we might uninstall the current version
|
|
// and then fail to install the new one, leaving the user with no Tailscale at all.
|
|
//
|
|
// TODO(nickkhyl,awly): should we check if this is actually a downgrade before uninstalling the current version?
|
|
// Also, maybe keep retrying the install longer if we uninstalled the current version due to a failed install attempt?
|
|
up.Logf("another installation is already in progress")
|
|
return err
|
|
}
|
|
default:
|
|
// Everything else is a retryable error.
|
|
}
|
|
|
|
up.Logf("Install attempt failed: %v", err)
|
|
uninstallVersion := up.currentVersion
|
|
if v := os.Getenv("TS_DEBUG_UNINSTALL_VERSION"); v != "" {
|
|
uninstallVersion = v
|
|
}
|
|
uninstallLogPath := up.startNewLogFile("tailscale-uninstaller", uninstallVersion)
|
|
// Assume it's a downgrade, which msiexec won't permit. Uninstall our current version first.
|
|
up.Logf("Uninstalling current version %q for downgrade...", uninstallVersion)
|
|
up.Logf("Uninstall log: %s", uninstallLogPath)
|
|
cmd = exec.Command("msiexec.exe", "/x", msiUUIDForVersion(uninstallVersion), "/norestart", "/qn", "/L*v", uninstallLogPath)
|
|
cmd.Stdout = up.Stdout
|
|
cmd.Stderr = up.Stderr
|
|
cmd.Stdin = os.Stdin
|
|
err = cmd.Run()
|
|
up.Logf("msiexec uninstall: %v", err)
|
|
}
|
|
return err
|
|
}
|
|
|
|
func msiUUIDForVersion(ver string) string {
|
|
arch := runtime.GOARCH
|
|
if arch == "386" {
|
|
arch = "x86"
|
|
}
|
|
track, err := versionToTrack(ver)
|
|
if err != nil {
|
|
track = UnstableTrack
|
|
}
|
|
msiURL := fmt.Sprintf("https://pkgs.tailscale.com/%s/tailscale-setup-%s-%s.msi", track, ver, arch)
|
|
return "{" + strings.ToUpper(uuid.NewSHA1(uuid.NameSpaceURL, []byte(msiURL)).String()) + "}"
|
|
}
|
|
|
|
func (up *Updater) switchOutputToFile() (io.Closer, error) {
|
|
var logFilePath string
|
|
exePath, err := os.Executable()
|
|
if err != nil {
|
|
logFilePath = up.startNewLogFile(updaterPrefix, os.Getenv(winVersionEnv))
|
|
} else {
|
|
// Use the same suffix as the self-copy executable.
|
|
suffix := strings.TrimSuffix(strings.TrimPrefix(filepath.Base(exePath), updaterPrefix), ".exe")
|
|
logFilePath = up.startNewLogFile(updaterPrefix, os.Getenv(winVersionEnv)+suffix)
|
|
}
|
|
|
|
up.Logf("writing update output to: %s", logFilePath)
|
|
logFile, err := os.Create(logFilePath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
up.Logf = func(m string, args ...any) {
|
|
fmt.Fprintf(logFile, m+"\n", args...)
|
|
}
|
|
up.Stdout = logFile
|
|
up.Stderr = logFile
|
|
return logFile, nil
|
|
}
|
|
|
|
// startNewLogFile returns a name for a new log file.
|
|
// It cleans up any old log files with the same baseNamePrefix.
|
|
func (up *Updater) startNewLogFile(baseNamePrefix, baseNameSuffix string) string {
|
|
baseName := fmt.Sprintf("%s-%s-%s.log", baseNamePrefix,
|
|
time.Now().Format("20060102T150405"), baseNameSuffix)
|
|
|
|
dir := filepath.Join(os.Getenv("ProgramData"), "Tailscale", "Logs")
|
|
if err := os.MkdirAll(dir, 0700); err != nil {
|
|
up.Logf("failed to create log directory: %v", err)
|
|
return filepath.Join(os.TempDir(), baseName)
|
|
}
|
|
|
|
// TODO(nickkhyl): preserve up to N old log files?
|
|
up.cleanupOldDownloads(filepath.Join(dir, baseNamePrefix+"-*.log"))
|
|
return filepath.Join(dir, baseName)
|
|
}
|