File tree 2 files changed +25
-14
lines changed
2 files changed +25
-14
lines changed Original file line number Diff line number Diff line change 5
5
"net"
6
6
"strings"
7
7
8
+ "github.com/metacubex/mihomo/log"
8
9
"github.com/oschwald/maxminddb-golang"
9
10
)
10
11
@@ -23,11 +24,16 @@ type ASNReader struct {
23
24
* maxminddb.Reader
24
25
}
25
26
26
- type ASNResult struct {
27
+ type GeoLite2 struct {
27
28
AutonomousSystemNumber uint32 `maxminddb:"autonomous_system_number"`
28
29
AutonomousSystemOrganization string `maxminddb:"autonomous_system_organization"`
29
30
}
30
31
32
+ type IPInfo struct {
33
+ ASN string `maxminddb:"asn"`
34
+ Name string `maxminddb:"name"`
35
+ }
36
+
31
37
func (r IPReader ) LookupCode (ipAddress net.IP ) []string {
32
38
switch r .databaseType {
33
39
case typeMaxmind :
@@ -66,8 +72,18 @@ func (r IPReader) LookupCode(ipAddress net.IP) []string {
66
72
}
67
73
}
68
74
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 "" , ""
73
89
}
Original file line number Diff line number Diff line change 1
1
package common
2
2
3
3
import (
4
- "strconv"
5
-
6
4
"github.com/metacubex/mihomo/component/geodata"
7
5
"github.com/metacubex/mihomo/component/mmdb"
8
6
C "github.com/metacubex/mihomo/constant"
@@ -26,17 +24,14 @@ func (a *ASN) Match(metadata *C.Metadata) (bool, string) {
26
24
return false , ""
27
25
}
28
26
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 ())
32
28
if a .isSourceIP {
33
- metadata .SrcIPASN = ipASN
29
+ metadata .SrcIPASN = asn + " " + aso
34
30
} else {
35
- metadata .DstIPASN = ipASN
31
+ metadata .DstIPASN = asn + " " + aso
36
32
}
37
33
38
- match := a .asn == asnNumber
39
- return match , a .adapter
34
+ return a .asn == asn , a .adapter
40
35
}
41
36
42
37
func (a * ASN ) RuleType () C.RuleType {
You can’t perform that action at this time.
0 commit comments