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