Skip to content

Commit 9de9f1e

Browse files
committed
fix: don't panic when listen on localhost
#1655
1 parent fbead56 commit 9de9f1e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

adapter/inbound/listen.go

+23
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ package inbound
22

33
import (
44
"context"
5+
"fmt"
56
"net"
7+
"net/netip"
68
"sync"
79

810
"github.com/metacubex/mihomo/component/keepalive"
@@ -42,6 +44,27 @@ func MPTCP() bool {
4244
}
4345

4446
func ListenContext(ctx context.Context, network, address string) (net.Listener, error) {
47+
switch network { // like net.Resolver.internetAddrList but filter domain to avoid call net.Resolver.lookupIPAddr
48+
case "tcp", "tcp4", "tcp6", "udp", "udp4", "udp6", "ip", "ip4", "ip6":
49+
if host, port, err := net.SplitHostPort(address); err == nil {
50+
switch host {
51+
case "localhost":
52+
switch network {
53+
case "tcp6", "udp6", "ip6":
54+
address = net.JoinHostPort("::1", port)
55+
default:
56+
address = net.JoinHostPort("127.0.0.1", port)
57+
}
58+
case "": // internetAddrList can handle this special case
59+
break
60+
default:
61+
if _, err := netip.ParseAddr(host); err != nil { // not ip
62+
return nil, fmt.Errorf("invalid network address: %s", address)
63+
}
64+
}
65+
}
66+
}
67+
4568
mutex.RLock()
4669
defer mutex.RUnlock()
4770
return lc.Listen(ctx, network, address)

0 commit comments

Comments
 (0)