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