2018-06-10 22:50:03 +08:00
|
|
|
package rules
|
|
|
|
|
|
|
|
import (
|
2021-07-01 22:49:29 +08:00
|
|
|
"strings"
|
|
|
|
|
2021-10-15 14:11:14 +08:00
|
|
|
"github.com/Dreamacro/clash/component/mmdb"
|
2018-06-10 22:50:03 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2021-10-15 14:11:14 +08:00
|
|
|
//"github.com/Dreamacro/clash/rule/geodata"
|
|
|
|
//"github.com/Dreamacro/clash/rule/geodata/router"
|
|
|
|
//_ "github.com/Dreamacro/clash/rule/geodata/standard"
|
2018-08-01 00:18:29 +08:00
|
|
|
)
|
2018-06-10 22:50:03 +08:00
|
|
|
|
|
|
|
type GEOIP struct {
|
2021-10-15 14:11:14 +08:00
|
|
|
country string
|
|
|
|
adapter string
|
|
|
|
noResolveIP bool
|
|
|
|
ruleExtra *C.RuleExtra
|
|
|
|
//geoIPMatcher *router.GeoIPMatcher
|
2018-06-10 22:50:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GEOIP) RuleType() C.RuleType {
|
|
|
|
return C.GEOIP
|
|
|
|
}
|
|
|
|
|
2019-10-28 00:02:23 +08:00
|
|
|
func (g *GEOIP) Match(metadata *C.Metadata) bool {
|
|
|
|
ip := metadata.DstIP
|
|
|
|
if ip == nil {
|
2018-06-10 22:50:03 +08:00
|
|
|
return false
|
|
|
|
}
|
2021-08-18 13:26:23 +08:00
|
|
|
|
2021-10-15 14:11:14 +08:00
|
|
|
if strings.EqualFold(g.country, "LAN") || C.TunBroadcastAddr.Equal(ip) {
|
2021-08-18 13:26:23 +08:00
|
|
|
return ip.IsPrivate()
|
|
|
|
}
|
2021-10-15 14:11:14 +08:00
|
|
|
record, _ := mmdb.Instance().Country(ip)
|
|
|
|
return strings.EqualFold(record.Country.IsoCode, g.country)
|
2018-06-10 22:50:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GEOIP) Adapter() string {
|
|
|
|
return g.adapter
|
|
|
|
}
|
|
|
|
|
2018-06-20 22:41:02 +08:00
|
|
|
func (g *GEOIP) Payload() string {
|
|
|
|
return g.country
|
|
|
|
}
|
|
|
|
|
2020-07-27 11:57:55 +08:00
|
|
|
func (g *GEOIP) ShouldResolveIP() bool {
|
|
|
|
return !g.noResolveIP
|
2019-10-28 00:02:23 +08:00
|
|
|
}
|
|
|
|
|
2021-08-31 21:46:04 +08:00
|
|
|
func (g *GEOIP) RuleExtra() *C.RuleExtra {
|
|
|
|
return g.ruleExtra
|
2021-07-01 22:49:29 +08:00
|
|
|
}
|
|
|
|
|
2021-10-15 14:11:14 +08:00
|
|
|
func (g *GEOIP) GetCountry() string {
|
|
|
|
return g.country
|
|
|
|
}
|
2021-07-01 22:49:29 +08:00
|
|
|
|
2021-10-15 14:11:14 +08:00
|
|
|
func NewGEOIP(country string, adapter string, noResolveIP bool, ruleExtra *C.RuleExtra) (*GEOIP, error) {
|
|
|
|
//geoLoaderName := "standard"
|
|
|
|
////geoLoaderName := "memconservative"
|
|
|
|
//geoLoader, err := geodata.GetGeoDataLoader(geoLoaderName)
|
|
|
|
//if err != nil {
|
|
|
|
// return nil, fmt.Errorf("load GeoIP data error, %s", err.Error())
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//records, err := geoLoader.LoadGeoIP(strings.ReplaceAll(country, "!", ""))
|
|
|
|
//if err != nil {
|
|
|
|
// return nil, fmt.Errorf("load GeoIP data error, %s", err.Error())
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//geoIP := &router.GeoIP{
|
|
|
|
// CountryCode: country,
|
|
|
|
// Cidr: records,
|
|
|
|
// ReverseMatch: strings.Contains(country, "!"),
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//geoIPMatcher, err := router.NewGeoIPMatcher(geoIP)
|
|
|
|
//
|
|
|
|
//if err != nil {
|
|
|
|
// return nil, fmt.Errorf("load GeoIP data error, %s", err.Error())
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//log.Infoln("Start initial GeoIP rule %s => %s, records: %d, reverse match: %v", country, adapter, len(records), geoIP.ReverseMatch)
|
2021-07-01 22:49:29 +08:00
|
|
|
|
2019-10-28 00:02:23 +08:00
|
|
|
geoip := &GEOIP{
|
2021-10-15 14:11:14 +08:00
|
|
|
country: country,
|
|
|
|
adapter: adapter,
|
|
|
|
noResolveIP: noResolveIP,
|
|
|
|
ruleExtra: ruleExtra,
|
|
|
|
//geoIPMatcher: geoIPMatcher,
|
2018-06-10 22:50:03 +08:00
|
|
|
}
|
2019-10-28 00:02:23 +08:00
|
|
|
|
2021-07-01 22:49:29 +08:00
|
|
|
return geoip, nil
|
2018-06-10 22:50:03 +08:00
|
|
|
}
|