mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
217 lines
4.8 KiB
Go
217 lines
4.8 KiB
Go
package geodata
|
||
|
||
import (
|
||
"errors"
|
||
"fmt"
|
||
"strings"
|
||
|
||
"github.com/metacubex/mihomo/common/singleflight"
|
||
"github.com/metacubex/mihomo/component/geodata/router"
|
||
C "github.com/metacubex/mihomo/constant"
|
||
"github.com/metacubex/mihomo/log"
|
||
)
|
||
|
||
var (
|
||
geoMode bool
|
||
AutoUpdate bool
|
||
UpdateInterval int
|
||
geoLoaderName = "memconservative"
|
||
geoSiteMatcher = "succinct"
|
||
)
|
||
|
||
// geoLoaderName = "standard"
|
||
|
||
func GeodataMode() bool {
|
||
return geoMode
|
||
}
|
||
|
||
func GeoAutoUpdate() bool {
|
||
return AutoUpdate
|
||
}
|
||
|
||
func GeoUpdateInterval() int {
|
||
return UpdateInterval
|
||
}
|
||
|
||
func LoaderName() string {
|
||
return geoLoaderName
|
||
}
|
||
|
||
func SiteMatcherName() string {
|
||
return geoSiteMatcher
|
||
}
|
||
|
||
func SetGeodataMode(newGeodataMode bool) {
|
||
geoMode = newGeodataMode
|
||
}
|
||
func SetGeoAutoUpdate(newAutoUpdate bool) {
|
||
AutoUpdate = newAutoUpdate
|
||
}
|
||
func SetGeoUpdateInterval(newGeoUpdateInterval int) {
|
||
UpdateInterval = newGeoUpdateInterval
|
||
}
|
||
|
||
func SetLoader(newLoader string) {
|
||
if newLoader == "memc" {
|
||
newLoader = "memconservative"
|
||
}
|
||
geoLoaderName = newLoader
|
||
}
|
||
|
||
func SetSiteMatcher(newMatcher string) {
|
||
switch newMatcher {
|
||
case "mph", "hybrid":
|
||
geoSiteMatcher = "mph"
|
||
default:
|
||
geoSiteMatcher = "succinct"
|
||
}
|
||
}
|
||
|
||
func Verify(name string) error {
|
||
switch name {
|
||
case C.GeositeName:
|
||
_, err := LoadGeoSiteMatcher("CN")
|
||
return err
|
||
case C.GeoipName:
|
||
_, err := LoadGeoIPMatcher("CN")
|
||
return err
|
||
default:
|
||
return fmt.Errorf("not support name")
|
||
}
|
||
}
|
||
|
||
var loadGeoSiteMatcherListSF = singleflight.Group[[]*router.Domain]{StoreResult: true}
|
||
var loadGeoSiteMatcherSF = singleflight.Group[router.DomainMatcher]{StoreResult: true}
|
||
|
||
func LoadGeoSiteMatcher(countryCode string) (router.DomainMatcher, error) {
|
||
if countryCode == "" {
|
||
return nil, fmt.Errorf("country code could not be empty")
|
||
}
|
||
|
||
not := false
|
||
if countryCode[0] == '!' {
|
||
not = true
|
||
countryCode = countryCode[1:]
|
||
}
|
||
countryCode = strings.ToLower(countryCode)
|
||
|
||
parts := strings.Split(countryCode, "@")
|
||
if len(parts) == 0 {
|
||
return nil, errors.New("empty rule")
|
||
}
|
||
listName := strings.TrimSpace(parts[0])
|
||
attrVal := parts[1:]
|
||
attrs := parseAttrs(attrVal)
|
||
|
||
if listName == "" {
|
||
return nil, fmt.Errorf("empty listname in rule: %s", countryCode)
|
||
}
|
||
|
||
matcherName := listName
|
||
if !attrs.IsEmpty() {
|
||
matcherName += "@" + attrs.String()
|
||
}
|
||
matcher, err, shared := loadGeoSiteMatcherSF.Do(matcherName, func() (router.DomainMatcher, error) {
|
||
log.Infoln("Load GeoSite rule: %s", matcherName)
|
||
domains, err, shared := loadGeoSiteMatcherListSF.Do(listName, func() ([]*router.Domain, error) {
|
||
geoLoader, err := GetGeoDataLoader(geoLoaderName)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
return geoLoader.LoadGeoSite(listName)
|
||
})
|
||
if err != nil {
|
||
if !shared {
|
||
loadGeoSiteMatcherListSF.Forget(listName) // don't store the error result
|
||
}
|
||
return nil, err
|
||
}
|
||
|
||
if attrs.IsEmpty() {
|
||
if strings.Contains(countryCode, "@") {
|
||
log.Warnln("empty attribute list: %s", countryCode)
|
||
}
|
||
} else {
|
||
filteredDomains := make([]*router.Domain, 0, len(domains))
|
||
hasAttrMatched := false
|
||
for _, domain := range domains {
|
||
if attrs.Match(domain) {
|
||
hasAttrMatched = true
|
||
filteredDomains = append(filteredDomains, domain)
|
||
}
|
||
}
|
||
if !hasAttrMatched {
|
||
log.Warnln("attribute match no rule: geosite: %s", countryCode)
|
||
}
|
||
domains = filteredDomains
|
||
}
|
||
|
||
/**
|
||
linear: linear algorithm
|
||
matcher, err := router.NewDomainMatcher(domains)
|
||
mph:minimal perfect hash algorithm
|
||
*/
|
||
if geoSiteMatcher == "mph" {
|
||
return router.NewMphMatcherGroup(domains)
|
||
} else {
|
||
return router.NewSuccinctMatcherGroup(domains)
|
||
}
|
||
})
|
||
if err != nil {
|
||
if !shared {
|
||
loadGeoSiteMatcherSF.Forget(matcherName) // don't store the error result
|
||
}
|
||
return nil, err
|
||
}
|
||
if not {
|
||
matcher = router.NewNotDomainMatcherGroup(matcher)
|
||
}
|
||
|
||
return matcher, nil
|
||
}
|
||
|
||
var loadGeoIPMatcherSF = singleflight.Group[router.IPMatcher]{StoreResult: true}
|
||
|
||
func LoadGeoIPMatcher(country string) (router.IPMatcher, error) {
|
||
if len(country) == 0 {
|
||
return nil, fmt.Errorf("country code could not be empty")
|
||
}
|
||
|
||
not := false
|
||
if country[0] == '!' {
|
||
not = true
|
||
country = country[1:]
|
||
}
|
||
country = strings.ToLower(country)
|
||
|
||
matcher, err, shared := loadGeoIPMatcherSF.Do(country, func() (router.IPMatcher, error) {
|
||
log.Infoln("Load GeoIP rule: %s", country)
|
||
geoLoader, err := GetGeoDataLoader(geoLoaderName)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
cidrList, err := geoLoader.LoadGeoIP(country)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
return router.NewGeoIPMatcher(cidrList)
|
||
})
|
||
if err != nil {
|
||
if !shared {
|
||
loadGeoIPMatcherSF.Forget(country) // don't store the error result
|
||
log.Warnln("Load GeoIP rule: %s", country)
|
||
}
|
||
return nil, err
|
||
}
|
||
if not {
|
||
matcher = router.NewNotIpMatcherGroup(matcher)
|
||
}
|
||
return matcher, nil
|
||
}
|
||
|
||
func ClearCache() {
|
||
loadGeoSiteMatcherListSF.Reset()
|
||
loadGeoSiteMatcherSF.Reset()
|
||
loadGeoIPMatcherSF.Reset()
|
||
}
|