Skip to content

Commit a96f72a

Browse files
committed
fix: geoip wrong matching logic in fallback-filter
#1478
1 parent 4fecf68 commit a96f72a

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1473,7 +1473,7 @@ func parseDNS(rawCfg *RawConfig, hosts *trie.DomainTrie[resolver.HostValue], rul
14731473
if err != nil {
14741474
return nil, fmt.Errorf("load GeoIP dns fallback filter error, %w", err)
14751475
}
1476-
dnsCfg.FallbackIPFilter = append(dnsCfg.FallbackIPFilter, matcher)
1476+
dnsCfg.FallbackIPFilter = append(dnsCfg.FallbackIPFilter, matcher.DnsFallbackFilter())
14771477
}
14781478
if len(cfg.FallbackFilter.IPCIDR) > 0 {
14791479
cidrSet := cidr.NewIpCidrSet()

rules/common/geoip.go

+30-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ type GEOIP struct {
2222
adapter string
2323
noResolveIP bool
2424
isSourceIP bool
25-
geodata bool
2625
}
2726

2827
var _ C.Rule = (*GEOIP)(nil)
@@ -115,6 +114,36 @@ func (g *GEOIP) MatchIp(ip netip.Addr) bool {
115114
return slices.Contains(codes, g.country)
116115
}
117116

117+
// MatchIp implements C.IpMatcher
118+
func (g dnsFallbackFilter) MatchIp(ip netip.Addr) bool {
119+
if !ip.IsValid() {
120+
return false
121+
}
122+
123+
if g.isLan(ip) { // compatible with original behavior
124+
return false
125+
}
126+
127+
if C.GeodataMode {
128+
matcher, err := g.getIPMatcher()
129+
if err != nil {
130+
return false
131+
}
132+
return !matcher.Match(ip)
133+
}
134+
135+
codes := mmdb.IPInstance().LookupCode(ip.AsSlice())
136+
return !slices.Contains(codes, g.country)
137+
}
138+
139+
type dnsFallbackFilter struct {
140+
*GEOIP
141+
}
142+
143+
func (g *GEOIP) DnsFallbackFilter() C.IpMatcher { // for dns.fallback-filter.geoip
144+
return dnsFallbackFilter{GEOIP: g}
145+
}
146+
118147
func (g *GEOIP) isLan(ip netip.Addr) bool {
119148
return ip.IsPrivate() ||
120149
ip.IsUnspecified() ||

0 commit comments

Comments
 (0)