]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-transaction.c
resolved: add 'next_attempt_after' field to DnsTransaction
[thirdparty/systemd.git] / src / resolve / resolved-dns-transaction.c
CommitLineData
ec2c5e43
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
6 Copyright 2014 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include "af-list.h"
b5efdb8a 23#include "alloc-util.h"
f52e61da 24#include "dns-domain.h"
3ffd4af2
LP
25#include "fd-util.h"
26#include "random-util.h"
27#include "resolved-dns-transaction.h"
28#include "resolved-llmnr.h"
8b43440b 29#include "string-table.h"
ec2c5e43
LP
30
31DnsTransaction* dns_transaction_free(DnsTransaction *t) {
801ad6a6 32 DnsQueryCandidate *c;
ec2c5e43
LP
33 DnsZoneItem *i;
34
35 if (!t)
36 return NULL;
37
38 sd_event_source_unref(t->timeout_event_source);
39
ec2c5e43
LP
40 dns_packet_unref(t->sent);
41 dns_packet_unref(t->received);
ae6a4bbf
LP
42
43 dns_answer_unref(t->answer);
ec2c5e43 44
4667e00a
LP
45 sd_event_source_unref(t->dns_udp_event_source);
46 safe_close(t->dns_udp_fd);
d20b1667 47
8300ba21 48 dns_server_unref(t->server);
ec2c5e43
LP
49 dns_stream_free(t->stream);
50
51 if (t->scope) {
f9ebb22a
LP
52 hashmap_remove_value(t->scope->transactions_by_key, t->key, t);
53 LIST_REMOVE(transactions_by_scope, t->scope->transactions, t);
ec2c5e43
LP
54
55 if (t->id != 0)
56 hashmap_remove(t->scope->manager->dns_transactions, UINT_TO_PTR(t->id));
57 }
58
da0c630e
LP
59 dns_resource_key_unref(t->key);
60
801ad6a6
LP
61 while ((c = set_steal_first(t->query_candidates)))
62 set_remove(c->transactions, t);
63
64 set_free(t->query_candidates);
ec2c5e43
LP
65
66 while ((i = set_steal_first(t->zone_items)))
67 i->probe_transaction = NULL;
68 set_free(t->zone_items);
69
70 free(t);
71 return NULL;
72}
73
74DEFINE_TRIVIAL_CLEANUP_FUNC(DnsTransaction*, dns_transaction_free);
75
76void dns_transaction_gc(DnsTransaction *t) {
77 assert(t);
78
79 if (t->block_gc > 0)
80 return;
81
801ad6a6 82 if (set_isempty(t->query_candidates) && set_isempty(t->zone_items))
ec2c5e43
LP
83 dns_transaction_free(t);
84}
85
f52e61da 86int dns_transaction_new(DnsTransaction **ret, DnsScope *s, DnsResourceKey *key) {
ec2c5e43
LP
87 _cleanup_(dns_transaction_freep) DnsTransaction *t = NULL;
88 int r;
89
90 assert(ret);
91 assert(s);
f52e61da 92 assert(key);
ec2c5e43 93
d5099efc 94 r = hashmap_ensure_allocated(&s->manager->dns_transactions, NULL);
ec2c5e43
LP
95 if (r < 0)
96 return r;
97
f9ebb22a 98 r = hashmap_ensure_allocated(&s->transactions_by_key, &dns_resource_key_hash_ops);
da0c630e
LP
99 if (r < 0)
100 return r;
101
ec2c5e43
LP
102 t = new0(DnsTransaction, 1);
103 if (!t)
104 return -ENOMEM;
105
4667e00a 106 t->dns_udp_fd = -1;
c3bc53e6 107 t->answer_source = _DNS_TRANSACTION_SOURCE_INVALID;
f52e61da 108 t->key = dns_resource_key_ref(key);
ec2c5e43 109
da0c630e 110 /* Find a fresh, unused transaction id */
ec2c5e43
LP
111 do
112 random_bytes(&t->id, sizeof(t->id));
113 while (t->id == 0 ||
114 hashmap_get(s->manager->dns_transactions, UINT_TO_PTR(t->id)));
115
116 r = hashmap_put(s->manager->dns_transactions, UINT_TO_PTR(t->id), t);
117 if (r < 0) {
118 t->id = 0;
119 return r;
120 }
121
f9ebb22a 122 r = hashmap_replace(s->transactions_by_key, t->key, t);
da0c630e
LP
123 if (r < 0) {
124 hashmap_remove(s->manager->dns_transactions, UINT_TO_PTR(t->id));
125 return r;
126 }
127
f9ebb22a 128 LIST_PREPEND(transactions_by_scope, s->transactions, t);
ec2c5e43
LP
129 t->scope = s;
130
131 if (ret)
132 *ret = t;
133
134 t = NULL;
135
136 return 0;
137}
138
139static void dns_transaction_stop(DnsTransaction *t) {
140 assert(t);
141
142 t->timeout_event_source = sd_event_source_unref(t->timeout_event_source);
143 t->stream = dns_stream_free(t->stream);
ae6a4bbf
LP
144
145 /* Note that we do not drop the UDP socket here, as we want to
146 * reuse it to repeat the interaction. */
ec2c5e43
LP
147}
148
149static void dns_transaction_tentative(DnsTransaction *t, DnsPacket *p) {
2fb3034c 150 _cleanup_free_ char *pretty = NULL;
ec2c5e43 151 DnsZoneItem *z;
ec2c5e43
LP
152
153 assert(t);
154 assert(p);
155
156 if (manager_our_packet(t->scope->manager, p) != 0)
157 return;
158
2fb3034c
LP
159 in_addr_to_string(p->family, &p->sender, &pretty);
160
161 log_debug("Transaction on scope %s on %s/%s got tentative packet from %s",
ec2c5e43
LP
162 dns_protocol_to_string(t->scope->protocol),
163 t->scope->link ? t->scope->link->name : "*",
2fb3034c
LP
164 t->scope->family == AF_UNSPEC ? "*" : af_to_name(t->scope->family),
165 pretty);
ec2c5e43 166
a4076574
LP
167 /* RFC 4795, Section 4.1 says that the peer with the
168 * lexicographically smaller IP address loses */
4d91eec4
LP
169 if (memcmp(&p->sender, &p->destination, FAMILY_ADDRESS_SIZE(p->family)) >= 0) {
170 log_debug("Peer has lexicographically larger IP address and thus lost in the conflict.");
a4076574
LP
171 return;
172 }
173
4d91eec4 174 log_debug("We have the lexicographically larger IP address and thus lost in the conflict.");
a4076574 175
ec2c5e43 176 t->block_gc++;
3ef64445
LP
177 while ((z = set_first(t->zone_items))) {
178 /* First, make sure the zone item drops the reference
179 * to us */
180 dns_zone_item_probe_stop(z);
181
182 /* Secondly, report this as conflict, so that we might
183 * look for a different hostname */
ec2c5e43 184 dns_zone_item_conflict(z);
3ef64445 185 }
ec2c5e43
LP
186 t->block_gc--;
187
188 dns_transaction_gc(t);
189}
190
191void dns_transaction_complete(DnsTransaction *t, DnsTransactionState state) {
801ad6a6 192 DnsQueryCandidate *c;
ec2c5e43
LP
193 DnsZoneItem *z;
194 Iterator i;
195
196 assert(t);
197 assert(!IN_SET(state, DNS_TRANSACTION_NULL, DNS_TRANSACTION_PENDING));
e56187ca 198
ec2c5e43
LP
199 /* Note that this call might invalidate the query. Callers
200 * should hence not attempt to access the query or transaction
201 * after calling this function. */
202
c3bc53e6 203 log_debug("Transaction on scope %s on %s/%s now complete with <%s> from %s",
ec2c5e43
LP
204 dns_protocol_to_string(t->scope->protocol),
205 t->scope->link ? t->scope->link->name : "*",
206 t->scope->family == AF_UNSPEC ? "*" : af_to_name(t->scope->family),
c3bc53e6
LP
207 dns_transaction_state_to_string(state),
208 t->answer_source < 0 ? "none" : dns_transaction_source_to_string(t->answer_source));
ec2c5e43
LP
209
210 t->state = state;
211
212 dns_transaction_stop(t);
213
214 /* Notify all queries that are interested, but make sure the
215 * transaction isn't freed while we are still looking at it */
216 t->block_gc++;
801ad6a6
LP
217 SET_FOREACH(c, t->query_candidates, i)
218 dns_query_candidate_ready(c);
ec2c5e43
LP
219 SET_FOREACH(z, t->zone_items, i)
220 dns_zone_item_ready(z);
221 t->block_gc--;
222
223 dns_transaction_gc(t);
224}
225
226static int on_stream_complete(DnsStream *s, int error) {
227 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
228 DnsTransaction *t;
229
230 assert(s);
231 assert(s->transaction);
232
233 /* Copy the data we care about out of the stream before we
234 * destroy it. */
235 t = s->transaction;
236 p = dns_packet_ref(s->read_packet);
237
238 t->stream = dns_stream_free(t->stream);
239
240 if (error != 0) {
241 dns_transaction_complete(t, DNS_TRANSACTION_RESOURCES);
242 return 0;
243 }
244
a4076574 245 if (dns_packet_validate_reply(p) <= 0) {
a20b9592 246 log_debug("Invalid TCP reply packet.");
a4076574
LP
247 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
248 return 0;
249 }
250
251 dns_scope_check_conflicts(t->scope, p);
252
ec2c5e43
LP
253 t->block_gc++;
254 dns_transaction_process_reply(t, p);
255 t->block_gc--;
256
257 /* If the response wasn't useful, then complete the transition now */
258 if (t->state == DNS_TRANSACTION_PENDING)
259 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
260
261 return 0;
262}
263
264static int dns_transaction_open_tcp(DnsTransaction *t) {
088480fa 265 DnsServer *server = NULL;
ec2c5e43
LP
266 _cleanup_close_ int fd = -1;
267 int r;
268
269 assert(t);
270
271 if (t->stream)
272 return 0;
273
106784eb
DM
274 switch (t->scope->protocol) {
275 case DNS_PROTOCOL_DNS:
8300ba21 276 fd = dns_scope_tcp_socket(t->scope, AF_UNSPEC, NULL, 53, &server);
106784eb 277 break;
ec2c5e43 278
106784eb 279 case DNS_PROTOCOL_LLMNR:
a8f6397f 280 /* When we already received a reply to this (but it was truncated), send to its sender address */
ec2c5e43 281 if (t->received)
8300ba21 282 fd = dns_scope_tcp_socket(t->scope, t->received->family, &t->received->sender, t->received->sender_port, NULL);
ec2c5e43
LP
283 else {
284 union in_addr_union address;
a7f7d1bd 285 int family = AF_UNSPEC;
ec2c5e43
LP
286
287 /* Otherwise, try to talk to the owner of a
288 * the IP address, in case this is a reverse
289 * PTR lookup */
f52e61da
LP
290
291 r = dns_name_address(DNS_RESOURCE_KEY_NAME(t->key), &family, &address);
ec2c5e43
LP
292 if (r < 0)
293 return r;
294 if (r == 0)
295 return -EINVAL;
9e08a6e0 296 if (family != t->scope->family)
9318cdd3 297 return -ESRCH;
ec2c5e43 298
8300ba21 299 fd = dns_scope_tcp_socket(t->scope, family, &address, LLMNR_PORT, NULL);
ec2c5e43 300 }
106784eb
DM
301
302 break;
303
304 default:
ec2c5e43 305 return -EAFNOSUPPORT;
106784eb 306 }
ec2c5e43
LP
307
308 if (fd < 0)
309 return fd;
310
311 r = dns_stream_new(t->scope->manager, &t->stream, t->scope->protocol, fd);
312 if (r < 0)
313 return r;
314
315 fd = -1;
316
317 r = dns_stream_write_packet(t->stream, t->sent);
318 if (r < 0) {
319 t->stream = dns_stream_free(t->stream);
320 return r;
321 }
322
8300ba21
TG
323 dns_server_unref(t->server);
324 t->server = dns_server_ref(server);
ec2c5e43 325 t->received = dns_packet_unref(t->received);
ae6a4bbf
LP
326 t->answer = dns_answer_unref(t->answer);
327 t->answer_rcode = 0;
ec2c5e43
LP
328 t->stream->complete = on_stream_complete;
329 t->stream->transaction = t;
330
331 /* The interface index is difficult to determine if we are
332 * connecting to the local host, hence fill this in right away
333 * instead of determining it from the socket */
334 if (t->scope->link)
335 t->stream->ifindex = t->scope->link->ifindex;
336
337 return 0;
338}
339
647f6aa8
TG
340static void dns_transaction_next_dns_server(DnsTransaction *t) {
341 assert(t);
342
343 t->server = dns_server_unref(t->server);
4667e00a
LP
344 t->dns_udp_event_source = sd_event_source_unref(t->dns_udp_event_source);
345 t->dns_udp_fd = safe_close(t->dns_udp_fd);
647f6aa8
TG
346
347 dns_scope_next_dns_server(t->scope);
348}
349
ec2c5e43 350void dns_transaction_process_reply(DnsTransaction *t, DnsPacket *p) {
9df3ba6c 351 usec_t ts;
ec2c5e43
LP
352 int r;
353
354 assert(t);
355 assert(p);
356 assert(t->state == DNS_TRANSACTION_PENDING);
9df3ba6c
TG
357 assert(t->scope);
358 assert(t->scope->manager);
ec2c5e43
LP
359
360 /* Note that this call might invalidate the query. Callers
361 * should hence not attempt to access the query or transaction
362 * after calling this function. */
363
106784eb
DM
364 switch (t->scope->protocol) {
365 case DNS_PROTOCOL_LLMNR:
ec2c5e43
LP
366 assert(t->scope->link);
367
368 /* For LLMNR we will not accept any packets from other
369 * interfaces */
370
371 if (p->ifindex != t->scope->link->ifindex)
372 return;
373
374 if (p->family != t->scope->family)
375 return;
376
377 /* Tentative packets are not full responses but still
378 * useful for identifying uniqueness conflicts during
379 * probing. */
8b757a38 380 if (DNS_PACKET_LLMNR_T(p)) {
ec2c5e43
LP
381 dns_transaction_tentative(t, p);
382 return;
383 }
106784eb
DM
384
385 break;
386
4e5bf5e1
DM
387 case DNS_PROTOCOL_MDNS:
388 assert(t->scope->link);
389
390 /* For mDNS we will not accept any packets from other interfaces */
391 if (p->ifindex != t->scope->link->ifindex)
392 return;
393
394 if (p->family != t->scope->family)
395 return;
396
397 break;
398
106784eb
DM
399 case DNS_PROTOCOL_DNS:
400 break;
401
402 default:
9c56a6f3 403 assert_not_reached("Invalid DNS protocol.");
ec2c5e43
LP
404 }
405
ec2c5e43
LP
406 if (t->received != p) {
407 dns_packet_unref(t->received);
408 t->received = dns_packet_ref(p);
409 }
410
c3bc53e6
LP
411 t->answer_source = DNS_TRANSACTION_NETWORK;
412
ec2c5e43
LP
413 if (p->ipproto == IPPROTO_TCP) {
414 if (DNS_PACKET_TC(p)) {
415 /* Truncated via TCP? Somebody must be fucking with us */
416 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
417 return;
418 }
419
420 if (DNS_PACKET_ID(p) != t->id) {
421 /* Not the reply to our query? Somebody must be fucking with us */
422 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
423 return;
424 }
425 }
426
38a03f06 427 assert_se(sd_event_now(t->scope->manager->event, clock_boottime_or_monotonic(), &ts) >= 0);
9df3ba6c
TG
428
429 switch (t->scope->protocol) {
430 case DNS_PROTOCOL_DNS:
431 assert(t->server);
432
4e0b8b17
TG
433 if (IN_SET(DNS_PACKET_RCODE(p), DNS_RCODE_FORMERR, DNS_RCODE_SERVFAIL, DNS_RCODE_NOTIMP)) {
434
435 /* request failed, immediately try again with reduced features */
436 log_debug("Server returned error: %s", dns_rcode_to_string(DNS_PACKET_RCODE(p)));
437
438 dns_server_packet_failed(t->server, t->current_features);
439
440 r = dns_transaction_go(t);
441 if (r < 0) {
442 dns_transaction_complete(t, DNS_TRANSACTION_RESOURCES);
443 return;
444 }
445
446 return;
447 } else
d74fb368 448 dns_server_packet_received(t->server, t->current_features, ts - t->start_usec, p->size);
9df3ba6c
TG
449
450 break;
451 case DNS_PROTOCOL_LLMNR:
452 case DNS_PROTOCOL_MDNS:
453 dns_scope_packet_received(t->scope, ts - t->start_usec);
454
455 break;
456 default:
9c56a6f3 457 break;
9df3ba6c
TG
458 }
459
ec2c5e43 460 if (DNS_PACKET_TC(p)) {
547493c5
DM
461
462 /* Truncated packets for mDNS are not allowed. Give up immediately. */
463 if (t->scope->protocol == DNS_PROTOCOL_MDNS) {
464 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
465 return;
466 }
467
ec2c5e43
LP
468 /* Response was truncated, let's try again with good old TCP */
469 r = dns_transaction_open_tcp(t);
470 if (r == -ESRCH) {
471 /* No servers found? Damn! */
472 dns_transaction_complete(t, DNS_TRANSACTION_NO_SERVERS);
473 return;
474 }
475 if (r < 0) {
547493c5 476 /* On LLMNR and mDNS, if we cannot connect to the host,
ec2c5e43
LP
477 * we immediately give up */
478 if (t->scope->protocol == DNS_PROTOCOL_LLMNR) {
479 dns_transaction_complete(t, DNS_TRANSACTION_RESOURCES);
480 return;
481 }
482
483 /* On DNS, couldn't send? Try immediately again, with a new server */
647f6aa8 484 dns_transaction_next_dns_server(t);
ec2c5e43
LP
485
486 r = dns_transaction_go(t);
487 if (r < 0) {
488 dns_transaction_complete(t, DNS_TRANSACTION_RESOURCES);
489 return;
490 }
491
492 return;
493 }
494 }
495
496 /* Parse and update the cache */
497 r = dns_packet_extract(p);
498 if (r < 0) {
499 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
500 return;
501 }
502
547493c5
DM
503 if (t->scope->protocol == DNS_PROTOCOL_DNS) {
504 /* Only consider responses with equivalent query section to the request */
505 if (p->question->n_keys != 1 || dns_resource_key_equal(p->question->keys[0], t->key) <= 0) {
506 dns_transaction_complete(t, DNS_TRANSACTION_INVALID_REPLY);
507 return;
508 }
29815b6c 509
547493c5
DM
510 /* Install the answer as answer to the transaction */
511 dns_answer_unref(t->answer);
512 t->answer = dns_answer_ref(p->answer);
513 t->answer_rcode = DNS_PACKET_RCODE(p);
514 t->answer_authenticated = t->scope->dnssec_mode == DNSSEC_TRUST && DNS_PACKET_AD(p);
515
516 /* According to RFC 4795, section 2.9. only the RRs from the answer section shall be cached */
517 if (DNS_PACKET_SHALL_CACHE(p))
518 dns_cache_put(&t->scope->cache,
519 t->key,
520 DNS_PACKET_RCODE(p),
521 p->answer,
522 DNS_PACKET_ANCOUNT(p),
523 t->answer_authenticated,
524 0,
525 p->family,
526 &p->sender);
527 }
ec2c5e43
LP
528
529 if (DNS_PACKET_RCODE(p) == DNS_RCODE_SUCCESS)
530 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
531 else
532 dns_transaction_complete(t, DNS_TRANSACTION_FAILURE);
533}
534
c19ffd9f
TG
535static int on_dns_packet(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
536 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
537 DnsTransaction *t = userdata;
538 int r;
539
540 assert(t);
541 assert(t->scope);
542
543 r = manager_recv(t->scope->manager, fd, DNS_PROTOCOL_DNS, &p);
544 if (r <= 0)
545 return r;
546
547 if (dns_packet_validate_reply(p) > 0 &&
9df3ba6c 548 DNS_PACKET_ID(p) == t->id)
c19ffd9f 549 dns_transaction_process_reply(t, p);
9df3ba6c 550 else
c19ffd9f
TG
551 log_debug("Invalid DNS packet.");
552
553 return 0;
554}
555
471d40d9 556static int dns_transaction_emit(DnsTransaction *t) {
c19ffd9f
TG
557 int r;
558
559 assert(t);
c19ffd9f 560
471d40d9
TG
561 if (t->scope->protocol == DNS_PROTOCOL_DNS && !t->server) {
562 DnsServer *server = NULL;
563 _cleanup_close_ int fd = -1;
c19ffd9f 564
471d40d9
TG
565 fd = dns_scope_udp_dns_socket(t->scope, &server);
566 if (fd < 0)
567 return fd;
c19ffd9f 568
4667e00a 569 r = sd_event_add_io(t->scope->manager->event, &t->dns_udp_event_source, fd, EPOLLIN, on_dns_packet, t);
471d40d9
TG
570 if (r < 0)
571 return r;
c19ffd9f 572
4667e00a 573 t->dns_udp_fd = fd;
471d40d9
TG
574 fd = -1;
575 t->server = dns_server_ref(server);
576 }
c19ffd9f 577
9c5e12a4 578 r = dns_scope_emit(t->scope, t->dns_udp_fd, t->server, t->sent);
471d40d9
TG
579 if (r < 0)
580 return r;
c19ffd9f 581
be808ea0
TG
582 if (t->server)
583 t->current_features = t->server->possible_features;
584
471d40d9 585 return 0;
c19ffd9f
TG
586}
587
ec2c5e43
LP
588static int on_transaction_timeout(sd_event_source *s, usec_t usec, void *userdata) {
589 DnsTransaction *t = userdata;
590 int r;
591
592 assert(s);
593 assert(t);
594
ef7ce6df
DM
595 if (!t->initial_jitter_scheduled || t->initial_jitter_elapsed) {
596 /* Timeout reached? Increase the timeout for the server used */
597 switch (t->scope->protocol) {
598 case DNS_PROTOCOL_DNS:
599 assert(t->server);
ec2c5e43 600
ef7ce6df 601 dns_server_packet_lost(t->server, t->current_features, usec - t->start_usec);
be808ea0 602
ef7ce6df
DM
603 break;
604 case DNS_PROTOCOL_LLMNR:
605 case DNS_PROTOCOL_MDNS:
606 dns_scope_packet_lost(t->scope, usec - t->start_usec);
9df3ba6c 607
ef7ce6df
DM
608 break;
609 default:
610 assert_not_reached("Invalid DNS protocol.");
611 }
612
613 if (t->initial_jitter_scheduled)
614 t->initial_jitter_elapsed = true;
be808ea0
TG
615 }
616
617 /* ...and try again with a new server */
618 dns_transaction_next_dns_server(t);
619
ec2c5e43
LP
620 r = dns_transaction_go(t);
621 if (r < 0)
622 dns_transaction_complete(t, DNS_TRANSACTION_RESOURCES);
623
624 return 0;
625}
626
627static int dns_transaction_make_packet(DnsTransaction *t) {
628 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
ec2c5e43
LP
629 int r;
630
631 assert(t);
632
633 if (t->sent)
634 return 0;
635
24710c48 636 r = dns_packet_new_query(&p, t->scope->protocol, 0, t->scope->dnssec_mode == DNSSEC_YES);
ec2c5e43
LP
637 if (r < 0)
638 return r;
639
f52e61da
LP
640 r = dns_scope_good_key(t->scope, t->key);
641 if (r < 0)
642 return r;
643 if (r == 0)
ec2c5e43
LP
644 return -EDOM;
645
f52e61da
LP
646 r = dns_packet_append_key(p, t->key, NULL);
647 if (r < 0)
648 return r;
649
650 DNS_PACKET_HEADER(p)->qdcount = htobe16(1);
ec2c5e43
LP
651 DNS_PACKET_HEADER(p)->id = t->id;
652
653 t->sent = p;
654 p = NULL;
655
656 return 0;
657}
658
9df3ba6c
TG
659static usec_t transaction_get_resend_timeout(DnsTransaction *t) {
660 assert(t);
661 assert(t->scope);
662
663 switch (t->scope->protocol) {
664 case DNS_PROTOCOL_DNS:
665 assert(t->server);
666
667 return t->server->resend_timeout;
9df3ba6c 668 case DNS_PROTOCOL_MDNS:
11a27c2e
DM
669 assert(t->n_attempts > 0);
670 return (1 << (t->n_attempts - 1)) * USEC_PER_SEC;
671 case DNS_PROTOCOL_LLMNR:
9df3ba6c
TG
672 return t->scope->resend_timeout;
673 default:
674 assert_not_reached("Invalid DNS protocol.");
675 }
676}
677
1effe965 678static int dns_transaction_prepare_next_attempt(DnsTransaction *t, usec_t ts) {
ec2c5e43
LP
679 bool had_stream;
680 int r;
681
682 assert(t);
683
684 had_stream = !!t->stream;
685
686 dns_transaction_stop(t);
687
ec2c5e43
LP
688 if (t->n_attempts >= TRANSACTION_ATTEMPTS_MAX(t->scope->protocol)) {
689 dns_transaction_complete(t, DNS_TRANSACTION_ATTEMPTS_MAX_REACHED);
690 return 0;
691 }
692
693 if (t->scope->protocol == DNS_PROTOCOL_LLMNR && had_stream) {
694 /* If we already tried via a stream, then we don't
695 * retry on LLMNR. See RFC 4795, Section 2.7. */
696 dns_transaction_complete(t, DNS_TRANSACTION_ATTEMPTS_MAX_REACHED);
697 return 0;
698 }
699
700 t->n_attempts++;
9df3ba6c 701 t->start_usec = ts;
ec2c5e43 702 t->received = dns_packet_unref(t->received);
ae6a4bbf
LP
703 t->answer = dns_answer_unref(t->answer);
704 t->answer_rcode = 0;
c3bc53e6 705 t->answer_source = _DNS_TRANSACTION_SOURCE_INVALID;
ec2c5e43 706
0d2cd476
LP
707 /* Check the trust anchor. Do so only on classic DNS, since DNSSEC does not apply otherwise. */
708 if (t->scope->protocol == DNS_PROTOCOL_DNS) {
709 r = dns_trust_anchor_lookup(&t->scope->manager->trust_anchor, t->key, &t->answer);
710 if (r < 0)
711 return r;
712 if (r > 0) {
713 t->answer_rcode = DNS_RCODE_SUCCESS;
714 t->answer_source = DNS_TRANSACTION_TRUST_ANCHOR;
931851e8 715 t->answer_authenticated = true;
0d2cd476
LP
716 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
717 return 0;
718 }
719 }
720
721 /* Check the zone, but only if this transaction is not used
d746bb3e
LP
722 * for probing or verifying a zone item. */
723 if (set_isempty(t->zone_items)) {
724
ae6a4bbf 725 r = dns_zone_lookup(&t->scope->zone, t->key, &t->answer, NULL, NULL);
d746bb3e
LP
726 if (r < 0)
727 return r;
728 if (r > 0) {
ae6a4bbf 729 t->answer_rcode = DNS_RCODE_SUCCESS;
c3bc53e6 730 t->answer_source = DNS_TRANSACTION_ZONE;
931851e8 731 t->answer_authenticated = true;
d746bb3e
LP
732 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
733 return 0;
734 }
735 }
736
4d926a69
LP
737 /* Check the cache, but only if this transaction is not used
738 * for probing or verifying a zone item. */
739 if (set_isempty(t->zone_items)) {
2c27fbca 740
4d926a69
LP
741 /* Before trying the cache, let's make sure we figured out a
742 * server to use. Should this cause a change of server this
743 * might flush the cache. */
744 dns_scope_get_dns_server(t->scope);
2c27fbca 745
4d926a69
LP
746 /* Let's then prune all outdated entries */
747 dns_cache_prune(&t->scope->cache);
748
931851e8 749 r = dns_cache_lookup(&t->scope->cache, t->key, &t->answer_rcode, &t->answer, &t->answer_authenticated);
4d926a69
LP
750 if (r < 0)
751 return r;
752 if (r > 0) {
c3bc53e6 753 t->answer_source = DNS_TRANSACTION_CACHE;
ae6a4bbf 754 if (t->answer_rcode == DNS_RCODE_SUCCESS)
4d926a69
LP
755 dns_transaction_complete(t, DNS_TRANSACTION_SUCCESS);
756 else
757 dns_transaction_complete(t, DNS_TRANSACTION_FAILURE);
758 return 0;
759 }
ec2c5e43
LP
760 }
761
1effe965
DM
762 return 1;
763}
764
765int dns_transaction_go(DnsTransaction *t) {
766 usec_t ts;
767 int r;
768
769 assert(t);
770
771 assert_se(sd_event_now(t->scope->manager->event, clock_boottime_or_monotonic(), &ts) >= 0);
772 r = dns_transaction_prepare_next_attempt(t, ts);
773 if (r <= 0)
774 return r;
775
776 log_debug("Excercising transaction on scope %s on %s/%s",
777 dns_protocol_to_string(t->scope->protocol),
778 t->scope->link ? t->scope->link->name : "*",
779 t->scope->family == AF_UNSPEC ? "*" : af_to_name(t->scope->family));
780
ef7ce6df 781 if (!t->initial_jitter_scheduled &&
ea12bcc7
DM
782 (t->scope->protocol == DNS_PROTOCOL_LLMNR ||
783 t->scope->protocol == DNS_PROTOCOL_MDNS)) {
784 usec_t jitter, accuracy;
6e068472
LP
785
786 /* RFC 4795 Section 2.7 suggests all queries should be
787 * delayed by a random time from 0 to JITTER_INTERVAL. */
788
ef7ce6df 789 t->initial_jitter_scheduled = true;
6e068472
LP
790
791 random_bytes(&jitter, sizeof(jitter));
ea12bcc7
DM
792
793 switch (t->scope->protocol) {
794 case DNS_PROTOCOL_LLMNR:
795 jitter %= LLMNR_JITTER_INTERVAL_USEC;
796 accuracy = LLMNR_JITTER_INTERVAL_USEC;
797 break;
798 case DNS_PROTOCOL_MDNS:
799 jitter %= MDNS_JITTER_RANGE_USEC;
800 jitter += MDNS_JITTER_MIN_USEC;
801 accuracy = MDNS_JITTER_RANGE_USEC;
802 break;
803 default:
804 assert_not_reached("bad protocol");
805 }
6e068472
LP
806
807 r = sd_event_add_time(
808 t->scope->manager->event,
809 &t->timeout_event_source,
810 clock_boottime_or_monotonic(),
ea12bcc7 811 ts + jitter, accuracy,
6e068472
LP
812 on_transaction_timeout, t);
813 if (r < 0)
814 return r;
815
816 t->n_attempts = 0;
a9da14e1 817 t->next_attempt_after = ts;
6e068472
LP
818 t->state = DNS_TRANSACTION_PENDING;
819
ea12bcc7 820 log_debug("Delaying %s transaction for " USEC_FMT "us.", dns_protocol_to_string(t->scope->protocol), jitter);
6e068472
LP
821 return 0;
822 }
823
ec2c5e43
LP
824 /* Otherwise, we need to ask the network */
825 r = dns_transaction_make_packet(t);
826 if (r == -EDOM) {
827 /* Not the right request to make on this network?
828 * (i.e. an A request made on IPv6 or an AAAA request
829 * made on IPv4, on LLMNR or mDNS.) */
830 dns_transaction_complete(t, DNS_TRANSACTION_NO_SERVERS);
831 return 0;
832 }
833 if (r < 0)
834 return r;
835
836 if (t->scope->protocol == DNS_PROTOCOL_LLMNR &&
f52e61da
LP
837 (dns_name_endswith(DNS_RESOURCE_KEY_NAME(t->key), "in-addr.arpa") > 0 ||
838 dns_name_endswith(DNS_RESOURCE_KEY_NAME(t->key), "ip6.arpa") > 0)) {
ec2c5e43
LP
839
840 /* RFC 4795, Section 2.4. says reverse lookups shall
841 * always be made via TCP on LLMNR */
842 r = dns_transaction_open_tcp(t);
843 } else {
be808ea0
TG
844 /* Try via UDP, and if that fails due to large size or lack of
845 * support try via TCP */
471d40d9 846 r = dns_transaction_emit(t);
be808ea0 847 if (r == -EMSGSIZE || r == -EAGAIN)
ec2c5e43
LP
848 r = dns_transaction_open_tcp(t);
849 }
be808ea0 850
ec2c5e43
LP
851 if (r == -ESRCH) {
852 /* No servers to send this to? */
853 dns_transaction_complete(t, DNS_TRANSACTION_NO_SERVERS);
854 return 0;
8300ba21 855 } else if (r < 0) {
13b551ac
LP
856 if (t->scope->protocol != DNS_PROTOCOL_DNS) {
857 dns_transaction_complete(t, DNS_TRANSACTION_RESOURCES);
858 return 0;
859 }
860
ec2c5e43 861 /* Couldn't send? Try immediately again, with a new server */
647f6aa8 862 dns_transaction_next_dns_server(t);
ec2c5e43
LP
863
864 return dns_transaction_go(t);
865 }
866
a9da14e1
DM
867 ts += transaction_get_resend_timeout(t);
868
9a015429
LP
869 r = sd_event_add_time(
870 t->scope->manager->event,
871 &t->timeout_event_source,
872 clock_boottime_or_monotonic(),
a9da14e1 873 ts, 0,
9a015429 874 on_transaction_timeout, t);
ec2c5e43
LP
875 if (r < 0)
876 return r;
877
878 t->state = DNS_TRANSACTION_PENDING;
a9da14e1
DM
879 t->next_attempt_after = ts;
880
ec2c5e43
LP
881 return 1;
882}
883
884static const char* const dns_transaction_state_table[_DNS_TRANSACTION_STATE_MAX] = {
885 [DNS_TRANSACTION_NULL] = "null",
886 [DNS_TRANSACTION_PENDING] = "pending",
887 [DNS_TRANSACTION_FAILURE] = "failure",
888 [DNS_TRANSACTION_SUCCESS] = "success",
889 [DNS_TRANSACTION_NO_SERVERS] = "no-servers",
890 [DNS_TRANSACTION_TIMEOUT] = "timeout",
891 [DNS_TRANSACTION_ATTEMPTS_MAX_REACHED] = "attempts-max-reached",
892 [DNS_TRANSACTION_INVALID_REPLY] = "invalid-reply",
893 [DNS_TRANSACTION_RESOURCES] = "resources",
894 [DNS_TRANSACTION_ABORTED] = "aborted",
895};
896DEFINE_STRING_TABLE_LOOKUP(dns_transaction_state, DnsTransactionState);
c3bc53e6
LP
897
898static const char* const dns_transaction_source_table[_DNS_TRANSACTION_SOURCE_MAX] = {
899 [DNS_TRANSACTION_NETWORK] = "network",
900 [DNS_TRANSACTION_CACHE] = "cache",
901 [DNS_TRANSACTION_ZONE] = "zone",
0d2cd476 902 [DNS_TRANSACTION_TRUST_ANCHOR] = "trust-anchor",
c3bc53e6
LP
903};
904DEFINE_STRING_TABLE_LOOKUP(dns_transaction_source, DnsTransactionSource);