3ec5be3f51
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>
296 lines
9.5 KiB
Go
296 lines
9.5 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build go1.19
|
|
|
|
package tailscale
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"tailscale.com/types/opt"
|
|
)
|
|
|
|
type GetDevicesResponse struct {
|
|
Devices []*Device `json:"devices"`
|
|
}
|
|
|
|
type DerpRegion struct {
|
|
Preferred bool `json:"preferred,omitempty"`
|
|
LatencyMilliseconds float64 `json:"latencyMs"`
|
|
}
|
|
|
|
type ClientConnectivity struct {
|
|
Endpoints []string `json:"endpoints"`
|
|
DERP string `json:"derp"`
|
|
MappingVariesByDestIP opt.Bool `json:"mappingVariesByDestIP"`
|
|
// DERPLatency is mapped by region name (e.g. "New York City", "Seattle").
|
|
DERPLatency map[string]DerpRegion `json:"latency"`
|
|
ClientSupports map[string]opt.Bool `json:"clientSupports"`
|
|
}
|
|
|
|
type Device struct {
|
|
// Addresses is a list of the devices's Tailscale IP addresses.
|
|
// It's currently just 1 element, the 100.x.y.z Tailscale IP.
|
|
Addresses []string `json:"addresses"`
|
|
DeviceID string `json:"id"`
|
|
NodeID string `json:"nodeId"`
|
|
User string `json:"user"`
|
|
Name string `json:"name"`
|
|
Hostname string `json:"hostname"`
|
|
|
|
ClientVersion string `json:"clientVersion"` // Empty for external devices.
|
|
UpdateAvailable bool `json:"updateAvailable"` // Empty for external devices.
|
|
OS string `json:"os"`
|
|
Tags []string `json:"tags"`
|
|
Created string `json:"created"` // Empty for external devices.
|
|
LastSeen string `json:"lastSeen"`
|
|
KeyExpiryDisabled bool `json:"keyExpiryDisabled"`
|
|
Expires string `json:"expires"`
|
|
Authorized bool `json:"authorized"`
|
|
IsExternal bool `json:"isExternal"`
|
|
MachineKey string `json:"machineKey"` // Empty for external devices.
|
|
NodeKey string `json:"nodeKey"`
|
|
|
|
// BlocksIncomingConnections is configured via the device's
|
|
// Tailscale client preferences. This field is only reported
|
|
// to the API starting with Tailscale 1.3.x clients.
|
|
BlocksIncomingConnections bool `json:"blocksIncomingConnections"`
|
|
|
|
// The following fields are not included by default:
|
|
|
|
// EnabledRoutes are the previously-approved subnet routes
|
|
// (e.g. "192.168.4.16/24", "10.5.2.4/32").
|
|
EnabledRoutes []string `json:"enabledRoutes"` // Empty for external devices.
|
|
// AdvertisedRoutes are the subnets (both enabled and not enabled)
|
|
// being requested from the node.
|
|
AdvertisedRoutes []string `json:"advertisedRoutes"` // Empty for external devices.
|
|
|
|
ClientConnectivity *ClientConnectivity `json:"clientConnectivity"`
|
|
|
|
// PostureIdentity contains extra identifiers collected from the device when
|
|
// the tailnet has the device posture identification features enabled. If
|
|
// Tailscale have attempted to collect this from the device but it has not
|
|
// opted in, PostureIdentity will have Disabled=true.
|
|
PostureIdentity *DevicePostureIdentity `json:"postureIdentity"`
|
|
|
|
// TailnetLockKey is the tailnet lock public key of the node as a hex string.
|
|
TailnetLockKey string `json:"tailnetLockKey,omitempty"`
|
|
|
|
// TailnetLockErr indicates an issue with the tailnet lock node-key signature
|
|
// on this device. This field is only populated when tailnet lock is enabled.
|
|
TailnetLockErr string `json:"tailnetLockError,omitempty"`
|
|
}
|
|
|
|
type DevicePostureIdentity struct {
|
|
Disabled bool `json:"disabled,omitempty"`
|
|
SerialNumbers []string `json:"serialNumbers,omitempty"`
|
|
}
|
|
|
|
// DeviceFieldsOpts determines which fields should be returned in the response.
|
|
//
|
|
// Please only use DeviceAllFields and DeviceDefaultFields.
|
|
// Other DeviceFieldsOpts are not supported.
|
|
//
|
|
// TODO: Support other DeviceFieldsOpts.
|
|
// In the future, users should be able to create their own DeviceFieldsOpts
|
|
// as valid arguments by setting the fields they want returned to a "non-nil"
|
|
// value. For example, DeviceFieldsOpts{NodeID: "true"} should only return NodeIDs.
|
|
type DeviceFieldsOpts Device
|
|
|
|
func (d *DeviceFieldsOpts) addFieldsToQueryParameter() string {
|
|
if d == DeviceDefaultFields || d == nil {
|
|
return "default"
|
|
}
|
|
if d == DeviceAllFields {
|
|
return "all"
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
var (
|
|
DeviceAllFields = &DeviceFieldsOpts{}
|
|
|
|
// DeviceDefaultFields specifies that the following fields are returned:
|
|
// Addresses, NodeID, User, Name, Hostname, ClientVersion, UpdateAvailable,
|
|
// OS, Created, LastSeen, KeyExpiryDisabled, Expires, Authorized, IsExternal
|
|
// MachineKey, NodeKey, BlocksIncomingConnections.
|
|
DeviceDefaultFields = &DeviceFieldsOpts{}
|
|
)
|
|
|
|
// Devices retrieves the list of devices for a tailnet.
|
|
//
|
|
// See the Device structure for the list of fields hidden for external devices.
|
|
// The optional fields parameter specifies which fields of the devices to return; currently
|
|
// only DeviceDefaultFields (equivalent to nil) and DeviceAllFields are supported.
|
|
// Other values are currently undefined.
|
|
func (c *Client) Devices(ctx context.Context, fields *DeviceFieldsOpts) (deviceList []*Device, err error) {
|
|
defer func() {
|
|
if err != nil {
|
|
err = fmt.Errorf("tailscale.Devices: %w", err)
|
|
}
|
|
}()
|
|
|
|
path := c.BuildTailnetURL("devices")
|
|
req, err := http.NewRequestWithContext(ctx, "GET", path, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// Add fields.
|
|
fieldStr := fields.addFieldsToQueryParameter()
|
|
q := req.URL.Query()
|
|
q.Add("fields", fieldStr)
|
|
req.URL.RawQuery = q.Encode()
|
|
|
|
b, resp, err := c.sendRequest(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// If status code was not successful, return the error.
|
|
// TODO: Change the check for the StatusCode to include other 2XX success codes.
|
|
if resp.StatusCode != http.StatusOK {
|
|
return nil, HandleErrorResponse(b, resp)
|
|
}
|
|
|
|
var devices GetDevicesResponse
|
|
err = json.Unmarshal(b, &devices)
|
|
return devices.Devices, err
|
|
}
|
|
|
|
// Device retrieved the details for a specific device.
|
|
//
|
|
// See the Device structure for the list of fields hidden for an external device.
|
|
// The optional fields parameter specifies which fields of the devices to return; currently
|
|
// only DeviceDefaultFields (equivalent to nil) and DeviceAllFields are supported.
|
|
// Other values are currently undefined.
|
|
func (c *Client) Device(ctx context.Context, deviceID string, fields *DeviceFieldsOpts) (device *Device, err error) {
|
|
defer func() {
|
|
if err != nil {
|
|
err = fmt.Errorf("tailscale.Device: %w", err)
|
|
}
|
|
}()
|
|
path := fmt.Sprintf("%s/api/v2/device/%s", c.baseURL(), deviceID)
|
|
req, err := http.NewRequestWithContext(ctx, "GET", path, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Add fields.
|
|
fieldStr := fields.addFieldsToQueryParameter()
|
|
q := req.URL.Query()
|
|
q.Add("fields", fieldStr)
|
|
req.URL.RawQuery = q.Encode()
|
|
|
|
b, resp, err := c.sendRequest(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// If status code was not successful, return the error.
|
|
// TODO: Change the check for the StatusCode to include other 2XX success codes.
|
|
if resp.StatusCode != http.StatusOK {
|
|
return nil, HandleErrorResponse(b, resp)
|
|
}
|
|
|
|
err = json.Unmarshal(b, &device)
|
|
return device, err
|
|
}
|
|
|
|
// DeleteDevice deletes the specified device from the Client's tailnet.
|
|
// NOTE: Only devices that belong to the Client's tailnet can be deleted.
|
|
// Deleting external devices is not supported.
|
|
func (c *Client) DeleteDevice(ctx context.Context, deviceID string) (err error) {
|
|
defer func() {
|
|
if err != nil {
|
|
err = fmt.Errorf("tailscale.DeleteDevice: %w", err)
|
|
}
|
|
}()
|
|
|
|
path := fmt.Sprintf("%s/api/v2/device/%s", c.baseURL(), url.PathEscape(deviceID))
|
|
req, err := http.NewRequestWithContext(ctx, "DELETE", path, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
b, resp, err := c.sendRequest(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Printf("RESP: %di, path: %s", resp.StatusCode, path)
|
|
|
|
// If status code was not successful, return the error.
|
|
// TODO: Change the check for the StatusCode to include other 2XX success codes.
|
|
if resp.StatusCode != http.StatusOK {
|
|
return HandleErrorResponse(b, resp)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// AuthorizeDevice marks a device as authorized.
|
|
func (c *Client) AuthorizeDevice(ctx context.Context, deviceID string) error {
|
|
return c.SetAuthorized(ctx, deviceID, true)
|
|
}
|
|
|
|
// SetAuthorized marks a device as authorized or not.
|
|
func (c *Client) SetAuthorized(ctx context.Context, deviceID string, authorized bool) error {
|
|
params := &struct {
|
|
Authorized bool `json:"authorized"`
|
|
}{Authorized: authorized}
|
|
data, err := json.Marshal(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
path := fmt.Sprintf("%s/api/v2/device/%s/authorized", c.baseURL(), url.PathEscape(deviceID))
|
|
req, err := http.NewRequestWithContext(ctx, "POST", path, bytes.NewBuffer(data))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
b, resp, err := c.sendRequest(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// If status code was not successful, return the error.
|
|
// TODO: Change the check for the StatusCode to include other 2XX success codes.
|
|
if resp.StatusCode != http.StatusOK {
|
|
return HandleErrorResponse(b, resp)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SetTags updates the ACL tags on a device.
|
|
func (c *Client) SetTags(ctx context.Context, deviceID string, tags []string) error {
|
|
params := &struct {
|
|
Tags []string `json:"tags"`
|
|
}{Tags: tags}
|
|
data, err := json.Marshal(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
path := fmt.Sprintf("%s/api/v2/device/%s/tags", c.baseURL(), url.PathEscape(deviceID))
|
|
req, err := http.NewRequestWithContext(ctx, "POST", path, bytes.NewBuffer(data))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
b, resp, err := c.sendRequest(req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// If status code was not successful, return the error.
|
|
// TODO: Change the check for the StatusCode to include other 2XX success codes.
|
|
if resp.StatusCode != http.StatusOK {
|
|
return HandleErrorResponse(b, resp)
|
|
}
|
|
|
|
return nil
|
|
}
|