netbird/iface/bind.go

223 lines
4.8 KiB
Go
Raw Normal View History

2022-09-04 22:52:52 +02:00
package iface
import (
2022-09-06 20:06:51 +02:00
"errors"
"fmt"
"github.com/pion/stun"
log "github.com/sirupsen/logrus"
2022-09-04 22:52:52 +02:00
"golang.zx2c4.com/wireguard/conn"
"net"
"net/netip"
"sync"
2022-09-06 20:06:51 +02:00
"syscall"
2022-09-04 22:52:52 +02:00
)
2022-09-06 20:44:49 +02:00
type BindMux interface {
HandlePacket(p []byte, n int, addr net.Addr) error
Type() string
}
2022-09-06 20:06:51 +02:00
type ICEBind struct {
2022-09-06 20:44:49 +02:00
sharedConn net.PacketConn
sharedConnHost net.PacketConn
iceSrflxMux *UniversalUDPMuxDefault
iceHostMux *UDPMuxDefault
endpointMap map[string]net.PacketConn
2022-09-05 02:03:16 +02:00
2022-09-06 20:06:51 +02:00
mu sync.Mutex // protects following fields
2022-09-04 22:52:52 +02:00
}
2022-09-06 20:44:49 +02:00
func (b *ICEBind) GetICEMux() (UniversalUDPMux, error) {
2022-09-06 20:06:51 +02:00
b.mu.Lock()
defer b.mu.Unlock()
2022-09-06 20:44:49 +02:00
if b.iceSrflxMux == nil {
2022-09-06 20:06:51 +02:00
return nil, fmt.Errorf("ICEBind has not been initialized yet")
}
2022-09-05 02:03:16 +02:00
2022-09-06 20:44:49 +02:00
return b.iceSrflxMux, nil
2022-09-04 22:52:52 +02:00
}
2022-09-06 20:44:49 +02:00
func (b *ICEBind) GetICEHostMux() (UDPMux, error) {
2022-09-06 20:06:51 +02:00
b.mu.Lock()
defer b.mu.Unlock()
2022-09-06 20:44:49 +02:00
if b.iceHostMux == nil {
2022-09-06 20:06:51 +02:00
return nil, fmt.Errorf("ICEBind has not been initialized yet")
}
2022-09-04 22:52:52 +02:00
2022-09-06 20:44:49 +02:00
return b.iceHostMux, nil
2022-09-06 20:06:51 +02:00
}
2022-09-04 22:52:52 +02:00
2022-09-06 20:06:51 +02:00
func (b *ICEBind) Open(uport uint16) ([]conn.ReceiveFunc, uint16, error) {
b.mu.Lock()
defer b.mu.Unlock()
2022-09-04 22:52:52 +02:00
2022-09-06 20:06:51 +02:00
if b.sharedConn != nil {
return nil, 0, conn.ErrBindAlreadyOpen
}
2022-09-06 20:44:49 +02:00
if b.sharedConnHost != nil {
return nil, 0, conn.ErrBindAlreadyOpen
}
b.endpointMap = make(map[string]net.PacketConn)
2022-09-04 22:52:52 +02:00
2022-09-06 20:06:51 +02:00
port := int(uport)
ipv4Conn, port, err := listenNet("udp4", port)
if err != nil && !errors.Is(err, syscall.EAFNOSUPPORT) {
return nil, 0, err
}
2022-09-06 20:44:49 +02:00
ipv4ConnHost, port, err := listenNet("udp4", 0)
if err != nil && !errors.Is(err, syscall.EAFNOSUPPORT) {
return nil, 0, err
}
2022-09-06 20:06:51 +02:00
b.sharedConn = ipv4Conn
2022-09-06 20:44:49 +02:00
b.sharedConnHost = ipv4ConnHost
b.iceSrflxMux = NewUniversalUDPMuxDefault(UniversalUDPMuxParams{UDPConn: b.sharedConn})
b.iceHostMux = NewUDPMuxDefault(UDPMuxParams{UDPConn: b.sharedConnHost})
2022-09-04 22:52:52 +02:00
2022-09-06 20:06:51 +02:00
portAddr, err := netip.ParseAddrPort(ipv4Conn.LocalAddr().String())
2022-09-05 02:03:16 +02:00
if err != nil {
2022-09-06 20:06:51 +02:00
return nil, 0, err
2022-09-04 22:52:52 +02:00
}
2022-09-06 20:44:49 +02:00
return []conn.ReceiveFunc{
b.makeReceiveIPv4(b.sharedConn, b.iceSrflxMux),
b.makeReceiveIPv4(b.sharedConnHost, b.iceHostMux),
},
portAddr.Port(), nil
2022-09-06 20:06:51 +02:00
}
func listenNet(network string, port int) (*net.UDPConn, int, error) {
conn, err := net.ListenUDP(network, &net.UDPAddr{Port: port})
2022-09-05 02:03:16 +02:00
if err != nil {
2022-09-06 20:06:51 +02:00
return nil, 0, err
2022-09-04 22:52:52 +02:00
}
2022-09-06 20:06:51 +02:00
// Retrieve port.
laddr := conn.LocalAddr()
uaddr, err := net.ResolveUDPAddr(
laddr.Network(),
laddr.String(),
)
if err != nil {
return nil, 0, err
2022-09-04 22:52:52 +02:00
}
2022-09-06 20:06:51 +02:00
return conn, uaddr.Port, nil
2022-09-05 02:03:16 +02:00
}
2022-09-04 22:52:52 +02:00
2022-09-06 20:44:49 +02:00
func (b *ICEBind) makeReceiveIPv4(c net.PacketConn, bindMux BindMux) conn.ReceiveFunc {
2022-09-06 20:06:51 +02:00
return func(buff []byte) (int, conn.Endpoint, error) {
n, endpoint, err := c.ReadFrom(buff)
if err != nil {
return 0, nil, err
}
e, err := netip.ParseAddrPort(endpoint.String())
if err != nil {
return 0, nil, err
}
if !stun.IsMessage(buff[:n]) {
// WireGuard traffic
return n, (*conn.StdNetEndpoint)(&net.UDPAddr{
IP: e.Addr().AsSlice(),
Port: int(e.Port()),
Zone: e.Addr().Zone(),
}), nil
}
2022-09-06 20:44:49 +02:00
b.mu.Lock()
if _, ok := b.endpointMap[e.String()]; !ok {
b.endpointMap[e.String()] = c
log.Infof("added %s endpoint %s", bindMux.Type(), e.Addr().String())
}
b.mu.Unlock()
err = bindMux.HandlePacket(buff, n, endpoint)
2022-09-06 20:06:51 +02:00
if err != nil {
return 0, nil, err
2022-09-04 22:52:52 +02:00
}
2022-09-06 20:06:51 +02:00
if err != nil {
log.Warnf("failed to handle packet")
}
// discard packets because they are STUN related
return 0, nil, nil //todo proper return
2022-09-04 22:52:52 +02:00
}
2022-09-06 20:06:51 +02:00
}
func (b *ICEBind) Close() error {
b.mu.Lock()
defer b.mu.Unlock()
2022-09-06 20:44:49 +02:00
var err1, err2, err3, err4 error
2022-09-06 20:06:51 +02:00
if b.sharedConn != nil {
c := b.sharedConn
b.sharedConn = nil
err1 = c.Close()
}
2022-09-06 20:44:49 +02:00
if b.sharedConnHost != nil {
c := b.sharedConnHost
b.sharedConnHost = nil
err2 = c.Close()
}
if b.iceSrflxMux != nil {
m := b.iceSrflxMux
b.iceSrflxMux = nil
err3 = m.Close()
}
2022-09-06 20:06:51 +02:00
2022-09-06 20:44:49 +02:00
if b.iceHostMux != nil {
m := b.iceHostMux
b.iceHostMux = nil
err4 = m.Close()
2022-09-06 20:06:51 +02:00
}
2022-09-06 20:44:49 +02:00
//todo close iceSrflxMux
2022-09-06 20:06:51 +02:00
if err1 != nil {
return err1
}
2022-09-06 20:44:49 +02:00
if err2 != nil {
return err2
}
if err3 != nil {
return err3
}
return err4
2022-09-04 22:52:52 +02: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.
2022-09-06 20:06:51 +02:00
func (b *ICEBind) SetMark(mark uint32) error {
2022-09-04 22:52:52 +02:00
return nil
}
2022-09-06 20:06:51 +02:00
func (b *ICEBind) Send(buff []byte, endpoint conn.Endpoint) error {
2022-09-04 22:52:52 +02:00
nend, ok := endpoint.(*conn.StdNetEndpoint)
if !ok {
return conn.ErrWrongEndpointType
}
2022-09-06 20:44:49 +02:00
b.mu.Lock()
co := b.endpointMap[(*net.UDPAddr)(nend).String()]
b.mu.Unlock()
if co == nil {
// todo proper handling
log.Warnf("conn not found for endpoint %s", endpoint.DstToString())
2022-09-06 20:54:40 +02:00
return conn.ErrWrongEndpointType
2022-09-06 20:44:49 +02:00
}
_, err := co.WriteTo(buff, (*net.UDPAddr)(nend))
2022-09-04 22:52:52 +02:00
return err
}
// ParseEndpoint creates a new endpoint from a string.
2022-09-06 20:06:51 +02:00
func (b *ICEBind) ParseEndpoint(s string) (ep conn.Endpoint, err error) {
2022-09-05 02:03:16 +02:00
e, err := netip.ParseAddrPort(s)
2022-09-04 22:52:52 +02:00
return (*conn.StdNetEndpoint)(&net.UDPAddr{
2022-09-05 02:03:16 +02:00
IP: e.Addr().AsSlice(),
Port: int(e.Port()),
Zone: e.Addr().Zone(),
2022-09-04 22:52:52 +02:00
}), err
}