]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved-dns-transaction.c
tree-wide: use cocinnelle to apply _NEG_ macros
[thirdparty/systemd.git] / src / resolve / resolved-dns-transaction.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include "sd-messages.h"
4
5 #include "af-list.h"
6 #include "alloc-util.h"
7 #include "dns-domain.h"
8 #include "errno-list.h"
9 #include "errno-util.h"
10 #include "fd-util.h"
11 #include "glyph-util.h"
12 #include "random-util.h"
13 #include "resolved-dns-cache.h"
14 #include "resolved-dns-transaction.h"
15 #include "resolved-dnstls.h"
16 #include "resolved-llmnr.h"
17 #include "string-table.h"
18
19 #define TRANSACTIONS_MAX 4096
20 #define TRANSACTION_TCP_TIMEOUT_USEC (10U*USEC_PER_SEC)
21
22 /* After how much time to repeat classic DNS requests */
23 #define DNS_TIMEOUT_USEC (SD_RESOLVED_QUERY_TIMEOUT_USEC / DNS_TRANSACTION_ATTEMPTS_MAX)
24
25 static void dns_transaction_reset_answer(DnsTransaction *t) {
26 assert(t);
27
28 t->received = dns_packet_unref(t->received);
29 t->answer = dns_answer_unref(t->answer);
30 t->answer_rcode = 0;
31 t->answer_dnssec_result = _DNSSEC_RESULT_INVALID;
32 t->answer_source = _DNS_TRANSACTION_SOURCE_INVALID;
33 t->answer_query_flags = 0;
34 t->answer_nsec_ttl = UINT32_MAX;
35 t->answer_errno = 0;
36 }
37
38 static void dns_transaction_flush_dnssec_transactions(DnsTransaction *t) {
39 DnsTransaction *z;
40
41 assert(t);
42
43 while ((z = set_steal_first(t->dnssec_transactions))) {
44 set_remove(z->notify_transactions, t);
45 set_remove(z->notify_transactions_done, t);
46 dns_transaction_gc(z);
47 }
48 }
49
50 static void dns_transaction_close_connection(
51 DnsTransaction *t,
52 bool use_graveyard) { /* Set use_graveyard = false when you know the connection is already
53 * dead, for example because you got a connection error back from the
54 * kernel. In that case there's no point in keeping the fd around,
55 * hence don't. */
56 int r;
57
58 assert(t);
59
60 if (t->stream) {
61 /* Let's detach the stream from our transaction, in case something else keeps a reference to it. */
62 LIST_REMOVE(transactions_by_stream, t->stream->transactions, t);
63
64 /* Remove packet in case it's still in the queue */
65 dns_packet_unref(ordered_set_remove(t->stream->write_queue, t->sent));
66
67 t->stream = dns_stream_unref(t->stream);
68 }
69
70 t->dns_udp_event_source = sd_event_source_disable_unref(t->dns_udp_event_source);
71
72 /* If we have a UDP socket where we sent a packet, but never received one, then add it to the socket
73 * graveyard, instead of closing it right away. That way it will stick around for a moment longer,
74 * and the reply we might still get from the server will be eaten up instead of resulting in an ICMP
75 * port unreachable error message. */
76
77 if (use_graveyard && t->dns_udp_fd >= 0 && t->sent && !t->received) {
78 r = manager_add_socket_to_graveyard(t->scope->manager, t->dns_udp_fd);
79 if (r < 0)
80 log_debug_errno(r, "Failed to add UDP socket to graveyard, closing immediately: %m");
81 else
82 TAKE_FD(t->dns_udp_fd);
83 }
84
85 t->dns_udp_fd = safe_close(t->dns_udp_fd);
86 }
87
88 static void dns_transaction_stop_timeout(DnsTransaction *t) {
89 assert(t);
90
91 t->timeout_event_source = sd_event_source_disable_unref(t->timeout_event_source);
92 }
93
94 DnsTransaction* dns_transaction_free(DnsTransaction *t) {
95 DnsQueryCandidate *c;
96 DnsZoneItem *i;
97 DnsTransaction *z;
98
99 if (!t)
100 return NULL;
101
102 log_debug("Freeing transaction %" PRIu16 ".", t->id);
103
104 dns_transaction_close_connection(t, true);
105 dns_transaction_stop_timeout(t);
106
107 dns_packet_unref(t->sent);
108 dns_transaction_reset_answer(t);
109
110 dns_server_unref(t->server);
111
112 if (t->scope) {
113 if (t->key) {
114 DnsTransaction *first;
115
116 first = hashmap_get(t->scope->transactions_by_key, t->key);
117 LIST_REMOVE(transactions_by_key, first, t);
118 if (first)
119 hashmap_replace(t->scope->transactions_by_key, first->key, first);
120 else
121 hashmap_remove(t->scope->transactions_by_key, t->key);
122 }
123
124 LIST_REMOVE(transactions_by_scope, t->scope->transactions, t);
125
126 if (t->id != 0)
127 hashmap_remove(t->scope->manager->dns_transactions, UINT_TO_PTR(t->id));
128 }
129
130 while ((c = set_steal_first(t->notify_query_candidates)))
131 set_remove(c->transactions, t);
132 set_free(t->notify_query_candidates);
133
134 while ((c = set_steal_first(t->notify_query_candidates_done)))
135 set_remove(c->transactions, t);
136 set_free(t->notify_query_candidates_done);
137
138 while ((i = set_steal_first(t->notify_zone_items)))
139 i->probe_transaction = NULL;
140 set_free(t->notify_zone_items);
141
142 while ((i = set_steal_first(t->notify_zone_items_done)))
143 i->probe_transaction = NULL;
144 set_free(t->notify_zone_items_done);
145
146 while ((z = set_steal_first(t->notify_transactions)))
147 set_remove(z->dnssec_transactions, t);
148 set_free(t->notify_transactions);
149
150 while ((z = set_steal_first(t->notify_transactions_done)))
151 set_remove(z->dnssec_transactions, t);
152 set_free(t->notify_transactions_done);
153
154 dns_transaction_flush_dnssec_transactions(t);
155 set_free(t->dnssec_transactions);
156
157 dns_answer_unref(t->validated_keys);
158 dns_resource_key_unref(t->key);
159 dns_packet_unref(t->bypass);
160
161 return mfree(t);
162 }
163
164 DEFINE_TRIVIAL_CLEANUP_FUNC(DnsTransaction*, dns_transaction_free);
165
166 DnsTransaction* dns_transaction_gc(DnsTransaction *t) {
167 assert(t);
168
169 /* Returns !NULL if we can't gc yet. */
170
171 if (t->block_gc > 0)
172 return t;
173
174 if (set_isempty(t->notify_query_candidates) &&
175 set_isempty(t->notify_query_candidates_done) &&
176 set_isempty(t->notify_zone_items) &&
177 set_isempty(t->notify_zone_items_done) &&
178 set_isempty(t->notify_transactions) &&
179 set_isempty(t->notify_transactions_done))
180 return dns_transaction_free(t);
181
182 return t;
183 }
184
185 static uint16_t pick_new_id(Manager *m) {
186 uint16_t new_id;
187
188 /* Find a fresh, unused transaction id. Note that this loop is bounded because there's a limit on the
189 * number of transactions, and it's much lower than the space of IDs. */
190
191 assert_cc(TRANSACTIONS_MAX < 0xFFFF);
192
193 do
194 random_bytes(&new_id, sizeof(new_id));
195 while (new_id == 0 ||
196 hashmap_get(m->dns_transactions, UINT_TO_PTR(new_id)));
197
198 return new_id;
199 }
200
201 static int key_ok(
202 DnsScope *scope,
203 DnsResourceKey *key) {
204
205 /* Don't allow looking up invalid or pseudo RRs */
206 if (!dns_type_is_valid_query(key->type))
207 return -EINVAL;
208 if (dns_type_is_obsolete(key->type))
209 return -EOPNOTSUPP;
210
211 /* We only support the IN class */
212 if (!IN_SET(key->class, DNS_CLASS_IN, DNS_CLASS_ANY))
213 return -EOPNOTSUPP;
214
215 /* Don't allows DNSSEC RRs to be looked up via LLMNR/mDNS. They don't really make sense
216 * there, and it speeds up our queries if we refuse this early */
217 if (scope->protocol != DNS_PROTOCOL_DNS &&
218 dns_type_is_dnssec(key->type))
219 return -EOPNOTSUPP;
220
221 return 0;
222 }
223
224 int dns_transaction_new(
225 DnsTransaction **ret,
226 DnsScope *s,
227 DnsResourceKey *key,
228 DnsPacket *bypass,
229 uint64_t query_flags) {
230
231 _cleanup_(dns_transaction_freep) DnsTransaction *t = NULL;
232 int r;
233
234 assert(ret);
235 assert(s);
236
237 if (key) {
238 assert(!bypass);
239
240 r = key_ok(s, key);
241 if (r < 0)
242 return r;
243 } else {
244 DnsResourceKey *qk;
245 assert(bypass);
246
247 r = dns_packet_validate_query(bypass);
248 if (r < 0)
249 return r;
250
251 DNS_QUESTION_FOREACH(qk, bypass->question) {
252 r = key_ok(s, qk);
253 if (r < 0)
254 return r;
255 }
256 }
257
258 if (hashmap_size(s->manager->dns_transactions) >= TRANSACTIONS_MAX)
259 return -EBUSY;
260
261 r = hashmap_ensure_allocated(&s->manager->dns_transactions, NULL);
262 if (r < 0)
263 return r;
264
265 if (key) {
266 r = hashmap_ensure_allocated(&s->transactions_by_key, &dns_resource_key_hash_ops);
267 if (r < 0)
268 return r;
269 }
270
271 t = new(DnsTransaction, 1);
272 if (!t)
273 return -ENOMEM;
274
275 *t = (DnsTransaction) {
276 .dns_udp_fd = -EBADF,
277 .answer_source = _DNS_TRANSACTION_SOURCE_INVALID,
278 .answer_dnssec_result = _DNSSEC_RESULT_INVALID,
279 .answer_nsec_ttl = UINT32_MAX,
280 .key = dns_resource_key_ref(key),
281 .query_flags = query_flags,
282 .bypass = dns_packet_ref(bypass),
283 .current_feature_level = _DNS_SERVER_FEATURE_LEVEL_INVALID,
284 .clamp_feature_level_servfail = _DNS_SERVER_FEATURE_LEVEL_INVALID,
285 .id = pick_new_id(s->manager),
286 };
287
288 r = hashmap_put(s->manager->dns_transactions, UINT_TO_PTR(t->id), t);
289 if (r < 0) {
290 t->id = 0;
291 return r;
292 }
293
294 if (t->key) {
295 DnsTransaction *first;
296
297 first = hashmap_get(s->transactions_by_key, t->key);
298 LIST_PREPEND(transactions_by_key, first, t);
299
300 r = hashmap_replace(s->transactions_by_key, first->key, first);
301 if (r < 0) {
302 LIST_REMOVE(transactions_by_key, first, t);
303 return r;
304 }
305 }
306
307 LIST_PREPEND(transactions_by_scope, s->transactions, t);
308 t->scope = s;
309
310 s->manager->n_transactions_total++;
311
312 if (ret)
313 *ret = t;
314
315 TAKE_PTR(t);
316 return 0;
317 }
318
319 static void dns_transaction_shuffle_id(DnsTransaction *t) {
320 uint16_t new_id;
321 assert(t);
322
323 /* Pick a new ID for this transaction. */
324
325 new_id = pick_new_id(t->scope->manager);
326 assert_se(hashmap_remove_and_put(t->scope->manager->dns_transactions, UINT_TO_PTR(t->id), UINT_TO_PTR(new_id), t) >= 0);
327
328 log_debug("Transaction %" PRIu16 " is now %" PRIu16 ".", t->id, new_id);
329 t->id = new_id;
330
331 /* Make sure we generate a new packet with the new ID */
332 t->sent = dns_packet_unref(t->sent);
333 }
334
335 static void dns_transaction_tentative(DnsTransaction *t, DnsPacket *p) {
336 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
337 DnsZoneItem *z;
338
339 assert(t);
340 assert(p);
341 assert(t->scope->protocol == DNS_PROTOCOL_LLMNR);
342
343 if (manager_packet_from_local_address(t->scope->manager, p) != 0)
344 return;
345
346 log_debug("Transaction %" PRIu16 " for <%s> on scope %s on %s/%s got tentative packet from %s.",
347 t->id,
348 dns_resource_key_to_string(dns_transaction_key(t), key_str, sizeof key_str),
349 dns_protocol_to_string(t->scope->protocol),
350 t->scope->link ? t->scope->link->ifname : "*",
351 af_to_name_short(t->scope->family),
352 IN_ADDR_TO_STRING(p->family, &p->sender));
353
354 /* RFC 4795, Section 4.1 says that the peer with the
355 * lexicographically smaller IP address loses */
356 if (memcmp(&p->sender, &p->destination, FAMILY_ADDRESS_SIZE(p->family)) >= 0) {
357 log_debug("Peer has lexicographically larger IP address and thus lost in the conflict.");
358 return;
359 }
360
361 log_debug("We have the lexicographically larger IP address and thus lost in the conflict.");
362
363 t->block_gc++;
364
365 while ((z = set_first(t->notify_zone_items))) {
366 /* First, make sure the zone item drops the reference
367 * to us */
368 dns_zone_item_probe_stop(z);
369
370 /* Secondly, report this as conflict, so that we might
371 * look for a different hostname */
372 dns_zone_item_conflict(z);
373 }
374 t->block_gc--;
375
376 dns_transaction_gc(t);
377 }
378
379 void dns_transaction_complete(DnsTransaction *t, DnsTransactionState state) {
380 DnsQueryCandidate *c;
381 DnsZoneItem *z;
382 DnsTransaction *d;
383 const char *st;
384 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
385
386 assert(t);
387 assert(!DNS_TRANSACTION_IS_LIVE(state));
388
389 if (state == DNS_TRANSACTION_DNSSEC_FAILED) {
390 dns_resource_key_to_string(dns_transaction_key(t), key_str, sizeof key_str);
391
392 log_struct(LOG_NOTICE,
393 "MESSAGE_ID=" SD_MESSAGE_DNSSEC_FAILURE_STR,
394 LOG_MESSAGE("DNSSEC validation failed for question %s: %s",
395 key_str, dnssec_result_to_string(t->answer_dnssec_result)),
396 "DNS_TRANSACTION=%" PRIu16, t->id,
397 "DNS_QUESTION=%s", key_str,
398 "DNSSEC_RESULT=%s", dnssec_result_to_string(t->answer_dnssec_result),
399 "DNS_SERVER=%s", strna(dns_server_string_full(t->server)),
400 "DNS_SERVER_FEATURE_LEVEL=%s", dns_server_feature_level_to_string(t->server->possible_feature_level));
401 }
402
403 /* Note that this call might invalidate the query. Callers
404 * should hence not attempt to access the query or transaction
405 * after calling this function. */
406
407 if (state == DNS_TRANSACTION_ERRNO)
408 st = errno_to_name(t->answer_errno);
409 else
410 st = dns_transaction_state_to_string(state);
411
412 log_debug("%s transaction %" PRIu16 " for <%s> on scope %s on %s/%s now complete with <%s> from %s (%s; %s).",
413 t->bypass ? "Bypass" : "Regular",
414 t->id,
415 dns_resource_key_to_string(dns_transaction_key(t), key_str, sizeof key_str),
416 dns_protocol_to_string(t->scope->protocol),
417 t->scope->link ? t->scope->link->ifname : "*",
418 af_to_name_short(t->scope->family),
419 st,
420 t->answer_source < 0 ? "none" : dns_transaction_source_to_string(t->answer_source),
421 FLAGS_SET(t->query_flags, SD_RESOLVED_NO_VALIDATE) ? "not validated" :
422 (FLAGS_SET(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED) ? "authenticated" : "unsigned"),
423 FLAGS_SET(t->answer_query_flags, SD_RESOLVED_CONFIDENTIAL) ? "confidential" : "non-confidential");
424
425 t->state = state;
426
427 dns_transaction_close_connection(t, true);
428 dns_transaction_stop_timeout(t);
429
430 /* Notify all queries that are interested, but make sure the
431 * transaction isn't freed while we are still looking at it */
432 t->block_gc++;
433
434 SET_FOREACH_MOVE(c, t->notify_query_candidates_done, t->notify_query_candidates)
435 dns_query_candidate_notify(c);
436 SWAP_TWO(t->notify_query_candidates, t->notify_query_candidates_done);
437
438 SET_FOREACH_MOVE(z, t->notify_zone_items_done, t->notify_zone_items)
439 dns_zone_item_notify(z);
440 SWAP_TWO(t->notify_zone_items, t->notify_zone_items_done);
441 if (t->probing && t->state == DNS_TRANSACTION_ATTEMPTS_MAX_REACHED)
442 (void) dns_scope_announce(t->scope, false);
443
444 SET_FOREACH_MOVE(d, t->notify_transactions_done, t->notify_transactions)
445 dns_transaction_notify(d, t);
446 SWAP_TWO(t->notify_transactions, t->notify_transactions_done);
447
448 t->block_gc--;
449 dns_transaction_gc(t);
450 }
451
452 static void dns_transaction_complete_errno(DnsTransaction *t, int error) {
453 assert(t);
454 assert(error != 0);
455
456 t->answer_errno = abs(error);
457 dns_transaction_complete(t, DNS_TRANSACTION_ERRNO);
458 }
459
460 static int dns_transaction_pick_server(DnsTransaction *t) {
461 DnsServer *server;
462
463 assert(t);
464 assert(t->scope->protocol == DNS_PROTOCOL_DNS);
465
466 /* Pick a DNS server and a feature level for it. */
467
468 server = dns_scope_get_dns_server(t->scope);
469 if (!server)
470 return -ESRCH;
471
472 /* If we changed the server invalidate the feature level clamping, as the new server might have completely
473 * different properties. */
474 if (server != t->server)
475 t->clamp_feature_level_servfail = _DNS_SERVER_FEATURE_LEVEL_INVALID;
476
477 t->current_feature_level = dns_server_possible_feature_level(server);
478
479 /* Clamp the feature level if that is requested. */
480 if (t->clamp_feature_level_servfail != _DNS_SERVER_FEATURE_LEVEL_INVALID &&
481 t->current_feature_level > t->clamp_feature_level_servfail)
482 t->current_feature_level = t->clamp_feature_level_servfail;
483
484 log_debug("Using feature level %s for transaction %u.", dns_server_feature_level_to_string(t->current_feature_level), t->id);
485
486 if (server == t->server)
487 return 0;
488
489 dns_server_unref(t->server);
490 t->server = dns_server_ref(server);
491
492 t->n_picked_servers ++;
493
494 log_debug("Using DNS server %s for transaction %u.", strna(dns_server_string_full(t->server)), t->id);
495
496 return 1;
497 }
498
499 static void dns_transaction_retry(DnsTransaction *t, bool next_server) {
500 int r;
501
502 assert(t);
503
504 /* Retries the transaction as it is, possibly on a different server */
505
506 if (next_server && t->scope->protocol == DNS_PROTOCOL_DNS)
507 log_debug("Retrying transaction %" PRIu16 ", after switching servers.", t->id);
508 else
509 log_debug("Retrying transaction %" PRIu16 ".", t->id);
510
511 /* Before we try again, switch to a new server. */
512 if (next_server)
513 dns_scope_next_dns_server(t->scope, t->server);
514
515 r = dns_transaction_go(t);
516 if (r < 0)
517 dns_transaction_complete_errno(t, r);
518 }
519
520 static bool dns_transaction_limited_retry(DnsTransaction *t) {
521 assert(t);
522
523 /* If we haven't tried all different servers yet, let's try again with a different server */
524
525 if (t->n_picked_servers >= dns_scope_get_n_dns_servers(t->scope))
526 return false;
527
528 dns_transaction_retry(t, /* next_server= */ true);
529 return true;
530 }
531
532 static int dns_transaction_maybe_restart(DnsTransaction *t) {
533 int r;
534
535 assert(t);
536
537 /* Restarts the transaction, under a new ID if the feature level of the server changed since we first
538 * tried, without changing DNS server. Returns > 0 if the transaction was restarted, 0 if not. */
539
540 if (!t->server)
541 return 0;
542
543 if (t->current_feature_level <= dns_server_possible_feature_level(t->server))
544 return 0;
545
546 /* The server's current feature level is lower than when we sent the original query. We learnt something from
547 the response or possibly an auxiliary DNSSEC response that we didn't know before. We take that as reason to
548 restart the whole transaction. This is a good idea to deal with servers that respond rubbish if we include
549 OPT RR or DO bit. One of these cases is documented here, for example:
550 https://open.nlnetlabs.nl/pipermail/dnssec-trigger/2014-November/000376.html */
551
552 log_debug("Server feature level is now lower than when we began our transaction. Restarting with new ID.");
553 dns_transaction_shuffle_id(t);
554
555 r = dns_transaction_go(t);
556 if (r < 0)
557 return r;
558
559 return 1;
560 }
561
562 static void on_transaction_stream_error(DnsTransaction *t, int error) {
563 assert(t);
564
565 dns_transaction_close_connection(t, true);
566
567 if (ERRNO_IS_DISCONNECT(error)) {
568 if (t->scope->protocol == DNS_PROTOCOL_LLMNR) {
569 /* If the LLMNR/TCP connection failed, the host doesn't support LLMNR, and we cannot answer the
570 * question on this scope. */
571 dns_transaction_complete(t, DNS_TRANSACTION_NOT_FOUND);
572 return;
573 }
574
575 dns_transaction_retry(t, true);
576 return;
577 }
578 if (error != 0)
579 dns_transaction_complete_errno(t, error);
580 }
581
582 static int dns_transaction_on_stream_packet(DnsTransaction *t, DnsStream *s, DnsPacket *p) {
583 bool encrypted;
584
585 assert(t);
586 assert(s);
587 assert(p);
588
589 encrypted = s->encrypted;
590
591 dns_transaction_close_connection(t, true);
592
593 if (dns_packet_validate_reply(p) <= 0) {
594 log_debug("Invalid TCP reply packet.");
595 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
596 return 0;
597 }
598
599 dns_scope_check_conflicts(t->scope, p);
600
601 t->block_gc++;
602 dns_transaction_process_reply(t, p, encrypted);
603 t->block_gc--;
604
605 /* If the response wasn't useful, then complete the transition
606 * now. After all, we are the worst feature set now with TCP
607 * sockets, and there's really no point in retrying. */
608 if (t->state == DNS_TRANSACTION_PENDING)
609 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
610 else
611 dns_transaction_gc(t);
612
613 return 0;
614 }
615
616 static int on_stream_complete(DnsStream *s, int error) {
617 assert(s);
618
619 if (ERRNO_IS_DISCONNECT(error) && s->protocol != DNS_PROTOCOL_LLMNR) {
620 log_debug_errno(error, "Connection failure for DNS TCP stream: %m");
621
622 if (s->transactions) {
623 DnsTransaction *t;
624
625 t = s->transactions;
626 dns_server_packet_lost(t->server, IPPROTO_TCP, t->current_feature_level);
627 }
628 }
629
630 if (error != 0)
631 LIST_FOREACH(transactions_by_stream, t, s->transactions)
632 on_transaction_stream_error(t, error);
633
634 return 0;
635 }
636
637 static int on_stream_packet(DnsStream *s, DnsPacket *p) {
638 DnsTransaction *t;
639
640 assert(s);
641 assert(s->manager);
642 assert(p);
643
644 t = hashmap_get(s->manager->dns_transactions, UINT_TO_PTR(DNS_PACKET_ID(p)));
645 if (t && t->stream == s) /* Validate that the stream we got this on actually is the stream the
646 * transaction was using. */
647 return dns_transaction_on_stream_packet(t, s, p);
648
649 /* Ignore incorrect transaction id as an old transaction can have been canceled. */
650 log_debug("Received unexpected TCP reply packet with id %" PRIu16 ", ignoring.", DNS_PACKET_ID(p));
651 return 0;
652 }
653
654 static uint16_t dns_transaction_port(DnsTransaction *t) {
655 assert(t);
656
657 if (t->server->port > 0)
658 return t->server->port;
659
660 return DNS_SERVER_FEATURE_LEVEL_IS_TLS(t->current_feature_level) ? 853 : 53;
661 }
662
663 static int dns_transaction_emit_tcp(DnsTransaction *t) {
664 usec_t stream_timeout_usec = DNS_STREAM_DEFAULT_TIMEOUT_USEC;
665 _cleanup_(dns_stream_unrefp) DnsStream *s = NULL;
666 _cleanup_close_ int fd = -EBADF;
667 union sockaddr_union sa;
668 DnsStreamType type;
669 int r;
670
671 assert(t);
672 assert(t->sent);
673
674 dns_transaction_close_connection(t, true);
675
676 switch (t->scope->protocol) {
677
678 case DNS_PROTOCOL_DNS:
679 r = dns_transaction_pick_server(t);
680 if (r < 0)
681 return r;
682
683 if (manager_server_is_stub(t->scope->manager, t->server))
684 return -ELOOP;
685
686 if (!t->bypass) {
687 if (!dns_server_dnssec_supported(t->server) && dns_type_is_dnssec(dns_transaction_key(t)->type))
688 return -EOPNOTSUPP;
689
690 r = dns_server_adjust_opt(t->server, t->sent, t->current_feature_level);
691 if (r < 0)
692 return r;
693 }
694
695 if (t->server->stream && (DNS_SERVER_FEATURE_LEVEL_IS_TLS(t->current_feature_level) == t->server->stream->encrypted))
696 s = dns_stream_ref(t->server->stream);
697 else
698 fd = dns_scope_socket_tcp(t->scope, AF_UNSPEC, NULL, t->server, dns_transaction_port(t), &sa);
699
700 /* Lower timeout in DNS-over-TLS opportunistic mode. In environments where DoT is blocked
701 * without ICMP response overly long delays when contacting DoT servers are nasty, in
702 * particular if multiple DNS servers are defined which we try in turn and all are
703 * blocked. Hence, substantially lower the timeout in that case. */
704 if (DNS_SERVER_FEATURE_LEVEL_IS_TLS(t->current_feature_level) &&
705 dns_server_get_dns_over_tls_mode(t->server) == DNS_OVER_TLS_OPPORTUNISTIC)
706 stream_timeout_usec = DNS_STREAM_OPPORTUNISTIC_TLS_TIMEOUT_USEC;
707
708 type = DNS_STREAM_LOOKUP;
709 break;
710
711 case DNS_PROTOCOL_LLMNR:
712 /* When we already received a reply to this (but it was truncated), send to its sender address */
713 if (t->received)
714 fd = dns_scope_socket_tcp(t->scope, t->received->family, &t->received->sender, NULL, t->received->sender_port, &sa);
715 else {
716 union in_addr_union address;
717 int family = AF_UNSPEC;
718
719 /* Otherwise, try to talk to the owner of a
720 * the IP address, in case this is a reverse
721 * PTR lookup */
722
723 r = dns_name_address(dns_resource_key_name(dns_transaction_key(t)), &family, &address);
724 if (r < 0)
725 return r;
726 if (r == 0)
727 return -EINVAL;
728 if (family != t->scope->family)
729 return -ESRCH;
730
731 fd = dns_scope_socket_tcp(t->scope, family, &address, NULL, LLMNR_PORT, &sa);
732 }
733
734 type = DNS_STREAM_LLMNR_SEND;
735 break;
736
737 default:
738 return -EAFNOSUPPORT;
739 }
740
741 if (!s) {
742 if (fd < 0)
743 return fd;
744
745 r = dns_stream_new(t->scope->manager, &s, type, t->scope->protocol, fd, &sa,
746 on_stream_packet, on_stream_complete, stream_timeout_usec);
747 if (r < 0)
748 return r;
749
750 fd = -EBADF;
751
752 #if ENABLE_DNS_OVER_TLS
753 if (t->scope->protocol == DNS_PROTOCOL_DNS &&
754 DNS_SERVER_FEATURE_LEVEL_IS_TLS(t->current_feature_level)) {
755
756 assert(t->server);
757 r = dnstls_stream_connect_tls(s, t->server);
758 if (r < 0)
759 return r;
760 }
761 #endif
762
763 if (t->server) {
764 dns_server_unref_stream(t->server);
765 s->server = dns_server_ref(t->server);
766 t->server->stream = dns_stream_ref(s);
767 }
768
769 /* The interface index is difficult to determine if we are
770 * connecting to the local host, hence fill this in right away
771 * instead of determining it from the socket */
772 s->ifindex = dns_scope_ifindex(t->scope);
773 }
774
775 t->stream = TAKE_PTR(s);
776 LIST_PREPEND(transactions_by_stream, t->stream->transactions, t);
777
778 r = dns_stream_write_packet(t->stream, t->sent);
779 if (r < 0) {
780 dns_transaction_close_connection(t, /* use_graveyard= */ false);
781 return r;
782 }
783
784 dns_transaction_reset_answer(t);
785
786 t->tried_stream = true;
787
788 return 0;
789 }
790
791 static void dns_transaction_cache_answer(DnsTransaction *t) {
792 assert(t);
793
794 /* For mDNS we cache whenever we get the packet, rather than
795 * in each transaction. */
796 if (!IN_SET(t->scope->protocol, DNS_PROTOCOL_DNS, DNS_PROTOCOL_LLMNR))
797 return;
798
799 /* Caching disabled? */
800 if (t->scope->manager->enable_cache == DNS_CACHE_MODE_NO)
801 return;
802
803 /* If validation is turned off for this transaction, but DNSSEC is on, then let's not cache this */
804 if (FLAGS_SET(t->query_flags, SD_RESOLVED_NO_VALIDATE) && t->scope->dnssec_mode != DNSSEC_NO)
805 return;
806
807 /* Packet from localhost? */
808 if (!t->scope->manager->cache_from_localhost &&
809 in_addr_is_localhost(t->received->family, &t->received->sender) != 0)
810 return;
811
812 dns_cache_put(&t->scope->cache,
813 t->scope->manager->enable_cache,
814 t->scope->protocol,
815 dns_transaction_key(t),
816 t->answer_rcode,
817 t->answer,
818 DNS_PACKET_CD(t->received) ? t->received : NULL, /* only cache full packets with CD on,
819 * since our usecase for caching them
820 * is "bypass" mode which is only
821 * enabled for CD packets. */
822 t->answer_query_flags,
823 t->answer_dnssec_result,
824 t->answer_nsec_ttl,
825 t->received->family,
826 &t->received->sender,
827 t->scope->manager->stale_retention_usec);
828 }
829
830 static bool dns_transaction_dnssec_is_live(DnsTransaction *t) {
831 DnsTransaction *dt;
832
833 assert(t);
834
835 SET_FOREACH(dt, t->dnssec_transactions)
836 if (DNS_TRANSACTION_IS_LIVE(dt->state))
837 return true;
838
839 return false;
840 }
841
842 static int dns_transaction_dnssec_ready(DnsTransaction *t) {
843 DnsTransaction *dt;
844 int r;
845
846 assert(t);
847
848 /* Checks whether the auxiliary DNSSEC transactions of our transaction have completed, or are still
849 * ongoing. Returns 0, if we aren't ready for the DNSSEC validation, positive if we are. */
850
851 SET_FOREACH(dt, t->dnssec_transactions) {
852
853 switch (dt->state) {
854
855 case DNS_TRANSACTION_NULL:
856 case DNS_TRANSACTION_PENDING:
857 case DNS_TRANSACTION_VALIDATING:
858 /* Still ongoing */
859 return 0;
860
861 case DNS_TRANSACTION_RCODE_FAILURE:
862 if (!IN_SET(dt->answer_rcode, DNS_RCODE_NXDOMAIN, DNS_RCODE_SERVFAIL)) {
863 log_debug("Auxiliary DNSSEC RR query failed with rcode=%s.", FORMAT_DNS_RCODE(dt->answer_rcode));
864 goto fail;
865 }
866
867 /* Fall-through: NXDOMAIN/SERVFAIL is good enough for us. This is because some DNS servers
868 * erroneously return NXDOMAIN/SERVFAIL for empty non-terminals (Akamai...) or missing DS
869 * records (Facebook), and we need to handle that nicely, when asking for parent SOA or similar
870 * RRs to make unsigned proofs. */
871
872 case DNS_TRANSACTION_SUCCESS:
873 /* All good. */
874 break;
875
876 case DNS_TRANSACTION_DNSSEC_FAILED:
877 /* We handle DNSSEC failures different from other errors, as we care about the DNSSEC
878 * validation result */
879
880 log_debug("Auxiliary DNSSEC RR query failed validation: %s", dnssec_result_to_string(dt->answer_dnssec_result));
881 t->answer_dnssec_result = dt->answer_dnssec_result; /* Copy error code over */
882 dns_transaction_complete(t, DNS_TRANSACTION_DNSSEC_FAILED);
883 return 0;
884
885 default:
886 log_debug("Auxiliary DNSSEC RR query failed with %s", dns_transaction_state_to_string(dt->state));
887 goto fail;
888 }
889 }
890
891 /* All is ready, we can go and validate */
892 return 1;
893
894 fail:
895 /* Some auxiliary DNSSEC transaction failed for some reason. Maybe we learned something about the
896 * server due to this failure, and the feature level is now different? Let's see and restart the
897 * transaction if so. If not, let's propagate the auxiliary failure.
898 *
899 * This is particularly relevant if an auxiliary request figured out that DNSSEC doesn't work, and we
900 * are in permissive DNSSEC mode, and thus should restart things without DNSSEC magic. */
901 r = dns_transaction_maybe_restart(t);
902 if (r < 0)
903 return r;
904 if (r > 0)
905 return 0; /* don't validate just yet, we restarted things */
906
907 t->answer_dnssec_result = DNSSEC_FAILED_AUXILIARY;
908 dns_transaction_complete(t, DNS_TRANSACTION_DNSSEC_FAILED);
909 return 0;
910 }
911
912 static void dns_transaction_process_dnssec(DnsTransaction *t) {
913 int r;
914
915 assert(t);
916
917 /* Are there ongoing DNSSEC transactions? If so, let's wait for them. */
918 r = dns_transaction_dnssec_ready(t);
919 if (r < 0)
920 goto fail;
921 if (r == 0) /* We aren't ready yet (or one of our auxiliary transactions failed, and we shouldn't validate now */
922 return;
923
924 /* See if we learnt things from the additional DNSSEC transactions, that we didn't know before, and better
925 * restart the lookup immediately. */
926 r = dns_transaction_maybe_restart(t);
927 if (r < 0)
928 goto fail;
929 if (r > 0) /* Transaction got restarted... */
930 return;
931
932 /* All our auxiliary DNSSEC transactions are complete now. Try
933 * to validate our RRset now. */
934 r = dns_transaction_validate_dnssec(t);
935 if (r == -EBADMSG) {
936 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
937 return;
938 }
939 if (r < 0)
940 goto fail;
941
942 if (t->answer_dnssec_result == DNSSEC_INCOMPATIBLE_SERVER &&
943 t->scope->dnssec_mode == DNSSEC_YES) {
944
945 /* We are not in automatic downgrade mode, and the server is bad. Let's try a different server, maybe
946 * that works. */
947
948 if (dns_transaction_limited_retry(t))
949 return;
950
951 /* OK, let's give up, apparently all servers we tried didn't work. */
952 dns_transaction_complete(t, DNS_TRANSACTION_DNSSEC_FAILED);
953 return;
954 }
955
956 if (!IN_SET(t->answer_dnssec_result,
957 _DNSSEC_RESULT_INVALID, /* No DNSSEC validation enabled */
958 DNSSEC_VALIDATED, /* Answer is signed and validated successfully */
959 DNSSEC_UNSIGNED, /* Answer is right-fully unsigned */
960 DNSSEC_INCOMPATIBLE_SERVER)) { /* Server does not do DNSSEC (Yay, we are downgrade attack vulnerable!) */
961 dns_transaction_complete(t, DNS_TRANSACTION_DNSSEC_FAILED);
962 return;
963 }
964
965 if (t->answer_dnssec_result == DNSSEC_INCOMPATIBLE_SERVER)
966 dns_server_warn_downgrade(t->server);
967
968 dns_transaction_cache_answer(t);
969
970 if (t->answer_rcode == DNS_RCODE_SUCCESS)
971 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
972 else
973 dns_transaction_complete(t, DNS_TRANSACTION_RCODE_FAILURE);
974
975 return;
976
977 fail:
978 dns_transaction_complete_errno(t, r);
979 }
980
981 static int dns_transaction_has_positive_answer(DnsTransaction *t, DnsAnswerFlags *flags) {
982 int r;
983
984 assert(t);
985
986 /* Checks whether the answer is positive, i.e. either a direct
987 * answer to the question, or a CNAME/DNAME for it */
988
989 r = dns_answer_match_key(t->answer, dns_transaction_key(t), flags);
990 if (r != 0)
991 return r;
992
993 r = dns_answer_find_cname_or_dname(t->answer, dns_transaction_key(t), NULL, flags);
994 if (r != 0)
995 return r;
996
997 return false;
998 }
999
1000 static int dns_transaction_fix_rcode(DnsTransaction *t) {
1001 int r;
1002
1003 assert(t);
1004
1005 /* Fix up the RCODE to SUCCESS if we get at least one matching RR in a response. Note that this contradicts the
1006 * DNS RFCs a bit. Specifically, RFC 6604 Section 3 clarifies that the RCODE shall say something about a
1007 * CNAME/DNAME chain element coming after the last chain element contained in the message, and not the first
1008 * one included. However, it also indicates that not all DNS servers implement this correctly. Moreover, when
1009 * using DNSSEC we usually only can prove the first element of a CNAME/DNAME chain anyway, hence let's settle
1010 * on always processing the RCODE as referring to the immediate look-up we do, i.e. the first element of a
1011 * CNAME/DNAME chain. This way, we uniformly handle CNAME/DNAME chains, regardless if the DNS server
1012 * incorrectly implements RCODE, whether DNSSEC is in use, or whether the DNS server only supplied us with an
1013 * incomplete CNAME/DNAME chain.
1014 *
1015 * Or in other words: if we get at least one positive reply in a message we patch NXDOMAIN to become SUCCESS,
1016 * and then rely on the CNAME chasing logic to figure out that there's actually a CNAME error with a new
1017 * lookup. */
1018
1019 if (t->answer_rcode != DNS_RCODE_NXDOMAIN)
1020 return 0;
1021
1022 r = dns_transaction_has_positive_answer(t, NULL);
1023 if (r <= 0)
1024 return r;
1025
1026 t->answer_rcode = DNS_RCODE_SUCCESS;
1027 return 0;
1028 }
1029
1030 void dns_transaction_process_reply(DnsTransaction *t, DnsPacket *p, bool encrypted) {
1031 bool retry_with_tcp = false;
1032 int r;
1033
1034 assert(t);
1035 assert(p);
1036 assert(t->scope);
1037 assert(t->scope->manager);
1038
1039 if (t->state != DNS_TRANSACTION_PENDING)
1040 return;
1041
1042 /* Increment the total failure counter only when it is the first attempt at querying and the upstream
1043 * server returns a failure response code. This ensures a more accurate count of the number of queries
1044 * that received a failure response code, as it doesn't consider retries. */
1045
1046 if (t->n_attempts == 1 && !IN_SET(DNS_PACKET_RCODE(p), DNS_RCODE_SUCCESS, DNS_RCODE_NXDOMAIN))
1047 t->scope->manager->n_failure_responses_total++;
1048
1049 /* Note that this call might invalidate the query. Callers
1050 * should hence not attempt to access the query or transaction
1051 * after calling this function. */
1052
1053 log_debug("Processing incoming packet of size %zu on transaction %" PRIu16" (rcode=%s).",
1054 p->size,
1055 t->id, FORMAT_DNS_RCODE(DNS_PACKET_RCODE(p)));
1056
1057 switch (t->scope->protocol) {
1058
1059 case DNS_PROTOCOL_LLMNR:
1060 /* For LLMNR we will not accept any packets from other interfaces */
1061
1062 if (p->ifindex != dns_scope_ifindex(t->scope))
1063 return;
1064
1065 if (p->family != t->scope->family)
1066 return;
1067
1068 /* Tentative packets are not full responses but still
1069 * useful for identifying uniqueness conflicts during
1070 * probing. */
1071 if (DNS_PACKET_LLMNR_T(p)) {
1072 dns_transaction_tentative(t, p);
1073 return;
1074 }
1075
1076 break;
1077
1078 case DNS_PROTOCOL_MDNS:
1079 /* For mDNS we will not accept any packets from other interfaces */
1080
1081 if (p->ifindex != dns_scope_ifindex(t->scope))
1082 return;
1083
1084 if (p->family != t->scope->family)
1085 return;
1086
1087 break;
1088
1089 case DNS_PROTOCOL_DNS:
1090 /* Note that we do not need to verify the
1091 * addresses/port numbers of incoming traffic, as we
1092 * invoked connect() on our UDP socket in which case
1093 * the kernel already does the needed verification for
1094 * us. */
1095 break;
1096
1097 default:
1098 assert_not_reached();
1099 }
1100
1101 if (t->received != p)
1102 DNS_PACKET_REPLACE(t->received, dns_packet_ref(p));
1103
1104 t->answer_source = DNS_TRANSACTION_NETWORK;
1105
1106 if (p->ipproto == IPPROTO_TCP) {
1107 if (DNS_PACKET_TC(p)) {
1108 /* Truncated via TCP? Somebody must be fucking with us */
1109 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
1110 return;
1111 }
1112
1113 if (DNS_PACKET_ID(p) != t->id) {
1114 /* Not the reply to our query? Somebody must be fucking with us */
1115 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
1116 return;
1117 }
1118 }
1119
1120 switch (t->scope->protocol) {
1121
1122 case DNS_PROTOCOL_DNS:
1123 assert(t->server);
1124
1125 if (!t->bypass &&
1126 IN_SET(DNS_PACKET_RCODE(p), DNS_RCODE_FORMERR, DNS_RCODE_SERVFAIL, DNS_RCODE_NOTIMP)) {
1127
1128 /* Request failed, immediately try again with reduced features */
1129
1130 if (t->current_feature_level <= DNS_SERVER_FEATURE_LEVEL_UDP) {
1131
1132 /* This was already at UDP feature level? If so, it doesn't make sense to downgrade
1133 * this transaction anymore, but let's see if it might make sense to send the request
1134 * to a different DNS server instead. If not let's process the response, and accept the
1135 * rcode. Note that we don't retry on TCP, since that's a suitable way to mitigate
1136 * packet loss, but is not going to give us better rcodes should we actually have
1137 * managed to get them already at UDP level. */
1138
1139 if (dns_transaction_limited_retry(t))
1140 return;
1141
1142 /* Give up, accept the rcode */
1143 log_debug("Server returned error: %s", FORMAT_DNS_RCODE(DNS_PACKET_RCODE(p)));
1144 break;
1145 }
1146
1147 /* SERVFAIL can happen for many reasons and may be transient.
1148 * To avoid unnecessary downgrades retry once with the initial level.
1149 * Check for clamp_feature_level_servfail having an invalid value as a sign that this is the
1150 * first attempt to downgrade. If so, clamp to the current value so that the transaction
1151 * is retried without actually downgrading. If the next try also fails we will downgrade by
1152 * hitting the else branch below. */
1153 if (DNS_PACKET_RCODE(p) == DNS_RCODE_SERVFAIL &&
1154 t->clamp_feature_level_servfail < 0) {
1155 t->clamp_feature_level_servfail = t->current_feature_level;
1156 log_debug("Server returned error %s, retrying transaction.",
1157 FORMAT_DNS_RCODE(DNS_PACKET_RCODE(p)));
1158 } else {
1159 /* Reduce this feature level by one and try again. */
1160 switch (t->current_feature_level) {
1161 case DNS_SERVER_FEATURE_LEVEL_TLS_DO:
1162 t->clamp_feature_level_servfail = DNS_SERVER_FEATURE_LEVEL_TLS_PLAIN;
1163 break;
1164 case DNS_SERVER_FEATURE_LEVEL_TLS_PLAIN + 1:
1165 /* Skip plain TLS when TLS is not supported */
1166 t->clamp_feature_level_servfail = DNS_SERVER_FEATURE_LEVEL_TLS_PLAIN - 1;
1167 break;
1168 default:
1169 t->clamp_feature_level_servfail = t->current_feature_level - 1;
1170 }
1171
1172 log_debug("Server returned error %s, retrying transaction with reduced feature level %s.",
1173 FORMAT_DNS_RCODE(DNS_PACKET_RCODE(p)),
1174 dns_server_feature_level_to_string(t->clamp_feature_level_servfail));
1175 }
1176
1177 dns_transaction_retry(t, false /* use the same server */);
1178 return;
1179 }
1180
1181 if (DNS_PACKET_RCODE(p) == DNS_RCODE_REFUSED) {
1182 /* This server refused our request? If so, try again, use a different server */
1183 log_debug("Server returned REFUSED, switching servers, and retrying.");
1184
1185 if (dns_transaction_limited_retry(t))
1186 return;
1187
1188 break;
1189 }
1190
1191 if (DNS_PACKET_TC(p))
1192 dns_server_packet_truncated(t->server, t->current_feature_level);
1193
1194 break;
1195
1196 case DNS_PROTOCOL_LLMNR:
1197 case DNS_PROTOCOL_MDNS:
1198 dns_scope_packet_received(t->scope, p->timestamp - t->start_usec);
1199 break;
1200
1201 default:
1202 assert_not_reached();
1203 }
1204
1205 if (DNS_PACKET_TC(p)) {
1206
1207 /* Truncated packets for mDNS are not allowed. Give up immediately. */
1208 if (t->scope->protocol == DNS_PROTOCOL_MDNS) {
1209 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
1210 return;
1211 }
1212
1213 /* Response was truncated, let's try again with good old TCP */
1214 log_debug("Reply truncated, retrying via TCP.");
1215 retry_with_tcp = true;
1216
1217 } else if (t->scope->protocol == DNS_PROTOCOL_DNS &&
1218 DNS_PACKET_IS_FRAGMENTED(p)) {
1219
1220 /* Report the fragment size, so that we downgrade from LARGE to regular EDNS0 if needed */
1221 if (t->server)
1222 dns_server_packet_udp_fragmented(t->server, dns_packet_size_unfragmented(p));
1223
1224 if (t->current_feature_level > DNS_SERVER_FEATURE_LEVEL_UDP) {
1225 /* Packet was fragmented. Let's retry with TCP to avoid fragmentation attack
1226 * issues. (We don't do that on the lowest feature level however, since crappy DNS
1227 * servers often do not implement TCP, hence falling back to TCP on fragmentation is
1228 * counter-productive there.) */
1229
1230 log_debug("Reply fragmented, retrying via TCP. (Largest fragment size: %zu; Datagram size: %zu)",
1231 p->fragsize, p->size);
1232 retry_with_tcp = true;
1233 }
1234 }
1235
1236 if (retry_with_tcp) {
1237 r = dns_transaction_emit_tcp(t);
1238 if (r == -ESRCH) {
1239 /* No servers found? Damn! */
1240 dns_transaction_complete(t, DNS_TRANSACTION_NO_SERVERS);
1241 return;
1242 }
1243 if (r == -EOPNOTSUPP) {
1244 /* Tried to ask for DNSSEC RRs, on a server that doesn't do DNSSEC */
1245 dns_transaction_complete(t, DNS_TRANSACTION_RR_TYPE_UNSUPPORTED);
1246 return;
1247 }
1248 if (r < 0) {
1249 /* On LLMNR, if we cannot connect to the host,
1250 * we immediately give up */
1251 if (t->scope->protocol != DNS_PROTOCOL_DNS)
1252 goto fail;
1253
1254 /* On DNS, couldn't send? Try immediately again, with a new server */
1255 if (dns_transaction_limited_retry(t))
1256 return;
1257
1258 /* No new server to try, give up */
1259 dns_transaction_complete(t, DNS_TRANSACTION_ATTEMPTS_MAX_REACHED);
1260 }
1261
1262 return;
1263 }
1264
1265 /* After the superficial checks, actually parse the message. */
1266 r = dns_packet_extract(p);
1267 if (r < 0) {
1268 if (t->server) {
1269 dns_server_packet_invalid(t->server, t->current_feature_level);
1270
1271 r = dns_transaction_maybe_restart(t);
1272 if (r < 0)
1273 goto fail;
1274 if (r > 0) /* Transaction got restarted... */
1275 return;
1276 }
1277
1278 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
1279 return;
1280 }
1281
1282 if (t->server) {
1283 /* Report that we successfully received a valid packet with a good rcode after we initially got a bad
1284 * rcode and subsequently downgraded the protocol */
1285
1286 if (IN_SET(DNS_PACKET_RCODE(p), DNS_RCODE_SUCCESS, DNS_RCODE_NXDOMAIN) &&
1287 t->clamp_feature_level_servfail != _DNS_SERVER_FEATURE_LEVEL_INVALID)
1288 dns_server_packet_rcode_downgrade(t->server, t->clamp_feature_level_servfail);
1289
1290 /* Report that the OPT RR was missing */
1291 if (!p->opt)
1292 dns_server_packet_bad_opt(t->server, t->current_feature_level);
1293
1294 /* Report that the server didn't copy our query DO bit from request to response */
1295 if (DNS_PACKET_DO(t->sent) && !DNS_PACKET_DO(t->received))
1296 dns_server_packet_do_off(t->server, t->current_feature_level);
1297
1298 /* Report that we successfully received a packet. We keep track of the largest packet
1299 * size/fragment size we got. Which is useful for announcing the EDNS(0) packet size we can
1300 * receive to our server. */
1301 dns_server_packet_received(t->server, p->ipproto, t->current_feature_level, dns_packet_size_unfragmented(p));
1302 }
1303
1304 /* See if we know things we didn't know before that indicate we better restart the lookup immediately. */
1305 r = dns_transaction_maybe_restart(t);
1306 if (r < 0)
1307 goto fail;
1308 if (r > 0) /* Transaction got restarted... */
1309 return;
1310
1311 /* When dealing with protocols other than mDNS only consider responses with equivalent query section
1312 * to the request. For mDNS this check doesn't make sense, because the section 6 of RFC6762 states
1313 * that "Multicast DNS responses MUST NOT contain any questions in the Question Section". */
1314 if (t->scope->protocol != DNS_PROTOCOL_MDNS) {
1315 r = dns_packet_is_reply_for(p, dns_transaction_key(t));
1316 if (r < 0)
1317 goto fail;
1318 if (r == 0) {
1319 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
1320 return;
1321 }
1322 }
1323
1324 /* Install the answer as answer to the transaction. We ref the answer twice here: the main `answer`
1325 * field is later replaced by the DNSSEC validated subset. The 'answer_auxiliary' field carries the
1326 * original complete record set, including RRSIG and friends. We use this when passing data to
1327 * clients that ask for DNSSEC metadata. */
1328 DNS_ANSWER_REPLACE(t->answer, dns_answer_ref(p->answer));
1329 t->answer_rcode = DNS_PACKET_RCODE(p);
1330 t->answer_dnssec_result = _DNSSEC_RESULT_INVALID;
1331 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, false);
1332 SET_FLAG(t->answer_query_flags, SD_RESOLVED_CONFIDENTIAL, encrypted);
1333
1334 r = dns_transaction_fix_rcode(t);
1335 if (r < 0)
1336 goto fail;
1337
1338 /* Block GC while starting requests for additional DNSSEC RRs */
1339 t->block_gc++;
1340 r = dns_transaction_request_dnssec_keys(t);
1341 t->block_gc--;
1342
1343 /* Maybe the transaction is ready for GC'ing now? If so, free it and return. */
1344 if (!dns_transaction_gc(t))
1345 return;
1346
1347 /* Requesting additional keys might have resulted in this transaction to fail, since the auxiliary
1348 * request failed for some reason. If so, we are not in pending state anymore, and we should exit
1349 * quickly. */
1350 if (t->state != DNS_TRANSACTION_PENDING)
1351 return;
1352 if (r < 0)
1353 goto fail;
1354 if (r > 0) {
1355 /* There are DNSSEC transactions pending now. Update the state accordingly. */
1356 t->state = DNS_TRANSACTION_VALIDATING;
1357 dns_transaction_close_connection(t, true);
1358 dns_transaction_stop_timeout(t);
1359 return;
1360 }
1361
1362 dns_transaction_process_dnssec(t);
1363 return;
1364
1365 fail:
1366 dns_transaction_complete_errno(t, r);
1367 }
1368
1369 static int on_dns_packet(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
1370 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
1371 DnsTransaction *t = ASSERT_PTR(userdata);
1372 int r;
1373
1374 assert(t->scope);
1375
1376 r = manager_recv(t->scope->manager, fd, DNS_PROTOCOL_DNS, &p);
1377 if (r < 0) {
1378 if (ERRNO_IS_DISCONNECT(r)) {
1379 usec_t usec;
1380
1381 /* UDP connection failures get reported via ICMP and then are possibly delivered to us on the
1382 * next recvmsg(). Treat this like a lost packet. */
1383
1384 log_debug_errno(r, "Connection failure for DNS UDP packet: %m");
1385 assert_se(sd_event_now(t->scope->manager->event, CLOCK_BOOTTIME, &usec) >= 0);
1386 dns_server_packet_lost(t->server, IPPROTO_UDP, t->current_feature_level);
1387
1388 dns_transaction_close_connection(t, /* use_graveyard = */ false);
1389
1390 if (dns_transaction_limited_retry(t)) /* Try a different server */
1391 return 0;
1392 }
1393 dns_transaction_complete_errno(t, r);
1394 return 0;
1395 }
1396 if (r == 0)
1397 /* Spurious wakeup without any data */
1398 return 0;
1399
1400 r = dns_packet_validate_reply(p);
1401 if (r < 0) {
1402 log_debug_errno(r, "Received invalid DNS packet as response, ignoring: %m");
1403 return 0;
1404 }
1405 if (r == 0) {
1406 log_debug("Received inappropriate DNS packet as response, ignoring.");
1407 return 0;
1408 }
1409
1410 if (DNS_PACKET_ID(p) != t->id) {
1411 log_debug("Received packet with incorrect transaction ID, ignoring.");
1412 return 0;
1413 }
1414
1415 dns_transaction_process_reply(t, p, false);
1416 return 0;
1417 }
1418
1419 static int dns_transaction_emit_udp(DnsTransaction *t) {
1420 int r;
1421
1422 assert(t);
1423
1424 if (t->scope->protocol == DNS_PROTOCOL_DNS) {
1425
1426 r = dns_transaction_pick_server(t);
1427 if (r < 0)
1428 return r;
1429
1430 if (manager_server_is_stub(t->scope->manager, t->server))
1431 return -ELOOP;
1432
1433 if (t->current_feature_level < DNS_SERVER_FEATURE_LEVEL_UDP || DNS_SERVER_FEATURE_LEVEL_IS_TLS(t->current_feature_level))
1434 return -EAGAIN; /* Sorry, can't do UDP, try TCP! */
1435
1436 if (!t->bypass && !dns_server_dnssec_supported(t->server) && dns_type_is_dnssec(dns_transaction_key(t)->type))
1437 return -EOPNOTSUPP;
1438
1439 if (r > 0 || t->dns_udp_fd < 0) { /* Server changed, or no connection yet. */
1440 int fd;
1441
1442 dns_transaction_close_connection(t, true);
1443
1444 /* Before we allocate a new UDP socket, let's process the graveyard a bit to free some fds */
1445 manager_socket_graveyard_process(t->scope->manager);
1446
1447 fd = dns_scope_socket_udp(t->scope, t->server);
1448 if (fd < 0)
1449 return fd;
1450
1451 r = sd_event_add_io(t->scope->manager->event, &t->dns_udp_event_source, fd, EPOLLIN, on_dns_packet, t);
1452 if (r < 0) {
1453 safe_close(fd);
1454 return r;
1455 }
1456
1457 (void) sd_event_source_set_description(t->dns_udp_event_source, "dns-transaction-udp");
1458 t->dns_udp_fd = fd;
1459 }
1460
1461 if (!t->bypass) {
1462 r = dns_server_adjust_opt(t->server, t->sent, t->current_feature_level);
1463 if (r < 0)
1464 return r;
1465 }
1466 } else
1467 dns_transaction_close_connection(t, true);
1468
1469 r = dns_scope_emit_udp(t->scope, t->dns_udp_fd, t->server ? t->server->family : AF_UNSPEC, t->sent);
1470 if (r < 0)
1471 return r;
1472
1473 dns_transaction_reset_answer(t);
1474
1475 return 0;
1476 }
1477
1478 static int on_transaction_timeout(sd_event_source *s, usec_t usec, void *userdata) {
1479 DnsTransaction *t = ASSERT_PTR(userdata);
1480
1481 assert(s);
1482
1483 t->seen_timeout = true;
1484
1485 if (t->initial_jitter_scheduled && !t->initial_jitter_elapsed) {
1486 log_debug("Initial jitter phase for transaction %" PRIu16 " elapsed.", t->id);
1487 t->initial_jitter_elapsed = true;
1488 } else {
1489 /* Timeout reached? Increase the timeout for the server used */
1490 switch (t->scope->protocol) {
1491
1492 case DNS_PROTOCOL_DNS:
1493 assert(t->server);
1494 dns_server_packet_lost(t->server, t->stream ? IPPROTO_TCP : IPPROTO_UDP, t->current_feature_level);
1495 break;
1496
1497 case DNS_PROTOCOL_LLMNR:
1498 case DNS_PROTOCOL_MDNS:
1499 dns_scope_packet_lost(t->scope, usec - t->start_usec);
1500 break;
1501
1502 default:
1503 assert_not_reached();
1504 }
1505
1506 log_debug("Timeout reached on transaction %" PRIu16 ".", t->id);
1507 }
1508
1509 dns_transaction_retry(t, /* next_server= */ true); /* try a different server, but given this means
1510 * packet loss, let's do so even if we already
1511 * tried a bunch */
1512 return 0;
1513 }
1514
1515 static int dns_transaction_setup_timeout(
1516 DnsTransaction *t,
1517 usec_t timeout_usec /* relative */,
1518 usec_t next_usec /* CLOCK_BOOTTIME */) {
1519
1520 int r;
1521
1522 assert(t);
1523
1524 dns_transaction_stop_timeout(t);
1525
1526 r = sd_event_add_time_relative(
1527 t->scope->manager->event,
1528 &t->timeout_event_source,
1529 CLOCK_BOOTTIME,
1530 timeout_usec, 0,
1531 on_transaction_timeout, t);
1532 if (r < 0)
1533 return r;
1534
1535 (void) sd_event_source_set_description(t->timeout_event_source, "dns-transaction-timeout");
1536
1537 t->next_attempt_after = next_usec;
1538 t->state = DNS_TRANSACTION_PENDING;
1539 return 0;
1540 }
1541
1542 static usec_t transaction_get_resend_timeout(DnsTransaction *t) {
1543 assert(t);
1544 assert(t->scope);
1545
1546 switch (t->scope->protocol) {
1547
1548 case DNS_PROTOCOL_DNS:
1549
1550 /* When we do TCP, grant a much longer timeout, as in this case there's no need for us to quickly
1551 * resend, as the kernel does that anyway for us, and we really don't want to interrupt it in that
1552 * needlessly. */
1553 if (t->stream)
1554 return TRANSACTION_TCP_TIMEOUT_USEC;
1555
1556 return DNS_TIMEOUT_USEC;
1557
1558 case DNS_PROTOCOL_MDNS:
1559 if (t->probing)
1560 return MDNS_PROBING_INTERVAL_USEC;
1561
1562 /* See RFC 6762 Section 5.1 suggests that timeout should be a few seconds. */
1563 assert(t->n_attempts > 0);
1564 return (1 << (t->n_attempts - 1)) * USEC_PER_SEC;
1565
1566 case DNS_PROTOCOL_LLMNR:
1567 return t->scope->resend_timeout;
1568
1569 default:
1570 assert_not_reached();
1571 }
1572 }
1573
1574 static void dns_transaction_randomize_answer(DnsTransaction *t) {
1575 int r;
1576
1577 assert(t);
1578
1579 /* Randomizes the order of the answer array. This is done for all cached responses, so that we return
1580 * a different order each time. We do this only for DNS traffic, in order to do some minimal, crappy
1581 * load balancing. We don't do this for LLMNR or mDNS, since the order (preferring link-local
1582 * addresses, and such like) might have meaning there, and load balancing is pointless. */
1583
1584 if (t->scope->protocol != DNS_PROTOCOL_DNS)
1585 return;
1586
1587 /* No point in randomizing, if there's just one RR */
1588 if (dns_answer_size(t->answer) <= 1)
1589 return;
1590
1591 r = dns_answer_reserve_or_clone(&t->answer, 0);
1592 if (r < 0) /* If this fails, just don't randomize, this is non-essential stuff after all */
1593 return (void) log_debug_errno(r, "Failed to clone answer record, not randomizing RR order of answer: %m");
1594
1595 dns_answer_randomize(t->answer);
1596 }
1597
1598 static int dns_transaction_prepare(DnsTransaction *t, usec_t ts) {
1599 int r;
1600
1601 assert(t);
1602
1603 /* Returns 0 if dns_transaction_complete() has been called. In that case the transaction and query
1604 * candidate objects may have been invalidated and must not be accessed. Returns 1 if the transaction
1605 * has been prepared. */
1606
1607 dns_transaction_stop_timeout(t);
1608
1609 if (t->n_attempts == 1 && t->seen_timeout)
1610 t->scope->manager->n_timeouts_total++;
1611
1612 if (!dns_scope_network_good(t->scope)) {
1613 dns_transaction_complete(t, DNS_TRANSACTION_NETWORK_DOWN);
1614 return 0;
1615 }
1616
1617 if (t->n_attempts >= TRANSACTION_ATTEMPTS_MAX(t->scope->protocol)) {
1618 DnsTransactionState result;
1619
1620 if (t->scope->protocol == DNS_PROTOCOL_LLMNR)
1621 /* If we didn't find anything on LLMNR, it's not an error, but a failure to resolve
1622 * the name. */
1623 result = DNS_TRANSACTION_NOT_FOUND;
1624 else
1625 result = DNS_TRANSACTION_ATTEMPTS_MAX_REACHED;
1626
1627 dns_transaction_complete(t, result);
1628 return 0;
1629 }
1630
1631 if (t->scope->protocol == DNS_PROTOCOL_LLMNR && t->tried_stream) {
1632 /* If we already tried via a stream, then we don't
1633 * retry on LLMNR. See RFC 4795, Section 2.7. */
1634 dns_transaction_complete(t, DNS_TRANSACTION_ATTEMPTS_MAX_REACHED);
1635 return 0;
1636 }
1637
1638 t->n_attempts++;
1639 t->start_usec = ts;
1640
1641 dns_transaction_reset_answer(t);
1642 dns_transaction_flush_dnssec_transactions(t);
1643
1644 /* Check the trust anchor. Do so only on classic DNS, since DNSSEC does not apply otherwise. */
1645 if (t->scope->protocol == DNS_PROTOCOL_DNS &&
1646 !FLAGS_SET(t->query_flags, SD_RESOLVED_NO_TRUST_ANCHOR)) {
1647 r = dns_trust_anchor_lookup_positive(&t->scope->manager->trust_anchor, dns_transaction_key(t), &t->answer);
1648 if (r < 0)
1649 return r;
1650 if (r > 0) {
1651 t->answer_rcode = DNS_RCODE_SUCCESS;
1652 t->answer_source = DNS_TRANSACTION_TRUST_ANCHOR;
1653 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED|SD_RESOLVED_CONFIDENTIAL, true);
1654 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
1655 return 0;
1656 }
1657
1658 if (dns_name_is_root(dns_resource_key_name(dns_transaction_key(t))) &&
1659 dns_transaction_key(t)->type == DNS_TYPE_DS) {
1660
1661 /* Hmm, this is a request for the root DS? A DS RR doesn't exist in the root zone,
1662 * and if our trust anchor didn't know it either, this means we cannot do any DNSSEC
1663 * logic anymore. */
1664
1665 if (t->scope->dnssec_mode == DNSSEC_ALLOW_DOWNGRADE) {
1666 /* We are in downgrade mode. In this case, synthesize an unsigned empty
1667 * response, so that the any lookup depending on this one can continue
1668 * assuming there was no DS, and hence the root zone was unsigned. */
1669
1670 t->answer_rcode = DNS_RCODE_SUCCESS;
1671 t->answer_source = DNS_TRANSACTION_TRUST_ANCHOR;
1672 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, false);
1673 SET_FLAG(t->answer_query_flags, SD_RESOLVED_CONFIDENTIAL, true);
1674 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
1675 } else
1676 /* If we are not in downgrade mode, then fail the lookup, because we cannot
1677 * reasonably answer it. There might be DS RRs, but we don't know them, and
1678 * the DNS server won't tell them to us (and even if it would, we couldn't
1679 * validate and trust them. */
1680 dns_transaction_complete(t, DNS_TRANSACTION_NO_TRUST_ANCHOR);
1681
1682 return 0;
1683 }
1684 }
1685
1686 /* Check the zone. */
1687 if (!FLAGS_SET(t->query_flags, SD_RESOLVED_NO_ZONE)) {
1688 r = dns_zone_lookup(&t->scope->zone, dns_transaction_key(t), dns_scope_ifindex(t->scope), &t->answer, NULL, NULL);
1689 if (r < 0)
1690 return r;
1691 if (r > 0) {
1692 t->answer_rcode = DNS_RCODE_SUCCESS;
1693 t->answer_source = DNS_TRANSACTION_ZONE;
1694 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED|SD_RESOLVED_CONFIDENTIAL, true);
1695 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
1696 return 0;
1697 }
1698 }
1699
1700 /* Check the cache. */
1701 if (!FLAGS_SET(t->query_flags, SD_RESOLVED_NO_CACHE)) {
1702
1703 /* Before trying the cache, let's make sure we figured out a server to use. Should this cause
1704 * a change of server this might flush the cache. */
1705 (void) dns_scope_get_dns_server(t->scope);
1706
1707 /* Let's then prune all outdated entries */
1708 dns_cache_prune(&t->scope->cache);
1709
1710 /* For the initial attempt or when no stale data is requested, disable serve stale
1711 * and answer the question from the cache (honors ttl property).
1712 * On the second attempt, if StaleRetentionSec is greater than zero,
1713 * try to answer the question using stale date (honors until property) */
1714 uint64_t query_flags = t->query_flags;
1715 if (t->n_attempts == 1 || t->scope->manager->stale_retention_usec == 0)
1716 query_flags |= SD_RESOLVED_NO_STALE;
1717
1718 r = dns_cache_lookup(
1719 &t->scope->cache,
1720 dns_transaction_key(t),
1721 query_flags,
1722 &t->answer_rcode,
1723 &t->answer,
1724 &t->received,
1725 &t->answer_query_flags,
1726 &t->answer_dnssec_result);
1727 if (r < 0)
1728 return r;
1729 if (r > 0) {
1730 dns_transaction_randomize_answer(t);
1731
1732 if (t->bypass && t->scope->protocol == DNS_PROTOCOL_DNS && !t->received)
1733 /* When bypass mode is on, do not use cached data unless it came with a full
1734 * packet. */
1735 dns_transaction_reset_answer(t);
1736 else {
1737 if (t->n_attempts > 1 && !FLAGS_SET(query_flags, SD_RESOLVED_NO_STALE)) {
1738
1739 if (t->answer_rcode == DNS_RCODE_SUCCESS) {
1740 if (t->seen_timeout)
1741 t->scope->manager->n_timeouts_served_stale_total++;
1742 else
1743 t->scope->manager->n_failure_responses_served_stale_total++;
1744 }
1745
1746 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
1747 log_debug("Serve Stale response rcode=%s for %s",
1748 FORMAT_DNS_RCODE(t->answer_rcode),
1749 dns_resource_key_to_string(dns_transaction_key(t), key_str, sizeof key_str));
1750 }
1751
1752 t->answer_source = DNS_TRANSACTION_CACHE;
1753 if (t->answer_rcode == DNS_RCODE_SUCCESS)
1754 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
1755 else
1756 dns_transaction_complete(t, DNS_TRANSACTION_RCODE_FAILURE);
1757 return 0;
1758 }
1759 }
1760 }
1761
1762 if (FLAGS_SET(t->query_flags, SD_RESOLVED_NO_NETWORK)) {
1763 dns_transaction_complete(t, DNS_TRANSACTION_NO_SOURCE);
1764 return 0;
1765 }
1766
1767 return 1;
1768 }
1769
1770 static int dns_packet_append_zone(DnsPacket *p, DnsTransaction *t, DnsResourceKey *k, unsigned *nscount) {
1771 _cleanup_(dns_answer_unrefp) DnsAnswer *answer = NULL;
1772 bool tentative;
1773 int r;
1774
1775 assert(p);
1776 assert(t);
1777 assert(k);
1778
1779 if (k->type != DNS_TYPE_ANY)
1780 return 0;
1781
1782 r = dns_zone_lookup(&t->scope->zone, k, t->scope->link->ifindex, &answer, NULL, &tentative);
1783 if (r < 0)
1784 return r;
1785
1786 return dns_packet_append_answer(p, answer, nscount);
1787 }
1788
1789 static int dns_transaction_make_packet_mdns(DnsTransaction *t) {
1790 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
1791 _cleanup_set_free_ Set *keys = NULL;
1792 unsigned qdcount, ancount = 0 /* avoid false maybe-uninitialized warning */, nscount;
1793 bool add_known_answers = false;
1794 usec_t ts;
1795 int r;
1796
1797 assert(t);
1798 assert(t->scope->protocol == DNS_PROTOCOL_MDNS);
1799
1800 /* Discard any previously prepared packet, so we can start over and coalesce again */
1801 t->sent = dns_packet_unref(t->sent);
1802
1803 /* First, create a dummy packet to calculate packet size. */
1804 r = dns_packet_new_query(&p, t->scope->protocol, 0, false);
1805 if (r < 0)
1806 return r;
1807
1808 r = dns_packet_append_key(p, dns_transaction_key(t), 0, NULL);
1809 if (r < 0)
1810 return r;
1811
1812 qdcount = 1;
1813
1814 if (dns_key_is_shared(dns_transaction_key(t)))
1815 add_known_answers = true;
1816
1817 r = dns_packet_append_zone(p, t, dns_transaction_key(t), NULL);
1818 if (r < 0)
1819 return r;
1820
1821 /* Save appended keys */
1822 r = set_ensure_put(&keys, &dns_resource_key_hash_ops, dns_transaction_key(t));
1823 if (r < 0)
1824 return r;
1825
1826 /*
1827 * For mDNS, we want to coalesce as many open queries in pending transactions into one single
1828 * query packet on the wire as possible. To achieve that, we iterate through all pending transactions
1829 * in our current scope, and see whether their timing constraints allow them to be sent.
1830 */
1831
1832 assert_se(sd_event_now(t->scope->manager->event, CLOCK_BOOTTIME, &ts) >= 0);
1833
1834 for (bool restart = true; restart;) {
1835 restart = false;
1836 LIST_FOREACH(transactions_by_scope, other, t->scope->transactions) {
1837 size_t saved_packet_size;
1838 bool append = false;
1839
1840 /* Skip ourselves */
1841 if (other == t)
1842 continue;
1843
1844 if (other->state != DNS_TRANSACTION_PENDING)
1845 continue;
1846
1847 if (other->next_attempt_after > ts)
1848 continue;
1849
1850 if (!set_contains(keys, dns_transaction_key(other))) {
1851 r = dns_packet_append_key(p, dns_transaction_key(other), 0, &saved_packet_size);
1852 /* If we can't stuff more questions into the packet, just give up.
1853 * One of the 'other' transactions will fire later and take care of the rest. */
1854 if (r == -EMSGSIZE)
1855 break;
1856 if (r < 0)
1857 return r;
1858
1859 r = dns_packet_append_zone(p, t, dns_transaction_key(other), NULL);
1860 if (r == -EMSGSIZE)
1861 break;
1862 if (r < 0)
1863 return r;
1864
1865 append = true;
1866 }
1867
1868 r = dns_transaction_prepare(other, ts);
1869 if (r < 0)
1870 return r;
1871 if (r == 0) {
1872 if (append)
1873 dns_packet_truncate(p, saved_packet_size);
1874
1875 /* In this case, not only this transaction, but multiple transactions may be
1876 * freed. Hence, we need to restart the loop. */
1877 restart = true;
1878 break;
1879 }
1880
1881 usec_t timeout = transaction_get_resend_timeout(other);
1882 r = dns_transaction_setup_timeout(other, timeout, usec_add(ts, timeout));
1883 if (r < 0)
1884 return r;
1885
1886 if (dns_key_is_shared(dns_transaction_key(other)))
1887 add_known_answers = true;
1888
1889 if (append) {
1890 r = set_ensure_put(&keys, &dns_resource_key_hash_ops, dns_transaction_key(other));
1891 if (r < 0)
1892 return r;
1893 }
1894
1895 qdcount++;
1896 if (qdcount >= UINT16_MAX)
1897 break;
1898 }
1899 }
1900
1901 /* Append known answer section if we're asking for any shared record */
1902 if (add_known_answers) {
1903 r = dns_cache_export_shared_to_packet(&t->scope->cache, p, ts, 0);
1904 if (r < 0)
1905 return r;
1906
1907 ancount = be16toh(DNS_PACKET_HEADER(p)->ancount);
1908 }
1909
1910 /* Then, create actual packet. */
1911 p = dns_packet_unref(p);
1912 r = dns_packet_new_query(&p, t->scope->protocol, 0, false);
1913 if (r < 0)
1914 return r;
1915
1916 /* Questions */
1917 DnsResourceKey *k;
1918 SET_FOREACH(k, keys) {
1919 r = dns_packet_append_key(p, k, 0, NULL);
1920 if (r < 0)
1921 return r;
1922 }
1923 DNS_PACKET_HEADER(p)->qdcount = htobe16(qdcount);
1924
1925 /* Known answers */
1926 if (add_known_answers) {
1927 r = dns_cache_export_shared_to_packet(&t->scope->cache, p, ts, ancount);
1928 if (r < 0)
1929 return r;
1930 }
1931
1932 /* Authorities */
1933 nscount = 0;
1934 SET_FOREACH(k, keys) {
1935 r = dns_packet_append_zone(p, t, k, &nscount);
1936 if (r < 0)
1937 return r;
1938 }
1939 DNS_PACKET_HEADER(p)->nscount = htobe16(nscount);
1940
1941 t->sent = TAKE_PTR(p);
1942 return 0;
1943 }
1944
1945 static int dns_transaction_make_packet(DnsTransaction *t) {
1946 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
1947 int r;
1948
1949 assert(t);
1950
1951 if (t->scope->protocol == DNS_PROTOCOL_MDNS)
1952 return dns_transaction_make_packet_mdns(t);
1953
1954 if (t->sent)
1955 return 0;
1956
1957 if (t->bypass && t->bypass->protocol == t->scope->protocol) {
1958 /* If bypass logic is enabled and the protocol if the original packet and our scope match,
1959 * take the original packet, copy it, and patch in our new ID */
1960 r = dns_packet_dup(&p, t->bypass);
1961 if (r < 0)
1962 return r;
1963 } else {
1964 r = dns_packet_new_query(
1965 &p, t->scope->protocol,
1966 /* min_alloc_dsize = */ 0,
1967 /* dnssec_cd = */ !FLAGS_SET(t->query_flags, SD_RESOLVED_NO_VALIDATE) &&
1968 t->scope->dnssec_mode != DNSSEC_NO);
1969 if (r < 0)
1970 return r;
1971
1972 r = dns_packet_append_key(p, dns_transaction_key(t), 0, NULL);
1973 if (r < 0)
1974 return r;
1975
1976 DNS_PACKET_HEADER(p)->qdcount = htobe16(1);
1977 }
1978
1979 DNS_PACKET_HEADER(p)->id = t->id;
1980
1981 t->sent = TAKE_PTR(p);
1982 return 0;
1983 }
1984
1985 int dns_transaction_go(DnsTransaction *t) {
1986 usec_t ts;
1987 int r;
1988 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
1989
1990 assert(t);
1991
1992 /* Returns > 0 if the transaction is now pending, returns 0 if could be processed immediately and has
1993 * finished now. In the latter case, the transaction and query candidate objects must not be accessed.
1994 */
1995
1996 assert_se(sd_event_now(t->scope->manager->event, CLOCK_BOOTTIME, &ts) >= 0);
1997
1998 r = dns_transaction_prepare(t, ts);
1999 if (r <= 0)
2000 return r;
2001
2002 log_debug("Firing %s transaction %" PRIu16 " for <%s> scope %s on %s/%s (validate=%s).",
2003 t->bypass ? "bypass" : "regular",
2004 t->id,
2005 dns_resource_key_to_string(dns_transaction_key(t), key_str, sizeof key_str),
2006 dns_protocol_to_string(t->scope->protocol),
2007 t->scope->link ? t->scope->link->ifname : "*",
2008 af_to_name_short(t->scope->family),
2009 yes_no(!FLAGS_SET(t->query_flags, SD_RESOLVED_NO_VALIDATE)));
2010
2011 if (!t->initial_jitter_scheduled &&
2012 IN_SET(t->scope->protocol, DNS_PROTOCOL_LLMNR, DNS_PROTOCOL_MDNS)) {
2013 usec_t jitter;
2014
2015 /* RFC 4795 Section 2.7 suggests all LLMNR queries should be delayed by a random time from 0 to
2016 * JITTER_INTERVAL.
2017 * RFC 6762 Section 8.1 suggests initial probe queries should be delayed by a random time from
2018 * 0 to 250ms. */
2019
2020 t->initial_jitter_scheduled = true;
2021 t->n_attempts = 0;
2022
2023 switch (t->scope->protocol) {
2024
2025 case DNS_PROTOCOL_LLMNR:
2026 jitter = random_u64_range(LLMNR_JITTER_INTERVAL_USEC);
2027 break;
2028
2029 case DNS_PROTOCOL_MDNS:
2030 if (t->probing)
2031 jitter = random_u64_range(MDNS_PROBING_INTERVAL_USEC);
2032 else
2033 jitter = 0;
2034 break;
2035 default:
2036 assert_not_reached();
2037 }
2038
2039 r = dns_transaction_setup_timeout(t, jitter, ts);
2040 if (r < 0)
2041 return r;
2042
2043 log_debug("Delaying %s transaction %" PRIu16 " for " USEC_FMT "us.",
2044 dns_protocol_to_string(t->scope->protocol),
2045 t->id,
2046 jitter);
2047 return 1;
2048 }
2049
2050 /* Otherwise, we need to ask the network */
2051 r = dns_transaction_make_packet(t);
2052 if (r < 0)
2053 return r;
2054
2055 if (t->scope->protocol == DNS_PROTOCOL_LLMNR &&
2056 (dns_name_endswith(dns_resource_key_name(dns_transaction_key(t)), "in-addr.arpa") > 0 ||
2057 dns_name_endswith(dns_resource_key_name(dns_transaction_key(t)), "ip6.arpa") > 0)) {
2058
2059 /* RFC 4795, Section 2.4. says reverse lookups shall
2060 * always be made via TCP on LLMNR */
2061 r = dns_transaction_emit_tcp(t);
2062 } else {
2063 /* Try via UDP, and if that fails due to large size or lack of
2064 * support try via TCP */
2065 r = dns_transaction_emit_udp(t);
2066 if (r == -EMSGSIZE)
2067 log_debug("Sending query via TCP since it is too large.");
2068 else if (r == -EAGAIN)
2069 log_debug("Sending query via TCP since UDP isn't supported or DNS-over-TLS is selected.");
2070 else if (r == -EPERM)
2071 log_debug("Sending query via TCP since UDP is blocked.");
2072 if (IN_SET(r, -EMSGSIZE, -EAGAIN, -EPERM))
2073 r = dns_transaction_emit_tcp(t);
2074 }
2075 if (r == -ELOOP) {
2076 if (t->scope->protocol != DNS_PROTOCOL_DNS)
2077 return r;
2078
2079 /* One of our own stub listeners */
2080 log_debug_errno(r, "Detected that specified DNS server is our own extra listener, switching DNS servers.");
2081
2082 dns_scope_next_dns_server(t->scope, t->server);
2083
2084 if (dns_scope_get_dns_server(t->scope) == t->server) {
2085 log_debug_errno(r, "Still pointing to extra listener after switching DNS servers, refusing operation.");
2086 dns_transaction_complete(t, DNS_TRANSACTION_STUB_LOOP);
2087 return 0;
2088 }
2089
2090 return dns_transaction_go(t);
2091 }
2092 if (r == -ESRCH) {
2093 /* No servers to send this to? */
2094 dns_transaction_complete(t, DNS_TRANSACTION_NO_SERVERS);
2095 return 0;
2096 }
2097 if (r == -EOPNOTSUPP) {
2098 /* Tried to ask for DNSSEC RRs, on a server that doesn't do DNSSEC */
2099 dns_transaction_complete(t, DNS_TRANSACTION_RR_TYPE_UNSUPPORTED);
2100 return 0;
2101 }
2102 if (t->scope->protocol == DNS_PROTOCOL_LLMNR && ERRNO_IS_NEG_DISCONNECT(r)) {
2103 /* On LLMNR, if we cannot connect to a host via TCP when doing reverse lookups. This means we cannot
2104 * answer this request with this protocol. */
2105 dns_transaction_complete(t, DNS_TRANSACTION_NOT_FOUND);
2106 return 0;
2107 }
2108 if (r < 0) {
2109 if (t->scope->protocol != DNS_PROTOCOL_DNS)
2110 return r;
2111
2112 /* Couldn't send? Try immediately again, with a new server */
2113 dns_scope_next_dns_server(t->scope, t->server);
2114
2115 return dns_transaction_go(t);
2116 }
2117
2118 usec_t timeout = transaction_get_resend_timeout(t);
2119 r = dns_transaction_setup_timeout(t, timeout, usec_add(ts, timeout));
2120 if (r < 0)
2121 return r;
2122
2123 return 1;
2124 }
2125
2126 static int dns_transaction_find_cyclic(DnsTransaction *t, DnsTransaction *aux) {
2127 DnsTransaction *n;
2128 int r;
2129
2130 assert(t);
2131 assert(aux);
2132
2133 /* Try to find cyclic dependencies between transaction objects */
2134
2135 if (t == aux)
2136 return 1;
2137
2138 SET_FOREACH(n, aux->dnssec_transactions) {
2139 r = dns_transaction_find_cyclic(t, n);
2140 if (r != 0)
2141 return r;
2142 }
2143
2144 return 0;
2145 }
2146
2147 static int dns_transaction_add_dnssec_transaction(DnsTransaction *t, DnsResourceKey *key, DnsTransaction **ret) {
2148 _cleanup_(dns_transaction_gcp) DnsTransaction *aux = NULL;
2149 int r;
2150
2151 assert(t);
2152 assert(ret);
2153 assert(key);
2154
2155 aux = dns_scope_find_transaction(t->scope, key, t->query_flags);
2156 if (!aux) {
2157 r = dns_transaction_new(&aux, t->scope, key, NULL, t->query_flags);
2158 if (r < 0)
2159 return r;
2160 } else {
2161 if (set_contains(t->dnssec_transactions, aux)) {
2162 *ret = aux;
2163 return 0;
2164 }
2165
2166 r = dns_transaction_find_cyclic(t, aux);
2167 if (r < 0)
2168 return r;
2169 if (r > 0) {
2170 char s[DNS_RESOURCE_KEY_STRING_MAX], saux[DNS_RESOURCE_KEY_STRING_MAX];
2171
2172 return log_debug_errno(SYNTHETIC_ERRNO(ELOOP),
2173 "Potential cyclic dependency, refusing to add transaction %" PRIu16 " (%s) as dependency for %" PRIu16 " (%s).",
2174 aux->id,
2175 dns_resource_key_to_string(dns_transaction_key(t), s, sizeof s),
2176 t->id,
2177 dns_resource_key_to_string(dns_transaction_key(aux), saux, sizeof saux));
2178 }
2179 }
2180
2181 r = set_ensure_allocated(&aux->notify_transactions_done, NULL);
2182 if (r < 0)
2183 return r;
2184
2185 r = set_ensure_put(&t->dnssec_transactions, NULL, aux);
2186 if (r < 0)
2187 return r;
2188
2189 r = set_ensure_put(&aux->notify_transactions, NULL, t);
2190 if (r < 0) {
2191 (void) set_remove(t->dnssec_transactions, aux);
2192 return r;
2193 }
2194
2195 *ret = TAKE_PTR(aux);
2196 return 1;
2197 }
2198
2199 static int dns_transaction_request_dnssec_rr(DnsTransaction *t, DnsResourceKey *key) {
2200 _cleanup_(dns_answer_unrefp) DnsAnswer *a = NULL;
2201 DnsTransaction *aux;
2202 int r;
2203
2204 assert(t);
2205 assert(key);
2206
2207 /* Try to get the data from the trust anchor */
2208 r = dns_trust_anchor_lookup_positive(&t->scope->manager->trust_anchor, key, &a);
2209 if (r < 0)
2210 return r;
2211 if (r > 0) {
2212 r = dns_answer_extend(&t->validated_keys, a);
2213 if (r < 0)
2214 return r;
2215
2216 return 0;
2217 }
2218
2219 /* This didn't work, ask for it via the network/cache then. */
2220 r = dns_transaction_add_dnssec_transaction(t, key, &aux);
2221 if (r == -ELOOP) /* This would result in a cyclic dependency */
2222 return 0;
2223 if (r < 0)
2224 return r;
2225
2226 if (aux->state == DNS_TRANSACTION_NULL) {
2227 r = dns_transaction_go(aux);
2228 if (r < 0)
2229 return r;
2230 }
2231
2232 return 1;
2233 }
2234
2235 static int dns_transaction_negative_trust_anchor_lookup(DnsTransaction *t, const char *name) {
2236 int r;
2237
2238 assert(t);
2239
2240 /* Check whether the specified name is in the NTA
2241 * database, either in the global one, or the link-local
2242 * one. */
2243
2244 r = dns_trust_anchor_lookup_negative(&t->scope->manager->trust_anchor, name);
2245 if (r != 0)
2246 return r;
2247
2248 if (!t->scope->link)
2249 return 0;
2250
2251 return link_negative_trust_anchor_lookup(t->scope->link, name);
2252 }
2253
2254 static int dns_transaction_has_negative_answer(DnsTransaction *t) {
2255 int r;
2256
2257 assert(t);
2258
2259 /* Checks whether the answer is negative, and lacks NSEC/NSEC3
2260 * RRs to prove it */
2261
2262 r = dns_transaction_has_positive_answer(t, NULL);
2263 if (r < 0)
2264 return r;
2265 if (r > 0)
2266 return false;
2267
2268 /* Is this key explicitly listed as a negative trust anchor?
2269 * If so, it's nothing we need to care about */
2270 r = dns_transaction_negative_trust_anchor_lookup(t, dns_resource_key_name(dns_transaction_key(t)));
2271 if (r < 0)
2272 return r;
2273 return !r;
2274 }
2275
2276 static int dns_transaction_is_primary_response(DnsTransaction *t, DnsResourceRecord *rr) {
2277 int r;
2278
2279 assert(t);
2280 assert(rr);
2281
2282 /* Check if the specified RR is the "primary" response,
2283 * i.e. either matches the question precisely or is a
2284 * CNAME/DNAME for it. */
2285
2286 r = dns_resource_key_match_rr(dns_transaction_key(t), rr, NULL);
2287 if (r != 0)
2288 return r;
2289
2290 return dns_resource_key_match_cname_or_dname(dns_transaction_key(t), rr->key, NULL);
2291 }
2292
2293 static bool dns_transaction_dnssec_supported(DnsTransaction *t) {
2294 assert(t);
2295
2296 /* Checks whether our transaction's DNS server is assumed to be compatible with DNSSEC. Returns false as soon
2297 * as we changed our mind about a server, and now believe it is incompatible with DNSSEC. */
2298
2299 if (t->scope->protocol != DNS_PROTOCOL_DNS)
2300 return false;
2301
2302 /* If we have picked no server, then we are working from the cache or some other source, and DNSSEC might well
2303 * be supported, hence return true. */
2304 if (!t->server)
2305 return true;
2306
2307 /* Note that we do not check the feature level actually used for the transaction but instead the feature level
2308 * the server is known to support currently, as the transaction feature level might be lower than what the
2309 * server actually supports, since we might have downgraded this transaction's feature level because we got a
2310 * SERVFAIL earlier and wanted to check whether downgrading fixes it. */
2311
2312 return dns_server_dnssec_supported(t->server);
2313 }
2314
2315 static bool dns_transaction_dnssec_supported_full(DnsTransaction *t) {
2316 DnsTransaction *dt;
2317
2318 assert(t);
2319
2320 /* Checks whether our transaction our any of the auxiliary transactions couldn't do DNSSEC. */
2321
2322 if (!dns_transaction_dnssec_supported(t))
2323 return false;
2324
2325 SET_FOREACH(dt, t->dnssec_transactions)
2326 if (!dns_transaction_dnssec_supported(dt))
2327 return false;
2328
2329 return true;
2330 }
2331
2332 int dns_transaction_request_dnssec_keys(DnsTransaction *t) {
2333 DnsResourceRecord *rr;
2334
2335 int r;
2336
2337 assert(t);
2338
2339 /*
2340 * Retrieve all auxiliary RRs for the answer we got, so that
2341 * we can verify signatures or prove that RRs are rightfully
2342 * unsigned. Specifically:
2343 *
2344 * - For RRSIG we get the matching DNSKEY
2345 * - For DNSKEY we get the matching DS
2346 * - For unsigned SOA/NS we get the matching DS
2347 * - For unsigned CNAME/DNAME/DS we get the parent SOA RR
2348 * - For other unsigned RRs we get the matching SOA RR
2349 * - For SOA/NS queries with no matching response RR, and no NSEC/NSEC3, the DS RR
2350 * - For DS queries with no matching response RRs, and no NSEC/NSEC3, the parent's SOA RR
2351 * - For other queries with no matching response RRs, and no NSEC/NSEC3, the SOA RR
2352 */
2353
2354 if (FLAGS_SET(t->query_flags, SD_RESOLVED_NO_VALIDATE) || t->scope->dnssec_mode == DNSSEC_NO)
2355 return 0;
2356 if (t->answer_source != DNS_TRANSACTION_NETWORK)
2357 return 0; /* We only need to validate stuff from the network */
2358 if (!dns_transaction_dnssec_supported(t))
2359 return 0; /* If we can't do DNSSEC anyway there's no point in getting the auxiliary RRs */
2360
2361 DNS_ANSWER_FOREACH(rr, t->answer) {
2362
2363 if (dns_type_is_pseudo(rr->key->type))
2364 continue;
2365
2366 /* If this RR is in the negative trust anchor, we don't need to validate it. */
2367 r = dns_transaction_negative_trust_anchor_lookup(t, dns_resource_key_name(rr->key));
2368 if (r < 0)
2369 return r;
2370 if (r > 0)
2371 continue;
2372
2373 switch (rr->key->type) {
2374
2375 case DNS_TYPE_RRSIG: {
2376 /* For each RRSIG we request the matching DNSKEY */
2377 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *dnskey = NULL;
2378
2379 /* If this RRSIG is about a DNSKEY RR and the
2380 * signer is the same as the owner, then we
2381 * already have the DNSKEY, and we don't have
2382 * to look for more. */
2383 if (rr->rrsig.type_covered == DNS_TYPE_DNSKEY) {
2384 r = dns_name_equal(rr->rrsig.signer, dns_resource_key_name(rr->key));
2385 if (r < 0)
2386 return r;
2387 if (r > 0)
2388 continue;
2389 }
2390
2391 /* If the signer is not a parent of our
2392 * original query, then this is about an
2393 * auxiliary RRset, but not anything we asked
2394 * for. In this case we aren't interested,
2395 * because we don't want to request additional
2396 * RRs for stuff we didn't really ask for, and
2397 * also to avoid request loops, where
2398 * additional RRs from one transaction result
2399 * in another transaction whose additional RRs
2400 * point back to the original transaction, and
2401 * we deadlock. */
2402 r = dns_name_endswith(dns_resource_key_name(dns_transaction_key(t)), rr->rrsig.signer);
2403 if (r < 0)
2404 return r;
2405 if (r == 0)
2406 continue;
2407
2408 dnskey = dns_resource_key_new(rr->key->class, DNS_TYPE_DNSKEY, rr->rrsig.signer);
2409 if (!dnskey)
2410 return -ENOMEM;
2411
2412 log_debug("Requesting DNSKEY to validate transaction %" PRIu16" (%s, RRSIG with key tag: %" PRIu16 ").",
2413 t->id, dns_resource_key_name(rr->key), rr->rrsig.key_tag);
2414 r = dns_transaction_request_dnssec_rr(t, dnskey);
2415 if (r < 0)
2416 return r;
2417 break;
2418 }
2419
2420 case DNS_TYPE_DNSKEY: {
2421 /* For each DNSKEY we request the matching DS */
2422 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *ds = NULL;
2423
2424 /* If the DNSKEY we are looking at is not for
2425 * zone we are interested in, nor any of its
2426 * parents, we aren't interested, and don't
2427 * request it. After all, we don't want to end
2428 * up in request loops, and want to keep
2429 * additional traffic down. */
2430
2431 r = dns_name_endswith(dns_resource_key_name(dns_transaction_key(t)), dns_resource_key_name(rr->key));
2432 if (r < 0)
2433 return r;
2434 if (r == 0)
2435 continue;
2436
2437 ds = dns_resource_key_new(rr->key->class, DNS_TYPE_DS, dns_resource_key_name(rr->key));
2438 if (!ds)
2439 return -ENOMEM;
2440
2441 log_debug("Requesting DS to validate transaction %" PRIu16" (%s, DNSKEY with key tag: %" PRIu16 ").",
2442 t->id, dns_resource_key_name(rr->key), dnssec_keytag(rr, false));
2443 r = dns_transaction_request_dnssec_rr(t, ds);
2444 if (r < 0)
2445 return r;
2446
2447 break;
2448 }
2449
2450 case DNS_TYPE_SOA:
2451 case DNS_TYPE_NS: {
2452 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *ds = NULL;
2453
2454 /* For an unsigned SOA or NS, try to acquire
2455 * the matching DS RR, as we are at a zone cut
2456 * then, and whether a DS exists tells us
2457 * whether the zone is signed. Do so only if
2458 * this RR matches our original question,
2459 * however. */
2460
2461 r = dns_resource_key_match_rr(dns_transaction_key(t), rr, NULL);
2462 if (r < 0)
2463 return r;
2464 if (r == 0) {
2465 /* Hmm, so this SOA RR doesn't match our original question. In this case, maybe this is
2466 * a negative reply, and we need the SOA RR's TTL in order to cache a negative entry?
2467 * If so, we need to validate it, too. */
2468
2469 r = dns_answer_match_key(t->answer, dns_transaction_key(t), NULL);
2470 if (r < 0)
2471 return r;
2472 if (r > 0) /* positive reply, we won't need the SOA and hence don't need to validate
2473 * it. */
2474 continue;
2475
2476 /* Only bother with this if the SOA/NS RR we are looking at is actually a parent of
2477 * what we are looking for, otherwise there's no value in it for us. */
2478 r = dns_name_endswith(dns_resource_key_name(dns_transaction_key(t)), dns_resource_key_name(rr->key));
2479 if (r < 0)
2480 return r;
2481 if (r == 0)
2482 continue;
2483 }
2484
2485 r = dnssec_has_rrsig(t->answer, rr->key);
2486 if (r < 0)
2487 return r;
2488 if (r > 0)
2489 continue;
2490
2491 ds = dns_resource_key_new(rr->key->class, DNS_TYPE_DS, dns_resource_key_name(rr->key));
2492 if (!ds)
2493 return -ENOMEM;
2494
2495 log_debug("Requesting DS to validate transaction %" PRIu16 " (%s, unsigned SOA/NS RRset).",
2496 t->id, dns_resource_key_name(rr->key));
2497 r = dns_transaction_request_dnssec_rr(t, ds);
2498 if (r < 0)
2499 return r;
2500
2501 break;
2502 }
2503
2504 case DNS_TYPE_DS:
2505 case DNS_TYPE_CNAME:
2506 case DNS_TYPE_DNAME: {
2507 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *soa = NULL;
2508 const char *name;
2509
2510 /* CNAMEs and DNAMEs cannot be located at a
2511 * zone apex, hence ask for the parent SOA for
2512 * unsigned CNAME/DNAME RRs, maybe that's the
2513 * apex. But do all that only if this is
2514 * actually a response to our original
2515 * question.
2516 *
2517 * Similar for DS RRs, which are signed when
2518 * the parent SOA is signed. */
2519
2520 r = dns_transaction_is_primary_response(t, rr);
2521 if (r < 0)
2522 return r;
2523 if (r == 0)
2524 continue;
2525
2526 r = dnssec_has_rrsig(t->answer, rr->key);
2527 if (r < 0)
2528 return r;
2529 if (r > 0)
2530 continue;
2531
2532 r = dns_answer_has_dname_for_cname(t->answer, rr);
2533 if (r < 0)
2534 return r;
2535 if (r > 0)
2536 continue;
2537
2538 name = dns_resource_key_name(rr->key);
2539 r = dns_name_parent(&name);
2540 if (r < 0)
2541 return r;
2542 if (r == 0)
2543 continue;
2544
2545 soa = dns_resource_key_new(rr->key->class, DNS_TYPE_SOA, name);
2546 if (!soa)
2547 return -ENOMEM;
2548
2549 log_debug("Requesting parent SOA to validate transaction %" PRIu16 " (%s, unsigned CNAME/DNAME/DS RRset).",
2550 t->id, dns_resource_key_name(rr->key));
2551 r = dns_transaction_request_dnssec_rr(t, soa);
2552 if (r < 0)
2553 return r;
2554
2555 break;
2556 }
2557
2558 default: {
2559 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *soa = NULL;
2560
2561 /* For other unsigned RRsets (including
2562 * NSEC/NSEC3!), look for proof the zone is
2563 * unsigned, by requesting the SOA RR of the
2564 * zone. However, do so only if they are
2565 * directly relevant to our original
2566 * question. */
2567
2568 r = dns_transaction_is_primary_response(t, rr);
2569 if (r < 0)
2570 return r;
2571 if (r == 0)
2572 continue;
2573
2574 r = dnssec_has_rrsig(t->answer, rr->key);
2575 if (r < 0)
2576 return r;
2577 if (r > 0)
2578 continue;
2579
2580 soa = dns_resource_key_new(rr->key->class, DNS_TYPE_SOA, dns_resource_key_name(rr->key));
2581 if (!soa)
2582 return -ENOMEM;
2583
2584 log_debug("Requesting SOA to validate transaction %" PRIu16 " (%s, unsigned non-SOA/NS RRset <%s>).",
2585 t->id, dns_resource_key_name(rr->key), dns_resource_record_to_string(rr));
2586 r = dns_transaction_request_dnssec_rr(t, soa);
2587 if (r < 0)
2588 return r;
2589 break;
2590 }}
2591 }
2592
2593 /* Above, we requested everything necessary to validate what
2594 * we got. Now, let's request what we need to validate what we
2595 * didn't get... */
2596
2597 r = dns_transaction_has_negative_answer(t);
2598 if (r < 0)
2599 return r;
2600 if (r > 0) {
2601 const char *name, *signed_status;
2602 uint16_t type = 0;
2603
2604 name = dns_resource_key_name(dns_transaction_key(t));
2605 signed_status = dns_answer_contains_nsec_or_nsec3(t->answer) ? "signed" : "unsigned";
2606
2607 /* If this was a SOA or NS request, then check if there's a DS RR for the same domain. Note that this
2608 * could also be used as indication that we are not at a zone apex, but in real world setups there are
2609 * too many broken DNS servers (Hello, incapdns.net!) where non-terminal zones return NXDOMAIN even
2610 * though they have further children. If this was a DS request, then it's signed when the parent zone
2611 * is signed, hence ask the parent SOA in that case. If this was any other RR then ask for the SOA RR,
2612 * to see if that is signed. */
2613
2614 if (dns_transaction_key(t)->type == DNS_TYPE_DS) {
2615 r = dns_name_parent(&name);
2616 if (r > 0) {
2617 type = DNS_TYPE_SOA;
2618 log_debug("Requesting parent SOA (%s %s) to validate transaction %" PRIu16 " (%s, %s empty DS response).",
2619 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), name, t->id,
2620 dns_resource_key_name(dns_transaction_key(t)), signed_status);
2621 } else
2622 name = NULL;
2623
2624 } else if (IN_SET(dns_transaction_key(t)->type, DNS_TYPE_SOA, DNS_TYPE_NS)) {
2625
2626 type = DNS_TYPE_DS;
2627 log_debug("Requesting DS (%s %s) to validate transaction %" PRIu16 " (%s, %s empty SOA/NS response).",
2628 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), name, t->id, name, signed_status);
2629
2630 } else {
2631 type = DNS_TYPE_SOA;
2632 log_debug("Requesting SOA (%s %s) to validate transaction %" PRIu16 " (%s, %s empty non-SOA/NS/DS response).",
2633 special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), name, t->id, name, signed_status);
2634 }
2635
2636 if (name) {
2637 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *soa = NULL;
2638
2639 soa = dns_resource_key_new(dns_transaction_key(t)->class, type, name);
2640 if (!soa)
2641 return -ENOMEM;
2642
2643 r = dns_transaction_request_dnssec_rr(t, soa);
2644 if (r < 0)
2645 return r;
2646 }
2647 }
2648
2649 return dns_transaction_dnssec_is_live(t);
2650 }
2651
2652 void dns_transaction_notify(DnsTransaction *t, DnsTransaction *source) {
2653 assert(t);
2654 assert(source);
2655
2656 /* Invoked whenever any of our auxiliary DNSSEC transactions completed its work. If the state is still PENDING,
2657 we are still in the loop that adds further DNSSEC transactions, hence don't check if we are ready yet. If
2658 the state is VALIDATING however, we should check if we are complete now. */
2659
2660 if (t->state == DNS_TRANSACTION_VALIDATING)
2661 dns_transaction_process_dnssec(t);
2662 }
2663
2664 static int dns_transaction_validate_dnskey_by_ds(DnsTransaction *t) {
2665 DnsAnswerItem *item;
2666 int r;
2667
2668 assert(t);
2669
2670 /* Add all DNSKEY RRs from the answer that are validated by DS
2671 * RRs from the list of validated keys to the list of
2672 * validated keys. */
2673
2674 DNS_ANSWER_FOREACH_ITEM(item, t->answer) {
2675
2676 r = dnssec_verify_dnskey_by_ds_search(item->rr, t->validated_keys);
2677 if (r < 0)
2678 return r;
2679 if (r == 0)
2680 continue;
2681
2682 /* If so, the DNSKEY is validated too. */
2683 r = dns_answer_add_extend(&t->validated_keys, item->rr, item->ifindex, item->flags|DNS_ANSWER_AUTHENTICATED, item->rrsig);
2684 if (r < 0)
2685 return r;
2686 }
2687
2688 return 0;
2689 }
2690
2691 static int dns_transaction_requires_rrsig(DnsTransaction *t, DnsResourceRecord *rr) {
2692 int r;
2693
2694 assert(t);
2695 assert(rr);
2696
2697 /* Checks if the RR we are looking for must be signed with an
2698 * RRSIG. This is used for positive responses. */
2699
2700 if (t->scope->dnssec_mode == DNSSEC_NO)
2701 return false;
2702
2703 if (dns_type_is_pseudo(rr->key->type))
2704 return -EINVAL;
2705
2706 r = dns_transaction_negative_trust_anchor_lookup(t, dns_resource_key_name(rr->key));
2707 if (r < 0)
2708 return r;
2709 if (r > 0)
2710 return false;
2711
2712 switch (rr->key->type) {
2713
2714 case DNS_TYPE_RRSIG:
2715 /* RRSIGs are the signatures themselves, they need no signing. */
2716 return false;
2717
2718 case DNS_TYPE_SOA:
2719 case DNS_TYPE_NS: {
2720 DnsTransaction *dt;
2721
2722 /* For SOA or NS RRs we look for a matching DS transaction */
2723
2724 SET_FOREACH(dt, t->dnssec_transactions) {
2725
2726 if (dns_transaction_key(dt)->class != rr->key->class)
2727 continue;
2728 if (dns_transaction_key(dt)->type != DNS_TYPE_DS)
2729 continue;
2730
2731 r = dns_name_equal(dns_resource_key_name(dns_transaction_key(dt)), dns_resource_key_name(rr->key));
2732 if (r < 0)
2733 return r;
2734 if (r == 0)
2735 continue;
2736
2737 /* We found a DS transactions for the SOA/NS
2738 * RRs we are looking at. If it discovered signed DS
2739 * RRs, then we need to be signed, too. */
2740
2741 if (!FLAGS_SET(dt->answer_query_flags, SD_RESOLVED_AUTHENTICATED))
2742 return false;
2743
2744 return dns_answer_match_key(dt->answer, dns_transaction_key(dt), NULL);
2745 }
2746
2747 /* We found nothing that proves this is safe to leave
2748 * this unauthenticated, hence ask inist on
2749 * authentication. */
2750 return true;
2751 }
2752
2753 case DNS_TYPE_DS:
2754 case DNS_TYPE_CNAME:
2755 case DNS_TYPE_DNAME: {
2756 const char *parent = NULL;
2757 DnsTransaction *dt;
2758
2759 /*
2760 * CNAME/DNAME RRs cannot be located at a zone apex, hence look directly for the parent SOA.
2761 *
2762 * DS RRs are signed if the parent is signed, hence also look at the parent SOA
2763 */
2764
2765 SET_FOREACH(dt, t->dnssec_transactions) {
2766
2767 if (dns_transaction_key(dt)->class != rr->key->class)
2768 continue;
2769 if (dns_transaction_key(dt)->type != DNS_TYPE_SOA)
2770 continue;
2771
2772 if (!parent) {
2773 parent = dns_resource_key_name(rr->key);
2774 r = dns_name_parent(&parent);
2775 if (r < 0)
2776 return r;
2777 if (r == 0) {
2778 if (rr->key->type == DNS_TYPE_DS)
2779 return true;
2780
2781 /* A CNAME/DNAME without a parent? That's sooo weird. */
2782 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
2783 "Transaction %" PRIu16 " claims CNAME/DNAME at root. Refusing.", t->id);
2784 }
2785 }
2786
2787 r = dns_name_equal(dns_resource_key_name(dns_transaction_key(dt)), parent);
2788 if (r < 0)
2789 return r;
2790 if (r == 0)
2791 continue;
2792
2793 return FLAGS_SET(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED);
2794 }
2795
2796 return true;
2797 }
2798
2799 default: {
2800 DnsTransaction *dt;
2801
2802 /* Any other kind of RR (including DNSKEY/NSEC/NSEC3). Let's see if our SOA lookup was authenticated */
2803
2804 SET_FOREACH(dt, t->dnssec_transactions) {
2805
2806 if (dns_transaction_key(dt)->class != rr->key->class)
2807 continue;
2808 if (dns_transaction_key(dt)->type != DNS_TYPE_SOA)
2809 continue;
2810
2811 r = dns_name_equal(dns_resource_key_name(dns_transaction_key(dt)), dns_resource_key_name(rr->key));
2812 if (r < 0)
2813 return r;
2814 if (r == 0)
2815 continue;
2816
2817 /* We found the transaction that was supposed to find the SOA RR for us. It was
2818 * successful, but found no RR for us. This means we are not at a zone cut. In this
2819 * case, we require authentication if the SOA lookup was authenticated too. */
2820 return FLAGS_SET(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED);
2821 }
2822
2823 return true;
2824 }}
2825 }
2826
2827 static int dns_transaction_in_private_tld(DnsTransaction *t, const DnsResourceKey *key) {
2828 DnsTransaction *dt;
2829 const char *tld;
2830 int r;
2831
2832 /* If DNSSEC downgrade mode is on, checks whether the
2833 * specified RR is one level below a TLD we have proven not to
2834 * exist. In such a case we assume that this is a private
2835 * domain, and permit it.
2836 *
2837 * This detects cases like the Fritz!Box router networks. Each
2838 * Fritz!Box router serves a private "fritz.box" zone, in the
2839 * non-existing TLD "box". Requests for the "fritz.box" domain
2840 * are served by the router itself, while requests for the
2841 * "box" domain will result in NXDOMAIN.
2842 *
2843 * Note that this logic is unable to detect cases where a
2844 * router serves a private DNS zone directly under
2845 * non-existing TLD. In such a case we cannot detect whether
2846 * the TLD is supposed to exist or not, as all requests we
2847 * make for it will be answered by the router's zone, and not
2848 * by the root zone. */
2849
2850 assert(t);
2851
2852 if (t->scope->dnssec_mode != DNSSEC_ALLOW_DOWNGRADE)
2853 return false; /* In strict DNSSEC mode what doesn't exist, doesn't exist */
2854
2855 tld = dns_resource_key_name(key);
2856 r = dns_name_parent(&tld);
2857 if (r < 0)
2858 return r;
2859 if (r == 0)
2860 return false; /* Already the root domain */
2861
2862 if (!dns_name_is_single_label(tld))
2863 return false;
2864
2865 SET_FOREACH(dt, t->dnssec_transactions) {
2866
2867 if (dns_transaction_key(dt)->class != key->class)
2868 continue;
2869
2870 r = dns_name_equal(dns_resource_key_name(dns_transaction_key(dt)), tld);
2871 if (r < 0)
2872 return r;
2873 if (r == 0)
2874 continue;
2875
2876 /* We found an auxiliary lookup we did for the TLD. If
2877 * that returned with NXDOMAIN, we know the TLD didn't
2878 * exist, and hence this might be a private zone. */
2879
2880 return dt->answer_rcode == DNS_RCODE_NXDOMAIN;
2881 }
2882
2883 return false;
2884 }
2885
2886 static int dns_transaction_requires_nsec(DnsTransaction *t) {
2887 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
2888 DnsTransaction *dt;
2889 const char *name;
2890 uint16_t type = 0;
2891 int r;
2892
2893 assert(t);
2894
2895 /* Checks if we need to insist on NSEC/NSEC3 RRs for proving
2896 * this negative reply */
2897
2898 if (t->scope->dnssec_mode == DNSSEC_NO)
2899 return false;
2900
2901 if (dns_type_is_pseudo(dns_transaction_key(t)->type))
2902 return -EINVAL;
2903
2904 r = dns_transaction_negative_trust_anchor_lookup(t, dns_resource_key_name(dns_transaction_key(t)));
2905 if (r < 0)
2906 return r;
2907 if (r > 0)
2908 return false;
2909
2910 r = dns_transaction_in_private_tld(t, dns_transaction_key(t));
2911 if (r < 0)
2912 return r;
2913 if (r > 0) {
2914 /* The lookup is from a TLD that is proven not to
2915 * exist, and we are in downgrade mode, hence ignore
2916 * that fact that we didn't get any NSEC RRs. */
2917
2918 log_info("Detected a negative query %s in a private DNS zone, permitting unsigned response.",
2919 dns_resource_key_to_string(dns_transaction_key(t), key_str, sizeof key_str));
2920 return false;
2921 }
2922
2923 name = dns_resource_key_name(dns_transaction_key(t));
2924
2925 if (dns_transaction_key(t)->type == DNS_TYPE_DS) {
2926
2927 /* We got a negative reply for this DS lookup? DS RRs are signed when their parent zone is signed,
2928 * hence check the parent SOA in this case. */
2929
2930 r = dns_name_parent(&name);
2931 if (r < 0)
2932 return r;
2933 if (r == 0)
2934 return true;
2935
2936 type = DNS_TYPE_SOA;
2937
2938 } else if (IN_SET(dns_transaction_key(t)->type, DNS_TYPE_SOA, DNS_TYPE_NS))
2939 /* We got a negative reply for this SOA/NS lookup? If so, check if there's a DS RR for this */
2940 type = DNS_TYPE_DS;
2941 else
2942 /* For all other negative replies, check for the SOA lookup */
2943 type = DNS_TYPE_SOA;
2944
2945 /* For all other RRs we check the SOA on the same level to see
2946 * if it's signed. */
2947
2948 SET_FOREACH(dt, t->dnssec_transactions) {
2949
2950 if (dns_transaction_key(dt)->class != dns_transaction_key(t)->class)
2951 continue;
2952 if (dns_transaction_key(dt)->type != type)
2953 continue;
2954
2955 r = dns_name_equal(dns_resource_key_name(dns_transaction_key(dt)), name);
2956 if (r < 0)
2957 return r;
2958 if (r == 0)
2959 continue;
2960
2961 return FLAGS_SET(dt->answer_query_flags, SD_RESOLVED_AUTHENTICATED);
2962 }
2963
2964 /* If in doubt, require NSEC/NSEC3 */
2965 return true;
2966 }
2967
2968 static int dns_transaction_dnskey_authenticated(DnsTransaction *t, DnsResourceRecord *rr) {
2969 DnsResourceRecord *rrsig;
2970 bool found = false;
2971 int r;
2972
2973 /* Checks whether any of the DNSKEYs used for the RRSIGs for
2974 * the specified RRset is authenticated (i.e. has a matching
2975 * DS RR). */
2976
2977 r = dns_transaction_negative_trust_anchor_lookup(t, dns_resource_key_name(rr->key));
2978 if (r < 0)
2979 return r;
2980 if (r > 0)
2981 return false;
2982
2983 DNS_ANSWER_FOREACH(rrsig, t->answer) {
2984 DnsTransaction *dt;
2985
2986 r = dnssec_key_match_rrsig(rr->key, rrsig);
2987 if (r < 0)
2988 return r;
2989 if (r == 0)
2990 continue;
2991
2992 SET_FOREACH(dt, t->dnssec_transactions) {
2993
2994 if (dns_transaction_key(dt)->class != rr->key->class)
2995 continue;
2996
2997 if (dns_transaction_key(dt)->type == DNS_TYPE_DNSKEY) {
2998
2999 r = dns_name_equal(dns_resource_key_name(dns_transaction_key(dt)), rrsig->rrsig.signer);
3000 if (r < 0)
3001 return r;
3002 if (r == 0)
3003 continue;
3004
3005 /* OK, we found an auxiliary DNSKEY lookup. If that lookup is authenticated,
3006 * report this. */
3007
3008 if (FLAGS_SET(dt->answer_query_flags, SD_RESOLVED_AUTHENTICATED))
3009 return true;
3010
3011 found = true;
3012
3013 } else if (dns_transaction_key(dt)->type == DNS_TYPE_DS) {
3014
3015 r = dns_name_equal(dns_resource_key_name(dns_transaction_key(dt)), rrsig->rrsig.signer);
3016 if (r < 0)
3017 return r;
3018 if (r == 0)
3019 continue;
3020
3021 /* OK, we found an auxiliary DS lookup. If that lookup is authenticated and
3022 * non-zero, we won! */
3023
3024 if (!FLAGS_SET(dt->answer_query_flags, SD_RESOLVED_AUTHENTICATED))
3025 return false;
3026
3027 return dns_answer_match_key(dt->answer, dns_transaction_key(dt), NULL);
3028 }
3029 }
3030 }
3031
3032 return found ? false : -ENXIO;
3033 }
3034
3035 static int dns_transaction_known_signed(DnsTransaction *t, DnsResourceRecord *rr) {
3036 assert(t);
3037 assert(rr);
3038
3039 /* We know that the root domain is signed, hence if it appears
3040 * not to be signed, there's a problem with the DNS server */
3041
3042 return rr->key->class == DNS_CLASS_IN &&
3043 dns_name_is_root(dns_resource_key_name(rr->key));
3044 }
3045
3046 static int dns_transaction_check_revoked_trust_anchors(DnsTransaction *t) {
3047 DnsResourceRecord *rr;
3048 int r;
3049
3050 assert(t);
3051
3052 /* Maybe warn the user that we encountered a revoked DNSKEY
3053 * for a key from our trust anchor. Note that we don't care
3054 * whether the DNSKEY can be authenticated or not. It's
3055 * sufficient if it is self-signed. */
3056
3057 DNS_ANSWER_FOREACH(rr, t->answer) {
3058 r = dns_trust_anchor_check_revoked(&t->scope->manager->trust_anchor, rr, t->answer);
3059 if (r < 0)
3060 return r;
3061 }
3062
3063 return 0;
3064 }
3065
3066 static int dns_transaction_invalidate_revoked_keys(DnsTransaction *t) {
3067 bool changed;
3068 int r;
3069
3070 assert(t);
3071
3072 /* Removes all DNSKEY/DS objects from t->validated_keys that
3073 * our trust anchors database considers revoked. */
3074
3075 do {
3076 DnsResourceRecord *rr;
3077
3078 changed = false;
3079
3080 DNS_ANSWER_FOREACH(rr, t->validated_keys) {
3081 r = dns_trust_anchor_is_revoked(&t->scope->manager->trust_anchor, rr);
3082 if (r < 0)
3083 return r;
3084 if (r > 0) {
3085 r = dns_answer_remove_by_rr(&t->validated_keys, rr);
3086 if (r < 0)
3087 return r;
3088
3089 assert(r > 0);
3090 changed = true;
3091 break;
3092 }
3093 }
3094 } while (changed);
3095
3096 return 0;
3097 }
3098
3099 static int dns_transaction_copy_validated(DnsTransaction *t) {
3100 DnsTransaction *dt;
3101 int r;
3102
3103 assert(t);
3104
3105 /* Copy all validated RRs from the auxiliary DNSSEC transactions into our set of validated RRs */
3106
3107 SET_FOREACH(dt, t->dnssec_transactions) {
3108
3109 if (DNS_TRANSACTION_IS_LIVE(dt->state))
3110 continue;
3111
3112 if (!FLAGS_SET(dt->answer_query_flags, SD_RESOLVED_AUTHENTICATED))
3113 continue;
3114
3115 r = dns_answer_extend(&t->validated_keys, dt->answer);
3116 if (r < 0)
3117 return r;
3118 }
3119
3120 return 0;
3121 }
3122
3123 typedef enum {
3124 DNSSEC_PHASE_DNSKEY, /* Phase #1, only validate DNSKEYs */
3125 DNSSEC_PHASE_NSEC, /* Phase #2, only validate NSEC+NSEC3 */
3126 DNSSEC_PHASE_ALL, /* Phase #3, validate everything else */
3127 } Phase;
3128
3129 static int dnssec_validate_records(
3130 DnsTransaction *t,
3131 Phase phase,
3132 bool *have_nsec,
3133 DnsAnswer **validated) {
3134
3135 DnsResourceRecord *rr;
3136 int r;
3137
3138 /* Returns negative on error, 0 if validation failed, 1 to restart validation, 2 when finished. */
3139
3140 DNS_ANSWER_FOREACH(rr, t->answer) {
3141 _unused_ _cleanup_(dns_resource_record_unrefp) DnsResourceRecord *rr_ref = dns_resource_record_ref(rr);
3142 DnsResourceRecord *rrsig = NULL;
3143 DnssecResult result;
3144
3145 switch (rr->key->type) {
3146 case DNS_TYPE_RRSIG:
3147 continue;
3148
3149 case DNS_TYPE_DNSKEY:
3150 /* We validate DNSKEYs only in the DNSKEY and ALL phases */
3151 if (phase == DNSSEC_PHASE_NSEC)
3152 continue;
3153 break;
3154
3155 case DNS_TYPE_NSEC:
3156 case DNS_TYPE_NSEC3:
3157 *have_nsec = true;
3158
3159 /* We validate NSEC/NSEC3 only in the NSEC and ALL phases */
3160 if (phase == DNSSEC_PHASE_DNSKEY)
3161 continue;
3162 break;
3163
3164 default:
3165 /* We validate all other RRs only in the ALL phases */
3166 if (phase != DNSSEC_PHASE_ALL)
3167 continue;
3168 }
3169
3170 r = dnssec_verify_rrset_search(
3171 t->answer,
3172 rr->key,
3173 t->validated_keys,
3174 USEC_INFINITY,
3175 &result,
3176 &rrsig);
3177 if (r < 0)
3178 return r;
3179
3180 log_debug("Looking at %s: %s", strna(dns_resource_record_to_string(rr)), dnssec_result_to_string(result));
3181
3182 if (result == DNSSEC_VALIDATED) {
3183 assert(rrsig);
3184
3185 if (rr->key->type == DNS_TYPE_DNSKEY) {
3186 /* If we just validated a DNSKEY RRset, then let's add these keys to
3187 * the set of validated keys for this transaction. */
3188
3189 r = dns_answer_copy_by_key(&t->validated_keys, t->answer, rr->key, DNS_ANSWER_AUTHENTICATED, rrsig);
3190 if (r < 0)
3191 return r;
3192
3193 /* Some of the DNSKEYs we just added might already have been revoked,
3194 * remove them again in that case. */
3195 r = dns_transaction_invalidate_revoked_keys(t);
3196 if (r < 0)
3197 return r;
3198 }
3199
3200 /* Add the validated RRset to the new list of validated RRsets, and remove it from
3201 * the unvalidated RRsets. We mark the RRset as authenticated and cacheable. */
3202 r = dns_answer_move_by_key(validated, &t->answer, rr->key, DNS_ANSWER_AUTHENTICATED|DNS_ANSWER_CACHEABLE, rrsig);
3203 if (r < 0)
3204 return r;
3205
3206 manager_dnssec_verdict(t->scope->manager, DNSSEC_SECURE, rr->key);
3207
3208 /* Exit the loop, we dropped something from the answer, start from the beginning */
3209 return 1;
3210 }
3211
3212 /* If we haven't read all DNSKEYs yet a negative result of the validation is irrelevant, as
3213 * there might be more DNSKEYs coming. Similar, if we haven't read all NSEC/NSEC3 RRs yet,
3214 * we cannot do positive wildcard proofs yet, as those require the NSEC/NSEC3 RRs. */
3215 if (phase != DNSSEC_PHASE_ALL)
3216 continue;
3217
3218 if (result == DNSSEC_VALIDATED_WILDCARD) {
3219 bool authenticated = false;
3220 const char *source;
3221
3222 assert(rrsig);
3223
3224 /* This RRset validated, but as a wildcard. This means we need
3225 * to prove via NSEC/NSEC3 that no matching non-wildcard RR exists. */
3226
3227 /* First step, determine the source of synthesis */
3228 r = dns_resource_record_source(rrsig, &source);
3229 if (r < 0)
3230 return r;
3231
3232 r = dnssec_test_positive_wildcard(*validated,
3233 dns_resource_key_name(rr->key),
3234 source,
3235 rrsig->rrsig.signer,
3236 &authenticated);
3237
3238 /* Unless the NSEC proof showed that the key really doesn't exist something is off. */
3239 if (r == 0)
3240 result = DNSSEC_INVALID;
3241 else {
3242 r = dns_answer_move_by_key(
3243 validated,
3244 &t->answer,
3245 rr->key,
3246 authenticated ? (DNS_ANSWER_AUTHENTICATED|DNS_ANSWER_CACHEABLE) : 0,
3247 rrsig);
3248 if (r < 0)
3249 return r;
3250
3251 manager_dnssec_verdict(t->scope->manager, authenticated ? DNSSEC_SECURE : DNSSEC_INSECURE, rr->key);
3252
3253 /* Exit the loop, we dropped something from the answer, start from the beginning */
3254 return 1;
3255 }
3256 }
3257
3258 if (result == DNSSEC_NO_SIGNATURE) {
3259 r = dns_transaction_requires_rrsig(t, rr);
3260 if (r < 0)
3261 return r;
3262 if (r == 0) {
3263 /* Data does not require signing. In that case, just copy it over,
3264 * but remember that this is by no means authenticated. */
3265 r = dns_answer_move_by_key(
3266 validated,
3267 &t->answer,
3268 rr->key,
3269 0,
3270 NULL);
3271 if (r < 0)
3272 return r;
3273
3274 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
3275 return 1;
3276 }
3277
3278 r = dns_transaction_known_signed(t, rr);
3279 if (r < 0)
3280 return r;
3281 if (r > 0) {
3282 /* This is an RR we know has to be signed. If it isn't this means
3283 * the server is not attaching RRSIGs, hence complain. */
3284
3285 dns_server_packet_rrsig_missing(t->server, t->current_feature_level);
3286
3287 if (t->scope->dnssec_mode == DNSSEC_ALLOW_DOWNGRADE) {
3288
3289 /* Downgrading is OK? If so, just consider the information unsigned */
3290
3291 r = dns_answer_move_by_key(validated, &t->answer, rr->key, 0, NULL);
3292 if (r < 0)
3293 return r;
3294
3295 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
3296 return 1;
3297 }
3298
3299 /* Otherwise, fail */
3300 t->answer_dnssec_result = DNSSEC_INCOMPATIBLE_SERVER;
3301 return 0;
3302 }
3303
3304 r = dns_transaction_in_private_tld(t, rr->key);
3305 if (r < 0)
3306 return r;
3307 if (r > 0) {
3308 char s[DNS_RESOURCE_KEY_STRING_MAX];
3309
3310 /* The data is from a TLD that is proven not to exist, and we are in downgrade
3311 * mode, hence ignore the fact that this was not signed. */
3312
3313 log_info("Detected RRset %s is in a private DNS zone, permitting unsigned RRs.",
3314 dns_resource_key_to_string(rr->key, s, sizeof s));
3315
3316 r = dns_answer_move_by_key(validated, &t->answer, rr->key, 0, NULL);
3317 if (r < 0)
3318 return r;
3319
3320 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
3321 return 1;
3322 }
3323 }
3324
3325 /* https://datatracker.ietf.org/doc/html/rfc6840#section-5.2 */
3326 if (result == DNSSEC_UNSUPPORTED_ALGORITHM) {
3327 r = dns_answer_move_by_key(validated, &t->answer, rr->key, 0, NULL);
3328 if (r < 0)
3329 return r;
3330
3331 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
3332 return 1;
3333 }
3334
3335 if (IN_SET(result,
3336 DNSSEC_MISSING_KEY,
3337 DNSSEC_SIGNATURE_EXPIRED)) {
3338
3339 r = dns_transaction_dnskey_authenticated(t, rr);
3340 if (r < 0 && r != -ENXIO)
3341 return r;
3342 if (r == 0) {
3343 /* The DNSKEY transaction was not authenticated, this means there's
3344 * no DS for this, which means it's OK if no keys are found for this signature. */
3345
3346 r = dns_answer_move_by_key(validated, &t->answer, rr->key, 0, NULL);
3347 if (r < 0)
3348 return r;
3349
3350 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
3351 return 1;
3352 }
3353 }
3354
3355 r = dns_transaction_is_primary_response(t, rr);
3356 if (r < 0)
3357 return r;
3358 if (r > 0) {
3359 /* Look for a matching DNAME for this CNAME */
3360 r = dns_answer_has_dname_for_cname(t->answer, rr);
3361 if (r < 0)
3362 return r;
3363 if (r == 0) {
3364 /* Also look among the stuff we already validated */
3365 r = dns_answer_has_dname_for_cname(*validated, rr);
3366 if (r < 0)
3367 return r;
3368 }
3369
3370 if (r == 0) {
3371 if (IN_SET(result,
3372 DNSSEC_INVALID,
3373 DNSSEC_SIGNATURE_EXPIRED,
3374 DNSSEC_NO_SIGNATURE))
3375 manager_dnssec_verdict(t->scope->manager, DNSSEC_BOGUS, rr->key);
3376 else /* DNSSEC_MISSING_KEY or DNSSEC_UNSUPPORTED_ALGORITHM */
3377 manager_dnssec_verdict(t->scope->manager, DNSSEC_INDETERMINATE, rr->key);
3378
3379 /* This is a primary response to our question, and it failed validation.
3380 * That's fatal. */
3381 t->answer_dnssec_result = result;
3382 return 0;
3383 }
3384
3385 /* This is a primary response, but we do have a DNAME RR
3386 * in the RR that can replay this CNAME, hence rely on
3387 * that, and we can remove the CNAME in favour of it. */
3388 }
3389
3390 /* This is just some auxiliary data. Just remove the RRset and continue. */
3391 r = dns_answer_remove_by_key(&t->answer, rr->key);
3392 if (r < 0)
3393 return r;
3394
3395 /* We dropped something from the answer, start from the beginning. */
3396 return 1;
3397 }
3398
3399 return 2; /* Finito. */
3400 }
3401
3402 int dns_transaction_validate_dnssec(DnsTransaction *t) {
3403 _cleanup_(dns_answer_unrefp) DnsAnswer *validated = NULL;
3404 Phase phase;
3405 DnsAnswerFlags flags;
3406 int r;
3407 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
3408
3409 assert(t);
3410
3411 /* We have now collected all DS and DNSKEY RRs in t->validated_keys, let's see which RRs we can now
3412 * authenticate with that. */
3413
3414 if (FLAGS_SET(t->query_flags, SD_RESOLVED_NO_VALIDATE) || t->scope->dnssec_mode == DNSSEC_NO)
3415 return 0;
3416
3417 /* Already validated */
3418 if (t->answer_dnssec_result != _DNSSEC_RESULT_INVALID)
3419 return 0;
3420
3421 /* Our own stuff needs no validation */
3422 if (IN_SET(t->answer_source, DNS_TRANSACTION_ZONE, DNS_TRANSACTION_TRUST_ANCHOR)) {
3423 t->answer_dnssec_result = DNSSEC_VALIDATED;
3424 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, true);
3425 return 0;
3426 }
3427
3428 /* Cached stuff is not affected by validation. */
3429 if (t->answer_source != DNS_TRANSACTION_NETWORK)
3430 return 0;
3431
3432 if (!dns_transaction_dnssec_supported_full(t)) {
3433 /* The server does not support DNSSEC, or doesn't augment responses with RRSIGs. */
3434 t->answer_dnssec_result = DNSSEC_INCOMPATIBLE_SERVER;
3435 log_debug("Not validating response for %" PRIu16 ", used server feature level does not support DNSSEC.", t->id);
3436 return 0;
3437 }
3438
3439 log_debug("Validating response from transaction %" PRIu16 " (%s).",
3440 t->id,
3441 dns_resource_key_to_string(dns_transaction_key(t), key_str, sizeof key_str));
3442
3443 /* First, see if this response contains any revoked trust
3444 * anchors we care about */
3445 r = dns_transaction_check_revoked_trust_anchors(t);
3446 if (r < 0)
3447 return r;
3448
3449 /* Third, copy all RRs we acquired successfully from auxiliary RRs over. */
3450 r = dns_transaction_copy_validated(t);
3451 if (r < 0)
3452 return r;
3453
3454 /* Second, see if there are DNSKEYs we already know a
3455 * validated DS for. */
3456 r = dns_transaction_validate_dnskey_by_ds(t);
3457 if (r < 0)
3458 return r;
3459
3460 /* Fourth, remove all DNSKEY and DS RRs again that our trust
3461 * anchor says are revoked. After all we might have marked
3462 * some keys revoked above, but they might still be lingering
3463 * in our validated_keys list. */
3464 r = dns_transaction_invalidate_revoked_keys(t);
3465 if (r < 0)
3466 return r;
3467
3468 phase = DNSSEC_PHASE_DNSKEY;
3469 for (;;) {
3470 bool have_nsec = false;
3471
3472 r = dnssec_validate_records(t, phase, &have_nsec, &validated);
3473 if (r <= 0)
3474 return r;
3475
3476 /* Try again as long as we managed to achieve something */
3477 if (r == 1)
3478 continue;
3479
3480 if (phase == DNSSEC_PHASE_DNSKEY && have_nsec) {
3481 /* OK, we processed all DNSKEYs, and there are NSEC/NSEC3 RRs, look at those now. */
3482 phase = DNSSEC_PHASE_NSEC;
3483 continue;
3484 }
3485
3486 if (phase != DNSSEC_PHASE_ALL) {
3487 /* OK, we processed all DNSKEYs and NSEC/NSEC3 RRs, look at all the rest now.
3488 * Note that in this third phase we start to remove RRs we couldn't validate. */
3489 phase = DNSSEC_PHASE_ALL;
3490 continue;
3491 }
3492
3493 /* We're done */
3494 break;
3495 }
3496
3497 DNS_ANSWER_REPLACE(t->answer, TAKE_PTR(validated));
3498
3499 /* At this point the answer only contains validated
3500 * RRsets. Now, let's see if it actually answers the question
3501 * we asked. If so, great! If it doesn't, then see if
3502 * NSEC/NSEC3 can prove this. */
3503 r = dns_transaction_has_positive_answer(t, &flags);
3504 if (r > 0) {
3505 /* Yes, it answers the question! */
3506
3507 if (flags & DNS_ANSWER_AUTHENTICATED) {
3508 /* The answer is fully authenticated, yay. */
3509 t->answer_dnssec_result = DNSSEC_VALIDATED;
3510 t->answer_rcode = DNS_RCODE_SUCCESS;
3511 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, true);
3512 } else {
3513 /* The answer is not fully authenticated. */
3514 t->answer_dnssec_result = DNSSEC_UNSIGNED;
3515 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, false);
3516 }
3517
3518 } else if (r == 0) {
3519 DnssecNsecResult nr;
3520 bool authenticated = false;
3521
3522 /* Bummer! Let's check NSEC/NSEC3 */
3523 r = dnssec_nsec_test(t->answer, dns_transaction_key(t), &nr, &authenticated, &t->answer_nsec_ttl);
3524 if (r < 0)
3525 return r;
3526
3527 switch (nr) {
3528
3529 case DNSSEC_NSEC_NXDOMAIN:
3530 /* NSEC proves the domain doesn't exist. Very good. */
3531 log_debug("Proved NXDOMAIN via NSEC/NSEC3 for transaction %u (%s)", t->id, key_str);
3532 t->answer_dnssec_result = DNSSEC_VALIDATED;
3533 t->answer_rcode = DNS_RCODE_NXDOMAIN;
3534 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, authenticated);
3535
3536 manager_dnssec_verdict(t->scope->manager, authenticated ? DNSSEC_SECURE : DNSSEC_INSECURE, dns_transaction_key(t));
3537 break;
3538
3539 case DNSSEC_NSEC_NODATA:
3540 /* NSEC proves that there's no data here, very good. */
3541 log_debug("Proved NODATA via NSEC/NSEC3 for transaction %u (%s)", t->id, key_str);
3542 t->answer_dnssec_result = DNSSEC_VALIDATED;
3543 t->answer_rcode = DNS_RCODE_SUCCESS;
3544 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, authenticated);
3545
3546 manager_dnssec_verdict(t->scope->manager, authenticated ? DNSSEC_SECURE : DNSSEC_INSECURE, dns_transaction_key(t));
3547 break;
3548
3549 case DNSSEC_NSEC_OPTOUT:
3550 /* NSEC3 says the data might not be signed */
3551 log_debug("Data is NSEC3 opt-out via NSEC/NSEC3 for transaction %u (%s)", t->id, key_str);
3552 t->answer_dnssec_result = DNSSEC_UNSIGNED;
3553 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, false);
3554
3555 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, dns_transaction_key(t));
3556 break;
3557
3558 case DNSSEC_NSEC_NO_RR:
3559 /* No NSEC data? Bummer! */
3560
3561 r = dns_transaction_requires_nsec(t);
3562 if (r < 0)
3563 return r;
3564 if (r > 0) {
3565 t->answer_dnssec_result = DNSSEC_NO_SIGNATURE;
3566 manager_dnssec_verdict(t->scope->manager, DNSSEC_BOGUS, dns_transaction_key(t));
3567 } else {
3568 t->answer_dnssec_result = DNSSEC_UNSIGNED;
3569 SET_FLAG(t->answer_query_flags, SD_RESOLVED_AUTHENTICATED, false);
3570 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, dns_transaction_key(t));
3571 }
3572
3573 break;
3574
3575 case DNSSEC_NSEC_UNSUPPORTED_ALGORITHM:
3576 /* We don't know the NSEC3 algorithm used? */
3577 t->answer_dnssec_result = DNSSEC_UNSUPPORTED_ALGORITHM;
3578 manager_dnssec_verdict(t->scope->manager, DNSSEC_INDETERMINATE, dns_transaction_key(t));
3579 break;
3580
3581 case DNSSEC_NSEC_FOUND:
3582 case DNSSEC_NSEC_CNAME:
3583 /* NSEC says it needs to be there, but we couldn't find it? Bummer! */
3584 t->answer_dnssec_result = DNSSEC_NSEC_MISMATCH;
3585 manager_dnssec_verdict(t->scope->manager, DNSSEC_BOGUS, dns_transaction_key(t));
3586 break;
3587
3588 default:
3589 assert_not_reached();
3590 }
3591 }
3592
3593 return 1;
3594 }
3595
3596 static const char* const dns_transaction_state_table[_DNS_TRANSACTION_STATE_MAX] = {
3597 [DNS_TRANSACTION_NULL] = "null",
3598 [DNS_TRANSACTION_PENDING] = "pending",
3599 [DNS_TRANSACTION_VALIDATING] = "validating",
3600 [DNS_TRANSACTION_RCODE_FAILURE] = "rcode-failure",
3601 [DNS_TRANSACTION_SUCCESS] = "success",
3602 [DNS_TRANSACTION_NO_SERVERS] = "no-servers",
3603 [DNS_TRANSACTION_TIMEOUT] = "timeout",
3604 [DNS_TRANSACTION_ATTEMPTS_MAX_REACHED] = "attempts-max-reached",
3605 [DNS_TRANSACTION_INVALID_REPLY] = "invalid-reply",
3606 [DNS_TRANSACTION_ERRNO] = "errno",
3607 [DNS_TRANSACTION_ABORTED] = "aborted",
3608 [DNS_TRANSACTION_DNSSEC_FAILED] = "dnssec-failed",
3609 [DNS_TRANSACTION_NO_TRUST_ANCHOR] = "no-trust-anchor",
3610 [DNS_TRANSACTION_RR_TYPE_UNSUPPORTED] = "rr-type-unsupported",
3611 [DNS_TRANSACTION_NETWORK_DOWN] = "network-down",
3612 [DNS_TRANSACTION_NOT_FOUND] = "not-found",
3613 [DNS_TRANSACTION_NO_SOURCE] = "no-source",
3614 [DNS_TRANSACTION_STUB_LOOP] = "stub-loop",
3615 };
3616 DEFINE_STRING_TABLE_LOOKUP(dns_transaction_state, DnsTransactionState);
3617
3618 static const char* const dns_transaction_source_table[_DNS_TRANSACTION_SOURCE_MAX] = {
3619 [DNS_TRANSACTION_NETWORK] = "network",
3620 [DNS_TRANSACTION_CACHE] = "cache",
3621 [DNS_TRANSACTION_ZONE] = "zone",
3622 [DNS_TRANSACTION_TRUST_ANCHOR] = "trust-anchor",
3623 };
3624 DEFINE_STRING_TABLE_LOOKUP(dns_transaction_source, DnsTransactionSource);