1 /* SPDX-License-Identifier: LGPL-2.1+ */
5 #include "alloc-util.h"
6 #include "dns-domain.h"
10 #include "resolved-dns-dnssec.h"
11 #include "resolved-dns-packet.h"
12 #include "resolved-dns-rr.h"
13 #include "string-table.h"
14 #include "string-util.h"
16 #include "terminal-util.h"
18 DnsResourceKey
* dns_resource_key_new(uint16_t class, uint16_t type
, const char *name
) {
25 k
= malloc0(sizeof(DnsResourceKey
) + l
+ 1);
33 strcpy((char*) k
+ sizeof(DnsResourceKey
), name
);
38 DnsResourceKey
* dns_resource_key_new_redirect(const DnsResourceKey
*key
, const DnsResourceRecord
*cname
) {
44 assert(IN_SET(cname
->key
->type
, DNS_TYPE_CNAME
, DNS_TYPE_DNAME
));
46 if (cname
->key
->type
== DNS_TYPE_CNAME
)
47 return dns_resource_key_new(key
->class, key
->type
, cname
->cname
.name
);
50 char *destination
= NULL
;
52 r
= dns_name_change_suffix(dns_resource_key_name(key
), dns_resource_key_name(cname
->key
), cname
->dname
.name
, &destination
);
56 return dns_resource_key_ref((DnsResourceKey
*) key
);
58 k
= dns_resource_key_new_consume(key
->class, key
->type
, destination
);
60 return mfree(destination
);
66 int dns_resource_key_new_append_suffix(DnsResourceKey
**ret
, DnsResourceKey
*key
, char *name
) {
67 DnsResourceKey
*new_key
;
75 if (dns_name_is_root(name
)) {
76 *ret
= dns_resource_key_ref(key
);
80 r
= dns_name_concat(dns_resource_key_name(key
), name
, 0, &joined
);
84 new_key
= dns_resource_key_new_consume(key
->class, key
->type
, joined
);
94 DnsResourceKey
* dns_resource_key_new_consume(uint16_t class, uint16_t type
, char *name
) {
99 k
= new0(DnsResourceKey
, 1);
111 DnsResourceKey
* dns_resource_key_ref(DnsResourceKey
*k
) {
116 /* Static/const keys created with DNS_RESOURCE_KEY_CONST will
117 * set this to -1, they should not be reffed/unreffed */
118 assert(k
->n_ref
!= (unsigned) -1);
120 assert(k
->n_ref
> 0);
126 DnsResourceKey
* dns_resource_key_unref(DnsResourceKey
*k
) {
130 assert(k
->n_ref
!= (unsigned) -1);
131 assert(k
->n_ref
> 0);
142 const char* dns_resource_key_name(const DnsResourceKey
*key
) {
151 name
= (char*) key
+ sizeof(DnsResourceKey
);
153 if (dns_name_is_root(name
))
159 bool dns_resource_key_is_address(const DnsResourceKey
*key
) {
162 /* Check if this is an A or AAAA resource key */
164 return key
->class == DNS_CLASS_IN
&& IN_SET(key
->type
, DNS_TYPE_A
, DNS_TYPE_AAAA
);
167 bool dns_resource_key_is_dnssd_ptr(const DnsResourceKey
*key
) {
170 /* Check if this is a PTR resource key used in
171 Service Instance Enumeration as described in RFC6763 p4.1. */
173 if (key
->type
!= DNS_TYPE_PTR
)
176 return dns_name_endswith(dns_resource_key_name(key
), "_tcp.local") ||
177 dns_name_endswith(dns_resource_key_name(key
), "_udp.local");
180 int dns_resource_key_equal(const DnsResourceKey
*a
, const DnsResourceKey
*b
) {
186 r
= dns_name_equal(dns_resource_key_name(a
), dns_resource_key_name(b
));
190 if (a
->class != b
->class)
193 if (a
->type
!= b
->type
)
199 int dns_resource_key_match_rr(const DnsResourceKey
*key
, DnsResourceRecord
*rr
, const char *search_domain
) {
208 /* Checks if an rr matches the specified key. If a search
209 * domain is specified, it will also be checked if the key
210 * with the search domain suffixed might match the RR. */
212 if (rr
->key
->class != key
->class && key
->class != DNS_CLASS_ANY
)
215 if (rr
->key
->type
!= key
->type
&& key
->type
!= DNS_TYPE_ANY
)
218 r
= dns_name_equal(dns_resource_key_name(rr
->key
), dns_resource_key_name(key
));
223 _cleanup_free_
char *joined
= NULL
;
225 r
= dns_name_concat(dns_resource_key_name(key
), search_domain
, 0, &joined
);
229 return dns_name_equal(dns_resource_key_name(rr
->key
), joined
);
235 int dns_resource_key_match_cname_or_dname(const DnsResourceKey
*key
, const DnsResourceKey
*cname
, const char *search_domain
) {
241 if (cname
->class != key
->class && key
->class != DNS_CLASS_ANY
)
244 if (cname
->type
== DNS_TYPE_CNAME
)
245 r
= dns_name_equal(dns_resource_key_name(key
), dns_resource_key_name(cname
));
246 else if (cname
->type
== DNS_TYPE_DNAME
)
247 r
= dns_name_endswith(dns_resource_key_name(key
), dns_resource_key_name(cname
));
255 _cleanup_free_
char *joined
= NULL
;
257 r
= dns_name_concat(dns_resource_key_name(key
), search_domain
, 0, &joined
);
261 if (cname
->type
== DNS_TYPE_CNAME
)
262 return dns_name_equal(joined
, dns_resource_key_name(cname
));
263 else if (cname
->type
== DNS_TYPE_DNAME
)
264 return dns_name_endswith(joined
, dns_resource_key_name(cname
));
270 int dns_resource_key_match_soa(const DnsResourceKey
*key
, const DnsResourceKey
*soa
) {
274 /* Checks whether 'soa' is a SOA record for the specified key. */
276 if (soa
->class != key
->class)
279 if (soa
->type
!= DNS_TYPE_SOA
)
282 return dns_name_endswith(dns_resource_key_name(key
), dns_resource_key_name(soa
));
285 static void dns_resource_key_hash_func(const DnsResourceKey
*k
, struct siphash
*state
) {
288 dns_name_hash_func(dns_resource_key_name(k
), state
);
289 siphash24_compress(&k
->class, sizeof(k
->class), state
);
290 siphash24_compress(&k
->type
, sizeof(k
->type
), state
);
293 static int dns_resource_key_compare_func(const DnsResourceKey
*x
, const DnsResourceKey
*y
) {
296 ret
= dns_name_compare_func(dns_resource_key_name(x
), dns_resource_key_name(y
));
300 ret
= CMP(x
->type
, y
->type
);
304 ret
= CMP(x
->class, y
->class);
311 DEFINE_HASH_OPS(dns_resource_key_hash_ops
, DnsResourceKey
, dns_resource_key_hash_func
, dns_resource_key_compare_func
);
313 char* dns_resource_key_to_string(const DnsResourceKey
*key
, char *buf
, size_t buf_size
) {
317 /* If we cannot convert the CLASS/TYPE into a known string,
318 use the format recommended by RFC 3597, Section 5. */
320 c
= dns_class_to_string(key
->class);
321 t
= dns_type_to_string(key
->type
);
323 snprintf(buf
, buf_size
, "%s %s%s%.0u %s%s%.0u",
324 dns_resource_key_name(key
),
325 strempty(c
), c
? "" : "CLASS", c
? 0 : key
->class,
326 strempty(t
), t
? "" : "TYPE", t
? 0 : key
->type
);
331 bool dns_resource_key_reduce(DnsResourceKey
**a
, DnsResourceKey
**b
) {
335 /* Try to replace one RR key by another if they are identical, thus saving a bit of memory. Note that we do
336 * this only for RR keys, not for RRs themselves, as they carry a lot of additional metadata (where they come
337 * from, validity data, and suchlike), and cannot be replaced so easily by other RRs that have the same
338 * superficial data. */
345 /* We refuse merging const keys */
346 if ((*a
)->n_ref
== (unsigned) -1)
348 if ((*b
)->n_ref
== (unsigned) -1)
351 /* Already the same? */
355 /* Are they really identical? */
356 if (dns_resource_key_equal(*a
, *b
) <= 0)
359 /* Keep the one which already has more references. */
360 if ((*a
)->n_ref
> (*b
)->n_ref
) {
361 dns_resource_key_unref(*b
);
362 *b
= dns_resource_key_ref(*a
);
364 dns_resource_key_unref(*a
);
365 *a
= dns_resource_key_ref(*b
);
371 DnsResourceRecord
* dns_resource_record_new(DnsResourceKey
*key
) {
372 DnsResourceRecord
*rr
;
374 rr
= new0(DnsResourceRecord
, 1);
379 rr
->key
= dns_resource_key_ref(key
);
380 rr
->expiry
= USEC_INFINITY
;
381 rr
->n_skip_labels_signer
= rr
->n_skip_labels_source
= (unsigned) -1;
386 DnsResourceRecord
* dns_resource_record_new_full(uint16_t class, uint16_t type
, const char *name
) {
387 _cleanup_(dns_resource_key_unrefp
) DnsResourceKey
*key
= NULL
;
389 key
= dns_resource_key_new(class, type
, name
);
393 return dns_resource_record_new(key
);
396 static DnsResourceRecord
* dns_resource_record_free(DnsResourceRecord
*rr
) {
400 switch(rr
->key
->type
) {
420 dns_txt_item_free_all(rr
->txt
.items
);
429 free(rr
->mx
.exchange
);
437 free(rr
->sshfp
.fingerprint
);
440 case DNS_TYPE_DNSKEY
:
441 free(rr
->dnskey
.key
);
445 free(rr
->rrsig
.signer
);
446 free(rr
->rrsig
.signature
);
450 free(rr
->nsec
.next_domain_name
);
451 bitmap_free(rr
->nsec
.types
);
455 free(rr
->nsec3
.next_hashed_name
);
456 free(rr
->nsec3
.salt
);
457 bitmap_free(rr
->nsec3
.types
);
474 case DNS_TYPE_OPENPGPKEY
:
476 if (!rr
->unparseable
)
477 free(rr
->generic
.data
);
481 free(rr
->generic
.data
);
483 free(rr
->wire_format
);
484 dns_resource_key_unref(rr
->key
);
491 DEFINE_TRIVIAL_REF_UNREF_FUNC(DnsResourceRecord
, dns_resource_record
, dns_resource_record_free
);
493 int dns_resource_record_new_reverse(DnsResourceRecord
**ret
, int family
, const union in_addr_union
*address
, const char *hostname
) {
494 _cleanup_(dns_resource_key_unrefp
) DnsResourceKey
*key
= NULL
;
495 _cleanup_(dns_resource_record_unrefp
) DnsResourceRecord
*rr
= NULL
;
496 _cleanup_free_
char *ptr
= NULL
;
503 r
= dns_name_reverse(family
, address
, &ptr
);
507 key
= dns_resource_key_new_consume(DNS_CLASS_IN
, DNS_TYPE_PTR
, ptr
);
513 rr
= dns_resource_record_new(key
);
517 rr
->ptr
.name
= strdup(hostname
);
526 int dns_resource_record_new_address(DnsResourceRecord
**ret
, int family
, const union in_addr_union
*address
, const char *name
) {
527 DnsResourceRecord
*rr
;
533 if (family
== AF_INET
) {
535 rr
= dns_resource_record_new_full(DNS_CLASS_IN
, DNS_TYPE_A
, name
);
539 rr
->a
.in_addr
= address
->in
;
541 } else if (family
== AF_INET6
) {
543 rr
= dns_resource_record_new_full(DNS_CLASS_IN
, DNS_TYPE_AAAA
, name
);
547 rr
->aaaa
.in6_addr
= address
->in6
;
549 return -EAFNOSUPPORT
;
556 #define FIELD_EQUAL(a, b, field) \
557 ((a).field ## _size == (b).field ## _size && \
558 memcmp((a).field, (b).field, (a).field ## _size) == 0)
560 int dns_resource_record_equal(const DnsResourceRecord
*a
, const DnsResourceRecord
*b
) {
569 r
= dns_resource_key_equal(a
->key
, b
->key
);
573 if (a
->unparseable
!= b
->unparseable
)
576 switch (a
->unparseable
? _DNS_TYPE_INVALID
: a
->key
->type
) {
579 r
= dns_name_equal(a
->srv
.name
, b
->srv
.name
);
583 return a
->srv
.priority
== b
->srv
.priority
&&
584 a
->srv
.weight
== b
->srv
.weight
&&
585 a
->srv
.port
== b
->srv
.port
;
591 return dns_name_equal(a
->ptr
.name
, b
->ptr
.name
);
594 return strcaseeq(a
->hinfo
.cpu
, b
->hinfo
.cpu
) &&
595 strcaseeq(a
->hinfo
.os
, b
->hinfo
.os
);
597 case DNS_TYPE_SPF
: /* exactly the same as TXT */
599 return dns_txt_item_equal(a
->txt
.items
, b
->txt
.items
);
602 return memcmp(&a
->a
.in_addr
, &b
->a
.in_addr
, sizeof(struct in_addr
)) == 0;
605 return memcmp(&a
->aaaa
.in6_addr
, &b
->aaaa
.in6_addr
, sizeof(struct in6_addr
)) == 0;
608 r
= dns_name_equal(a
->soa
.mname
, b
->soa
.mname
);
611 r
= dns_name_equal(a
->soa
.rname
, b
->soa
.rname
);
615 return a
->soa
.serial
== b
->soa
.serial
&&
616 a
->soa
.refresh
== b
->soa
.refresh
&&
617 a
->soa
.retry
== b
->soa
.retry
&&
618 a
->soa
.expire
== b
->soa
.expire
&&
619 a
->soa
.minimum
== b
->soa
.minimum
;
622 if (a
->mx
.priority
!= b
->mx
.priority
)
625 return dns_name_equal(a
->mx
.exchange
, b
->mx
.exchange
);
628 assert(a
->loc
.version
== b
->loc
.version
);
630 return a
->loc
.size
== b
->loc
.size
&&
631 a
->loc
.horiz_pre
== b
->loc
.horiz_pre
&&
632 a
->loc
.vert_pre
== b
->loc
.vert_pre
&&
633 a
->loc
.latitude
== b
->loc
.latitude
&&
634 a
->loc
.longitude
== b
->loc
.longitude
&&
635 a
->loc
.altitude
== b
->loc
.altitude
;
638 return a
->ds
.key_tag
== b
->ds
.key_tag
&&
639 a
->ds
.algorithm
== b
->ds
.algorithm
&&
640 a
->ds
.digest_type
== b
->ds
.digest_type
&&
641 FIELD_EQUAL(a
->ds
, b
->ds
, digest
);
644 return a
->sshfp
.algorithm
== b
->sshfp
.algorithm
&&
645 a
->sshfp
.fptype
== b
->sshfp
.fptype
&&
646 FIELD_EQUAL(a
->sshfp
, b
->sshfp
, fingerprint
);
648 case DNS_TYPE_DNSKEY
:
649 return a
->dnskey
.flags
== b
->dnskey
.flags
&&
650 a
->dnskey
.protocol
== b
->dnskey
.protocol
&&
651 a
->dnskey
.algorithm
== b
->dnskey
.algorithm
&&
652 FIELD_EQUAL(a
->dnskey
, b
->dnskey
, key
);
655 /* do the fast comparisons first */
656 return a
->rrsig
.type_covered
== b
->rrsig
.type_covered
&&
657 a
->rrsig
.algorithm
== b
->rrsig
.algorithm
&&
658 a
->rrsig
.labels
== b
->rrsig
.labels
&&
659 a
->rrsig
.original_ttl
== b
->rrsig
.original_ttl
&&
660 a
->rrsig
.expiration
== b
->rrsig
.expiration
&&
661 a
->rrsig
.inception
== b
->rrsig
.inception
&&
662 a
->rrsig
.key_tag
== b
->rrsig
.key_tag
&&
663 FIELD_EQUAL(a
->rrsig
, b
->rrsig
, signature
) &&
664 dns_name_equal(a
->rrsig
.signer
, b
->rrsig
.signer
);
667 return dns_name_equal(a
->nsec
.next_domain_name
, b
->nsec
.next_domain_name
) &&
668 bitmap_equal(a
->nsec
.types
, b
->nsec
.types
);
671 return a
->nsec3
.algorithm
== b
->nsec3
.algorithm
&&
672 a
->nsec3
.flags
== b
->nsec3
.flags
&&
673 a
->nsec3
.iterations
== b
->nsec3
.iterations
&&
674 FIELD_EQUAL(a
->nsec3
, b
->nsec3
, salt
) &&
675 FIELD_EQUAL(a
->nsec3
, b
->nsec3
, next_hashed_name
) &&
676 bitmap_equal(a
->nsec3
.types
, b
->nsec3
.types
);
679 return a
->tlsa
.cert_usage
== b
->tlsa
.cert_usage
&&
680 a
->tlsa
.selector
== b
->tlsa
.selector
&&
681 a
->tlsa
.matching_type
== b
->tlsa
.matching_type
&&
682 FIELD_EQUAL(a
->tlsa
, b
->tlsa
, data
);
685 return a
->caa
.flags
== b
->caa
.flags
&&
686 streq(a
->caa
.tag
, b
->caa
.tag
) &&
687 FIELD_EQUAL(a
->caa
, b
->caa
, value
);
689 case DNS_TYPE_OPENPGPKEY
:
691 return FIELD_EQUAL(a
->generic
, b
->generic
, data
);
695 static char* format_location(uint32_t latitude
, uint32_t longitude
, uint32_t altitude
,
696 uint8_t size
, uint8_t horiz_pre
, uint8_t vert_pre
) {
698 char NS
= latitude
>= 1U<<31 ? 'N' : 'S';
699 char EW
= longitude
>= 1U<<31 ? 'E' : 'W';
701 int lat
= latitude
>= 1U<<31 ? (int) (latitude
- (1U<<31)) : (int) ((1U<<31) - latitude
);
702 int lon
= longitude
>= 1U<<31 ? (int) (longitude
- (1U<<31)) : (int) ((1U<<31) - longitude
);
703 double alt
= altitude
>= 10000000u ? altitude
- 10000000u : -(double)(10000000u - altitude
);
704 double siz
= (size
>> 4) * exp10((double) (size
& 0xF));
705 double hor
= (horiz_pre
>> 4) * exp10((double) (horiz_pre
& 0xF));
706 double ver
= (vert_pre
>> 4) * exp10((double) (vert_pre
& 0xF));
708 if (asprintf(&s
, "%d %d %.3f %c %d %d %.3f %c %.2fm %.2fm %.2fm %.2fm",
711 (lat
% 60000) / 1000.,
715 (lon
% 60000) / 1000.,
726 static int format_timestamp_dns(char *buf
, size_t l
, time_t sec
) {
730 assert(l
> STRLEN("YYYYMMDDHHmmSS"));
732 if (!gmtime_r(&sec
, &tm
))
735 if (strftime(buf
, l
, "%Y%m%d%H%M%S", &tm
) <= 0)
741 static char *format_types(Bitmap
*types
) {
742 _cleanup_strv_free_
char **strv
= NULL
;
743 _cleanup_free_
char *str
= NULL
;
748 BITMAP_FOREACH(type
, types
, i
) {
749 if (dns_type_to_string(type
)) {
750 r
= strv_extend(&strv
, dns_type_to_string(type
));
756 r
= asprintf(&t
, "TYPE%u", type
);
760 r
= strv_consume(&strv
, t
);
766 str
= strv_join(strv
, " ");
770 return strjoin("( ", str
, " )");
773 static char *format_txt(DnsTxtItem
*first
) {
778 LIST_FOREACH(items
, i
, first
)
779 c
+= i
->length
* 4 + 3;
781 p
= s
= new(char, c
);
785 LIST_FOREACH(items
, i
, first
) {
793 for (j
= 0; j
< i
->length
; j
++) {
794 if (i
->data
[j
] < ' ' || i
->data
[j
] == '"' || i
->data
[j
] >= 127) {
796 *(p
++) = '0' + (i
->data
[j
] / 100);
797 *(p
++) = '0' + ((i
->data
[j
] / 10) % 10);
798 *(p
++) = '0' + (i
->data
[j
] % 10);
810 const char *dns_resource_record_to_string(DnsResourceRecord
*rr
) {
811 _cleanup_free_
char *t
= NULL
;
812 char *s
, k
[DNS_RESOURCE_KEY_STRING_MAX
];
818 return rr
->to_string
;
820 dns_resource_key_to_string(rr
->key
, k
, sizeof(k
));
822 switch (rr
->unparseable
? _DNS_TYPE_INVALID
: rr
->key
->type
) {
825 r
= asprintf(&s
, "%s %u %u %u %s",
830 strna(rr
->srv
.name
));
839 s
= strjoin(k
, " ", rr
->ptr
.name
);
846 s
= strjoin(k
, " ", rr
->hinfo
.cpu
, " ", rr
->hinfo
.os
);
851 case DNS_TYPE_SPF
: /* exactly the same as TXT */
853 t
= format_txt(rr
->txt
.items
);
857 s
= strjoin(k
, " ", t
);
863 _cleanup_free_
char *x
= NULL
;
865 r
= in_addr_to_string(AF_INET
, (const union in_addr_union
*) &rr
->a
.in_addr
, &x
);
869 s
= strjoin(k
, " ", x
);
876 r
= in_addr_to_string(AF_INET6
, (const union in_addr_union
*) &rr
->aaaa
.in6_addr
, &t
);
880 s
= strjoin(k
, " ", t
);
886 r
= asprintf(&s
, "%s %s %s %u %u %u %u %u",
888 strna(rr
->soa
.mname
),
889 strna(rr
->soa
.rname
),
900 r
= asprintf(&s
, "%s %u %s",
909 assert(rr
->loc
.version
== 0);
911 t
= format_location(rr
->loc
.latitude
,
920 s
= strjoin(k
, " ", t
);
926 t
= hexmem(rr
->ds
.digest
, rr
->ds
.digest_size
);
930 r
= asprintf(&s
, "%s %u %u %u %s",
941 t
= hexmem(rr
->sshfp
.fingerprint
, rr
->sshfp
.fingerprint_size
);
945 r
= asprintf(&s
, "%s %u %u %s",
954 case DNS_TYPE_DNSKEY
: {
955 _cleanup_free_
char *alg
= NULL
;
960 key_tag
= dnssec_keytag(rr
, true);
962 r
= dnssec_algorithm_to_string_alloc(rr
->dnskey
.algorithm
, &alg
);
966 r
= asprintf(&s
, "%s %u %u %s %n",
975 r
= base64_append(&s
, n
,
976 rr
->dnskey
.key
, rr
->dnskey
.key_size
,
981 r
= asprintf(&ss
, "%s\n"
985 rr
->dnskey
.flags
& DNSKEY_FLAG_SEP
? " SEP" : "",
986 rr
->dnskey
.flags
& DNSKEY_FLAG_REVOKE
? " REVOKE" : "",
987 rr
->dnskey
.flags
& DNSKEY_FLAG_ZONE_KEY
? " ZONE_KEY" : "",
997 case DNS_TYPE_RRSIG
: {
998 _cleanup_free_
char *alg
= NULL
;
999 char expiration
[STRLEN("YYYYMMDDHHmmSS") + 1], inception
[STRLEN("YYYYMMDDHHmmSS") + 1];
1003 type
= dns_type_to_string(rr
->rrsig
.type_covered
);
1005 r
= dnssec_algorithm_to_string_alloc(rr
->rrsig
.algorithm
, &alg
);
1009 r
= format_timestamp_dns(expiration
, sizeof(expiration
), rr
->rrsig
.expiration
);
1013 r
= format_timestamp_dns(inception
, sizeof(inception
), rr
->rrsig
.inception
);
1018 * http://tools.ietf.org/html/rfc3597#section-5 */
1020 r
= asprintf(&s
, "%s %s%.*u %s %u %u %s %s %u %s %n",
1023 type
? 0 : 1, type
? 0u : (unsigned) rr
->rrsig
.type_covered
,
1026 rr
->rrsig
.original_ttl
,
1035 r
= base64_append(&s
, n
,
1036 rr
->rrsig
.signature
, rr
->rrsig
.signature_size
,
1045 t
= format_types(rr
->nsec
.types
);
1049 r
= asprintf(&s
, "%s %s %s",
1051 rr
->nsec
.next_domain_name
,
1057 case DNS_TYPE_NSEC3
: {
1058 _cleanup_free_
char *salt
= NULL
, *hash
= NULL
;
1060 if (rr
->nsec3
.salt_size
> 0) {
1061 salt
= hexmem(rr
->nsec3
.salt
, rr
->nsec3
.salt_size
);
1066 hash
= base32hexmem(rr
->nsec3
.next_hashed_name
, rr
->nsec3
.next_hashed_name_size
, false);
1070 t
= format_types(rr
->nsec3
.types
);
1074 r
= asprintf(&s
, "%s %"PRIu8
" %"PRIu8
" %"PRIu16
" %s %s %s",
1076 rr
->nsec3
.algorithm
,
1078 rr
->nsec3
.iterations
,
1079 rr
->nsec3
.salt_size
> 0 ? salt
: "-",
1088 case DNS_TYPE_TLSA
: {
1089 const char *cert_usage
, *selector
, *matching_type
;
1091 cert_usage
= tlsa_cert_usage_to_string(rr
->tlsa
.cert_usage
);
1092 selector
= tlsa_selector_to_string(rr
->tlsa
.selector
);
1093 matching_type
= tlsa_matching_type_to_string(rr
->tlsa
.matching_type
);
1095 t
= hexmem(rr
->sshfp
.fingerprint
, rr
->sshfp
.fingerprint_size
);
1101 " -- Cert. usage: %s\n"
1102 " -- Selector: %s\n"
1103 " -- Matching type: %s",
1105 rr
->tlsa
.cert_usage
,
1107 rr
->tlsa
.matching_type
,
1118 case DNS_TYPE_CAA
: {
1119 _cleanup_free_
char *value
;
1121 value
= octescape(rr
->caa
.value
, rr
->caa
.value_size
);
1125 r
= asprintf(&s
, "%s %u %s \"%s\"%s%s%s%.0u",
1130 rr
->caa
.flags
? "\n -- Flags:" : "",
1131 rr
->caa
.flags
& CAA_FLAG_CRITICAL
? " critical" : "",
1132 rr
->caa
.flags
& ~CAA_FLAG_CRITICAL
? " " : "",
1133 rr
->caa
.flags
& ~CAA_FLAG_CRITICAL
);
1140 case DNS_TYPE_OPENPGPKEY
: {
1143 r
= asprintf(&s
, "%s %n",
1149 r
= base64_append(&s
, n
,
1150 rr
->generic
.data
, rr
->generic
.data_size
,
1158 t
= hexmem(rr
->generic
.data
, rr
->generic
.data_size
);
1162 /* Format as documented in RFC 3597, Section 5 */
1163 r
= asprintf(&s
, "%s \\# %zu %s", k
, rr
->generic
.data_size
, t
);
1173 ssize_t
dns_resource_record_payload(DnsResourceRecord
*rr
, void **out
) {
1177 switch(rr
->unparseable
? _DNS_TYPE_INVALID
: rr
->key
->type
) {
1181 case DNS_TYPE_CNAME
:
1182 case DNS_TYPE_DNAME
:
1183 case DNS_TYPE_HINFO
:
1192 case DNS_TYPE_DNSKEY
:
1193 case DNS_TYPE_RRSIG
:
1195 case DNS_TYPE_NSEC3
:
1198 case DNS_TYPE_SSHFP
:
1199 *out
= rr
->sshfp
.fingerprint
;
1200 return rr
->sshfp
.fingerprint_size
;
1203 *out
= rr
->tlsa
.data
;
1204 return rr
->tlsa
.data_size
;
1206 case DNS_TYPE_OPENPGPKEY
:
1208 *out
= rr
->generic
.data
;
1209 return rr
->generic
.data_size
;
1213 int dns_resource_record_to_wire_format(DnsResourceRecord
*rr
, bool canonical
) {
1215 DnsPacket packet
= {
1217 .protocol
= DNS_PROTOCOL_DNS
,
1219 .refuse_compression
= true,
1220 .canonical_form
= canonical
,
1228 /* Generates the RR in wire-format, optionally in the
1229 * canonical form as discussed in the DNSSEC RFC 4034, Section
1230 * 6.2. We allocate a throw-away DnsPacket object on the stack
1231 * here, because we need some book-keeping for memory
1232 * management, and can reuse the DnsPacket serializer, that
1233 * can generate the canonical form, too, but also knows label
1234 * compression and suchlike. */
1236 if (rr
->wire_format
&& rr
->wire_format_canonical
== canonical
)
1239 r
= dns_packet_append_rr(&packet
, rr
, 0, &start
, &rds
);
1244 assert(packet
._data
);
1246 free(rr
->wire_format
);
1247 rr
->wire_format
= packet
._data
;
1248 rr
->wire_format_size
= packet
.size
;
1249 rr
->wire_format_rdata_offset
= rds
;
1250 rr
->wire_format_canonical
= canonical
;
1252 packet
._data
= NULL
;
1253 dns_packet_unref(&packet
);
1258 int dns_resource_record_signer(DnsResourceRecord
*rr
, const char **ret
) {
1265 /* Returns the RRset's signer, if it is known. */
1267 if (rr
->n_skip_labels_signer
== (unsigned) -1)
1270 n
= dns_resource_key_name(rr
->key
);
1271 r
= dns_name_skip(n
, rr
->n_skip_labels_signer
, &n
);
1281 int dns_resource_record_source(DnsResourceRecord
*rr
, const char **ret
) {
1288 /* Returns the RRset's synthesizing source, if it is known. */
1290 if (rr
->n_skip_labels_source
== (unsigned) -1)
1293 n
= dns_resource_key_name(rr
->key
);
1294 r
= dns_name_skip(n
, rr
->n_skip_labels_source
, &n
);
1304 int dns_resource_record_is_signer(DnsResourceRecord
*rr
, const char *zone
) {
1310 r
= dns_resource_record_signer(rr
, &signer
);
1314 return dns_name_equal(zone
, signer
);
1317 int dns_resource_record_is_synthetic(DnsResourceRecord
*rr
) {
1322 /* Returns > 0 if the RR is generated from a wildcard, and is not the asterisk name itself */
1324 if (rr
->n_skip_labels_source
== (unsigned) -1)
1327 if (rr
->n_skip_labels_source
== 0)
1330 if (rr
->n_skip_labels_source
> 1)
1333 r
= dns_name_startswith(dns_resource_key_name(rr
->key
), "*");
1340 void dns_resource_record_hash_func(const DnsResourceRecord
*rr
, struct siphash
*state
) {
1343 dns_resource_key_hash_func(rr
->key
, state
);
1345 switch (rr
->unparseable
? _DNS_TYPE_INVALID
: rr
->key
->type
) {
1348 siphash24_compress(&rr
->srv
.priority
, sizeof(rr
->srv
.priority
), state
);
1349 siphash24_compress(&rr
->srv
.weight
, sizeof(rr
->srv
.weight
), state
);
1350 siphash24_compress(&rr
->srv
.port
, sizeof(rr
->srv
.port
), state
);
1351 dns_name_hash_func(rr
->srv
.name
, state
);
1356 case DNS_TYPE_CNAME
:
1357 case DNS_TYPE_DNAME
:
1358 dns_name_hash_func(rr
->ptr
.name
, state
);
1361 case DNS_TYPE_HINFO
:
1362 string_hash_func(rr
->hinfo
.cpu
, state
);
1363 string_hash_func(rr
->hinfo
.os
, state
);
1367 case DNS_TYPE_SPF
: {
1370 LIST_FOREACH(items
, j
, rr
->txt
.items
) {
1371 siphash24_compress(j
->data
, j
->length
, state
);
1373 /* Add an extra NUL byte, so that "a" followed by "b" doesn't result in the same hash as "ab"
1374 * followed by "". */
1375 siphash24_compress_byte(0, state
);
1381 siphash24_compress(&rr
->a
.in_addr
, sizeof(rr
->a
.in_addr
), state
);
1385 siphash24_compress(&rr
->aaaa
.in6_addr
, sizeof(rr
->aaaa
.in6_addr
), state
);
1389 dns_name_hash_func(rr
->soa
.mname
, state
);
1390 dns_name_hash_func(rr
->soa
.rname
, state
);
1391 siphash24_compress(&rr
->soa
.serial
, sizeof(rr
->soa
.serial
), state
);
1392 siphash24_compress(&rr
->soa
.refresh
, sizeof(rr
->soa
.refresh
), state
);
1393 siphash24_compress(&rr
->soa
.retry
, sizeof(rr
->soa
.retry
), state
);
1394 siphash24_compress(&rr
->soa
.expire
, sizeof(rr
->soa
.expire
), state
);
1395 siphash24_compress(&rr
->soa
.minimum
, sizeof(rr
->soa
.minimum
), state
);
1399 siphash24_compress(&rr
->mx
.priority
, sizeof(rr
->mx
.priority
), state
);
1400 dns_name_hash_func(rr
->mx
.exchange
, state
);
1404 siphash24_compress(&rr
->loc
.version
, sizeof(rr
->loc
.version
), state
);
1405 siphash24_compress(&rr
->loc
.size
, sizeof(rr
->loc
.size
), state
);
1406 siphash24_compress(&rr
->loc
.horiz_pre
, sizeof(rr
->loc
.horiz_pre
), state
);
1407 siphash24_compress(&rr
->loc
.vert_pre
, sizeof(rr
->loc
.vert_pre
), state
);
1408 siphash24_compress(&rr
->loc
.latitude
, sizeof(rr
->loc
.latitude
), state
);
1409 siphash24_compress(&rr
->loc
.longitude
, sizeof(rr
->loc
.longitude
), state
);
1410 siphash24_compress(&rr
->loc
.altitude
, sizeof(rr
->loc
.altitude
), state
);
1413 case DNS_TYPE_SSHFP
:
1414 siphash24_compress(&rr
->sshfp
.algorithm
, sizeof(rr
->sshfp
.algorithm
), state
);
1415 siphash24_compress(&rr
->sshfp
.fptype
, sizeof(rr
->sshfp
.fptype
), state
);
1416 siphash24_compress(rr
->sshfp
.fingerprint
, rr
->sshfp
.fingerprint_size
, state
);
1419 case DNS_TYPE_DNSKEY
:
1420 siphash24_compress(&rr
->dnskey
.flags
, sizeof(rr
->dnskey
.flags
), state
);
1421 siphash24_compress(&rr
->dnskey
.protocol
, sizeof(rr
->dnskey
.protocol
), state
);
1422 siphash24_compress(&rr
->dnskey
.algorithm
, sizeof(rr
->dnskey
.algorithm
), state
);
1423 siphash24_compress(rr
->dnskey
.key
, rr
->dnskey
.key_size
, state
);
1426 case DNS_TYPE_RRSIG
:
1427 siphash24_compress(&rr
->rrsig
.type_covered
, sizeof(rr
->rrsig
.type_covered
), state
);
1428 siphash24_compress(&rr
->rrsig
.algorithm
, sizeof(rr
->rrsig
.algorithm
), state
);
1429 siphash24_compress(&rr
->rrsig
.labels
, sizeof(rr
->rrsig
.labels
), state
);
1430 siphash24_compress(&rr
->rrsig
.original_ttl
, sizeof(rr
->rrsig
.original_ttl
), state
);
1431 siphash24_compress(&rr
->rrsig
.expiration
, sizeof(rr
->rrsig
.expiration
), state
);
1432 siphash24_compress(&rr
->rrsig
.inception
, sizeof(rr
->rrsig
.inception
), state
);
1433 siphash24_compress(&rr
->rrsig
.key_tag
, sizeof(rr
->rrsig
.key_tag
), state
);
1434 dns_name_hash_func(rr
->rrsig
.signer
, state
);
1435 siphash24_compress(rr
->rrsig
.signature
, rr
->rrsig
.signature_size
, state
);
1439 dns_name_hash_func(rr
->nsec
.next_domain_name
, state
);
1440 /* FIXME: we leave out the type bitmap here. Hash
1441 * would be better if we'd take it into account
1446 siphash24_compress(&rr
->ds
.key_tag
, sizeof(rr
->ds
.key_tag
), state
);
1447 siphash24_compress(&rr
->ds
.algorithm
, sizeof(rr
->ds
.algorithm
), state
);
1448 siphash24_compress(&rr
->ds
.digest_type
, sizeof(rr
->ds
.digest_type
), state
);
1449 siphash24_compress(rr
->ds
.digest
, rr
->ds
.digest_size
, state
);
1452 case DNS_TYPE_NSEC3
:
1453 siphash24_compress(&rr
->nsec3
.algorithm
, sizeof(rr
->nsec3
.algorithm
), state
);
1454 siphash24_compress(&rr
->nsec3
.flags
, sizeof(rr
->nsec3
.flags
), state
);
1455 siphash24_compress(&rr
->nsec3
.iterations
, sizeof(rr
->nsec3
.iterations
), state
);
1456 siphash24_compress(rr
->nsec3
.salt
, rr
->nsec3
.salt_size
, state
);
1457 siphash24_compress(rr
->nsec3
.next_hashed_name
, rr
->nsec3
.next_hashed_name_size
, state
);
1458 /* FIXME: We leave the bitmaps out */
1462 siphash24_compress(&rr
->tlsa
.cert_usage
, sizeof(rr
->tlsa
.cert_usage
), state
);
1463 siphash24_compress(&rr
->tlsa
.selector
, sizeof(rr
->tlsa
.selector
), state
);
1464 siphash24_compress(&rr
->tlsa
.matching_type
, sizeof(rr
->tlsa
.matching_type
), state
);
1465 siphash24_compress(rr
->tlsa
.data
, rr
->tlsa
.data_size
, state
);
1469 siphash24_compress(&rr
->caa
.flags
, sizeof(rr
->caa
.flags
), state
);
1470 string_hash_func(rr
->caa
.tag
, state
);
1471 siphash24_compress(rr
->caa
.value
, rr
->caa
.value_size
, state
);
1474 case DNS_TYPE_OPENPGPKEY
:
1476 siphash24_compress(rr
->generic
.data
, rr
->generic
.data_size
, state
);
1481 static int dns_resource_record_compare_func(const DnsResourceRecord
*x
, const DnsResourceRecord
*y
) {
1484 r
= dns_resource_key_compare_func(x
->key
, y
->key
);
1488 if (dns_resource_record_equal(x
, y
))
1491 /* We still use CMP() here, even though don't implement proper
1492 * ordering, since the hashtable doesn't need ordering anyway. */
1496 DEFINE_HASH_OPS(dns_resource_record_hash_ops
, DnsResourceRecord
, dns_resource_record_hash_func
, dns_resource_record_compare_func
);
1498 DnsResourceRecord
*dns_resource_record_copy(DnsResourceRecord
*rr
) {
1499 _cleanup_(dns_resource_record_unrefp
) DnsResourceRecord
*copy
= NULL
;
1500 DnsResourceRecord
*t
;
1504 copy
= dns_resource_record_new(rr
->key
);
1508 copy
->ttl
= rr
->ttl
;
1509 copy
->expiry
= rr
->expiry
;
1510 copy
->n_skip_labels_signer
= rr
->n_skip_labels_signer
;
1511 copy
->n_skip_labels_source
= rr
->n_skip_labels_source
;
1512 copy
->unparseable
= rr
->unparseable
;
1514 switch (rr
->unparseable
? _DNS_TYPE_INVALID
: rr
->key
->type
) {
1517 copy
->srv
.priority
= rr
->srv
.priority
;
1518 copy
->srv
.weight
= rr
->srv
.weight
;
1519 copy
->srv
.port
= rr
->srv
.port
;
1520 copy
->srv
.name
= strdup(rr
->srv
.name
);
1521 if (!copy
->srv
.name
)
1527 case DNS_TYPE_CNAME
:
1528 case DNS_TYPE_DNAME
:
1529 copy
->ptr
.name
= strdup(rr
->ptr
.name
);
1530 if (!copy
->ptr
.name
)
1534 case DNS_TYPE_HINFO
:
1535 copy
->hinfo
.cpu
= strdup(rr
->hinfo
.cpu
);
1536 if (!copy
->hinfo
.cpu
)
1539 copy
->hinfo
.os
= strdup(rr
->hinfo
.os
);
1540 if (!copy
->hinfo
.os
)
1546 copy
->txt
.items
= dns_txt_item_copy(rr
->txt
.items
);
1547 if (!copy
->txt
.items
)
1556 copy
->aaaa
= rr
->aaaa
;
1560 copy
->soa
.mname
= strdup(rr
->soa
.mname
);
1561 if (!copy
->soa
.mname
)
1563 copy
->soa
.rname
= strdup(rr
->soa
.rname
);
1564 if (!copy
->soa
.rname
)
1566 copy
->soa
.serial
= rr
->soa
.serial
;
1567 copy
->soa
.refresh
= rr
->soa
.refresh
;
1568 copy
->soa
.retry
= rr
->soa
.retry
;
1569 copy
->soa
.expire
= rr
->soa
.expire
;
1570 copy
->soa
.minimum
= rr
->soa
.minimum
;
1574 copy
->mx
.priority
= rr
->mx
.priority
;
1575 copy
->mx
.exchange
= strdup(rr
->mx
.exchange
);
1576 if (!copy
->mx
.exchange
)
1581 copy
->loc
= rr
->loc
;
1584 case DNS_TYPE_SSHFP
:
1585 copy
->sshfp
.algorithm
= rr
->sshfp
.algorithm
;
1586 copy
->sshfp
.fptype
= rr
->sshfp
.fptype
;
1587 copy
->sshfp
.fingerprint
= memdup(rr
->sshfp
.fingerprint
, rr
->sshfp
.fingerprint_size
);
1588 if (!copy
->sshfp
.fingerprint
)
1590 copy
->sshfp
.fingerprint_size
= rr
->sshfp
.fingerprint_size
;
1593 case DNS_TYPE_DNSKEY
:
1594 copy
->dnskey
.flags
= rr
->dnskey
.flags
;
1595 copy
->dnskey
.protocol
= rr
->dnskey
.protocol
;
1596 copy
->dnskey
.algorithm
= rr
->dnskey
.algorithm
;
1597 copy
->dnskey
.key
= memdup(rr
->dnskey
.key
, rr
->dnskey
.key_size
);
1598 if (!copy
->dnskey
.key
)
1600 copy
->dnskey
.key_size
= rr
->dnskey
.key_size
;
1603 case DNS_TYPE_RRSIG
:
1604 copy
->rrsig
.type_covered
= rr
->rrsig
.type_covered
;
1605 copy
->rrsig
.algorithm
= rr
->rrsig
.algorithm
;
1606 copy
->rrsig
.labels
= rr
->rrsig
.labels
;
1607 copy
->rrsig
.original_ttl
= rr
->rrsig
.original_ttl
;
1608 copy
->rrsig
.expiration
= rr
->rrsig
.expiration
;
1609 copy
->rrsig
.inception
= rr
->rrsig
.inception
;
1610 copy
->rrsig
.key_tag
= rr
->rrsig
.key_tag
;
1611 copy
->rrsig
.signer
= strdup(rr
->rrsig
.signer
);
1612 if (!copy
->rrsig
.signer
)
1614 copy
->rrsig
.signature
= memdup(rr
->rrsig
.signature
, rr
->rrsig
.signature_size
);
1615 if (!copy
->rrsig
.signature
)
1617 copy
->rrsig
.signature_size
= rr
->rrsig
.signature_size
;
1621 copy
->nsec
.next_domain_name
= strdup(rr
->nsec
.next_domain_name
);
1622 if (!copy
->nsec
.next_domain_name
)
1624 copy
->nsec
.types
= bitmap_copy(rr
->nsec
.types
);
1625 if (!copy
->nsec
.types
)
1630 copy
->ds
.key_tag
= rr
->ds
.key_tag
;
1631 copy
->ds
.algorithm
= rr
->ds
.algorithm
;
1632 copy
->ds
.digest_type
= rr
->ds
.digest_type
;
1633 copy
->ds
.digest
= memdup(rr
->ds
.digest
, rr
->ds
.digest_size
);
1634 if (!copy
->ds
.digest
)
1636 copy
->ds
.digest_size
= rr
->ds
.digest_size
;
1639 case DNS_TYPE_NSEC3
:
1640 copy
->nsec3
.algorithm
= rr
->nsec3
.algorithm
;
1641 copy
->nsec3
.flags
= rr
->nsec3
.flags
;
1642 copy
->nsec3
.iterations
= rr
->nsec3
.iterations
;
1643 copy
->nsec3
.salt
= memdup(rr
->nsec3
.salt
, rr
->nsec3
.salt_size
);
1644 if (!copy
->nsec3
.salt
)
1646 copy
->nsec3
.salt_size
= rr
->nsec3
.salt_size
;
1647 copy
->nsec3
.next_hashed_name
= memdup(rr
->nsec3
.next_hashed_name
, rr
->nsec3
.next_hashed_name_size
);
1648 if (!copy
->nsec3
.next_hashed_name_size
)
1650 copy
->nsec3
.next_hashed_name_size
= rr
->nsec3
.next_hashed_name_size
;
1651 copy
->nsec3
.types
= bitmap_copy(rr
->nsec3
.types
);
1652 if (!copy
->nsec3
.types
)
1657 copy
->tlsa
.cert_usage
= rr
->tlsa
.cert_usage
;
1658 copy
->tlsa
.selector
= rr
->tlsa
.selector
;
1659 copy
->tlsa
.matching_type
= rr
->tlsa
.matching_type
;
1660 copy
->tlsa
.data
= memdup(rr
->tlsa
.data
, rr
->tlsa
.data_size
);
1661 if (!copy
->tlsa
.data
)
1663 copy
->tlsa
.data_size
= rr
->tlsa
.data_size
;
1667 copy
->caa
.flags
= rr
->caa
.flags
;
1668 copy
->caa
.tag
= strdup(rr
->caa
.tag
);
1671 copy
->caa
.value
= memdup(rr
->caa
.value
, rr
->caa
.value_size
);
1672 if (!copy
->caa
.value
)
1674 copy
->caa
.value_size
= rr
->caa
.value_size
;
1679 copy
->generic
.data
= memdup(rr
->generic
.data
, rr
->generic
.data_size
);
1680 if (!copy
->generic
.data
)
1682 copy
->generic
.data_size
= rr
->generic
.data_size
;
1691 int dns_resource_record_clamp_ttl(DnsResourceRecord
**rr
, uint32_t max_ttl
) {
1692 DnsResourceRecord
*old_rr
, *new_rr
;
1698 if (old_rr
->key
->type
== DNS_TYPE_OPT
)
1701 new_ttl
= MIN(old_rr
->ttl
, max_ttl
);
1702 if (new_ttl
== old_rr
->ttl
)
1705 if (old_rr
->n_ref
== 1) {
1706 /* Patch in place */
1707 old_rr
->ttl
= new_ttl
;
1711 new_rr
= dns_resource_record_copy(old_rr
);
1715 new_rr
->ttl
= new_ttl
;
1717 dns_resource_record_unref(*rr
);
1723 DnsTxtItem
*dns_txt_item_free_all(DnsTxtItem
*i
) {
1732 return dns_txt_item_free_all(n
);
1735 bool dns_txt_item_equal(DnsTxtItem
*a
, DnsTxtItem
*b
) {
1746 if (a
->length
!= b
->length
)
1749 if (memcmp(a
->data
, b
->data
, a
->length
) != 0)
1752 return dns_txt_item_equal(a
->items_next
, b
->items_next
);
1755 DnsTxtItem
*dns_txt_item_copy(DnsTxtItem
*first
) {
1756 DnsTxtItem
*i
, *copy
= NULL
, *end
= NULL
;
1758 LIST_FOREACH(items
, i
, first
) {
1761 j
= memdup(i
, offsetof(DnsTxtItem
, data
) + i
->length
+ 1);
1763 dns_txt_item_free_all(copy
);
1767 LIST_INSERT_AFTER(items
, copy
, end
, j
);
1774 int dns_txt_item_new_empty(DnsTxtItem
**ret
) {
1777 /* RFC 6763, section 6.1 suggests to treat
1778 * empty TXT RRs as equivalent to a TXT record
1779 * with a single empty string. */
1781 i
= malloc0(offsetof(DnsTxtItem
, data
) + 1); /* for safety reasons we add an extra NUL byte */
1790 static const char* const dnssec_algorithm_table
[_DNSSEC_ALGORITHM_MAX_DEFINED
] = {
1791 /* Mnemonics as listed on https://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml */
1792 [DNSSEC_ALGORITHM_RSAMD5
] = "RSAMD5",
1793 [DNSSEC_ALGORITHM_DH
] = "DH",
1794 [DNSSEC_ALGORITHM_DSA
] = "DSA",
1795 [DNSSEC_ALGORITHM_ECC
] = "ECC",
1796 [DNSSEC_ALGORITHM_RSASHA1
] = "RSASHA1",
1797 [DNSSEC_ALGORITHM_DSA_NSEC3_SHA1
] = "DSA-NSEC3-SHA1",
1798 [DNSSEC_ALGORITHM_RSASHA1_NSEC3_SHA1
] = "RSASHA1-NSEC3-SHA1",
1799 [DNSSEC_ALGORITHM_RSASHA256
] = "RSASHA256",
1800 [DNSSEC_ALGORITHM_RSASHA512
] = "RSASHA512",
1801 [DNSSEC_ALGORITHM_ECC_GOST
] = "ECC-GOST",
1802 [DNSSEC_ALGORITHM_ECDSAP256SHA256
] = "ECDSAP256SHA256",
1803 [DNSSEC_ALGORITHM_ECDSAP384SHA384
] = "ECDSAP384SHA384",
1804 [DNSSEC_ALGORITHM_ED25519
] = "ED25519",
1805 [DNSSEC_ALGORITHM_ED448
] = "ED448",
1806 [DNSSEC_ALGORITHM_INDIRECT
] = "INDIRECT",
1807 [DNSSEC_ALGORITHM_PRIVATEDNS
] = "PRIVATEDNS",
1808 [DNSSEC_ALGORITHM_PRIVATEOID
] = "PRIVATEOID",
1810 DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(dnssec_algorithm
, int, 255);
1812 static const char* const dnssec_digest_table
[_DNSSEC_DIGEST_MAX_DEFINED
] = {
1813 /* Names as listed on https://www.iana.org/assignments/ds-rr-types/ds-rr-types.xhtml */
1814 [DNSSEC_DIGEST_SHA1
] = "SHA-1",
1815 [DNSSEC_DIGEST_SHA256
] = "SHA-256",
1816 [DNSSEC_DIGEST_GOST_R_34_11_94
] = "GOST_R_34.11-94",
1817 [DNSSEC_DIGEST_SHA384
] = "SHA-384",
1819 DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(dnssec_digest
, int, 255);