Skip to content

Commit 80e4eaa

Browse files
committed
fix: process IPv6 Link-Local address (#1657)
1 parent 25b3c86 commit 80e4eaa

File tree

4 files changed

+25
-26
lines changed

4 files changed

+25
-26
lines changed

adapter/inbound/auth.go

+1-8
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,5 @@ func SkipAuthRemoteAddress(addr string) bool {
3434
}
3535

3636
func skipAuth(addr netip.Addr) bool {
37-
if addr.IsValid() {
38-
for _, prefix := range skipAuthPrefixes {
39-
if prefix.Contains(addr.Unmap()) {
40-
return true
41-
}
42-
}
43-
}
44-
return false
37+
return prefixesContains(skipAuthPrefixes, addr)
4538
}

adapter/inbound/ipfilter.go

+7-17
Original file line numberDiff line numberDiff line change
@@ -31,27 +31,17 @@ func IsRemoteAddrDisAllowed(addr net.Addr) bool {
3131
if err := m.SetRemoteAddr(addr); err != nil {
3232
return false
3333
}
34-
return isAllowed(m.AddrPort().Addr().Unmap()) && !isDisAllowed(m.AddrPort().Addr().Unmap())
34+
ipAddr := m.AddrPort().Addr()
35+
if ipAddr.IsValid() {
36+
return isAllowed(ipAddr) && !isDisAllowed(ipAddr)
37+
}
38+
return false
3539
}
3640

3741
func isAllowed(addr netip.Addr) bool {
38-
if addr.IsValid() {
39-
for _, prefix := range lanAllowedIPs {
40-
if prefix.Contains(addr) {
41-
return true
42-
}
43-
}
44-
}
45-
return false
42+
return prefixesContains(lanAllowedIPs, addr)
4643
}
4744

4845
func isDisAllowed(addr netip.Addr) bool {
49-
if addr.IsValid() {
50-
for _, prefix := range lanDisAllowedIPs {
51-
if prefix.Contains(addr) {
52-
return true
53-
}
54-
}
55-
}
56-
return false
46+
return prefixesContains(lanDisAllowedIPs, addr)
5747
}

adapter/inbound/util.go

+16
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,19 @@ func parseHTTPAddr(request *http.Request) *C.Metadata {
6161

6262
return metadata
6363
}
64+
65+
func prefixesContains(prefixes []netip.Prefix, addr netip.Addr) bool {
66+
if len(prefixes) == 0 {
67+
return false
68+
}
69+
if !addr.IsValid() {
70+
return false
71+
}
72+
addr = addr.Unmap().WithZone("") // netip.Prefix.Contains returns false if ip has an IPv6 zone
73+
for _, prefix := range prefixes {
74+
if prefix.Contains(addr) {
75+
return true
76+
}
77+
}
78+
return false
79+
}

rules/common/ipcidr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func (i *IPCIDR) Match(metadata *C.Metadata) (bool, string) {
4040
if i.isSourceIP {
4141
ip = metadata.SrcIP
4242
}
43-
return ip.IsValid() && i.ipnet.Contains(ip), i.adapter
43+
return ip.IsValid() && i.ipnet.Contains(ip.WithZone("")), i.adapter
4444
}
4545

4646
func (i *IPCIDR) Adapter() string {

0 commit comments

Comments
 (0)