1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 22:45:24 +00:00
v2fly/app/router/rules/chinaip_gen.go

84 lines
1.7 KiB
Go
Raw Normal View History

2016-05-12 06:45:35 +00:00
// +build generate
2015-12-08 16:31:31 +00:00
package main
import (
"bufio"
"fmt"
2016-05-12 06:45:35 +00:00
"log"
2015-12-08 22:12:12 +00:00
"math"
2015-12-08 16:31:31 +00:00
"net"
2015-12-08 22:12:12 +00:00
"net/http"
2016-05-12 06:45:35 +00:00
"os"
2015-12-08 22:12:12 +00:00
"strconv"
2015-12-08 16:31:31 +00:00
"strings"
2016-08-20 18:55:45 +00:00
v2net "v2ray.com/core/common/net"
2015-12-08 16:31:31 +00:00
)
2015-12-08 22:12:12 +00:00
const (
apnicFile = "http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest"
)
2015-12-08 16:31:31 +00:00
func main() {
2015-12-08 22:12:12 +00:00
resp, err := http.Get(apnicFile)
2015-12-08 16:31:31 +00:00
if err != nil {
panic(err)
}
2015-12-08 22:12:12 +00:00
if resp.StatusCode != 200 {
panic(fmt.Errorf("Unexpected status %d", resp.StatusCode))
}
defer resp.Body.Close()
scanner := bufio.NewScanner(resp.Body)
2015-12-08 16:31:31 +00:00
2015-12-08 22:12:12 +00:00
ipNet := v2net.NewIPNet()
2015-12-08 16:31:31 +00:00
for scanner.Scan() {
line := scanner.Text()
line = strings.TrimSpace(line)
2015-12-08 22:12:12 +00:00
parts := strings.Split(line, "|")
if len(parts) < 5 {
continue
}
if strings.ToLower(parts[1]) != "cn" || strings.ToLower(parts[2]) != "ipv4" {
continue
}
ip := parts[3]
count, err := strconv.Atoi(parts[4])
if err != nil {
continue
2015-12-08 16:31:31 +00:00
}
2015-12-08 22:12:12 +00:00
mask := 32 - int(math.Floor(math.Log2(float64(count))+0.5))
cidr := fmt.Sprintf("%s/%d", ip, mask)
_, t, err := net.ParseCIDR(cidr)
2015-12-08 16:31:31 +00:00
if err != nil {
panic(err)
}
ipNet.Add(t)
}
dump := ipNet.Serialize()
2016-05-12 06:45:35 +00:00
file, err := os.OpenFile("chinaip_init.go", os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0644)
if err != nil {
log.Fatalf("Failed to generate chinaip_init.go: %v", err)
}
defer file.Close()
fmt.Fprintln(file, "package rules")
fmt.Fprintln(file, "import (")
2016-08-20 18:55:45 +00:00
fmt.Fprintln(file, "v2net \"v2ray.com/core/common/net\"")
2016-05-12 06:45:35 +00:00
fmt.Fprintln(file, ")")
fmt.Fprintln(file, "var (")
fmt.Fprintln(file, "chinaIPNet *v2net.IPNet")
fmt.Fprintln(file, ")")
fmt.Fprintln(file, "func init() {")
fmt.Fprintln(file, "chinaIPNet = v2net.NewIPNetInitialValue(map[uint32]byte {")
2015-12-08 16:31:31 +00:00
for i := 0; i < len(dump); i += 2 {
2016-05-12 06:45:35 +00:00
fmt.Fprintln(file, dump[i], ": ", dump[i+1], ",")
2015-12-08 16:31:31 +00:00
}
2016-05-12 06:45:35 +00:00
fmt.Fprintln(file, "})")
fmt.Fprintln(file, "}")
2015-12-08 16:31:31 +00:00
}