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
//! DNSSEC signing.
//!
//! **This module is experimental and likely to change significantly.**
//!
//! This module provides support for DNSSEC ([RFC 9364]) signing of zones and
//! managing of the keys used for signing, with support for `NSEC3` ([RFC
//! 5155]), [RFC 9077] compliant `NSEC(3)` TTLs, and [RFC 9276] compliant
//! `NSEC3` parameter settings.
//!
//! # Background
//!
//! DNSSEC signed zones are normal DNS zones (i.e. with records at the apex
//! such as the `SOA` and `NS` records, records in the zone such as `A`
//! records, and delegations to child zones). What makes them different to
//! non-DNSSEC signed zones is that they also contain additional configuration
//! data such as `DNSKEY` and `NSEC3PARAM` records, a chain of `NSEC(3)`
//! records used to provably deny the existence of records, and `RRSIG`
//! signatures that authenticate the authoritative content of the zone. See
//! "Signed Zone" in [RFC 9499 section 10] for more information.
//!
//! Signatures are generated using a private key and can be validated using
//! the corresponding public key.
//!
//! In a DNSSEC signed zone each generated signature covers a single resource
//! record set (a group of records having the same owner name, class and type)
//! and is stored in an `RRSIG` record under the same owner name in the zone.
//! These `RRSIG` records can then be validated later by a resolver using the
//! public key.
//!
//! Private keys must be stored in a safe location by zone signers while
//! public keys can be stored in `DNSKEY` records in public DNS zones.
//! Validating resolvers query the `DNSKEY`s in order to validate `RRSIG`s in
//! the signed zone and thus authenticate the data which the `RRSIG`s cover.
//! `DNSKEY` records can be trusted because a chain of trust is established
//! from a trust anchor to the signed zone with each parent zone in the chain
//! authenticating the public key used to sign a child zone. A `DS` record in
//! the parent zone that refers to a `DNSKEY` record in the child zone
//! establishes this link.
//!
//! For increased security keys are rotated (aka "rolled") over time. This key
//! rolling has to be carefully orchestrated so that at all times the signed
//! zone which the key belongs to remains valid from the perspective of
//! resolvers.
//!
//! # Usage
//!
//! - To generate and/or import signing keys see the [`crate::crypto`] module.
//! - To sign apex [`Record`]s involved in the chain of the trust to the
//! parent see the [`sign_rrset()`] function.
//! - To sign a collection of [`Record`]s that represent a zone see the
//! [`SignableZoneInPlace`] trait.
//! - To manage the life cycle of signing keys see the [`keyset`] module.
//!
//! # Advanced usage
//!
//! - For more control over the signing process see the [`SigningConfig`]
//! type.
//! - For additional ways to sign zones see the [`SignableZone`] trait and the
//! [`sign_zone()`] function.
//! - To invoke specific stages of the signing process manually see the
//! [`Signable`] trait and the [`generate_nsecs()`], [`generate_nsec3s()`],
//! [`sign_sorted_zone_records()`] and [`sign_rrset()`] functions.
//! - To generate signatures for arbitrary data see the [`SignRaw`] trait.
//!
//! # Limitations
//!
//! This module does not yet support:
//! - `async` signing (useful for interacting with cryptographic hardware like
//! Hardware Security Modules (HSMs)).
//! - Re-signing an already signed zone, only unsigned zones can be signed.
//! - Signing of unsorted zones, record collections must be sorted according
//! to [`CanonicalOrd`].
//! - Signing of
//! types or via an [`core::iter::Iterator`] over
//! [`Record`]s, only signing of slices is supported.
//! - Signing with both `NSEC` and `NSEC3` or multiple `NSEC3` configurations
//! at once.
//! - Rewriting the DNSKEY RR algorithm identifier when using NSEC3 with the
//! older DSA or RSASHA1 algorithms (which is anyway only possible at
//! present if you bring your own cryptography).
//!
//! [`common`]: crate::sign::crypto::common
//! [`keyset`]: crate::dnssec::sign::keys::keyset
//! [`openssl`]: crate::sign::crypto::openssl
//! [`ring`]: crate::sign::crypto::ring
//! [`sign_rrset()`]: crate::dnssec::sign::signatures::rrsigs::sign_rrset
//! [`DnssecSigningKey`]: crate::sign::keys::DnssecSigningKey
//! [`Record`]: crate::base::record::Record
//! [RFC 5155]: https://rfc-editor.org/rfc/rfc5155
//! [RFC 6781 section 3.1]: https://rfc-editor.org/rfc/rfc6781#section-3.1
//! [RFC 9077]: https://rfc-editor.org/rfc/rfc9077
//! [RFC 9276]: https://rfc-editor.org/rfc/rfc9276
//! [RFC 9364]: https://rfc-editor.org/rfc/rfc9364
//! [RFC 9499 section 10]:
//! https://www.rfc-editor.org/rfc/rfc9499.html#section-10
//! [`GenerateParams`]: crate::sign::crypto::common::GenerateParams
//! [`KeyPair`]: crate::sign::crypto::common::KeyPair
//! [`Signable`]: crate::dnssec::sign::traits::Signable
//! [`SignableZone`]: crate::dnssec::sign::traits::SignableZone
//! [`SignableZoneInPlace`]: crate::dnssec::sign::traits::SignableZoneInPlace
//! [`SigningKey`]: crate::sign::keys::SigningKey
//! [`SortedRecords`]: crate::sign::SortedRecords
//! [`Zone`]: crate::zonetree::Zone
// NOTE: Users should not interact with the `unstable-crypto-backend` feature
// directly, we deliberately show them the features they should use instead.
// Fail if 'ring' or 'openssl' is not enabled.
const _: = ;
use crateSignRaw;
pub use SigningConfig;
use Display;
use Hash;
use PhantomData;
use Deref;
use Box;
use Debug;
use Vec;
use crate;
use crate;
use crateZoneRecordData;
use DenialConfig;
use generate_nsecs;
use ;
use SigningError;
use SigningKey;
use ;
use ;
use ;
use ;
//------------ SignableZoneInOut ---------------------------------------------
/// Combined in and out input type for use with [`sign_zone()`].
///
/// This type exists, similar to [`Cow`], to allow [`sign_zone()`] to operate
/// on both mutable and immutable zones as input, acting as an in-out
/// parameter whereby the same zone is read from and written to, or as
/// separate in and out parameters where one is an in parameter, the zone to
/// read from, and the other is an out parameter, the collection to write
/// generated records to.
///
/// Prefer signing via the [`SignableZone`] or [`SignableZoneInPlace`] traits
/// as they handle the construction of this type and calling [`sign_zone()`].
///
/// [`Cow`]: std::borrow::Cow
/// [`SignableZoneInPlace`]: crate::dnssec::sign::traits::SignableZoneInPlace
//--- Construction
//--- Accessors
//------------ sign_zone() ---------------------------------------------------
/// DNSSEC sign an unsigned zone using the given configuration and keys.
///
/// An implementation of [RFC 4035 section 2 Zone Signing] with optional
/// support for NSEC3 ([RFC 5155]), i.e. it will generate `NSEC` or `NSEC3`
/// (and if NSEC3 is in use then also `NSEC3PARAM`), and `RRSIG` records.
///
/// This function **CANNOT** be used to generate RRSIG RRs for DNSKEY, CDS and
/// CDNSKEY RRs. This function expects those RRs and their RRSIGs to already
/// be present in the zone. To sign DNSKEY, CDS and CDNSKEY RRs the lower
/// level function [`sign_rrset()`] should be used instead. For more
/// information see the [module docs].
///
/// Signing can either be done in-place (records generated by signing will be
/// added to the record collection being signed) or into some other provided
/// record collection (records generated by signing will be added to the other
/// collection, the record collection being signed will remain untouched).
///
/// Prefer signing via the [`SignableZone`] or [`SignableZoneInPlace`] traits
/// as they handle the construction of the [`SignableZoneInOut`] type and
/// calling of this function for you.
///
/// # Requirements
///
/// The record collection to be signed is required to implement the
/// [`SignableZone`] trait. The collection to extend with generated records is
/// required to implement the [`SortedExtend`] trait, implementations of which
/// are provided for the [`SortedRecords`] and [`Vec`] types.
///
/// The record collection to be signed must meet the following requirements.
/// Failure to meet these requirements will likely lead to incorrect signing
/// output.
///
/// 1. The record collection to be signed **MUST** be ordered according to
/// [`CanonicalOrd`]. This is always true for [`SortedRecords`].
/// 2. The record collection to be signed **MUST** be unsigned, i.e. must not
/// contain `DNSKEY`, `NSEC`, `NSEC3`, `NSEC3PARAM`, or `RRSIG` records.
///
/// <div class="warning">
///
/// When using a type other than [`SortedRecords`] as input to this function
/// you **MUST** be sure that its content is already sorted according to
/// [`CanonicalOrd`] prior to calling this function.
///
/// </div>
///
/// # Limitations
///
/// This function does not yet support:
///
/// - Enforcement of [RFC 5155 section 2 Backwards Compatibility] regarding
/// use of NSEC3 algorithm aliases in DNSKEY RRs.
///
/// - Re-signing, i.e. re-generating expired `RRSIG` signatures, updating the
/// NSEC(3) chain to match added or removed records or adding signatures for
/// another key to an already signed zone e.g. to support key rollover.
///
/// - Signing with multiple NSEC(3) configurations at once, e.g. to migrate
/// from NSEC <-> NSEC3 or between NSEC3 configurations.
///
/// - Signing of record collections stored in the
/// type as it
/// currently only support signing of record slices whereas the records in a
/// currently only supports a visitor style read interface via
/// whereby a callback function is invoked for each node that is "walked".
///
/// # Configuration
///
/// Various aspects of the signing process are configurable, see
/// [`SigningConfig`] for more information.
///
/// [`ReadableZone`]: crate::zonetree::ReadableZone
/// [RFC 4035 section 2 Zone Signing]:
/// https://www.rfc-editor.org/rfc/rfc4035.html#section-2
/// [RFC 5155]: https://www.rfc-editor.org/info/rfc5155
/// [RFC 5155 section 2 Backwards Compatibility]:
/// https://www.rfc-editor.org/rfc/rfc5155.html#section-2
/// [`SignableZoneInPlace`]: crate::dnssec::sign::traits::SignableZoneInPlace
/// [`SortedRecords`]: crate::dnssec::sign::records::SortedRecords
/// [`Zone`]: crate::zonetree::Zone