2019-11-07 17:13:05 +01:00
|
|
|
/* SPDX-License-Identifier: MIT
|
|
|
|
*
|
2021-01-28 17:52:15 +01:00
|
|
|
* Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved.
|
2019-11-07 17:13:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Package conn implements WireGuard's network connections.
|
|
|
|
package conn
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2021-04-10 01:21:35 +02:00
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"runtime"
|
2019-11-07 17:13:05 +01:00
|
|
|
"strings"
|
2021-11-05 01:52:54 +01:00
|
|
|
|
|
|
|
"golang.zx2c4.com/go118/netip"
|
2019-11-07 17:13:05 +01:00
|
|
|
)
|
|
|
|
|
2021-03-31 22:55:18 +02:00
|
|
|
// A ReceiveFunc receives a single inbound packet from the network.
|
|
|
|
// It writes the data into b. n is the length of the packet.
|
|
|
|
// ep is the remote endpoint.
|
|
|
|
type ReceiveFunc func(b []byte) (n int, ep Endpoint, err error)
|
|
|
|
|
2019-11-07 17:13:05 +01:00
|
|
|
// A Bind listens on a port for both IPv6 and IPv4 UDP traffic.
|
2020-06-22 02:40:59 +02:00
|
|
|
//
|
|
|
|
// A Bind interface may also be a PeekLookAtSocketFd or BindSocketToInterface,
|
|
|
|
// depending on the platform-specific implementation.
|
2019-11-07 17:13:05 +01:00
|
|
|
type Bind interface {
|
2021-02-22 02:01:50 +01:00
|
|
|
// Open puts the Bind into a listening state on a given port and reports the actual
|
|
|
|
// port that it bound to. Passing zero results in a random selection.
|
2021-03-31 22:55:18 +02:00
|
|
|
// fns is the set of functions that will be called to receive packets.
|
|
|
|
Open(port uint16) (fns []ReceiveFunc, actualPort uint16, err error)
|
2021-02-22 02:01:50 +01:00
|
|
|
|
|
|
|
// Close closes the Bind listener.
|
2021-03-31 22:55:18 +02:00
|
|
|
// All fns returned by Open must return net.ErrClosed after a call to Close.
|
2021-02-22 02:01:50 +01:00
|
|
|
Close() error
|
2019-11-07 17:13:05 +01:00
|
|
|
|
|
|
|
// SetMark sets the mark for each packet sent through this Bind.
|
|
|
|
// This mark is passed to the kernel as the socket option SO_MARK.
|
|
|
|
SetMark(mark uint32) error
|
|
|
|
|
|
|
|
// Send writes a packet b to address ep.
|
|
|
|
Send(b []byte, ep Endpoint) error
|
|
|
|
|
2021-02-22 02:01:50 +01:00
|
|
|
// ParseEndpoint creates a new endpoint from a string.
|
|
|
|
ParseEndpoint(s string) (Endpoint, error)
|
2019-11-07 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
2020-06-07 09:24:06 +02:00
|
|
|
// BindSocketToInterface is implemented by Bind objects that support being
|
2020-06-22 02:40:59 +02:00
|
|
|
// tied to a single network interface. Used by wireguard-windows.
|
2020-06-07 09:24:06 +02:00
|
|
|
type BindSocketToInterface interface {
|
|
|
|
BindSocketToInterface4(interfaceIndex uint32, blackhole bool) error
|
|
|
|
BindSocketToInterface6(interfaceIndex uint32, blackhole bool) error
|
2019-11-07 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
2020-06-07 09:41:08 +02:00
|
|
|
// PeekLookAtSocketFd is implemented by Bind objects that support having their
|
2020-06-22 02:40:59 +02:00
|
|
|
// file descriptor peeked at. Used by wireguard-android.
|
2020-06-07 09:41:08 +02:00
|
|
|
type PeekLookAtSocketFd interface {
|
|
|
|
PeekLookAtSocketFd4() (fd int, err error)
|
|
|
|
PeekLookAtSocketFd6() (fd int, err error)
|
|
|
|
}
|
|
|
|
|
2019-11-07 17:13:05 +01:00
|
|
|
// An Endpoint maintains the source/destination caching for a peer.
|
|
|
|
//
|
2021-02-22 02:01:50 +01:00
|
|
|
// dst: the remote address of a peer ("endpoint" in uapi terminology)
|
|
|
|
// src: the local address from which datagrams originate going to the peer
|
2019-11-07 17:13:05 +01:00
|
|
|
type Endpoint interface {
|
|
|
|
ClearSrc() // clears the source address
|
|
|
|
SrcToString() string // returns the local source address (ip:port)
|
|
|
|
DstToString() string // returns the destination address (ip:port)
|
|
|
|
DstToBytes() []byte // used for mac2 cookie calculations
|
2021-11-05 01:52:54 +01:00
|
|
|
DstIP() netip.Addr
|
|
|
|
SrcIP() netip.Addr
|
2019-11-07 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
2021-04-10 01:21:35 +02:00
|
|
|
var (
|
|
|
|
ErrBindAlreadyOpen = errors.New("bind is already open")
|
|
|
|
ErrWrongEndpointType = errors.New("endpoint type does not correspond with bind type")
|
|
|
|
)
|
|
|
|
|
|
|
|
func (fn ReceiveFunc) PrettyName() string {
|
|
|
|
name := runtime.FuncForPC(reflect.ValueOf(fn).Pointer()).Name()
|
|
|
|
// 0. cheese/taco.beansIPv6.func12.func21218-fm
|
|
|
|
name = strings.TrimSuffix(name, "-fm")
|
|
|
|
// 1. cheese/taco.beansIPv6.func12.func21218
|
|
|
|
if idx := strings.LastIndexByte(name, '/'); idx != -1 {
|
|
|
|
name = name[idx+1:]
|
|
|
|
// 2. taco.beansIPv6.func12.func21218
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
var idx int
|
|
|
|
for idx = len(name) - 1; idx >= 0; idx-- {
|
|
|
|
if name[idx] < '0' || name[idx] > '9' {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if idx == len(name)-1 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
const dotFunc = ".func"
|
|
|
|
if !strings.HasSuffix(name[:idx+1], dotFunc) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
name = name[:idx+1-len(dotFunc)]
|
|
|
|
// 3. taco.beansIPv6.func12
|
|
|
|
// 4. taco.beansIPv6
|
|
|
|
}
|
|
|
|
if idx := strings.LastIndexByte(name, '.'); idx != -1 {
|
|
|
|
name = name[idx+1:]
|
|
|
|
// 5. beansIPv6
|
|
|
|
}
|
|
|
|
if name == "" {
|
|
|
|
return fmt.Sprintf("%p", fn)
|
|
|
|
}
|
|
|
|
if strings.HasSuffix(name, "IPv4") {
|
|
|
|
return "v4"
|
|
|
|
}
|
|
|
|
if strings.HasSuffix(name, "IPv6") {
|
|
|
|
return "v6"
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|