-
Notifications
You must be signed in to change notification settings - Fork 371
Expand file tree
/
Copy pathrelay_address_generator_range.go
More file actions
185 lines (150 loc) · 4.98 KB
/
Copy pathrelay_address_generator_range.go
File metadata and controls
185 lines (150 loc) · 4.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// SPDX-FileCopyrightText: 2026 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
package turn
import (
"context"
"fmt"
"net"
"strconv"
"github.com/pion/randutil"
"github.com/pion/transport/v4"
"github.com/pion/transport/v4/reuseport"
"github.com/pion/transport/v4/stdnet"
)
// RelayAddressGeneratorPortRange can be used to only allocate connections inside a defined port range.
// Similar to the RelayAddressGeneratorStatic a static ip address can be set.
type RelayAddressGeneratorPortRange struct {
// RelayAddress is the IP returned to the user when the relay is created
RelayAddress net.IP
// MinPort the minimum port to allocate
MinPort uint16
// MaxPort the maximum (inclusive) port to allocate
MaxPort uint16
// MaxRetries the amount of tries to allocate a random port in the defined range
MaxRetries int
// Rand the random source of numbers
Rand randutil.MathRandomGenerator
// Address is passed to Listen/ListenPacket when creating the Relay
Address string
Net transport.Net
}
// Validate is called on server startup and confirms the RelayAddressGenerator is properly configured.
func (r *RelayAddressGeneratorPortRange) Validate() error {
if r.Net == nil {
var err error
r.Net, err = stdnet.NewNet()
if err != nil {
return fmt.Errorf("failed to create network: %w", err)
}
}
if r.Rand == nil {
r.Rand = randutil.NewMathRandomGenerator()
}
if r.MaxRetries == 0 {
r.MaxRetries = 10
}
switch {
case r.MinPort == 0:
return errMinPortNotZero
case r.MaxPort == 0:
return errMaxPortNotZero
case r.RelayAddress == nil:
return errRelayAddressInvalid
case r.Address == "":
return errListeningAddressInvalid
default:
return nil
}
}
// AllocatePacketConn generates a new PacketConn to receive traffic on and the IP/Port
// to populate the allocation response with.
func (r *RelayAddressGeneratorPortRange) AllocatePacketConn(
conf AllocateListenerConfig,
) (net.PacketConn, net.Addr, error) {
if conf.RequestedPort != 0 {
listenAddr := net.JoinHostPort(r.Address, strconv.Itoa(conf.RequestedPort))
conn, err := r.Net.ListenPacket(conf.Network, listenAddr) // nolint: noctx
if err != nil {
return nil, nil, err
}
relayAddr, ok := conn.LocalAddr().(*net.UDPAddr)
if !ok {
return nil, nil, errNilConn
}
relayAddr.IP = r.RelayAddress
return conn, relayAddr, nil
}
for try := 0; try < r.MaxRetries; try++ {
port := r.MinPort + uint16(r.Rand.Intn(int((r.MaxPort+1)-r.MinPort))) // nolint:gosec // G115 false positive
listenAddr := net.JoinHostPort(r.Address, strconv.Itoa(int(port)))
conn, err := r.Net.ListenPacket(conf.Network, listenAddr) // nolint: noctx
if err != nil {
continue
}
relayAddr, ok := conn.LocalAddr().(*net.UDPAddr)
if !ok {
return nil, nil, errNilConn
}
relayAddr.IP = r.RelayAddress
return conn, relayAddr, nil
}
return nil, nil, errMaxRetriesExceeded
}
// AllocateListener generates a new Listener to receive traffic on and the IP/Port
// to populate the allocation response with.
func (r *RelayAddressGeneratorPortRange) AllocateListener( // nolint: cyclop
conf AllocateListenerConfig,
) (net.Listener, net.Addr, error) {
// AllocateListener can be called independently of Validate (e.g. in tests),
// so ensure we're initialized to avoid nil dereferences.
if r.Net == nil || r.Address == "" || r.RelayAddress == nil || r.Rand == nil {
if err := r.Validate(); err != nil {
return nil, nil, err
}
}
listenConfig := r.Net.CreateListenConfig(&net.ListenConfig{
// Enable SO_REUSEADDR and SO_REUSEPORT where needed to let multiple connnections
// bind to the same relay address.
Control: reuseport.Control,
})
listen := func(port int) (net.Listener, net.Addr, error) {
listenAddr := net.JoinHostPort(r.Address, strconv.Itoa(port))
tcpAddr, err := r.Net.ResolveTCPAddr(conf.Network, listenAddr)
if err != nil {
return nil, nil, err
}
ln, err := listenConfig.Listen(context.TODO(), conf.Network, tcpAddr.String())
if err != nil {
return nil, nil, err
}
relayAddr, ok := ln.Addr().(*net.TCPAddr)
if !ok {
_ = ln.Close()
return nil, nil, errNilConn
}
relayAddr.IP = r.RelayAddress
return ln, relayAddr, nil
}
if conf.RequestedPort != 0 {
return listen(conf.RequestedPort)
}
for try := 0; try < r.MaxRetries; try++ {
port := int(r.MinPort + uint16(r.Rand.Intn(int((r.MaxPort+1)-r.MinPort)))) // nolint:gosec // G115 false positive
ln, addr, err := listen(port)
if err != nil {
continue
}
return ln, addr, nil
}
return nil, nil, errMaxRetriesExceeded
}
// AllocateConn creates a new outgoing TCP connection bound to the relay address to send traffic to a peer.
func (r *RelayAddressGeneratorPortRange) AllocateConn(conf AllocateConnConfig) (net.Conn, error) {
dialer := r.Net.CreateDialer(&net.Dialer{
LocalAddr: conf.LocalAddr,
// Enable SO_REUSEADDR and SO_REUSEPORT where needed to let multiple connnections
// bind to the same relay address.
Control: reuseport.Control,
})
return dialer.Dial(conf.Network, conf.RemoteAddr.String())
}