forked from networkservicemesh/fanout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfanout.go
220 lines (201 loc) · 5.34 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// 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"
"github.com/coredns/coredns/plugin/dnstap"
"github.com/coredns/coredns/plugin/metadata"
clog "github.com/coredns/coredns/plugin/pkg/log"
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
"github.com/pkg/errors"
)
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
excludeDomains Domain
tlsServerName string
timeout time.Duration
race bool
net string
from string
attempts int
workerCount int
tapPlugin *dnstap.Dnstap
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",
attempts: 3,
timeout: defaultTimeout,
excludeDomains: NewDomain(),
}
}
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, f.timeout)
defer cancel()
clientCount := len(f.clients)
workerChannel := make(chan Client, f.workerCount)
responseCh := make(chan *response, clientCount)
go func() {
defer close(workerChannel)
for i := 0; i < clientCount; i++ {
client := f.clients[i]
select {
case <-timeoutContext.Done():
return
case workerChannel <- client:
continue
}
}
}()
for i := 0; i < f.workerCount; i++ {
go func() {
for c := range workerChannel {
responseCh <- f.processClient(timeoutContext, c, &request.Request{W: w, Req: m})
}
}()
}
result := f.getFanoutResult(timeoutContext, responseCh)
if result == nil {
return dns.RcodeServerFailure, timeoutContext.Err()
}
metadata.SetValueFunc(ctx, "fanout/upstream", func() string {
return result.client.Endpoint()
})
if result.err != nil {
return dns.RcodeServerFailure, result.err
}
if f.tapPlugin != nil {
toDnstap(f, result.client.Endpoint(), &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, nil
}
logErrIfNotNil(w.WriteMsg(result.response))
return 0, nil
}
func (f *Fanout) mergeResult(from *response, to *response) *response {
if to == nil {
return from
}
// 'to' no longer nil
if from == nil {
return to
}
if from.err != nil {
return to
}
if to.err != nil {
return from
}
if to.response.Rcode != dns.RcodeSuccess {
return from
}
if from.response.Rcode == dns.RcodeSuccess {
to.response.Answer = append(to.response.Answer, from.response.Answer...)
}
// merge records
return to
}
/** count--
if isBetter(result, r) {
result = r
}
if count == 0 {
return result
}
if r.err != nil {
break
}
if f.race {
return r
}
if r.response.Rcode != dns.RcodeSuccess {
break
}
return r
*/
func (f *Fanout) getFanoutResult(ctx context.Context, responseCh <-chan *response) *response {
count := len(f.clients)
var mergedResult *response
for {
select {
case <-ctx.Done():
return mergedResult
case r := <-responseCh:
count--
mergedResult = f.mergeResult(r, mergedResult)
if count == 0 {
return mergedResult
}
// not sure if this should configurable when waiting for all is chosen
if f.race {
return mergedResult
}
}
}
}
func (f *Fanout) match(state *request.Request) bool {
if !plugin.Name(f.from).Matches(state.Name()) || f.excludeDomains.Contains(state.Name()) {
return false
}
return true
}
func (f *Fanout) processClient(ctx context.Context, c Client, r *request.Request) *response {
start := time.Now()
var err error
for j := 0; j < f.attempts || f.attempts == 0; <-time.After(attemptDelay) {
if ctx.Err() != nil {
return &response{client: c, response: nil, start: start, err: ctx.Err()}
}
var msg *dns.Msg
msg, err = c.Request(ctx, r)
if err == nil {
return &response{client: c, response: msg, start: start, err: err}
}
if f.attempts != 0 {
j++
}
}
return &response{client: c, response: nil, start: start, err: errors.Wrapf(err, "attempt limit has been reached")}
}