mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-07 22:42:02 -05: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>
195 lines
5.2 KiB
Go
195 lines
5.2 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !(ios || android || js)
|
|
|
|
// Package cloudinfo provides cloud metadata utilities.
|
|
package cloudinfo
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"net/http"
|
|
"net/netip"
|
|
"slices"
|
|
"strings"
|
|
"time"
|
|
|
|
"tailscale.com/feature/buildfeatures"
|
|
"tailscale.com/types/logger"
|
|
"tailscale.com/util/cloudenv"
|
|
)
|
|
|
|
const maxCloudInfoWait = 2 * time.Second
|
|
|
|
// CloudInfo holds state used in querying instance metadata (IMDS) endpoints.
|
|
type CloudInfo struct {
|
|
client http.Client
|
|
logf logger.Logf
|
|
|
|
// The following parameters are fixed for the lifetime of the cloudInfo
|
|
// object, but are used for testing.
|
|
cloud cloudenv.Cloud
|
|
endpoint string
|
|
}
|
|
|
|
// New constructs a new [*CloudInfo] that will log to the provided logger instance.
|
|
func New(logf logger.Logf) *CloudInfo {
|
|
if !buildfeatures.HasCloud {
|
|
return nil
|
|
}
|
|
tr := &http.Transport{
|
|
DisableKeepAlives: true,
|
|
Dial: (&net.Dialer{
|
|
Timeout: maxCloudInfoWait,
|
|
}).Dial,
|
|
}
|
|
|
|
return &CloudInfo{
|
|
client: http.Client{Transport: tr},
|
|
logf: logf,
|
|
cloud: cloudenv.Get(),
|
|
endpoint: "http://" + cloudenv.CommonNonRoutableMetadataIP,
|
|
}
|
|
}
|
|
|
|
// GetPublicIPs returns any public IPs attached to the current cloud instance,
|
|
// if the tailscaled process is running in a known cloud and there are any such
|
|
// IPs present.
|
|
//
|
|
// Currently supports only AWS.
|
|
func (ci *CloudInfo) GetPublicIPs(ctx context.Context) ([]netip.Addr, error) {
|
|
if !buildfeatures.HasCloud {
|
|
return nil, nil
|
|
}
|
|
switch ci.cloud {
|
|
case cloudenv.AWS:
|
|
ret, err := ci.getAWS(ctx)
|
|
ci.logf("[v1] cloudinfo.GetPublicIPs: AWS: %v, %v", ret, err)
|
|
return ret, err
|
|
}
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
// getAWSMetadata makes a request to the AWS metadata service at the given
|
|
// path, authenticating with the provided IMDSv2 token. The returned metadata
|
|
// is split by newline and returned as a slice.
|
|
func (ci *CloudInfo) getAWSMetadata(ctx context.Context, token, path string) ([]string, error) {
|
|
req, err := http.NewRequestWithContext(ctx, "GET", ci.endpoint+path, nil)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("creating request to %q: %w", path, err)
|
|
}
|
|
req.Header.Set("X-aws-ec2-metadata-token", token)
|
|
|
|
resp, err := ci.client.Do(req)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("making request to metadata service %q: %w", path, err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
switch resp.StatusCode {
|
|
case http.StatusOK:
|
|
// Good
|
|
case http.StatusNotFound:
|
|
// Nothing found, but this isn't an error; just return
|
|
return nil, nil
|
|
default:
|
|
return nil, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
|
|
}
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("reading response body for %q: %w", path, err)
|
|
}
|
|
|
|
return strings.Split(strings.TrimSpace(string(body)), "\n"), nil
|
|
}
|
|
|
|
// getAWS returns all public IPv4 and IPv6 addresses present in the AWS instance metadata.
|
|
func (ci *CloudInfo) getAWS(ctx context.Context) ([]netip.Addr, error) {
|
|
ctx, cancel := context.WithTimeout(ctx, maxCloudInfoWait)
|
|
defer cancel()
|
|
|
|
// Get a token so we can query the metadata service.
|
|
req, err := http.NewRequestWithContext(ctx, "PUT", ci.endpoint+"/latest/api/token", nil)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("creating token request: %w", err)
|
|
}
|
|
req.Header.Set("X-Aws-Ec2-Metadata-Token-Ttl-Seconds", "10")
|
|
|
|
resp, err := ci.client.Do(req)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("making token request to metadata service: %w", err)
|
|
}
|
|
body, err := io.ReadAll(resp.Body)
|
|
resp.Body.Close()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("reading token response body: %w", err)
|
|
}
|
|
token := string(body)
|
|
|
|
server := resp.Header.Get("Server")
|
|
if server != "EC2ws" {
|
|
return nil, fmt.Errorf("unexpected server header: %q", server)
|
|
}
|
|
|
|
// Iterate over all interfaces and get their public IP addresses, both IPv4 and IPv6.
|
|
macAddrs, err := ci.getAWSMetadata(ctx, token, "/latest/meta-data/network/interfaces/macs/")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("getting interface MAC addresses: %w", err)
|
|
}
|
|
|
|
var (
|
|
addrs []netip.Addr
|
|
errs []error
|
|
)
|
|
|
|
addAddr := func(addr string) {
|
|
ip, err := netip.ParseAddr(addr)
|
|
if err != nil {
|
|
errs = append(errs, fmt.Errorf("parsing IP address %q: %w", addr, err))
|
|
return
|
|
}
|
|
addrs = append(addrs, ip)
|
|
}
|
|
for _, mac := range macAddrs {
|
|
ips, err := ci.getAWSMetadata(ctx, token, "/latest/meta-data/network/interfaces/macs/"+mac+"/public-ipv4s")
|
|
if err != nil {
|
|
errs = append(errs, fmt.Errorf("getting IPv4 addresses for %q: %w", mac, err))
|
|
continue
|
|
}
|
|
|
|
for _, ip := range ips {
|
|
addAddr(ip)
|
|
}
|
|
|
|
// Try querying for IPv6 addresses.
|
|
ips, err = ci.getAWSMetadata(ctx, token, "/latest/meta-data/network/interfaces/macs/"+mac+"/ipv6s")
|
|
if err != nil {
|
|
errs = append(errs, fmt.Errorf("getting IPv6 addresses for %q: %w", mac, err))
|
|
continue
|
|
}
|
|
for _, ip := range ips {
|
|
addAddr(ip)
|
|
}
|
|
}
|
|
|
|
// Sort the returned addresses for determinism.
|
|
slices.SortFunc(addrs, func(a, b netip.Addr) int {
|
|
return a.Compare(b)
|
|
})
|
|
|
|
// Preferentially return any addresses we found, even if there were errors.
|
|
if len(addrs) > 0 {
|
|
return addrs, nil
|
|
}
|
|
if len(errs) > 0 {
|
|
return nil, fmt.Errorf("getting IP addresses: %w", errors.Join(errs...))
|
|
}
|
|
return nil, nil
|
|
}
|