Skip to content

Commit a86c562

Browse files
committed
chore: Increase support for other format of ASN
1 parent 3e966e8 commit a86c562

File tree

2 files changed

+25
-14
lines changed

2 files changed

+25
-14
lines changed

component/mmdb/reader.go

+21-5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"net"
66
"strings"
77

8+
"github.com/metacubex/mihomo/log"
89
"github.com/oschwald/maxminddb-golang"
910
)
1011

@@ -23,11 +24,16 @@ type ASNReader struct {
2324
*maxminddb.Reader
2425
}
2526

26-
type ASNResult struct {
27+
type GeoLite2 struct {
2728
AutonomousSystemNumber uint32 `maxminddb:"autonomous_system_number"`
2829
AutonomousSystemOrganization string `maxminddb:"autonomous_system_organization"`
2930
}
3031

32+
type IPInfo struct {
33+
ASN string `maxminddb:"asn"`
34+
Name string `maxminddb:"name"`
35+
}
36+
3137
func (r IPReader) LookupCode(ipAddress net.IP) []string {
3238
switch r.databaseType {
3339
case typeMaxmind:
@@ -66,8 +72,18 @@ func (r IPReader) LookupCode(ipAddress net.IP) []string {
6672
}
6773
}
6874

69-
func (r ASNReader) LookupASN(ip net.IP) ASNResult {
70-
var result ASNResult
71-
r.Lookup(ip, &result)
72-
return result
75+
func (r ASNReader) LookupASN(ip net.IP) (string, string) {
76+
switch r.Metadata.DatabaseType {
77+
case "GeoLite2-ASN", "DBIP-ASN-Lite (compat=GeoLite2-ASN)":
78+
var result GeoLite2
79+
_ = r.Lookup(ip, &result)
80+
return fmt.Sprint(result.AutonomousSystemNumber), result.AutonomousSystemOrganization
81+
case "ipinfo generic_asn_free.mmdb":
82+
var result IPInfo
83+
_ = r.Lookup(ip, &result)
84+
return result.ASN[2:], result.Name
85+
default:
86+
log.Warnln("Unsupported ASN type: %s", r.Metadata.DatabaseType)
87+
}
88+
return "", ""
7389
}

rules/common/ipasn.go

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package common
22

33
import (
4-
"strconv"
5-
64
"github.com/metacubex/mihomo/component/geodata"
75
"github.com/metacubex/mihomo/component/mmdb"
86
C "github.com/metacubex/mihomo/constant"
@@ -26,17 +24,14 @@ func (a *ASN) Match(metadata *C.Metadata) (bool, string) {
2624
return false, ""
2725
}
2826

29-
result := mmdb.ASNInstance().LookupASN(ip.AsSlice())
30-
asnNumber := strconv.FormatUint(uint64(result.AutonomousSystemNumber), 10)
31-
ipASN := asnNumber + " " + result.AutonomousSystemOrganization
27+
asn, aso := mmdb.ASNInstance().LookupASN(ip.AsSlice())
3228
if a.isSourceIP {
33-
metadata.SrcIPASN = ipASN
29+
metadata.SrcIPASN = asn + " " + aso
3430
} else {
35-
metadata.DstIPASN = ipASN
31+
metadata.DstIPASN = asn + " " + aso
3632
}
3733

38-
match := a.asn == asnNumber
39-
return match, a.adapter
34+
return a.asn == asn, a.adapter
4035
}
4136

4237
func (a *ASN) RuleType() C.RuleType {

0 commit comments

Comments
 (0)