-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
387 lines (308 loc) · 10.5 KB
/
main.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
// Package main is responsible for the command-line interface.
package main
import (
"encoding/json"
"fmt"
"math/rand"
"os"
"os/signal"
"strings"
"sync"
"syscall"
"time"
"github.com/AdguardTeam/golibs/stringutil"
"github.com/AdguardTeam/dnsproxy/upstream"
"github.com/AdguardTeam/golibs/log"
goFlags "github.com/jessevdk/go-flags"
"github.com/miekg/dns"
"go.uber.org/ratelimit"
)
// VersionString is the version that we'll print to the output. See the makefile
// for more details.
var VersionString = "undefined"
// printEveryNRecords regulates when we should print the intermediate results.
const printEveryNRecords = 100
// randomLen is a length of the random string that replaces {random} in the
// queried domain name.
const randomLen = 16
// Options represents console arguments.
type Options struct {
// Address of the server you want to bench.
Address string `short:"a" long:"address" description:"Address of the DNS server you're trying to test. Note, that for encrypted DNS it should include the protocol (tls://, https://, quic://, h3://)" optional:"false"`
// Connections is the number of connections you would like to open
// simultaneously.
Connections int `short:"p" long:"parallel" description:"The number of connections you would like to open simultaneously" default:"1"`
// Query is the host name you would like to resolve during the bench.
Query string `short:"q" long:"query" description:"The host name you would like to resolve. {random} will be replaced with a random string" default:"example.org"`
// QueriesPath is the path to the file with domain names to query.
QueriesPath string `short:"f" long:"file" description:"The path to the file with domain names to query"`
// Timeout is timeout for a query.
Timeout int `short:"t" long:"timeout" description:"Query timeout in seconds" default:"10"`
// Rate sets the rate limit for queries that are sent to the address.
Rate int `short:"r" long:"rate-limit" description:"Rate limit (per second)" default:"0"`
// QueriesCount is the overall number of queries we should send.
QueriesCount int `short:"c" long:"count" description:"The overall number of queries we should send" default:"10000"`
// InsecureSkipVerify controls whether godnsbench validates server certificate or
// allows connections with servers with self-signed certs.
InsecureSkipVerify bool `long:"insecure" description:"Do not validate the server certificate" optional:"yes" optional-value:"true"`
// Log settings
// --
// Verbose defines whether we should write the DEBUG-level log or not.
Verbose bool `short:"v" long:"verbose" description:"Verbose output (optional)" optional:"yes" optional-value:"true"`
// LogOutput is the optional path to the log file.
LogOutput string `short:"o" long:"output" description:"Path to the log file. If not set, write to stdout."`
}
// String implements fmt.Stringer interface for Options.
func (o *Options) String() (s string) {
b, _ := json.MarshalIndent(o, "", " ")
return string(b)
}
func main() {
for _, arg := range os.Args {
if arg == "--version" {
fmt.Printf("godnsbench version: %s\n", VersionString)
os.Exit(0)
}
}
options := &Options{}
parser := goFlags.NewParser(options, goFlags.Default)
_, err := parser.Parse()
if err != nil {
if flagsErr, ok := err.(*goFlags.Error); ok && flagsErr.Type == goFlags.ErrHelp {
os.Exit(0)
}
os.Exit(1)
}
state := run(options)
log.Info("The test results are:")
elapsed := state.elapsed()
log.Info("Elapsed: %s", elapsed)
log.Info("Average QPS: %f", state.qpsTotal())
log.Info("Processed queries: %d", state.processed)
log.Info("Average per query: %s", state.elapsedPerQuery())
log.Info("Errors count: %d", state.errors)
}
// runState represents the overall bench run state and is shared among each
// worker goroutine.
type runState struct {
// rate limits the queries per second.
rate ratelimit.Limiter
// startTime is the time when the test has been started.
startTime time.Time
// processed is the number of queries successfully processed.
processed int
// errors is the number of queries that failed.
errors int
// queriesToSend is the number of queries left to send.
queriesToSend int
// queriesSent is the number of queries sent.
queriesSent int
// hostnames is the list of hostnames to query.
hostnames []string
// lastPrintedState is the last time we printed the intermediate state.
// It is printed on every 100's query.
lastPrintedState time.Time
lastPrintedProcessed int
lastPrintedErrors int
// m protects all fields.
m sync.Mutex
}
// qpsTotal returns the number of queries processed in one second.
func (r *runState) qpsTotal() (q float64) {
r.m.Lock()
defer r.m.Unlock()
e := r.elapsed()
return float64(r.processed+r.errors) / e.Seconds()
}
// elapsed returns total elapsed time.
func (r *runState) elapsed() (e time.Duration) {
return time.Now().Sub(r.startTime)
}
// elapsedPerQuery returns elapsed time per query.
func (r *runState) elapsedPerQuery() (e time.Duration) {
elapsed := r.elapsed()
avgElapsed := elapsed
if r.processed > 0 {
avgElapsed = elapsed / time.Duration(r.processed)
}
return avgElapsed
}
// nextHostname returns the next hostname to be queried.
func (r *runState) nextHostname() (h string) {
r.m.Lock()
defer r.m.Unlock()
return r.hostnames[r.queriesSent%len(r.hostnames)]
}
// incProcessed increments processed number, returns the new value.
func (r *runState) incProcessed() (p int) {
r.m.Lock()
defer r.m.Unlock()
r.processed++
r.printIntermediateResults()
return r.processed
}
// printIntermediateResults prints intermediate results if needed. This method
// must be protected by the mutex on the outside.
func (r *runState) printIntermediateResults() {
// Time to print the intermediate result and qps.
queriesCount := r.processed + r.errors - r.lastPrintedProcessed - r.lastPrintedErrors
if queriesCount%printEveryNRecords == 0 {
startTime := r.lastPrintedState
if r.lastPrintedState.IsZero() {
startTime = r.startTime
}
elapsed := time.Now().Sub(startTime)
qps := float64(queriesCount) / elapsed.Seconds()
log.Info("Processed %d queries, errors: %d", r.processed, r.errors)
log.Info("Queries per second: %f", qps)
r.lastPrintedState = time.Now()
r.lastPrintedProcessed = r.processed
r.lastPrintedErrors = r.errors
}
}
// incErrors increments errors number, returns the new value.
func (r *runState) incErrors() (e int) {
r.m.Lock()
defer r.m.Unlock()
r.errors++
r.printIntermediateResults()
return r.errors
}
// decQueriesToSend decrements queriesToSend number, returns the new value.
func (r *runState) decQueriesToSend() (q int) {
r.m.Lock()
defer r.m.Unlock()
r.queriesToSend--
r.queriesSent++
return r.queriesToSend
}
// run is basically the entry point of the program that interprets the
// command-line arguments and runs the bench.
func run(options *Options) (state *runState) {
if options.Verbose {
log.SetLevel(log.DEBUG)
}
if options.LogOutput != "" {
file, err := os.OpenFile(options.LogOutput, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0o644)
if err != nil {
log.Fatalf("cannot create a log file: %s", err)
}
defer log.OnCloserError(file, log.DEBUG)
log.SetOutput(file)
}
log.Info("Run godnsbench with the following configuration:\n%s", options)
// This call is just to validate the server address.
_, err := upstream.AddressToUpstream(options.Address, &upstream.Options{})
if err != nil {
log.Fatalf("The server address %s is invalid: %v", options.Address, err)
}
// Subscribe to the OS events.
signalChannel := make(chan os.Signal, 1)
signal.Notify(signalChannel, syscall.SIGINT, syscall.SIGTERM)
var rate ratelimit.Limiter
if options.Rate > 0 {
rate = ratelimit.New(options.Rate)
} else {
rate = ratelimit.NewUnlimited()
}
var hostnames []string
if options.QueriesPath != "" {
log.Info("Reading hostnames from the file %s", options.QueriesPath)
b, err := os.ReadFile(options.QueriesPath)
if err != nil {
log.Fatalf("Failed to read from %s: %v", options.QueriesPath, err)
}
hostnames = stringutil.SplitTrimmed(string(b), "\n")
} else {
hostnames = []string{options.Query}
}
if len(hostnames) == 0 {
log.Fatalf("Empty list of hostnames in the file %s", options.QueriesPath)
}
state = &runState{
startTime: time.Now(),
queriesToSend: options.QueriesCount + 1,
rate: rate,
hostnames: hostnames,
}
// Subscribe to the bench run close event.
closeChannel := make(chan bool, 1)
// Run it in a separate goroutine so that we could react to other signals.
go func() {
log.Info(
"Starting the test and running %d connections in parallel",
options.Connections,
)
var wg sync.WaitGroup
for i := 0; i < options.Connections; i++ {
wg.Add(1)
go func() {
runConnection(options, state)
wg.Done()
}()
}
wg.Wait()
log.Info("Finished running all connections")
close(closeChannel)
}()
select {
case <-signalChannel:
log.Info("The test has been interrupted.")
case <-closeChannel:
log.Info("The test has finished.")
}
return state
}
func runConnection(options *Options, state *runState) {
// Ignoring the error here since upstream address was already verified.
u, _ := upstream.AddressToUpstream(
options.Address,
&upstream.Options{
Timeout: time.Duration(options.Timeout) * time.Second,
InsecureSkipVerify: options.InsecureSkipVerify,
},
)
queriesToSend := state.decQueriesToSend()
for queriesToSend > 0 {
domainName := state.nextHostname()
if strings.Contains(domainName, "{random}") {
domainName = strings.ReplaceAll(domainName, "{random}", randString(randomLen))
}
log.Debug("Querying %s", domainName)
m := &dns.Msg{
MsgHdr: dns.MsgHdr{
Id: dns.Id(),
RecursionDesired: true,
},
Question: []dns.Question{{
Name: dns.Fqdn(domainName),
Qtype: dns.TypeA,
Qclass: dns.ClassINET,
}},
}
// Make sure we don't run faster than the pre-defined rate limit.
state.rate.Take()
// Send the DNS query.
_, err := u.Exchange(m)
if err == nil {
log.Debug("Query %s has been successfully processed", domainName)
_ = state.incProcessed()
} else {
_ = state.incErrors()
log.Debug("error occurred: %v", err)
// We should re-create the upstream in this case.
u, _ = upstream.AddressToUpstream(options.Address, &upstream.Options{
Timeout: time.Duration(options.Timeout) * time.Second,
})
}
queriesToSend = state.decQueriesToSend()
}
}
var letterRunes = []rune("abcdefghijklmnopqrstuvwxyz")
func randString(n int) string {
b := make([]rune, n)
for i := range b {
b[i] = letterRunes[rand.Intn(len(letterRunes))]
}
return string(b)
}