Skip to content

Commit f8411da

Browse files
cuonglmgopherbot
authored andcommitted
nettest: fix tests on dragonfly and js/wasm
CL 458096 changes probeStack to use a better approach for checking network stack capability, by checking for routable ipv4/ipv6. However, the NewLocalListener needs check for listenable instead. This CL adds to probestack the listenable on loopback and use that condition instead. Fixes golang/go#57623 Change-Id: I8b5b7798ccf3826881e5ef9f7d2d998d8e52eba5 Reviewed-on: https://go-review.googlesource.com/c/net/+/460735 Run-TryBot: Cuong Manh Le <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Auto-Submit: Cuong Manh Le <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Reviewed-by: David Chase <[email protected]>
1 parent 8e0e7d8 commit f8411da

File tree

1 file changed

+25
-13
lines changed

1 file changed

+25
-13
lines changed

nettest/nettest.go

+25-13
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@ import (
2020
)
2121

2222
var (
23-
stackOnce sync.Once
24-
ipv4Enabled bool
25-
ipv6Enabled bool
26-
unStrmDgramEnabled bool
27-
rawSocketSess bool
23+
stackOnce sync.Once
24+
ipv4Enabled bool
25+
canListenTCP4OnLoopback bool
26+
ipv6Enabled bool
27+
canListenTCP6OnLoopback bool
28+
unStrmDgramEnabled bool
29+
rawSocketSess bool
2830

2931
aLongTimeAgo = time.Unix(233431200, 0)
3032
neverTimeout = time.Time{}
@@ -37,9 +39,17 @@ func probeStack() {
3739
if _, err := RoutedInterface("ip4", net.FlagUp); err == nil {
3840
ipv4Enabled = true
3941
}
42+
if ln, err := net.Listen("tcp4", "127.0.0.1:0"); err == nil {
43+
ln.Close()
44+
canListenTCP4OnLoopback = true
45+
}
4046
if _, err := RoutedInterface("ip6", net.FlagUp); err == nil {
4147
ipv6Enabled = true
4248
}
49+
if ln, err := net.Listen("tcp6", "[::1]:0"); err == nil {
50+
ln.Close()
51+
canListenTCP6OnLoopback = true
52+
}
4353
rawSocketSess = supportsRawSocket()
4454
switch runtime.GOOS {
4555
case "aix":
@@ -152,22 +162,23 @@ func TestableAddress(network, address string) bool {
152162
// The provided network must be "tcp", "tcp4", "tcp6", "unix" or
153163
// "unixpacket".
154164
func NewLocalListener(network string) (net.Listener, error) {
165+
stackOnce.Do(probeStack)
155166
switch network {
156167
case "tcp":
157-
if SupportsIPv4() {
168+
if canListenTCP4OnLoopback {
158169
if ln, err := net.Listen("tcp4", "127.0.0.1:0"); err == nil {
159170
return ln, nil
160171
}
161172
}
162-
if SupportsIPv6() {
173+
if canListenTCP6OnLoopback {
163174
return net.Listen("tcp6", "[::1]:0")
164175
}
165176
case "tcp4":
166-
if SupportsIPv4() {
177+
if canListenTCP4OnLoopback {
167178
return net.Listen("tcp4", "127.0.0.1:0")
168179
}
169180
case "tcp6":
170-
if SupportsIPv6() {
181+
if canListenTCP6OnLoopback {
171182
return net.Listen("tcp6", "[::1]:0")
172183
}
173184
case "unix", "unixpacket":
@@ -185,22 +196,23 @@ func NewLocalListener(network string) (net.Listener, error) {
185196
//
186197
// The provided network must be "udp", "udp4", "udp6" or "unixgram".
187198
func NewLocalPacketListener(network string) (net.PacketConn, error) {
199+
stackOnce.Do(probeStack)
188200
switch network {
189201
case "udp":
190-
if SupportsIPv4() {
202+
if canListenTCP4OnLoopback {
191203
if c, err := net.ListenPacket("udp4", "127.0.0.1:0"); err == nil {
192204
return c, nil
193205
}
194206
}
195-
if SupportsIPv6() {
207+
if canListenTCP6OnLoopback {
196208
return net.ListenPacket("udp6", "[::1]:0")
197209
}
198210
case "udp4":
199-
if SupportsIPv4() {
211+
if canListenTCP4OnLoopback {
200212
return net.ListenPacket("udp4", "127.0.0.1:0")
201213
}
202214
case "udp6":
203-
if SupportsIPv6() {
215+
if canListenTCP6OnLoopback {
204216
return net.ListenPacket("udp6", "[::1]:0")
205217
}
206218
case "unixgram":

0 commit comments

Comments
 (0)