2024-01-03 21:57:33 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2022-03-10 09:44:48 +00:00
|
|
|
package ice
|
|
|
|
|
|
|
|
import (
|
2024-01-03 21:57:33 +00:00
|
|
|
"errors"
|
2022-03-10 09:44:48 +00:00
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/pion/logging"
|
|
|
|
"github.com/pion/stun"
|
2024-01-03 21:57:33 +00:00
|
|
|
"github.com/pion/transport/v2"
|
|
|
|
"github.com/pion/transport/v2/stdnet"
|
2022-03-10 09:44:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// UDPMux allows multiple connections to go over a single UDP port
|
|
|
|
type UDPMux interface {
|
|
|
|
io.Closer
|
2024-01-03 21:57:33 +00:00
|
|
|
GetConn(ufrag string, addr net.Addr) (net.PacketConn, error)
|
2022-03-10 09:44:48 +00:00
|
|
|
RemoveConnByUfrag(ufrag string)
|
2024-01-03 21:57:33 +00:00
|
|
|
GetListenAddresses() []net.Addr
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UDPMuxDefault is an implementation of the interface
|
|
|
|
type UDPMuxDefault struct {
|
|
|
|
params UDPMuxParams
|
|
|
|
|
|
|
|
closedChan chan struct{}
|
|
|
|
closeOnce sync.Once
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
// connsIPv4 and connsIPv6 are maps of all udpMuxedConn indexed by ufrag|network|candidateType
|
|
|
|
connsIPv4, connsIPv6 map[string]*udpMuxedConn
|
2022-03-10 09:44:48 +00:00
|
|
|
|
|
|
|
addressMapMu sync.RWMutex
|
|
|
|
addressMap map[string]*udpMuxedConn
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
// Buffer pool to recycle buffers for net.UDPAddr encodes/decodes
|
2022-03-10 09:44:48 +00:00
|
|
|
pool *sync.Pool
|
|
|
|
|
|
|
|
mu sync.Mutex
|
2024-01-03 21:57:33 +00:00
|
|
|
|
|
|
|
// For UDP connection listen at unspecified address
|
|
|
|
localAddrsForUnspecified []net.Addr
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const maxAddrSize = 512
|
|
|
|
|
|
|
|
// UDPMuxParams are parameters for UDPMux.
|
|
|
|
type UDPMuxParams struct {
|
|
|
|
Logger logging.LeveledLogger
|
|
|
|
UDPConn net.PacketConn
|
2024-01-03 21:57:33 +00:00
|
|
|
|
|
|
|
// Required for gathering local addresses
|
|
|
|
// in case a un UDPConn is passed which does not
|
|
|
|
// bind to a specific local address.
|
|
|
|
Net transport.Net
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewUDPMuxDefault creates an implementation of UDPMux
|
|
|
|
func NewUDPMuxDefault(params UDPMuxParams) *UDPMuxDefault {
|
|
|
|
if params.Logger == nil {
|
|
|
|
params.Logger = logging.NewDefaultLoggerFactory().NewLogger("ice")
|
|
|
|
}
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
var localAddrsForUnspecified []net.Addr
|
|
|
|
if addr, ok := params.UDPConn.LocalAddr().(*net.UDPAddr); !ok {
|
|
|
|
params.Logger.Errorf("LocalAddr is not a net.UDPAddr, got %T", params.UDPConn.LocalAddr())
|
|
|
|
} else if ok && addr.IP.IsUnspecified() {
|
|
|
|
// For unspecified addresses, the correct behavior is to return errListenUnspecified, but
|
|
|
|
// it will break the applications that are already using unspecified UDP connection
|
|
|
|
// with UDPMuxDefault, so print a warn log and create a local address list for mux.
|
|
|
|
params.Logger.Warn("UDPMuxDefault should not listening on unspecified address, use NewMultiUDPMuxFromPort instead")
|
|
|
|
var networks []NetworkType
|
|
|
|
switch {
|
|
|
|
case addr.IP.To4() != nil:
|
|
|
|
networks = []NetworkType{NetworkTypeUDP4}
|
|
|
|
|
|
|
|
case addr.IP.To16() != nil:
|
|
|
|
networks = []NetworkType{NetworkTypeUDP4, NetworkTypeUDP6}
|
|
|
|
|
|
|
|
default:
|
|
|
|
params.Logger.Errorf("LocalAddr expected IPV4 or IPV6, got %T", params.UDPConn.LocalAddr())
|
|
|
|
}
|
|
|
|
if len(networks) > 0 {
|
|
|
|
if params.Net == nil {
|
|
|
|
var err error
|
|
|
|
if params.Net, err = stdnet.NewNet(); err != nil {
|
|
|
|
params.Logger.Errorf("failed to get create network: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ips, err := localInterfaces(params.Net, nil, nil, networks, true)
|
|
|
|
if err == nil {
|
|
|
|
for _, ip := range ips {
|
|
|
|
localAddrsForUnspecified = append(localAddrsForUnspecified, &net.UDPAddr{IP: ip, Port: addr.Port})
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
params.Logger.Errorf("failed to get local interfaces for unspecified addr: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-10 09:44:48 +00:00
|
|
|
m := &UDPMuxDefault{
|
|
|
|
addressMap: map[string]*udpMuxedConn{},
|
|
|
|
params: params,
|
2024-01-03 21:57:33 +00:00
|
|
|
connsIPv4: make(map[string]*udpMuxedConn),
|
|
|
|
connsIPv6: make(map[string]*udpMuxedConn),
|
2022-03-10 09:44:48 +00:00
|
|
|
closedChan: make(chan struct{}, 1),
|
|
|
|
pool: &sync.Pool{
|
|
|
|
New: func() interface{} {
|
2024-01-03 21:57:33 +00:00
|
|
|
// Big enough buffer to fit both packet and address
|
2022-03-10 09:44:48 +00:00
|
|
|
return newBufferHolder(receiveMTU + maxAddrSize)
|
|
|
|
},
|
|
|
|
},
|
2024-01-03 21:57:33 +00:00
|
|
|
localAddrsForUnspecified: localAddrsForUnspecified,
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
go m.connWorker()
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
// LocalAddr returns the listening address of this UDPMuxDefault
|
|
|
|
func (m *UDPMuxDefault) LocalAddr() net.Addr {
|
|
|
|
return m.params.UDPConn.LocalAddr()
|
|
|
|
}
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
// GetListenAddresses returns the list of addresses that this mux is listening on
|
|
|
|
func (m *UDPMuxDefault) GetListenAddresses() []net.Addr {
|
|
|
|
if len(m.localAddrsForUnspecified) > 0 {
|
|
|
|
return m.localAddrsForUnspecified
|
|
|
|
}
|
|
|
|
|
|
|
|
return []net.Addr{m.LocalAddr()}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetConn returns a PacketConn given the connection's ufrag and network address
|
2022-03-10 09:44:48 +00:00
|
|
|
// creates the connection if an existing one can't be found
|
2024-01-03 21:57:33 +00:00
|
|
|
func (m *UDPMuxDefault) GetConn(ufrag string, addr net.Addr) (net.PacketConn, error) {
|
|
|
|
// don't check addr for mux using unspecified address
|
|
|
|
if len(m.localAddrsForUnspecified) == 0 && m.params.UDPConn.LocalAddr().String() != addr.String() {
|
|
|
|
return nil, errInvalidAddress
|
|
|
|
}
|
|
|
|
|
|
|
|
var isIPv6 bool
|
|
|
|
if udpAddr, _ := addr.(*net.UDPAddr); udpAddr != nil && udpAddr.IP.To4() == nil {
|
|
|
|
isIPv6 = true
|
|
|
|
}
|
2022-03-10 09:44:48 +00:00
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
|
|
|
|
if m.IsClosed() {
|
|
|
|
return nil, io.ErrClosedPipe
|
|
|
|
}
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
if conn, ok := m.getConn(ufrag, isIPv6); ok {
|
|
|
|
return conn, nil
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
c := m.createMuxedConn(ufrag)
|
|
|
|
go func() {
|
|
|
|
<-c.CloseChannel()
|
2024-01-03 21:57:33 +00:00
|
|
|
m.RemoveConnByUfrag(ufrag)
|
2022-03-10 09:44:48 +00:00
|
|
|
}()
|
2024-01-03 21:57:33 +00:00
|
|
|
|
|
|
|
if isIPv6 {
|
|
|
|
m.connsIPv6[ufrag] = c
|
|
|
|
} else {
|
|
|
|
m.connsIPv4[ufrag] = c
|
|
|
|
}
|
|
|
|
|
2022-03-10 09:44:48 +00:00
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveConnByUfrag stops and removes the muxed packet connection
|
|
|
|
func (m *UDPMuxDefault) RemoveConnByUfrag(ufrag string) {
|
2024-01-03 21:57:33 +00:00
|
|
|
removedConns := make([]*udpMuxedConn, 0, 2)
|
2022-03-10 09:44:48 +00:00
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
// Keep lock section small to avoid deadlock with conn lock
|
|
|
|
m.mu.Lock()
|
|
|
|
if c, ok := m.connsIPv4[ufrag]; ok {
|
|
|
|
delete(m.connsIPv4, ufrag)
|
|
|
|
removedConns = append(removedConns, c)
|
|
|
|
}
|
|
|
|
if c, ok := m.connsIPv6[ufrag]; ok {
|
|
|
|
delete(m.connsIPv6, ufrag)
|
|
|
|
removedConns = append(removedConns, c)
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
m.mu.Unlock()
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
if len(removedConns) == 0 {
|
|
|
|
// No need to lock if no connection was found
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-10 09:44:48 +00:00
|
|
|
m.addressMapMu.Lock()
|
|
|
|
defer m.addressMapMu.Unlock()
|
|
|
|
|
|
|
|
for _, c := range removedConns {
|
|
|
|
addresses := c.getAddresses()
|
|
|
|
for _, addr := range addresses {
|
|
|
|
delete(m.addressMap, addr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsClosed returns true if the mux had been closed
|
|
|
|
func (m *UDPMuxDefault) IsClosed() bool {
|
|
|
|
select {
|
|
|
|
case <-m.closedChan:
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the mux, no further connections could be created
|
|
|
|
func (m *UDPMuxDefault) Close() error {
|
|
|
|
var err error
|
|
|
|
m.closeOnce.Do(func() {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
for _, c := range m.connsIPv4 {
|
|
|
|
_ = c.Close()
|
|
|
|
}
|
|
|
|
for _, c := range m.connsIPv6 {
|
2022-03-10 09:44:48 +00:00
|
|
|
_ = c.Close()
|
|
|
|
}
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
m.connsIPv4 = make(map[string]*udpMuxedConn)
|
|
|
|
m.connsIPv6 = make(map[string]*udpMuxedConn)
|
2022-03-10 09:44:48 +00:00
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
close(m.closedChan)
|
2022-03-10 09:44:48 +00:00
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
_ = m.params.UDPConn.Close()
|
|
|
|
})
|
|
|
|
return err
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
func (m *UDPMuxDefault) writeTo(buf []byte, rAddr net.Addr) (n int, err error) {
|
|
|
|
return m.params.UDPConn.WriteTo(buf, rAddr)
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *UDPMuxDefault) registerConnForAddress(conn *udpMuxedConn, addr string) {
|
|
|
|
if m.IsClosed() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
m.addressMapMu.Lock()
|
|
|
|
defer m.addressMapMu.Unlock()
|
|
|
|
|
|
|
|
existing, ok := m.addressMap[addr]
|
|
|
|
if ok {
|
|
|
|
existing.removeAddress(addr)
|
|
|
|
}
|
|
|
|
m.addressMap[addr] = conn
|
|
|
|
|
|
|
|
m.params.Logger.Debugf("Registered %s for %s", addr, conn.params.Key)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *UDPMuxDefault) createMuxedConn(key string) *udpMuxedConn {
|
|
|
|
c := newUDPMuxedConn(&udpMuxedConnParams{
|
|
|
|
Mux: m,
|
|
|
|
Key: key,
|
|
|
|
AddrPool: m.pool,
|
|
|
|
LocalAddr: m.LocalAddr(),
|
|
|
|
Logger: m.params.Logger,
|
|
|
|
})
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *UDPMuxDefault) connWorker() {
|
|
|
|
logger := m.params.Logger
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
_ = m.Close()
|
|
|
|
}()
|
|
|
|
|
|
|
|
buf := make([]byte, receiveMTU)
|
|
|
|
for {
|
|
|
|
n, addr, err := m.params.UDPConn.ReadFrom(buf)
|
|
|
|
if m.IsClosed() {
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
if os.IsTimeout(err) {
|
|
|
|
continue
|
2024-01-03 21:57:33 +00:00
|
|
|
} else if !errors.Is(err, io.EOF) {
|
2022-03-10 09:44:48 +00:00
|
|
|
logger.Errorf("could not read udp packet: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
udpAddr, ok := addr.(*net.UDPAddr)
|
|
|
|
if !ok {
|
|
|
|
logger.Errorf("underlying PacketConn did not return a UDPAddr")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have already seen this address dispatch to the appropriate destination
|
|
|
|
m.addressMapMu.Lock()
|
|
|
|
destinationConn := m.addressMap[addr.String()]
|
|
|
|
m.addressMapMu.Unlock()
|
|
|
|
|
|
|
|
// If we haven't seen this address before but is a STUN packet lookup by ufrag
|
|
|
|
if destinationConn == nil && stun.IsMessage(buf[:n]) {
|
|
|
|
msg := &stun.Message{
|
|
|
|
Raw: append([]byte{}, buf[:n]...),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = msg.Decode(); err != nil {
|
2024-01-03 21:57:33 +00:00
|
|
|
m.params.Logger.Warnf("Failed to handle decode ICE from %s: %v", addr.String(), err)
|
2022-03-10 09:44:48 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
attr, stunAttrErr := msg.Get(stun.AttrUsername)
|
|
|
|
if stunAttrErr != nil {
|
2024-01-03 21:57:33 +00:00
|
|
|
m.params.Logger.Warnf("No Username attribute in STUN message from %s", addr.String())
|
2022-03-10 09:44:48 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
ufrag := strings.Split(string(attr), ":")[0]
|
2024-01-03 21:57:33 +00:00
|
|
|
isIPv6 := udpAddr.IP.To4() == nil
|
2022-03-10 09:44:48 +00:00
|
|
|
|
|
|
|
m.mu.Lock()
|
2024-01-03 21:57:33 +00:00
|
|
|
destinationConn, _ = m.getConn(ufrag, isIPv6)
|
2022-03-10 09:44:48 +00:00
|
|
|
m.mu.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
if destinationConn == nil {
|
|
|
|
m.params.Logger.Tracef("dropping packet from %s, addr: %s", udpAddr.String(), addr.String())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = destinationConn.writePacket(buf[:n], udpAddr); err != nil {
|
|
|
|
m.params.Logger.Errorf("could not write packet: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-03 21:57:33 +00:00
|
|
|
func (m *UDPMuxDefault) getConn(ufrag string, isIPv6 bool) (val *udpMuxedConn, ok bool) {
|
|
|
|
if isIPv6 {
|
|
|
|
val, ok = m.connsIPv6[ufrag]
|
|
|
|
} else {
|
|
|
|
val, ok = m.connsIPv4[ufrag]
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-10 09:44:48 +00:00
|
|
|
type bufferHolder struct {
|
2024-01-03 21:57:33 +00:00
|
|
|
buf []byte
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func newBufferHolder(size int) *bufferHolder {
|
|
|
|
return &bufferHolder{
|
2024-01-03 21:57:33 +00:00
|
|
|
buf: make([]byte, size),
|
2022-03-10 09:44:48 +00:00
|
|
|
}
|
|
|
|
}
|