clash/config/update_geo.go

91 lines
2.3 KiB
Go
Raw Normal View History

package config
import (
"fmt"
"runtime"
2023-04-10 13:03:31 +00:00
2023-11-03 13:01:45 +00:00
"github.com/metacubex/mihomo/component/geodata"
_ "github.com/metacubex/mihomo/component/geodata/standard"
2024-02-21 13:56:20 +00:00
"github.com/metacubex/mihomo/component/mmdb"
2023-11-03 13:01:45 +00:00
C "github.com/metacubex/mihomo/constant"
2023-04-10 13:03:31 +00:00
2023-07-14 14:28:24 +00:00
"github.com/oschwald/maxminddb-golang"
)
func UpdateGeoDatabases() error {
2022-06-03 08:50:05 +00:00
defer runtime.GC()
geoLoader, err := geodata.GetGeoDataLoader("standard")
if err != nil {
return err
}
if C.GeodataMode {
2022-06-03 08:50:05 +00:00
data, err := downloadForBytes(C.GeoIpUrl)
if err != nil {
2022-05-27 04:16:04 +00:00
return fmt.Errorf("can't download GeoIP database file: %w", err)
}
2022-06-03 08:50:05 +00:00
if _, err = geoLoader.LoadIPByBytes(data, "cn"); err != nil {
return fmt.Errorf("invalid GeoIP database file: %s", err)
}
if err = saveFile(data, C.Path.GeoIP()); err != nil {
2022-06-03 08:50:05 +00:00
return fmt.Errorf("can't save GeoIP database file: %w", err)
}
} else {
2024-03-11 19:14:25 +00:00
defer mmdb.ReloadIP()
2022-06-03 08:50:05 +00:00
data, err := downloadForBytes(C.MmdbUrl)
if err != nil {
return fmt.Errorf("can't download MMDB database file: %w", err)
}
2023-07-14 14:28:24 +00:00
instance, err := maxminddb.FromBytes(data)
2022-06-03 08:50:05 +00:00
if err != nil {
return fmt.Errorf("invalid MMDB database file: %s", err)
}
2022-06-03 08:50:05 +00:00
_ = instance.Close()
2024-02-21 13:56:20 +00:00
2024-03-11 19:14:25 +00:00
mmdb.IPInstance().Reader.Close() // mmdb is loaded with mmap, so it needs to be closed before overwriting the file
if err = saveFile(data, C.Path.MMDB()); err != nil {
2022-06-03 08:50:05 +00:00
return fmt.Errorf("can't save MMDB database file: %w", err)
}
}
2024-03-11 19:14:25 +00:00
if C.ASNEnable {
defer mmdb.ReloadASN()
data, err := downloadForBytes(C.ASNUrl)
if err != nil {
return fmt.Errorf("can't download ASN database file: %w", err)
}
instance, err := maxminddb.FromBytes(data)
if err != nil {
return fmt.Errorf("invalid ASN database file: %s", err)
}
_ = instance.Close()
mmdb.ASNInstance().Reader.Close()
if err = saveFile(data, C.Path.ASN()); err != nil {
return fmt.Errorf("can't save ASN database file: %w", err)
}
}
2022-06-03 08:50:05 +00:00
data, err := downloadForBytes(C.GeoSiteUrl)
if err != nil {
return fmt.Errorf("can't download GeoSite database file: %w", err)
}
2022-06-03 08:50:05 +00:00
if _, err = geoLoader.LoadSiteByBytes(data, "cn"); err != nil {
return fmt.Errorf("invalid GeoSite database file: %s", err)
}
if err = saveFile(data, C.Path.GeoSite()); err != nil {
2022-06-03 08:50:05 +00:00
return fmt.Errorf("can't save GeoSite database file: %w", err)
}
geodata.ClearCache()
2022-06-03 08:50:05 +00:00
return nil
}