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
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
// Copyright 2015-2023 Benjamin Fry <benjaminfry@me.com>
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//! All authority related types
#[cfg(feature = "dnssec")]
use std::borrow::Borrow;
#[cfg(all(feature = "dnssec", feature = "testing"))]
use std::ops::Deref;
use std::{
collections::{BTreeMap, HashSet},
ops::DerefMut,
sync::Arc,
};
use cfg_if::cfg_if;
use futures_util::future::{self, TryFutureExt};
#[cfg(feature = "dnssec")]
use time::OffsetDateTime;
use tracing::{debug, error, warn};
use tokio::sync::{RwLock, RwLockReadGuard, RwLockWriteGuard};
#[cfg(feature = "dnssec")]
use crate::{
authority::DnssecAuthority,
proto::rr::dnssec::{
rdata::{key::KEY, DNSSECRData, NSEC},
{tbs, DnsSecResult, SigSigner, SupportedAlgorithms},
},
};
use crate::{
authority::{
AnyRecords, AuthLookup, Authority, LookupError, LookupOptions, LookupRecords, LookupResult,
MessageRequest, UpdateResult, ZoneType,
},
proto::{
op::ResponseCode,
rr::{
rdata::SOA,
{DNSClass, LowerName, Name, RData, Record, RecordSet, RecordType, RrKey},
},
},
server::RequestInfo,
};
/// InMemoryAuthority is responsible for storing the resource records for a particular zone.
///
/// Authorities default to DNSClass IN. The ZoneType specifies if this should be treated as the
/// start of authority for the zone, is a Secondary, or a cached zone.
pub struct InMemoryAuthority {
origin: LowerName,
class: DNSClass,
zone_type: ZoneType,
allow_axfr: bool,
inner: RwLock<InnerInMemory>,
}
impl InMemoryAuthority {
/// Creates a new Authority.
///
/// # Arguments
///
/// * `origin` - The zone `Name` being created, this should match that of the `RecordType::SOA`
/// record.
/// * `records` - The map of the initial set of records in the zone.
/// * `zone_type` - The type of zone, i.e. is this authoritative?
/// * `allow_update` - If true, then this zone accepts dynamic updates.
/// * `is_dnssec_enabled` - If true, then the zone will sign the zone with all registered keys,
/// (see `add_zone_signing_key()`)
///
/// # Return value
///
/// The new `Authority`.
pub fn new(
origin: Name,
records: BTreeMap<RrKey, RecordSet>,
zone_type: ZoneType,
allow_axfr: bool,
) -> Result<Self, String> {
let mut this = Self::empty(origin.clone(), zone_type, allow_axfr);
let inner = this.inner.get_mut();
// SOA must be present
let serial = records
.iter()
.find(|(key, _)| key.record_type == RecordType::SOA)
.and_then(|(_, rrset)| rrset.records_without_rrsigs().next())
.and_then(Record::data)
.and_then(RData::as_soa)
.map(SOA::serial)
.ok_or_else(|| format!("SOA record must be present: {origin}"))?;
let iter = records.into_values();
// add soa to the records
for rrset in iter {
let name = rrset.name().clone();
let rr_type = rrset.record_type();
for record in rrset.records_without_rrsigs() {
if !inner.upsert(record.clone(), serial, this.class) {
return Err(format!(
"Failed to insert {name} {rr_type} to zone: {origin}"
));
};
}
}
Ok(this)
}
/// Creates an empty Authority
///
/// # Warning
///
/// This is an invalid zone, SOA must be added
pub fn empty(origin: Name, zone_type: ZoneType, allow_axfr: bool) -> Self {
Self {
origin: LowerName::new(&origin),
class: DNSClass::IN,
zone_type,
allow_axfr,
inner: RwLock::new(InnerInMemory::default()),
}
}
/// The DNSClass of this zone
pub fn class(&self) -> DNSClass {
self.class
}
/// Allow AXFR's (zone transfers)
#[cfg(any(test, feature = "testing"))]
#[cfg_attr(docsrs, doc(cfg(feature = "testing")))]
pub fn set_allow_axfr(&mut self, allow_axfr: bool) {
self.allow_axfr = allow_axfr;
}
/// Clears all records (including SOA, etc)
pub fn clear(&mut self) {
self.inner.get_mut().records.clear()
}
/// Retrieve the Signer, which contains the private keys, for this zone
#[cfg(all(feature = "dnssec", feature = "testing"))]
pub async fn secure_keys(&self) -> impl Deref<Target = [SigSigner]> + '_ {
RwLockWriteGuard::map(self.inner.write().await, |i| i.secure_keys.as_mut_slice())
}
/// Get all the records
pub async fn records(&self) -> BTreeMap<RrKey, Arc<RecordSet>> {
let records = RwLockReadGuard::map(self.inner.read().await, |i| &i.records);
records.clone()
}
/// Get a mutable reference to the records
pub async fn records_mut(
&self,
) -> impl DerefMut<Target = BTreeMap<RrKey, Arc<RecordSet>>> + '_ {
RwLockWriteGuard::map(self.inner.write().await, |i| &mut i.records)
}
/// Get a mutable reference to the records
pub fn records_get_mut(&mut self) -> &mut BTreeMap<RrKey, Arc<RecordSet>> {
&mut self.inner.get_mut().records
}
/// Returns the minimum ttl (as used in the SOA record)
pub async fn minimum_ttl(&self) -> u32 {
self.inner.read().await.minimum_ttl(self.origin())
}
/// get the current serial number for the zone.
pub async fn serial(&self) -> u32 {
self.inner.read().await.serial(self.origin())
}
#[cfg(any(feature = "dnssec", feature = "sqlite"))]
#[allow(unused)]
pub(crate) async fn increment_soa_serial(&self) -> u32 {
self.inner
.write()
.await
.increment_soa_serial(self.origin(), self.class)
}
/// Inserts or updates a `Record` depending on it's existence in the authority.
///
/// Guarantees that SOA, CNAME only has one record, will implicitly update if they already exist.
///
/// # Arguments
///
/// * `record` - The `Record` to be inserted or updated.
/// * `serial` - Current serial number to be recorded against updates.
///
/// # Return value
///
/// true if the value was inserted, false otherwise
pub async fn upsert(&self, record: Record, serial: u32) -> bool {
self.inner.write().await.upsert(record, serial, self.class)
}
/// Non-async version of upsert when behind a mutable reference.
pub fn upsert_mut(&mut self, record: Record, serial: u32) -> bool {
self.inner.get_mut().upsert(record, serial, self.class)
}
/// Add a (Sig0) key that is authorized to perform updates against this authority
#[cfg(feature = "dnssec")]
fn inner_add_update_auth_key(
inner: &mut InnerInMemory,
name: Name,
key: KEY,
origin: &LowerName,
dns_class: DNSClass,
) -> DnsSecResult<()> {
let rdata = RData::DNSSEC(DNSSECRData::KEY(key));
// TODO: what TTL?
let record = Record::from_rdata(name, 86400, rdata);
let serial = inner.serial(origin);
if inner.upsert(record, serial, dns_class) {
Ok(())
} else {
Err("failed to add auth key".into())
}
}
/// Non-async method of add_update_auth_key when behind a mutable reference
#[cfg(feature = "dnssec")]
#[cfg_attr(docsrs, doc(cfg(feature = "dnssec")))]
pub fn add_update_auth_key_mut(&mut self, name: Name, key: KEY) -> DnsSecResult<()> {
let Self {
ref origin,
ref mut inner,
class,
..
} = self;
Self::inner_add_update_auth_key(inner.get_mut(), name, key, origin, *class)
}
/// By adding a secure key, this will implicitly enable dnssec for the zone.
///
/// # Arguments
///
/// * `signer` - Signer with associated private key
#[cfg(feature = "dnssec")]
fn inner_add_zone_signing_key(
inner: &mut InnerInMemory,
signer: SigSigner,
origin: &LowerName,
dns_class: DNSClass,
) -> DnsSecResult<()> {
// also add the key to the zone
let zone_ttl = inner.minimum_ttl(origin);
let dnskey = signer.key().to_dnskey(signer.algorithm())?;
let dnskey = Record::from_rdata(
origin.clone().into(),
zone_ttl,
RData::DNSSEC(DNSSECRData::DNSKEY(dnskey)),
);
// TODO: also generate the CDS and CDNSKEY
let serial = inner.serial(origin);
inner.upsert(dnskey, serial, dns_class);
inner.secure_keys.push(signer);
Ok(())
}
/// Non-async method of add_zone_signing_key when behind a mutable reference
#[cfg(feature = "dnssec")]
#[cfg_attr(docsrs, doc(cfg(feature = "dnssec")))]
pub fn add_zone_signing_key_mut(&mut self, signer: SigSigner) -> DnsSecResult<()> {
let Self {
ref origin,
ref mut inner,
class,
..
} = self;
Self::inner_add_zone_signing_key(inner.get_mut(), signer, origin, *class)
}
/// (Re)generates the nsec records, increments the serial number and signs the zone
#[cfg(feature = "dnssec")]
#[cfg_attr(docsrs, doc(cfg(feature = "dnssec")))]
pub fn secure_zone_mut(&mut self) -> DnsSecResult<()> {
let Self {
ref origin,
ref mut inner,
..
} = self;
inner.get_mut().secure_zone_mut(origin, self.class)
}
/// (Re)generates the nsec records, increments the serial number and signs the zone
#[cfg(not(feature = "dnssec"))]
#[cfg_attr(docsrs, doc(cfg(feature = "dnssec")))]
pub fn secure_zone_mut(&mut self) -> Result<(), &str> {
Err("DNSSEC was not enabled during compilation.")
}
}
#[derive(Default)]
struct InnerInMemory {
records: BTreeMap<RrKey, Arc<RecordSet>>,
// Private key mapped to the Record of the DNSKey
// TODO: these private_keys should be stored securely. Ideally, we have keys only stored per
// server instance, but that requires requesting updates from the parent zone, which may or
// may not support dynamic updates to register the new key... Trust-DNS will provide support
// for this, in some form, perhaps alternate root zones...
#[cfg(feature = "dnssec")]
secure_keys: Vec<SigSigner>,
}
impl InnerInMemory {
/// Retrieve the Signer, which contains the private keys, for this zone
#[cfg(feature = "dnssec")]
fn secure_keys(&self) -> &[SigSigner] {
&self.secure_keys
}
// /// Get all the records
// fn records(&self) -> &BTreeMap<RrKey, Arc<RecordSet>> {
// &self.records
// }
// /// Get a mutable reference to the records
// fn records_mut(&mut self) -> &mut BTreeMap<RrKey, Arc<RecordSet>> {
// &mut self.records
// }
fn inner_soa(&self, origin: &LowerName) -> Option<&SOA> {
// TODO: can't there be an RrKeyRef?
let rr_key = RrKey::new(origin.clone(), RecordType::SOA);
self.records
.get(&rr_key)
.and_then(|rrset| rrset.records_without_rrsigs().next())
.and_then(Record::data)
.and_then(RData::as_soa)
}
/// Returns the minimum ttl (as used in the SOA record)
fn minimum_ttl(&self, origin: &LowerName) -> u32 {
let soa = self.inner_soa(origin);
let soa = match soa {
Some(soa) => soa,
None => {
error!("could not lookup SOA for authority: {}", origin);
return 0;
}
};
soa.minimum()
}
/// get the current serial number for the zone.
fn serial(&self, origin: &LowerName) -> u32 {
let soa = self.inner_soa(origin);
let soa = match soa {
Some(soa) => soa,
None => {
error!("could not lookup SOA for authority: {}", origin);
return 0;
}
};
soa.serial()
}
fn inner_lookup(
&self,
name: &LowerName,
record_type: RecordType,
lookup_options: LookupOptions,
) -> Option<Arc<RecordSet>> {
// this range covers all the records for any of the RecordTypes at a given label.
let start_range_key = RrKey::new(name.clone(), RecordType::Unknown(u16::min_value()));
let end_range_key = RrKey::new(name.clone(), RecordType::Unknown(u16::max_value()));
fn aname_covers_type(key_type: RecordType, query_type: RecordType) -> bool {
(query_type == RecordType::A || query_type == RecordType::AAAA)
&& key_type == RecordType::ANAME
}
let lookup = self
.records
.range(&start_range_key..&end_range_key)
// remember CNAME can be the only record at a particular label
.find(|(key, _)| {
key.record_type == record_type
|| key.record_type == RecordType::CNAME
|| aname_covers_type(key.record_type, record_type)
})
.map(|(_key, rr_set)| rr_set);
// TODO: maybe unwrap this recursion.
match lookup {
None => self.inner_lookup_wildcard(name, record_type, lookup_options),
l => l.cloned(),
}
}
fn inner_lookup_wildcard(
&self,
name: &LowerName,
record_type: RecordType,
lookup_options: LookupOptions,
) -> Option<Arc<RecordSet>> {
// if this is a wildcard or a root, both should break continued lookups
let wildcard = if name.is_wildcard() || name.is_root() {
return None;
} else {
name.clone().into_wildcard()
};
#[allow(clippy::needless_late_init)]
self.inner_lookup(&wildcard, record_type, lookup_options)
// we need to change the name to the query name in the result set since this was a wildcard
.map(|rrset| {
let mut new_answer =
RecordSet::with_ttl(Name::from(name), rrset.record_type(), rrset.ttl());
let records;
let _rrsigs: Vec<&Record>;
cfg_if! {
if #[cfg(feature = "dnssec")] {
let (records_tmp, rrsigs_tmp) = rrset
.records(lookup_options.is_dnssec(), lookup_options.supported_algorithms())
.partition(|r| r.record_type() != RecordType::RRSIG);
records = records_tmp;
_rrsigs = rrsigs_tmp;
} else {
let (records_tmp, rrsigs_tmp) = (rrset.records_without_rrsigs(), Vec::with_capacity(0));
records = records_tmp;
_rrsigs = rrsigs_tmp;
}
};
for record in records {
if let Some(rdata) = record.data() {
new_answer.add_rdata(rdata.clone());
}
}
#[cfg(feature = "dnssec")]
for rrsig in _rrsigs {
new_answer.insert_rrsig(rrsig.clone())
}
Arc::new(new_answer)
})
}
/// Search for additional records to include in the response
///
/// # Arguments
///
/// * original_name - the original name that was being looked up
/// * query_type - original type in the request query
/// * next_name - the name from the CNAME, ANAME, MX, etc. record that is being searched
/// * search_type - the root search type, ANAME, CNAME, MX, i.e. the beginning of the chain
fn additional_search(
&self,
original_name: &LowerName,
original_query_type: RecordType,
next_name: LowerName,
_search_type: RecordType,
lookup_options: LookupOptions,
) -> Option<Vec<Arc<RecordSet>>> {
let mut additionals: Vec<Arc<RecordSet>> = vec![];
// if it's a CNAME or other forwarding record, we'll be adding additional records based on the query_type
let mut query_types_arr = [original_query_type; 2];
let query_types: &[RecordType] = match original_query_type {
RecordType::ANAME | RecordType::NS | RecordType::MX | RecordType::SRV => {
query_types_arr = [RecordType::A, RecordType::AAAA];
&query_types_arr[..]
}
_ => &query_types_arr[..1],
};
for query_type in query_types {
// loop and collect any additional records to send
// Track the names we've looked up for this query type.
let mut names = HashSet::new();
// If we're just going to repeat the same query then bail out.
if query_type == &original_query_type {
names.insert(original_name.clone());
}
let mut next_name = Some(next_name.clone());
while let Some(search) = next_name.take() {
// If we've already looked up this name then bail out.
if names.contains(&search) {
break;
}
let additional = self.inner_lookup(&search, *query_type, lookup_options);
names.insert(search);
if let Some(additional) = additional {
// assuming no crazy long chains...
if !additionals.contains(&additional) {
additionals.push(additional.clone());
}
next_name =
maybe_next_name(&additional, *query_type).map(|(name, _search_type)| name);
}
}
}
if !additionals.is_empty() {
Some(additionals)
} else {
None
}
}
#[cfg(any(feature = "dnssec", feature = "sqlite"))]
fn increment_soa_serial(&mut self, origin: &LowerName, dns_class: DNSClass) -> u32 {
// we'll remove the SOA and then replace it
let rr_key = RrKey::new(origin.clone(), RecordType::SOA);
let record = self
.records
.remove(&rr_key)
// TODO: there should be an unwrap on rrset, but it's behind Arc
.and_then(|rrset| rrset.records_without_rrsigs().next().cloned());
let mut record = if let Some(record) = record {
record
} else {
error!("could not lookup SOA for authority: {}", origin);
return 0;
};
let serial = if let Some(RData::SOA(ref mut soa_rdata)) = record.data_mut() {
soa_rdata.increment_serial();
soa_rdata.serial()
} else {
panic!("This was not an SOA record"); // valid panic, never should happen
};
self.upsert(record, serial, dns_class);
serial
}
/// Inserts or updates a `Record` depending on it's existence in the authority.
///
/// Guarantees that SOA, CNAME only has one record, will implicitly update if they already exist.
///
/// # Arguments
///
/// * `record` - The `Record` to be inserted or updated.
/// * `serial` - Current serial number to be recorded against updates.
///
/// # Return value
///
/// true if the value was inserted, false otherwise
fn upsert(&mut self, record: Record, serial: u32, dns_class: DNSClass) -> bool {
if dns_class != record.dns_class() {
warn!(
"mismatched dns_class on record insert, zone: {} record: {}",
dns_class,
record.dns_class()
);
return false;
}
#[cfg(feature = "dnssec")]
fn is_nsec(upsert_type: RecordType, occupied_type: RecordType) -> bool {
// NSEC is always allowed
upsert_type == RecordType::NSEC
|| upsert_type == RecordType::NSEC3
|| occupied_type == RecordType::NSEC
|| occupied_type == RecordType::NSEC3
}
#[cfg(not(feature = "dnssec"))]
fn is_nsec(_upsert_type: RecordType, _occupied_type: RecordType) -> bool {
// TODO: we should make the DNSSEC RecordTypes always visible
false
}
/// returns true if an only if the label can not co-occupy space with the checked type
#[allow(clippy::nonminimal_bool)]
fn label_does_not_allow_multiple(
upsert_type: RecordType,
occupied_type: RecordType,
check_type: RecordType,
) -> bool {
// it's a CNAME/ANAME but there's a record that's not a CNAME/ANAME at this location
(upsert_type == check_type && occupied_type != check_type) ||
// it's a different record, but there is already a CNAME/ANAME here
(upsert_type != check_type && occupied_type == check_type)
}
// check that CNAME and ANAME is either not already present, or no other records are if it's a CNAME
let start_range_key =
RrKey::new(record.name().into(), RecordType::Unknown(u16::min_value()));
let end_range_key = RrKey::new(record.name().into(), RecordType::Unknown(u16::max_value()));
let multiple_records_at_label_disallowed = self
.records
.range(&start_range_key..&end_range_key)
// remember CNAME can be the only record at a particular label
.any(|(key, _)| {
!is_nsec(record.record_type(), key.record_type)
&& label_does_not_allow_multiple(
record.record_type(),
key.record_type,
RecordType::CNAME,
)
});
if multiple_records_at_label_disallowed {
// consider making this an error?
return false;
}
let rr_key = RrKey::new(record.name().into(), record.record_type());
let records: &mut Arc<RecordSet> = self.records.entry(rr_key).or_insert_with(|| {
Arc::new(RecordSet::new(record.name(), record.record_type(), serial))
});
// because this is and Arc, we need to clone and then replace the entry
let mut records_clone = RecordSet::clone(&*records);
if records_clone.insert(record, serial) {
*records = Arc::new(records_clone);
true
} else {
false
}
}
/// (Re)generates the nsec records, increments the serial number and signs the zone
#[cfg(feature = "dnssec")]
#[cfg_attr(docsrs, doc(cfg(feature = "dnssec")))]
fn secure_zone_mut(&mut self, origin: &LowerName, dns_class: DNSClass) -> DnsSecResult<()> {
// TODO: only call nsec_zone after adds/deletes
// needs to be called before incrementing the soa serial, to make sure IXFR works properly
self.nsec_zone(origin, dns_class);
// need to resign any records at the current serial number and bump the number.
// first bump the serial number on the SOA, so that it is resigned with the new serial.
self.increment_soa_serial(origin, dns_class);
// TODO: should we auto sign here? or maybe up a level...
self.sign_zone(origin, dns_class)
}
/// Dummy implementation for when DNSSEC is disabled.
#[cfg(feature = "dnssec")]
fn nsec_zone(&mut self, origin: &LowerName, dns_class: DNSClass) {
// only create nsec records for secure zones
if self.secure_keys.is_empty() {
return;
}
debug!("generating nsec records: {}", origin);
// first remove all existing nsec records
let delete_keys: Vec<RrKey> = self
.records
.keys()
.filter(|k| k.record_type == RecordType::NSEC)
.cloned()
.collect();
for key in delete_keys {
self.records.remove(&key);
}
// now go through and generate the nsec records
let ttl = self.minimum_ttl(origin);
let serial = self.serial(origin);
let mut records: Vec<Record> = vec![];
{
let mut nsec_info: Option<(&Name, Vec<RecordType>)> = None;
for key in self.records.keys() {
match nsec_info {
None => nsec_info = Some((key.name.borrow(), vec![key.record_type])),
Some((name, ref mut vec)) if LowerName::new(name) == key.name => {
vec.push(key.record_type)
}
Some((name, vec)) => {
// names aren't equal, create the NSEC record
let mut record = Record::with(name.clone(), RecordType::NSEC, ttl);
let rdata = NSEC::new_cover_self(key.name.clone().into(), vec);
record.set_data(Some(RData::DNSSEC(DNSSECRData::NSEC(rdata))));
records.push(record);
// new record...
nsec_info = Some((key.name.borrow(), vec![key.record_type]))
}
}
}
// the last record
if let Some((name, vec)) = nsec_info {
// names aren't equal, create the NSEC record
let mut record = Record::with(name.clone(), RecordType::NSEC, ttl);
let rdata = NSEC::new_cover_self(origin.clone().into(), vec);
record.set_data(Some(RData::DNSSEC(DNSSECRData::NSEC(rdata))));
records.push(record);
}
}
// insert all the nsec records
for record in records {
let upserted = self.upsert(record, serial, dns_class);
debug_assert!(upserted);
}
}
/// Signs an RecordSet, and stores the RRSIGs in the RecordSet
///
/// This will sign the RecordSet with all the registered keys in the zone
///
/// # Arguments
///
/// * `rr_set` - RecordSet to sign
/// * `secure_keys` - Set of keys to use to sign the RecordSet, see `self.signers()`
/// * `zone_ttl` - the zone TTL, see `self.minimum_ttl()`
/// * `zone_class` - DNSClass of the zone, see `self.zone_class()`
#[cfg(feature = "dnssec")]
fn sign_rrset(
rr_set: &mut RecordSet,
secure_keys: &[SigSigner],
zone_ttl: u32,
zone_class: DNSClass,
) -> DnsSecResult<()> {
use crate::proto::rr::dnssec::rdata::RRSIG;
let inception = OffsetDateTime::now_utc();
rr_set.clear_rrsigs();
let rrsig_temp = Record::with(rr_set.name().clone(), RecordType::RRSIG, zone_ttl);
for signer in secure_keys {
debug!(
"signing rr_set: {}, {} with: {}",
rr_set.name(),
rr_set.record_type(),
signer.algorithm(),
);
let expiration = inception + signer.sig_duration();
let tbs = tbs::rrset_tbs(
rr_set.name(),
zone_class,
rr_set.name().num_labels(),
rr_set.record_type(),
signer.algorithm(),
rr_set.ttl(),
expiration.unix_timestamp() as u32,
inception.unix_timestamp() as u32,
signer.calculate_key_tag()?,
signer.signer_name(),
// TODO: this is a nasty clone... the issue is that the vec
// from records is of Vec<&R>, but we really want &[R]
&rr_set
.records_without_rrsigs()
.cloned()
.collect::<Vec<Record>>(),
);
// TODO, maybe chain these with some ETL operations instead?
let tbs = match tbs {
Ok(tbs) => tbs,
Err(err) => {
error!("could not serialize rrset to sign: {}", err);
continue;
}
};
let signature = signer.sign(&tbs);
let signature = match signature {
Ok(signature) => signature,
Err(err) => {
error!("could not sign rrset: {}", err);
continue;
}
};
let mut rrsig = rrsig_temp.clone();
rrsig.set_data(Some(RData::DNSSEC(DNSSECRData::RRSIG(RRSIG::new(
// type_covered: RecordType,
rr_set.record_type(),
// algorithm: Algorithm,
signer.algorithm(),
// num_labels: u8,
rr_set.name().num_labels(),
// original_ttl: u32,
rr_set.ttl(),
// sig_expiration: u32,
expiration.unix_timestamp() as u32,
// sig_inception: u32,
inception.unix_timestamp() as u32,
// key_tag: u16,
signer.calculate_key_tag()?,
// signer_name: Name,
signer.signer_name().clone(),
// sig: Vec<u8>
signature,
)))));
rr_set.insert_rrsig(rrsig);
}
Ok(())
}
/// Signs any records in the zone that have serial numbers greater than or equal to `serial`
#[cfg(feature = "dnssec")]
fn sign_zone(&mut self, origin: &LowerName, dns_class: DNSClass) -> DnsSecResult<()> {
debug!("signing zone: {}", origin);
let minimum_ttl = self.minimum_ttl(origin);
let secure_keys = &self.secure_keys;
let records = &mut self.records;
// TODO: should this be an error?
if secure_keys.is_empty() {
warn!(
"attempt to sign_zone {} for dnssec, but no keys available!",
origin
)
}
// sign all record_sets, as of 0.12.1 this includes DNSKEY
for rr_set_orig in records.values_mut() {
// because the rrset is an Arc, it must be cloned before mutated
let rr_set = Arc::make_mut(rr_set_orig);
Self::sign_rrset(rr_set, secure_keys, minimum_ttl, dns_class)?;
}
Ok(())
}
}
/// Gets the next search name, and returns the RecordType that it originated from
fn maybe_next_name(
record_set: &RecordSet,
query_type: RecordType,
) -> Option<(LowerName, RecordType)> {
match (record_set.record_type(), query_type) {
// ANAME is similar to CNAME,
// unlike CNAME, it is only something that continue to additional processing if the
// the query was for address (A, AAAA, or ANAME itself) record types.
(t @ RecordType::ANAME, RecordType::A)
| (t @ RecordType::ANAME, RecordType::AAAA)
| (t @ RecordType::ANAME, RecordType::ANAME) => record_set
.records_without_rrsigs()
.next()
.and_then(Record::data)
.and_then(RData::as_aname)
.map(|aname| LowerName::from(&aname.0))
.map(|name| (name, t)),
(t @ RecordType::NS, RecordType::NS) => record_set
.records_without_rrsigs()
.next()
.and_then(Record::data)
.and_then(RData::as_ns)
.map(|ns| LowerName::from(&ns.0))
.map(|name| (name, t)),
// CNAME will continue to additional processing for any query type
(t @ RecordType::CNAME, _) => record_set
.records_without_rrsigs()
.next()
.and_then(Record::data)
.and_then(RData::as_cname)
.map(|cname| LowerName::from(&cname.0))
.map(|name| (name, t)),
(t @ RecordType::MX, RecordType::MX) => record_set
.records_without_rrsigs()
.next()
.and_then(Record::data)
.and_then(RData::as_mx)
.map(|mx| mx.exchange().clone())
.map(LowerName::from)
.map(|name| (name, t)),
(t @ RecordType::SRV, RecordType::SRV) => record_set
.records_without_rrsigs()
.next()
.and_then(Record::data)
.and_then(RData::as_srv)
.map(|srv| srv.target().clone())
.map(LowerName::from)
.map(|name| (name, t)),
// other additional collectors can be added here can be added here
_ => None,
}
}
#[async_trait::async_trait]
impl Authority for InMemoryAuthority {
type Lookup = AuthLookup;
/// What type is this zone
fn zone_type(&self) -> ZoneType {
self.zone_type
}
/// Return true if AXFR is allowed
fn is_axfr_allowed(&self) -> bool {
self.allow_axfr
}
/// Takes the UpdateMessage, extracts the Records, and applies the changes to the record set.
///
/// [RFC 2136](https://tools.ietf.org/html/rfc2136), DNS Update, April 1997
///
/// ```text
///
/// 3.4 - Process Update Section
///
/// Next, the Update Section is processed as follows.
///
/// 3.4.2 - Update
///
/// The Update Section is parsed into RRs and these RRs are processed in
/// order.
///
/// 3.4.2.1. If any system failure (such as an out of memory condition,
/// or a hardware error in persistent storage) occurs during the
/// processing of this section, signal SERVFAIL to the requestor and undo
/// all updates applied to the zone during this transaction.
///
/// 3.4.2.2. Any Update RR whose CLASS is the same as ZCLASS is added to
/// the zone. In case of duplicate RDATAs (which for SOA RRs is always
/// the case, and for WKS RRs is the case if the ADDRESS and PROTOCOL
/// fields both match), the Zone RR is replaced by Update RR. If the
/// TYPE is SOA and there is no Zone SOA RR, or the new SOA.SERIAL is
/// lower (according to [RFC1982]) than or equal to the current Zone SOA
/// RR's SOA.SERIAL, the Update RR is ignored. In the case of a CNAME
/// Update RR and a non-CNAME Zone RRset or vice versa, ignore the CNAME
/// Update RR, otherwise replace the CNAME Zone RR with the CNAME Update
/// RR.
///
/// 3.4.2.3. For any Update RR whose CLASS is ANY and whose TYPE is ANY,
/// all Zone RRs with the same NAME are deleted, unless the NAME is the
/// same as ZNAME in which case only those RRs whose TYPE is other than
/// SOA or NS are deleted. For any Update RR whose CLASS is ANY and
/// whose TYPE is not ANY all Zone RRs with the same NAME and TYPE are
/// deleted, unless the NAME is the same as ZNAME in which case neither
/// SOA or NS RRs will be deleted.
///
/// 3.4.2.4. For any Update RR whose class is NONE, any Zone RR whose
/// NAME, TYPE, RDATA and RDLENGTH are equal to the Update RR is deleted,
/// unless the NAME is the same as ZNAME and either the TYPE is SOA or
/// the TYPE is NS and the matching Zone RR is the only NS remaining in
/// the RRset, in which case this Update RR is ignored.
///
/// 3.4.2.5. Signal NOERROR to the requestor.
/// ```
///
/// # Arguments
///
/// * `update` - The `UpdateMessage` records will be extracted and used to perform the update
/// actions as specified in the above RFC.
///
/// # Return value
///
/// true if any of additions, updates or deletes were made to the zone, false otherwise. Err is
/// returned in the case of bad data, etc.
async fn update(&self, _update: &MessageRequest) -> UpdateResult<bool> {
Err(ResponseCode::NotImp)
}
/// Get the origin of this zone, i.e. example.com is the origin for www.example.com
fn origin(&self) -> &LowerName {
&self.origin
}
/// Looks up all Resource Records matching the giving `Name` and `RecordType`.
///
/// # Arguments
///
/// * `name` - The `Name`, label, to lookup.
/// * `rtype` - The `RecordType`, to lookup. `RecordType::ANY` will return all records matching
/// `name`. `RecordType::AXFR` will return all record types except `RecordType::SOA`
/// due to the requirements that on zone transfers the `RecordType::SOA` must both
/// precede and follow all other records.
/// * `is_secure` - If the DO bit is set on the EDNS OPT record, then return RRSIGs as well.
///
/// # Return value
///
/// None if there are no matching records, otherwise a `Vec` containing the found records.
async fn lookup(
&self,
name: &LowerName,
query_type: RecordType,
lookup_options: LookupOptions,
) -> Result<Self::Lookup, LookupError> {
let inner = self.inner.read().await;
// Collect the records from each rr_set
let (result, additionals): (LookupResult<LookupRecords>, Option<LookupRecords>) =
match query_type {
RecordType::AXFR | RecordType::ANY => {
let result = AnyRecords::new(
lookup_options,
inner.records.values().cloned().collect(),
query_type,
name.clone(),
);
(Ok(LookupRecords::AnyRecords(result)), None)
}
_ => {
// perform the lookup
let answer = inner.inner_lookup(name, query_type, lookup_options);
// evaluate any cnames for additional inclusion
let additionals_root_chain_type: Option<(_, _)> = answer
.as_ref()
.and_then(|a| maybe_next_name(a, query_type))
.and_then(|(search_name, search_type)| {
inner
.additional_search(
name,
query_type,
search_name,
search_type,
lookup_options,
)
.map(|adds| (adds, search_type))
});
// if the chain started with an ANAME, take the A or AAAA record from the list
let (additionals, answer) =
match (additionals_root_chain_type, answer, query_type) {
(
Some((additionals, RecordType::ANAME)),
Some(answer),
RecordType::A,
)
| (
Some((additionals, RecordType::ANAME)),
Some(answer),
RecordType::AAAA,
) => {
// This should always be true...
debug_assert_eq!(answer.record_type(), RecordType::ANAME);
// in the case of ANAME the final record should be the A or AAAA record
let (rdatas, a_aaaa_ttl) = {
let last_record = additionals.last();
let a_aaaa_ttl =
last_record.map_or(u32::max_value(), |r| r.ttl());
// grap the rdatas
let rdatas: Option<Vec<RData>> = last_record
.and_then(|record| match record.record_type() {
RecordType::A | RecordType::AAAA => {
// the RRSIGS will be useless since we're changing the record type
Some(record.records_without_rrsigs())
}
_ => None,
})
.map(|records| {
records
.filter_map(Record::data)
.cloned()
.collect::<Vec<_>>()
});
(rdatas, a_aaaa_ttl)
};
// now build up a new RecordSet
// the name comes from the ANAME record
// according to the rfc the ttl is from the ANAME
// TODO: technically we should take the min of the potential CNAME chain
let ttl = answer.ttl().min(a_aaaa_ttl);
let mut new_answer = RecordSet::new(answer.name(), query_type, ttl);
for rdata in rdatas.into_iter().flatten() {
new_answer.add_rdata(rdata);
}
// if DNSSEC is enabled, and the request had the DO set, sign the recordset
#[cfg(feature = "dnssec")]
{
use tracing::warn;
// ANAME's are constructed on demand, so need to be signed before return
if lookup_options.is_dnssec() {
InnerInMemory::sign_rrset(
&mut new_answer,
inner.secure_keys(),
inner.minimum_ttl(self.origin()),
self.class(),
)
// rather than failing the request, we'll just warn
.map_err(|e| warn!("failed to sign ANAME record: {}", e))
.ok();
}
}
// prepend answer to additionals here (answer is the ANAME record)
let additionals = std::iter::once(answer)
.chain(additionals.into_iter())
.collect();
// return the new answer
// because the searched set was an Arc, we need to arc too
(Some(additionals), Some(Arc::new(new_answer)))
}
(Some((additionals, _)), answer, _) => (Some(additionals), answer),
(None, answer, _) => (None, answer),
};
// map the answer to a result
let answer = answer
.map_or(Err(LookupError::from(ResponseCode::NXDomain)), |rr_set| {
Ok(LookupRecords::new(lookup_options, rr_set))
});
let additionals = additionals.map(|a| LookupRecords::many(lookup_options, a));
(answer, additionals)
}
};
// This is annoying. The 1035 spec literally specifies that most DNS authorities would want to store
// records in a list except when there are a lot of records. But this makes indexed lookups by name+type
// always return empty sets. This is only important in the negative case, where other DNS authorities
// generally return NoError and no results when other types exist at the same name. bah.
// TODO: can we get rid of this?
let result = match result {
Err(LookupError::ResponseCode(ResponseCode::NXDomain)) => {
if inner
.records
.keys()
.any(|key| key.name() == name || name.zone_of(key.name()))
{
return Err(LookupError::NameExists);
} else {
let code = if self.origin().zone_of(name) {
ResponseCode::NXDomain
} else {
ResponseCode::Refused
};
return Err(LookupError::from(code));
}
}
Err(e) => return Err(e),
o => o,
};
result.map(|answers| AuthLookup::answers(answers, additionals))
}
async fn search(
&self,
request_info: RequestInfo<'_>,
lookup_options: LookupOptions,
) -> Result<Self::Lookup, LookupError> {
debug!("searching InMemoryAuthority for: {}", request_info.query);
let lookup_name = request_info.query.name();
let record_type: RecordType = request_info.query.query_type();
// if this is an AXFR zone transfer, verify that this is either the Secondary or Primary
// for AXFR the first and last record must be the SOA
if RecordType::AXFR == record_type {
// TODO: support more advanced AXFR options
if !self.is_axfr_allowed() {
return Err(LookupError::from(ResponseCode::Refused));
}
#[allow(deprecated)]
match self.zone_type() {
ZoneType::Primary | ZoneType::Secondary | ZoneType::Master | ZoneType::Slave => (),
// TODO: Forward?
_ => return Err(LookupError::from(ResponseCode::NXDomain)),
}
}
// perform the actual lookup
match record_type {
RecordType::SOA => {
self.lookup(self.origin(), record_type, lookup_options)
.await
}
RecordType::AXFR => {
// TODO: shouldn't these SOA's be secure? at least the first, perhaps not the last?
let lookup = future::try_join3(
// TODO: maybe switch this to be an soa_inner type call?
self.soa_secure(lookup_options),
self.soa(),
self.lookup(lookup_name, record_type, lookup_options),
)
.map_ok(|(start_soa, end_soa, records)| match start_soa {
l @ AuthLookup::Empty => l,
start_soa => AuthLookup::AXFR {
start_soa: start_soa.unwrap_records(),
records: records.unwrap_records(),
end_soa: end_soa.unwrap_records(),
},
});
lookup.await
}
// A standard Lookup path
_ => self.lookup(lookup_name, record_type, lookup_options).await,
}
}
/// Return the NSEC records based on the given name
///
/// # Arguments
///
/// * `name` - given this name (i.e. the lookup name), return the NSEC record that is less than
/// this
/// * `is_secure` - if true then it will return RRSIG records as well
#[cfg(feature = "dnssec")]
async fn get_nsec_records(
&self,
name: &LowerName,
lookup_options: LookupOptions,
) -> Result<Self::Lookup, LookupError> {
let inner = self.inner.read().await;
fn is_nsec_rrset(rr_set: &RecordSet) -> bool {
rr_set.record_type() == RecordType::NSEC
}
// TODO: need a BorrowdRrKey
let rr_key = RrKey::new(name.clone(), RecordType::NSEC);
let no_data = inner
.records
.get(&rr_key)
.map(|rr_set| LookupRecords::new(lookup_options, rr_set.clone()));
if let Some(no_data) = no_data {
return Ok(no_data.into());
}
let get_closest_nsec = |name: &LowerName| -> Option<Arc<RecordSet>> {
inner
.records
.values()
.rev()
.filter(|rr_set| is_nsec_rrset(rr_set))
// the name must be greater than the name in the nsec
.filter(|rr_set| *name >= rr_set.name().into())
// now find the next record where the covered name is greater
.find(|rr_set| {
// there should only be one record
rr_set
.records(false, SupportedAlgorithms::default())
.next()
.and_then(Record::data)
.and_then(RData::as_dnssec)
.and_then(DNSSECRData::as_nsec)
.map_or(false, |r| {
// the search name is less than the next NSEC record
*name < r.next_domain_name().into() ||
// this is the last record, and wraps to the beginning of the zone
r.next_domain_name() < rr_set.name()
})
})
.cloned()
};
let closest_proof = get_closest_nsec(name);
// we need the wildcard proof, but make sure that it's still part of the zone.
let wildcard = name.base_name();
let origin = self.origin();
let wildcard = if origin.zone_of(&wildcard) {
wildcard
} else {
origin.clone()
};
// don't duplicate the record...
let wildcard_proof = if wildcard != *name {
get_closest_nsec(&wildcard)
} else {
None
};
let proofs = match (closest_proof, wildcard_proof) {
(Some(closest_proof), Some(wildcard_proof)) => {
// dedup with the wildcard proof
if wildcard_proof != closest_proof {
vec![wildcard_proof, closest_proof]
} else {
vec![closest_proof]
}
}
(None, Some(proof)) | (Some(proof), None) => vec![proof],
(None, None) => vec![],
};
Ok(LookupRecords::many(lookup_options, proofs).into())
}
#[cfg(not(feature = "dnssec"))]
async fn get_nsec_records(
&self,
_name: &LowerName,
_lookup_options: LookupOptions,
) -> Result<Self::Lookup, LookupError> {
Ok(AuthLookup::default())
}
}
#[cfg(feature = "dnssec")]
#[cfg_attr(docsrs, doc(cfg(feature = "dnssec")))]
#[async_trait::async_trait]
impl DnssecAuthority for InMemoryAuthority {
/// Add a (Sig0) key that is authorized to perform updates against this authority
async fn add_update_auth_key(&self, name: Name, key: KEY) -> DnsSecResult<()> {
let mut inner = self.inner.write().await;
Self::inner_add_update_auth_key(&mut inner, name, key, self.origin(), self.class)
}
/// By adding a secure key, this will implicitly enable dnssec for the zone.
///
/// # Arguments
///
/// * `signer` - Signer with associated private key
async fn add_zone_signing_key(&self, signer: SigSigner) -> DnsSecResult<()> {
let mut inner = self.inner.write().await;
Self::inner_add_zone_signing_key(&mut inner, signer, self.origin(), self.class)
}
/// Sign the zone for DNSSEC
async fn secure_zone(&self) -> DnsSecResult<()> {
let mut inner = self.inner.write().await;
inner.secure_zone_mut(self.origin(), self.class)
}
}