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