-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathnet.go
171 lines (145 loc) · 3.63 KB
/
net.go
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
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
package ice
import (
"net"
"net/netip"
"github.com/pion/logging"
"github.com/pion/transport/v3"
)
// The conditions of invalidation written below are defined in
// https://tools.ietf.org/html/rfc8445#section-5.1.1.1
// It is partial because the link-local check is done later in various gather local
// candidate methods which conditionally accept IPv6 based on usage of mDNS or not.
func isSupportedIPv6Partial(ip net.IP) bool {
if len(ip) != net.IPv6len ||
// Deprecated IPv4-compatible IPv6 addresses [RFC4291] and IPv6 site-
// local unicast addresses [RFC3879] MUST NOT be included in the
// address candidates.
isZeros(ip[0:12]) || // !(IPv4-compatible IPv6)
ip[0] == 0xfe && ip[1]&0xc0 == 0xc0 { // !(IPv6 site-local unicast)
return false
}
return true
}
func isZeros(ip net.IP) bool {
for i := 0; i < len(ip); i++ {
if ip[i] != 0 {
return false
}
}
return true
}
//nolint:gocognit,cyclop
func localInterfaces(
n transport.Net,
interfaceFilter func(string) (keep bool),
ipFilter func(net.IP) (keep bool),
networkTypes []NetworkType,
includeLoopback bool,
) ([]*transport.Interface, []netip.Addr, error) {
ipAddrs := []netip.Addr{}
ifaces, err := n.Interfaces()
if err != nil {
return nil, ipAddrs, err
}
filteredIfaces := make([]*transport.Interface, 0, len(ifaces))
var ipV4Requested, ipv6Requested bool
if len(networkTypes) == 0 {
ipV4Requested = true
ipv6Requested = true
} else {
for _, typ := range networkTypes {
if typ.IsIPv4() {
ipV4Requested = true
}
if typ.IsIPv6() {
ipv6Requested = true
}
}
}
for _, iface := range ifaces {
if iface.Flags&net.FlagUp == 0 {
continue // Interface down
}
if (iface.Flags&net.FlagLoopback != 0) && !includeLoopback {
continue // Loopback interface
}
if interfaceFilter != nil && !interfaceFilter(iface.Name) {
continue
}
ifaceAddrs, err := iface.Addrs()
if err != nil {
continue
}
atLeastOneAddr := false
for _, addr := range ifaceAddrs {
ipAddr, _, _, err := parseAddrFromIface(addr, iface.Name)
if err != nil || (ipAddr.IsLoopback() && !includeLoopback) {
continue
}
if ipAddr.Is6() {
if !ipv6Requested {
continue
} else if !isSupportedIPv6Partial(ipAddr.AsSlice()) {
continue
}
} else if !ipV4Requested {
continue
}
if ipFilter != nil && !ipFilter(ipAddr.AsSlice()) {
continue
}
atLeastOneAddr = true
ipAddrs = append(ipAddrs, ipAddr)
}
if atLeastOneAddr {
ifaceCopy := iface
filteredIfaces = append(filteredIfaces, ifaceCopy)
}
}
return filteredIfaces, ipAddrs, nil
}
//nolint:cyclop
func listenUDPInPortRange(
netTransport transport.Net,
log logging.LeveledLogger,
portMax, portMin int,
network string,
lAddr *net.UDPAddr,
) (transport.UDPConn, error) {
if (lAddr.Port != 0) || ((portMin == 0) && (portMax == 0)) {
return netTransport.ListenUDP(network, lAddr)
}
if portMin == 0 {
portMin = 1024 // Start at 1024 which is non-privileged
}
if portMax == 0 {
portMax = 0xFFFF
}
if portMin > portMax {
return nil, ErrPort
}
portStart := globalMathRandomGenerator.Intn(portMax-portMin+1) + portMin
portCurrent := portStart
for {
addr := &net.UDPAddr{
IP: lAddr.IP,
Zone: lAddr.Zone,
Port: portCurrent,
}
c, e := netTransport.ListenUDP(network, addr)
if e == nil {
return c, e //nolint:nilerr
}
log.Debugf("Failed to listen %s: %v", lAddr.String(), e)
portCurrent++
if portCurrent > portMax {
portCurrent = portMin
}
if portCurrent == portStart {
break
}
}
return nil, ErrPort
}