-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathDnsStreamHandler.h
594 lines (536 loc) · 24.1 KB
/
DnsStreamHandler.h
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
#pragma once
#include "AbstractMetricsManager.h"
#include "DnstapInputStream.h"
#include "GeoDB.h"
#include "MockInputStream.h"
#include "PcapInputStream.h"
#include "StreamHandler.h"
#include "TransactionManager.h"
#include "dns.h"
#include <Corrade/Utility/Debug.h>
#include <bitset>
#include <limits>
#include <string>
namespace visor::input::dnstap {
class DnstapInputEventProxy;
}
namespace visor::handler::dns::v2 {
enum TransactionDirection {
in,
out,
unknown
};
using namespace visor::lib::dns;
using namespace visor::lib::transaction;
using namespace visor::input::pcap;
using namespace visor::input::dnstap;
using namespace visor::input::mock;
static constexpr const char *DNS_SCHEMA{"dns"};
// DNS Groups
namespace group {
enum DnsMetrics : visor::MetricGroupIntType {
Cardinality,
Counters,
Quantiles,
TopEcs,
TopQtypes,
TopRcodes,
TopSize,
TopQnames,
TopPorts,
XactTimes,
};
}
struct DnsTransaction : public Transaction {
bool filtered;
size_t querySize;
bool CD;
std::string ecs;
};
enum Protocol : uint64_t {
DNSTAP_UDP = dnstap::SocketProtocol::UDP,
DNSTAP_TCP = dnstap::SocketProtocol::TCP,
DNSTAP_DOT = dnstap::SocketProtocol::DOT,
DNSTAP_DOH = dnstap::SocketProtocol::DOH,
DNSTAP_CRYPT_UDP = dnstap::SocketProtocol::DNSCryptUDP,
DNSTAP_CRYPT_TCP = dnstap::SocketProtocol::DNSCryptTCP,
DNSTAP_DOQ = dnstap::SocketProtocol::DOQ,
PCPP_TCP = pcpp::TCP,
PCPP_UDP = pcpp::UDP,
PCPP_UNKOWN = pcpp::UnknownProtocol
};
struct DnsDirection {
struct Counters {
Counter xacts;
Counter UDP;
Counter TCP;
Counter DOT;
Counter DOH;
Counter cryptUDP;
Counter cryptTCP;
Counter DOQ;
Counter IPv4;
Counter IPv6;
Counter NX;
Counter ECS;
Counter REFUSED;
Counter SRVFAIL;
Counter RNOERROR;
Counter NODATA;
Counter authData;
Counter authAnswer;
Counter checkDisabled;
Counter timeout;
Counter orphan;
Counters()
: xacts(DNS_SCHEMA, {"xacts"}, "Total DNS transactions (query/reply pairs)")
, UDP(DNS_SCHEMA, {"udp_xacts"}, "Total DNS transactions (query/reply pairs) received over UDP")
, TCP(DNS_SCHEMA, {"tcp_xacts"}, "Total DNS transactions (query/reply pairs) received over TCP")
, DOT(DNS_SCHEMA, {"dot_xacts"}, "Total DNS transactions (query/reply pairs) received over DNS over TLS")
, DOH(DNS_SCHEMA, {"doh_xacts"}, "Total DNS transactions (query/reply pairs) received over DNS over HTTPS")
, cryptUDP(DNS_SCHEMA, {"dnscrypt_udp_xacts"}, "Total DNS transactions (query/reply pairs) received over DNSCrypt over UDP")
, cryptTCP(DNS_SCHEMA, {"dnscrypt_tcp_xacts"}, "Total DNS transactions (query/reply pairs) received over DNSCrypt over TCP")
, DOQ(DNS_SCHEMA, {"doq_xacts"}, "Total DNS transactions (query/reply pairs) received over DNS over QUIC")
, IPv4(DNS_SCHEMA, {"ipv4_xacts"}, "Total DNS transactions (query/reply pairs) received over IPv4")
, IPv6(DNS_SCHEMA, {"ipv6_xacts"}, "Total DNS transactions (query/reply pairs) received over IPv6")
, NX(DNS_SCHEMA, {"nxdomain_xacts"}, "Total DNS transactions (query/reply pairs) flagged as reply with response code NXDOMAIN")
, ECS(DNS_SCHEMA, {"ecs_xacts"}, "Total DNS transactions (query/reply pairs) with the EDNS Client Subnet option set")
, REFUSED(DNS_SCHEMA, {"refused_xacts"}, "Total DNS transactions (query/reply pairs) flagged as reply with response code REFUSED")
, SRVFAIL(DNS_SCHEMA, {"srvfail_xacts"}, "Total DNS transactions (query/reply pairs) flagged as reply with response code SRVFAIL")
, RNOERROR(DNS_SCHEMA, {"noerror_xacts"}, "Total DNS transactions (query/reply pairs) flagged as reply with response code NOERROR")
, NODATA(DNS_SCHEMA, {"nodata_xacts"}, "Total DNS transactions (query/reply pairs) flagged as reply with response code NOERROR but with an empty answers section")
, authData(DNS_SCHEMA, {"authenticated_data_xacts"}, "Total DNS transactions (query/reply pairs) with the AD flag set in the response")
, authAnswer(DNS_SCHEMA, {"authoritative_answer_xacts"}, "Total DNS transactions (query/reply pairs) with the AA flag set in the response")
, checkDisabled(DNS_SCHEMA, {"checking_disabled_xacts"}, "Total DNS transactions (query/reply pairs) with the CD flag set in the query")
, timeout(DNS_SCHEMA, {"timeout_queries"}, "Total number of DNS queries that timed out")
, orphan(DNS_SCHEMA, {"orphan_responses"}, "Total number of DNS responses that do not have a corresponding query")
{
}
void operator+=(const Counters &other)
{
xacts += other.xacts;
UDP += other.UDP;
TCP += other.TCP;
DOT += other.DOT;
DOH += other.DOH;
cryptUDP += other.cryptUDP;
cryptTCP += other.cryptTCP;
DOQ += other.DOQ;
IPv4 += other.IPv4;
IPv6 += other.IPv6;
NX += other.NX;
ECS += other.ECS;
REFUSED += other.REFUSED;
SRVFAIL += other.SRVFAIL;
RNOERROR += other.RNOERROR;
NODATA += other.NODATA;
authData += other.authData;
authAnswer += other.authAnswer;
checkDisabled += other.checkDisabled;
timeout += other.timeout;
orphan += other.orphan;
}
void to_json(json &j) const
{
xacts.to_json(j);
UDP.to_json(j);
TCP.to_json(j);
DOT.to_json(j);
DOH.to_json(j);
cryptUDP.to_json(j);
cryptTCP.to_json(j);
DOQ.to_json(j);
IPv4.to_json(j);
IPv6.to_json(j);
NX.to_json(j);
ECS.to_json(j);
REFUSED.to_json(j);
SRVFAIL.to_json(j);
RNOERROR.to_json(j);
NODATA.to_json(j);
authData.to_json(j);
authAnswer.to_json(j);
checkDisabled.to_json(j);
timeout.to_json(j);
orphan.to_json(j);
}
void to_prometheus(std::stringstream &out, const Metric::LabelMap &add_labels) const
{
xacts.to_prometheus(out, add_labels);
UDP.to_prometheus(out, add_labels);
TCP.to_prometheus(out, add_labels);
DOT.to_prometheus(out, add_labels);
DOH.to_prometheus(out, add_labels);
cryptUDP.to_prometheus(out, add_labels);
cryptTCP.to_prometheus(out, add_labels);
DOQ.to_prometheus(out, add_labels);
IPv4.to_prometheus(out, add_labels);
IPv6.to_prometheus(out, add_labels);
NX.to_prometheus(out, add_labels);
ECS.to_prometheus(out, add_labels);
REFUSED.to_prometheus(out, add_labels);
SRVFAIL.to_prometheus(out, add_labels);
RNOERROR.to_prometheus(out, add_labels);
NODATA.to_prometheus(out, add_labels);
authData.to_prometheus(out, add_labels);
authAnswer.to_prometheus(out, add_labels);
checkDisabled.to_prometheus(out, add_labels);
timeout.to_prometheus(out, add_labels);
orphan.to_prometheus(out, add_labels);
}
void to_opentelemetry(metrics::v1::ScopeMetrics &scope, timespec &start, timespec &end, Metric::LabelMap add_labels) const
{
xacts.to_opentelemetry(scope, start, end, add_labels);
UDP.to_opentelemetry(scope, start, end, add_labels);
TCP.to_opentelemetry(scope, start, end, add_labels);
DOT.to_opentelemetry(scope, start, end, add_labels);
DOH.to_opentelemetry(scope, start, end, add_labels);
cryptUDP.to_opentelemetry(scope, start, end, add_labels);
cryptTCP.to_opentelemetry(scope, start, end, add_labels);
DOQ.to_opentelemetry(scope, start, end, add_labels);
IPv4.to_opentelemetry(scope, start, end, add_labels);
IPv6.to_opentelemetry(scope, start, end, add_labels);
NX.to_opentelemetry(scope, start, end, add_labels);
ECS.to_opentelemetry(scope, start, end, add_labels);
REFUSED.to_opentelemetry(scope, start, end, add_labels);
SRVFAIL.to_opentelemetry(scope, start, end, add_labels);
RNOERROR.to_opentelemetry(scope, start, end, add_labels);
NODATA.to_opentelemetry(scope, start, end, add_labels);
authData.to_opentelemetry(scope, start, end, add_labels);
authAnswer.to_opentelemetry(scope, start, end, add_labels);
checkDisabled.to_opentelemetry(scope, start, end, add_labels);
timeout.to_opentelemetry(scope, start, end, add_labels);
orphan.to_opentelemetry(scope, start, end, add_labels);
}
};
Counters counters;
Quantile<uint64_t> dnsTimeUs;
Histogram<uint64_t> dnsHistTimeUs;
Quantile<double> dnsRatio;
Rate dnsRate;
Cardinality qnameCard;
TopN<visor::geo::City> topGeoLocECS;
TopN<std::string> topASNECS;
TopN<std::string> topQueryECS;
TopN<std::string> topQname2;
TopN<std::string> topQname3;
TopN<std::string> topNX;
TopN<std::string> topREFUSED;
TopN<std::string> topSizedQnameResp;
TopN<std::string> topSRVFAIL;
TopN<std::string> topNODATA;
TopN<std::string> topNOERROR;
TopN<uint16_t> topUDPPort;
TopN<uint16_t> topQType;
TopN<uint16_t> topRCode;
TopN<std::string> topSlow;
DnsDirection()
: counters()
, dnsTimeUs(DNS_SCHEMA, {"xact_time_us"}, "Quantiles of transaction timing (query/reply pairs) in microseconds")
, dnsHistTimeUs(DNS_SCHEMA, {"xact_histogram_us"}, "Histogram of transaction timing (query/reply pairs) in microseconds")
, dnsRatio(DNS_SCHEMA, {"response_query_size_ratio"}, "Quantiles of ratio of packet sizes in a DNS transaction (reply/query)")
, dnsRate(DNS_SCHEMA, {"xact_rates"}, "Rate of all DNS transaction (reply/query) per second")
, qnameCard(DNS_SCHEMA, {"cardinality", "qname"}, "Cardinality of unique QNAMES, both ingress and egress")
, topGeoLocECS(DNS_SCHEMA, "geo_loc", {"top_geo_loc_ecs_xacts"}, "Top GeoIP ECS locations")
, topASNECS(DNS_SCHEMA, "asn", {"top_asn_ecs_xacts"}, "Top ASNs by ECS")
, topQueryECS(DNS_SCHEMA, "ecs", {"top_ecs_xacts"}, "Top EDNS Client Subnet (ECS) observed in DNS transaction")
, topQname2(DNS_SCHEMA, "qname", {"top_qname2_xacts"}, "Top QNAMES, aggregated at a depth of two labels")
, topQname3(DNS_SCHEMA, "qname", {"top_qname3_xacts"}, "Top QNAMES, aggregated at a depth of three labels")
, topNX(DNS_SCHEMA, "qname", {"top_nxdomain_xacts"}, "Top QNAMES with result code NXDOMAIN")
, topREFUSED(DNS_SCHEMA, "qname", {"top_refused_xacts"}, "Top QNAMES with result code REFUSED")
, topSizedQnameResp(DNS_SCHEMA, "qname", {"top_response_bytes"}, "Top QNAMES by response volume in bytes")
, topSRVFAIL(DNS_SCHEMA, "qname", {"top_srvfail_xacts"}, "Top QNAMES with result code SRVFAIL")
, topNODATA(DNS_SCHEMA, "qname", {"top_nodata_xacts"}, "Top QNAMES with result code NOERROR and empty answer section")
, topNOERROR(DNS_SCHEMA, "qname", {"top_noerror_xacts"}, "Top QNAMES with result code NOERROR")
, topUDPPort(DNS_SCHEMA, "port", {"top_udp_ports_xacts"}, "Top UDP source port on the query side of a transaction")
, topQType(DNS_SCHEMA, "qtype", {"top_qtype_xacts"}, "Top query types")
, topRCode(DNS_SCHEMA, "rcode", {"top_rcode_xacts"}, "Top result codes")
, topSlow(DNS_SCHEMA, "qname", {"top_slow_xacts"}, "Top QNAMES in transactions where host is the server and transaction speed is slower than p90")
{
}
void update_topn_metrics(size_t topn_count, uint64_t percentile_threshold)
{
topGeoLocECS.set_settings(topn_count, percentile_threshold);
topASNECS.set_settings(topn_count, percentile_threshold);
topQueryECS.set_settings(topn_count, percentile_threshold);
topQname2.set_settings(topn_count, percentile_threshold);
topQname3.set_settings(topn_count, percentile_threshold);
topNX.set_settings(topn_count, percentile_threshold);
topREFUSED.set_settings(topn_count, percentile_threshold);
topSizedQnameResp.set_settings(topn_count, percentile_threshold);
topSRVFAIL.set_settings(topn_count, percentile_threshold);
topNODATA.set_settings(topn_count, percentile_threshold);
topNOERROR.set_settings(topn_count, percentile_threshold);
topUDPPort.set_settings(topn_count, percentile_threshold);
topQType.set_settings(topn_count, percentile_threshold);
topRCode.set_settings(topn_count, percentile_threshold);
topSlow.set_settings(topn_count, percentile_threshold);
}
};
class DnsMetricsBucket final : public visor::AbstractMetricsBucket
{
protected:
mutable std::shared_mutex _mutex;
size_t _topn_count{10};
uint64_t _topn_percentile_threshold{0};
inline static const std::unordered_map<TransactionDirection, std::string> _dir_str = {
{TransactionDirection::in, "in"},
{TransactionDirection::out, "out"},
{TransactionDirection::unknown, "unknown"}};
std::map<TransactionDirection, DnsDirection> _dns;
Counter _filtered;
public:
DnsMetricsBucket()
: _filtered(DNS_SCHEMA, {"filtered_packets"}, "Total DNS wire packets seen that did not match the configured filter(s) (if any)")
{
set_event_rate_info(DNS_SCHEMA, {"rates", "observed_pps"}, "Rate of all DNS wire packets before filtering per second");
set_num_events_info(DNS_SCHEMA, {"observed_packets"}, "Total DNS wire packets events");
set_num_sample_info(DNS_SCHEMA, {"deep_sampled_packets"}, "Total DNS wire packets that were sampled for deep inspection");
}
auto get_xact_data_locked(TransactionDirection dir) const
{
std::shared_lock lock(_mutex);
struct retVals {
const Quantile<uint64_t> &xact;
std::shared_lock<std::shared_mutex> lock;
};
return retVals{_dns.at(dir).dnsTimeUs, std::move(lock)};
}
void dir_setup(TransactionDirection dir)
{
std::unique_lock lock(_mutex);
if (!_dns.count(dir)) {
_dns[dir].update_topn_metrics(_topn_count, _topn_percentile_threshold);
}
}
bool has_dir(TransactionDirection dir) const
{
std::shared_lock lock(_mutex);
if (!_dns.count(dir)) {
return false;
}
return true;
}
void inc_xact_timed_out(uint64_t c, TransactionDirection dir)
{
std::unique_lock lock(_mutex);
_dns[dir].counters.timeout += c;
}
void inc_xact_orphan(uint64_t c, TransactionDirection dir)
{
std::unique_lock lock(_mutex);
_dns[dir].counters.orphan += c;
}
// get a copy of the counters
DnsDirection::Counters counters(TransactionDirection dir) const
{
std::shared_lock lock(_mutex);
return _dns.at(dir).counters;
}
// visor::AbstractMetricsBucket
void specialized_merge(const AbstractMetricsBucket &other, Metric::Aggregate agg_operator) override;
void to_json(json &j) const override;
void to_prometheus(std::stringstream &out, Metric::LabelMap add_labels = {}) const override;
void to_opentelemetry(metrics::v1::ScopeMetrics &scope, timespec &start_ts, timespec &end_ts, Metric::LabelMap add_labels = {}) const override;
void update_topn_metrics(size_t topn_count, uint64_t percentile_threshold) override
{
_topn_count = topn_count;
_topn_percentile_threshold = percentile_threshold;
}
void on_set_read_only() override
{
// stop rate collection
for (auto &dns : _dns) {
dns.second.dnsRate.cancel();
}
}
void process_filtered();
void new_dns_transaction(bool deep, float per90th, DnsLayer &dns, TransactionDirection dir, DnsTransaction xact, pcpp::ProtocolType l3, Protocol l4, uint16_t port, size_t suffix_size = 0);
};
class DnsMetricsManager final : public visor::AbstractMetricsManager<DnsMetricsBucket>
{
using DnsXactID = std::pair<uint32_t, uint16_t>;
typedef TransactionManager<DnsXactID, DnsTransaction> DnsTransactionManager;
struct DirTransaction {
std::unique_ptr<DnsTransactionManager> xact_map;
float per_90th{0.0f};
DirTransaction()
: xact_map(std::make_unique<DnsTransactionManager>())
{
}
DirTransaction(uint32_t ttl)
: xact_map(std::make_unique<DnsTransactionManager>(ttl))
{
}
};
std::map<TransactionDirection, DirTransaction> _pair_manager;
public:
DnsMetricsManager(const Configurable *window_config)
: visor::AbstractMetricsManager<DnsMetricsBucket>(window_config)
{
_pair_manager[TransactionDirection::in] = DirTransaction();
_pair_manager[TransactionDirection::out] = DirTransaction();
_pair_manager[TransactionDirection::unknown] = DirTransaction();
}
void on_period_shift(timespec stamp, [[maybe_unused]] const DnsMetricsBucket *maybe_expiring_bucket) override
{
// DNS transaction support
for (auto &manager : _pair_manager) {
if (auto timed_out = manager.second.xact_map->purge_old_transactions(stamp); timed_out) {
live_bucket()->dir_setup(manager.first);
live_bucket()->inc_xact_timed_out(timed_out, manager.first);
}
if (bucket(1)->has_dir(manager.first)) {
auto [xact, lock] = bucket(1)->get_xact_data_locked(manager.first);
xact.get_n() ? manager.second.per_90th = xact.get_quantile(0.90) : float();
}
}
}
size_t num_open_transactions() const
{
size_t count{0};
for (const auto &manager : _pair_manager) {
count += manager.second.xact_map->open_transaction_count();
}
return count;
}
void set_xact_ttl(uint32_t ttl)
{
_pair_manager[TransactionDirection::in] = DirTransaction(ttl);
_pair_manager[TransactionDirection::out] = DirTransaction(ttl);
_pair_manager[TransactionDirection::unknown] = DirTransaction(ttl);
}
void process_filtered(timespec stamp)
{
new_event(stamp, false);
live_bucket()->process_filtered();
}
void process_filtered(timespec stamp, DnsLayer &payload, PacketDirection dir, uint32_t flowkey);
void process_dns_layer(DnsLayer &payload, PacketDirection dir, pcpp::ProtocolType l3, pcpp::ProtocolType l4, uint32_t flowkey, uint16_t port, size_t suffix_size, timespec stamp);
void process_dnstap(const dnstap::Dnstap &payload, bool filtered);
};
class DnsTcpSessionData final : public TcpSessionData
{
public:
static constexpr size_t MIN_DNS_QUERY_SIZE = 17;
DnsTcpSessionData(got_msg_cb got_data_handler)
: TcpSessionData(got_data_handler)
{
}
~DnsTcpSessionData() = default;
void receive_tcp_data(const uint8_t *data, size_t len) override;
};
class DnsStreamHandler final : public visor::StreamMetricsHandler<DnsMetricsManager>
{
static constexpr size_t DNSTAP_TYPE_SIZE = 15;
struct DnsCacheData {
uint32_t flowKey = 0;
timespec timestamp = timespec();
std::unique_ptr<DnsLayer> dnsLayer;
};
static thread_local DnsCacheData _cached_dns_layer;
// the input event proxy we support (only one will be in use at a time)
PcapInputEventProxy *_pcap_proxy{nullptr};
MockInputEventProxy *_mock_proxy{nullptr};
DnstapInputEventProxy *_dnstap_proxy{nullptr};
typedef uint32_t flowKey;
std::unordered_map<flowKey, TcpFlowData> _tcp_connections;
sigslot::connection _dnstap_connection;
sigslot::connection _pkt_udp_connection;
sigslot::connection _pkt_tcp_reassembled_connection;
sigslot::connection _start_tstamp_connection;
sigslot::connection _end_tstamp_connection;
sigslot::connection _tcp_start_connection;
sigslot::connection _tcp_end_connection;
sigslot::connection _tcp_message_connection;
sigslot::connection _heartbeat_connection;
void process_udp_packet_cb(pcpp::Packet &payload, PacketDirection dir, pcpp::ProtocolType l3, uint32_t flowkey, timespec stamp);
void process_tcp_reassembled_packet_cb(pcpp::Packet &payload, PacketDirection dir, pcpp::ProtocolType l3, uint32_t flowkey, timespec stamp);
void process_dnstap_cb(const dnstap::Dnstap &, size_t);
void tcp_message_ready_cb(int8_t side, const pcpp::TcpStreamData &tcpData, PacketDirection dir);
void tcp_connection_start_cb(const pcpp::ConnectionData &connectionData, PacketDirection dir);
void tcp_connection_end_cb(const pcpp::ConnectionData &connectionData, pcpp::TcpReassembly::ConnectionEndReason reason);
void set_start_tstamp(timespec stamp);
void set_end_tstamp(timespec stamp);
static const inline std::map<std::string, std::pair<int, int>> _dnstap_map_types = {
{"auth", {dnstap::Message_Type_AUTH_QUERY, dnstap::Message_Type_AUTH_RESPONSE}},
{"resolver", {dnstap::Message_Type_RESOLVER_QUERY, dnstap::Message_Type_RESOLVER_RESPONSE}},
{"client", {dnstap::Message_Type_CLIENT_QUERY, dnstap::Message_Type_CLIENT_RESPONSE}},
{"forwarder", {dnstap::Message_Type_FORWARDER_QUERY, dnstap::Message_Type_FORWARDER_RESPONSE}},
{"stub", {dnstap::Message_Type_STUB_QUERY, dnstap::Message_Type_STUB_RESPONSE}},
{"tool", {dnstap::Message_Type_TOOL_QUERY, dnstap::Message_Type_TOOL_RESPONSE}},
{"update", {dnstap::Message_Type_UPDATE_QUERY, dnstap::Message_Type_UPDATE_RESPONSE}}};
// DNS Filters
enum Filters {
ExcludingRCode,
OnlyRCode,
OnlyQtype,
AnswerCount,
OnlyQName,
OnlyQNameSuffix,
OnlyDNSSECResponse,
DnstapMsgType,
GeoLocNotFound,
AsnNotFound,
DisableIn,
DisableOut,
DisableUndefDir,
FiltersMAX
};
std::bitset<Filters::FiltersMAX> _f_enabled;
enum Configs {
PublicSuffixList,
ConfigsMAX
};
std::bitset<Configs::ConfigsMAX> _c_enabled;
std::vector<uint16_t> _f_rcodes;
uint64_t _f_answer_count{0};
std::vector<std::string> _f_qnames_suffix;
std::vector<std::string> _f_qnames;
std::vector<uint16_t> _f_qtypes;
size_t _static_suffix_size{0};
std::bitset<DNSTAP_TYPE_SIZE> _f_dnstap_types;
static const inline StreamMetricsHandler::ConfigsDefType _config_defs = {
"exclude_noerror",
"only_rcode",
"only_dnssec_response",
"answer_count",
"only_qtype",
"only_qname",
"only_qname_suffix",
"geoloc_notfound",
"asn_notfound",
"dnstap_msg_type",
"public_suffix_list",
"recorded_stream",
"xact_ttl_secs",
"xact_ttl_ms"};
static const inline StreamMetricsHandler::GroupDefType _group_defs = {
{"cardinality", group::DnsMetrics::Cardinality},
{"counters", group::DnsMetrics::Counters},
{"quantiles", group::DnsMetrics::Quantiles},
{"top_ecs", group::DnsMetrics::TopEcs},
{"top_qtypes", group::DnsMetrics::TopQtypes},
{"top_rcodes", group::DnsMetrics::TopRcodes},
{"top_size", group::DnsMetrics::TopSize},
{"top_qnames", group::DnsMetrics::TopQnames},
{"top_ports", group::DnsMetrics::TopPorts},
{"xact_times", group::DnsMetrics::XactTimes}};
bool _filtering(DnsLayer &payload, PacketDirection dir, uint32_t flowkey, timespec stamp);
bool _configs(DnsLayer &payload);
public:
DnsStreamHandler(const std::string &name, InputEventProxy *proxy, const Configurable *window_config);
~DnsStreamHandler() = default;
// visor::AbstractModule
std::string schema_key() const override
{
return DNS_SCHEMA;
}
void start() override;
void stop() override;
void info_json(json &j) const override;
};
}