forked from networkservicemesh/fanout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fanout.go
151 lines (139 loc) · 3.85 KB
/
fanout.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Copyright (c) 2020 Doc.ai and/or its affiliates.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package fanout
import (
"context"
"crypto/tls"
"time"
"github.com/coredns/coredns/plugin"
"github.com/coredns/coredns/plugin/debug"
clog "github.com/coredns/coredns/plugin/pkg/log"
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
)
var log = clog.NewWithPlugin("fanout")
// Fanout represents a plugin instance that can do async requests to list of DNS servers.
type Fanout struct {
clients []Client
tlsConfig *tls.Config
ignored []string
tlsServerName string
net string
from string
workerCount int
Next plugin.Handler
}
// New returns reference to new Fanout plugin instance with default configs.
func New() *Fanout {
return &Fanout{
tlsConfig: new(tls.Config),
net: "udp",
}
}
func (f *Fanout) addClient(p Client) {
f.clients = append(f.clients, p)
f.workerCount++
}
// Name implements plugin.Handler.
func (f *Fanout) Name() string {
return "fanout"
}
// ServeDNS implements plugin.Handler.
func (f *Fanout) ServeDNS(ctx context.Context, w dns.ResponseWriter, m *dns.Msg) (int, error) {
req := request.Request{W: w, Req: m}
if !f.match(&req) {
return plugin.NextOrFailure(f.Name(), f.Next, ctx, w, m)
}
timeoutContext, cancel := context.WithTimeout(ctx, defaultTimeout)
defer cancel()
clientCount := len(f.clients)
workerChannel := make(chan Client, f.workerCount)
responseCh := make(chan *response, clientCount)
go func() {
for i := 0; i < clientCount; i++ {
client := f.clients[i]
workerChannel <- client
}
}()
for i := 0; i < f.workerCount; i++ {
go func() {
for c := range workerChannel {
start := time.Now()
msg, err := c.Request(&request.Request{W: w, Req: m})
responseCh <- &response{client: c, response: msg, start: start, err: err}
}
}()
}
result := f.getFanoutResult(timeoutContext, responseCh)
if result == nil {
return dns.RcodeServerFailure, timeoutContext.Err()
}
if result.err != nil {
return dns.RcodeServerFailure, result.err
}
dnsTAP := toDnstap(ctx, result.client.Endpoint(), f.net, &req, result.response, result.start)
if !req.Match(result.response) {
debug.Hexdumpf(result.response, "Wrong reply for id: %d, %s %d", result.response.Id, req.QName(), req.QType())
formerr := new(dns.Msg)
formerr.SetRcode(req.Req, dns.RcodeFormatError)
logErrIfNotNil(w.WriteMsg(formerr))
return 0, dnsTAP
}
logErrIfNotNil(w.WriteMsg(result.response))
return 0, dnsTAP
}
func (f *Fanout) getFanoutResult(ctx context.Context, responseCh <-chan *response) *response {
count := len(f.clients)
var result *response
for {
select {
case <-ctx.Done():
return result
case r := <-responseCh:
count--
if isBetter(result, r) {
result = r
}
if count == 0 {
return result
}
if r.err != nil {
break
}
if r.response.Rcode != dns.RcodeSuccess {
break
}
return r
}
}
}
func (f *Fanout) match(state *request.Request) bool {
if !plugin.Name(f.from).Matches(state.Name()) || !f.isAllowedDomain(state.Name()) {
return false
}
return true
}
func (f *Fanout) isAllowedDomain(name string) bool {
if dns.Name(name) == dns.Name(f.from) {
return true
}
for _, ignore := range f.ignored {
if plugin.Name(ignore).Matches(name) {
return false
}
}
return true
}