-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathdns_cache.rs
539 lines (475 loc) · 18.9 KB
/
dns_cache.rs
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
//! A cache for DNS records.
//!
//! This is an internal implementation, not visible to the public API.
#[cfg(feature = "logging")]
use crate::log::trace;
use crate::{
dns_parser::{DnsAddress, DnsPointer, DnsRecordBox, DnsSrv, RRType},
service_info::{split_sub_domain, valid_two_addrs_on_intf},
};
use if_addrs::Interface;
use std::{
collections::{HashMap, HashSet},
net::IpAddr,
time::SystemTime,
};
/// A cache for all types of DNS records.
pub(crate) struct DnsCache {
/// DnsPointer records indexed by ty_domain
ptr: HashMap<String, Vec<DnsRecordBox>>,
/// DnsSrv records indexed by the fullname of an instance
srv: HashMap<String, Vec<DnsRecordBox>>,
/// DnsTxt records indexed by the fullname of an instance
txt: HashMap<String, Vec<DnsRecordBox>>,
/// DnsAddr records indexed by the hostname
addr: HashMap<String, Vec<DnsRecordBox>>,
/// A reverse lookup table from "instance fullname" to "subtype PTR name"
subtype: HashMap<String, String>,
/// Negative responses:
/// A map from "instance fullname" to DnsNSec.
nsec: HashMap<String, Vec<DnsRecordBox>>,
}
impl DnsCache {
pub(crate) fn new() -> Self {
Self {
ptr: HashMap::new(),
srv: HashMap::new(),
txt: HashMap::new(),
addr: HashMap::new(),
subtype: HashMap::new(),
nsec: HashMap::new(),
}
}
pub(crate) fn all_ptr(&self) -> &HashMap<String, Vec<DnsRecordBox>> {
&self.ptr
}
pub(crate) fn get_ptr(&self, ty_domain: &str) -> Option<&Vec<DnsRecordBox>> {
self.ptr.get(ty_domain)
}
pub(crate) fn get_srv(&self, fullname: &str) -> Option<&Vec<DnsRecordBox>> {
self.srv.get(fullname)
}
pub(crate) fn get_txt(&self, fullname: &str) -> Option<&Vec<DnsRecordBox>> {
self.txt.get(fullname)
}
pub(crate) fn get_addr(&self, hostname: &str) -> Option<&Vec<DnsRecordBox>> {
self.addr.get(hostname)
}
/// A reverse lookup table from "instance fullname" to "subtype PTR name"
pub(crate) fn get_subtype(&self, fullname: &str) -> Option<&String> {
self.subtype.get(fullname)
}
/// Returns the list of instances that has `host` as its hostname.
pub(crate) fn get_instances_on_host(&self, host: &str) -> Vec<String> {
self.srv
.iter()
.filter_map(|(instance, srv_list)| {
if let Some(item) = srv_list.first() {
if let Some(dns_srv) = item.any().downcast_ref::<DnsSrv>() {
if dns_srv.host() == host {
return Some(instance.clone());
}
}
}
None
})
.collect()
}
/// Returns the set of IP addresses for a hostname.
pub(crate) fn get_addresses_for_host(&self, host: &str) -> HashSet<IpAddr> {
self.addr
.get(host)
.into_iter()
.flatten()
.filter_map(|record| {
record
.any()
.downcast_ref::<DnsAddress>()
.map(|addr| addr.address())
})
.collect()
}
/// Returns a list of resource records (name, rr_type) that need to be queried in order to
/// verify the `instance`.
///
/// If `expire_at` is not None, the resource records' expire time will be updated.
pub(crate) fn service_verify_queries(
&mut self,
instance: &str,
expire_at: Option<u64>,
) -> Vec<(String, RRType)> {
let Some(srv_vec) = self.srv.get_mut(instance) else {
return Vec::new();
};
let mut query_vec = vec![(instance.to_string(), RRType::SRV)];
for srv in srv_vec {
if let Some(new_expire) = expire_at {
srv.set_expire_sooner(new_expire);
}
let Some(srv_record) = srv.any().downcast_ref::<DnsSrv>() else {
continue;
};
// Will verify addresses for the hostname.
query_vec.push((srv_record.host().to_string(), RRType::A));
query_vec.push((srv_record.host().to_string(), RRType::AAAA));
if let Some(new_expire) = expire_at {
if let Some(addrs) = self.addr.get_mut(srv_record.host()) {
for addr in addrs {
addr.set_expire_sooner(new_expire);
}
}
}
}
query_vec
}
/// Update a DNSRecord TTL if already exists, otherwise insert a new record.
///
/// Returns `None` if `incoming` is invalid / unrecognized, otherwise returns
/// (a new record, true) or (existing record with TTL updated, false).
///
/// If you need to add new timers for related records, push into `timers`.
pub(crate) fn add_or_update(
&mut self,
intf: &Interface,
incoming: DnsRecordBox,
timers: &mut Vec<u64>,
) -> Option<(&DnsRecordBox, bool)> {
let entry_name = incoming.get_name().to_string();
// If it is PTR with subtype, store a mapping from the instance fullname
// to the subtype in this cache.
if incoming.get_type() == RRType::PTR {
let (_, subtype_opt) = split_sub_domain(&entry_name);
if let Some(subtype) = subtype_opt {
if let Some(ptr) = incoming.any().downcast_ref::<DnsPointer>() {
if !self.subtype.contains_key(ptr.alias()) {
self.subtype
.insert(ptr.alias().to_string(), subtype.to_string());
}
}
}
}
// get the existing records for the type.
let record_vec = match incoming.get_type() {
RRType::PTR => self.ptr.entry(entry_name).or_default(),
RRType::SRV => self.srv.entry(entry_name).or_default(),
RRType::TXT => self.txt.entry(entry_name).or_default(),
RRType::A | RRType::AAAA => self.addr.entry(entry_name).or_default(),
RRType::NSEC => self.nsec.entry(entry_name).or_default(),
_ => return None,
};
if incoming.get_cache_flush() {
let now = current_time_millis();
let class = incoming.get_class();
let rtype = incoming.get_type();
record_vec.iter_mut().for_each(|r| {
// When cache flush is asked, we set expire date to 1 second in the future if:
// - The record has the same rclass
// - The record was created more than 1 second ago.
// - The record expire is more than 1 second away.
// Ref: RFC 6762 Section 10.2
//
// Note: when the updated record actually expires, it will trigger events properly.
let mut should_flush = false;
if class == r.get_class()
&& rtype == r.get_type()
&& now > r.get_created() + 1000
&& r.get_expire() > now + 1000
{
should_flush = true;
// additional checks for address records.
if rtype == RRType::A || rtype == RRType::AAAA {
if let Some(addr) = r.any().downcast_ref::<DnsAddress>() {
if let Some(addr_b) = incoming.any().downcast_ref::<DnsAddress>() {
should_flush = valid_two_addrs_on_intf(
&addr.address(),
&addr_b.address(),
intf,
);
}
}
}
}
if should_flush {
trace!("FLUSH one record: {:?}", &r);
let new_expire = now + 1000;
r.set_expire(new_expire);
// Add a timer so the run loop will handle this expire.
timers.push(new_expire);
}
});
}
// update TTL for existing record or create a new record.
let (idx, updated) = match record_vec
.iter_mut()
.enumerate()
.find(|(_idx, r)| r.matches(incoming.as_ref()))
{
Some((i, r)) => {
// It is possible that this record was just updated in cache_flush
// processing. That's okay. We can still reset here.
r.reset_ttl(incoming.as_ref());
(i, false)
}
None => {
record_vec.insert(0, incoming); // A new record.
(0, true)
}
};
Some((record_vec.get(idx).unwrap(), updated))
}
/// Remove a record from the cache if exists, otherwise no-op
pub(crate) fn remove(&mut self, record: &DnsRecordBox) -> bool {
let mut found = false;
let record_name = record.get_name();
let record_vec = match record.get_type() {
RRType::PTR => self.ptr.get_mut(record_name),
RRType::SRV => self.srv.get_mut(record_name),
RRType::TXT => self.txt.get_mut(record_name),
RRType::A | RRType::AAAA => self.addr.get_mut(record_name),
_ => return found,
};
if let Some(record_vec) = record_vec {
record_vec.retain(|x| match x.matches(record.as_ref()) {
true => {
found = true;
false
}
false => true,
});
}
found
}
/// Iterates all ADDR records and remove ones that expired.
/// Returns the expired ones in a map of names and addresses.
pub(crate) fn evict_expired_addr(&mut self, now: u64) -> HashMap<String, HashSet<IpAddr>> {
let mut removed = HashMap::new();
self.addr.retain(|_, records| {
records.retain(|addr| {
let expired = addr.get_record().is_expired(now);
if expired {
if let Some(addr_record) = addr.any().downcast_ref::<DnsAddress>() {
trace!("evict expired ADDR: {:?}", addr_record);
removed
.entry(addr.get_name().to_string())
.or_insert_with(HashSet::new)
.insert(addr_record.address());
}
}
!expired
});
!records.is_empty()
});
removed
}
/// Evicts expired PTR and SRV, TXT records for each ty_domain in the cache, and
/// returns the set of expired instance names for each ty_domain.
///
/// An instance in the returned set indicates its PTR and/or SRV record has expired.
pub(crate) fn evict_expired_services(&mut self, now: u64) -> HashMap<String, HashSet<String>> {
let mut expired_instances = HashMap::new();
// Check all ty_domain in the cache by following all PTR records, regardless
// if the ty_domain is actively queried or not.
for (ty_domain, ptr_records) in self.ptr.iter_mut() {
for ptr in ptr_records.iter() {
if let Some(dns_ptr) = ptr.any().downcast_ref::<DnsPointer>() {
let instance_name = dns_ptr.alias();
// evict expired SRV records of this instance
if let Some(srv_records) = self.srv.get_mut(instance_name) {
srv_records.retain(|srv| {
let expired = srv.get_record().is_expired(now);
if expired {
trace!("expired SRV: {}: {:?}", ty_domain, srv);
expired_instances
.entry(ty_domain.to_string())
.or_insert_with(HashSet::new)
.insert(srv.get_name().to_string());
}
!expired
});
}
// evict expired TXT records of this instance
if let Some(txt_records) = self.txt.get_mut(instance_name) {
txt_records.retain(|txt| !txt.get_record().is_expired(now))
}
}
}
// evict expired PTR records
ptr_records.retain(|x| {
let expired = x.get_record().is_expired(now);
if expired {
if let Some(dns_ptr) = x.any().downcast_ref::<DnsPointer>() {
trace!("expired PTR: domain:{ty_domain} record: {:?}", dns_ptr);
expired_instances
.entry(ty_domain.to_string())
.or_insert_with(HashSet::new)
.insert(dns_ptr.alias().to_string());
}
}
!expired
});
}
expired_instances
}
/// Checks refresh due for PTR records of `ty_domain`.
/// Returns all updated refresh time.
pub(crate) fn refresh_due_ptr(&mut self, ty_domain: &str) -> HashSet<u64> {
let now = current_time_millis();
// Check all PTR records for this ty_domain.
self.ptr
.get_mut(ty_domain)
.into_iter()
.flatten()
.filter_map(|record| record.updated_refresh_time(now))
.collect()
}
/// Returns the set of SRV instance names that are due for refresh
/// for a `ty_domain`.
pub(crate) fn refresh_due_srv(&mut self, ty_domain: &str) -> (HashSet<String>, HashSet<u64>) {
let now = current_time_millis();
let instances: Vec<_> = self
.ptr
.get(ty_domain)
.into_iter()
.flatten()
.filter(|record| !record.get_record().is_expired(now))
.filter_map(|record| {
record
.any()
.downcast_ref::<DnsPointer>()
.map(|ptr| ptr.alias())
})
.collect();
// Check SRV records.
let mut refresh_due = HashSet::new();
let mut new_timers = HashSet::new();
for instance in instances {
let refresh_timers: HashSet<u64> = self
.srv
.get_mut(instance)
.into_iter()
.flatten()
.filter_map(|record| record.updated_refresh_time(now))
.collect();
if !refresh_timers.is_empty() {
refresh_due.insert(instance.to_string());
new_timers.extend(refresh_timers);
}
}
(refresh_due, new_timers)
}
/// Returns the set of `host`, where refreshing the A / AAAA records is due
/// for a `ty_domain`.
pub(crate) fn refresh_due_hosts(&mut self, ty_domain: &str) -> (HashSet<String>, HashSet<u64>) {
let now = current_time_millis();
let instances: Vec<_> = self
.ptr
.get(ty_domain)
.into_iter()
.flatten()
.filter(|record| !record.get_record().is_expired(now))
.filter_map(|record| {
record
.any()
.downcast_ref::<DnsPointer>()
.map(|ptr| ptr.alias())
})
.collect();
// Collect hostnames we have browsers for by SRV records.
let mut hostnames_browsed = HashSet::new();
for instance in instances {
let hosts: HashSet<String> = self
.srv
.get(instance)
.into_iter()
.flatten()
.filter_map(|record| {
record
.any()
.downcast_ref::<DnsSrv>()
.map(|srv| srv.host().to_string())
})
.collect();
hostnames_browsed.extend(hosts);
}
let mut refresh_due = HashSet::new();
let mut new_timers = HashSet::new();
for hostname in hostnames_browsed {
let refresh_timers: HashSet<u64> = self
.addr
.get_mut(&hostname)
.into_iter()
.flatten()
.filter_map(|record| record.updated_refresh_time(now))
.collect();
if !refresh_timers.is_empty() {
refresh_due.insert(hostname);
new_timers.extend(refresh_timers);
}
}
(refresh_due, new_timers)
}
/// Returns the set of A/AAAA records that are due for refresh for a `hostname`.
///
/// For these records, their refresh time will be updated so that they will not refresh again.
pub(crate) fn refresh_due_hostname_resolutions(
&mut self,
hostname: &str,
) -> HashSet<(String, IpAddr)> {
let now = current_time_millis();
self.addr
.get_mut(hostname)
.into_iter()
.flatten()
.filter_map(|record| {
let rec = record.get_record_mut();
if rec.is_expired(now) || !rec.refresh_due(now) {
return None;
}
rec.refresh_no_more();
Some((
hostname.to_owned(),
record.any().downcast_ref::<DnsAddress>().unwrap().address(),
))
})
.collect()
}
/// Returns a list of Known Answer for a given question of `name` with `qtype`.
/// The timestamp `now` is passed in to check TTL.
///
/// Reference: RFC 6762 section 7.1
pub(crate) fn get_known_answers<'a>(
&'a self,
name: &str,
qtype: RRType,
now: u64,
) -> Vec<&'a DnsRecordBox> {
let records_opt = match qtype {
RRType::PTR => self.get_ptr(name),
RRType::SRV => self.get_srv(name),
RRType::A | RRType::AAAA => self.get_addr(name),
RRType::TXT => self.get_txt(name),
_ => None,
};
let records = match records_opt {
Some(items) => items,
None => return Vec::new(),
};
// From RFC 6762 section 7.1:
// ..Generally, this applies only to Shared records, not Unique records,..
//
// ..a Multicast DNS querier SHOULD NOT include
// records in the Known-Answer list whose remaining TTL is less than
// half of their original TTL.
records
.iter()
.filter(move |r| !r.get_record().is_unique() && !r.get_record().halflife_passed(now))
.collect()
}
}
/// Returns UNIX time in millis
pub(crate) fn current_time_millis() -> u64 {
SystemTime::now()
.duration_since(SystemTime::UNIX_EPOCH)
.expect("failed to get current UNIX time")
.as_millis() as u64
}