1 /* SPDX-License-Identifier: LGPL-2.1+ */
3 Copyright 2014 Lennart Poettering
6 #include "sd-messages.h"
9 #include "alloc-util.h"
10 #include "dns-domain.h"
11 #include "errno-list.h"
13 #include "random-util.h"
14 #include "resolved-dns-cache.h"
15 #include "resolved-dns-transaction.h"
16 #include "resolved-llmnr.h"
17 #include "string-table.h"
20 #include <gnutls/socket.h>
23 #define TRANSACTIONS_MAX 4096
24 #define TRANSACTION_TCP_TIMEOUT_USEC (10U*USEC_PER_SEC)
26 /* After how much time to repeat classic DNS requests */
27 #define DNS_TIMEOUT_USEC (SD_RESOLVED_QUERY_TIMEOUT_USEC / DNS_TRANSACTION_ATTEMPTS_MAX)
29 static void dns_transaction_reset_answer(DnsTransaction
*t
) {
32 t
->received
= dns_packet_unref(t
->received
);
33 t
->answer
= dns_answer_unref(t
->answer
);
35 t
->answer_dnssec_result
= _DNSSEC_RESULT_INVALID
;
36 t
->answer_source
= _DNS_TRANSACTION_SOURCE_INVALID
;
37 t
->answer_authenticated
= false;
38 t
->answer_nsec_ttl
= (uint32_t) -1;
42 static void dns_transaction_flush_dnssec_transactions(DnsTransaction
*t
) {
47 while ((z
= set_steal_first(t
->dnssec_transactions
))) {
48 set_remove(z
->notify_transactions
, t
);
49 set_remove(z
->notify_transactions_done
, t
);
50 dns_transaction_gc(z
);
54 static void dns_transaction_close_connection(DnsTransaction
*t
) {
58 /* Let's detach the stream from our transaction, in case something else keeps a reference to it. */
59 LIST_REMOVE(transactions_by_stream
, t
->stream
->transactions
, t
);
61 /* Remove packet in case it's still in the queue */
62 dns_packet_unref(ordered_set_remove(t
->stream
->write_queue
, t
->sent
));
64 t
->stream
= dns_stream_unref(t
->stream
);
67 t
->dns_udp_event_source
= sd_event_source_unref(t
->dns_udp_event_source
);
68 t
->dns_udp_fd
= safe_close(t
->dns_udp_fd
);
71 static void dns_transaction_stop_timeout(DnsTransaction
*t
) {
74 t
->timeout_event_source
= sd_event_source_unref(t
->timeout_event_source
);
77 DnsTransaction
* dns_transaction_free(DnsTransaction
*t
) {
85 log_debug("Freeing transaction %" PRIu16
".", t
->id
);
87 dns_transaction_close_connection(t
);
88 dns_transaction_stop_timeout(t
);
90 dns_packet_unref(t
->sent
);
91 dns_transaction_reset_answer(t
);
93 dns_server_unref(t
->server
);
96 hashmap_remove_value(t
->scope
->transactions_by_key
, t
->key
, t
);
97 LIST_REMOVE(transactions_by_scope
, t
->scope
->transactions
, t
);
100 hashmap_remove(t
->scope
->manager
->dns_transactions
, UINT_TO_PTR(t
->id
));
103 while ((c
= set_steal_first(t
->notify_query_candidates
)))
104 set_remove(c
->transactions
, t
);
105 set_free(t
->notify_query_candidates
);
107 while ((c
= set_steal_first(t
->notify_query_candidates_done
)))
108 set_remove(c
->transactions
, t
);
109 set_free(t
->notify_query_candidates_done
);
111 while ((i
= set_steal_first(t
->notify_zone_items
)))
112 i
->probe_transaction
= NULL
;
113 set_free(t
->notify_zone_items
);
115 while ((i
= set_steal_first(t
->notify_zone_items_done
)))
116 i
->probe_transaction
= NULL
;
117 set_free(t
->notify_zone_items_done
);
119 while ((z
= set_steal_first(t
->notify_transactions
)))
120 set_remove(z
->dnssec_transactions
, t
);
121 set_free(t
->notify_transactions
);
123 while ((z
= set_steal_first(t
->notify_transactions_done
)))
124 set_remove(z
->dnssec_transactions
, t
);
125 set_free(t
->notify_transactions_done
);
127 dns_transaction_flush_dnssec_transactions(t
);
128 set_free(t
->dnssec_transactions
);
130 dns_answer_unref(t
->validated_keys
);
131 dns_resource_key_unref(t
->key
);
136 DEFINE_TRIVIAL_CLEANUP_FUNC(DnsTransaction
*, dns_transaction_free
);
138 bool dns_transaction_gc(DnsTransaction
*t
) {
144 if (set_isempty(t
->notify_query_candidates
) &&
145 set_isempty(t
->notify_query_candidates_done
) &&
146 set_isempty(t
->notify_zone_items
) &&
147 set_isempty(t
->notify_zone_items_done
) &&
148 set_isempty(t
->notify_transactions
) &&
149 set_isempty(t
->notify_transactions_done
)) {
150 dns_transaction_free(t
);
157 static uint16_t pick_new_id(Manager
*m
) {
160 /* Find a fresh, unused transaction id. Note that this loop is bounded because there's a limit on the number of
161 * transactions, and it's much lower than the space of IDs. */
163 assert_cc(TRANSACTIONS_MAX
< 0xFFFF);
166 random_bytes(&new_id
, sizeof(new_id
));
167 while (new_id
== 0 ||
168 hashmap_get(m
->dns_transactions
, UINT_TO_PTR(new_id
)));
173 int dns_transaction_new(DnsTransaction
**ret
, DnsScope
*s
, DnsResourceKey
*key
) {
174 _cleanup_(dns_transaction_freep
) DnsTransaction
*t
= NULL
;
181 /* Don't allow looking up invalid or pseudo RRs */
182 if (!dns_type_is_valid_query(key
->type
))
184 if (dns_type_is_obsolete(key
->type
))
187 /* We only support the IN class */
188 if (!IN_SET(key
->class, DNS_CLASS_IN
, DNS_CLASS_ANY
))
191 if (hashmap_size(s
->manager
->dns_transactions
) >= TRANSACTIONS_MAX
)
194 r
= hashmap_ensure_allocated(&s
->manager
->dns_transactions
, NULL
);
198 r
= hashmap_ensure_allocated(&s
->transactions_by_key
, &dns_resource_key_hash_ops
);
202 t
= new0(DnsTransaction
, 1);
207 t
->answer_source
= _DNS_TRANSACTION_SOURCE_INVALID
;
208 t
->answer_dnssec_result
= _DNSSEC_RESULT_INVALID
;
209 t
->answer_nsec_ttl
= (uint32_t) -1;
210 t
->key
= dns_resource_key_ref(key
);
211 t
->current_feature_level
= _DNS_SERVER_FEATURE_LEVEL_INVALID
;
212 t
->clamp_feature_level
= _DNS_SERVER_FEATURE_LEVEL_INVALID
;
214 t
->id
= pick_new_id(s
->manager
);
216 r
= hashmap_put(s
->manager
->dns_transactions
, UINT_TO_PTR(t
->id
), t
);
222 r
= hashmap_replace(s
->transactions_by_key
, t
->key
, t
);
224 hashmap_remove(s
->manager
->dns_transactions
, UINT_TO_PTR(t
->id
));
228 LIST_PREPEND(transactions_by_scope
, s
->transactions
, t
);
231 s
->manager
->n_transactions_total
++;
241 static void dns_transaction_shuffle_id(DnsTransaction
*t
) {
245 /* Pick a new ID for this transaction. */
247 new_id
= pick_new_id(t
->scope
->manager
);
248 assert_se(hashmap_remove_and_put(t
->scope
->manager
->dns_transactions
, UINT_TO_PTR(t
->id
), UINT_TO_PTR(new_id
), t
) >= 0);
250 log_debug("Transaction %" PRIu16
" is now %" PRIu16
".", t
->id
, new_id
);
253 /* Make sure we generate a new packet with the new ID */
254 t
->sent
= dns_packet_unref(t
->sent
);
257 static void dns_transaction_tentative(DnsTransaction
*t
, DnsPacket
*p
) {
258 _cleanup_free_
char *pretty
= NULL
;
259 char key_str
[DNS_RESOURCE_KEY_STRING_MAX
];
265 if (manager_our_packet(t
->scope
->manager
, p
) != 0)
268 (void) in_addr_to_string(p
->family
, &p
->sender
, &pretty
);
270 log_debug("Transaction %" PRIu16
" for <%s> on scope %s on %s/%s got tentative packet from %s.",
272 dns_resource_key_to_string(t
->key
, key_str
, sizeof key_str
),
273 dns_protocol_to_string(t
->scope
->protocol
),
274 t
->scope
->link
? t
->scope
->link
->name
: "*",
275 af_to_name_short(t
->scope
->family
),
278 /* RFC 4795, Section 4.1 says that the peer with the
279 * lexicographically smaller IP address loses */
280 if (memcmp(&p
->sender
, &p
->destination
, FAMILY_ADDRESS_SIZE(p
->family
)) >= 0) {
281 log_debug("Peer has lexicographically larger IP address and thus lost in the conflict.");
285 log_debug("We have the lexicographically larger IP address and thus lost in the conflict.");
289 while ((z
= set_first(t
->notify_zone_items
))) {
290 /* First, make sure the zone item drops the reference
292 dns_zone_item_probe_stop(z
);
294 /* Secondly, report this as conflict, so that we might
295 * look for a different hostname */
296 dns_zone_item_conflict(z
);
300 dns_transaction_gc(t
);
303 void dns_transaction_complete(DnsTransaction
*t
, DnsTransactionState state
) {
304 DnsQueryCandidate
*c
;
308 char key_str
[DNS_RESOURCE_KEY_STRING_MAX
];
311 assert(!DNS_TRANSACTION_IS_LIVE(state
));
313 if (state
== DNS_TRANSACTION_DNSSEC_FAILED
) {
314 dns_resource_key_to_string(t
->key
, key_str
, sizeof key_str
);
316 log_struct(LOG_NOTICE
,
317 "MESSAGE_ID=" SD_MESSAGE_DNSSEC_FAILURE_STR
,
318 LOG_MESSAGE("DNSSEC validation failed for question %s: %s", key_str
, dnssec_result_to_string(t
->answer_dnssec_result
)),
319 "DNS_TRANSACTION=%" PRIu16
, t
->id
,
320 "DNS_QUESTION=%s", key_str
,
321 "DNSSEC_RESULT=%s", dnssec_result_to_string(t
->answer_dnssec_result
),
322 "DNS_SERVER=%s", dns_server_string(t
->server
),
323 "DNS_SERVER_FEATURE_LEVEL=%s", dns_server_feature_level_to_string(t
->server
->possible_feature_level
));
326 /* Note that this call might invalidate the query. Callers
327 * should hence not attempt to access the query or transaction
328 * after calling this function. */
330 if (state
== DNS_TRANSACTION_ERRNO
)
331 st
= errno_to_name(t
->answer_errno
);
333 st
= dns_transaction_state_to_string(state
);
335 log_debug("Transaction %" PRIu16
" for <%s> on scope %s on %s/%s now complete with <%s> from %s (%s).",
337 dns_resource_key_to_string(t
->key
, key_str
, sizeof key_str
),
338 dns_protocol_to_string(t
->scope
->protocol
),
339 t
->scope
->link
? t
->scope
->link
->name
: "*",
340 af_to_name_short(t
->scope
->family
),
342 t
->answer_source
< 0 ? "none" : dns_transaction_source_to_string(t
->answer_source
),
343 t
->answer_authenticated
? "authenticated" : "unsigned");
347 dns_transaction_close_connection(t
);
348 dns_transaction_stop_timeout(t
);
350 /* Notify all queries that are interested, but make sure the
351 * transaction isn't freed while we are still looking at it */
354 SET_FOREACH_MOVE(c
, t
->notify_query_candidates_done
, t
->notify_query_candidates
)
355 dns_query_candidate_notify(c
);
356 SWAP_TWO(t
->notify_query_candidates
, t
->notify_query_candidates_done
);
358 SET_FOREACH_MOVE(z
, t
->notify_zone_items_done
, t
->notify_zone_items
)
359 dns_zone_item_notify(z
);
360 SWAP_TWO(t
->notify_zone_items
, t
->notify_zone_items_done
);
361 if (t
->probing
&& t
->state
== DNS_TRANSACTION_ATTEMPTS_MAX_REACHED
)
362 (void) dns_scope_announce(t
->scope
, false);
364 SET_FOREACH_MOVE(d
, t
->notify_transactions_done
, t
->notify_transactions
)
365 dns_transaction_notify(d
, t
);
366 SWAP_TWO(t
->notify_transactions
, t
->notify_transactions_done
);
369 dns_transaction_gc(t
);
372 static int dns_transaction_pick_server(DnsTransaction
*t
) {
376 assert(t
->scope
->protocol
== DNS_PROTOCOL_DNS
);
378 /* Pick a DNS server and a feature level for it. */
380 server
= dns_scope_get_dns_server(t
->scope
);
384 /* If we changed the server invalidate the feature level clamping, as the new server might have completely
385 * different properties. */
386 if (server
!= t
->server
)
387 t
->clamp_feature_level
= _DNS_SERVER_FEATURE_LEVEL_INVALID
;
389 t
->current_feature_level
= dns_server_possible_feature_level(server
);
391 /* Clamp the feature level if that is requested. */
392 if (t
->clamp_feature_level
!= _DNS_SERVER_FEATURE_LEVEL_INVALID
&&
393 t
->current_feature_level
> t
->clamp_feature_level
)
394 t
->current_feature_level
= t
->clamp_feature_level
;
396 log_debug("Using feature level %s for transaction %u.", dns_server_feature_level_to_string(t
->current_feature_level
), t
->id
);
398 if (server
== t
->server
)
401 dns_server_unref(t
->server
);
402 t
->server
= dns_server_ref(server
);
404 t
->n_picked_servers
++;
406 log_debug("Using DNS server %s for transaction %u.", dns_server_string(t
->server
), t
->id
);
411 static void dns_transaction_retry(DnsTransaction
*t
, bool next_server
) {
416 log_debug("Retrying transaction %" PRIu16
".", t
->id
);
418 /* Before we try again, switch to a new server. */
420 dns_scope_next_dns_server(t
->scope
);
422 r
= dns_transaction_go(t
);
424 t
->answer_errno
= -r
;
425 dns_transaction_complete(t
, DNS_TRANSACTION_ERRNO
);
429 static int dns_transaction_maybe_restart(DnsTransaction
*t
) {
434 /* Returns > 0 if the transaction was restarted, 0 if not */
439 if (t
->current_feature_level
<= dns_server_possible_feature_level(t
->server
))
442 /* The server's current feature level is lower than when we sent the original query. We learnt something from
443 the response or possibly an auxiliary DNSSEC response that we didn't know before. We take that as reason to
444 restart the whole transaction. This is a good idea to deal with servers that respond rubbish if we include
445 OPT RR or DO bit. One of these cases is documented here, for example:
446 https://open.nlnetlabs.nl/pipermail/dnssec-trigger/2014-November/000376.html */
448 log_debug("Server feature level is now lower than when we began our transaction. Restarting with new ID.");
449 dns_transaction_shuffle_id(t
);
451 r
= dns_transaction_go(t
);
458 static void on_transaction_stream_error(DnsTransaction
*t
, int error
) {
461 dns_transaction_close_connection(t
);
463 if (ERRNO_IS_DISCONNECT(error
)) {
464 if (t
->scope
->protocol
== DNS_PROTOCOL_LLMNR
) {
465 /* If the LLMNR/TCP connection failed, the host doesn't support LLMNR, and we cannot answer the
466 * question on this scope. */
467 dns_transaction_complete(t
, DNS_TRANSACTION_NOT_FOUND
);
471 dns_transaction_retry(t
, true);
475 t
->answer_errno
= error
;
476 dns_transaction_complete(t
, DNS_TRANSACTION_ERRNO
);
480 static int dns_transaction_on_stream_packet(DnsTransaction
*t
, DnsPacket
*p
) {
484 dns_transaction_close_connection(t
);
486 if (dns_packet_validate_reply(p
) <= 0) {
487 log_debug("Invalid TCP reply packet.");
488 dns_transaction_complete(t
, DNS_TRANSACTION_INVALID_REPLY
);
492 dns_scope_check_conflicts(t
->scope
, p
);
495 dns_transaction_process_reply(t
, p
);
498 /* If the response wasn't useful, then complete the transition
499 * now. After all, we are the worst feature set now with TCP
500 * sockets, and there's really no point in retrying. */
501 if (t
->state
== DNS_TRANSACTION_PENDING
)
502 dns_transaction_complete(t
, DNS_TRANSACTION_INVALID_REPLY
);
504 dns_transaction_gc(t
);
509 static int on_stream_connection(DnsStream
*s
) {
511 /* Store TLS Ticket for faster succesive TLS handshakes */
512 if (s
->tls_session
&& s
->server
) {
513 if (s
->server
->tls_session_data
.data
)
514 gnutls_free(s
->server
->tls_session_data
.data
);
516 gnutls_session_get_data2(s
->tls_session
, &s
->server
->tls_session_data
);
523 static int on_stream_complete(DnsStream
*s
, int error
) {
524 DnsTransaction
*t
, *n
;
527 /* Do not let new transactions use this stream */
528 if (s
->server
&& s
->server
->stream
== s
)
529 s
->server
->stream
= dns_stream_unref(s
->server
->stream
);
531 if (ERRNO_IS_DISCONNECT(error
) && s
->protocol
!= DNS_PROTOCOL_LLMNR
) {
534 log_debug_errno(error
, "Connection failure for DNS TCP stream: %m");
536 if (s
->transactions
) {
538 assert_se(sd_event_now(t
->scope
->manager
->event
, clock_boottime_or_monotonic(), &usec
) >= 0);
539 dns_server_packet_lost(t
->server
, IPPROTO_TCP
, t
->current_feature_level
);
543 LIST_FOREACH_SAFE(transactions_by_stream
, t
, n
, s
->transactions
)
545 on_transaction_stream_error(t
, error
);
546 else if (DNS_PACKET_ID(s
->read_packet
) == t
->id
)
547 /* As each transaction have a unique id the return code is only set once */
548 r
= dns_transaction_on_stream_packet(t
, s
->read_packet
);
553 static int dns_stream_on_packet(DnsStream
*s
) {
554 _cleanup_(dns_packet_unrefp
) DnsPacket
*p
= NULL
;
558 /* Take ownership of packet to be able to receive new packets */
559 p
= TAKE_PTR(s
->read_packet
);
562 t
= hashmap_get(s
->manager
->dns_transactions
, UINT_TO_PTR(DNS_PACKET_ID(p
)));
564 /* Ignore incorrect transaction id as transaction can have been canceled */
566 r
= dns_transaction_on_stream_packet(t
, p
);
568 if (dns_packet_validate_reply(p
) <= 0) {
569 log_debug("Invalid TCP reply packet.");
570 on_stream_complete(s
, 0);
578 static int dns_transaction_emit_tcp(DnsTransaction
*t
) {
579 _cleanup_close_
int fd
= -1;
580 _cleanup_(dns_stream_unrefp
) DnsStream
*s
= NULL
;
581 union sockaddr_union sa
;
589 dns_transaction_close_connection(t
);
591 switch (t
->scope
->protocol
) {
593 case DNS_PROTOCOL_DNS
:
594 r
= dns_transaction_pick_server(t
);
598 if (!dns_server_dnssec_supported(t
->server
) && dns_type_is_dnssec(t
->key
->type
))
601 r
= dns_server_adjust_opt(t
->server
, t
->sent
, t
->current_feature_level
);
605 if (t
->server
->stream
&& (DNS_SERVER_FEATURE_LEVEL_IS_TLS(t
->current_feature_level
) == t
->server
->stream
->encrypted
))
606 s
= dns_stream_ref(t
->server
->stream
);
608 fd
= dns_scope_socket_tcp(t
->scope
, AF_UNSPEC
, NULL
, t
->server
, DNS_SERVER_FEATURE_LEVEL_IS_TLS(t
->current_feature_level
) ? 853 : 53, &sa
);
612 case DNS_PROTOCOL_LLMNR
:
613 /* When we already received a reply to this (but it was truncated), send to its sender address */
615 fd
= dns_scope_socket_tcp(t
->scope
, t
->received
->family
, &t
->received
->sender
, NULL
, t
->received
->sender_port
, &sa
);
617 union in_addr_union address
;
618 int family
= AF_UNSPEC
;
620 /* Otherwise, try to talk to the owner of a
621 * the IP address, in case this is a reverse
624 r
= dns_name_address(dns_resource_key_name(t
->key
), &family
, &address
);
629 if (family
!= t
->scope
->family
)
632 fd
= dns_scope_socket_tcp(t
->scope
, family
, &address
, NULL
, LLMNR_PORT
, &sa
);
638 return -EAFNOSUPPORT
;
645 r
= dns_stream_new(t
->scope
->manager
, &s
, t
->scope
->protocol
, fd
, &sa
);
652 dns_stream_unref(t
->server
->stream
);
653 t
->server
->stream
= dns_stream_ref(s
);
654 s
->server
= dns_server_ref(t
->server
);
658 if (DNS_SERVER_FEATURE_LEVEL_IS_TLS(t
->current_feature_level
)) {
659 r
= gnutls_init(&gs
, GNUTLS_CLIENT
| GNUTLS_ENABLE_FALSE_START
| GNUTLS_NONBLOCK
);
663 /* As DNS-over-TLS is a recent protocol, older TLS versions can be disabled */
664 r
= gnutls_priority_set_direct(gs
, "NORMAL:-VERS-ALL:+VERS-TLS1.2", NULL
);
668 r
= gnutls_credentials_set(gs
, GNUTLS_CRD_CERTIFICATE
, t
->server
->tls_cert_cred
);
672 if (t
->server
&& t
->server
->tls_session_data
.size
> 0)
673 gnutls_session_set_data(gs
, t
->server
->tls_session_data
.data
, t
->server
->tls_session_data
.size
);
675 gnutls_handshake_set_timeout(gs
, GNUTLS_DEFAULT_HANDSHAKE_TIMEOUT
);
677 r
= dns_stream_connect_tls(s
, gs
);
683 s
->on_connection
= on_stream_connection
;
684 s
->complete
= on_stream_complete
;
685 s
->on_packet
= dns_stream_on_packet
;
687 /* The interface index is difficult to determine if we are
688 * connecting to the local host, hence fill this in right away
689 * instead of determining it from the socket */
690 s
->ifindex
= dns_scope_ifindex(t
->scope
);
693 t
->stream
= TAKE_PTR(s
);
694 LIST_PREPEND(transactions_by_stream
, t
->stream
->transactions
, t
);
696 r
= dns_stream_write_packet(t
->stream
, t
->sent
);
698 dns_transaction_close_connection(t
);
702 dns_transaction_reset_answer(t
);
704 t
->tried_stream
= true;
709 static void dns_transaction_cache_answer(DnsTransaction
*t
) {
712 /* For mDNS we cache whenever we get the packet, rather than
713 * in each transaction. */
714 if (!IN_SET(t
->scope
->protocol
, DNS_PROTOCOL_DNS
, DNS_PROTOCOL_LLMNR
))
717 /* Caching disabled? */
718 if (!t
->scope
->manager
->enable_cache
)
721 /* We never cache if this packet is from the local host, under
722 * the assumption that a locally running DNS server would
723 * cache this anyway, and probably knows better when to flush
724 * the cache then we could. */
725 if (!DNS_PACKET_SHALL_CACHE(t
->received
))
728 dns_cache_put(&t
->scope
->cache
,
732 t
->answer_authenticated
,
736 &t
->received
->sender
);
739 static bool dns_transaction_dnssec_is_live(DnsTransaction
*t
) {
745 SET_FOREACH(dt
, t
->dnssec_transactions
, i
)
746 if (DNS_TRANSACTION_IS_LIVE(dt
->state
))
752 static int dns_transaction_dnssec_ready(DnsTransaction
*t
) {
758 /* Checks whether the auxiliary DNSSEC transactions of our transaction have completed, or are still
759 * ongoing. Returns 0, if we aren't ready for the DNSSEC validation, positive if we are. */
761 SET_FOREACH(dt
, t
->dnssec_transactions
, i
) {
765 case DNS_TRANSACTION_NULL
:
766 case DNS_TRANSACTION_PENDING
:
767 case DNS_TRANSACTION_VALIDATING
:
771 case DNS_TRANSACTION_RCODE_FAILURE
:
772 if (!IN_SET(dt
->answer_rcode
, DNS_RCODE_NXDOMAIN
, DNS_RCODE_SERVFAIL
)) {
773 log_debug("Auxiliary DNSSEC RR query failed with rcode=%s.", dns_rcode_to_string(dt
->answer_rcode
));
777 /* Fall-through: NXDOMAIN/SERVFAIL is good enough for us. This is because some DNS servers
778 * erronously return NXDOMAIN/SERVFAIL for empty non-terminals (Akamai...) or missing DS
779 * records (Facebook), and we need to handle that nicely, when asking for parent SOA or similar
780 * RRs to make unsigned proofs. */
782 case DNS_TRANSACTION_SUCCESS
:
786 case DNS_TRANSACTION_DNSSEC_FAILED
:
787 /* We handle DNSSEC failures different from other errors, as we care about the DNSSEC
788 * validationr result */
790 log_debug("Auxiliary DNSSEC RR query failed validation: %s", dnssec_result_to_string(dt
->answer_dnssec_result
));
791 t
->answer_dnssec_result
= dt
->answer_dnssec_result
; /* Copy error code over */
792 dns_transaction_complete(t
, DNS_TRANSACTION_DNSSEC_FAILED
);
796 log_debug("Auxiliary DNSSEC RR query failed with %s", dns_transaction_state_to_string(dt
->state
));
801 /* All is ready, we can go and validate */
805 t
->answer_dnssec_result
= DNSSEC_FAILED_AUXILIARY
;
806 dns_transaction_complete(t
, DNS_TRANSACTION_DNSSEC_FAILED
);
810 static void dns_transaction_process_dnssec(DnsTransaction
*t
) {
815 /* Are there ongoing DNSSEC transactions? If so, let's wait for them. */
816 r
= dns_transaction_dnssec_ready(t
);
819 if (r
== 0) /* We aren't ready yet (or one of our auxiliary transactions failed, and we shouldn't validate now */
822 /* See if we learnt things from the additional DNSSEC transactions, that we didn't know before, and better
823 * restart the lookup immediately. */
824 r
= dns_transaction_maybe_restart(t
);
827 if (r
> 0) /* Transaction got restarted... */
830 /* All our auxiliary DNSSEC transactions are complete now. Try
831 * to validate our RRset now. */
832 r
= dns_transaction_validate_dnssec(t
);
834 dns_transaction_complete(t
, DNS_TRANSACTION_INVALID_REPLY
);
840 if (t
->answer_dnssec_result
== DNSSEC_INCOMPATIBLE_SERVER
&&
841 t
->scope
->dnssec_mode
== DNSSEC_YES
) {
843 /* We are not in automatic downgrade mode, and the server is bad. Let's try a different server, maybe
846 if (t
->n_picked_servers
< dns_scope_get_n_dns_servers(t
->scope
)) {
847 /* We tried fewer servers on this transaction than we know, let's try another one then */
848 dns_transaction_retry(t
, true);
852 /* OK, let's give up, apparently all servers we tried didn't work. */
853 dns_transaction_complete(t
, DNS_TRANSACTION_DNSSEC_FAILED
);
857 if (!IN_SET(t
->answer_dnssec_result
,
858 _DNSSEC_RESULT_INVALID
, /* No DNSSEC validation enabled */
859 DNSSEC_VALIDATED
, /* Answer is signed and validated successfully */
860 DNSSEC_UNSIGNED
, /* Answer is right-fully unsigned */
861 DNSSEC_INCOMPATIBLE_SERVER
)) { /* Server does not do DNSSEC (Yay, we are downgrade attack vulnerable!) */
862 dns_transaction_complete(t
, DNS_TRANSACTION_DNSSEC_FAILED
);
866 if (t
->answer_dnssec_result
== DNSSEC_INCOMPATIBLE_SERVER
)
867 dns_server_warn_downgrade(t
->server
);
869 dns_transaction_cache_answer(t
);
871 if (t
->answer_rcode
== DNS_RCODE_SUCCESS
)
872 dns_transaction_complete(t
, DNS_TRANSACTION_SUCCESS
);
874 dns_transaction_complete(t
, DNS_TRANSACTION_RCODE_FAILURE
);
879 t
->answer_errno
= -r
;
880 dns_transaction_complete(t
, DNS_TRANSACTION_ERRNO
);
883 static int dns_transaction_has_positive_answer(DnsTransaction
*t
, DnsAnswerFlags
*flags
) {
888 /* Checks whether the answer is positive, i.e. either a direct
889 * answer to the question, or a CNAME/DNAME for it */
891 r
= dns_answer_match_key(t
->answer
, t
->key
, flags
);
895 r
= dns_answer_find_cname_or_dname(t
->answer
, t
->key
, NULL
, flags
);
902 static int dns_transaction_fix_rcode(DnsTransaction
*t
) {
907 /* Fix up the RCODE to SUCCESS if we get at least one matching RR in a response. Note that this contradicts the
908 * DNS RFCs a bit. Specifically, RFC 6604 Section 3 clarifies that the RCODE shall say something about a
909 * CNAME/DNAME chain element coming after the last chain element contained in the message, and not the first
910 * one included. However, it also indicates that not all DNS servers implement this correctly. Moreover, when
911 * using DNSSEC we usually only can prove the first element of a CNAME/DNAME chain anyway, hence let's settle
912 * on always processing the RCODE as referring to the immediate look-up we do, i.e. the first element of a
913 * CNAME/DNAME chain. This way, we uniformly handle CNAME/DNAME chains, regardless if the DNS server
914 * incorrectly implements RCODE, whether DNSSEC is in use, or whether the DNS server only supplied us with an
915 * incomplete CNAME/DNAME chain.
917 * Or in other words: if we get at least one positive reply in a message we patch NXDOMAIN to become SUCCESS,
918 * and then rely on the CNAME chasing logic to figure out that there's actually a CNAME error with a new
921 if (t
->answer_rcode
!= DNS_RCODE_NXDOMAIN
)
924 r
= dns_transaction_has_positive_answer(t
, NULL
);
928 t
->answer_rcode
= DNS_RCODE_SUCCESS
;
932 void dns_transaction_process_reply(DnsTransaction
*t
, DnsPacket
*p
) {
939 assert(t
->scope
->manager
);
941 if (t
->state
!= DNS_TRANSACTION_PENDING
)
944 /* Note that this call might invalidate the query. Callers
945 * should hence not attempt to access the query or transaction
946 * after calling this function. */
948 log_debug("Processing incoming packet on transaction %" PRIu16
". (rcode=%s)", t
->id
, dns_rcode_to_string(DNS_PACKET_RCODE(p
)));
950 switch (t
->scope
->protocol
) {
952 case DNS_PROTOCOL_LLMNR
:
953 /* For LLMNR we will not accept any packets from other interfaces */
955 if (p
->ifindex
!= dns_scope_ifindex(t
->scope
))
958 if (p
->family
!= t
->scope
->family
)
961 /* Tentative packets are not full responses but still
962 * useful for identifying uniqueness conflicts during
964 if (DNS_PACKET_LLMNR_T(p
)) {
965 dns_transaction_tentative(t
, p
);
971 case DNS_PROTOCOL_MDNS
:
972 /* For mDNS we will not accept any packets from other interfaces */
974 if (p
->ifindex
!= dns_scope_ifindex(t
->scope
))
977 if (p
->family
!= t
->scope
->family
)
982 case DNS_PROTOCOL_DNS
:
983 /* Note that we do not need to verify the
984 * addresses/port numbers of incoming traffic, as we
985 * invoked connect() on our UDP socket in which case
986 * the kernel already does the needed verification for
991 assert_not_reached("Invalid DNS protocol.");
994 if (t
->received
!= p
) {
995 dns_packet_unref(t
->received
);
996 t
->received
= dns_packet_ref(p
);
999 t
->answer_source
= DNS_TRANSACTION_NETWORK
;
1001 if (p
->ipproto
== IPPROTO_TCP
) {
1002 if (DNS_PACKET_TC(p
)) {
1003 /* Truncated via TCP? Somebody must be fucking with us */
1004 dns_transaction_complete(t
, DNS_TRANSACTION_INVALID_REPLY
);
1008 if (DNS_PACKET_ID(p
) != t
->id
) {
1009 /* Not the reply to our query? Somebody must be fucking with us */
1010 dns_transaction_complete(t
, DNS_TRANSACTION_INVALID_REPLY
);
1015 assert_se(sd_event_now(t
->scope
->manager
->event
, clock_boottime_or_monotonic(), &ts
) >= 0);
1017 switch (t
->scope
->protocol
) {
1019 case DNS_PROTOCOL_DNS
:
1022 if (IN_SET(DNS_PACKET_RCODE(p
), DNS_RCODE_FORMERR
, DNS_RCODE_SERVFAIL
, DNS_RCODE_NOTIMP
)) {
1024 /* Request failed, immediately try again with reduced features */
1026 if (t
->current_feature_level
<= DNS_SERVER_FEATURE_LEVEL_UDP
) {
1028 /* This was already at UDP feature level? If so, it doesn't make sense to downgrade
1029 * this transaction anymore, but let's see if it might make sense to send the request
1030 * to a different DNS server instead. If not let's process the response, and accept the
1031 * rcode. Note that we don't retry on TCP, since that's a suitable way to mitigate
1032 * packet loss, but is not going to give us better rcodes should we actually have
1033 * managed to get them already at UDP level. */
1035 if (t
->n_picked_servers
< dns_scope_get_n_dns_servers(t
->scope
)) {
1036 /* We tried fewer servers on this transaction than we know, let's try another one then */
1037 dns_transaction_retry(t
, true);
1041 /* Give up, accept the rcode */
1042 log_debug("Server returned error: %s", dns_rcode_to_string(DNS_PACKET_RCODE(p
)));
1046 /* Reduce this feature level by one and try again. */
1047 switch (t
->current_feature_level
) {
1048 case DNS_SERVER_FEATURE_LEVEL_TLS_DO
:
1049 t
->clamp_feature_level
= DNS_SERVER_FEATURE_LEVEL_TLS_PLAIN
;
1051 case DNS_SERVER_FEATURE_LEVEL_TLS_PLAIN
+ 1:
1052 /* Skip plain TLS when TLS is not supported */
1053 t
->clamp_feature_level
= DNS_SERVER_FEATURE_LEVEL_TLS_PLAIN
- 1;
1056 t
->clamp_feature_level
= t
->current_feature_level
- 1;
1059 log_debug("Server returned error %s, retrying transaction with reduced feature level %s.",
1060 dns_rcode_to_string(DNS_PACKET_RCODE(p
)),
1061 dns_server_feature_level_to_string(t
->clamp_feature_level
));
1063 dns_transaction_retry(t
, false /* use the same server */);
1067 if (DNS_PACKET_RCODE(p
) == DNS_RCODE_REFUSED
) {
1068 /* This server refused our request? If so, try again, use a different server */
1069 log_debug("Server returned REFUSED, switching servers, and retrying.");
1070 dns_transaction_retry(t
, true /* pick a new server */);
1074 if (DNS_PACKET_TC(p
))
1075 dns_server_packet_truncated(t
->server
, t
->current_feature_level
);
1079 case DNS_PROTOCOL_LLMNR
:
1080 case DNS_PROTOCOL_MDNS
:
1081 dns_scope_packet_received(t
->scope
, ts
- t
->start_usec
);
1085 assert_not_reached("Invalid DNS protocol.");
1088 if (DNS_PACKET_TC(p
)) {
1090 /* Truncated packets for mDNS are not allowed. Give up immediately. */
1091 if (t
->scope
->protocol
== DNS_PROTOCOL_MDNS
) {
1092 dns_transaction_complete(t
, DNS_TRANSACTION_INVALID_REPLY
);
1096 log_debug("Reply truncated, retrying via TCP.");
1098 /* Response was truncated, let's try again with good old TCP */
1099 r
= dns_transaction_emit_tcp(t
);
1101 /* No servers found? Damn! */
1102 dns_transaction_complete(t
, DNS_TRANSACTION_NO_SERVERS
);
1105 if (r
== -EOPNOTSUPP
) {
1106 /* Tried to ask for DNSSEC RRs, on a server that doesn't do DNSSEC */
1107 dns_transaction_complete(t
, DNS_TRANSACTION_RR_TYPE_UNSUPPORTED
);
1111 /* On LLMNR, if we cannot connect to the host,
1112 * we immediately give up */
1113 if (t
->scope
->protocol
!= DNS_PROTOCOL_DNS
)
1116 /* On DNS, couldn't send? Try immediately again, with a new server */
1117 dns_transaction_retry(t
, true);
1123 /* After the superficial checks, actually parse the message. */
1124 r
= dns_packet_extract(p
);
1126 dns_transaction_complete(t
, DNS_TRANSACTION_INVALID_REPLY
);
1131 /* Report that we successfully received a valid packet with a good rcode after we initially got a bad
1132 * rcode and subsequently downgraded the protocol */
1134 if (IN_SET(DNS_PACKET_RCODE(p
), DNS_RCODE_SUCCESS
, DNS_RCODE_NXDOMAIN
) &&
1135 t
->clamp_feature_level
!= _DNS_SERVER_FEATURE_LEVEL_INVALID
)
1136 dns_server_packet_rcode_downgrade(t
->server
, t
->clamp_feature_level
);
1138 /* Report that the OPT RR was missing */
1140 dns_server_packet_bad_opt(t
->server
, t
->current_feature_level
);
1142 /* Report that we successfully received a packet */
1143 dns_server_packet_received(t
->server
, p
->ipproto
, t
->current_feature_level
, p
->size
);
1146 /* See if we know things we didn't know before that indicate we better restart the lookup immediately. */
1147 r
= dns_transaction_maybe_restart(t
);
1150 if (r
> 0) /* Transaction got restarted... */
1153 if (IN_SET(t
->scope
->protocol
, DNS_PROTOCOL_DNS
, DNS_PROTOCOL_LLMNR
, DNS_PROTOCOL_MDNS
)) {
1155 /* When dealing with protocols other than mDNS only consider responses with
1156 * equivalent query section to the request. For mDNS this check doesn't make
1157 * sense, because the section 6 of RFC6762 states that "Multicast DNS responses MUST NOT
1158 * contain any questions in the Question Section". */
1159 if (t
->scope
->protocol
!= DNS_PROTOCOL_MDNS
) {
1160 r
= dns_packet_is_reply_for(p
, t
->key
);
1164 dns_transaction_complete(t
, DNS_TRANSACTION_INVALID_REPLY
);
1169 /* Install the answer as answer to the transaction */
1170 dns_answer_unref(t
->answer
);
1171 t
->answer
= dns_answer_ref(p
->answer
);
1172 t
->answer_rcode
= DNS_PACKET_RCODE(p
);
1173 t
->answer_dnssec_result
= _DNSSEC_RESULT_INVALID
;
1174 t
->answer_authenticated
= false;
1176 r
= dns_transaction_fix_rcode(t
);
1180 /* Block GC while starting requests for additional DNSSEC RRs */
1182 r
= dns_transaction_request_dnssec_keys(t
);
1185 /* Maybe the transaction is ready for GC'ing now? If so, free it and return. */
1186 if (!dns_transaction_gc(t
))
1189 /* Requesting additional keys might have resulted in
1190 * this transaction to fail, since the auxiliary
1191 * request failed for some reason. If so, we are not
1192 * in pending state anymore, and we should exit
1194 if (t
->state
!= DNS_TRANSACTION_PENDING
)
1199 /* There are DNSSEC transactions pending now. Update the state accordingly. */
1200 t
->state
= DNS_TRANSACTION_VALIDATING
;
1201 dns_transaction_close_connection(t
);
1202 dns_transaction_stop_timeout(t
);
1207 dns_transaction_process_dnssec(t
);
1211 t
->answer_errno
= -r
;
1212 dns_transaction_complete(t
, DNS_TRANSACTION_ERRNO
);
1215 static int on_dns_packet(sd_event_source
*s
, int fd
, uint32_t revents
, void *userdata
) {
1216 _cleanup_(dns_packet_unrefp
) DnsPacket
*p
= NULL
;
1217 DnsTransaction
*t
= userdata
;
1223 r
= manager_recv(t
->scope
->manager
, fd
, DNS_PROTOCOL_DNS
, &p
);
1224 if (ERRNO_IS_DISCONNECT(-r
)) {
1227 /* UDP connection failure get reported via ICMP and then are possible delivered to us on the next
1228 * recvmsg(). Treat this like a lost packet. */
1230 log_debug_errno(r
, "Connection failure for DNS UDP packet: %m");
1231 assert_se(sd_event_now(t
->scope
->manager
->event
, clock_boottime_or_monotonic(), &usec
) >= 0);
1232 dns_server_packet_lost(t
->server
, IPPROTO_UDP
, t
->current_feature_level
);
1234 dns_transaction_retry(t
, true);
1238 dns_transaction_complete(t
, DNS_TRANSACTION_ERRNO
);
1239 t
->answer_errno
= -r
;
1243 r
= dns_packet_validate_reply(p
);
1245 log_debug_errno(r
, "Received invalid DNS packet as response, ignoring: %m");
1249 log_debug("Received inappropriate DNS packet as response, ignoring.");
1253 if (DNS_PACKET_ID(p
) != t
->id
) {
1254 log_debug("Received packet with incorrect transaction ID, ignoring.");
1258 dns_transaction_process_reply(t
, p
);
1262 static int dns_transaction_emit_udp(DnsTransaction
*t
) {
1267 if (t
->scope
->protocol
== DNS_PROTOCOL_DNS
) {
1269 r
= dns_transaction_pick_server(t
);
1273 if (t
->current_feature_level
< DNS_SERVER_FEATURE_LEVEL_UDP
|| DNS_SERVER_FEATURE_LEVEL_IS_TLS(t
->current_feature_level
))
1274 return -EAGAIN
; /* Sorry, can't do UDP, try TCP! */
1276 if (!dns_server_dnssec_supported(t
->server
) && dns_type_is_dnssec(t
->key
->type
))
1279 if (r
> 0 || t
->dns_udp_fd
< 0) { /* Server changed, or no connection yet. */
1282 dns_transaction_close_connection(t
);
1284 fd
= dns_scope_socket_udp(t
->scope
, t
->server
, 53);
1288 r
= sd_event_add_io(t
->scope
->manager
->event
, &t
->dns_udp_event_source
, fd
, EPOLLIN
, on_dns_packet
, t
);
1294 (void) sd_event_source_set_description(t
->dns_udp_event_source
, "dns-transaction-udp");
1298 r
= dns_server_adjust_opt(t
->server
, t
->sent
, t
->current_feature_level
);
1302 dns_transaction_close_connection(t
);
1304 r
= dns_scope_emit_udp(t
->scope
, t
->dns_udp_fd
, t
->sent
);
1308 dns_transaction_reset_answer(t
);
1313 static int on_transaction_timeout(sd_event_source
*s
, usec_t usec
, void *userdata
) {
1314 DnsTransaction
*t
= userdata
;
1319 if (!t
->initial_jitter_scheduled
|| t
->initial_jitter_elapsed
) {
1320 /* Timeout reached? Increase the timeout for the server used */
1321 switch (t
->scope
->protocol
) {
1323 case DNS_PROTOCOL_DNS
:
1325 dns_server_packet_lost(t
->server
, t
->stream
? IPPROTO_TCP
: IPPROTO_UDP
, t
->current_feature_level
);
1328 case DNS_PROTOCOL_LLMNR
:
1329 case DNS_PROTOCOL_MDNS
:
1330 dns_scope_packet_lost(t
->scope
, usec
- t
->start_usec
);
1334 assert_not_reached("Invalid DNS protocol.");
1337 if (t
->initial_jitter_scheduled
)
1338 t
->initial_jitter_elapsed
= true;
1341 log_debug("Timeout reached on transaction %" PRIu16
".", t
->id
);
1343 dns_transaction_retry(t
, true);
1347 static usec_t
transaction_get_resend_timeout(DnsTransaction
*t
) {
1351 switch (t
->scope
->protocol
) {
1353 case DNS_PROTOCOL_DNS
:
1355 /* When we do TCP, grant a much longer timeout, as in this case there's no need for us to quickly
1356 * resend, as the kernel does that anyway for us, and we really don't want to interrupt it in that
1359 return TRANSACTION_TCP_TIMEOUT_USEC
;
1361 return DNS_TIMEOUT_USEC
;
1363 case DNS_PROTOCOL_MDNS
:
1364 assert(t
->n_attempts
> 0);
1366 return MDNS_PROBING_INTERVAL_USEC
;
1368 return (1 << (t
->n_attempts
- 1)) * USEC_PER_SEC
;
1370 case DNS_PROTOCOL_LLMNR
:
1371 return t
->scope
->resend_timeout
;
1374 assert_not_reached("Invalid DNS protocol.");
1378 static int dns_transaction_prepare(DnsTransaction
*t
, usec_t ts
) {
1383 dns_transaction_stop_timeout(t
);
1385 r
= dns_scope_network_good(t
->scope
);
1389 dns_transaction_complete(t
, DNS_TRANSACTION_NETWORK_DOWN
);
1393 if (t
->n_attempts
>= TRANSACTION_ATTEMPTS_MAX(t
->scope
->protocol
)) {
1394 dns_transaction_complete(t
, DNS_TRANSACTION_ATTEMPTS_MAX_REACHED
);
1398 if (t
->scope
->protocol
== DNS_PROTOCOL_LLMNR
&& t
->tried_stream
) {
1399 /* If we already tried via a stream, then we don't
1400 * retry on LLMNR. See RFC 4795, Section 2.7. */
1401 dns_transaction_complete(t
, DNS_TRANSACTION_ATTEMPTS_MAX_REACHED
);
1408 dns_transaction_reset_answer(t
);
1409 dns_transaction_flush_dnssec_transactions(t
);
1411 /* Check the trust anchor. Do so only on classic DNS, since DNSSEC does not apply otherwise. */
1412 if (t
->scope
->protocol
== DNS_PROTOCOL_DNS
) {
1413 r
= dns_trust_anchor_lookup_positive(&t
->scope
->manager
->trust_anchor
, t
->key
, &t
->answer
);
1417 t
->answer_rcode
= DNS_RCODE_SUCCESS
;
1418 t
->answer_source
= DNS_TRANSACTION_TRUST_ANCHOR
;
1419 t
->answer_authenticated
= true;
1420 dns_transaction_complete(t
, DNS_TRANSACTION_SUCCESS
);
1424 if (dns_name_is_root(dns_resource_key_name(t
->key
)) &&
1425 t
->key
->type
== DNS_TYPE_DS
) {
1427 /* Hmm, this is a request for the root DS? A
1428 * DS RR doesn't exist in the root zone, and
1429 * if our trust anchor didn't know it either,
1430 * this means we cannot do any DNSSEC logic
1433 if (t
->scope
->dnssec_mode
== DNSSEC_ALLOW_DOWNGRADE
) {
1434 /* We are in downgrade mode. In this
1435 * case, synthesize an unsigned empty
1436 * response, so that the any lookup
1437 * depending on this one can continue
1438 * assuming there was no DS, and hence
1439 * the root zone was unsigned. */
1441 t
->answer_rcode
= DNS_RCODE_SUCCESS
;
1442 t
->answer_source
= DNS_TRANSACTION_TRUST_ANCHOR
;
1443 t
->answer_authenticated
= false;
1444 dns_transaction_complete(t
, DNS_TRANSACTION_SUCCESS
);
1446 /* If we are not in downgrade mode,
1447 * then fail the lookup, because we
1448 * cannot reasonably answer it. There
1449 * might be DS RRs, but we don't know
1450 * them, and the DNS server won't tell
1451 * them to us (and even if it would,
1452 * we couldn't validate and trust them. */
1453 dns_transaction_complete(t
, DNS_TRANSACTION_NO_TRUST_ANCHOR
);
1459 /* Check the zone, but only if this transaction is not used
1460 * for probing or verifying a zone item. */
1461 if (set_isempty(t
->notify_zone_items
)) {
1463 r
= dns_zone_lookup(&t
->scope
->zone
, t
->key
, dns_scope_ifindex(t
->scope
), &t
->answer
, NULL
, NULL
);
1467 t
->answer_rcode
= DNS_RCODE_SUCCESS
;
1468 t
->answer_source
= DNS_TRANSACTION_ZONE
;
1469 t
->answer_authenticated
= true;
1470 dns_transaction_complete(t
, DNS_TRANSACTION_SUCCESS
);
1475 /* Check the cache, but only if this transaction is not used
1476 * for probing or verifying a zone item. */
1477 if (set_isempty(t
->notify_zone_items
)) {
1479 /* Before trying the cache, let's make sure we figured out a
1480 * server to use. Should this cause a change of server this
1481 * might flush the cache. */
1482 (void) dns_scope_get_dns_server(t
->scope
);
1484 /* Let's then prune all outdated entries */
1485 dns_cache_prune(&t
->scope
->cache
);
1487 r
= dns_cache_lookup(&t
->scope
->cache
, t
->key
, t
->clamp_ttl
, &t
->answer_rcode
, &t
->answer
, &t
->answer_authenticated
);
1491 t
->answer_source
= DNS_TRANSACTION_CACHE
;
1492 if (t
->answer_rcode
== DNS_RCODE_SUCCESS
)
1493 dns_transaction_complete(t
, DNS_TRANSACTION_SUCCESS
);
1495 dns_transaction_complete(t
, DNS_TRANSACTION_RCODE_FAILURE
);
1503 static int dns_transaction_make_packet_mdns(DnsTransaction
*t
) {
1505 _cleanup_(dns_packet_unrefp
) DnsPacket
*p
= NULL
;
1506 bool add_known_answers
= false;
1507 DnsTransaction
*other
;
1509 DnsResourceKey
*tkey
;
1510 _cleanup_set_free_ Set
*keys
= NULL
;
1512 unsigned nscount
= 0;
1517 assert(t
->scope
->protocol
== DNS_PROTOCOL_MDNS
);
1519 /* Discard any previously prepared packet, so we can start over and coalesce again */
1520 t
->sent
= dns_packet_unref(t
->sent
);
1522 r
= dns_packet_new_query(&p
, t
->scope
->protocol
, 0, false);
1526 r
= dns_packet_append_key(p
, t
->key
, 0, NULL
);
1532 if (dns_key_is_shared(t
->key
))
1533 add_known_answers
= true;
1535 if (t
->key
->type
== DNS_TYPE_ANY
) {
1536 r
= set_ensure_allocated(&keys
, &dns_resource_key_hash_ops
);
1540 r
= set_put(keys
, t
->key
);
1546 * For mDNS, we want to coalesce as many open queries in pending transactions into one single
1547 * query packet on the wire as possible. To achieve that, we iterate through all pending transactions
1548 * in our current scope, and see whether their timing contraints allow them to be sent.
1551 assert_se(sd_event_now(t
->scope
->manager
->event
, clock_boottime_or_monotonic(), &ts
) >= 0);
1553 LIST_FOREACH(transactions_by_scope
, other
, t
->scope
->transactions
) {
1555 /* Skip ourselves */
1559 if (other
->state
!= DNS_TRANSACTION_PENDING
)
1562 if (other
->next_attempt_after
> ts
)
1565 if (qdcount
>= UINT16_MAX
)
1568 r
= dns_packet_append_key(p
, other
->key
, 0, NULL
);
1571 * If we can't stuff more questions into the packet, just give up.
1572 * One of the 'other' transactions will fire later and take care of the rest.
1580 r
= dns_transaction_prepare(other
, ts
);
1584 ts
+= transaction_get_resend_timeout(other
);
1586 r
= sd_event_add_time(
1587 other
->scope
->manager
->event
,
1588 &other
->timeout_event_source
,
1589 clock_boottime_or_monotonic(),
1591 on_transaction_timeout
, other
);
1595 (void) sd_event_source_set_description(other
->timeout_event_source
, "dns-transaction-timeout");
1597 other
->state
= DNS_TRANSACTION_PENDING
;
1598 other
->next_attempt_after
= ts
;
1602 if (dns_key_is_shared(other
->key
))
1603 add_known_answers
= true;
1605 if (other
->key
->type
== DNS_TYPE_ANY
) {
1606 r
= set_ensure_allocated(&keys
, &dns_resource_key_hash_ops
);
1610 r
= set_put(keys
, other
->key
);
1616 DNS_PACKET_HEADER(p
)->qdcount
= htobe16(qdcount
);
1618 /* Append known answer section if we're asking for any shared record */
1619 if (add_known_answers
) {
1620 r
= dns_cache_export_shared_to_packet(&t
->scope
->cache
, p
);
1625 SET_FOREACH(tkey
, keys
, i
) {
1626 _cleanup_(dns_answer_unrefp
) DnsAnswer
*answer
= NULL
;
1629 r
= dns_zone_lookup(&t
->scope
->zone
, tkey
, t
->scope
->link
->ifindex
, &answer
, NULL
, &tentative
);
1633 r
= dns_packet_append_answer(p
, answer
);
1637 nscount
+= dns_answer_size(answer
);
1639 DNS_PACKET_HEADER(p
)->nscount
= htobe16(nscount
);
1641 t
->sent
= TAKE_PTR(p
);
1646 static int dns_transaction_make_packet(DnsTransaction
*t
) {
1647 _cleanup_(dns_packet_unrefp
) DnsPacket
*p
= NULL
;
1652 if (t
->scope
->protocol
== DNS_PROTOCOL_MDNS
)
1653 return dns_transaction_make_packet_mdns(t
);
1658 r
= dns_packet_new_query(&p
, t
->scope
->protocol
, 0, t
->scope
->dnssec_mode
!= DNSSEC_NO
);
1662 r
= dns_packet_append_key(p
, t
->key
, 0, NULL
);
1666 DNS_PACKET_HEADER(p
)->qdcount
= htobe16(1);
1667 DNS_PACKET_HEADER(p
)->id
= t
->id
;
1669 t
->sent
= TAKE_PTR(p
);
1674 int dns_transaction_go(DnsTransaction
*t
) {
1677 char key_str
[DNS_RESOURCE_KEY_STRING_MAX
];
1681 /* Returns > 0 if the transaction is now pending, returns 0 if could be processed immediately and has finished
1684 assert_se(sd_event_now(t
->scope
->manager
->event
, clock_boottime_or_monotonic(), &ts
) >= 0);
1686 r
= dns_transaction_prepare(t
, ts
);
1690 log_debug("Transaction %" PRIu16
" for <%s> scope %s on %s/%s.",
1692 dns_resource_key_to_string(t
->key
, key_str
, sizeof key_str
),
1693 dns_protocol_to_string(t
->scope
->protocol
),
1694 t
->scope
->link
? t
->scope
->link
->name
: "*",
1695 af_to_name_short(t
->scope
->family
));
1697 if (!t
->initial_jitter_scheduled
&&
1698 IN_SET(t
->scope
->protocol
, DNS_PROTOCOL_LLMNR
, DNS_PROTOCOL_MDNS
)) {
1699 usec_t jitter
, accuracy
;
1701 /* RFC 4795 Section 2.7 suggests all queries should be
1702 * delayed by a random time from 0 to JITTER_INTERVAL. */
1704 t
->initial_jitter_scheduled
= true;
1706 random_bytes(&jitter
, sizeof(jitter
));
1708 switch (t
->scope
->protocol
) {
1710 case DNS_PROTOCOL_LLMNR
:
1711 jitter
%= LLMNR_JITTER_INTERVAL_USEC
;
1712 accuracy
= LLMNR_JITTER_INTERVAL_USEC
;
1715 case DNS_PROTOCOL_MDNS
:
1716 jitter
%= MDNS_JITTER_RANGE_USEC
;
1717 jitter
+= MDNS_JITTER_MIN_USEC
;
1718 accuracy
= MDNS_JITTER_RANGE_USEC
;
1721 assert_not_reached("bad protocol");
1724 r
= sd_event_add_time(
1725 t
->scope
->manager
->event
,
1726 &t
->timeout_event_source
,
1727 clock_boottime_or_monotonic(),
1728 ts
+ jitter
, accuracy
,
1729 on_transaction_timeout
, t
);
1733 (void) sd_event_source_set_description(t
->timeout_event_source
, "dns-transaction-timeout");
1736 t
->next_attempt_after
= ts
;
1737 t
->state
= DNS_TRANSACTION_PENDING
;
1739 log_debug("Delaying %s transaction for " USEC_FMT
"us.", dns_protocol_to_string(t
->scope
->protocol
), jitter
);
1743 /* Otherwise, we need to ask the network */
1744 r
= dns_transaction_make_packet(t
);
1748 if (t
->scope
->protocol
== DNS_PROTOCOL_LLMNR
&&
1749 (dns_name_endswith(dns_resource_key_name(t
->key
), "in-addr.arpa") > 0 ||
1750 dns_name_endswith(dns_resource_key_name(t
->key
), "ip6.arpa") > 0)) {
1752 /* RFC 4795, Section 2.4. says reverse lookups shall
1753 * always be made via TCP on LLMNR */
1754 r
= dns_transaction_emit_tcp(t
);
1756 /* Try via UDP, and if that fails due to large size or lack of
1757 * support try via TCP */
1758 r
= dns_transaction_emit_udp(t
);
1760 log_debug("Sending query via TCP since it is too large.");
1761 else if (r
== -EAGAIN
)
1762 log_debug("Sending query via TCP since UDP isn't supported.");
1763 if (IN_SET(r
, -EMSGSIZE
, -EAGAIN
))
1764 r
= dns_transaction_emit_tcp(t
);
1768 /* No servers to send this to? */
1769 dns_transaction_complete(t
, DNS_TRANSACTION_NO_SERVERS
);
1772 if (r
== -EOPNOTSUPP
) {
1773 /* Tried to ask for DNSSEC RRs, on a server that doesn't do DNSSEC */
1774 dns_transaction_complete(t
, DNS_TRANSACTION_RR_TYPE_UNSUPPORTED
);
1777 if (t
->scope
->protocol
== DNS_PROTOCOL_LLMNR
&& ERRNO_IS_DISCONNECT(-r
)) {
1778 /* On LLMNR, if we cannot connect to a host via TCP when doing reverse lookups. This means we cannot
1779 * answer this request with this protocol. */
1780 dns_transaction_complete(t
, DNS_TRANSACTION_NOT_FOUND
);
1784 if (t
->scope
->protocol
!= DNS_PROTOCOL_DNS
)
1787 /* Couldn't send? Try immediately again, with a new server */
1788 dns_scope_next_dns_server(t
->scope
);
1790 return dns_transaction_go(t
);
1793 ts
+= transaction_get_resend_timeout(t
);
1795 r
= sd_event_add_time(
1796 t
->scope
->manager
->event
,
1797 &t
->timeout_event_source
,
1798 clock_boottime_or_monotonic(),
1800 on_transaction_timeout
, t
);
1804 (void) sd_event_source_set_description(t
->timeout_event_source
, "dns-transaction-timeout");
1806 t
->state
= DNS_TRANSACTION_PENDING
;
1807 t
->next_attempt_after
= ts
;
1812 static int dns_transaction_find_cyclic(DnsTransaction
*t
, DnsTransaction
*aux
) {
1820 /* Try to find cyclic dependencies between transaction objects */
1825 SET_FOREACH(n
, aux
->dnssec_transactions
, i
) {
1826 r
= dns_transaction_find_cyclic(t
, n
);
1834 static int dns_transaction_add_dnssec_transaction(DnsTransaction
*t
, DnsResourceKey
*key
, DnsTransaction
**ret
) {
1835 DnsTransaction
*aux
;
1842 aux
= dns_scope_find_transaction(t
->scope
, key
, true);
1844 r
= dns_transaction_new(&aux
, t
->scope
, key
);
1848 if (set_contains(t
->dnssec_transactions
, aux
)) {
1853 r
= dns_transaction_find_cyclic(t
, aux
);
1857 char s
[DNS_RESOURCE_KEY_STRING_MAX
], saux
[DNS_RESOURCE_KEY_STRING_MAX
];
1859 log_debug("Potential cyclic dependency, refusing to add transaction %" PRIu16
" (%s) as dependency for %" PRIu16
" (%s).",
1861 dns_resource_key_to_string(t
->key
, s
, sizeof s
),
1863 dns_resource_key_to_string(aux
->key
, saux
, sizeof saux
));
1869 r
= set_ensure_allocated(&t
->dnssec_transactions
, NULL
);
1873 r
= set_ensure_allocated(&aux
->notify_transactions
, NULL
);
1877 r
= set_ensure_allocated(&aux
->notify_transactions_done
, NULL
);
1881 r
= set_put(t
->dnssec_transactions
, aux
);
1885 r
= set_put(aux
->notify_transactions
, t
);
1887 (void) set_remove(t
->dnssec_transactions
, aux
);
1895 dns_transaction_gc(aux
);
1899 static int dns_transaction_request_dnssec_rr(DnsTransaction
*t
, DnsResourceKey
*key
) {
1900 _cleanup_(dns_answer_unrefp
) DnsAnswer
*a
= NULL
;
1901 DnsTransaction
*aux
;
1907 /* Try to get the data from the trust anchor */
1908 r
= dns_trust_anchor_lookup_positive(&t
->scope
->manager
->trust_anchor
, key
, &a
);
1912 r
= dns_answer_extend(&t
->validated_keys
, a
);
1919 /* This didn't work, ask for it via the network/cache then. */
1920 r
= dns_transaction_add_dnssec_transaction(t
, key
, &aux
);
1921 if (r
== -ELOOP
) /* This would result in a cyclic dependency */
1926 if (aux
->state
== DNS_TRANSACTION_NULL
) {
1927 r
= dns_transaction_go(aux
);
1935 static int dns_transaction_negative_trust_anchor_lookup(DnsTransaction
*t
, const char *name
) {
1940 /* Check whether the specified name is in the NTA
1941 * database, either in the global one, or the link-local
1944 r
= dns_trust_anchor_lookup_negative(&t
->scope
->manager
->trust_anchor
, name
);
1948 if (!t
->scope
->link
)
1951 return set_contains(t
->scope
->link
->dnssec_negative_trust_anchors
, name
);
1954 static int dns_transaction_has_unsigned_negative_answer(DnsTransaction
*t
) {
1959 /* Checks whether the answer is negative, and lacks NSEC/NSEC3
1960 * RRs to prove it */
1962 r
= dns_transaction_has_positive_answer(t
, NULL
);
1968 /* Is this key explicitly listed as a negative trust anchor?
1969 * If so, it's nothing we need to care about */
1970 r
= dns_transaction_negative_trust_anchor_lookup(t
, dns_resource_key_name(t
->key
));
1976 /* The answer does not contain any RRs that match to the
1977 * question. If so, let's see if there are any NSEC/NSEC3 RRs
1978 * included. If not, the answer is unsigned. */
1980 r
= dns_answer_contains_nsec_or_nsec3(t
->answer
);
1989 static int dns_transaction_is_primary_response(DnsTransaction
*t
, DnsResourceRecord
*rr
) {
1995 /* Check if the specified RR is the "primary" response,
1996 * i.e. either matches the question precisely or is a
1997 * CNAME/DNAME for it. */
1999 r
= dns_resource_key_match_rr(t
->key
, rr
, NULL
);
2003 return dns_resource_key_match_cname_or_dname(t
->key
, rr
->key
, NULL
);
2006 static bool dns_transaction_dnssec_supported(DnsTransaction
*t
) {
2009 /* Checks whether our transaction's DNS server is assumed to be compatible with DNSSEC. Returns false as soon
2010 * as we changed our mind about a server, and now believe it is incompatible with DNSSEC. */
2012 if (t
->scope
->protocol
!= DNS_PROTOCOL_DNS
)
2015 /* If we have picked no server, then we are working from the cache or some other source, and DNSSEC might well
2016 * be supported, hence return true. */
2020 /* Note that we do not check the feature level actually used for the transaction but instead the feature level
2021 * the server is known to support currently, as the transaction feature level might be lower than what the
2022 * server actually supports, since we might have downgraded this transaction's feature level because we got a
2023 * SERVFAIL earlier and wanted to check whether downgrading fixes it. */
2025 return dns_server_dnssec_supported(t
->server
);
2028 static bool dns_transaction_dnssec_supported_full(DnsTransaction
*t
) {
2034 /* Checks whether our transaction our any of the auxiliary transactions couldn't do DNSSEC. */
2036 if (!dns_transaction_dnssec_supported(t
))
2039 SET_FOREACH(dt
, t
->dnssec_transactions
, i
)
2040 if (!dns_transaction_dnssec_supported(dt
))
2046 int dns_transaction_request_dnssec_keys(DnsTransaction
*t
) {
2047 DnsResourceRecord
*rr
;
2054 * Retrieve all auxiliary RRs for the answer we got, so that
2055 * we can verify signatures or prove that RRs are rightfully
2056 * unsigned. Specifically:
2058 * - For RRSIG we get the matching DNSKEY
2059 * - For DNSKEY we get the matching DS
2060 * - For unsigned SOA/NS we get the matching DS
2061 * - For unsigned CNAME/DNAME/DS we get the parent SOA RR
2062 * - For other unsigned RRs we get the matching SOA RR
2063 * - For SOA/NS queries with no matching response RR, and no NSEC/NSEC3, the DS RR
2064 * - For DS queries with no matching response RRs, and no NSEC/NSEC3, the parent's SOA RR
2065 * - For other queries with no matching response RRs, and no NSEC/NSEC3, the SOA RR
2068 if (t
->scope
->dnssec_mode
== DNSSEC_NO
)
2070 if (t
->answer_source
!= DNS_TRANSACTION_NETWORK
)
2071 return 0; /* We only need to validate stuff from the network */
2072 if (!dns_transaction_dnssec_supported(t
))
2073 return 0; /* If we can't do DNSSEC anyway there's no point in geting the auxiliary RRs */
2075 DNS_ANSWER_FOREACH(rr
, t
->answer
) {
2077 if (dns_type_is_pseudo(rr
->key
->type
))
2080 /* If this RR is in the negative trust anchor, we don't need to validate it. */
2081 r
= dns_transaction_negative_trust_anchor_lookup(t
, dns_resource_key_name(rr
->key
));
2087 switch (rr
->key
->type
) {
2089 case DNS_TYPE_RRSIG
: {
2090 /* For each RRSIG we request the matching DNSKEY */
2091 _cleanup_(dns_resource_key_unrefp
) DnsResourceKey
*dnskey
= NULL
;
2093 /* If this RRSIG is about a DNSKEY RR and the
2094 * signer is the same as the owner, then we
2095 * already have the DNSKEY, and we don't have
2096 * to look for more. */
2097 if (rr
->rrsig
.type_covered
== DNS_TYPE_DNSKEY
) {
2098 r
= dns_name_equal(rr
->rrsig
.signer
, dns_resource_key_name(rr
->key
));
2105 /* If the signer is not a parent of our
2106 * original query, then this is about an
2107 * auxiliary RRset, but not anything we asked
2108 * for. In this case we aren't interested,
2109 * because we don't want to request additional
2110 * RRs for stuff we didn't really ask for, and
2111 * also to avoid request loops, where
2112 * additional RRs from one transaction result
2113 * in another transaction whose additonal RRs
2114 * point back to the original transaction, and
2116 r
= dns_name_endswith(dns_resource_key_name(t
->key
), rr
->rrsig
.signer
);
2122 dnskey
= dns_resource_key_new(rr
->key
->class, DNS_TYPE_DNSKEY
, rr
->rrsig
.signer
);
2126 log_debug("Requesting DNSKEY to validate transaction %" PRIu16
" (%s, RRSIG with key tag: %" PRIu16
").",
2127 t
->id
, dns_resource_key_name(rr
->key
), rr
->rrsig
.key_tag
);
2128 r
= dns_transaction_request_dnssec_rr(t
, dnskey
);
2134 case DNS_TYPE_DNSKEY
: {
2135 /* For each DNSKEY we request the matching DS */
2136 _cleanup_(dns_resource_key_unrefp
) DnsResourceKey
*ds
= NULL
;
2138 /* If the DNSKEY we are looking at is not for
2139 * zone we are interested in, nor any of its
2140 * parents, we aren't interested, and don't
2141 * request it. After all, we don't want to end
2142 * up in request loops, and want to keep
2143 * additional traffic down. */
2145 r
= dns_name_endswith(dns_resource_key_name(t
->key
), dns_resource_key_name(rr
->key
));
2151 ds
= dns_resource_key_new(rr
->key
->class, DNS_TYPE_DS
, dns_resource_key_name(rr
->key
));
2155 log_debug("Requesting DS to validate transaction %" PRIu16
" (%s, DNSKEY with key tag: %" PRIu16
").",
2156 t
->id
, dns_resource_key_name(rr
->key
), dnssec_keytag(rr
, false));
2157 r
= dns_transaction_request_dnssec_rr(t
, ds
);
2166 _cleanup_(dns_resource_key_unrefp
) DnsResourceKey
*ds
= NULL
;
2168 /* For an unsigned SOA or NS, try to acquire
2169 * the matching DS RR, as we are at a zone cut
2170 * then, and whether a DS exists tells us
2171 * whether the zone is signed. Do so only if
2172 * this RR matches our original question,
2175 r
= dns_resource_key_match_rr(t
->key
, rr
, NULL
);
2179 /* Hmm, so this SOA RR doesn't match our original question. In this case, maybe this is
2180 * a negative reply, and we need the a SOA RR's TTL in order to cache a negative entry?
2181 * If so, we need to validate it, too. */
2183 r
= dns_answer_match_key(t
->answer
, t
->key
, NULL
);
2186 if (r
> 0) /* positive reply, we won't need the SOA and hence don't need to validate
2191 r
= dnssec_has_rrsig(t
->answer
, rr
->key
);
2197 ds
= dns_resource_key_new(rr
->key
->class, DNS_TYPE_DS
, dns_resource_key_name(rr
->key
));
2201 log_debug("Requesting DS to validate transaction %" PRIu16
" (%s, unsigned SOA/NS RRset).",
2202 t
->id
, dns_resource_key_name(rr
->key
));
2203 r
= dns_transaction_request_dnssec_rr(t
, ds
);
2211 case DNS_TYPE_CNAME
:
2212 case DNS_TYPE_DNAME
: {
2213 _cleanup_(dns_resource_key_unrefp
) DnsResourceKey
*soa
= NULL
;
2216 /* CNAMEs and DNAMEs cannot be located at a
2217 * zone apex, hence ask for the parent SOA for
2218 * unsigned CNAME/DNAME RRs, maybe that's the
2219 * apex. But do all that only if this is
2220 * actually a response to our original
2223 * Similar for DS RRs, which are signed when
2224 * the parent SOA is signed. */
2226 r
= dns_transaction_is_primary_response(t
, rr
);
2232 r
= dnssec_has_rrsig(t
->answer
, rr
->key
);
2238 r
= dns_answer_has_dname_for_cname(t
->answer
, rr
);
2244 name
= dns_resource_key_name(rr
->key
);
2245 r
= dns_name_parent(&name
);
2251 soa
= dns_resource_key_new(rr
->key
->class, DNS_TYPE_SOA
, name
);
2255 log_debug("Requesting parent SOA to validate transaction %" PRIu16
" (%s, unsigned CNAME/DNAME/DS RRset).",
2256 t
->id
, dns_resource_key_name(rr
->key
));
2257 r
= dns_transaction_request_dnssec_rr(t
, soa
);
2265 _cleanup_(dns_resource_key_unrefp
) DnsResourceKey
*soa
= NULL
;
2267 /* For other unsigned RRsets (including
2268 * NSEC/NSEC3!), look for proof the zone is
2269 * unsigned, by requesting the SOA RR of the
2270 * zone. However, do so only if they are
2271 * directly relevant to our original
2274 r
= dns_transaction_is_primary_response(t
, rr
);
2280 r
= dnssec_has_rrsig(t
->answer
, rr
->key
);
2286 soa
= dns_resource_key_new(rr
->key
->class, DNS_TYPE_SOA
, dns_resource_key_name(rr
->key
));
2290 log_debug("Requesting SOA to validate transaction %" PRIu16
" (%s, unsigned non-SOA/NS RRset <%s>).",
2291 t
->id
, dns_resource_key_name(rr
->key
), dns_resource_record_to_string(rr
));
2292 r
= dns_transaction_request_dnssec_rr(t
, soa
);
2299 /* Above, we requested everything necessary to validate what
2300 * we got. Now, let's request what we need to validate what we
2303 r
= dns_transaction_has_unsigned_negative_answer(t
);
2310 name
= dns_resource_key_name(t
->key
);
2312 /* If this was a SOA or NS request, then check if there's a DS RR for the same domain. Note that this
2313 * could also be used as indication that we are not at a zone apex, but in real world setups there are
2314 * too many broken DNS servers (Hello, incapdns.net!) where non-terminal zones return NXDOMAIN even
2315 * though they have further children. If this was a DS request, then it's signed when the parent zone
2316 * is signed, hence ask the parent SOA in that case. If this was any other RR then ask for the SOA RR,
2317 * to see if that is signed. */
2319 if (t
->key
->type
== DNS_TYPE_DS
) {
2320 r
= dns_name_parent(&name
);
2322 type
= DNS_TYPE_SOA
;
2323 log_debug("Requesting parent SOA to validate transaction %" PRIu16
" (%s, unsigned empty DS response).",
2324 t
->id
, dns_resource_key_name(t
->key
));
2328 } else if (IN_SET(t
->key
->type
, DNS_TYPE_SOA
, DNS_TYPE_NS
)) {
2331 log_debug("Requesting DS to validate transaction %" PRIu16
" (%s, unsigned empty SOA/NS response).",
2332 t
->id
, dns_resource_key_name(t
->key
));
2335 type
= DNS_TYPE_SOA
;
2336 log_debug("Requesting SOA to validate transaction %" PRIu16
" (%s, unsigned empty non-SOA/NS/DS response).",
2337 t
->id
, dns_resource_key_name(t
->key
));
2341 _cleanup_(dns_resource_key_unrefp
) DnsResourceKey
*soa
= NULL
;
2343 soa
= dns_resource_key_new(t
->key
->class, type
, name
);
2347 r
= dns_transaction_request_dnssec_rr(t
, soa
);
2353 return dns_transaction_dnssec_is_live(t
);
2356 void dns_transaction_notify(DnsTransaction
*t
, DnsTransaction
*source
) {
2360 /* Invoked whenever any of our auxiliary DNSSEC transactions completed its work. If the state is still PENDING,
2361 we are still in the loop that adds further DNSSEC transactions, hence don't check if we are ready yet. If
2362 the state is VALIDATING however, we should check if we are complete now. */
2364 if (t
->state
== DNS_TRANSACTION_VALIDATING
)
2365 dns_transaction_process_dnssec(t
);
2368 static int dns_transaction_validate_dnskey_by_ds(DnsTransaction
*t
) {
2369 DnsResourceRecord
*rr
;
2374 /* Add all DNSKEY RRs from the answer that are validated by DS
2375 * RRs from the list of validated keys to the list of
2376 * validated keys. */
2378 DNS_ANSWER_FOREACH_IFINDEX(rr
, ifindex
, t
->answer
) {
2380 r
= dnssec_verify_dnskey_by_ds_search(rr
, t
->validated_keys
);
2386 /* If so, the DNSKEY is validated too. */
2387 r
= dns_answer_add_extend(&t
->validated_keys
, rr
, ifindex
, DNS_ANSWER_AUTHENTICATED
);
2395 static int dns_transaction_requires_rrsig(DnsTransaction
*t
, DnsResourceRecord
*rr
) {
2401 /* Checks if the RR we are looking for must be signed with an
2402 * RRSIG. This is used for positive responses. */
2404 if (t
->scope
->dnssec_mode
== DNSSEC_NO
)
2407 if (dns_type_is_pseudo(rr
->key
->type
))
2410 r
= dns_transaction_negative_trust_anchor_lookup(t
, dns_resource_key_name(rr
->key
));
2416 switch (rr
->key
->type
) {
2418 case DNS_TYPE_RRSIG
:
2419 /* RRSIGs are the signatures themselves, they need no signing. */
2427 /* For SOA or NS RRs we look for a matching DS transaction */
2429 SET_FOREACH(dt
, t
->dnssec_transactions
, i
) {
2431 if (dt
->key
->class != rr
->key
->class)
2433 if (dt
->key
->type
!= DNS_TYPE_DS
)
2436 r
= dns_name_equal(dns_resource_key_name(dt
->key
), dns_resource_key_name(rr
->key
));
2442 /* We found a DS transactions for the SOA/NS
2443 * RRs we are looking at. If it discovered signed DS
2444 * RRs, then we need to be signed, too. */
2446 if (!dt
->answer_authenticated
)
2449 return dns_answer_match_key(dt
->answer
, dt
->key
, NULL
);
2452 /* We found nothing that proves this is safe to leave
2453 * this unauthenticated, hence ask inist on
2454 * authentication. */
2459 case DNS_TYPE_CNAME
:
2460 case DNS_TYPE_DNAME
: {
2461 const char *parent
= NULL
;
2466 * CNAME/DNAME RRs cannot be located at a zone apex, hence look directly for the parent SOA.
2468 * DS RRs are signed if the parent is signed, hence also look at the parent SOA
2471 SET_FOREACH(dt
, t
->dnssec_transactions
, i
) {
2473 if (dt
->key
->class != rr
->key
->class)
2475 if (dt
->key
->type
!= DNS_TYPE_SOA
)
2479 parent
= dns_resource_key_name(rr
->key
);
2480 r
= dns_name_parent(&parent
);
2484 if (rr
->key
->type
== DNS_TYPE_DS
)
2487 /* A CNAME/DNAME without a parent? That's sooo weird. */
2488 log_debug("Transaction %" PRIu16
" claims CNAME/DNAME at root. Refusing.", t
->id
);
2493 r
= dns_name_equal(dns_resource_key_name(dt
->key
), parent
);
2499 return t
->answer_authenticated
;
2509 /* Any other kind of RR (including DNSKEY/NSEC/NSEC3). Let's see if our SOA lookup was authenticated */
2511 SET_FOREACH(dt
, t
->dnssec_transactions
, i
) {
2513 if (dt
->key
->class != rr
->key
->class)
2515 if (dt
->key
->type
!= DNS_TYPE_SOA
)
2518 r
= dns_name_equal(dns_resource_key_name(dt
->key
), dns_resource_key_name(rr
->key
));
2524 /* We found the transaction that was supposed to find
2525 * the SOA RR for us. It was successful, but found no
2526 * RR for us. This means we are not at a zone cut. In
2527 * this case, we require authentication if the SOA
2528 * lookup was authenticated too. */
2529 return t
->answer_authenticated
;
2536 static int dns_transaction_in_private_tld(DnsTransaction
*t
, const DnsResourceKey
*key
) {
2542 /* If DNSSEC downgrade mode is on, checks whether the
2543 * specified RR is one level below a TLD we have proven not to
2544 * exist. In such a case we assume that this is a private
2545 * domain, and permit it.
2547 * This detects cases like the Fritz!Box router networks. Each
2548 * Fritz!Box router serves a private "fritz.box" zone, in the
2549 * non-existing TLD "box". Requests for the "fritz.box" domain
2550 * are served by the router itself, while requests for the
2551 * "box" domain will result in NXDOMAIN.
2553 * Note that this logic is unable to detect cases where a
2554 * router serves a private DNS zone directly under
2555 * non-existing TLD. In such a case we cannot detect whether
2556 * the TLD is supposed to exist or not, as all requests we
2557 * make for it will be answered by the router's zone, and not
2558 * by the root zone. */
2562 if (t
->scope
->dnssec_mode
!= DNSSEC_ALLOW_DOWNGRADE
)
2563 return false; /* In strict DNSSEC mode what doesn't exist, doesn't exist */
2565 tld
= dns_resource_key_name(key
);
2566 r
= dns_name_parent(&tld
);
2570 return false; /* Already the root domain */
2572 if (!dns_name_is_single_label(tld
))
2575 SET_FOREACH(dt
, t
->dnssec_transactions
, i
) {
2577 if (dt
->key
->class != key
->class)
2580 r
= dns_name_equal(dns_resource_key_name(dt
->key
), tld
);
2586 /* We found an auxiliary lookup we did for the TLD. If
2587 * that returned with NXDOMAIN, we know the TLD didn't
2588 * exist, and hence this might be a private zone. */
2590 return dt
->answer_rcode
== DNS_RCODE_NXDOMAIN
;
2596 static int dns_transaction_requires_nsec(DnsTransaction
*t
) {
2597 char key_str
[DNS_RESOURCE_KEY_STRING_MAX
];
2606 /* Checks if we need to insist on NSEC/NSEC3 RRs for proving
2607 * this negative reply */
2609 if (t
->scope
->dnssec_mode
== DNSSEC_NO
)
2612 if (dns_type_is_pseudo(t
->key
->type
))
2615 r
= dns_transaction_negative_trust_anchor_lookup(t
, dns_resource_key_name(t
->key
));
2621 r
= dns_transaction_in_private_tld(t
, t
->key
);
2625 /* The lookup is from a TLD that is proven not to
2626 * exist, and we are in downgrade mode, hence ignore
2627 * that fact that we didn't get any NSEC RRs. */
2629 log_info("Detected a negative query %s in a private DNS zone, permitting unsigned response.",
2630 dns_resource_key_to_string(t
->key
, key_str
, sizeof key_str
));
2634 name
= dns_resource_key_name(t
->key
);
2636 if (t
->key
->type
== DNS_TYPE_DS
) {
2638 /* We got a negative reply for this DS lookup? DS RRs are signed when their parent zone is signed,
2639 * hence check the parent SOA in this case. */
2641 r
= dns_name_parent(&name
);
2647 type
= DNS_TYPE_SOA
;
2649 } else if (IN_SET(t
->key
->type
, DNS_TYPE_SOA
, DNS_TYPE_NS
))
2650 /* We got a negative reply for this SOA/NS lookup? If so, check if there's a DS RR for this */
2653 /* For all other negative replies, check for the SOA lookup */
2654 type
= DNS_TYPE_SOA
;
2656 /* For all other RRs we check the SOA on the same level to see
2657 * if it's signed. */
2659 SET_FOREACH(dt
, t
->dnssec_transactions
, i
) {
2661 if (dt
->key
->class != t
->key
->class)
2663 if (dt
->key
->type
!= type
)
2666 r
= dns_name_equal(dns_resource_key_name(dt
->key
), name
);
2672 return dt
->answer_authenticated
;
2675 /* If in doubt, require NSEC/NSEC3 */
2679 static int dns_transaction_dnskey_authenticated(DnsTransaction
*t
, DnsResourceRecord
*rr
) {
2680 DnsResourceRecord
*rrsig
;
2684 /* Checks whether any of the DNSKEYs used for the RRSIGs for
2685 * the specified RRset is authenticated (i.e. has a matching
2688 r
= dns_transaction_negative_trust_anchor_lookup(t
, dns_resource_key_name(rr
->key
));
2694 DNS_ANSWER_FOREACH(rrsig
, t
->answer
) {
2698 r
= dnssec_key_match_rrsig(rr
->key
, rrsig
);
2704 SET_FOREACH(dt
, t
->dnssec_transactions
, i
) {
2706 if (dt
->key
->class != rr
->key
->class)
2709 if (dt
->key
->type
== DNS_TYPE_DNSKEY
) {
2711 r
= dns_name_equal(dns_resource_key_name(dt
->key
), rrsig
->rrsig
.signer
);
2717 /* OK, we found an auxiliary DNSKEY
2718 * lookup. If that lookup is
2719 * authenticated, report this. */
2721 if (dt
->answer_authenticated
)
2726 } else if (dt
->key
->type
== DNS_TYPE_DS
) {
2728 r
= dns_name_equal(dns_resource_key_name(dt
->key
), rrsig
->rrsig
.signer
);
2734 /* OK, we found an auxiliary DS
2735 * lookup. If that lookup is
2736 * authenticated and non-zero, we
2739 if (!dt
->answer_authenticated
)
2742 return dns_answer_match_key(dt
->answer
, dt
->key
, NULL
);
2747 return found
? false : -ENXIO
;
2750 static int dns_transaction_known_signed(DnsTransaction
*t
, DnsResourceRecord
*rr
) {
2754 /* We know that the root domain is signed, hence if it appears
2755 * not to be signed, there's a problem with the DNS server */
2757 return rr
->key
->class == DNS_CLASS_IN
&&
2758 dns_name_is_root(dns_resource_key_name(rr
->key
));
2761 static int dns_transaction_check_revoked_trust_anchors(DnsTransaction
*t
) {
2762 DnsResourceRecord
*rr
;
2767 /* Maybe warn the user that we encountered a revoked DNSKEY
2768 * for a key from our trust anchor. Note that we don't care
2769 * whether the DNSKEY can be authenticated or not. It's
2770 * sufficient if it is self-signed. */
2772 DNS_ANSWER_FOREACH(rr
, t
->answer
) {
2773 r
= dns_trust_anchor_check_revoked(&t
->scope
->manager
->trust_anchor
, rr
, t
->answer
);
2781 static int dns_transaction_invalidate_revoked_keys(DnsTransaction
*t
) {
2787 /* Removes all DNSKEY/DS objects from t->validated_keys that
2788 * our trust anchors database considers revoked. */
2791 DnsResourceRecord
*rr
;
2795 DNS_ANSWER_FOREACH(rr
, t
->validated_keys
) {
2796 r
= dns_trust_anchor_is_revoked(&t
->scope
->manager
->trust_anchor
, rr
);
2800 r
= dns_answer_remove_by_rr(&t
->validated_keys
, rr
);
2814 static int dns_transaction_copy_validated(DnsTransaction
*t
) {
2821 /* Copy all validated RRs from the auxiliary DNSSEC transactions into our set of validated RRs */
2823 SET_FOREACH(dt
, t
->dnssec_transactions
, i
) {
2825 if (DNS_TRANSACTION_IS_LIVE(dt
->state
))
2828 if (!dt
->answer_authenticated
)
2831 r
= dns_answer_extend(&t
->validated_keys
, dt
->answer
);
2840 DNSSEC_PHASE_DNSKEY
, /* Phase #1, only validate DNSKEYs */
2841 DNSSEC_PHASE_NSEC
, /* Phase #2, only validate NSEC+NSEC3 */
2842 DNSSEC_PHASE_ALL
, /* Phase #3, validate everything else */
2845 static int dnssec_validate_records(
2849 DnsAnswer
**validated
) {
2851 DnsResourceRecord
*rr
;
2854 /* Returns negative on error, 0 if validation failed, 1 to restart validation, 2 when finished. */
2856 DNS_ANSWER_FOREACH(rr
, t
->answer
) {
2857 DnsResourceRecord
*rrsig
= NULL
;
2858 DnssecResult result
;
2860 switch (rr
->key
->type
) {
2861 case DNS_TYPE_RRSIG
:
2864 case DNS_TYPE_DNSKEY
:
2865 /* We validate DNSKEYs only in the DNSKEY and ALL phases */
2866 if (phase
== DNSSEC_PHASE_NSEC
)
2871 case DNS_TYPE_NSEC3
:
2874 /* We validate NSEC/NSEC3 only in the NSEC and ALL phases */
2875 if (phase
== DNSSEC_PHASE_DNSKEY
)
2880 /* We validate all other RRs only in the ALL phases */
2881 if (phase
!= DNSSEC_PHASE_ALL
)
2885 r
= dnssec_verify_rrset_search(t
->answer
, rr
->key
, t
->validated_keys
, USEC_INFINITY
, &result
, &rrsig
);
2889 log_debug("Looking at %s: %s", strna(dns_resource_record_to_string(rr
)), dnssec_result_to_string(result
));
2891 if (result
== DNSSEC_VALIDATED
) {
2893 if (rr
->key
->type
== DNS_TYPE_DNSKEY
) {
2894 /* If we just validated a DNSKEY RRset, then let's add these keys to
2895 * the set of validated keys for this transaction. */
2897 r
= dns_answer_copy_by_key(&t
->validated_keys
, t
->answer
, rr
->key
, DNS_ANSWER_AUTHENTICATED
);
2901 /* Some of the DNSKEYs we just added might already have been revoked,
2902 * remove them again in that case. */
2903 r
= dns_transaction_invalidate_revoked_keys(t
);
2908 /* Add the validated RRset to the new list of validated
2909 * RRsets, and remove it from the unvalidated RRsets.
2910 * We mark the RRset as authenticated and cacheable. */
2911 r
= dns_answer_move_by_key(validated
, &t
->answer
, rr
->key
, DNS_ANSWER_AUTHENTICATED
|DNS_ANSWER_CACHEABLE
);
2915 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_SECURE
, rr
->key
);
2917 /* Exit the loop, we dropped something from the answer, start from the beginning */
2921 /* If we haven't read all DNSKEYs yet a negative result of the validation is irrelevant, as
2922 * there might be more DNSKEYs coming. Similar, if we haven't read all NSEC/NSEC3 RRs yet,
2923 * we cannot do positive wildcard proofs yet, as those require the NSEC/NSEC3 RRs. */
2924 if (phase
!= DNSSEC_PHASE_ALL
)
2927 if (result
== DNSSEC_VALIDATED_WILDCARD
) {
2928 bool authenticated
= false;
2931 /* This RRset validated, but as a wildcard. This means we need
2932 * to prove via NSEC/NSEC3 that no matching non-wildcard RR exists. */
2934 /* First step, determine the source of synthesis */
2935 r
= dns_resource_record_source(rrsig
, &source
);
2939 r
= dnssec_test_positive_wildcard(*validated
,
2940 dns_resource_key_name(rr
->key
),
2942 rrsig
->rrsig
.signer
,
2945 /* Unless the NSEC proof showed that the key really doesn't exist something is off. */
2947 result
= DNSSEC_INVALID
;
2949 r
= dns_answer_move_by_key(validated
, &t
->answer
, rr
->key
,
2950 authenticated
? (DNS_ANSWER_AUTHENTICATED
|DNS_ANSWER_CACHEABLE
) : 0);
2954 manager_dnssec_verdict(t
->scope
->manager
, authenticated
? DNSSEC_SECURE
: DNSSEC_INSECURE
, rr
->key
);
2956 /* Exit the loop, we dropped something from the answer, start from the beginning */
2961 if (result
== DNSSEC_NO_SIGNATURE
) {
2962 r
= dns_transaction_requires_rrsig(t
, rr
);
2966 /* Data does not require signing. In that case, just copy it over,
2967 * but remember that this is by no means authenticated. */
2968 r
= dns_answer_move_by_key(validated
, &t
->answer
, rr
->key
, 0);
2972 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_INSECURE
, rr
->key
);
2976 r
= dns_transaction_known_signed(t
, rr
);
2980 /* This is an RR we know has to be signed. If it isn't this means
2981 * the server is not attaching RRSIGs, hence complain. */
2983 dns_server_packet_rrsig_missing(t
->server
, t
->current_feature_level
);
2985 if (t
->scope
->dnssec_mode
== DNSSEC_ALLOW_DOWNGRADE
) {
2987 /* Downgrading is OK? If so, just consider the information unsigned */
2989 r
= dns_answer_move_by_key(validated
, &t
->answer
, rr
->key
, 0);
2993 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_INSECURE
, rr
->key
);
2997 /* Otherwise, fail */
2998 t
->answer_dnssec_result
= DNSSEC_INCOMPATIBLE_SERVER
;
3002 r
= dns_transaction_in_private_tld(t
, rr
->key
);
3006 char s
[DNS_RESOURCE_KEY_STRING_MAX
];
3008 /* The data is from a TLD that is proven not to exist, and we are in downgrade
3009 * mode, hence ignore the fact that this was not signed. */
3011 log_info("Detected RRset %s is in a private DNS zone, permitting unsigned RRs.",
3012 dns_resource_key_to_string(rr
->key
, s
, sizeof s
));
3014 r
= dns_answer_move_by_key(validated
, &t
->answer
, rr
->key
, 0);
3018 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_INSECURE
, rr
->key
);
3025 DNSSEC_SIGNATURE_EXPIRED
,
3026 DNSSEC_UNSUPPORTED_ALGORITHM
)) {
3028 r
= dns_transaction_dnskey_authenticated(t
, rr
);
3029 if (r
< 0 && r
!= -ENXIO
)
3032 /* The DNSKEY transaction was not authenticated, this means there's
3033 * no DS for this, which means it's OK if no keys are found for this signature. */
3035 r
= dns_answer_move_by_key(validated
, &t
->answer
, rr
->key
, 0);
3039 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_INSECURE
, rr
->key
);
3044 r
= dns_transaction_is_primary_response(t
, rr
);
3048 /* Look for a matching DNAME for this CNAME */
3049 r
= dns_answer_has_dname_for_cname(t
->answer
, rr
);
3053 /* Also look among the stuff we already validated */
3054 r
= dns_answer_has_dname_for_cname(*validated
, rr
);
3062 DNSSEC_SIGNATURE_EXPIRED
,
3063 DNSSEC_NO_SIGNATURE
))
3064 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_BOGUS
, rr
->key
);
3065 else /* DNSSEC_MISSING_KEY or DNSSEC_UNSUPPORTED_ALGORITHM */
3066 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_INDETERMINATE
, rr
->key
);
3068 /* This is a primary response to our question, and it failed validation.
3070 t
->answer_dnssec_result
= result
;
3074 /* This is a primary response, but we do have a DNAME RR
3075 * in the RR that can replay this CNAME, hence rely on
3076 * that, and we can remove the CNAME in favour of it. */
3079 /* This is just some auxiliary data. Just remove the RRset and continue. */
3080 r
= dns_answer_remove_by_key(&t
->answer
, rr
->key
);
3084 /* We dropped something from the answer, start from the beginning. */
3088 return 2; /* Finito. */
3091 int dns_transaction_validate_dnssec(DnsTransaction
*t
) {
3092 _cleanup_(dns_answer_unrefp
) DnsAnswer
*validated
= NULL
;
3094 DnsAnswerFlags flags
;
3096 char key_str
[DNS_RESOURCE_KEY_STRING_MAX
];
3100 /* We have now collected all DS and DNSKEY RRs in
3101 * t->validated_keys, let's see which RRs we can now
3102 * authenticate with that. */
3104 if (t
->scope
->dnssec_mode
== DNSSEC_NO
)
3107 /* Already validated */
3108 if (t
->answer_dnssec_result
!= _DNSSEC_RESULT_INVALID
)
3111 /* Our own stuff needs no validation */
3112 if (IN_SET(t
->answer_source
, DNS_TRANSACTION_ZONE
, DNS_TRANSACTION_TRUST_ANCHOR
)) {
3113 t
->answer_dnssec_result
= DNSSEC_VALIDATED
;
3114 t
->answer_authenticated
= true;
3118 /* Cached stuff is not affected by validation. */
3119 if (t
->answer_source
!= DNS_TRANSACTION_NETWORK
)
3122 if (!dns_transaction_dnssec_supported_full(t
)) {
3123 /* The server does not support DNSSEC, or doesn't augment responses with RRSIGs. */
3124 t
->answer_dnssec_result
= DNSSEC_INCOMPATIBLE_SERVER
;
3125 log_debug("Not validating response for %" PRIu16
", used server feature level does not support DNSSEC.", t
->id
);
3129 log_debug("Validating response from transaction %" PRIu16
" (%s).",
3131 dns_resource_key_to_string(t
->key
, key_str
, sizeof key_str
));
3133 /* First, see if this response contains any revoked trust
3134 * anchors we care about */
3135 r
= dns_transaction_check_revoked_trust_anchors(t
);
3139 /* Third, copy all RRs we acquired successfully from auxiliary RRs over. */
3140 r
= dns_transaction_copy_validated(t
);
3144 /* Second, see if there are DNSKEYs we already know a
3145 * validated DS for. */
3146 r
= dns_transaction_validate_dnskey_by_ds(t
);
3150 /* Fourth, remove all DNSKEY and DS RRs again that our trust
3151 * anchor says are revoked. After all we might have marked
3152 * some keys revoked above, but they might still be lingering
3153 * in our validated_keys list. */
3154 r
= dns_transaction_invalidate_revoked_keys(t
);
3158 phase
= DNSSEC_PHASE_DNSKEY
;
3160 bool have_nsec
= false;
3162 r
= dnssec_validate_records(t
, phase
, &have_nsec
, &validated
);
3166 /* Try again as long as we managed to achieve something */
3170 if (phase
== DNSSEC_PHASE_DNSKEY
&& have_nsec
) {
3171 /* OK, we processed all DNSKEYs, and there are NSEC/NSEC3 RRs, look at those now. */
3172 phase
= DNSSEC_PHASE_NSEC
;
3176 if (phase
!= DNSSEC_PHASE_ALL
) {
3177 /* OK, we processed all DNSKEYs and NSEC/NSEC3 RRs, look at all the rest now.
3178 * Note that in this third phase we start to remove RRs we couldn't validate. */
3179 phase
= DNSSEC_PHASE_ALL
;
3187 dns_answer_unref(t
->answer
);
3188 t
->answer
= TAKE_PTR(validated
);
3190 /* At this point the answer only contains validated
3191 * RRsets. Now, let's see if it actually answers the question
3192 * we asked. If so, great! If it doesn't, then see if
3193 * NSEC/NSEC3 can prove this. */
3194 r
= dns_transaction_has_positive_answer(t
, &flags
);
3196 /* Yes, it answers the question! */
3198 if (flags
& DNS_ANSWER_AUTHENTICATED
) {
3199 /* The answer is fully authenticated, yay. */
3200 t
->answer_dnssec_result
= DNSSEC_VALIDATED
;
3201 t
->answer_rcode
= DNS_RCODE_SUCCESS
;
3202 t
->answer_authenticated
= true;
3204 /* The answer is not fully authenticated. */
3205 t
->answer_dnssec_result
= DNSSEC_UNSIGNED
;
3206 t
->answer_authenticated
= false;
3209 } else if (r
== 0) {
3210 DnssecNsecResult nr
;
3211 bool authenticated
= false;
3213 /* Bummer! Let's check NSEC/NSEC3 */
3214 r
= dnssec_nsec_test(t
->answer
, t
->key
, &nr
, &authenticated
, &t
->answer_nsec_ttl
);
3220 case DNSSEC_NSEC_NXDOMAIN
:
3221 /* NSEC proves the domain doesn't exist. Very good. */
3222 log_debug("Proved NXDOMAIN via NSEC/NSEC3 for transaction %u (%s)", t
->id
, key_str
);
3223 t
->answer_dnssec_result
= DNSSEC_VALIDATED
;
3224 t
->answer_rcode
= DNS_RCODE_NXDOMAIN
;
3225 t
->answer_authenticated
= authenticated
;
3227 manager_dnssec_verdict(t
->scope
->manager
, authenticated
? DNSSEC_SECURE
: DNSSEC_INSECURE
, t
->key
);
3230 case DNSSEC_NSEC_NODATA
:
3231 /* NSEC proves that there's no data here, very good. */
3232 log_debug("Proved NODATA via NSEC/NSEC3 for transaction %u (%s)", t
->id
, key_str
);
3233 t
->answer_dnssec_result
= DNSSEC_VALIDATED
;
3234 t
->answer_rcode
= DNS_RCODE_SUCCESS
;
3235 t
->answer_authenticated
= authenticated
;
3237 manager_dnssec_verdict(t
->scope
->manager
, authenticated
? DNSSEC_SECURE
: DNSSEC_INSECURE
, t
->key
);
3240 case DNSSEC_NSEC_OPTOUT
:
3241 /* NSEC3 says the data might not be signed */
3242 log_debug("Data is NSEC3 opt-out via NSEC/NSEC3 for transaction %u (%s)", t
->id
, key_str
);
3243 t
->answer_dnssec_result
= DNSSEC_UNSIGNED
;
3244 t
->answer_authenticated
= false;
3246 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_INSECURE
, t
->key
);
3249 case DNSSEC_NSEC_NO_RR
:
3250 /* No NSEC data? Bummer! */
3252 r
= dns_transaction_requires_nsec(t
);
3256 t
->answer_dnssec_result
= DNSSEC_NO_SIGNATURE
;
3257 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_BOGUS
, t
->key
);
3259 t
->answer_dnssec_result
= DNSSEC_UNSIGNED
;
3260 t
->answer_authenticated
= false;
3261 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_INSECURE
, t
->key
);
3266 case DNSSEC_NSEC_UNSUPPORTED_ALGORITHM
:
3267 /* We don't know the NSEC3 algorithm used? */
3268 t
->answer_dnssec_result
= DNSSEC_UNSUPPORTED_ALGORITHM
;
3269 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_INDETERMINATE
, t
->key
);
3272 case DNSSEC_NSEC_FOUND
:
3273 case DNSSEC_NSEC_CNAME
:
3274 /* NSEC says it needs to be there, but we couldn't find it? Bummer! */
3275 t
->answer_dnssec_result
= DNSSEC_NSEC_MISMATCH
;
3276 manager_dnssec_verdict(t
->scope
->manager
, DNSSEC_BOGUS
, t
->key
);
3280 assert_not_reached("Unexpected NSEC result.");
3287 static const char* const dns_transaction_state_table
[_DNS_TRANSACTION_STATE_MAX
] = {
3288 [DNS_TRANSACTION_NULL
] = "null",
3289 [DNS_TRANSACTION_PENDING
] = "pending",
3290 [DNS_TRANSACTION_VALIDATING
] = "validating",
3291 [DNS_TRANSACTION_RCODE_FAILURE
] = "rcode-failure",
3292 [DNS_TRANSACTION_SUCCESS
] = "success",
3293 [DNS_TRANSACTION_NO_SERVERS
] = "no-servers",
3294 [DNS_TRANSACTION_TIMEOUT
] = "timeout",
3295 [DNS_TRANSACTION_ATTEMPTS_MAX_REACHED
] = "attempts-max-reached",
3296 [DNS_TRANSACTION_INVALID_REPLY
] = "invalid-reply",
3297 [DNS_TRANSACTION_ERRNO
] = "errno",
3298 [DNS_TRANSACTION_ABORTED
] = "aborted",
3299 [DNS_TRANSACTION_DNSSEC_FAILED
] = "dnssec-failed",
3300 [DNS_TRANSACTION_NO_TRUST_ANCHOR
] = "no-trust-anchor",
3301 [DNS_TRANSACTION_RR_TYPE_UNSUPPORTED
] = "rr-type-unsupported",
3302 [DNS_TRANSACTION_NETWORK_DOWN
] = "network-down",
3303 [DNS_TRANSACTION_NOT_FOUND
] = "not-found",
3305 DEFINE_STRING_TABLE_LOOKUP(dns_transaction_state
, DnsTransactionState
);
3307 static const char* const dns_transaction_source_table
[_DNS_TRANSACTION_SOURCE_MAX
] = {
3308 [DNS_TRANSACTION_NETWORK
] = "network",
3309 [DNS_TRANSACTION_CACHE
] = "cache",
3310 [DNS_TRANSACTION_ZONE
] = "zone",
3311 [DNS_TRANSACTION_TRUST_ANCHOR
] = "trust-anchor",
3313 DEFINE_STRING_TABLE_LOOKUP(dns_transaction_source
, DnsTransactionSource
);