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