v2ray-core/app/dns/server.go

78 lines
1.5 KiB
Go
Raw Normal View History

2016-05-16 00:25:34 -07:00
package dns
2016-01-31 17:01:28 +01:00
import (
"net"
2016-05-15 23:09:28 -07:00
"sync"
2016-01-31 17:01:28 +01:00
"time"
"github.com/v2ray/v2ray-core/app"
2016-05-15 23:09:28 -07:00
"github.com/v2ray/v2ray-core/app/dispatcher"
"github.com/miekg/dns"
2016-01-31 17:01:28 +01:00
)
2016-05-15 23:09:28 -07:00
const (
QueryTimeout = time.Second * 2
)
2016-01-31 17:01:28 +01:00
2016-05-15 23:09:28 -07:00
type DomainRecord struct {
A *ARecord
2016-01-31 17:01:28 +01:00
}
2016-05-16 00:25:34 -07:00
type CacheServer struct {
2016-05-15 23:09:28 -07:00
sync.RWMutex
records map[string]*DomainRecord
servers []NameServer
2016-01-31 17:01:28 +01:00
}
2016-05-16 00:25:34 -07:00
func NewCacheServer(space app.Space, config *Config) *CacheServer {
server := &CacheServer{
2016-05-15 23:09:28 -07:00
records: make(map[string]*DomainRecord),
servers: make([]NameServer, len(config.NameServers)),
}
dispatcher := space.GetApp(dispatcher.APP_ID).(dispatcher.PacketDispatcher)
for idx, ns := range config.NameServers {
2016-05-16 09:05:01 -07:00
if ns.Address().IsDomain() && ns.Address().Domain() == "localhost" {
server.servers[idx] = &LocalNameServer{}
} else {
server.servers[idx] = NewUDPNameServer(ns, dispatcher)
}
2016-05-15 23:09:28 -07:00
}
return server
2016-01-31 17:01:28 +01:00
}
2016-05-15 23:09:28 -07:00
//@Private
2016-05-16 00:25:34 -07:00
func (this *CacheServer) GetCached(domain string) []net.IP {
2016-05-15 23:09:28 -07:00
this.RLock()
defer this.RUnlock()
2016-01-31 17:01:28 +01:00
2016-05-15 23:09:28 -07:00
if record, found := this.records[domain]; found && record.A.Expire.After(time.Now()) {
return record.A.IPs
2016-01-31 17:01:28 +01:00
}
2016-05-15 23:09:28 -07:00
return nil
2016-01-31 17:01:28 +01:00
}
2016-05-16 00:25:34 -07:00
func (this *CacheServer) Get(context app.Context, domain string) []net.IP {
2016-05-15 23:09:28 -07:00
domain = dns.Fqdn(domain)
ips := this.GetCached(domain)
if ips != nil {
return ips
2016-01-31 17:01:28 +01:00
}
2016-05-15 23:09:28 -07:00
for _, server := range this.servers {
response := server.QueryA(domain)
select {
case a := <-response:
this.Lock()
this.records[domain] = &DomainRecord{
A: a,
}
this.Unlock()
return a.IPs
case <-time.Tick(QueryTimeout):
}
2016-01-31 17:01:28 +01:00
}
2016-05-15 23:09:28 -07:00
2016-01-31 17:01:28 +01:00
return nil
}