Documentation ¶
Index ¶
- Constants
- Variables
- func AddrPortMappedEqual(l, r netip.AddrPort) bool
- func AddrPortToSockaddr(addrPort netip.AddrPort) (name *byte, namelen uint32)
- func AddrPortToSockaddrInet4(addrPort netip.AddrPort) unix.RawSockaddrInet4
- func AddrPortToSockaddrInet6(addrPort netip.AddrPort) unix.RawSockaddrInet6
- func AddrPortToSockaddrValue(addrPort netip.AddrPort) (rsa6 unix.RawSockaddrInet6, namelen uint32)
- func AddrPortUnmappedToSockaddr(addrPort netip.AddrPort) (name *byte, namelen uint32)
- func NewRawUDPConn(udpConn *net.UDPConn) (rawUDPConn, error)
- func ParseFlagsForError(flags int) error
- func ParseOrigDstAddrCmsg(cmsg []byte) (netip.AddrPort, error)
- func ResolveIP(ctx context.Context, network, host string) (netip.Addr, error)
- func SockaddrInet4ToAddrPort(sa *unix.RawSockaddrInet4) netip.AddrPort
- func SockaddrInet6ToAddrPort(sa *unix.RawSockaddrInet6) netip.AddrPort
- func SockaddrToAddrPort(name *byte, namelen uint32) (netip.AddrPort, error)
- func SockaddrValueToAddrPort(rsa6 unix.RawSockaddrInet6, namelen uint32) (netip.AddrPort, error)
- type Addr
- func AddrFromDomainPort(domain string, port uint16) (Addr, error)
- func AddrFromHostPort(host string, port uint16) (Addr, error)
- func AddrFromIPPort(addrPort netip.AddrPort) (addr Addr)
- func MustAddrFromDomainPort(domain string, port uint16) Addr
- func ParseAddr[T ~[]byte | ~string](s T) (Addr, error)
- func (a Addr) AppendTo(b []byte) []byte
- func (a Addr) Domain() string
- func (a Addr) Equals(b Addr) bool
- func (a Addr) Host() string
- func (a Addr) IP() netip.Addr
- func (a Addr) IPPort() netip.AddrPort
- func (a Addr) IsDomain() bool
- func (a Addr) IsIP() bool
- func (a Addr) IsValid() bool
- func (a Addr) MarshalText() ([]byte, error)
- func (a Addr) Port() uint16
- func (a Addr) ResolveIP(ctx context.Context, network string) (netip.Addr, error)
- func (a Addr) ResolveIPPort(ctx context.Context, network string) (netip.AddrPort, error)
- func (a Addr) String() string
- func (a *Addr) UnmarshalText(text []byte) error
- type Dialer
- type DialerCache
- type DialerSocketOptions
- type ListenConfig
- func (lc *ListenConfig) ListenTCP(ctx context.Context, network, address string) (tln *net.TCPListener, info SocketInfo, err error)
- func (lc *ListenConfig) ListenUDP(ctx context.Context, network, address string) (uc *net.UDPConn, info SocketInfo, err error)
- func (lc *ListenConfig) ListenUDPRawConn(ctx context.Context, network, address string) (c rawUDPConn, info SocketInfo, err error)
- type ListenConfigCache
- type ListenerSocketOptions
- type MmsgRConn
- type MmsgWConn
- type Mmsghdr
- type SocketControlMessage
- type SocketInfo
Constants ¶
const DefaultUDPSocketBufferSize = 7 << 20
DefaultUDPSocketBufferSize is the default send and receive buffer size of UDP sockets.
We use the same value of 7 MiB as wireguard-go: https://github.com/WireGuard/wireguard-go/blob/12269c2761734b15625017d8565745096325392f/conn/controlfns.go#L13-L18
const SYS_RECVMMSG = unix.SYS_RECVMMSG
const SocketControlMessageBufferSize = socketControlMessageBufferSize
SocketControlMessageBufferSize specifies the buffer size for receiving socket control messages.
const TransparentSocketControlMessageBufferSize = unix.SizeofCmsghdr + (unix.SizeofSockaddrInet6+unix.SizeofPtr-1) & ^(unix.SizeofPtr-1)
TransparentSocketControlMessageBufferSize specifies the buffer size for receiving IPV6_RECVORIGDSTADDR socket control messages.
Variables ¶
var ( // DefaultTCPListenerSocketOptions is the default [ListenerSocketOptions] for TCP servers. DefaultTCPListenerSocketOptions = ListenerSocketOptions{ TCPFastOpen: true, } // DefaultTCPListenConfig is the default [ListenConfig] for TCP listeners. DefaultTCPListenConfig = DefaultTCPListenerSocketOptions.ListenConfig() // DefaultUDPServerSocketOptions is the default [ListenerSocketOptions] for UDP servers. DefaultUDPServerSocketOptions = ListenerSocketOptions{ SendBufferSize: DefaultUDPSocketBufferSize, ReceiveBufferSize: DefaultUDPSocketBufferSize, PathMTUDiscovery: true, ReceivePacketInfo: true, } // DefaultUDPServerListenConfig is the default [ListenConfig] for UDP servers. DefaultUDPServerListenConfig = DefaultUDPServerSocketOptions.ListenConfig() // DefaultUDPClientSocketOptions is the default [ListenerSocketOptions] for UDP clients. DefaultUDPClientSocketOptions = ListenerSocketOptions{ SendBufferSize: DefaultUDPSocketBufferSize, ReceiveBufferSize: DefaultUDPSocketBufferSize, PathMTUDiscovery: true, } // DefaultUDPClientListenConfig is the default [ListenConfig] for UDP clients. DefaultUDPClientListenConfig = DefaultUDPClientSocketOptions.ListenConfig() )
var ( // DefaultTCPDialerSocketOptions is the default [DialerSocketOptions] for TCP clients. DefaultTCPDialerSocketOptions = DialerSocketOptions{ TCPFastOpen: true, TCPFastOpenFallback: true, } // DefaultTCPDialer is the default [Dialer] for TCP clients. DefaultTCPDialer = DefaultTCPDialerSocketOptions.Dialer() )
var ( ErrMessageTruncated = errors.New("the packet is larger than the supplied buffer") ErrControlMessageTruncated = errors.New("the control message is larger than the supplied buffer") )
var ALongTimeAgo = time.Unix(0, 0)
ALongTimeAgo is a non-zero time, far in the past, used for immediate deadlines.
Functions ¶
func AddrPortMappedEqual ¶ added in v1.1.0
AddrPortMappedEqual returns whether the two addresses point to the same endpoint. An IPv4 address and an IPv4-mapped IPv6 address pointing to the same endpoint are considered equal. For example, 1.1.1.1:53 and [::ffff:1.1.1.1]:53 are considered equal.
func AddrPortToSockaddr ¶
func AddrPortToSockaddrInet4 ¶
func AddrPortToSockaddrInet4(addrPort netip.AddrPort) unix.RawSockaddrInet4
func AddrPortToSockaddrInet6 ¶
func AddrPortToSockaddrInet6(addrPort netip.AddrPort) unix.RawSockaddrInet6
func AddrPortToSockaddrValue ¶ added in v1.3.0
func AddrPortToSockaddrValue(addrPort netip.AddrPort) (rsa6 unix.RawSockaddrInet6, namelen uint32)
func AddrPortUnmappedToSockaddr ¶ added in v1.4.0
func NewRawUDPConn ¶ added in v1.7.0
NewRawUDPConn wraps a net.UDPConn in a [rawUDPConn] for batch I/O.
func ParseFlagsForError ¶
ParseFlagsForError parses the message flags returned by the ReadMsgUDPAddrPort method and returns an error if MSG_TRUNC is set, indicating that the returned packet was truncated.
The check is skipped on Windows, because an error (WSAEMSGSIZE) is also returned when MSG_PARTIAL is set.
func ParseOrigDstAddrCmsg ¶ added in v1.4.0
func ResolveIP ¶ added in v1.7.0
ResolveIP resolves a domain name string into an IP address.
The network must be one of "ip", "ip4" or "ip6". String representations of IP addresses are not supported.
This function always returns the first IP address returned by the resolver, because the resolver takes care of sorting the IP addresses by address family availability and preference.
func SockaddrInet4ToAddrPort ¶ added in v1.4.0
func SockaddrInet4ToAddrPort(sa *unix.RawSockaddrInet4) netip.AddrPort
func SockaddrInet6ToAddrPort ¶ added in v1.4.0
func SockaddrInet6ToAddrPort(sa *unix.RawSockaddrInet6) netip.AddrPort
func SockaddrToAddrPort ¶
func SockaddrValueToAddrPort ¶ added in v1.3.0
Types ¶
type Addr ¶ added in v1.1.0
type Addr struct {
// contains filtered or unexported fields
}
Addr is the base address type used throughout the package.
An Addr is a port number combined with either an IP address or a domain name.
For space efficiency, the IP address and the domain string share the same space. The netip.Addr is stored in its original layout. The domain string's data pointer is stored in the ip.z field. Its length is stored at the beginning of the structure. This is essentially an unsafe "enum".
func AddrFromDomainPort ¶ added in v1.1.0
AddrFromDomainPort returns an Addr from the provided domain name and port number.
func AddrFromHostPort ¶ added in v1.1.0
AddrFromHostPort returns an Addr from the provided host string and port number. The host string may be a string representation of an IP address or a domain name.
func AddrFromIPPort ¶ added in v1.1.0
AddrFromIPPort returns an Addr from the provided netip.AddrPort.
func MustAddrFromDomainPort ¶ added in v1.1.0
MustAddrFromDomainPort calls AddrFromDomainPort and panics on error.
func ParseAddr ¶ added in v1.1.0
ParseAddr parses the provided string representation of an address and returns the parsed address or an error.
func (Addr) AppendTo ¶ added in v1.1.0
AppendTo appends the string representation of the address to the provided buffer.
If the address is zero value, nothing is appended.
func (Addr) Domain ¶ added in v1.1.0
Domain returns the domain name.
If the address is an IP address or zero value, this method panics.
func (Addr) Host ¶ added in v1.1.0
Host returns the string representation of the IP address or the domain name.
If the address is zero value, this method panics.
func (Addr) IP ¶ added in v1.1.0
IP returns the IP address.
If the address is a domain name or zero value, this method panics.
func (Addr) IPPort ¶ added in v1.1.0
IPPort returns a netip.AddrPort.
If the address is a domain name or zero value, this method panics.
func (Addr) IsValid ¶ added in v1.5.0
IsValid returns whether the address is an initialized address (not a zero value).
func (Addr) MarshalText ¶ added in v1.1.0
MarshalText implements the encoding.TextMarshaler MarshalText method.
func (Addr) ResolveIP ¶ added in v1.1.0
ResolveIP returns the IP address itself or the resolved IP address of the domain name.
The network is only used for domain name resolution and must be one of "ip", "ip4" or "ip6".
If the address is zero value, this method panics.
func (Addr) ResolveIPPort ¶ added in v1.1.0
ResolveIPPort returns the IP address itself or the resolved IP address of the domain name and the port number as a netip.AddrPort.
The network is only used for domain name resolution and must be one of "ip", "ip4" or "ip6".
If the address is zero value, this method panics.
func (Addr) String ¶ added in v1.1.0
String returns the string representation of the address.
If the address is zero value, an empty string is returned.
func (*Addr) UnmarshalText ¶ added in v1.1.0
UnmarshalText implements the encoding.TextUnmarshaler UnmarshalText method.
type Dialer ¶ added in v1.8.0
type Dialer tfo.Dialer
Dialer is tfo.Dialer but provides a subjectively nicer API.
type DialerCache ¶ added in v1.7.0
type DialerCache map[DialerSocketOptions]Dialer
DialerCache is a map of DialerSocketOptions to Dialer.
func NewDialerCache ¶ added in v1.7.0
func NewDialerCache() DialerCache
NewDialerCache creates a new cache for Dialer with a few default entries.
func (DialerCache) Get ¶ added in v1.7.0
func (cache DialerCache) Get(dso DialerSocketOptions) (d Dialer)
Get returns a Dialer for the given DialerSocketOptions.
type DialerSocketOptions ¶ added in v1.7.0
type DialerSocketOptions struct { // Fwmark sets the dialer's fwmark on Linux, or user cookie on FreeBSD. // // Available on Linux and FreeBSD. Fwmark int // TrafficClass sets the traffic class of the dialer. // // Available on most platforms except Windows. TrafficClass int // TCPFastOpen enables TCP Fast Open on the dialer. // // Available on Linux, macOS, FreeBSD, and Windows. TCPFastOpen bool // TCPFastOpenFallback enables runtime detection of TCP Fast Open support on the dialer. // // When enabled, the dialer will connect without TFO if TFO is not available on the system. // When disabled, the dialer will abort if TFO cannot be enabled on the socket. // // Available on all platforms. TCPFastOpenFallback bool // MultipathTCP enables multipath TCP on the dialer. // // Unlike Go std, we make MPTCP strictly opt-in. // That is, if this field is false, MPTCP will be explicitly disabled. // This ensures that if Go std suddenly decides to enable MPTCP by default, // existing configurations won't encounter issues due to missing features in the kernel MPTCP stack, // such as TCP keepalive (as of Linux 6.5), and failed connect attempts won't always be retried once. // // Available on platforms supported by Go std's MPTCP implementation. MultipathTCP bool }
DialerSocketOptions contains dialer-specific socket options.
func (DialerSocketOptions) Dialer ¶ added in v1.7.0
func (dso DialerSocketOptions) Dialer() Dialer
Dialer returns a Dialer with a control function that sets the socket options.
type ListenConfig ¶ added in v1.8.0
type ListenConfig struct {
// contains filtered or unexported fields
}
ListenConfig wraps a tfo.ListenConfig and provides a subjectively nicer API.
func (*ListenConfig) ListenTCP ¶ added in v1.8.0
func (lc *ListenConfig) ListenTCP(ctx context.Context, network, address string) (tln *net.TCPListener, info SocketInfo, err error)
ListenTCP wraps tfo.ListenConfig.Listen and returns a *net.TCPListener directly.
func (*ListenConfig) ListenUDP ¶ added in v1.8.0
func (lc *ListenConfig) ListenUDP(ctx context.Context, network, address string) (uc *net.UDPConn, info SocketInfo, err error)
ListenUDP wraps net.ListenConfig.ListenPacket and returns a *net.UDPConn directly.
func (*ListenConfig) ListenUDPRawConn ¶ added in v1.8.0
func (lc *ListenConfig) ListenUDPRawConn(ctx context.Context, network, address string) (c rawUDPConn, info SocketInfo, err error)
ListenUDPRawConn is like [ListenUDP] but wraps the *net.UDPConn in a [rawUDPConn] for batch I/O.
type ListenConfigCache ¶ added in v1.7.0
type ListenConfigCache map[ListenerSocketOptions]ListenConfig
ListenConfigCache is a map of ListenerSocketOptions to ListenConfig.
func NewListenConfigCache ¶ added in v1.7.0
func NewListenConfigCache() ListenConfigCache
NewListenConfigCache creates a new cache for ListenConfig with a few default entries.
func (ListenConfigCache) Get ¶ added in v1.7.0
func (cache ListenConfigCache) Get(lso ListenerSocketOptions) (lc ListenConfig)
Get returns a ListenConfig for the given ListenerSocketOptions.
type ListenerSocketOptions ¶ added in v1.7.0
type ListenerSocketOptions struct { // SendBufferSize sets the send buffer size of the listener. // // Available on POSIX systems. SendBufferSize int // ReceiveBufferSize sets the receive buffer size of the listener. // // Available on POSIX systems. ReceiveBufferSize int // Fwmark sets the listener's fwmark on Linux, or user cookie on FreeBSD. // // Available on Linux and FreeBSD. Fwmark int // TrafficClass sets the traffic class of the listener. // // Available on most platforms except Windows. TrafficClass int // TCPFastOpenBacklog specifies the maximum number of pending TFO connections on Linux. // If the value is 0, Go std's listen(2) backlog is used. // // On other platforms, a non-negative value is ignored, as they do not have the option to set the TFO backlog. // // On all platforms, a negative value disables TFO. TCPFastOpenBacklog int // TCPDeferAcceptSecs sets TCP_DEFER_ACCEPT to the given number of seconds on the listener. // // Available on Linux. TCPDeferAcceptSecs int // TCPUserTimeoutMsecs sets TCP_USER_TIMEOUT to the given number of milliseconds on the listener. // // Available on Linux. TCPUserTimeoutMsecs int // ReusePort enables SO_REUSEPORT on the listener. // // Available on Linux and the BSDs. ReusePort bool // Transparent enables transparent proxy on the listener. // // Only available on Linux. Transparent bool // PathMTUDiscovery enables Path MTU Discovery on the listener. // // Available on Linux, macOS, FreeBSD, and Windows. PathMTUDiscovery bool // TCPFastOpen enables TCP Fast Open on the listener. // // Available on Linux, macOS, FreeBSD, and Windows. TCPFastOpen bool // TCPFastOpenFallback enables runtime detection of TCP Fast Open support on the listener. // // When enabled, the listener will start without TFO if TFO is not available on the system. // When disabled, the listener will abort if TFO cannot be enabled on the socket. // // Available on all platforms. TCPFastOpenFallback bool // MultipathTCP enables multipath TCP on the listener. // // Unlike Go std, we make MPTCP strictly opt-in. // That is, if this field is false, MPTCP will be explicitly disabled. // This ensures that if Go std suddenly decides to enable MPTCP by default, // existing configurations won't encounter issues due to missing features in the kernel MPTCP stack, // such as TCP keepalive (as of Linux 6.5), and failed connect attempts won't always be retried once. // // Available on platforms supported by Go std's MPTCP implementation. MultipathTCP bool // ProbeUDPGSOSupport enables best-effort probing of // UDP Generic Segmentation Offload (GSO) support on the listener. // // Available on Linux and Windows. ProbeUDPGSOSupport bool // UDPGenericReceiveOffload enables UDP Generic Receive Offload (GRO) on the listener. // // Available on Linux and Windows. UDPGenericReceiveOffload bool // ReceivePacketInfo enables the reception of packet information control messages on the listener. // // Available on Linux, macOS, and Windows. ReceivePacketInfo bool // ReceiveOriginalDestAddr enables the reception of original destination address control messages on the listener. // // Only available on Linux. ReceiveOriginalDestAddr bool }
ListenerSocketOptions contains listener-specific socket options.
func (ListenerSocketOptions) ListenConfig ¶ added in v1.7.0
func (lso ListenerSocketOptions) ListenConfig() ListenConfig
ListenConfig returns a ListenConfig that sets the socket options.
type MmsgRConn ¶ added in v1.7.0
type MmsgRConn struct {
// contains filtered or unexported fields
}
MmsgRConn wraps a net.UDPConn and provides the [ReadMsgs] method for reading multiple messages in a single recvmmsg(2) system call.
MmsgRConn is not safe for concurrent use. Use the [RConn] method to create a new MmsgRConn instance for each goroutine.
func (MmsgRConn) RConn ¶ added in v1.7.0
func (c MmsgRConn) RConn() *MmsgRConn
RConn returns a new MmsgRConn instance for batch reading.
type MmsgWConn ¶ added in v1.7.0
type MmsgWConn struct {
// contains filtered or unexported fields
}
MmsgWConn wraps a net.UDPConn and provides the [WriteMsgs] method for writing multiple messages in a single sendmmsg(2) system call.
MmsgWConn is not safe for concurrent use. Use the [WConn] method to create a new MmsgWConn instance for each goroutine.
func (MmsgWConn) RConn ¶ added in v1.7.0
func (c MmsgWConn) RConn() *MmsgRConn
RConn returns a new MmsgRConn instance for batch reading.
type SocketControlMessage ¶ added in v1.11.2
type SocketControlMessage struct { // PktinfoAddr is the IP address of the network interface the packet was received from. PktinfoAddr netip.Addr // PktinfoIfindex is the index of the network interface the packet was received from. PktinfoIfindex uint32 // SegmentSize is the UDP GRO/GSO segment size. SegmentSize uint32 }
SocketControlMessage contains information that can be parsed from or put into socket control messages.
func ParseSocketControlMessage ¶ added in v1.11.2
func ParseSocketControlMessage(cmsg []byte) (m SocketControlMessage, err error)
ParseSocketControlMessage parses a sequence of socket control messages and returns the parsed information.
func (SocketControlMessage) AppendTo ¶ added in v1.11.2
func (m SocketControlMessage) AppendTo(b []byte) []byte
AppendTo appends the socket control message to the buffer.
type SocketInfo ¶ added in v1.11.2
type SocketInfo struct { // MaxUDPGSOSegments is the maximum number of UDP GSO segments supported by the socket. // // If UDP GSO is not enabled on the socket, or the system does not support UDP GSO, the value is 1. // // The value is 0 if the socket is not a UDP socket. MaxUDPGSOSegments uint32 // UDPGenericReceiveOffload indicates whether UDP GRO is enabled on the socket. UDPGenericReceiveOffload bool }
SocketInfo contains information about a socket.
Source Files ¶
- addr.go
- cmsg.go
- cmsg_linux.go
- conn.go
- conn_bufsize_posix.go
- conn_darwinlinuxwindows.go
- conn_flags_tclass.go
- conn_freebsdlinux.go
- conn_linux.go
- conn_mmsg.go
- conn_pmtud.go
- conn_reuseport.go
- conn_udpgsogro.go
- deadline.go
- mmsg.go
- sockaddr_linuxsolaris.go
- sockaddr_notwindows.go
- syscall_mmsg.go
- zsysnum_mmsg_generic.go
- ztypes_mmsg.go