netbird/iface/bind.go

162 lines
3.5 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:06:51 +02:00
type ICEBind struct {
sharedConn net.PacketConn
iceMux *UniversalUDPMuxDefault
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:06:51 +02:00
func (b *ICEBind) GetSharedConn() (net.PacketConn, error) {
b.mu.Lock()
defer b.mu.Unlock()
if b.sharedConn == nil {
return nil, fmt.Errorf("ICEBind has not been initialized yet")
}
2022-09-05 02:03:16 +02:00
2022-09-06 20:06:51 +02:00
return b.sharedConn, nil
2022-09-04 22:52:52 +02:00
}
2022-09-06 20:06:51 +02:00
func (b *ICEBind) GetICEMux() (UniversalUDPMux, error) {
b.mu.Lock()
defer b.mu.Unlock()
if b.iceMux == nil {
return nil, fmt.Errorf("ICEBind has not been initialized yet")
}
2022-09-04 22:52:52 +02:00
2022-09-06 20:06:51 +02:00
return b.iceMux, nil
}
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-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
}
b.sharedConn = ipv4Conn
b.iceMux = NewUniversalUDPMuxDefault(UniversalUDPMuxParams{UDPConn: b.sharedConn})
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:06:51 +02:00
return []conn.ReceiveFunc{b.makeReceiveIPv4(b.sharedConn)}, portAddr.Port(), nil
}
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:06:51 +02:00
func (b *ICEBind) makeReceiveIPv4(c net.PacketConn) conn.ReceiveFunc {
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
}
err = b.iceMux.HandlePacket(buff, n, endpoint)
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()
var err1, err2 error
if b.sharedConn != nil {
c := b.sharedConn
b.sharedConn = nil
err1 = c.Close()
}
if b.iceMux != nil {
m := b.iceMux
b.iceMux = nil
err2 = m.Close()
}
if err1 != nil {
return err1
}
return err2
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-05 02:03:16 +02:00
_, err := b.sharedConn.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
}