2016-05-12 02:45:35 -04:00
|
|
|
// +build generate
|
|
|
|
|
2015-12-08 11:31:31 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
2016-05-12 02:45:35 -04:00
|
|
|
"log"
|
2015-12-08 17:12:12 -05:00
|
|
|
"math"
|
2015-12-08 11:31:31 -05:00
|
|
|
"net"
|
2015-12-08 17:12:12 -05:00
|
|
|
"net/http"
|
2016-05-12 02:45:35 -04:00
|
|
|
"os"
|
2015-12-08 17:12:12 -05:00
|
|
|
"strconv"
|
2015-12-08 11:31:31 -05:00
|
|
|
"strings"
|
2016-10-17 10:35:18 -04:00
|
|
|
|
|
|
|
"v2ray.com/core/app/router"
|
2016-12-15 05:05:32 -05:00
|
|
|
"v2ray.com/core/common/errors"
|
2016-10-17 10:35:18 -04:00
|
|
|
"v2ray.com/core/tools/geoip"
|
|
|
|
|
|
|
|
"github.com/golang/protobuf/proto"
|
2015-12-08 11:31:31 -05:00
|
|
|
)
|
|
|
|
|
2015-12-08 17:12:12 -05:00
|
|
|
const (
|
|
|
|
apnicFile = "http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest"
|
|
|
|
)
|
|
|
|
|
2015-12-08 11:31:31 -05:00
|
|
|
func main() {
|
2015-12-08 17:12:12 -05:00
|
|
|
resp, err := http.Get(apnicFile)
|
2015-12-08 11:31:31 -05:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2015-12-08 17:12:12 -05:00
|
|
|
if resp.StatusCode != 200 {
|
2016-12-15 05:05:32 -05:00
|
|
|
panic(errors.Format("Unexpected status %d", resp.StatusCode))
|
2015-12-08 17:12:12 -05:00
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
scanner := bufio.NewScanner(resp.Body)
|
2015-12-08 11:31:31 -05:00
|
|
|
|
2016-10-17 10:35:18 -04:00
|
|
|
ips := &geoip.CountryIPRange{
|
2016-10-18 10:42:22 -04:00
|
|
|
Ips: make([]*router.CIDR, 0, 8192),
|
2016-10-17 10:35:18 -04:00
|
|
|
}
|
2015-12-08 11:31:31 -05:00
|
|
|
for scanner.Scan() {
|
|
|
|
line := scanner.Text()
|
|
|
|
line = strings.TrimSpace(line)
|
2015-12-08 17:12:12 -05: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 11:31:31 -05:00
|
|
|
}
|
2016-10-11 17:02:44 -04:00
|
|
|
mask := uint32(math.Floor(math.Log2(float64(count)) + 0.5))
|
|
|
|
ipBytes := net.ParseIP(ip)
|
|
|
|
if len(ipBytes) == 0 {
|
|
|
|
panic("Invalid IP " + ip)
|
2015-12-08 11:31:31 -05:00
|
|
|
}
|
2016-10-18 10:42:22 -04:00
|
|
|
ips.Ips = append(ips.Ips, &router.CIDR{
|
|
|
|
Ip: []byte(ipBytes)[12:16],
|
|
|
|
Prefix: 32 - mask,
|
2016-10-11 17:02:44 -04:00
|
|
|
})
|
2015-12-08 11:31:31 -05:00
|
|
|
}
|
2016-05-12 02:45:35 -04:00
|
|
|
|
2016-10-17 10:35:18 -04:00
|
|
|
ipbytes, err := proto.Marshal(ips)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Failed to marshal country IPs: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-01-02 14:52:45 -05:00
|
|
|
file, err := os.OpenFile("geoip.generated.go", os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0644)
|
2016-05-12 02:45:35 -04:00
|
|
|
if err != nil {
|
2016-10-17 08:35:13 -04:00
|
|
|
log.Fatalf("Failed to generate geoip_data.go: %v", err)
|
2016-05-12 02:45:35 -04:00
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2016-10-17 08:35:13 -04:00
|
|
|
fmt.Fprintln(file, "package geoip")
|
2016-05-12 02:45:35 -04:00
|
|
|
|
2016-10-17 10:35:18 -04:00
|
|
|
fmt.Fprintln(file, "var ChinaIPs = "+formatArray(ipbytes))
|
2016-10-11 17:02:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func formatArray(a []byte) string {
|
|
|
|
r := "[]byte{"
|
2016-11-27 11:01:44 -05:00
|
|
|
for idx, val := range a {
|
2016-10-11 17:02:44 -04:00
|
|
|
if idx > 0 {
|
|
|
|
r += ","
|
|
|
|
}
|
2016-11-27 11:01:44 -05:00
|
|
|
r += fmt.Sprintf("%d", val)
|
2016-10-11 17:02:44 -04:00
|
|
|
}
|
|
|
|
r += "}"
|
|
|
|
return r
|
2015-12-08 11:31:31 -05:00
|
|
|
}
|