Merge pull request #37 from kenshinx/domain-specs-nameservers
Domain specs nameservers
This commit is contained in:
commit
489adb58ef
|
@ -27,13 +27,12 @@ Similar to [dnsmasq](http://www.thekelleys.org.uk/dnsmasq/doc.html), but support
|
||||||
|
|
||||||
3. Running
|
3. Running
|
||||||
|
|
||||||
$ sudo ./godns -c godns.conf
|
$ sudo ./godns -c ./etc/godns.conf
|
||||||
|
|
||||||
4. Test
|
4. Test
|
||||||
|
|
||||||
$ dig www.github.com @127.0.0.1
|
$ dig www.github.com @127.0.0.1
|
||||||
|
|
||||||
More details about how to install and running godns can reference my [blog (Chinese)](http://blog.kenshinx.me/blog/compile-godns/)
|
|
||||||
|
|
||||||
|
|
||||||
## Use godns
|
## Use godns
|
||||||
|
@ -58,6 +57,12 @@ resolv-file = "/etc/resolv.conf"
|
||||||
If multiple `namerservers` are set in resolv.conf, the upsteam server will try in a top to bottom order
|
If multiple `namerservers` are set in resolv.conf, the upsteam server will try in a top to bottom order
|
||||||
|
|
||||||
|
|
||||||
|
#### server-list-file
|
||||||
|
Domain-specific nameservers configuration, formatting keep compatible with Dnsmasq.
|
||||||
|
>server=/google.com/8.8.8.8
|
||||||
|
|
||||||
|
More cases please refererence [dnsmasq-china-list](https://github.com/felixonmars/dnsmasq-china-list)
|
||||||
|
|
||||||
|
|
||||||
#### cache
|
#### cache
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
server=/adcdownload.apple.com/114.114.114.114
|
||||||
|
server=/appldnld.apple.com/114.114.114.114
|
||||||
|
server=/cdn-cn1.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cdn-cn2.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cdn-cn3.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cdn-cn4.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cdn.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cdn1.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cdn2.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cdn3.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cdn4.apple-mapkit.com/114.114.114.114
|
||||||
|
server=/cds.apple.com/114.114.114.114
|
||||||
|
server=/cl1.apple.com/114.114.114.114
|
||||||
|
server=/cl2.apple.com.edgekey.net.globalredir.akadns.net/114.114.114.114
|
||||||
|
server=/cl2.apple.com.edgekey.net/114.114.114.114
|
||||||
|
server=/cl2.apple.com/114.114.114.114
|
||||||
|
server=/cl3.apple.com/114.114.114.114
|
||||||
|
server=/cl4.apple.com/114.114.114.114
|
||||||
|
server=/cl5.apple.com/114.114.114.114
|
||||||
|
server=/gsp11-cn.ls.apple.com/114.114.114.114
|
||||||
|
server=/gsp12-cn.ls.apple.com/114.114.114.114
|
||||||
|
server=/gsp13-cn.ls.apple.com/114.114.114.114
|
||||||
|
server=/gsp4-cn.ls.apple.com.edgekey.net.globalredir.akadns.net/114.114.114.114
|
||||||
|
server=/gsp4-cn.ls.apple.com.edgekey.net/114.114.114.114
|
||||||
|
server=/gsp4-cn.ls.apple.com/114.114.114.114
|
||||||
|
server=/gsp5-cn.ls.apple.com/114.114.114.114
|
||||||
|
server=/gspe19-cn.ls-apple.com.akadns.net/114.114.114.114
|
||||||
|
server=/gspe19-cn.ls.apple.com/114.114.114.114
|
||||||
|
server=/gspe21.ls.apple.com/114.114.114.114
|
||||||
|
server=/gspe21-ssl.ls.apple.com/114.114.114.114
|
||||||
|
server=/gspe35-ssl.ls.apple.com/114.114.114.114
|
||||||
|
server=/icloud.cdn-apple.com/114.114.114.114
|
||||||
|
server=/images.apple.com/114.114.114.114
|
||||||
|
server=/itunes-apple.com.akadns.net/114.114.114.114
|
||||||
|
server=/itunes.apple.com/114.114.114.114
|
||||||
|
server=/itunesconnect.apple.com/114.114.114.114
|
||||||
|
server=/mesu.apple.com/114.114.114.114
|
||||||
|
server=/mesu-china.apple.com.akadns.net/114.114.114.114
|
||||||
|
server=/phobos-apple.com.akadns.net/114.114.114.114
|
||||||
|
server=/phobos.apple.com/114.114.114.114
|
||||||
|
server=/store.apple.com/114.114.114.114
|
||||||
|
server=/store.storeimages.cdn-apple.com/114.114.114.114
|
||||||
|
server=/support.apple.com/114.114.114.114
|
||||||
|
server=/swcdn.apple.com/114.114.114.114
|
||||||
|
server=/swdist.apple.com/114.114.114.114
|
||||||
|
server=/www.apple.com/114.114.114.114
|
|
@ -12,6 +12,9 @@ host = "127.0.0.1"
|
||||||
port = 53
|
port = 53
|
||||||
|
|
||||||
[resolv]
|
[resolv]
|
||||||
|
# Domain-specific nameservers configuration, formatting keep compatible with Dnsmasq
|
||||||
|
# Semicolon separate multiple files.
|
||||||
|
server-list-file = "./etc/apple.china.conf;./etc/google.china.conf"
|
||||||
resolv-file = "/etc/resolv.conf"
|
resolv-file = "/etc/resolv.conf"
|
||||||
timeout = 5 # 5 seconds
|
timeout = 5 # 5 seconds
|
||||||
# The concurrency interval request upstream recursive server
|
# The concurrency interval request upstream recursive server
|
||||||
|
@ -21,6 +24,7 @@ interval = 200 # 200 milliseconds
|
||||||
setedns0 = false #Support for larger UDP DNS responses
|
setedns0 = false #Support for larger UDP DNS responses
|
||||||
|
|
||||||
[redis]
|
[redis]
|
||||||
|
enable = true
|
||||||
host = "127.0.0.1"
|
host = "127.0.0.1"
|
||||||
port = 6379
|
port = 6379
|
||||||
db = 0
|
db = 0
|
|
@ -0,0 +1,42 @@
|
||||||
|
server=/265.com/114.114.114.114
|
||||||
|
server=/2mdn.net/114.114.114.114
|
||||||
|
server=/app-measurement.com/114.114.114.114
|
||||||
|
server=/beacons.gcp.gvt2.com/114.114.114.114
|
||||||
|
server=/beacons.gvt2.com/114.114.114.114
|
||||||
|
server=/beacons3.gvt2.com/114.114.114.114
|
||||||
|
server=/c.admob.com/114.114.114.114
|
||||||
|
server=/c.android.clients.google.com/114.114.114.114
|
||||||
|
server=/cache.pack.google.com/114.114.114.114
|
||||||
|
server=/clientservices.googleapis.com/114.114.114.114
|
||||||
|
server=/connectivitycheck.gstatic.com/114.114.114.114
|
||||||
|
server=/csi.gstatic.com/114.114.114.114
|
||||||
|
server=/dl.google.com/114.114.114.114
|
||||||
|
server=/doubleclick.net/114.114.114.114
|
||||||
|
server=/e.admob.com/114.114.114.114
|
||||||
|
server=/fonts.googleapis.com/114.114.114.114
|
||||||
|
server=/fonts.gstatic.com/114.114.114.114
|
||||||
|
server=/google-analytics.com/114.114.114.114
|
||||||
|
server=/googleadservices.com/114.114.114.114
|
||||||
|
server=/googleanalytics.com/114.114.114.114
|
||||||
|
server=/googlesyndication.com/114.114.114.114
|
||||||
|
server=/googletagmanager.com/114.114.114.114
|
||||||
|
server=/googletagservices.com/114.114.114.114
|
||||||
|
server=/imasdk.googleapis.com/114.114.114.114
|
||||||
|
server=/kh.google.com/114.114.114.114
|
||||||
|
server=/khm.google.com/114.114.114.114
|
||||||
|
server=/khm.googleapis.com/114.114.114.114
|
||||||
|
server=/khm0.google.com/114.114.114.114
|
||||||
|
server=/khm0.googleapis.com/114.114.114.114
|
||||||
|
server=/khm1.google.com/114.114.114.114
|
||||||
|
server=/khm1.googleapis.com/114.114.114.114
|
||||||
|
server=/khm2.google.com/114.114.114.114
|
||||||
|
server=/khm2.googleapis.com/114.114.114.114
|
||||||
|
server=/khm3.google.com/114.114.114.114
|
||||||
|
server=/khm3.googleapis.com/114.114.114.114
|
||||||
|
server=/khmdb.google.com/114.114.114.114
|
||||||
|
server=/khmdb.googleapis.com/114.114.114.114
|
||||||
|
server=/media.admob.com/114.114.114.114
|
||||||
|
server=/mediavisor.doubleclick.com/114.114.114.114
|
||||||
|
server=/redirector.gvt1.com/114.114.114.114
|
||||||
|
server=/toolbarqueries.google.com/114.114.114.114
|
||||||
|
server=/update.googleapis.com/114.114.114.114
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Default upstream servers which have higher priority than the nameserver
|
||||||
|
# that configuration in `/etc/resolv.conf`
|
||||||
|
server=8.8.8.8#53
|
||||||
|
|
||||||
|
server=/google.com/8.8.8.8
|
||||||
|
server=/baidu.com/114.114.114.114
|
||||||
|
# refer https://github.com/felixonmars/dnsmasq-china-list
|
11
handler.go
11
handler.go
|
@ -32,21 +32,12 @@ type GODNSHandler struct {
|
||||||
func NewHandler() *GODNSHandler {
|
func NewHandler() *GODNSHandler {
|
||||||
|
|
||||||
var (
|
var (
|
||||||
clientConfig *dns.ClientConfig
|
|
||||||
cacheConfig CacheSettings
|
cacheConfig CacheSettings
|
||||||
resolver *Resolver
|
resolver *Resolver
|
||||||
cache, negCache Cache
|
cache, negCache Cache
|
||||||
)
|
)
|
||||||
|
|
||||||
resolvConfig := settings.ResolvConfig
|
resolver = NewResolver(settings.ResolvConfig)
|
||||||
clientConfig, err := dns.ClientConfigFromFile(resolvConfig.ResolvFile)
|
|
||||||
if err != nil {
|
|
||||||
logger.Warn(":%s is not a valid resolv.conf file\n", resolvConfig.ResolvFile)
|
|
||||||
logger.Error(err.Error())
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
clientConfig.Timeout = resolvConfig.Timeout
|
|
||||||
resolver = &Resolver{clientConfig}
|
|
||||||
|
|
||||||
cacheConfig = settings.Cache
|
cacheConfig = settings.Cache
|
||||||
switch cacheConfig.Backend {
|
switch cacheConfig.Backend {
|
||||||
|
|
15
hosts.go
15
hosts.go
|
@ -4,7 +4,6 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"regexp"
|
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -218,7 +217,7 @@ func (f *FileHosts) Refresh() {
|
||||||
}
|
}
|
||||||
|
|
||||||
ip := sli[0]
|
ip := sli[0]
|
||||||
if !f.isIP(ip) {
|
if !isIP(ip) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -240,15 +239,3 @@ func (f *FileHosts) Refresh() {
|
||||||
func (f *FileHosts) clear() {
|
func (f *FileHosts) clear() {
|
||||||
f.hosts = make(map[string]string)
|
f.hosts = make(map[string]string)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *FileHosts) isDomain(domain string) bool {
|
|
||||||
if f.isIP(domain) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
match, _ := regexp.MatchString(`^([a-zA-Z0-9\*]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}$`, domain)
|
|
||||||
return match
|
|
||||||
}
|
|
||||||
|
|
||||||
func (f *FileHosts) isIP(ip string) bool {
|
|
||||||
return (net.ParseIP(ip) != nil)
|
|
||||||
}
|
|
||||||
|
|
151
resolver.go
151
resolver.go
|
@ -1,8 +1,11 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
|
"os"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -20,8 +23,106 @@ func (e ResolvError) Error() string {
|
||||||
return errmsg
|
return errmsg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type RResp struct {
|
||||||
|
msg *dns.Msg
|
||||||
|
nameserver string
|
||||||
|
rtt time.Duration
|
||||||
|
}
|
||||||
|
|
||||||
type Resolver struct {
|
type Resolver struct {
|
||||||
config *dns.ClientConfig
|
servers []string
|
||||||
|
domain_server *suffixTreeNode
|
||||||
|
config *ResolvSettings
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewResolver(c ResolvSettings) *Resolver {
|
||||||
|
r := &Resolver{
|
||||||
|
servers: []string{},
|
||||||
|
domain_server: newSuffixTreeRoot(),
|
||||||
|
config: &c,
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(c.ServerListFile) > 0 {
|
||||||
|
r.ReadServerListFile(c.ServerListFile)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(c.ResolvFile) > 0 {
|
||||||
|
clientConfig, err := dns.ClientConfigFromFile(c.ResolvFile)
|
||||||
|
if err != nil {
|
||||||
|
logger.Error(":%s is not a valid resolv.conf file\n", c.ResolvFile)
|
||||||
|
logger.Error("%s", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
for _, server := range clientConfig.Servers {
|
||||||
|
nameserver := net.JoinHostPort(server, clientConfig.Port)
|
||||||
|
r.servers = append(r.servers, nameserver)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return r
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Resolver) parseServerListFile(buf *os.File) {
|
||||||
|
scanner := bufio.NewScanner(buf)
|
||||||
|
for scanner.Scan() {
|
||||||
|
line := scanner.Text()
|
||||||
|
line = strings.TrimSpace(line)
|
||||||
|
|
||||||
|
if !strings.HasPrefix(line, "server") {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
sli := strings.Split(line, "=")
|
||||||
|
if len(sli) != 2 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
line = strings.TrimSpace(sli[1])
|
||||||
|
|
||||||
|
tokens := strings.Split(line, "/")
|
||||||
|
switch len(tokens) {
|
||||||
|
case 3:
|
||||||
|
domain := tokens[1]
|
||||||
|
ip := tokens[2]
|
||||||
|
|
||||||
|
if !isDomain(domain) || !isIP(ip) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
r.domain_server.sinsert(strings.Split(domain, "."), ip)
|
||||||
|
case 1:
|
||||||
|
srv_port := strings.Split(line, "#")
|
||||||
|
if len(srv_port) > 2 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
ip := ""
|
||||||
|
if ip = srv_port[0]; !isIP(ip) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
port := "53"
|
||||||
|
if len(srv_port) == 2 {
|
||||||
|
if _, err := strconv.Atoi(srv_port[1]); err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
port = srv_port[1]
|
||||||
|
}
|
||||||
|
r.servers = append(r.servers, net.JoinHostPort(ip, port))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Resolver) ReadServerListFile(path string) {
|
||||||
|
files := strings.Split(path, ";")
|
||||||
|
for _, file := range files {
|
||||||
|
buf, err := os.Open(file)
|
||||||
|
if err != nil {
|
||||||
|
panic("Can't open " + file)
|
||||||
|
}
|
||||||
|
defer buf.Close()
|
||||||
|
r.parseServerListFile(buf)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Lookup will ask each nameserver in top-to-bottom fashion, starting a new request
|
// Lookup will ask each nameserver in top-to-bottom fashion, starting a new request
|
||||||
|
@ -40,7 +141,7 @@ func (r *Resolver) Lookup(net string, req *dns.Msg) (message *dns.Msg, err error
|
||||||
|
|
||||||
qname := req.Question[0].Name
|
qname := req.Question[0].Name
|
||||||
|
|
||||||
res := make(chan *dns.Msg, 1)
|
res := make(chan *RResp, 1)
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
L := func(nameserver string) {
|
L := func(nameserver string) {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
|
@ -59,11 +160,10 @@ func (r *Resolver) Lookup(net string, req *dns.Msg) (message *dns.Msg, err error
|
||||||
if r.Rcode == dns.RcodeServerFailure {
|
if r.Rcode == dns.RcodeServerFailure {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
logger.Debug("%s resolv on %s (%s) ttl: %d", UnFqdn(qname), nameserver, net, rtt)
|
|
||||||
}
|
}
|
||||||
|
re := &RResp{r, nameserver, rtt}
|
||||||
select {
|
select {
|
||||||
case res <- r:
|
case res <- re:
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -71,13 +171,15 @@ func (r *Resolver) Lookup(net string, req *dns.Msg) (message *dns.Msg, err error
|
||||||
ticker := time.NewTicker(time.Duration(settings.ResolvConfig.Interval) * time.Millisecond)
|
ticker := time.NewTicker(time.Duration(settings.ResolvConfig.Interval) * time.Millisecond)
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
// Start lookup on each nameserver top-down, in every second
|
// Start lookup on each nameserver top-down, in every second
|
||||||
for _, nameserver := range r.Nameservers() {
|
nameservers := r.Nameservers(qname)
|
||||||
|
for _, nameserver := range nameservers {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
go L(nameserver)
|
go L(nameserver)
|
||||||
// but exit early, if we have an answer
|
// but exit early, if we have an answer
|
||||||
select {
|
select {
|
||||||
case r := <-res:
|
case re := <-res:
|
||||||
return r, nil
|
logger.Debug("%s resolv on %s rtt: %v", UnFqdn(qname), re.nameserver, re.rtt)
|
||||||
|
return re.msg, nil
|
||||||
case <-ticker.C:
|
case <-ticker.C:
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -85,26 +187,35 @@ func (r *Resolver) Lookup(net string, req *dns.Msg) (message *dns.Msg, err error
|
||||||
// wait for all the namservers to finish
|
// wait for all the namservers to finish
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
select {
|
select {
|
||||||
case r := <-res:
|
case re := <-res:
|
||||||
return r, nil
|
logger.Debug("%s resolv on %s rtt: %v", UnFqdn(qname), re.nameserver, re.rtt)
|
||||||
|
return re.msg, nil
|
||||||
default:
|
default:
|
||||||
return nil, ResolvError{qname, net, r.Nameservers()}
|
return nil, ResolvError{qname, net, nameservers}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Namservers return the array of nameservers, with port number appended.
|
// Namservers return the array of nameservers, with port number appended.
|
||||||
// '#' in the name is treated as port separator, as with dnsmasq.
|
// '#' in the name is treated as port separator, as with dnsmasq.
|
||||||
func (r *Resolver) Nameservers() (ns []string) {
|
|
||||||
for _, server := range r.config.Servers {
|
func (r *Resolver) Nameservers(qname string) []string {
|
||||||
if i := strings.IndexByte(server, '#'); i > 0 {
|
queryKeys := strings.Split(qname, ".")
|
||||||
server = net.JoinHostPort(server[:i], server[i+1:])
|
queryKeys = queryKeys[:len(queryKeys)-1] // ignore last '.'
|
||||||
} else {
|
|
||||||
server = net.JoinHostPort(server, r.config.Port)
|
ns := []string{}
|
||||||
|
if v, found := r.domain_server.search(queryKeys); found {
|
||||||
|
logger.Debug("%s be found in domain server list, upstream: %v", qname, v)
|
||||||
|
server := v
|
||||||
|
nameserver := net.JoinHostPort(server, "53")
|
||||||
|
ns = append(ns, nameserver)
|
||||||
|
//Ensure query the specific upstream nameserver in async Lookup() function.
|
||||||
|
return ns
|
||||||
}
|
}
|
||||||
ns = append(ns, server)
|
|
||||||
|
for _, nameserver := range r.servers {
|
||||||
|
ns = append(ns, nameserver)
|
||||||
}
|
}
|
||||||
return
|
return ns
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *Resolver) Timeout() time.Duration {
|
func (r *Resolver) Timeout() time.Duration {
|
||||||
|
|
|
@ -34,10 +34,11 @@ type Settings struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type ResolvSettings struct {
|
type ResolvSettings struct {
|
||||||
ResolvFile string `toml:"resolv-file"`
|
|
||||||
Timeout int
|
Timeout int
|
||||||
Interval int
|
Interval int
|
||||||
SetEDNS0 bool
|
SetEDNS0 bool
|
||||||
|
ServerListFile string `toml:"server-list-file"`
|
||||||
|
ResolvFile string `toml:"resolv-file"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type DNSServerSettings struct {
|
type DNSServerSettings struct {
|
||||||
|
@ -93,7 +94,7 @@ func init() {
|
||||||
|
|
||||||
var configFile string
|
var configFile string
|
||||||
|
|
||||||
flag.StringVar(&configFile, "c", "godns.conf", "Look for godns toml-formatting config file in this directory")
|
flag.StringVar(&configFile, "c", "./etc/godns.conf", "Look for godns toml-formatting config file in this directory")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
if _, err := toml.DecodeFile(configFile, &settings); err != nil {
|
if _, err := toml.DecodeFile(configFile, &settings); err != nil {
|
||||||
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
type suffixTreeNode struct {
|
||||||
|
key string
|
||||||
|
value string
|
||||||
|
children map[string]*suffixTreeNode
|
||||||
|
}
|
||||||
|
|
||||||
|
func newSuffixTreeRoot() *suffixTreeNode {
|
||||||
|
return newSuffixTree("", "")
|
||||||
|
}
|
||||||
|
|
||||||
|
func newSuffixTree(key string, value string) *suffixTreeNode {
|
||||||
|
root := &suffixTreeNode{
|
||||||
|
key: key,
|
||||||
|
value: value,
|
||||||
|
children: map[string]*suffixTreeNode{},
|
||||||
|
}
|
||||||
|
return root
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *suffixTreeNode) ensureSubTree(key string) {
|
||||||
|
if _, ok := node.children[key]; !ok {
|
||||||
|
node.children[key] = newSuffixTree(key, "")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *suffixTreeNode) insert(key string, value string) {
|
||||||
|
if c, ok := node.children[key]; ok {
|
||||||
|
c.value = value
|
||||||
|
} else {
|
||||||
|
node.children[key] = newSuffixTree(key, value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *suffixTreeNode) sinsert(keys []string, value string) {
|
||||||
|
if len(keys) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
key := keys[len(keys)-1]
|
||||||
|
if len(keys) > 1 {
|
||||||
|
node.ensureSubTree(key)
|
||||||
|
node.children[key].sinsert(keys[:len(keys)-1], value)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
node.insert(key, value)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *suffixTreeNode) search(keys []string) (string, bool) {
|
||||||
|
if len(keys) == 0 {
|
||||||
|
return "", false
|
||||||
|
}
|
||||||
|
|
||||||
|
key := keys[len(keys)-1]
|
||||||
|
if n, ok := node.children[key]; ok {
|
||||||
|
if nextValue, found := n.search(keys[:len(keys)-1]); found {
|
||||||
|
return nextValue, found
|
||||||
|
}
|
||||||
|
return n.value, (n.value != "")
|
||||||
|
}
|
||||||
|
|
||||||
|
return "", false
|
||||||
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_Suffix_Tree(t *testing.T) {
|
||||||
|
root := newSuffixTreeRoot()
|
||||||
|
|
||||||
|
Convey("Google should not be found", t, func() {
|
||||||
|
root.insert("cn", "114.114.114.114")
|
||||||
|
root.sinsert([]string{"baidu", "cn"}, "166.111.8.28")
|
||||||
|
root.sinsert([]string{"sina", "cn"}, "114.114.114.114")
|
||||||
|
|
||||||
|
v, found := root.search(strings.Split("google.com", "."))
|
||||||
|
So(found, ShouldEqual, false)
|
||||||
|
|
||||||
|
v, found = root.search(strings.Split("baidu.cn", "."))
|
||||||
|
So(found, ShouldEqual, true)
|
||||||
|
So(v, ShouldEqual, "166.111.8.28")
|
||||||
|
})
|
||||||
|
|
||||||
|
Convey("Google should be found", t, func() {
|
||||||
|
root.sinsert(strings.Split("com", "."), "")
|
||||||
|
root.sinsert(strings.Split("google.com", "."), "8.8.8.8")
|
||||||
|
root.sinsert(strings.Split("twitter.com", "."), "8.8.8.8")
|
||||||
|
root.sinsert(strings.Split("scholar.google.com", "."), "208.67.222.222")
|
||||||
|
|
||||||
|
v, found := root.search(strings.Split("google.com", "."))
|
||||||
|
So(found, ShouldEqual, true)
|
||||||
|
So(v, ShouldEqual, "8.8.8.8")
|
||||||
|
|
||||||
|
v, found = root.search(strings.Split("www.google.com", "."))
|
||||||
|
So(found, ShouldEqual, true)
|
||||||
|
So(v, ShouldEqual, "8.8.8.8")
|
||||||
|
|
||||||
|
v, found = root.search(strings.Split("scholar.google.com", "."))
|
||||||
|
So(found, ShouldEqual, true)
|
||||||
|
So(v, ShouldEqual, "208.67.222.222")
|
||||||
|
|
||||||
|
v, found = root.search(strings.Split("twitter.com", "."))
|
||||||
|
So(found, ShouldEqual, true)
|
||||||
|
So(v, ShouldEqual, "8.8.8.8")
|
||||||
|
|
||||||
|
v, found = root.search(strings.Split("baidu.cn", "."))
|
||||||
|
So(found, ShouldEqual, true)
|
||||||
|
So(v, ShouldEqual, "166.111.8.28")
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net"
|
||||||
|
"regexp"
|
||||||
|
)
|
||||||
|
|
||||||
|
func isDomain(domain string) bool {
|
||||||
|
if isIP(domain) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
match, _ := regexp.MatchString(`^([a-zA-Z0-9\*]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}$`, domain)
|
||||||
|
return match
|
||||||
|
}
|
||||||
|
|
||||||
|
func isIP(ip string) bool {
|
||||||
|
return (net.ParseIP(ip) != nil)
|
||||||
|
}
|
|
@ -8,26 +8,24 @@ import (
|
||||||
|
|
||||||
func TestHostDomainAndIP(t *testing.T) {
|
func TestHostDomainAndIP(t *testing.T) {
|
||||||
Convey("Test Host File Domain and IP regex", t, func() {
|
Convey("Test Host File Domain and IP regex", t, func() {
|
||||||
f := &FileHosts{}
|
|
||||||
|
|
||||||
Convey("1.1.1.1 should be IP and not domain", func() {
|
Convey("1.1.1.1 should be IP and not domain", func() {
|
||||||
So(f.isIP("1.1.1.1"), ShouldEqual, true)
|
So(isIP("1.1.1.1"), ShouldEqual, true)
|
||||||
So(f.isDomain("1.1.1.1"), ShouldEqual, false)
|
So(isDomain("1.1.1.1"), ShouldEqual, false)
|
||||||
})
|
})
|
||||||
|
|
||||||
Convey("2001:470:20::2 should be IP and not domain", func() {
|
Convey("2001:470:20::2 should be IP and not domain", func() {
|
||||||
So(f.isIP("2001:470:20::2"), ShouldEqual, true)
|
So(isIP("2001:470:20::2"), ShouldEqual, true)
|
||||||
So(f.isDomain("2001:470:20::2"), ShouldEqual, false)
|
So(isDomain("2001:470:20::2"), ShouldEqual, false)
|
||||||
})
|
})
|
||||||
|
|
||||||
Convey("`host` should not be domain and not IP", func() {
|
Convey("`host` should not be domain and not IP", func() {
|
||||||
So(f.isDomain("host"), ShouldEqual, false)
|
So(isDomain("host"), ShouldEqual, false)
|
||||||
So(f.isIP("host"), ShouldEqual, false)
|
So(isIP("host"), ShouldEqual, false)
|
||||||
})
|
})
|
||||||
|
|
||||||
Convey("`123.test` should be domain and not IP", func() {
|
Convey("`123.test` should be domain and not IP", func() {
|
||||||
So(f.isDomain("123.test"), ShouldEqual, true)
|
So(isDomain("123.test"), ShouldEqual, true)
|
||||||
So(f.isIP("123.test"), ShouldEqual, false)
|
So(isIP("123.test"), ShouldEqual, false)
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
Loading…
Reference in New Issue