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>
198 lines
7.0 KiB
Go
198 lines
7.0 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package httphdr implements functionality for parsing and formatting
|
|
// standard HTTP headers.
|
|
package httphdr
|
|
|
|
import (
|
|
"bytes"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
// Range is a range of bytes within some content.
|
|
type Range struct {
|
|
// Start is the starting offset.
|
|
// It is zero if Length is negative; it must not be negative.
|
|
Start int64
|
|
// Length is the length of the content.
|
|
// It is zero if the length extends to the end of the content.
|
|
// It is negative if the length is relative to the end (e.g., last 5 bytes).
|
|
Length int64
|
|
}
|
|
|
|
// ows is optional whitespace.
|
|
const ows = " \t" // per RFC 7230, section 3.2.3
|
|
|
|
// ParseRange parses a "Range" header per RFC 7233, section 3.
|
|
// It only handles "Range" headers where the units is "bytes".
|
|
// The "Range" header is usually only specified in GET requests.
|
|
func ParseRange(hdr string) (ranges []Range, ok bool) {
|
|
// Grammar per RFC 7233, appendix D:
|
|
// Range = byte-ranges-specifier | other-ranges-specifier
|
|
// byte-ranges-specifier = bytes-unit "=" byte-range-set
|
|
// bytes-unit = "bytes"
|
|
// byte-range-set =
|
|
// *("," OWS)
|
|
// (byte-range-spec | suffix-byte-range-spec)
|
|
// *(OWS "," [OWS ( byte-range-spec | suffix-byte-range-spec )])
|
|
// byte-range-spec = first-byte-pos "-" [last-byte-pos]
|
|
// suffix-byte-range-spec = "-" suffix-length
|
|
// We do not support other-ranges-specifier.
|
|
// All other identifiers are 1*DIGIT.
|
|
hdr = strings.Trim(hdr, ows) // per RFC 7230, section 3.2
|
|
units, elems, hasUnits := strings.Cut(hdr, "=")
|
|
elems = strings.TrimLeft(elems, ","+ows)
|
|
for _, elem := range strings.Split(elems, ",") {
|
|
elem = strings.Trim(elem, ows) // per RFC 7230, section 7
|
|
switch {
|
|
case strings.HasPrefix(elem, "-"): // i.e., "-" suffix-length
|
|
n, ok := parseNumber(strings.TrimPrefix(elem, "-"))
|
|
if !ok {
|
|
return ranges, false
|
|
}
|
|
ranges = append(ranges, Range{0, -n})
|
|
case strings.HasSuffix(elem, "-"): // i.e., first-byte-pos "-"
|
|
n, ok := parseNumber(strings.TrimSuffix(elem, "-"))
|
|
if !ok {
|
|
return ranges, false
|
|
}
|
|
ranges = append(ranges, Range{n, 0})
|
|
default: // i.e., first-byte-pos "-" last-byte-pos
|
|
prefix, suffix, hasDash := strings.Cut(elem, "-")
|
|
n, ok2 := parseNumber(prefix)
|
|
m, ok3 := parseNumber(suffix)
|
|
if !hasDash || !ok2 || !ok3 || m < n {
|
|
return ranges, false
|
|
}
|
|
ranges = append(ranges, Range{n, m - n + 1})
|
|
}
|
|
}
|
|
return ranges, units == "bytes" && hasUnits && len(ranges) > 0 // must see at least one element per RFC 7233, section 2.1
|
|
}
|
|
|
|
// FormatRange formats a "Range" header per RFC 7233, section 3.
|
|
// It only handles "Range" headers where the units is "bytes".
|
|
// The "Range" header is usually only specified in GET requests.
|
|
func FormatRange(ranges []Range) (hdr string, ok bool) {
|
|
b := []byte("bytes=")
|
|
for _, r := range ranges {
|
|
switch {
|
|
case r.Length > 0: // i.e., first-byte-pos "-" last-byte-pos
|
|
if r.Start < 0 {
|
|
return string(b), false
|
|
}
|
|
b = strconv.AppendUint(b, uint64(r.Start), 10)
|
|
b = append(b, '-')
|
|
b = strconv.AppendUint(b, uint64(r.Start+r.Length-1), 10)
|
|
b = append(b, ',')
|
|
case r.Length == 0: // i.e., first-byte-pos "-"
|
|
if r.Start < 0 {
|
|
return string(b), false
|
|
}
|
|
b = strconv.AppendUint(b, uint64(r.Start), 10)
|
|
b = append(b, '-')
|
|
b = append(b, ',')
|
|
case r.Length < 0: // i.e., "-" suffix-length
|
|
if r.Start != 0 {
|
|
return string(b), false
|
|
}
|
|
b = append(b, '-')
|
|
b = strconv.AppendUint(b, uint64(-r.Length), 10)
|
|
b = append(b, ',')
|
|
default:
|
|
return string(b), false
|
|
}
|
|
}
|
|
return string(bytes.TrimRight(b, ",")), len(ranges) > 0
|
|
}
|
|
|
|
// ParseContentRange parses a "Content-Range" header per RFC 7233, section 4.2.
|
|
// It only handles "Content-Range" headers where the units is "bytes".
|
|
// The "Content-Range" header is usually only specified in HTTP responses.
|
|
//
|
|
// If only the completeLength is specified, then start and length are both zero.
|
|
//
|
|
// Otherwise, the parses the start and length and the optional completeLength,
|
|
// which is -1 if unspecified. The start is non-negative and the length is positive.
|
|
func ParseContentRange(hdr string) (start, length, completeLength int64, ok bool) {
|
|
// Grammar per RFC 7233, appendix D:
|
|
// Content-Range = byte-content-range | other-content-range
|
|
// byte-content-range = bytes-unit SP (byte-range-resp | unsatisfied-range)
|
|
// bytes-unit = "bytes"
|
|
// byte-range-resp = byte-range "/" (complete-length | "*")
|
|
// unsatisfied-range = "*/" complete-length
|
|
// byte-range = first-byte-pos "-" last-byte-pos
|
|
// We do not support other-content-range.
|
|
// All other identifiers are 1*DIGIT.
|
|
hdr = strings.Trim(hdr, ows) // per RFC 7230, section 3.2
|
|
suffix, hasUnits := strings.CutPrefix(hdr, "bytes ")
|
|
suffix, unsatisfied := strings.CutPrefix(suffix, "*/")
|
|
if unsatisfied { // i.e., unsatisfied-range
|
|
n, ok := parseNumber(suffix)
|
|
if !ok {
|
|
return start, length, completeLength, false
|
|
}
|
|
completeLength = n
|
|
} else { // i.e., byte-range "/" (complete-length | "*")
|
|
prefix, suffix, hasDash := strings.Cut(suffix, "-")
|
|
middle, suffix, hasSlash := strings.Cut(suffix, "/")
|
|
n, ok0 := parseNumber(prefix)
|
|
m, ok1 := parseNumber(middle)
|
|
o, ok2 := parseNumber(suffix)
|
|
if suffix == "*" {
|
|
o, ok2 = -1, true
|
|
}
|
|
if !hasDash || !hasSlash || !ok0 || !ok1 || !ok2 || m < n || (o >= 0 && o <= m) {
|
|
return start, length, completeLength, false
|
|
}
|
|
start = n
|
|
length = m - n + 1
|
|
completeLength = o
|
|
}
|
|
return start, length, completeLength, hasUnits
|
|
}
|
|
|
|
// FormatContentRange parses a "Content-Range" header per RFC 7233, section 4.2.
|
|
// It only handles "Content-Range" headers where the units is "bytes".
|
|
// The "Content-Range" header is usually only specified in HTTP responses.
|
|
//
|
|
// If start and length are non-positive, then it encodes just the completeLength,
|
|
// which must be a non-negative value.
|
|
//
|
|
// Otherwise, it encodes the start and length as a byte-range,
|
|
// and optionally emits the complete length if it is non-negative.
|
|
// The length must be positive (as RFC 7233 uses inclusive end offsets).
|
|
func FormatContentRange(start, length, completeLength int64) (hdr string, ok bool) {
|
|
b := []byte("bytes ")
|
|
switch {
|
|
case start <= 0 && length <= 0 && completeLength >= 0: // i.e., unsatisfied-range
|
|
b = append(b, "*/"...)
|
|
b = strconv.AppendUint(b, uint64(completeLength), 10)
|
|
ok = true
|
|
case start >= 0 && length > 0: // i.e., byte-range "/" (complete-length | "*")
|
|
b = strconv.AppendUint(b, uint64(start), 10)
|
|
b = append(b, '-')
|
|
b = strconv.AppendUint(b, uint64(start+length-1), 10)
|
|
b = append(b, '/')
|
|
if completeLength >= 0 {
|
|
b = strconv.AppendUint(b, uint64(completeLength), 10)
|
|
ok = completeLength >= start+length && start+length > 0
|
|
} else {
|
|
b = append(b, '*')
|
|
ok = true
|
|
}
|
|
}
|
|
return string(b), ok
|
|
}
|
|
|
|
// parseNumber parses s as an unsigned decimal integer.
|
|
// It parses according to the 1*DIGIT grammar, which allows leading zeros.
|
|
func parseNumber(s string) (int64, bool) {
|
|
suffix := strings.TrimLeft(s, "0123456789")
|
|
prefix := s[:len(s)-len(suffix)]
|
|
n, err := strconv.ParseInt(prefix, 10, 64)
|
|
return n, suffix == "" && err == nil
|
|
}
|