]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-transaction.c
resolved: remove redundant code
[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"
3ffd4af2
LP
9#include "fd-util.h"
10#include "random-util.h"
7778dfff 11#include "resolved-dns-cache.h"
3ffd4af2
LP
12#include "resolved-dns-transaction.h"
13#include "resolved-llmnr.h"
56ddbf10 14#if ENABLE_DNS_OVER_TLS
6016fcb0 15#include "resolved-dnstls.h"
5d67a7ae 16#endif
6016fcb0 17#include "string-table.h"
5d67a7ae 18
b214dc0f 19#define TRANSACTIONS_MAX 4096
dc349f5f 20#define TRANSACTION_TCP_TIMEOUT_USEC (10U*USEC_PER_SEC)
b214dc0f 21
dbc4661a
MCO
22/* After how much time to repeat classic DNS requests */
23#define DNS_TIMEOUT_USEC (SD_RESOLVED_QUERY_TIMEOUT_USEC / DNS_TRANSACTION_ATTEMPTS_MAX)
24
c61d2b44
LP
25static void dns_transaction_reset_answer(DnsTransaction *t) {
26 assert(t);
27
28 t->received = dns_packet_unref(t->received);
29 t->answer = dns_answer_unref(t->answer);
30 t->answer_rcode = 0;
31 t->answer_dnssec_result = _DNSSEC_RESULT_INVALID;
32 t->answer_source = _DNS_TRANSACTION_SOURCE_INVALID;
33 t->answer_authenticated = false;
d3760be0 34 t->answer_nsec_ttl = (uint32_t) -1;
7cc6ed7b 35 t->answer_errno = 0;
c61d2b44
LP
36}
37
c5b4f861
LP
38static void dns_transaction_flush_dnssec_transactions(DnsTransaction *t) {
39 DnsTransaction *z;
40
41 assert(t);
42
43 while ((z = set_steal_first(t->dnssec_transactions))) {
44 set_remove(z->notify_transactions, t);
35aa04e9 45 set_remove(z->notify_transactions_done, t);
c5b4f861
LP
46 dns_transaction_gc(z);
47 }
48}
49
f32f0e57
LP
50static void dns_transaction_close_connection(DnsTransaction *t) {
51 assert(t);
52
b30bf55d
LP
53 if (t->stream) {
54 /* Let's detach the stream from our transaction, in case something else keeps a reference to it. */
98767d75
IT
55 LIST_REMOVE(transactions_by_stream, t->stream->transactions, t);
56
57 /* Remove packet in case it's still in the queue */
58 dns_packet_unref(ordered_set_remove(t->stream->write_queue, t->sent));
59
b30bf55d
LP
60 t->stream = dns_stream_unref(t->stream);
61 }
62
f32f0e57
LP
63 t->dns_udp_event_source = sd_event_source_unref(t->dns_udp_event_source);
64 t->dns_udp_fd = safe_close(t->dns_udp_fd);
65}
66
f535705a 67static void dns_transaction_stop_timeout(DnsTransaction *t) {
97cc656c
LP
68 assert(t);
69
70 t->timeout_event_source = sd_event_source_unref(t->timeout_event_source);
97cc656c
LP
71}
72
ec2c5e43 73DnsTransaction* dns_transaction_free(DnsTransaction *t) {
801ad6a6 74 DnsQueryCandidate *c;
ec2c5e43 75 DnsZoneItem *i;
547973de 76 DnsTransaction *z;
ec2c5e43
LP
77
78 if (!t)
79 return NULL;
80
51e399bc
LP
81 log_debug("Freeing transaction %" PRIu16 ".", t->id);
82
f32f0e57 83 dns_transaction_close_connection(t);
f535705a 84 dns_transaction_stop_timeout(t);
ec2c5e43 85
ec2c5e43 86 dns_packet_unref(t->sent);
c61d2b44 87 dns_transaction_reset_answer(t);
ec2c5e43 88
8300ba21 89 dns_server_unref(t->server);
ec2c5e43
LP
90
91 if (t->scope) {
f9ebb22a
LP
92 hashmap_remove_value(t->scope->transactions_by_key, t->key, t);
93 LIST_REMOVE(transactions_by_scope, t->scope->transactions, t);
ec2c5e43
LP
94
95 if (t->id != 0)
96 hashmap_remove(t->scope->manager->dns_transactions, UINT_TO_PTR(t->id));
97 }
98
547973de 99 while ((c = set_steal_first(t->notify_query_candidates)))
801ad6a6 100 set_remove(c->transactions, t);
547973de 101 set_free(t->notify_query_candidates);
801ad6a6 102
35aa04e9
LP
103 while ((c = set_steal_first(t->notify_query_candidates_done)))
104 set_remove(c->transactions, t);
105 set_free(t->notify_query_candidates_done);
106
547973de 107 while ((i = set_steal_first(t->notify_zone_items)))
ec2c5e43 108 i->probe_transaction = NULL;
547973de
LP
109 set_free(t->notify_zone_items);
110
35aa04e9
LP
111 while ((i = set_steal_first(t->notify_zone_items_done)))
112 i->probe_transaction = NULL;
113 set_free(t->notify_zone_items_done);
114
547973de
LP
115 while ((z = set_steal_first(t->notify_transactions)))
116 set_remove(z->dnssec_transactions, t);
117 set_free(t->notify_transactions);
118
35aa04e9
LP
119 while ((z = set_steal_first(t->notify_transactions_done)))
120 set_remove(z->dnssec_transactions, t);
121 set_free(t->notify_transactions_done);
122
c5b4f861 123 dns_transaction_flush_dnssec_transactions(t);
547973de
LP
124 set_free(t->dnssec_transactions);
125
126 dns_answer_unref(t->validated_keys);
97cc656c 127 dns_resource_key_unref(t->key);
97cc656c 128
6b430fdb 129 return mfree(t);
ec2c5e43
LP
130}
131
132DEFINE_TRIVIAL_CLEANUP_FUNC(DnsTransaction*, dns_transaction_free);
133
51e399bc 134bool dns_transaction_gc(DnsTransaction *t) {
ec2c5e43
LP
135 assert(t);
136
137 if (t->block_gc > 0)
51e399bc 138 return true;
ec2c5e43 139
547973de 140 if (set_isempty(t->notify_query_candidates) &&
35aa04e9 141 set_isempty(t->notify_query_candidates_done) &&
547973de 142 set_isempty(t->notify_zone_items) &&
35aa04e9
LP
143 set_isempty(t->notify_zone_items_done) &&
144 set_isempty(t->notify_transactions) &&
145 set_isempty(t->notify_transactions_done)) {
ec2c5e43 146 dns_transaction_free(t);
51e399bc
LP
147 return false;
148 }
149
150 return true;
ec2c5e43
LP
151}
152
4dd15077
LP
153static uint16_t pick_new_id(Manager *m) {
154 uint16_t new_id;
155
156 /* Find a fresh, unused transaction id. Note that this loop is bounded because there's a limit on the number of
157 * transactions, and it's much lower than the space of IDs. */
158
159 assert_cc(TRANSACTIONS_MAX < 0xFFFF);
160
161 do
162 random_bytes(&new_id, sizeof(new_id));
163 while (new_id == 0 ||
164 hashmap_get(m->dns_transactions, UINT_TO_PTR(new_id)));
165
166 return new_id;
167}
168
f52e61da 169int dns_transaction_new(DnsTransaction **ret, DnsScope *s, DnsResourceKey *key) {
ec2c5e43
LP
170 _cleanup_(dns_transaction_freep) DnsTransaction *t = NULL;
171 int r;
172
173 assert(ret);
174 assert(s);
f52e61da 175 assert(key);
ec2c5e43 176
9eae2bf3 177 /* Don't allow looking up invalid or pseudo RRs */
c463eb78 178 if (!dns_type_is_valid_query(key->type))
9eae2bf3 179 return -EINVAL;
d0129ddb
LP
180 if (dns_type_is_obsolete(key->type))
181 return -EOPNOTSUPP;
9eae2bf3
LP
182
183 /* We only support the IN class */
4c701096 184 if (!IN_SET(key->class, DNS_CLASS_IN, DNS_CLASS_ANY))
9eae2bf3
LP
185 return -EOPNOTSUPP;
186
b214dc0f
LP
187 if (hashmap_size(s->manager->dns_transactions) >= TRANSACTIONS_MAX)
188 return -EBUSY;
189
d5099efc 190 r = hashmap_ensure_allocated(&s->manager->dns_transactions, NULL);
ec2c5e43
LP
191 if (r < 0)
192 return r;
193
f9ebb22a 194 r = hashmap_ensure_allocated(&s->transactions_by_key, &dns_resource_key_hash_ops);
da0c630e
LP
195 if (r < 0)
196 return r;
197
ec2c5e43
LP
198 t = new0(DnsTransaction, 1);
199 if (!t)
200 return -ENOMEM;
201
4667e00a 202 t->dns_udp_fd = -1;
c3bc53e6 203 t->answer_source = _DNS_TRANSACTION_SOURCE_INVALID;
019036a4 204 t->answer_dnssec_result = _DNSSEC_RESULT_INVALID;
d3760be0 205 t->answer_nsec_ttl = (uint32_t) -1;
f52e61da 206 t->key = dns_resource_key_ref(key);
274b8748 207 t->current_feature_level = _DNS_SERVER_FEATURE_LEVEL_INVALID;
d001e0a3 208 t->clamp_feature_level = _DNS_SERVER_FEATURE_LEVEL_INVALID;
ec2c5e43 209
4dd15077 210 t->id = pick_new_id(s->manager);
ec2c5e43
LP
211
212 r = hashmap_put(s->manager->dns_transactions, UINT_TO_PTR(t->id), t);
213 if (r < 0) {
214 t->id = 0;
215 return r;
216 }
217
f9ebb22a 218 r = hashmap_replace(s->transactions_by_key, t->key, t);
da0c630e
LP
219 if (r < 0) {
220 hashmap_remove(s->manager->dns_transactions, UINT_TO_PTR(t->id));
221 return r;
222 }
223
f9ebb22a 224 LIST_PREPEND(transactions_by_scope, s->transactions, t);
ec2c5e43
LP
225 t->scope = s;
226
313cefa1 227 s->manager->n_transactions_total++;
a150ff5e 228
ec2c5e43
LP
229 if (ret)
230 *ret = t;
231
232 t = NULL;
233
234 return 0;
235}
236
4dd15077
LP
237static void dns_transaction_shuffle_id(DnsTransaction *t) {
238 uint16_t new_id;
239 assert(t);
240
241 /* Pick a new ID for this transaction. */
242
243 new_id = pick_new_id(t->scope->manager);
244 assert_se(hashmap_remove_and_put(t->scope->manager->dns_transactions, UINT_TO_PTR(t->id), UINT_TO_PTR(new_id), t) >= 0);
245
246 log_debug("Transaction %" PRIu16 " is now %" PRIu16 ".", t->id, new_id);
247 t->id = new_id;
248
249 /* Make sure we generate a new packet with the new ID */
250 t->sent = dns_packet_unref(t->sent);
251}
252
ec2c5e43 253static void dns_transaction_tentative(DnsTransaction *t, DnsPacket *p) {
2fb3034c 254 _cleanup_free_ char *pretty = NULL;
202b76ae 255 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
ec2c5e43 256 DnsZoneItem *z;
ec2c5e43
LP
257
258 assert(t);
259 assert(p);
260
261 if (manager_our_packet(t->scope->manager, p) != 0)
262 return;
263
164d025d 264 (void) in_addr_to_string(p->family, &p->sender, &pretty);
2fb3034c 265
a5784c49
LP
266 log_debug("Transaction %" PRIu16 " for <%s> on scope %s on %s/%s got tentative packet from %s.",
267 t->id,
202b76ae 268 dns_resource_key_to_string(t->key, key_str, sizeof key_str),
ec2c5e43
LP
269 dns_protocol_to_string(t->scope->protocol),
270 t->scope->link ? t->scope->link->name : "*",
202b76ae 271 af_to_name_short(t->scope->family),
164d025d 272 strnull(pretty));
ec2c5e43 273
a4076574
LP
274 /* RFC 4795, Section 4.1 says that the peer with the
275 * lexicographically smaller IP address loses */
4d91eec4
LP
276 if (memcmp(&p->sender, &p->destination, FAMILY_ADDRESS_SIZE(p->family)) >= 0) {
277 log_debug("Peer has lexicographically larger IP address and thus lost in the conflict.");
a4076574
LP
278 return;
279 }
280
4d91eec4 281 log_debug("We have the lexicographically larger IP address and thus lost in the conflict.");
a4076574 282
ec2c5e43 283 t->block_gc++;
35aa04e9 284
547973de 285 while ((z = set_first(t->notify_zone_items))) {
3ef64445
LP
286 /* First, make sure the zone item drops the reference
287 * to us */
288 dns_zone_item_probe_stop(z);
289
290 /* Secondly, report this as conflict, so that we might
291 * look for a different hostname */
ec2c5e43 292 dns_zone_item_conflict(z);
3ef64445 293 }
ec2c5e43
LP
294 t->block_gc--;
295
296 dns_transaction_gc(t);
297}
298
299void dns_transaction_complete(DnsTransaction *t, DnsTransactionState state) {
801ad6a6 300 DnsQueryCandidate *c;
ec2c5e43 301 DnsZoneItem *z;
547973de 302 DnsTransaction *d;
7cc6ed7b 303 const char *st;
202b76ae 304 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
ec2c5e43
LP
305
306 assert(t);
547973de 307 assert(!DNS_TRANSACTION_IS_LIVE(state));
e56187ca 308
202b76ae
ZJS
309 if (state == DNS_TRANSACTION_DNSSEC_FAILED) {
310 dns_resource_key_to_string(t->key, key_str, sizeof key_str);
311
f61dfddb 312 log_struct(LOG_NOTICE,
2b044526 313 "MESSAGE_ID=" SD_MESSAGE_DNSSEC_FAILURE_STR,
202b76ae 314 LOG_MESSAGE("DNSSEC validation failed for question %s: %s", key_str, dnssec_result_to_string(t->answer_dnssec_result)),
f61dfddb 315 "DNS_TRANSACTION=%" PRIu16, t->id,
202b76ae 316 "DNS_QUESTION=%s", key_str,
f61dfddb 317 "DNSSEC_RESULT=%s", dnssec_result_to_string(t->answer_dnssec_result),
1e02e182 318 "DNS_SERVER=%s", dns_server_string(t->server),
a1230ff9 319 "DNS_SERVER_FEATURE_LEVEL=%s", dns_server_feature_level_to_string(t->server->possible_feature_level));
202b76ae 320 }
f61dfddb 321
ec2c5e43
LP
322 /* Note that this call might invalidate the query. Callers
323 * should hence not attempt to access the query or transaction
324 * after calling this function. */
325
7cc6ed7b
LP
326 if (state == DNS_TRANSACTION_ERRNO)
327 st = errno_to_name(t->answer_errno);
328 else
329 st = dns_transaction_state_to_string(state);
330
a5784c49
LP
331 log_debug("Transaction %" PRIu16 " for <%s> on scope %s on %s/%s now complete with <%s> from %s (%s).",
332 t->id,
202b76ae 333 dns_resource_key_to_string(t->key, key_str, sizeof key_str),
ec2c5e43
LP
334 dns_protocol_to_string(t->scope->protocol),
335 t->scope->link ? t->scope->link->name : "*",
202b76ae 336 af_to_name_short(t->scope->family),
7cc6ed7b 337 st,
a5784c49
LP
338 t->answer_source < 0 ? "none" : dns_transaction_source_to_string(t->answer_source),
339 t->answer_authenticated ? "authenticated" : "unsigned");
ec2c5e43
LP
340
341 t->state = state;
342
f32f0e57 343 dns_transaction_close_connection(t);
f535705a 344 dns_transaction_stop_timeout(t);
ec2c5e43
LP
345
346 /* Notify all queries that are interested, but make sure the
347 * transaction isn't freed while we are still looking at it */
348 t->block_gc++;
f7014757 349
35aa04e9 350 SET_FOREACH_MOVE(c, t->notify_query_candidates_done, t->notify_query_candidates)
547973de 351 dns_query_candidate_notify(c);
35aa04e9 352 SWAP_TWO(t->notify_query_candidates, t->notify_query_candidates_done);
ec2c5e43 353
35aa04e9
LP
354 SET_FOREACH_MOVE(z, t->notify_zone_items_done, t->notify_zone_items)
355 dns_zone_item_notify(z);
356 SWAP_TWO(t->notify_zone_items, t->notify_zone_items_done);
8d67e72c 357 if (t->probing && t->state == DNS_TRANSACTION_ATTEMPTS_MAX_REACHED)
1a63fc54 358 (void) dns_scope_announce(t->scope, false);
f7014757 359
35aa04e9
LP
360 SET_FOREACH_MOVE(d, t->notify_transactions_done, t->notify_transactions)
361 dns_transaction_notify(d, t);
362 SWAP_TWO(t->notify_transactions, t->notify_transactions_done);
f7014757
LP
363
364 t->block_gc--;
ec2c5e43
LP
365 dns_transaction_gc(t);
366}
367
519ef046
LP
368static int dns_transaction_pick_server(DnsTransaction *t) {
369 DnsServer *server;
370
371 assert(t);
372 assert(t->scope->protocol == DNS_PROTOCOL_DNS);
373
d001e0a3
LP
374 /* Pick a DNS server and a feature level for it. */
375
519ef046
LP
376 server = dns_scope_get_dns_server(t->scope);
377 if (!server)
378 return -ESRCH;
379
d001e0a3
LP
380 /* If we changed the server invalidate the feature level clamping, as the new server might have completely
381 * different properties. */
382 if (server != t->server)
383 t->clamp_feature_level = _DNS_SERVER_FEATURE_LEVEL_INVALID;
384
274b8748 385 t->current_feature_level = dns_server_possible_feature_level(server);
519ef046 386
d001e0a3
LP
387 /* Clamp the feature level if that is requested. */
388 if (t->clamp_feature_level != _DNS_SERVER_FEATURE_LEVEL_INVALID &&
389 t->current_feature_level > t->clamp_feature_level)
390 t->current_feature_level = t->clamp_feature_level;
391
392 log_debug("Using feature level %s for transaction %u.", dns_server_feature_level_to_string(t->current_feature_level), t->id);
393
519ef046
LP
394 if (server == t->server)
395 return 0;
396
397 dns_server_unref(t->server);
398 t->server = dns_server_ref(server);
399
44db02d0
LP
400 t->n_picked_servers ++;
401
d001e0a3
LP
402 log_debug("Using DNS server %s for transaction %u.", dns_server_string(t->server), t->id);
403
519ef046
LP
404 return 1;
405}
406
d001e0a3 407static void dns_transaction_retry(DnsTransaction *t, bool next_server) {
8d10d620
LP
408 int r;
409
410 assert(t);
411
412 log_debug("Retrying transaction %" PRIu16 ".", t->id);
413
414 /* Before we try again, switch to a new server. */
d001e0a3
LP
415 if (next_server)
416 dns_scope_next_dns_server(t->scope);
8d10d620
LP
417
418 r = dns_transaction_go(t);
7cc6ed7b
LP
419 if (r < 0) {
420 t->answer_errno = -r;
421 dns_transaction_complete(t, DNS_TRANSACTION_ERRNO);
422 }
8d10d620
LP
423}
424
c02cf2f4 425static int dns_transaction_maybe_restart(DnsTransaction *t) {
5278bbfe
LP
426 int r;
427
c02cf2f4
LP
428 assert(t);
429
5278bbfe
LP
430 /* Returns > 0 if the transaction was restarted, 0 if not */
431
c02cf2f4
LP
432 if (!t->server)
433 return 0;
434
435 if (t->current_feature_level <= dns_server_possible_feature_level(t->server))
436 return 0;
437
438 /* The server's current feature level is lower than when we sent the original query. We learnt something from
439 the response or possibly an auxiliary DNSSEC response that we didn't know before. We take that as reason to
440 restart the whole transaction. This is a good idea to deal with servers that respond rubbish if we include
441 OPT RR or DO bit. One of these cases is documented here, for example:
442 https://open.nlnetlabs.nl/pipermail/dnssec-trigger/2014-November/000376.html */
443
4dd15077
LP
444 log_debug("Server feature level is now lower than when we began our transaction. Restarting with new ID.");
445 dns_transaction_shuffle_id(t);
5278bbfe
LP
446
447 r = dns_transaction_go(t);
448 if (r < 0)
449 return r;
450
451 return 1;
c02cf2f4
LP
452}
453
98767d75
IT
454static void on_transaction_stream_error(DnsTransaction *t, int error) {
455 assert(t);
ec2c5e43 456
b30bf55d 457 dns_transaction_close_connection(t);
ec2c5e43 458
a1a3f73a 459 if (ERRNO_IS_DISCONNECT(error)) {
0791110f
LP
460 if (t->scope->protocol == DNS_PROTOCOL_LLMNR) {
461 /* If the LLMNR/TCP connection failed, the host doesn't support LLMNR, and we cannot answer the
462 * question on this scope. */
463 dns_transaction_complete(t, DNS_TRANSACTION_NOT_FOUND);
daab72ea 464 return;
0791110f
LP
465 }
466
d001e0a3 467 dns_transaction_retry(t, true);
daab72ea 468 return;
ac720200 469 }
ec2c5e43 470 if (error != 0) {
7cc6ed7b
LP
471 t->answer_errno = error;
472 dns_transaction_complete(t, DNS_TRANSACTION_ERRNO);
ec2c5e43 473 }
98767d75
IT
474}
475
476static int dns_transaction_on_stream_packet(DnsTransaction *t, DnsPacket *p) {
477 assert(t);
478 assert(p);
479
480 dns_transaction_close_connection(t);
ec2c5e43 481
a4076574 482 if (dns_packet_validate_reply(p) <= 0) {
a20b9592 483 log_debug("Invalid TCP reply packet.");
a4076574
LP
484 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
485 return 0;
486 }
487
488 dns_scope_check_conflicts(t->scope, p);
489
ec2c5e43
LP
490 t->block_gc++;
491 dns_transaction_process_reply(t, p);
492 t->block_gc--;
493
519ef046
LP
494 /* If the response wasn't useful, then complete the transition
495 * now. After all, we are the worst feature set now with TCP
496 * sockets, and there's really no point in retrying. */
ec2c5e43
LP
497 if (t->state == DNS_TRANSACTION_PENDING)
498 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
598f44bd
LP
499 else
500 dns_transaction_gc(t);
ec2c5e43
LP
501
502 return 0;
503}
504
98767d75 505static int on_stream_complete(DnsStream *s, int error) {
18df5fb0 506 _cleanup_(dns_stream_unrefp) DnsStream *p = NULL;
98767d75
IT
507 DnsTransaction *t, *n;
508 int r = 0;
509
510 /* Do not let new transactions use this stream */
511 if (s->server && s->server->stream == s)
18df5fb0 512 p = TAKE_PTR(s->server->stream);
98767d75
IT
513
514 if (ERRNO_IS_DISCONNECT(error) && s->protocol != DNS_PROTOCOL_LLMNR) {
98767d75
IT
515 log_debug_errno(error, "Connection failure for DNS TCP stream: %m");
516
517 if (s->transactions) {
518 t = s->transactions;
3da3cdd5 519 dns_server_packet_lost(t->server, IPPROTO_TCP, t->current_feature_level);
98767d75
IT
520 }
521 }
522
523 LIST_FOREACH_SAFE(transactions_by_stream, t, n, s->transactions)
524 if (error != 0)
525 on_transaction_stream_error(t, error);
526 else if (DNS_PACKET_ID(s->read_packet) == t->id)
527 /* As each transaction have a unique id the return code is only set once */
528 r = dns_transaction_on_stream_packet(t, s->read_packet);
529
530 return r;
531}
532
533static int dns_stream_on_packet(DnsStream *s) {
534 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
535 int r = 0;
536 DnsTransaction *t;
537
538 /* Take ownership of packet to be able to receive new packets */
539 p = TAKE_PTR(s->read_packet);
540 s->n_read = 0;
541
542 t = hashmap_get(s->manager->dns_transactions, UINT_TO_PTR(DNS_PACKET_ID(p)));
543
544 /* Ignore incorrect transaction id as transaction can have been canceled */
545 if (t)
546 r = dns_transaction_on_stream_packet(t, p);
547 else {
548 if (dns_packet_validate_reply(p) <= 0) {
549 log_debug("Invalid TCP reply packet.");
550 on_stream_complete(s, 0);
551 }
552 return 0;
553 }
554
555 return r;
556}
557
558static int dns_transaction_emit_tcp(DnsTransaction *t) {
ec2c5e43 559 _cleanup_close_ int fd = -1;
98767d75 560 _cleanup_(dns_stream_unrefp) DnsStream *s = NULL;
91ccab1e 561 union sockaddr_union sa;
ec2c5e43
LP
562 int r;
563
564 assert(t);
565
519ef046 566 dns_transaction_close_connection(t);
ec2c5e43 567
106784eb 568 switch (t->scope->protocol) {
519ef046 569
106784eb 570 case DNS_PROTOCOL_DNS:
519ef046
LP
571 r = dns_transaction_pick_server(t);
572 if (r < 0)
573 return r;
574
92ec902a 575 if (!dns_server_dnssec_supported(t->server) && dns_type_is_dnssec(t->key->type))
91adc4db
LP
576 return -EOPNOTSUPP;
577
274b8748 578 r = dns_server_adjust_opt(t->server, t->sent, t->current_feature_level);
519ef046
LP
579 if (r < 0)
580 return r;
581
5d67a7ae 582 if (t->server->stream && (DNS_SERVER_FEATURE_LEVEL_IS_TLS(t->current_feature_level) == t->server->stream->encrypted))
98767d75
IT
583 s = dns_stream_ref(t->server->stream);
584 else
5d67a7ae 585 fd = dns_scope_socket_tcp(t->scope, AF_UNSPEC, NULL, t->server, DNS_SERVER_FEATURE_LEVEL_IS_TLS(t->current_feature_level) ? 853 : 53, &sa);
98767d75 586
106784eb 587 break;
ec2c5e43 588
106784eb 589 case DNS_PROTOCOL_LLMNR:
a8f6397f 590 /* When we already received a reply to this (but it was truncated), send to its sender address */
ec2c5e43 591 if (t->received)
91ccab1e 592 fd = dns_scope_socket_tcp(t->scope, t->received->family, &t->received->sender, NULL, t->received->sender_port, &sa);
ec2c5e43
LP
593 else {
594 union in_addr_union address;
a7f7d1bd 595 int family = AF_UNSPEC;
ec2c5e43
LP
596
597 /* Otherwise, try to talk to the owner of a
598 * the IP address, in case this is a reverse
599 * PTR lookup */
f52e61da 600
1c02e7ba 601 r = dns_name_address(dns_resource_key_name(t->key), &family, &address);
ec2c5e43
LP
602 if (r < 0)
603 return r;
604 if (r == 0)
605 return -EINVAL;
9e08a6e0 606 if (family != t->scope->family)
9318cdd3 607 return -ESRCH;
ec2c5e43 608
91ccab1e 609 fd = dns_scope_socket_tcp(t->scope, family, &address, NULL, LLMNR_PORT, &sa);
ec2c5e43 610 }
106784eb
DM
611
612 break;
613
614 default:
ec2c5e43 615 return -EAFNOSUPPORT;
106784eb 616 }
ec2c5e43 617
98767d75
IT
618 if (!s) {
619 if (fd < 0)
620 return fd;
ec2c5e43 621
91ccab1e 622 r = dns_stream_new(t->scope->manager, &s, t->scope->protocol, fd, &sa);
98767d75
IT
623 if (r < 0)
624 return r;
625
626 fd = -1;
627
56ddbf10 628#if ENABLE_DNS_OVER_TLS
5d67a7ae 629 if (DNS_SERVER_FEATURE_LEVEL_IS_TLS(t->current_feature_level)) {
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
IT
637 if (t->server) {
638 dns_stream_unref(t->server->stream);
639 t->server->stream = dns_stream_ref(s);
640 s->server = dns_server_ref(t->server);
641 }
642
98767d75
IT
643 s->complete = on_stream_complete;
644 s->on_packet = dns_stream_on_packet;
645
646 /* The interface index is difficult to determine if we are
647 * connecting to the local host, hence fill this in right away
648 * instead of determining it from the socket */
649 s->ifindex = dns_scope_ifindex(t->scope);
650 }
651
652 t->stream = TAKE_PTR(s);
653 LIST_PREPEND(transactions_by_stream, t->stream->transactions, t);
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
LP
1650 dns_protocol_to_string(t->scope->protocol),
1651 t->scope->link ? t->scope->link->name : "*",
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;
2145 }
105e1512
LP
2146
2147 r = dnssec_has_rrsig(t->answer, rr->key);
2148 if (r < 0)
2149 return r;
2150 if (r > 0)
2151 continue;
2152
1c02e7ba 2153 ds = dns_resource_key_new(rr->key->class, DNS_TYPE_DS, dns_resource_key_name(rr->key));
105e1512
LP
2154 if (!ds)
2155 return -ENOMEM;
2156
1c02e7ba
ZJS
2157 log_debug("Requesting DS to validate transaction %" PRIu16 " (%s, unsigned SOA/NS RRset).",
2158 t->id, dns_resource_key_name(rr->key));
547973de
LP
2159 r = dns_transaction_request_dnssec_rr(t, ds);
2160 if (r < 0)
2161 return r;
2162
2163 break;
105e1512
LP
2164 }
2165
b63fca62 2166 case DNS_TYPE_DS:
105e1512
LP
2167 case DNS_TYPE_CNAME:
2168 case DNS_TYPE_DNAME: {
2169 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *soa = NULL;
2170 const char *name;
2171
2172 /* CNAMEs and DNAMEs cannot be located at a
2173 * zone apex, hence ask for the parent SOA for
2174 * unsigned CNAME/DNAME RRs, maybe that's the
2175 * apex. But do all that only if this is
2176 * actually a response to our original
b63fca62
LP
2177 * question.
2178 *
2179 * Similar for DS RRs, which are signed when
2180 * the parent SOA is signed. */
105e1512
LP
2181
2182 r = dns_transaction_is_primary_response(t, rr);
2183 if (r < 0)
2184 return r;
2185 if (r == 0)
2186 continue;
2187
2188 r = dnssec_has_rrsig(t->answer, rr->key);
2189 if (r < 0)
2190 return r;
2191 if (r > 0)
2192 continue;
2193
43e6779a
LP
2194 r = dns_answer_has_dname_for_cname(t->answer, rr);
2195 if (r < 0)
2196 return r;
2197 if (r > 0)
2198 continue;
2199
1c02e7ba 2200 name = dns_resource_key_name(rr->key);
105e1512
LP
2201 r = dns_name_parent(&name);
2202 if (r < 0)
2203 return r;
2204 if (r == 0)
2205 continue;
2206
2207 soa = dns_resource_key_new(rr->key->class, DNS_TYPE_SOA, name);
2208 if (!soa)
2209 return -ENOMEM;
2210
1c02e7ba
ZJS
2211 log_debug("Requesting parent SOA to validate transaction %" PRIu16 " (%s, unsigned CNAME/DNAME/DS RRset).",
2212 t->id, dns_resource_key_name(rr->key));
105e1512
LP
2213 r = dns_transaction_request_dnssec_rr(t, soa);
2214 if (r < 0)
2215 return r;
2216
2217 break;
2218 }
2219
2220 default: {
2221 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *soa = NULL;
2222
b63fca62
LP
2223 /* For other unsigned RRsets (including
2224 * NSEC/NSEC3!), look for proof the zone is
2225 * unsigned, by requesting the SOA RR of the
2226 * zone. However, do so only if they are
2227 * directly relevant to our original
105e1512
LP
2228 * question. */
2229
2230 r = dns_transaction_is_primary_response(t, rr);
2231 if (r < 0)
2232 return r;
2233 if (r == 0)
2234 continue;
2235
2236 r = dnssec_has_rrsig(t->answer, rr->key);
2237 if (r < 0)
2238 return r;
2239 if (r > 0)
2240 continue;
2241
1c02e7ba 2242 soa = dns_resource_key_new(rr->key->class, DNS_TYPE_SOA, dns_resource_key_name(rr->key));
105e1512
LP
2243 if (!soa)
2244 return -ENOMEM;
2245
1c02e7ba
ZJS
2246 log_debug("Requesting SOA to validate transaction %" PRIu16 " (%s, unsigned non-SOA/NS RRset <%s>).",
2247 t->id, dns_resource_key_name(rr->key), dns_resource_record_to_string(rr));
105e1512
LP
2248 r = dns_transaction_request_dnssec_rr(t, soa);
2249 if (r < 0)
2250 return r;
2251 break;
547973de
LP
2252 }}
2253 }
2254
105e1512
LP
2255 /* Above, we requested everything necessary to validate what
2256 * we got. Now, let's request what we need to validate what we
2257 * didn't get... */
2258
2259 r = dns_transaction_has_unsigned_negative_answer(t);
2260 if (r < 0)
2261 return r;
2262 if (r > 0) {
2263 const char *name;
4bbc06cc 2264 uint16_t type = 0;
105e1512 2265
1c02e7ba 2266 name = dns_resource_key_name(t->key);
105e1512 2267
4bbc06cc
LP
2268 /* If this was a SOA or NS request, then check if there's a DS RR for the same domain. Note that this
2269 * could also be used as indication that we are not at a zone apex, but in real world setups there are
2270 * too many broken DNS servers (Hello, incapdns.net!) where non-terminal zones return NXDOMAIN even
2271 * though they have further children. If this was a DS request, then it's signed when the parent zone
2272 * is signed, hence ask the parent SOA in that case. If this was any other RR then ask for the SOA RR,
2273 * to see if that is signed. */
105e1512 2274
4bbc06cc 2275 if (t->key->type == DNS_TYPE_DS) {
105e1512 2276 r = dns_name_parent(&name);
4bbc06cc
LP
2277 if (r > 0) {
2278 type = DNS_TYPE_SOA;
2279 log_debug("Requesting parent SOA to validate transaction %" PRIu16 " (%s, unsigned empty DS response).",
1c02e7ba 2280 t->id, dns_resource_key_name(t->key));
4bbc06cc 2281 } else
105e1512 2282 name = NULL;
4bbc06cc
LP
2283
2284 } else if (IN_SET(t->key->type, DNS_TYPE_SOA, DNS_TYPE_NS)) {
2285
2286 type = DNS_TYPE_DS;
2287 log_debug("Requesting DS to validate transaction %" PRIu16 " (%s, unsigned empty SOA/NS response).",
2288 t->id, dns_resource_key_name(t->key));
2289
2290 } else {
2291 type = DNS_TYPE_SOA;
1c02e7ba
ZJS
2292 log_debug("Requesting SOA to validate transaction %" PRIu16 " (%s, unsigned empty non-SOA/NS/DS response).",
2293 t->id, dns_resource_key_name(t->key));
4bbc06cc 2294 }
105e1512
LP
2295
2296 if (name) {
2297 _cleanup_(dns_resource_key_unrefp) DnsResourceKey *soa = NULL;
2298
4bbc06cc 2299 soa = dns_resource_key_new(t->key->class, type, name);
105e1512
LP
2300 if (!soa)
2301 return -ENOMEM;
2302
2303 r = dns_transaction_request_dnssec_rr(t, soa);
2304 if (r < 0)
2305 return r;
2306 }
2307 }
2308
2309 return dns_transaction_dnssec_is_live(t);
547973de
LP
2310}
2311
2312void dns_transaction_notify(DnsTransaction *t, DnsTransaction *source) {
547973de 2313 assert(t);
547973de
LP
2314 assert(source);
2315
942eb2e7
LP
2316 /* Invoked whenever any of our auxiliary DNSSEC transactions completed its work. If the state is still PENDING,
2317 we are still in the loop that adds further DNSSEC transactions, hence don't check if we are ready yet. If
2318 the state is VALIDATING however, we should check if we are complete now. */
105e1512 2319
942eb2e7
LP
2320 if (t->state == DNS_TRANSACTION_VALIDATING)
2321 dns_transaction_process_dnssec(t);
547973de
LP
2322}
2323
105e1512
LP
2324static int dns_transaction_validate_dnskey_by_ds(DnsTransaction *t) {
2325 DnsResourceRecord *rr;
2326 int ifindex, r;
2327
2328 assert(t);
2329
2330 /* Add all DNSKEY RRs from the answer that are validated by DS
2331 * RRs from the list of validated keys to the list of
2332 * validated keys. */
2333
2334 DNS_ANSWER_FOREACH_IFINDEX(rr, ifindex, t->answer) {
2335
96bb7673 2336 r = dnssec_verify_dnskey_by_ds_search(rr, t->validated_keys);
105e1512
LP
2337 if (r < 0)
2338 return r;
2339 if (r == 0)
2340 continue;
2341
2342 /* If so, the DNSKEY is validated too. */
2343 r = dns_answer_add_extend(&t->validated_keys, rr, ifindex, DNS_ANSWER_AUTHENTICATED);
2344 if (r < 0)
2345 return r;
2346 }
2347
2348 return 0;
2349}
2350
2351static int dns_transaction_requires_rrsig(DnsTransaction *t, DnsResourceRecord *rr) {
56352fe9
LP
2352 int r;
2353
2354 assert(t);
2355 assert(rr);
2356
105e1512
LP
2357 /* Checks if the RR we are looking for must be signed with an
2358 * RRSIG. This is used for positive responses. */
24a5b982 2359
b652d4a2 2360 if (t->scope->dnssec_mode == DNSSEC_NO)
105e1512 2361 return false;
56352fe9 2362
105e1512
LP
2363 if (dns_type_is_pseudo(rr->key->type))
2364 return -EINVAL;
56352fe9 2365
1c02e7ba 2366 r = dns_transaction_negative_trust_anchor_lookup(t, dns_resource_key_name(rr->key));
8e54f5d9
LP
2367 if (r < 0)
2368 return r;
2369 if (r > 0)
2370 return false;
2371
105e1512 2372 switch (rr->key->type) {
56352fe9 2373
105e1512
LP
2374 case DNS_TYPE_RRSIG:
2375 /* RRSIGs are the signatures themselves, they need no signing. */
2376 return false;
2377
2378 case DNS_TYPE_SOA:
2379 case DNS_TYPE_NS: {
2380 DnsTransaction *dt;
2381 Iterator i;
2382
b63fca62 2383 /* For SOA or NS RRs we look for a matching DS transaction */
105e1512
LP
2384
2385 SET_FOREACH(dt, t->dnssec_transactions, i) {
2386
2387 if (dt->key->class != rr->key->class)
2388 continue;
2389 if (dt->key->type != DNS_TYPE_DS)
2390 continue;
2391
1c02e7ba 2392 r = dns_name_equal(dns_resource_key_name(dt->key), dns_resource_key_name(rr->key));
105e1512
LP
2393 if (r < 0)
2394 return r;
2395 if (r == 0)
2396 continue;
2397
2398 /* We found a DS transactions for the SOA/NS
2399 * RRs we are looking at. If it discovered signed DS
2400 * RRs, then we need to be signed, too. */
2401
097a2517
TA
2402 if (!dt->answer_authenticated)
2403 return false;
105e1512 2404
097a2517 2405 return dns_answer_match_key(dt->answer, dt->key, NULL);
105e1512
LP
2406 }
2407
2408 /* We found nothing that proves this is safe to leave
2409 * this unauthenticated, hence ask inist on
2410 * authentication. */
2411 return true;
2412 }
2413
b63fca62 2414 case DNS_TYPE_DS:
105e1512
LP
2415 case DNS_TYPE_CNAME:
2416 case DNS_TYPE_DNAME: {
2417 const char *parent = NULL;
2418 DnsTransaction *dt;
2419 Iterator i;
2420
b63fca62
LP
2421 /*
2422 * CNAME/DNAME RRs cannot be located at a zone apex, hence look directly for the parent SOA.
2423 *
2424 * DS RRs are signed if the parent is signed, hence also look at the parent SOA
2425 */
105e1512
LP
2426
2427 SET_FOREACH(dt, t->dnssec_transactions, i) {
2428
2429 if (dt->key->class != rr->key->class)
2430 continue;
2431 if (dt->key->type != DNS_TYPE_SOA)
2432 continue;
2433
2434 if (!parent) {
1c02e7ba 2435 parent = dns_resource_key_name(rr->key);
105e1512
LP
2436 r = dns_name_parent(&parent);
2437 if (r < 0)
2438 return r;
2439 if (r == 0) {
b63fca62
LP
2440 if (rr->key->type == DNS_TYPE_DS)
2441 return true;
2442
105e1512 2443 /* A CNAME/DNAME without a parent? That's sooo weird. */
baaa35ad
ZJS
2444 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
2445 "Transaction %" PRIu16 " claims CNAME/DNAME at root. Refusing.", t->id);
105e1512
LP
2446 }
2447 }
2448
1c02e7ba 2449 r = dns_name_equal(dns_resource_key_name(dt->key), parent);
105e1512
LP
2450 if (r < 0)
2451 return r;
2452 if (r == 0)
2453 continue;
2454
2455 return t->answer_authenticated;
2456 }
2457
2458 return true;
2459 }
2460
2461 default: {
2462 DnsTransaction *dt;
2463 Iterator i;
2464
b63fca62 2465 /* Any other kind of RR (including DNSKEY/NSEC/NSEC3). Let's see if our SOA lookup was authenticated */
105e1512
LP
2466
2467 SET_FOREACH(dt, t->dnssec_transactions, i) {
2468
2469 if (dt->key->class != rr->key->class)
2470 continue;
2471 if (dt->key->type != DNS_TYPE_SOA)
2472 continue;
2473
1c02e7ba 2474 r = dns_name_equal(dns_resource_key_name(dt->key), dns_resource_key_name(rr->key));
105e1512
LP
2475 if (r < 0)
2476 return r;
2477 if (r == 0)
2478 continue;
2479
2480 /* We found the transaction that was supposed to find
2481 * the SOA RR for us. It was successful, but found no
2482 * RR for us. This means we are not at a zone cut. In
2483 * this case, we require authentication if the SOA
2484 * lookup was authenticated too. */
2485 return t->answer_authenticated;
2486 }
2487
2488 return true;
2489 }}
56352fe9
LP
2490}
2491
d33b6cf3
LP
2492static int dns_transaction_in_private_tld(DnsTransaction *t, const DnsResourceKey *key) {
2493 DnsTransaction *dt;
2494 const char *tld;
2495 Iterator i;
2496 int r;
2497
2498 /* If DNSSEC downgrade mode is on, checks whether the
2499 * specified RR is one level below a TLD we have proven not to
2500 * exist. In such a case we assume that this is a private
2501 * domain, and permit it.
2502 *
2503 * This detects cases like the Fritz!Box router networks. Each
2504 * Fritz!Box router serves a private "fritz.box" zone, in the
2505 * non-existing TLD "box". Requests for the "fritz.box" domain
2506 * are served by the router itself, while requests for the
2507 * "box" domain will result in NXDOMAIN.
2508 *
2509 * Note that this logic is unable to detect cases where a
2510 * router serves a private DNS zone directly under
2511 * non-existing TLD. In such a case we cannot detect whether
2512 * the TLD is supposed to exist or not, as all requests we
2513 * make for it will be answered by the router's zone, and not
2514 * by the root zone. */
2515
2516 assert(t);
2517
2518 if (t->scope->dnssec_mode != DNSSEC_ALLOW_DOWNGRADE)
2519 return false; /* In strict DNSSEC mode what doesn't exist, doesn't exist */
2520
1c02e7ba 2521 tld = dns_resource_key_name(key);
d33b6cf3
LP
2522 r = dns_name_parent(&tld);
2523 if (r < 0)
2524 return r;
2525 if (r == 0)
2526 return false; /* Already the root domain */
2527
2528 if (!dns_name_is_single_label(tld))
2529 return false;
2530
2531 SET_FOREACH(dt, t->dnssec_transactions, i) {
2532
2533 if (dt->key->class != key->class)
2534 continue;
2535
1c02e7ba 2536 r = dns_name_equal(dns_resource_key_name(dt->key), tld);
d33b6cf3
LP
2537 if (r < 0)
2538 return r;
2539 if (r == 0)
2540 continue;
2541
2542 /* We found an auxiliary lookup we did for the TLD. If
2543 * that returned with NXDOMAIN, we know the TLD didn't
2544 * exist, and hence this might be a private zone. */
2545
2546 return dt->answer_rcode == DNS_RCODE_NXDOMAIN;
2547 }
2548
2549 return false;
2550}
2551
105e1512 2552static int dns_transaction_requires_nsec(DnsTransaction *t) {
4bbc06cc 2553 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
105e1512
LP
2554 DnsTransaction *dt;
2555 const char *name;
4bbc06cc 2556 uint16_t type = 0;
105e1512
LP
2557 Iterator i;
2558 int r;
56352fe9
LP
2559
2560 assert(t);
2561
105e1512
LP
2562 /* Checks if we need to insist on NSEC/NSEC3 RRs for proving
2563 * this negative reply */
56352fe9 2564
b652d4a2 2565 if (t->scope->dnssec_mode == DNSSEC_NO)
105e1512 2566 return false;
56352fe9 2567
105e1512
LP
2568 if (dns_type_is_pseudo(t->key->type))
2569 return -EINVAL;
2570
1c02e7ba 2571 r = dns_transaction_negative_trust_anchor_lookup(t, dns_resource_key_name(t->key));
8e54f5d9
LP
2572 if (r < 0)
2573 return r;
2574 if (r > 0)
2575 return false;
2576
d33b6cf3
LP
2577 r = dns_transaction_in_private_tld(t, t->key);
2578 if (r < 0)
2579 return r;
2580 if (r > 0) {
2581 /* The lookup is from a TLD that is proven not to
2582 * exist, and we are in downgrade mode, hence ignore
13e785f7 2583 * that fact that we didn't get any NSEC RRs. */
d33b6cf3 2584
202b76ae
ZJS
2585 log_info("Detected a negative query %s in a private DNS zone, permitting unsigned response.",
2586 dns_resource_key_to_string(t->key, key_str, sizeof key_str));
d33b6cf3
LP
2587 return false;
2588 }
2589
1c02e7ba 2590 name = dns_resource_key_name(t->key);
105e1512 2591
4bbc06cc 2592 if (t->key->type == DNS_TYPE_DS) {
105e1512 2593
4bbc06cc
LP
2594 /* We got a negative reply for this DS lookup? DS RRs are signed when their parent zone is signed,
2595 * hence check the parent SOA in this case. */
105e1512
LP
2596
2597 r = dns_name_parent(&name);
56352fe9
LP
2598 if (r < 0)
2599 return r;
2600 if (r == 0)
105e1512 2601 return true;
4bbc06cc
LP
2602
2603 type = DNS_TYPE_SOA;
2604
2605 } else if (IN_SET(t->key->type, DNS_TYPE_SOA, DNS_TYPE_NS))
2606 /* We got a negative reply for this SOA/NS lookup? If so, check if there's a DS RR for this */
2607 type = DNS_TYPE_DS;
2608 else
2609 /* For all other negative replies, check for the SOA lookup */
2610 type = DNS_TYPE_SOA;
105e1512
LP
2611
2612 /* For all other RRs we check the SOA on the same level to see
2613 * if it's signed. */
2614
2615 SET_FOREACH(dt, t->dnssec_transactions, i) {
2616
2617 if (dt->key->class != t->key->class)
2618 continue;
4bbc06cc 2619 if (dt->key->type != type)
56352fe9
LP
2620 continue;
2621
1c02e7ba 2622 r = dns_name_equal(dns_resource_key_name(dt->key), name);
56352fe9
LP
2623 if (r < 0)
2624 return r;
105e1512
LP
2625 if (r == 0)
2626 continue;
2627
2628 return dt->answer_authenticated;
56352fe9
LP
2629 }
2630
105e1512
LP
2631 /* If in doubt, require NSEC/NSEC3 */
2632 return true;
56352fe9
LP
2633}
2634
94aa7071
LP
2635static int dns_transaction_dnskey_authenticated(DnsTransaction *t, DnsResourceRecord *rr) {
2636 DnsResourceRecord *rrsig;
2637 bool found = false;
2638 int r;
2639
2640 /* Checks whether any of the DNSKEYs used for the RRSIGs for
2641 * the specified RRset is authenticated (i.e. has a matching
2642 * DS RR). */
2643
1c02e7ba 2644 r = dns_transaction_negative_trust_anchor_lookup(t, dns_resource_key_name(rr->key));
8e54f5d9
LP
2645 if (r < 0)
2646 return r;
2647 if (r > 0)
2648 return false;
2649
94aa7071
LP
2650 DNS_ANSWER_FOREACH(rrsig, t->answer) {
2651 DnsTransaction *dt;
2652 Iterator i;
2653
2654 r = dnssec_key_match_rrsig(rr->key, rrsig);
2655 if (r < 0)
2656 return r;
2657 if (r == 0)
2658 continue;
2659
2660 SET_FOREACH(dt, t->dnssec_transactions, i) {
2661
2662 if (dt->key->class != rr->key->class)
2663 continue;
2664
2665 if (dt->key->type == DNS_TYPE_DNSKEY) {
2666
1c02e7ba 2667 r = dns_name_equal(dns_resource_key_name(dt->key), rrsig->rrsig.signer);
94aa7071
LP
2668 if (r < 0)
2669 return r;
2670 if (r == 0)
2671 continue;
2672
2673 /* OK, we found an auxiliary DNSKEY
2674 * lookup. If that lookup is
2675 * authenticated, report this. */
2676
2677 if (dt->answer_authenticated)
2678 return true;
2679
2680 found = true;
2681
2682 } else if (dt->key->type == DNS_TYPE_DS) {
2683
1c02e7ba 2684 r = dns_name_equal(dns_resource_key_name(dt->key), rrsig->rrsig.signer);
94aa7071
LP
2685 if (r < 0)
2686 return r;
2687 if (r == 0)
2688 continue;
2689
2690 /* OK, we found an auxiliary DS
2691 * lookup. If that lookup is
2692 * authenticated and non-zero, we
2693 * won! */
2694
2695 if (!dt->answer_authenticated)
2696 return false;
2697
2698 return dns_answer_match_key(dt->answer, dt->key, NULL);
2699 }
2700 }
2701 }
2702
2703 return found ? false : -ENXIO;
2704}
2705
b652d4a2
LP
2706static int dns_transaction_known_signed(DnsTransaction *t, DnsResourceRecord *rr) {
2707 assert(t);
2708 assert(rr);
2709
2710 /* We know that the root domain is signed, hence if it appears
2711 * not to be signed, there's a problem with the DNS server */
2712
2713 return rr->key->class == DNS_CLASS_IN &&
1c02e7ba 2714 dns_name_is_root(dns_resource_key_name(rr->key));
b652d4a2
LP
2715}
2716
0f87f3e8
LP
2717static int dns_transaction_check_revoked_trust_anchors(DnsTransaction *t) {
2718 DnsResourceRecord *rr;
2719 int r;
2720
2721 assert(t);
2722
2723 /* Maybe warn the user that we encountered a revoked DNSKEY
2724 * for a key from our trust anchor. Note that we don't care
2725 * whether the DNSKEY can be authenticated or not. It's
2726 * sufficient if it is self-signed. */
2727
2728 DNS_ANSWER_FOREACH(rr, t->answer) {
d424da2a 2729 r = dns_trust_anchor_check_revoked(&t->scope->manager->trust_anchor, rr, t->answer);
0f87f3e8
LP
2730 if (r < 0)
2731 return r;
2732 }
2733
2734 return 0;
2735}
2736
c9c72065
LP
2737static int dns_transaction_invalidate_revoked_keys(DnsTransaction *t) {
2738 bool changed;
2739 int r;
2740
2741 assert(t);
2742
2743 /* Removes all DNSKEY/DS objects from t->validated_keys that
2744 * our trust anchors database considers revoked. */
2745
2746 do {
2747 DnsResourceRecord *rr;
2748
2749 changed = false;
2750
2751 DNS_ANSWER_FOREACH(rr, t->validated_keys) {
2752 r = dns_trust_anchor_is_revoked(&t->scope->manager->trust_anchor, rr);
2753 if (r < 0)
2754 return r;
2755 if (r > 0) {
2756 r = dns_answer_remove_by_rr(&t->validated_keys, rr);
2757 if (r < 0)
2758 return r;
2759
2760 assert(r > 0);
2761 changed = true;
2762 break;
2763 }
2764 }
2765 } while (changed);
2766
2767 return 0;
2768}
2769
942eb2e7
LP
2770static int dns_transaction_copy_validated(DnsTransaction *t) {
2771 DnsTransaction *dt;
2772 Iterator i;
2773 int r;
2774
2775 assert(t);
2776
2777 /* Copy all validated RRs from the auxiliary DNSSEC transactions into our set of validated RRs */
2778
2779 SET_FOREACH(dt, t->dnssec_transactions, i) {
2780
2781 if (DNS_TRANSACTION_IS_LIVE(dt->state))
2782 continue;
2783
2784 if (!dt->answer_authenticated)
2785 continue;
2786
2787 r = dns_answer_extend(&t->validated_keys, dt->answer);
2788 if (r < 0)
2789 return r;
2790 }
2791
2792 return 0;
2793}
2794
c690b20a
ZJS
2795typedef enum {
2796 DNSSEC_PHASE_DNSKEY, /* Phase #1, only validate DNSKEYs */
2797 DNSSEC_PHASE_NSEC, /* Phase #2, only validate NSEC+NSEC3 */
2798 DNSSEC_PHASE_ALL, /* Phase #3, validate everything else */
2799} Phase;
2800
2801static int dnssec_validate_records(
2802 DnsTransaction *t,
2803 Phase phase,
2804 bool *have_nsec,
2805 DnsAnswer **validated) {
2806
547973de 2807 DnsResourceRecord *rr;
56352fe9 2808 int r;
547973de 2809
c690b20a 2810 /* Returns negative on error, 0 if validation failed, 1 to restart validation, 2 when finished. */
547973de 2811
c690b20a
ZJS
2812 DNS_ANSWER_FOREACH(rr, t->answer) {
2813 DnsResourceRecord *rrsig = NULL;
2814 DnssecResult result;
547973de 2815
c690b20a
ZJS
2816 switch (rr->key->type) {
2817 case DNS_TYPE_RRSIG:
2818 continue;
547973de 2819
c690b20a
ZJS
2820 case DNS_TYPE_DNSKEY:
2821 /* We validate DNSKEYs only in the DNSKEY and ALL phases */
2822 if (phase == DNSSEC_PHASE_NSEC)
2823 continue;
2824 break;
547973de 2825
c690b20a
ZJS
2826 case DNS_TYPE_NSEC:
2827 case DNS_TYPE_NSEC3:
2828 *have_nsec = true;
547973de 2829
c690b20a
ZJS
2830 /* We validate NSEC/NSEC3 only in the NSEC and ALL phases */
2831 if (phase == DNSSEC_PHASE_DNSKEY)
2832 continue;
2833 break;
105e1512 2834
c690b20a
ZJS
2835 default:
2836 /* We validate all other RRs only in the ALL phases */
2837 if (phase != DNSSEC_PHASE_ALL)
2838 continue;
2839 }
b652d4a2 2840
c690b20a
ZJS
2841 r = dnssec_verify_rrset_search(t->answer, rr->key, t->validated_keys, USEC_INFINITY, &result, &rrsig);
2842 if (r < 0)
2843 return r;
547973de 2844
c690b20a 2845 log_debug("Looking at %s: %s", strna(dns_resource_record_to_string(rr)), dnssec_result_to_string(result));
0f87f3e8 2846
c690b20a 2847 if (result == DNSSEC_VALIDATED) {
942eb2e7 2848
c690b20a
ZJS
2849 if (rr->key->type == DNS_TYPE_DNSKEY) {
2850 /* If we just validated a DNSKEY RRset, then let's add these keys to
2851 * the set of validated keys for this transaction. */
547973de 2852
c690b20a
ZJS
2853 r = dns_answer_copy_by_key(&t->validated_keys, t->answer, rr->key, DNS_ANSWER_AUTHENTICATED);
2854 if (r < 0)
2855 return r;
c9c72065 2856
c690b20a
ZJS
2857 /* Some of the DNSKEYs we just added might already have been revoked,
2858 * remove them again in that case. */
2859 r = dns_transaction_invalidate_revoked_keys(t);
2860 if (r < 0)
2861 return r;
2862 }
547973de 2863
c690b20a
ZJS
2864 /* Add the validated RRset to the new list of validated
2865 * RRsets, and remove it from the unvalidated RRsets.
2866 * We mark the RRset as authenticated and cacheable. */
2867 r = dns_answer_move_by_key(validated, &t->answer, rr->key, DNS_ANSWER_AUTHENTICATED|DNS_ANSWER_CACHEABLE);
2868 if (r < 0)
2869 return r;
547973de 2870
c690b20a 2871 manager_dnssec_verdict(t->scope->manager, DNSSEC_SECURE, rr->key);
0c7bff0a 2872
c690b20a
ZJS
2873 /* Exit the loop, we dropped something from the answer, start from the beginning */
2874 return 1;
2875 }
547973de 2876
c690b20a
ZJS
2877 /* If we haven't read all DNSKEYs yet a negative result of the validation is irrelevant, as
2878 * there might be more DNSKEYs coming. Similar, if we haven't read all NSEC/NSEC3 RRs yet,
2879 * we cannot do positive wildcard proofs yet, as those require the NSEC/NSEC3 RRs. */
2880 if (phase != DNSSEC_PHASE_ALL)
2881 continue;
0c7bff0a 2882
c690b20a
ZJS
2883 if (result == DNSSEC_VALIDATED_WILDCARD) {
2884 bool authenticated = false;
2885 const char *source;
0c7bff0a 2886
c690b20a 2887 /* This RRset validated, but as a wildcard. This means we need
13e785f7 2888 * to prove via NSEC/NSEC3 that no matching non-wildcard RR exists. */
0c7bff0a 2889
c690b20a
ZJS
2890 /* First step, determine the source of synthesis */
2891 r = dns_resource_record_source(rrsig, &source);
2892 if (r < 0)
2893 return r;
0c7bff0a 2894
c690b20a 2895 r = dnssec_test_positive_wildcard(*validated,
1c02e7ba 2896 dns_resource_key_name(rr->key),
c690b20a
ZJS
2897 source,
2898 rrsig->rrsig.signer,
2899 &authenticated);
0c7bff0a 2900
c690b20a
ZJS
2901 /* Unless the NSEC proof showed that the key really doesn't exist something is off. */
2902 if (r == 0)
2903 result = DNSSEC_INVALID;
2904 else {
2905 r = dns_answer_move_by_key(validated, &t->answer, rr->key,
2906 authenticated ? (DNS_ANSWER_AUTHENTICATED|DNS_ANSWER_CACHEABLE) : 0);
2907 if (r < 0)
2908 return r;
2909
2910 manager_dnssec_verdict(t->scope->manager, authenticated ? DNSSEC_SECURE : DNSSEC_INSECURE, rr->key);
2911
2912 /* Exit the loop, we dropped something from the answer, start from the beginning */
2913 return 1;
0c7bff0a 2914 }
c690b20a 2915 }
0c7bff0a 2916
c690b20a
ZJS
2917 if (result == DNSSEC_NO_SIGNATURE) {
2918 r = dns_transaction_requires_rrsig(t, rr);
547973de
LP
2919 if (r < 0)
2920 return r;
c690b20a
ZJS
2921 if (r == 0) {
2922 /* Data does not require signing. In that case, just copy it over,
13e785f7 2923 * but remember that this is by no means authenticated. */
c690b20a
ZJS
2924 r = dns_answer_move_by_key(validated, &t->answer, rr->key, 0);
2925 if (r < 0)
2926 return r;
2927
2928 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
2929 return 1;
2930 }
547973de 2931
c690b20a
ZJS
2932 r = dns_transaction_known_signed(t, rr);
2933 if (r < 0)
2934 return r;
2935 if (r > 0) {
2936 /* This is an RR we know has to be signed. If it isn't this means
2937 * the server is not attaching RRSIGs, hence complain. */
547973de 2938
c690b20a 2939 dns_server_packet_rrsig_missing(t->server, t->current_feature_level);
547973de 2940
c690b20a 2941 if (t->scope->dnssec_mode == DNSSEC_ALLOW_DOWNGRADE) {
547973de 2942
c690b20a 2943 /* Downgrading is OK? If so, just consider the information unsigned */
c9c72065 2944
c690b20a 2945 r = dns_answer_move_by_key(validated, &t->answer, rr->key, 0);
c9c72065
LP
2946 if (r < 0)
2947 return r;
547973de 2948
c690b20a
ZJS
2949 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
2950 return 1;
2951 }
a150ff5e 2952
c690b20a
ZJS
2953 /* Otherwise, fail */
2954 t->answer_dnssec_result = DNSSEC_INCOMPATIBLE_SERVER;
2955 return 0;
f3cf586d 2956 }
547973de 2957
c690b20a
ZJS
2958 r = dns_transaction_in_private_tld(t, rr->key);
2959 if (r < 0)
2960 return r;
2961 if (r > 0) {
202b76ae 2962 char s[DNS_RESOURCE_KEY_STRING_MAX];
b652d4a2 2963
c690b20a
ZJS
2964 /* The data is from a TLD that is proven not to exist, and we are in downgrade
2965 * mode, hence ignore the fact that this was not signed. */
0c7bff0a 2966
202b76ae
ZJS
2967 log_info("Detected RRset %s is in a private DNS zone, permitting unsigned RRs.",
2968 dns_resource_key_to_string(rr->key, s, sizeof s));
0c7bff0a 2969
c690b20a 2970 r = dns_answer_move_by_key(validated, &t->answer, rr->key, 0);
0c7bff0a
LP
2971 if (r < 0)
2972 return r;
0c7bff0a 2973
c690b20a
ZJS
2974 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
2975 return 1;
2976 }
2977 }
0c7bff0a 2978
c690b20a
ZJS
2979 if (IN_SET(result,
2980 DNSSEC_MISSING_KEY,
2981 DNSSEC_SIGNATURE_EXPIRED,
2982 DNSSEC_UNSUPPORTED_ALGORITHM)) {
0c7bff0a 2983
c690b20a
ZJS
2984 r = dns_transaction_dnskey_authenticated(t, rr);
2985 if (r < 0 && r != -ENXIO)
2986 return r;
2987 if (r == 0) {
2988 /* The DNSKEY transaction was not authenticated, this means there's
2989 * no DS for this, which means it's OK if no keys are found for this signature. */
0c7bff0a 2990
c690b20a 2991 r = dns_answer_move_by_key(validated, &t->answer, rr->key, 0);
f3cf586d
LP
2992 if (r < 0)
2993 return r;
b652d4a2 2994
c690b20a
ZJS
2995 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, rr->key);
2996 return 1;
2997 }
2998 }
b652d4a2 2999
c690b20a
ZJS
3000 r = dns_transaction_is_primary_response(t, rr);
3001 if (r < 0)
3002 return r;
3003 if (r > 0) {
3004 /* Look for a matching DNAME for this CNAME */
3005 r = dns_answer_has_dname_for_cname(t->answer, rr);
3006 if (r < 0)
3007 return r;
3008 if (r == 0) {
3009 /* Also look among the stuff we already validated */
3010 r = dns_answer_has_dname_for_cname(*validated, rr);
f3cf586d
LP
3011 if (r < 0)
3012 return r;
c690b20a 3013 }
d33b6cf3 3014
c690b20a
ZJS
3015 if (r == 0) {
3016 if (IN_SET(result,
3017 DNSSEC_INVALID,
3018 DNSSEC_SIGNATURE_EXPIRED,
3019 DNSSEC_NO_SIGNATURE))
3020 manager_dnssec_verdict(t->scope->manager, DNSSEC_BOGUS, rr->key);
3021 else /* DNSSEC_MISSING_KEY or DNSSEC_UNSUPPORTED_ALGORITHM */
3022 manager_dnssec_verdict(t->scope->manager, DNSSEC_INDETERMINATE, rr->key);
3023
3024 /* This is a primary response to our question, and it failed validation.
3025 * That's fatal. */
3026 t->answer_dnssec_result = result;
3027 return 0;
3028 }
d33b6cf3 3029
c690b20a
ZJS
3030 /* This is a primary response, but we do have a DNAME RR
3031 * in the RR that can replay this CNAME, hence rely on
3032 * that, and we can remove the CNAME in favour of it. */
3033 }
d33b6cf3 3034
c690b20a
ZJS
3035 /* This is just some auxiliary data. Just remove the RRset and continue. */
3036 r = dns_answer_remove_by_key(&t->answer, rr->key);
3037 if (r < 0)
3038 return r;
d33b6cf3 3039
c690b20a
ZJS
3040 /* We dropped something from the answer, start from the beginning. */
3041 return 1;
3042 }
f3cf586d 3043
c690b20a
ZJS
3044 return 2; /* Finito. */
3045}
94aa7071 3046
c690b20a
ZJS
3047int dns_transaction_validate_dnssec(DnsTransaction *t) {
3048 _cleanup_(dns_answer_unrefp) DnsAnswer *validated = NULL;
3049 Phase phase;
3050 DnsAnswerFlags flags;
3051 int r;
202b76ae 3052 char key_str[DNS_RESOURCE_KEY_STRING_MAX];
94aa7071 3053
c690b20a 3054 assert(t);
94aa7071 3055
c690b20a
ZJS
3056 /* We have now collected all DS and DNSKEY RRs in
3057 * t->validated_keys, let's see which RRs we can now
3058 * authenticate with that. */
94aa7071 3059
c690b20a
ZJS
3060 if (t->scope->dnssec_mode == DNSSEC_NO)
3061 return 0;
a150ff5e 3062
c690b20a
ZJS
3063 /* Already validated */
3064 if (t->answer_dnssec_result != _DNSSEC_RESULT_INVALID)
3065 return 0;
105e1512 3066
c690b20a
ZJS
3067 /* Our own stuff needs no validation */
3068 if (IN_SET(t->answer_source, DNS_TRANSACTION_ZONE, DNS_TRANSACTION_TRUST_ANCHOR)) {
3069 t->answer_dnssec_result = DNSSEC_VALIDATED;
3070 t->answer_authenticated = true;
3071 return 0;
3072 }
a150ff5e 3073
c690b20a
ZJS
3074 /* Cached stuff is not affected by validation. */
3075 if (t->answer_source != DNS_TRANSACTION_NETWORK)
3076 return 0;
f3cf586d 3077
c690b20a
ZJS
3078 if (!dns_transaction_dnssec_supported_full(t)) {
3079 /* The server does not support DNSSEC, or doesn't augment responses with RRSIGs. */
3080 t->answer_dnssec_result = DNSSEC_INCOMPATIBLE_SERVER;
d001e0a3 3081 log_debug("Not validating response for %" PRIu16 ", used server feature level does not support DNSSEC.", t->id);
c690b20a
ZJS
3082 return 0;
3083 }
f3cf586d 3084
202b76ae
ZJS
3085 log_debug("Validating response from transaction %" PRIu16 " (%s).",
3086 t->id,
3087 dns_resource_key_to_string(t->key, key_str, sizeof key_str));
547973de 3088
c690b20a
ZJS
3089 /* First, see if this response contains any revoked trust
3090 * anchors we care about */
3091 r = dns_transaction_check_revoked_trust_anchors(t);
3092 if (r < 0)
3093 return r;
43e6779a 3094
c690b20a
ZJS
3095 /* Third, copy all RRs we acquired successfully from auxiliary RRs over. */
3096 r = dns_transaction_copy_validated(t);
3097 if (r < 0)
3098 return r;
43e6779a 3099
c690b20a
ZJS
3100 /* Second, see if there are DNSKEYs we already know a
3101 * validated DS for. */
3102 r = dns_transaction_validate_dnskey_by_ds(t);
3103 if (r < 0)
3104 return r;
43e6779a 3105
c690b20a
ZJS
3106 /* Fourth, remove all DNSKEY and DS RRs again that our trust
3107 * anchor says are revoked. After all we might have marked
3108 * some keys revoked above, but they might still be lingering
3109 * in our validated_keys list. */
3110 r = dns_transaction_invalidate_revoked_keys(t);
3111 if (r < 0)
3112 return r;
f3cf586d 3113
c690b20a
ZJS
3114 phase = DNSSEC_PHASE_DNSKEY;
3115 for (;;) {
3116 bool have_nsec = false;
f3cf586d 3117
c690b20a
ZJS
3118 r = dnssec_validate_records(t, phase, &have_nsec, &validated);
3119 if (r <= 0)
3120 return r;
547973de 3121
c690b20a
ZJS
3122 /* Try again as long as we managed to achieve something */
3123 if (r == 1)
547973de
LP
3124 continue;
3125
c690b20a 3126 if (phase == DNSSEC_PHASE_DNSKEY && have_nsec) {
0c7bff0a 3127 /* OK, we processed all DNSKEYs, and there are NSEC/NSEC3 RRs, look at those now. */
c690b20a 3128 phase = DNSSEC_PHASE_NSEC;
0c7bff0a
LP
3129 continue;
3130 }
3131
c690b20a
ZJS
3132 if (phase != DNSSEC_PHASE_ALL) {
3133 /* OK, we processed all DNSKEYs and NSEC/NSEC3 RRs, look at all the rest now.
3134 * Note that in this third phase we start to remove RRs we couldn't validate. */
3135 phase = DNSSEC_PHASE_ALL;
56352fe9 3136 continue;
547973de
LP
3137 }
3138
56352fe9 3139 /* We're done */
547973de
LP
3140 break;
3141 }
3142
3143 dns_answer_unref(t->answer);
1cc6c93a 3144 t->answer = TAKE_PTR(validated);
547973de 3145
72667f08
LP
3146 /* At this point the answer only contains validated
3147 * RRsets. Now, let's see if it actually answers the question
3148 * we asked. If so, great! If it doesn't, then see if
3149 * NSEC/NSEC3 can prove this. */
105e1512 3150 r = dns_transaction_has_positive_answer(t, &flags);
72667f08 3151 if (r > 0) {
105e1512
LP
3152 /* Yes, it answers the question! */
3153
3154 if (flags & DNS_ANSWER_AUTHENTICATED) {
3155 /* The answer is fully authenticated, yay. */
019036a4 3156 t->answer_dnssec_result = DNSSEC_VALIDATED;
105e1512
LP
3157 t->answer_rcode = DNS_RCODE_SUCCESS;
3158 t->answer_authenticated = true;
3159 } else {
3160 /* The answer is not fully authenticated. */
019036a4 3161 t->answer_dnssec_result = DNSSEC_UNSIGNED;
105e1512
LP
3162 t->answer_authenticated = false;
3163 }
3164
72667f08
LP
3165 } else if (r == 0) {
3166 DnssecNsecResult nr;
ed29bfdc 3167 bool authenticated = false;
72667f08
LP
3168
3169 /* Bummer! Let's check NSEC/NSEC3 */
0c7bff0a 3170 r = dnssec_nsec_test(t->answer, t->key, &nr, &authenticated, &t->answer_nsec_ttl);
72667f08
LP
3171 if (r < 0)
3172 return r;
3173
3174 switch (nr) {
3175
3176 case DNSSEC_NSEC_NXDOMAIN:
3177 /* NSEC proves the domain doesn't exist. Very good. */
202b76ae 3178 log_debug("Proved NXDOMAIN via NSEC/NSEC3 for transaction %u (%s)", t->id, key_str);
019036a4 3179 t->answer_dnssec_result = DNSSEC_VALIDATED;
72667f08 3180 t->answer_rcode = DNS_RCODE_NXDOMAIN;
ed29bfdc 3181 t->answer_authenticated = authenticated;
7aa8ce98 3182
59c5b597 3183 manager_dnssec_verdict(t->scope->manager, authenticated ? DNSSEC_SECURE : DNSSEC_INSECURE, t->key);
72667f08
LP
3184 break;
3185
3186 case DNSSEC_NSEC_NODATA:
3187 /* NSEC proves that there's no data here, very good. */
202b76ae 3188 log_debug("Proved NODATA via NSEC/NSEC3 for transaction %u (%s)", t->id, key_str);
019036a4 3189 t->answer_dnssec_result = DNSSEC_VALIDATED;
72667f08 3190 t->answer_rcode = DNS_RCODE_SUCCESS;
ed29bfdc 3191 t->answer_authenticated = authenticated;
7aa8ce98 3192
59c5b597 3193 manager_dnssec_verdict(t->scope->manager, authenticated ? DNSSEC_SECURE : DNSSEC_INSECURE, t->key);
72667f08
LP
3194 break;
3195
105e1512
LP
3196 case DNSSEC_NSEC_OPTOUT:
3197 /* NSEC3 says the data might not be signed */
202b76ae 3198 log_debug("Data is NSEC3 opt-out via NSEC/NSEC3 for transaction %u (%s)", t->id, key_str);
019036a4 3199 t->answer_dnssec_result = DNSSEC_UNSIGNED;
105e1512 3200 t->answer_authenticated = false;
7aa8ce98 3201
59c5b597 3202 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, t->key);
105e1512
LP
3203 break;
3204
72667f08
LP
3205 case DNSSEC_NSEC_NO_RR:
3206 /* No NSEC data? Bummer! */
105e1512
LP
3207
3208 r = dns_transaction_requires_nsec(t);
3209 if (r < 0)
3210 return r;
7aa8ce98 3211 if (r > 0) {
019036a4 3212 t->answer_dnssec_result = DNSSEC_NO_SIGNATURE;
59c5b597 3213 manager_dnssec_verdict(t->scope->manager, DNSSEC_BOGUS, t->key);
7aa8ce98 3214 } else {
019036a4 3215 t->answer_dnssec_result = DNSSEC_UNSIGNED;
105e1512 3216 t->answer_authenticated = false;
59c5b597 3217 manager_dnssec_verdict(t->scope->manager, DNSSEC_INSECURE, t->key);
105e1512
LP
3218 }
3219
3220 break;
3221
3222 case DNSSEC_NSEC_UNSUPPORTED_ALGORITHM:
3223 /* We don't know the NSEC3 algorithm used? */
019036a4 3224 t->answer_dnssec_result = DNSSEC_UNSUPPORTED_ALGORITHM;
59c5b597 3225 manager_dnssec_verdict(t->scope->manager, DNSSEC_INDETERMINATE, t->key);
72667f08
LP
3226 break;
3227
3228 case DNSSEC_NSEC_FOUND:
146035b3 3229 case DNSSEC_NSEC_CNAME:
72667f08 3230 /* NSEC says it needs to be there, but we couldn't find it? Bummer! */
019036a4 3231 t->answer_dnssec_result = DNSSEC_NSEC_MISMATCH;
59c5b597 3232 manager_dnssec_verdict(t->scope->manager, DNSSEC_BOGUS, t->key);
72667f08
LP
3233 break;
3234
3235 default:
3236 assert_not_reached("Unexpected NSEC result.");
3237 }
3238 }
3239
547973de
LP
3240 return 1;
3241}
3242
ec2c5e43
LP
3243static const char* const dns_transaction_state_table[_DNS_TRANSACTION_STATE_MAX] = {
3244 [DNS_TRANSACTION_NULL] = "null",
3245 [DNS_TRANSACTION_PENDING] = "pending",
547973de 3246 [DNS_TRANSACTION_VALIDATING] = "validating",
3bbdc31d 3247 [DNS_TRANSACTION_RCODE_FAILURE] = "rcode-failure",
ec2c5e43
LP
3248 [DNS_TRANSACTION_SUCCESS] = "success",
3249 [DNS_TRANSACTION_NO_SERVERS] = "no-servers",
3250 [DNS_TRANSACTION_TIMEOUT] = "timeout",
3251 [DNS_TRANSACTION_ATTEMPTS_MAX_REACHED] = "attempts-max-reached",
3252 [DNS_TRANSACTION_INVALID_REPLY] = "invalid-reply",
7cc6ed7b 3253 [DNS_TRANSACTION_ERRNO] = "errno",
ec2c5e43 3254 [DNS_TRANSACTION_ABORTED] = "aborted",
547973de 3255 [DNS_TRANSACTION_DNSSEC_FAILED] = "dnssec-failed",
b2b796b8 3256 [DNS_TRANSACTION_NO_TRUST_ANCHOR] = "no-trust-anchor",
91adc4db 3257 [DNS_TRANSACTION_RR_TYPE_UNSUPPORTED] = "rr-type-unsupported",
edbcc1fd 3258 [DNS_TRANSACTION_NETWORK_DOWN] = "network-down",
0791110f 3259 [DNS_TRANSACTION_NOT_FOUND] = "not-found",
ec2c5e43
LP
3260};
3261DEFINE_STRING_TABLE_LOOKUP(dns_transaction_state, DnsTransactionState);
c3bc53e6
LP
3262
3263static const char* const dns_transaction_source_table[_DNS_TRANSACTION_SOURCE_MAX] = {
3264 [DNS_TRANSACTION_NETWORK] = "network",
3265 [DNS_TRANSACTION_CACHE] = "cache",
3266 [DNS_TRANSACTION_ZONE] = "zone",
0d2cd476 3267 [DNS_TRANSACTION_TRUST_ANCHOR] = "trust-anchor",
c3bc53e6
LP
3268};
3269DEFINE_STRING_TABLE_LOOKUP(dns_transaction_source, DnsTransactionSource);