2023-07-26 13:59:42 -07:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
package magicsock
|
|
|
|
|
|
|
|
import (
|
2024-08-06 09:00:28 -07:00
|
|
|
"golang.org/x/net/ipv4"
|
2023-07-26 13:59:42 -07:00
|
|
|
"golang.org/x/net/ipv6"
|
|
|
|
"tailscale.com/types/nettype"
|
|
|
|
)
|
|
|
|
|
2024-08-06 09:00:28 -07:00
|
|
|
var (
|
|
|
|
// This acts as a compile-time check for our usage of ipv6.Message in
|
|
|
|
// batchingConn for both IPv6 and IPv4 operations.
|
|
|
|
_ ipv6.Message = ipv4.Message{}
|
2023-07-26 13:59:42 -07:00
|
|
|
)
|
|
|
|
|
2024-08-06 09:00:28 -07:00
|
|
|
// batchingConn is a nettype.PacketConn that provides batched i/o.
|
|
|
|
type batchingConn interface {
|
|
|
|
nettype.PacketConn
|
|
|
|
ReadBatch(msgs []ipv6.Message, flags int) (n int, err error)
|
wgengine/magicsock: make endpoint.bestAddr Geneve-aware (#16195)
This commit adds a new type to magicsock, epAddr, which largely ends up
replacing netip.AddrPort in packet I/O paths throughout, enabling
Geneve encapsulation over UDP awareness.
The conn.ReceiveFunc for UDP has been revamped to fix and more clearly
distinguish the different classes of packets we expect to receive: naked
STUN binding messages, naked disco, naked WireGuard, Geneve-encapsulated
disco, and Geneve-encapsulated WireGuard.
Prior to this commit, STUN matching logic in the RX path could swallow
a naked WireGuard packet if the keypair index, which is randomly
generated, happened to overlap with a subset of the STUN magic cookie.
Updates tailscale/corp#27502
Updates tailscale/corp#29326
Signed-off-by: Jordan Whited <jordan@tailscale.com>
2025-06-06 09:46:29 -07:00
|
|
|
WriteBatchTo(buffs [][]byte, addr epAddr, offset int) error
|
2023-09-18 20:23:27 +02:00
|
|
|
}
|