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>
318 lines
8.6 KiB
Go
318 lines
8.6 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// TSMP is our ICMP-like "Tailscale Message Protocol" for signaling
|
|
// Tailscale-specific messages between nodes. It uses IP protocol 99
|
|
// (reserved for "any private encryption scheme") within
|
|
// WireGuard's normal encryption between peers and never hits the host
|
|
// network stack.
|
|
|
|
package packet
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"errors"
|
|
"fmt"
|
|
"net/netip"
|
|
|
|
"go4.org/mem"
|
|
"tailscale.com/types/ipproto"
|
|
"tailscale.com/types/key"
|
|
)
|
|
|
|
const minTSMPSize = 7 // the rejected body is 7 bytes
|
|
|
|
// TailscaleRejectedHeader is a TSMP message that says that one
|
|
// Tailscale node has rejected the connection from another. Unlike a
|
|
// TCP RST, this includes a reason.
|
|
//
|
|
// On the wire, after the IP header, it's currently 7 or 8 bytes:
|
|
// - '!'
|
|
// - IPProto byte (IANA protocol number: TCP or UDP)
|
|
// - 'A' or 'S' (RejectedDueToACLs, RejectedDueToShieldsUp)
|
|
// - srcPort big endian uint16
|
|
// - dstPort big endian uint16
|
|
// - [optional] byte of flag bits:
|
|
// lowest bit (0x1): MaybeBroken
|
|
//
|
|
// In the future it might also accept 16 byte IP flow src/dst IPs
|
|
// after the header, if they're different than the IP-level ones.
|
|
type TailscaleRejectedHeader struct {
|
|
IPSrc netip.Addr // IPv4 or IPv6 header's src IP
|
|
IPDst netip.Addr // IPv4 or IPv6 header's dst IP
|
|
Src netip.AddrPort // rejected flow's src
|
|
Dst netip.AddrPort // rejected flow's dst
|
|
Proto ipproto.Proto // proto that was rejected (TCP or UDP)
|
|
Reason TailscaleRejectReason // why the connection was rejected
|
|
|
|
// MaybeBroken is whether the rejection is non-terminal (the
|
|
// client should not fail immediately). This is sent by a
|
|
// target when it's not sure whether it's totally broken, but
|
|
// it might be. For example, the target tailscaled might think
|
|
// its host firewall or IP forwarding aren't configured
|
|
// properly, but tailscaled might be wrong (not having enough
|
|
// visibility into what the OS is doing). When true, the
|
|
// message is simply an FYI as a potential reason to use for
|
|
// later when the pendopen connection tracking timer expires.
|
|
MaybeBroken bool
|
|
}
|
|
|
|
const rejectFlagBitMaybeBroken = 0x1
|
|
|
|
func (rh TailscaleRejectedHeader) String() string {
|
|
return fmt.Sprintf("TSMP-reject-flow{%s %s > %s}: %s", rh.Proto, rh.Src, rh.Dst, rh.Reason)
|
|
}
|
|
|
|
type TSMPType uint8
|
|
|
|
const (
|
|
// TSMPTypeRejectedConn is the type byte for a TailscaleRejectedHeader.
|
|
TSMPTypeRejectedConn TSMPType = '!'
|
|
|
|
// TSMPTypePing is the type byte for a TailscalePingRequest.
|
|
TSMPTypePing TSMPType = 'p'
|
|
|
|
// TSMPTypePong is the type byte for a TailscalePongResponse.
|
|
TSMPTypePong TSMPType = 'o'
|
|
|
|
// TSPMTypeDiscoAdvertisement is the type byte for sending disco keys
|
|
TSMPTypeDiscoAdvertisement TSMPType = 'a'
|
|
)
|
|
|
|
type TailscaleRejectReason byte
|
|
|
|
// IsZero reports whether r is the zero value, representing no rejection.
|
|
func (r TailscaleRejectReason) IsZero() bool { return r == TailscaleRejectReasonNone }
|
|
|
|
const (
|
|
// TailscaleRejectReasonNone is the TailscaleRejectReason zero value.
|
|
TailscaleRejectReasonNone TailscaleRejectReason = 0
|
|
|
|
// RejectedDueToACLs means that the host rejected the connection due to ACLs.
|
|
RejectedDueToACLs TailscaleRejectReason = 'A'
|
|
|
|
// RejectedDueToShieldsUp means that the host rejected the connection due to shields being up.
|
|
RejectedDueToShieldsUp TailscaleRejectReason = 'S'
|
|
|
|
// RejectedDueToIPForwarding means that the relay node's IP
|
|
// forwarding is disabled.
|
|
RejectedDueToIPForwarding TailscaleRejectReason = 'F'
|
|
|
|
// RejectedDueToHostFirewall means that the target host's
|
|
// firewall is blocking the traffic.
|
|
RejectedDueToHostFirewall TailscaleRejectReason = 'W'
|
|
)
|
|
|
|
func (r TailscaleRejectReason) String() string {
|
|
switch r {
|
|
case RejectedDueToACLs:
|
|
return "acl"
|
|
case RejectedDueToShieldsUp:
|
|
return "shields"
|
|
case RejectedDueToIPForwarding:
|
|
return "host-ip-forwarding-unavailable"
|
|
case RejectedDueToHostFirewall:
|
|
return "host-firewall"
|
|
}
|
|
return fmt.Sprintf("0x%02x", byte(r))
|
|
}
|
|
|
|
func (h TailscaleRejectedHeader) hasFlags() bool {
|
|
return h.MaybeBroken // the only one currently
|
|
}
|
|
|
|
func (h TailscaleRejectedHeader) Len() int {
|
|
v := 1 + // TSMPType byte
|
|
1 + // IPProto byte
|
|
1 + // TailscaleRejectReason byte
|
|
2*2 // 2 uint16 ports
|
|
if h.IPSrc.Is4() {
|
|
v += ip4HeaderLength
|
|
} else if h.IPSrc.Is6() {
|
|
v += ip6HeaderLength
|
|
}
|
|
if h.hasFlags() {
|
|
v++
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (h TailscaleRejectedHeader) Marshal(buf []byte) error {
|
|
if len(buf) < h.Len() {
|
|
return errSmallBuffer
|
|
}
|
|
if len(buf) > maxPacketLength {
|
|
return errLargePacket
|
|
}
|
|
if h.Src.Addr().Is4() {
|
|
iph := IP4Header{
|
|
IPProto: ipproto.TSMP,
|
|
Src: h.IPSrc,
|
|
Dst: h.IPDst,
|
|
}
|
|
iph.Marshal(buf)
|
|
buf = buf[ip4HeaderLength:]
|
|
} else if h.Src.Addr().Is6() {
|
|
iph := IP6Header{
|
|
IPProto: ipproto.TSMP,
|
|
Src: h.IPSrc,
|
|
Dst: h.IPDst,
|
|
}
|
|
iph.Marshal(buf)
|
|
buf = buf[ip6HeaderLength:]
|
|
} else {
|
|
return errors.New("bogus src IP")
|
|
}
|
|
buf[0] = byte(TSMPTypeRejectedConn)
|
|
buf[1] = byte(h.Proto)
|
|
buf[2] = byte(h.Reason)
|
|
binary.BigEndian.PutUint16(buf[3:5], h.Src.Port())
|
|
binary.BigEndian.PutUint16(buf[5:7], h.Dst.Port())
|
|
|
|
if h.hasFlags() {
|
|
var flags byte
|
|
if h.MaybeBroken {
|
|
flags |= rejectFlagBitMaybeBroken
|
|
}
|
|
buf[7] = flags
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// AsTailscaleRejectedHeader parses pp as an incoming rejection
|
|
// connection TSMP message.
|
|
//
|
|
// ok reports whether pp was a valid TSMP rejection packet.
|
|
func (pp *Parsed) AsTailscaleRejectedHeader() (h TailscaleRejectedHeader, ok bool) {
|
|
p := pp.Payload()
|
|
if len(p) < 7 || p[0] != byte(TSMPTypeRejectedConn) {
|
|
return
|
|
}
|
|
h = TailscaleRejectedHeader{
|
|
Proto: ipproto.Proto(p[1]),
|
|
Reason: TailscaleRejectReason(p[2]),
|
|
IPSrc: pp.Src.Addr(),
|
|
IPDst: pp.Dst.Addr(),
|
|
Src: netip.AddrPortFrom(pp.Dst.Addr(), binary.BigEndian.Uint16(p[3:5])),
|
|
Dst: netip.AddrPortFrom(pp.Src.Addr(), binary.BigEndian.Uint16(p[5:7])),
|
|
}
|
|
if len(p) > 7 {
|
|
flags := p[7]
|
|
h.MaybeBroken = (flags & rejectFlagBitMaybeBroken) != 0
|
|
}
|
|
return h, true
|
|
}
|
|
|
|
// TSMPPingRequest is a TSMP message that's like an ICMP ping request.
|
|
//
|
|
// On the wire, after the IP header, it's currently 9 bytes:
|
|
// - 'p' (TSMPTypePing)
|
|
// - 8 opaque ping bytes to copy back in the response
|
|
type TSMPPingRequest struct {
|
|
Data [8]byte
|
|
}
|
|
|
|
func (pp *Parsed) AsTSMPPing() (h TSMPPingRequest, ok bool) {
|
|
if pp.IPProto != ipproto.TSMP {
|
|
return
|
|
}
|
|
p := pp.Payload()
|
|
if len(p) < 9 || p[0] != byte(TSMPTypePing) {
|
|
return
|
|
}
|
|
copy(h.Data[:], p[1:])
|
|
return h, true
|
|
}
|
|
|
|
type TSMPPongReply struct {
|
|
IPHeader Header
|
|
Data [8]byte
|
|
PeerAPIPort uint16
|
|
}
|
|
|
|
// AsTSMPPong returns pp as a TSMPPongReply and whether it is one.
|
|
// The pong.IPHeader field is not populated.
|
|
func (pp *Parsed) AsTSMPPong() (pong TSMPPongReply, ok bool) {
|
|
if pp.IPProto != ipproto.TSMP {
|
|
return
|
|
}
|
|
p := pp.Payload()
|
|
if len(p) < 9 || p[0] != byte(TSMPTypePong) {
|
|
return
|
|
}
|
|
copy(pong.Data[:], p[1:])
|
|
if len(p) >= 11 {
|
|
pong.PeerAPIPort = binary.BigEndian.Uint16(p[9:])
|
|
}
|
|
return pong, true
|
|
}
|
|
|
|
func (h TSMPPongReply) Len() int {
|
|
return h.IPHeader.Len() + 11
|
|
}
|
|
|
|
func (h TSMPPongReply) Marshal(buf []byte) error {
|
|
if len(buf) < h.Len() {
|
|
return errSmallBuffer
|
|
}
|
|
if err := h.IPHeader.Marshal(buf); err != nil {
|
|
return err
|
|
}
|
|
buf = buf[h.IPHeader.Len():]
|
|
buf[0] = byte(TSMPTypePong)
|
|
copy(buf[1:], h.Data[:])
|
|
binary.BigEndian.PutUint16(buf[9:11], h.PeerAPIPort)
|
|
return nil
|
|
}
|
|
|
|
// TSMPDiscoKeyAdvertisement is a TSMP message that's used for distributing Disco Keys.
|
|
//
|
|
// On the wire, after the IP header, it's currently 33 bytes:
|
|
// - 'a' (TSMPTypeDiscoAdvertisement)
|
|
// - 32 disco key bytes
|
|
type TSMPDiscoKeyAdvertisement struct {
|
|
Src, Dst netip.Addr // Src and Dst are set from the parent IP Header when parsing.
|
|
Key key.DiscoPublic
|
|
}
|
|
|
|
func (ka *TSMPDiscoKeyAdvertisement) Marshal() ([]byte, error) {
|
|
var iph Header
|
|
if ka.Src.Is4() {
|
|
iph = IP4Header{
|
|
IPProto: ipproto.TSMP,
|
|
Src: ka.Src,
|
|
Dst: ka.Dst,
|
|
}
|
|
} else {
|
|
iph = IP6Header{
|
|
IPProto: ipproto.TSMP,
|
|
Src: ka.Src,
|
|
Dst: ka.Dst,
|
|
}
|
|
}
|
|
payload := make([]byte, 0, 33)
|
|
payload = append(payload, byte(TSMPTypeDiscoAdvertisement))
|
|
payload = ka.Key.AppendTo(payload)
|
|
if len(payload) != 33 {
|
|
// Mostly to safeguard against ourselves changing this in the future.
|
|
return []byte{}, fmt.Errorf("expected payload length 33, got %d", len(payload))
|
|
}
|
|
|
|
return Generate(iph, payload[:]), nil
|
|
}
|
|
|
|
func (pp *Parsed) AsTSMPDiscoAdvertisement() (tka TSMPDiscoKeyAdvertisement, ok bool) {
|
|
if pp.IPProto != ipproto.TSMP {
|
|
return
|
|
}
|
|
p := pp.Payload()
|
|
if len(p) < 33 || p[0] != byte(TSMPTypeDiscoAdvertisement) {
|
|
return
|
|
}
|
|
tka.Src = pp.Src.Addr()
|
|
tka.Dst = pp.Dst.Addr()
|
|
tka.Key = key.DiscoPublicFromRaw32(mem.B(p[1:33]))
|
|
|
|
return tka, true
|
|
}
|