-
Notifications
You must be signed in to change notification settings - Fork 18
/
fanout.go
204 lines (187 loc) · 5.31 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
// Copyright (c) 2020 Doc.ai and/or its affiliates.
//
// Copyright (c) 2024 MWS 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"
"sync"
"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
serverCount int
loadFactor []int
policyType string
serverSelectionPolicy policy
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(),
serverSelectionPolicy: &sequentialPolicy{}, // default policy
}
}
func (f *Fanout) addClient(p Client) {
f.clients = append(f.clients, p)
f.workerCount++
f.serverCount++
}
// 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()
result := f.getFanoutResult(timeoutContext, f.runWorkers(timeoutContext, &req))
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) runWorkers(ctx context.Context, req *request.Request) chan *response {
sel := f.serverSelectionPolicy.selector(f.clients)
workerCh := make(chan Client, f.workerCount)
responseCh := make(chan *response, f.serverCount)
go func() {
defer close(workerCh)
for i := 0; i < f.serverCount; i++ {
select {
case <-ctx.Done():
return
case workerCh <- sel.Pick():
}
}
}()
go func() {
var wg sync.WaitGroup
wg.Add(f.workerCount)
for i := 0; i < f.workerCount; i++ {
go func() {
defer wg.Done()
for c := range workerCh {
select {
case <-ctx.Done():
return
case responseCh <- f.processClient(ctx, c, &request.Request{W: req.W, Req: req.Req}):
}
}
}()
}
wg.Wait()
close(responseCh)
}()
return responseCh
}
func (f *Fanout) getFanoutResult(ctx context.Context, responseCh <-chan *response) *response {
var result *response
for {
select {
case <-ctx.Done():
return result
case r, ok := <-responseCh:
if !ok {
return result
}
if isBetter(result, r) {
result = r
}
if r.err != nil {
break
}
if f.race {
return r
}
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.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")}
}