-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdns53_handler.go
82 lines (70 loc) · 1.96 KB
/
dns53_handler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package main
import (
"github.com/miekg/dns"
"strings"
)
type Dns53Handler struct {
DefaultECSIPs []string
}
func NewDns53Handler() (h *Dns53Handler) {
h = &Dns53Handler{
DefaultECSIPs: make([]string, 0),
}
return
}
func (h *Dns53Handler) AppendDefaultECSIPStr(ipStr string) {
if ip := ObtainIPFromString(ipStr); ip != nil &&
!SliceContains(h.DefaultECSIPs, ip.String()) &&
!IsPrivateIP(ip) {
h.DefaultECSIPs = append(h.DefaultECSIPs, ip.String())
}
}
func (h *Dns53Handler) InsertDefaultECSIPStr(ipStr string) {
if ip := ObtainIPFromString(ipStr); ip != nil &&
!SliceContains(h.DefaultECSIPs, ip.String()) &&
!IsPrivateIP(ip) {
h.DefaultECSIPs = append([]string{ip.String()}, h.DefaultECSIPs...)
}
}
func (h *Dns53Handler) responseEmpty(w dns.ResponseWriter, msgReq *dns.Msg, rCode int) {
msgReq.Response = true
msgReq.Rcode = rCode
err := w.WriteMsg(msgReq)
if err != nil {
return
}
return
}
func (h *Dns53Handler) ServeDNS(w dns.ResponseWriter, msgReq *dns.Msg) {
// Ignore AAAA Question when configured to not answer
if len(msgReq.Question) > 0 && msgReq.Question[0].Qtype == dns.TypeAAAA && !ExecConfig.IPv6Answer {
h.responseEmpty(w, msgReq, dns.RcodeSuccess)
return
}
var tryEcsIPs_ []string
defer func() { tryEcsIPs_ = nil }()
// ECS in request dns message.
ecs_ := ObtainECS(msgReq)
if ecs_ != nil && ecs_.Address != nil && !IsPrivateIP(ecs_.Address) {
tryEcsIPs_ = append(tryEcsIPs_, ecs_.Address.String())
}
tryEcsIPs_ = append(tryEcsIPs_, h.DefaultECSIPs...)
msgRsp_, err := Dns53Answerer.Answer(msgReq, strings.Join(tryEcsIPs_, ","))
defer func() { msgRsp_ = nil }()
if err != nil || msgRsp_ == nil {
log.Errorf("error when resolving %+v: %+v", msgReq.Question, err)
h.responseEmpty(w, msgReq, dns.RcodeRefused)
return
}
// Restore request ECS.
if ecs_ == nil {
RemoveECSInDnsMsg(msgRsp_)
} else {
ChangeECSInDnsMsg(msgRsp_, &ecs_.Address)
}
err = w.WriteMsg(msgRsp_)
if err != nil {
log.Error(err)
return
}
}