]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved-dns-stub.c
Merge pull request #20476 from jamacku/new-feature-reloaded-stamp
[thirdparty/systemd.git] / src / resolve / resolved-dns-stub.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <net/if_arp.h>
4 #include <netinet/tcp.h>
5
6 #include "errno-util.h"
7 #include "fd-util.h"
8 #include "missing_network.h"
9 #include "missing_socket.h"
10 #include "resolved-dns-stub.h"
11 #include "socket-netlink.h"
12 #include "socket-util.h"
13 #include "stdio-util.h"
14 #include "string-table.h"
15
16 /* The MTU of the loopback device is 64K on Linux, advertise that as maximum datagram size, but subtract the Ethernet,
17 * IP and UDP header sizes */
18 #define ADVERTISE_DATAGRAM_SIZE_MAX (65536U-14U-20U-8U)
19
20 /* On the extra stubs, use a more conservative choice */
21 #define ADVERTISE_EXTRA_DATAGRAM_SIZE_MAX DNS_PACKET_UNICAST_SIZE_LARGE_MAX
22
23 static int manager_dns_stub_fd_extra(Manager *m, DnsStubListenerExtra *l, int type);
24 static int manager_dns_stub_fd(Manager *m, int family, const union in_addr_union *listen_address, int type);
25
26 static void dns_stub_listener_extra_hash_func(const DnsStubListenerExtra *a, struct siphash *state) {
27 assert(a);
28
29 siphash24_compress(&a->mode, sizeof(a->mode), state);
30 siphash24_compress(&a->family, sizeof(a->family), state);
31 siphash24_compress(&a->address, FAMILY_ADDRESS_SIZE(a->family), state);
32 siphash24_compress(&a->port, sizeof(a->port), state);
33 }
34
35 static int dns_stub_listener_extra_compare_func(const DnsStubListenerExtra *a, const DnsStubListenerExtra *b) {
36 int r;
37
38 assert(a);
39 assert(b);
40
41 r = CMP(a->mode, b->mode);
42 if (r != 0)
43 return r;
44
45 r = CMP(a->family, b->family);
46 if (r != 0)
47 return r;
48
49 r = memcmp(&a->address, &b->address, FAMILY_ADDRESS_SIZE(a->family));
50 if (r != 0)
51 return r;
52
53 return CMP(a->port, b->port);
54 }
55
56 DEFINE_HASH_OPS_WITH_KEY_DESTRUCTOR(
57 dns_stub_listener_extra_hash_ops,
58 DnsStubListenerExtra,
59 dns_stub_listener_extra_hash_func,
60 dns_stub_listener_extra_compare_func,
61 dns_stub_listener_extra_free);
62
63 int dns_stub_listener_extra_new(
64 Manager *m,
65 DnsStubListenerExtra **ret) {
66
67 DnsStubListenerExtra *l;
68
69 l = new(DnsStubListenerExtra, 1);
70 if (!l)
71 return -ENOMEM;
72
73 *l = (DnsStubListenerExtra) {
74 .manager = m,
75 };
76
77 *ret = TAKE_PTR(l);
78 return 0;
79 }
80
81 DnsStubListenerExtra *dns_stub_listener_extra_free(DnsStubListenerExtra *p) {
82 if (!p)
83 return NULL;
84
85 p->udp_event_source = sd_event_source_disable_unref(p->udp_event_source);
86 p->tcp_event_source = sd_event_source_disable_unref(p->tcp_event_source);
87
88 hashmap_free(p->queries_by_packet);
89
90 return mfree(p);
91 }
92
93 static void stub_packet_hash_func(const DnsPacket *p, struct siphash *state) {
94 assert(p);
95
96 siphash24_compress(&p->protocol, sizeof(p->protocol), state);
97 siphash24_compress(&p->family, sizeof(p->family), state);
98 siphash24_compress(&p->sender, sizeof(p->sender), state);
99 siphash24_compress(&p->ipproto, sizeof(p->ipproto), state);
100 siphash24_compress(&p->sender_port, sizeof(p->sender_port), state);
101 siphash24_compress(DNS_PACKET_HEADER(p), sizeof(DnsPacketHeader), state);
102
103 /* We don't bother hashing the full packet here, just the header */
104 }
105
106 static int stub_packet_compare_func(const DnsPacket *x, const DnsPacket *y) {
107 int r;
108
109 r = CMP(x->protocol, y->protocol);
110 if (r != 0)
111 return r;
112
113 r = CMP(x->family, y->family);
114 if (r != 0)
115 return r;
116
117 r = memcmp(&x->sender, &y->sender, sizeof(x->sender));
118 if (r != 0)
119 return r;
120
121 r = CMP(x->ipproto, y->ipproto);
122 if (r != 0)
123 return r;
124
125 r = CMP(x->sender_port, y->sender_port);
126 if (r != 0)
127 return r;
128
129 return memcmp(DNS_PACKET_HEADER(x), DNS_PACKET_HEADER(y), sizeof(DnsPacketHeader));
130 }
131
132 DEFINE_HASH_OPS(stub_packet_hash_ops, DnsPacket, stub_packet_hash_func, stub_packet_compare_func);
133
134 static int reply_add_with_rrsig(
135 DnsAnswer **reply,
136 DnsResourceRecord *rr,
137 int ifindex,
138 DnsAnswerFlags flags,
139 DnsResourceRecord *rrsig,
140 bool with_rrsig) {
141 int r;
142
143 assert(reply);
144 assert(rr);
145
146 r = dns_answer_add_extend(reply, rr, ifindex, flags, rrsig);
147 if (r < 0)
148 return r;
149
150 if (with_rrsig && rrsig) {
151 r = dns_answer_add_extend(reply, rrsig, ifindex, flags, NULL);
152 if (r < 0)
153 return r;
154 }
155
156 return 0;
157 }
158
159 static int dns_stub_collect_answer_by_question(
160 DnsAnswer **reply,
161 DnsAnswer *answer,
162 DnsQuestion *question,
163 bool with_rrsig) { /* Add RRSIG RR matching each RR */
164
165 DnsAnswerItem *item;
166 int r;
167
168 assert(reply);
169
170 /* Copies all RRs from 'answer' into 'reply', if they match 'question'. */
171
172 DNS_ANSWER_FOREACH_ITEM(item, answer) {
173
174 /* We have a question, let's see if this RR matches it */
175 r = dns_question_matches_rr(question, item->rr, NULL);
176 if (r < 0)
177 return r;
178 if (!r) {
179 /* Maybe there's a CNAME/DNAME in here? If so, that's an answer too */
180 r = dns_question_matches_cname_or_dname(question, item->rr, NULL);
181 if (r < 0)
182 return r;
183 if (!r)
184 continue;
185 }
186
187 /* Mask the section info, we want the primary answers to always go without section
188 * info, so that it is added to the answer section when we synthesize a reply. */
189
190 r = reply_add_with_rrsig(
191 reply,
192 item->rr,
193 item->ifindex,
194 item->flags & ~DNS_ANSWER_MASK_SECTIONS,
195 item->rrsig,
196 with_rrsig);
197 if (r < 0)
198 return r;
199 }
200
201 return 0;
202 }
203
204 static int dns_stub_collect_answer_by_section(
205 DnsAnswer **reply,
206 DnsAnswer *answer,
207 DnsAnswerFlags section,
208 DnsAnswer *exclude1,
209 DnsAnswer *exclude2,
210 bool with_dnssec) { /* Include DNSSEC RRs. RRSIG, NSEC, … */
211
212 DnsAnswerItem *item;
213 int r;
214
215 assert(reply);
216
217 /* Copies all RRs from 'answer' into 'reply', if they originate from the specified section. Also,
218 * avoid any RRs listed in 'exclude'. */
219
220 DNS_ANSWER_FOREACH_ITEM(item, answer) {
221
222 if (dns_answer_contains(exclude1, item->rr) ||
223 dns_answer_contains(exclude2, item->rr))
224 continue;
225
226 if (!with_dnssec &&
227 dns_type_is_dnssec(item->rr->key->type))
228 continue;
229
230 if (((item->flags ^ section) & DNS_ANSWER_MASK_SECTIONS) != 0)
231 continue;
232
233 r = reply_add_with_rrsig(
234 reply,
235 item->rr,
236 item->ifindex,
237 item->flags,
238 item->rrsig,
239 with_dnssec);
240 if (r < 0)
241 return r;
242 }
243
244 return 0;
245 }
246
247 static int dns_stub_assign_sections(
248 DnsQuery *q,
249 DnsQuestion *question,
250 bool edns0_do) {
251
252 int r;
253
254 assert(q);
255 assert(question);
256
257 /* Let's assign the 'answer' RRs we collected to their respective sections in the reply datagram. We
258 * try to reproduce a section assignment similar to what the upstream DNS server responded to us. We
259 * use the DNS_ANSWER_SECTION_xyz flags to match things up, which is where the original upstream's
260 * packet section assignment is stored in the DnsAnswer object. Not all RRs in the 'answer' objects
261 * come with section information though (for example, because they were synthesized locally, and not
262 * from a DNS packet). To deal with that we extend the assignment logic a bit: anything from the
263 * 'answer' object that directly matches the original question is always put in the ANSWER section,
264 * regardless if it carries section info, or what that section info says. Then, anything from the
265 * 'answer' objects that is from the ANSWER or AUTHORITY sections, and wasn't already added to the
266 * ANSWER section is placed in the AUTHORITY section. Everything else from either object is added to
267 * the ADDITIONAL section. */
268
269 /* Include all RRs that directly answer the question in the answer section */
270 r = dns_stub_collect_answer_by_question(
271 &q->reply_answer,
272 q->answer,
273 question,
274 edns0_do);
275 if (r < 0)
276 return r;
277
278 /* Include all RRs that originate from the authority sections, and aren't already listed in the
279 * answer section, in the authority section */
280 r = dns_stub_collect_answer_by_section(
281 &q->reply_authoritative,
282 q->answer,
283 DNS_ANSWER_SECTION_AUTHORITY,
284 q->reply_answer, NULL,
285 edns0_do);
286 if (r < 0)
287 return r;
288
289 /* Include all RRs that originate from the answer or additional sections in the additional section
290 * (except if already listed in the other two sections). Also add all RRs with no section marking. */
291 r = dns_stub_collect_answer_by_section(
292 &q->reply_additional,
293 q->answer,
294 DNS_ANSWER_SECTION_ANSWER,
295 q->reply_answer, q->reply_authoritative,
296 edns0_do);
297 if (r < 0)
298 return r;
299 r = dns_stub_collect_answer_by_section(
300 &q->reply_additional,
301 q->answer,
302 DNS_ANSWER_SECTION_ADDITIONAL,
303 q->reply_answer, q->reply_authoritative,
304 edns0_do);
305 if (r < 0)
306 return r;
307 r = dns_stub_collect_answer_by_section(
308 &q->reply_additional,
309 q->answer,
310 0,
311 q->reply_answer, q->reply_authoritative,
312 edns0_do);
313 if (r < 0)
314 return r;
315
316 return 0;
317 }
318
319 static int dns_stub_make_reply_packet(
320 DnsPacket **ret,
321 size_t max_size,
322 DnsQuestion *q,
323 bool *ret_truncated) {
324
325 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
326 bool tc = false;
327 int r;
328
329 assert(ret);
330
331 r = dns_packet_new(&p, DNS_PROTOCOL_DNS, 0, max_size);
332 if (r < 0)
333 return r;
334
335 r = dns_packet_append_question(p, q);
336 if (r == -EMSGSIZE)
337 tc = true;
338 else if (r < 0)
339 return r;
340
341 if (ret_truncated)
342 *ret_truncated = tc;
343 else if (tc)
344 return -EMSGSIZE;
345
346 DNS_PACKET_HEADER(p)->qdcount = htobe16(dns_question_size(q));
347
348 *ret = TAKE_PTR(p);
349 return 0;
350 }
351
352 static int dns_stub_add_reply_packet_body(
353 DnsPacket *p,
354 DnsAnswer *answer,
355 DnsAnswer *authoritative,
356 DnsAnswer *additional,
357 bool edns0_do, /* Client expects DNSSEC RRs? */
358 bool *truncated) {
359
360 unsigned n_answer = 0, n_authoritative = 0, n_additional = 0;
361 bool tc = false;
362 int r;
363
364 assert(p);
365
366 /* Add the three sections to the packet. If the answer section doesn't fit we'll signal that as
367 * truncation. If the authoritative section doesn't fit and we are in DNSSEC mode, also signal
368 * truncation. In all other cases where things don't fit don't signal truncation, as for those cases
369 * the dropped RRs should not be essential. */
370
371 r = dns_packet_append_answer(p, answer, &n_answer);
372 if (r == -EMSGSIZE)
373 tc = true;
374 else if (r < 0)
375 return r;
376 else {
377 r = dns_packet_append_answer(p, authoritative, &n_authoritative);
378 if (r == -EMSGSIZE) {
379 if (edns0_do)
380 tc = true;
381 } else if (r < 0)
382 return r;
383 else {
384 r = dns_packet_append_answer(p, additional, &n_additional);
385 if (r < 0 && r != -EMSGSIZE)
386 return r;
387 }
388 }
389
390 if (tc) {
391 if (!truncated)
392 return -EMSGSIZE;
393
394 *truncated = true;
395 }
396
397 DNS_PACKET_HEADER(p)->ancount = htobe16(n_answer);
398 DNS_PACKET_HEADER(p)->nscount = htobe16(n_authoritative);
399 DNS_PACKET_HEADER(p)->arcount = htobe16(n_additional);
400 return 0;
401 }
402
403 static const char *nsid_string(void) {
404 static char buffer[SD_ID128_STRING_MAX + STRLEN(".resolved.systemd.io")] = "";
405 sd_id128_t id;
406 int r;
407
408 /* Let's generate a string that we can use as RFC5001 NSID identifier. The string shall identify us
409 * as systemd-resolved, and return a different string for each resolved instance without leaking host
410 * identity. Hence let's use a fixed suffix that identifies resolved, and a prefix generated from the
411 * machine ID but from which the machine ID cannot be determined.
412 *
413 * Clients can use this to determine whether an answer is originating locally or is proxied from
414 * upstream. */
415
416 if (!isempty(buffer))
417 return buffer;
418
419 r = sd_id128_get_machine_app_specific(
420 SD_ID128_MAKE(ed,d3,12,5d,16,b9,41,f9,a1,49,5f,ab,15,62,ab,27),
421 &id);
422 if (r < 0) {
423 log_debug_errno(r, "Failed to determine machine ID, ignoring: %m");
424 return NULL;
425 }
426
427 xsprintf(buffer, SD_ID128_FORMAT_STR ".resolved.systemd.io", SD_ID128_FORMAT_VAL(id));
428 return buffer;
429 }
430
431 static int dns_stub_finish_reply_packet(
432 DnsPacket *p,
433 uint16_t id,
434 int rcode,
435 bool tc, /* set the Truncated bit? */
436 bool aa, /* set the Authoritative Answer bit? */
437 bool rd, /* set the Recursion Desired bit? */
438 bool add_opt, /* add an OPT RR to this packet? */
439 bool edns0_do, /* set the EDNS0 DNSSEC OK bit? */
440 bool ad, /* set the DNSSEC authenticated data bit? */
441 bool cd, /* set the DNSSEC checking disabled bit? */
442 uint16_t max_udp_size, /* The maximum UDP datagram size to advertise to clients */
443 bool nsid) { /* whether to add NSID */
444
445 int r;
446
447 assert(p);
448
449 if (add_opt) {
450 r = dns_packet_append_opt(p, max_udp_size, edns0_do, /* include_rfc6975 = */ false, nsid ? nsid_string() : NULL, rcode, NULL);
451 if (r == -EMSGSIZE) /* Hit the size limit? then indicate truncation */
452 tc = true;
453 else if (r < 0)
454 return r;
455 } else {
456 /* If the client can't to EDNS0, don't do DO either */
457 edns0_do = false;
458
459 /* If we don't do EDNS, clamp the rcode to 4 bit */
460 if (rcode > 0xF)
461 rcode = DNS_RCODE_SERVFAIL;
462 }
463
464 /* Don't set the CD bit unless DO is on, too */
465 if (!edns0_do)
466 cd = false;
467
468 /* Note that we allow the AD bit to be set even if client didn't signal DO, as per RFC 6840, section
469 * 5.7 */
470
471 DNS_PACKET_HEADER(p)->id = id;
472
473 DNS_PACKET_HEADER(p)->flags = htobe16(DNS_PACKET_MAKE_FLAGS(
474 1 /* qr */,
475 0 /* opcode */,
476 aa /* aa */,
477 tc /* tc */,
478 rd /* rd */,
479 1 /* ra */,
480 ad /* ad */,
481 cd /* cd */,
482 rcode));
483
484 return 0;
485 }
486
487 static bool address_is_proxy(int family, const union in_addr_union *a) {
488 assert(a);
489
490 /* Returns true if the specified address is the DNS "proxy" stub, i.e. where we unconditionally enable bypass mode */
491
492 if (family != AF_INET)
493 return false;
494
495 return be32toh(a->in.s_addr) == INADDR_DNS_PROXY_STUB;
496 }
497
498 static int find_socket_fd(
499 Manager *m,
500 DnsStubListenerExtra *l,
501 int family,
502 const union in_addr_union *listen_address,
503 int type) {
504
505 assert(m);
506
507 /* Finds the right socket to use for sending. If we know the extra listener, otherwise go via the
508 * address to send from */
509 if (l)
510 return manager_dns_stub_fd_extra(m, l, type);
511
512 return manager_dns_stub_fd(m, family, listen_address, type);
513 }
514
515 static int dns_stub_send(
516 Manager *m,
517 DnsStubListenerExtra *l,
518 DnsStream *s,
519 DnsPacket *p,
520 DnsPacket *reply) {
521
522 int r;
523
524 assert(m);
525 assert(p);
526 assert(reply);
527
528 if (s)
529 r = dns_stream_write_packet(s, reply);
530 else {
531 int fd;
532
533 fd = find_socket_fd(m, l, p->family, &p->sender, SOCK_DGRAM);
534 if (fd < 0)
535 return fd;
536
537 /* Note that it is essential here that we explicitly choose the source IP address for this
538 * packet. This is because otherwise the kernel will choose it automatically based on the
539 * routing table and will thus pick 127.0.0.1 rather than 127.0.0.53. */
540 r = manager_send(m,
541 fd,
542 l || address_is_proxy(p->family, &p->destination) ? p->ifindex : LOOPBACK_IFINDEX, /* force loopback iface if this is the main listener stub */
543 p->family, &p->sender, p->sender_port, &p->destination,
544 reply);
545 }
546 if (r < 0)
547 return log_debug_errno(r, "Failed to send reply packet: %m");
548
549 return 0;
550 }
551
552 static int dns_stub_reply_with_edns0_do(DnsQuery *q) {
553 assert(q);
554
555 /* Reply with DNSSEC DO set? Only if client supports it; and we did any DNSSEC verification
556 * ourselves, or consider the data fully authenticated because we generated it locally, or the client
557 * set cd */
558
559 return DNS_PACKET_DO(q->request_packet) &&
560 (q->answer_dnssec_result >= 0 || /* we did proper DNSSEC validation … */
561 dns_query_fully_authenticated(q) || /* … or we considered it authentic otherwise … */
562 DNS_PACKET_CD(q->request_packet)); /* … or client set CD */
563 }
564
565 static void dns_stub_suppress_duplicate_section_rrs(DnsQuery *q) {
566 /* If we follow a CNAME/DNAME chain we might end up populating our sections with redundant RRs
567 * because we built up the sections from multiple reply packets (one from each CNAME/DNAME chain
568 * element). E.g. it could be that an RR that was included in the first reply's additional section
569 * ends up being relevant as main answer in a subsequent reply in the chain. Let's clean this up, and
570 * remove everything in the "higher priority" sections from the "lower priority" sections.
571 *
572 * Note that this removal matches by RR keys instead of the full RRs. This is because RRsets should
573 * always end up in one section fully or not at all, but never be split among sections.
574 *
575 * Specifically: we remove ANSWER section RRs from the AUTHORITATIVE and ADDITIONAL sections, as well
576 * as AUTHORITATIVE section RRs from the ADDITIONAL section. */
577
578 dns_answer_remove_by_answer_keys(&q->reply_authoritative, q->reply_answer);
579 dns_answer_remove_by_answer_keys(&q->reply_additional, q->reply_answer);
580 dns_answer_remove_by_answer_keys(&q->reply_additional, q->reply_authoritative);
581 }
582
583 static int dns_stub_send_reply(
584 DnsQuery *q,
585 int rcode) {
586
587 _cleanup_(dns_packet_unrefp) DnsPacket *reply = NULL;
588 bool truncated, edns0_do;
589 int r;
590
591 assert(q);
592
593 edns0_do = dns_stub_reply_with_edns0_do(q); /* let's check if we shall reply with EDNS0 DO? */
594
595 r = dns_stub_make_reply_packet(
596 &reply,
597 DNS_PACKET_PAYLOAD_SIZE_MAX(q->request_packet),
598 q->request_packet->question,
599 &truncated);
600 if (r < 0)
601 return log_debug_errno(r, "Failed to build reply packet: %m");
602
603 dns_stub_suppress_duplicate_section_rrs(q);
604
605 r = dns_stub_add_reply_packet_body(
606 reply,
607 q->reply_answer,
608 q->reply_authoritative,
609 q->reply_additional,
610 edns0_do,
611 &truncated);
612 if (r < 0)
613 return log_debug_errno(r, "Failed to append reply packet body: %m");
614
615 r = dns_stub_finish_reply_packet(
616 reply,
617 DNS_PACKET_ID(q->request_packet),
618 rcode,
619 truncated,
620 dns_query_fully_authoritative(q),
621 DNS_PACKET_RD(q->request_packet),
622 !!q->request_packet->opt,
623 edns0_do,
624 (DNS_PACKET_AD(q->request_packet) || DNS_PACKET_DO(q->request_packet)) && dns_query_fully_authenticated(q),
625 DNS_PACKET_CD(q->request_packet),
626 q->stub_listener_extra ? ADVERTISE_EXTRA_DATAGRAM_SIZE_MAX : ADVERTISE_DATAGRAM_SIZE_MAX,
627 dns_packet_has_nsid_request(q->request_packet) > 0 && !q->stub_listener_extra);
628 if (r < 0)
629 return log_debug_errno(r, "Failed to build failure packet: %m");
630
631 return dns_stub_send(q->manager, q->stub_listener_extra, q->request_stream, q->request_packet, reply);
632 }
633
634 static int dns_stub_send_failure(
635 Manager *m,
636 DnsStubListenerExtra *l,
637 DnsStream *s,
638 DnsPacket *p,
639 int rcode,
640 bool authenticated) {
641
642 _cleanup_(dns_packet_unrefp) DnsPacket *reply = NULL;
643 bool truncated;
644 int r;
645
646 assert(m);
647 assert(p);
648
649 r = dns_stub_make_reply_packet(
650 &reply,
651 DNS_PACKET_PAYLOAD_SIZE_MAX(p),
652 p->question,
653 &truncated);
654 if (r < 0)
655 return log_debug_errno(r, "Failed to make failure packet: %m");
656
657 r = dns_stub_finish_reply_packet(
658 reply,
659 DNS_PACKET_ID(p),
660 rcode,
661 truncated,
662 false,
663 DNS_PACKET_RD(p),
664 !!p->opt,
665 DNS_PACKET_DO(p),
666 (DNS_PACKET_AD(p) || DNS_PACKET_DO(p)) && authenticated,
667 DNS_PACKET_CD(p),
668 l ? ADVERTISE_EXTRA_DATAGRAM_SIZE_MAX : ADVERTISE_DATAGRAM_SIZE_MAX,
669 dns_packet_has_nsid_request(p) > 0 && !l);
670 if (r < 0)
671 return log_debug_errno(r, "Failed to build failure packet: %m");
672
673 return dns_stub_send(m, l, s, p, reply);
674 }
675
676 static int dns_stub_patch_bypass_reply_packet(
677 DnsPacket **ret, /* Where to place the patched packet */
678 DnsPacket *original, /* The packet to patch */
679 DnsPacket *request) { /* The packet the patched packet shall look like a reply to */
680 _cleanup_(dns_packet_unrefp) DnsPacket *c = NULL;
681 int r;
682
683 assert(ret);
684 assert(original);
685 assert(request);
686
687 r = dns_packet_dup(&c, original);
688 if (r < 0)
689 return r;
690
691 /* Extract the packet, so that we know where the OPT field is */
692 r = dns_packet_extract(c);
693 if (r < 0)
694 return r;
695
696 /* Copy over the original client request ID, so that we can make the upstream query look like our own reply. */
697 DNS_PACKET_HEADER(c)->id = DNS_PACKET_HEADER(request)->id;
698
699 /* Patch in our own maximum datagram size, if EDNS0 was on */
700 r = dns_packet_patch_max_udp_size(c, ADVERTISE_DATAGRAM_SIZE_MAX);
701 if (r < 0)
702 return r;
703
704 /* Lower all TTLs by the time passed since we received the datagram. */
705 if (timestamp_is_set(original->timestamp)) {
706 r = dns_packet_patch_ttls(c, original->timestamp);
707 if (r < 0)
708 return r;
709 }
710
711 /* Our upstream connection might have supported larger DNS requests than our downstream one, hence
712 * set the TC bit if our reply is larger than what the client supports, and truncate. */
713 if (c->size > DNS_PACKET_PAYLOAD_SIZE_MAX(request)) {
714 log_debug("Artificially truncating stub response, as advertised size of client is smaller than upstream one.");
715 dns_packet_truncate(c, DNS_PACKET_PAYLOAD_SIZE_MAX(request));
716 DNS_PACKET_HEADER(c)->flags = htobe16(be16toh(DNS_PACKET_HEADER(c)->flags) | DNS_PACKET_FLAG_TC);
717 }
718
719 *ret = TAKE_PTR(c);
720 return 0;
721 }
722
723 static void dns_stub_query_complete(DnsQuery *q) {
724 int r;
725
726 assert(q);
727 assert(q->request_packet);
728
729 if (q->question_bypass) {
730 /* This is a bypass reply. If so, let's propagate the upstream packet, if we have it and it
731 * is regular DNS. (We can't do this if the upstream packet is LLMNR or mDNS, since the
732 * packets are not 100% compatible.) */
733
734 if (q->answer_full_packet &&
735 q->answer_full_packet->protocol == DNS_PROTOCOL_DNS) {
736 _cleanup_(dns_packet_unrefp) DnsPacket *reply = NULL;
737
738 r = dns_stub_patch_bypass_reply_packet(&reply, q->answer_full_packet, q->request_packet);
739 if (r < 0)
740 log_debug_errno(r, "Failed to patch bypass reply packet: %m");
741 else
742 (void) dns_stub_send(q->manager, q->stub_listener_extra, q->request_stream, q->request_packet, reply);
743
744 dns_query_free(q);
745 return;
746 }
747 }
748
749 /* Take all data from the current reply, and merge it into the three reply sections we are building
750 * up. We do this before processing CNAME redirects, so that we gradually build up our sections, and
751 * and keep adding all RRs in the CNAME chain. */
752 r = dns_stub_assign_sections(
753 q,
754 dns_query_question_for_protocol(q, DNS_PROTOCOL_DNS),
755 dns_stub_reply_with_edns0_do(q));
756 if (r < 0) {
757 log_debug_errno(r, "Failed to assign sections: %m");
758 dns_query_free(q);
759 return;
760 }
761
762 switch (q->state) {
763
764 case DNS_TRANSACTION_SUCCESS: {
765 bool first = true;
766
767 for (;;) {
768 int cname_result;
769
770 cname_result = dns_query_process_cname_one(q);
771 if (cname_result == -ELOOP) { /* CNAME loop, let's send what we already have */
772 log_debug_errno(r, "Detected CNAME loop, returning what we already have.");
773 (void) dns_stub_send_reply(q, q->answer_rcode);
774 break;
775 }
776 if (cname_result < 0) {
777 log_debug_errno(cname_result, "Failed to process CNAME: %m");
778 break;
779 }
780
781 if (cname_result == DNS_QUERY_NOMATCH) {
782 /* This answer doesn't contain any RR that would answer our question
783 * positively, i.e. neither directly nor via CNAME. */
784
785 if (first) /* We never followed a CNAME and the answer doesn't match our
786 * question at all? Then this is final, the empty answer is the
787 * answer. */
788 break;
789
790 /* Otherwise, we already followed a CNAME once within this packet, and the
791 * packet doesn't answer our question. In that case let's restart the query,
792 * now with the redirected question. We'll */
793 r = dns_query_go(q);
794 if (r < 0)
795 log_debug_errno(r, "Failed to restart query: %m");
796
797 return;
798 }
799
800 r = dns_stub_assign_sections(
801 q,
802 dns_query_question_for_protocol(q, DNS_PROTOCOL_DNS),
803 dns_stub_reply_with_edns0_do(q));
804 if (r < 0) {
805 log_debug_errno(r, "Failed to assign sections: %m");
806 dns_query_free(q);
807 return;
808 }
809
810 if (cname_result == DNS_QUERY_MATCH) /* A match? Then we are done, let's return what we got */
811 break;
812
813 /* We followed a CNAME. and collected the RRs that answer the redirected question
814 * successfully. Let's not try to do this again. */
815 assert(cname_result == DNS_QUERY_CNAME);
816 first = false;
817 }
818
819 _fallthrough_;
820 }
821
822 case DNS_TRANSACTION_RCODE_FAILURE:
823 (void) dns_stub_send_reply(q, q->answer_rcode);
824 break;
825
826 case DNS_TRANSACTION_NOT_FOUND:
827 (void) dns_stub_send_reply(q, DNS_RCODE_NXDOMAIN);
828 break;
829
830 case DNS_TRANSACTION_TIMEOUT:
831 case DNS_TRANSACTION_ATTEMPTS_MAX_REACHED:
832 /* Propagate a timeout as a no packet, i.e. that the client also gets a timeout */
833 break;
834
835 case DNS_TRANSACTION_NO_SERVERS:
836 case DNS_TRANSACTION_INVALID_REPLY:
837 case DNS_TRANSACTION_ERRNO:
838 case DNS_TRANSACTION_ABORTED:
839 case DNS_TRANSACTION_DNSSEC_FAILED:
840 case DNS_TRANSACTION_NO_TRUST_ANCHOR:
841 case DNS_TRANSACTION_RR_TYPE_UNSUPPORTED:
842 case DNS_TRANSACTION_NETWORK_DOWN:
843 case DNS_TRANSACTION_NO_SOURCE:
844 case DNS_TRANSACTION_STUB_LOOP:
845 (void) dns_stub_send_reply(q, DNS_RCODE_SERVFAIL);
846 break;
847
848 case DNS_TRANSACTION_NULL:
849 case DNS_TRANSACTION_PENDING:
850 case DNS_TRANSACTION_VALIDATING:
851 default:
852 assert_not_reached();
853 }
854
855 dns_query_free(q);
856 }
857
858 static int dns_stub_stream_complete(DnsStream *s, int error) {
859 assert(s);
860
861 log_debug_errno(error, "DNS TCP connection terminated, destroying queries: %m");
862
863 for (;;) {
864 DnsQuery *q;
865
866 q = set_first(s->queries);
867 if (!q)
868 break;
869
870 dns_query_free(q);
871 }
872
873 /* This drops the implicit ref we keep around since it was allocated, as incoming stub connections
874 * should be kept as long as the client wants to. */
875 dns_stream_unref(s);
876 return 0;
877 }
878
879 static void dns_stub_process_query(Manager *m, DnsStubListenerExtra *l, DnsStream *s, DnsPacket *p) {
880 uint64_t protocol_flags = SD_RESOLVED_PROTOCOLS_ALL;
881 _cleanup_(dns_query_freep) DnsQuery *q = NULL;
882 Hashmap **queries_by_packet;
883 DnsQuery *existing;
884 bool bypass = false;
885 int r;
886
887 assert(m);
888 assert(p);
889 assert(p->protocol == DNS_PROTOCOL_DNS);
890
891 if (!l && /* l == NULL if this is the main stub */
892 !address_is_proxy(p->family, &p->destination) && /* don't restrict needlessly for 127.0.0.54 */
893 (in_addr_is_localhost(p->family, &p->sender) <= 0 ||
894 in_addr_is_localhost(p->family, &p->destination) <= 0)) {
895 log_warning("Got packet on unexpected (i.e. non-localhost) IP range, ignoring.");
896 return;
897 }
898
899 if (manager_packet_from_our_transaction(m, p)) {
900 log_debug("Got our own packet looped back, ignoring.");
901 return;
902 }
903
904 queries_by_packet = l ? &l->queries_by_packet : &m->stub_queries_by_packet;
905 existing = hashmap_get(*queries_by_packet, p);
906 if (existing && dns_packet_equal(existing->request_packet, p)) {
907 log_debug("Got repeat packet from client, ignoring.");
908 return;
909 }
910
911 r = dns_packet_extract(p);
912 if (r < 0) {
913 log_debug_errno(r, "Failed to extract resources from incoming packet, ignoring packet: %m");
914 dns_stub_send_failure(m, l, s, p, DNS_RCODE_FORMERR, false);
915 return;
916 }
917
918 if (!DNS_PACKET_VERSION_SUPPORTED(p)) {
919 log_debug("Got EDNS OPT field with unsupported version number.");
920 dns_stub_send_failure(m, l, s, p, DNS_RCODE_BADVERS, false);
921 return;
922 }
923
924 if (dns_type_is_obsolete(dns_question_first_key(p->question)->type)) {
925 log_debug("Got message with obsolete key type, refusing.");
926 dns_stub_send_failure(m, l, s, p, DNS_RCODE_REFUSED, false);
927 return;
928 }
929
930 if (dns_type_is_zone_transer(dns_question_first_key(p->question)->type)) {
931 log_debug("Got request for zone transfer, refusing.");
932 dns_stub_send_failure(m, l, s, p, DNS_RCODE_REFUSED, false);
933 return;
934 }
935
936 if (!DNS_PACKET_RD(p)) {
937 /* If the "rd" bit is off (i.e. recursion was not requested), then refuse operation */
938 log_debug("Got request with recursion disabled, refusing.");
939 dns_stub_send_failure(m, l, s, p, DNS_RCODE_REFUSED, false);
940 return;
941 }
942
943 r = hashmap_ensure_allocated(queries_by_packet, &stub_packet_hash_ops);
944 if (r < 0) {
945 log_oom();
946 return;
947 }
948
949 if (address_is_proxy(p->family, &p->destination)) {
950 _cleanup_free_ char *dipa = NULL;
951
952 r = in_addr_to_string(p->family, &p->destination, &dipa);
953 if (r < 0)
954 return (void) log_error_errno(r, "Failed to format destination address: %m");
955
956 log_debug("Got request to DNS proxy address 127.0.0.54, enabling bypass logic.");
957 bypass = true;
958 protocol_flags = SD_RESOLVED_DNS|SD_RESOLVED_NO_ZONE; /* Turn off mDNS/LLMNR for proxy stub. */
959 } else if ((DNS_PACKET_DO(p) && DNS_PACKET_CD(p))) {
960 log_debug("Got request with DNSSEC checking disabled, enabling bypass logic.");
961 bypass = true;
962 }
963
964 if (bypass)
965 r = dns_query_new(m, &q, NULL, NULL, p, 0,
966 protocol_flags|
967 SD_RESOLVED_NO_CNAME|
968 SD_RESOLVED_NO_SEARCH|
969 SD_RESOLVED_NO_VALIDATE|
970 SD_RESOLVED_REQUIRE_PRIMARY|
971 SD_RESOLVED_CLAMP_TTL);
972 else
973 r = dns_query_new(m, &q, p->question, p->question, NULL, 0,
974 protocol_flags|
975 SD_RESOLVED_NO_SEARCH|
976 (DNS_PACKET_DO(p) ? SD_RESOLVED_REQUIRE_PRIMARY : 0)|
977 SD_RESOLVED_CLAMP_TTL);
978 if (r < 0) {
979 log_error_errno(r, "Failed to generate query object: %m");
980 dns_stub_send_failure(m, l, s, p, DNS_RCODE_SERVFAIL, false);
981 return;
982 }
983
984 q->request_packet = dns_packet_ref(p);
985 q->request_stream = dns_stream_ref(s); /* make sure the stream stays around until we can send a reply through it */
986 q->stub_listener_extra = l;
987 q->complete = dns_stub_query_complete;
988
989 if (s) {
990 /* Remember which queries belong to this stream, so that we can cancel them when the stream
991 * is disconnected early */
992
993 r = set_ensure_put(&s->queries, NULL, q);
994 if (r < 0) {
995 log_oom();
996 return;
997 }
998 assert(r > 0);
999 }
1000
1001 /* Add the query to the hash table we use to determine repeat packets now. We don't care about
1002 * failures here, since in the worst case we'll not recognize duplicate incoming requests, which
1003 * isn't particularly bad. */
1004 (void) hashmap_put(*queries_by_packet, q->request_packet, q);
1005
1006 r = dns_query_go(q);
1007 if (r < 0) {
1008 log_error_errno(r, "Failed to start query: %m");
1009 dns_stub_send_failure(m, l, s, p, DNS_RCODE_SERVFAIL, false);
1010 return;
1011 }
1012
1013 log_debug("Processing query...");
1014 TAKE_PTR(q);
1015 }
1016
1017 static int on_dns_stub_packet_internal(sd_event_source *s, int fd, uint32_t revents, Manager *m, DnsStubListenerExtra *l) {
1018 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
1019 int r;
1020
1021 r = manager_recv(m, fd, DNS_PROTOCOL_DNS, &p);
1022 if (r <= 0)
1023 return r;
1024
1025 if (dns_packet_validate_query(p) > 0) {
1026 log_debug("Got DNS stub UDP query packet for id %u", DNS_PACKET_ID(p));
1027
1028 dns_stub_process_query(m, l, NULL, p);
1029 } else
1030 log_debug("Invalid DNS stub UDP packet, ignoring.");
1031
1032 return 0;
1033 }
1034
1035 static int on_dns_stub_packet(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
1036 return on_dns_stub_packet_internal(s, fd, revents, userdata, NULL);
1037 }
1038
1039 static int on_dns_stub_packet_extra(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
1040 DnsStubListenerExtra *l = userdata;
1041
1042 assert(l);
1043
1044 return on_dns_stub_packet_internal(s, fd, revents, l->manager, l);
1045 }
1046
1047 static int on_dns_stub_stream_packet(DnsStream *s) {
1048 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
1049
1050 assert(s);
1051
1052 p = dns_stream_take_read_packet(s);
1053 assert(p);
1054
1055 if (dns_packet_validate_query(p) > 0) {
1056 log_debug("Got DNS stub TCP query packet for id %u", DNS_PACKET_ID(p));
1057
1058 dns_stub_process_query(s->manager, s->stub_listener_extra, s, p);
1059 } else
1060 log_debug("Invalid DNS stub TCP packet, ignoring.");
1061
1062 return 0;
1063 }
1064
1065 static int on_dns_stub_stream_internal(sd_event_source *s, int fd, uint32_t revents, Manager *m, DnsStubListenerExtra *l) {
1066 DnsStream *stream;
1067 int cfd, r;
1068
1069 cfd = accept4(fd, NULL, NULL, SOCK_NONBLOCK|SOCK_CLOEXEC);
1070 if (cfd < 0) {
1071 if (ERRNO_IS_ACCEPT_AGAIN(errno))
1072 return 0;
1073
1074 return -errno;
1075 }
1076
1077 r = dns_stream_new(m, &stream, DNS_STREAM_STUB, DNS_PROTOCOL_DNS, cfd, NULL, DNS_STREAM_STUB_TIMEOUT_USEC);
1078 if (r < 0) {
1079 safe_close(cfd);
1080 return r;
1081 }
1082
1083 stream->stub_listener_extra = l;
1084 stream->on_packet = on_dns_stub_stream_packet;
1085 stream->complete = dns_stub_stream_complete;
1086
1087 /* We let the reference to the stream dangle here, it will be dropped later by the complete callback. */
1088
1089 return 0;
1090 }
1091
1092 static int on_dns_stub_stream(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
1093 return on_dns_stub_stream_internal(s, fd, revents, userdata, NULL);
1094 }
1095
1096 static int on_dns_stub_stream_extra(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
1097 DnsStubListenerExtra *l = userdata;
1098
1099 assert(l);
1100 return on_dns_stub_stream_internal(s, fd, revents, l->manager, l);
1101 }
1102
1103 static int set_dns_stub_common_socket_options(int fd, int family) {
1104 int r;
1105
1106 assert(fd >= 0);
1107 assert(IN_SET(family, AF_INET, AF_INET6));
1108
1109 r = setsockopt_int(fd, SOL_SOCKET, SO_REUSEADDR, true);
1110 if (r < 0)
1111 return r;
1112
1113 r = socket_set_recvpktinfo(fd, family, true);
1114 if (r < 0)
1115 return r;
1116
1117 r = socket_set_recvttl(fd, family, true);
1118 if (r < 0)
1119 return r;
1120
1121 return 0;
1122 }
1123
1124 static int set_dns_stub_common_tcp_socket_options(int fd) {
1125 int r;
1126
1127 assert(fd >= 0);
1128
1129 r = setsockopt_int(fd, IPPROTO_TCP, TCP_FASTOPEN, 5); /* Everybody appears to pick qlen=5, let's do the same here. */
1130 if (r < 0)
1131 log_debug_errno(r, "Failed to enable TCP_FASTOPEN on TCP listening socket, ignoring: %m");
1132
1133 r = setsockopt_int(fd, IPPROTO_TCP, TCP_NODELAY, true);
1134 if (r < 0)
1135 log_debug_errno(r, "Failed to enable TCP_NODELAY mode, ignoring: %m");
1136
1137 return 0;
1138 }
1139
1140 static int manager_dns_stub_fd(
1141 Manager *m,
1142 int family,
1143 const union in_addr_union *listen_addr,
1144 int type) {
1145
1146 sd_event_source **event_source;
1147 _cleanup_close_ int fd = -1;
1148 union sockaddr_union sa;
1149 int r;
1150
1151 assert(m);
1152 assert(listen_addr);
1153
1154 if (type == SOCK_DGRAM)
1155 event_source = address_is_proxy(family, listen_addr) ? &m->dns_proxy_stub_udp_event_source : &m->dns_stub_udp_event_source;
1156 else if (type == SOCK_STREAM)
1157 event_source = address_is_proxy(family, listen_addr) ? &m->dns_proxy_stub_tcp_event_source : &m->dns_stub_tcp_event_source;
1158 else
1159 return -EPROTONOSUPPORT;
1160
1161 if (*event_source)
1162 return sd_event_source_get_io_fd(*event_source);
1163
1164 fd = socket(family, type | SOCK_CLOEXEC | SOCK_NONBLOCK, 0);
1165 if (fd < 0)
1166 return -errno;
1167
1168 r = set_dns_stub_common_socket_options(fd, family);
1169 if (r < 0)
1170 return r;
1171
1172 if (type == SOCK_STREAM) {
1173 r = set_dns_stub_common_tcp_socket_options(fd);
1174 if (r < 0)
1175 return r;
1176 }
1177
1178 /* Set slightly different socket options for the non-proxy and the proxy binding. The former we want
1179 * to be accessible only from the local host, for the latter it's OK if people use NAT redirects or
1180 * so to redirect external traffic to it. */
1181
1182 if (!address_is_proxy(family, listen_addr)) {
1183 /* Make sure no traffic from outside the local host can leak to onto this socket */
1184 r = socket_bind_to_ifindex(fd, LOOPBACK_IFINDEX);
1185 if (r < 0)
1186 return r;
1187
1188 r = socket_set_ttl(fd, family, 1);
1189 if (r < 0)
1190 return r;
1191 } else if (type == SOCK_DGRAM) {
1192 /* Turn off Path MTU Discovery for UDP, for security reasons. See socket_disable_pmtud() for
1193 * a longer discussion. (We only do this for sockets that are potentially externally
1194 * accessible, i.e. the proxy stub one. For the non-proxy one we instead set the TTL to 1,
1195 * see above, so that packets don't get routed at all.) */
1196 r = socket_disable_pmtud(fd, family);
1197 if (r < 0)
1198 log_debug_errno(r, "Failed to disable UDP PMTUD, ignoring: %m");
1199
1200 r = socket_set_recvfragsize(fd, family, true);
1201 if (r < 0)
1202 log_debug_errno(r, "Failed to enable fragment size reception, ignoring: %m");
1203 }
1204
1205 r = sockaddr_set_in_addr(&sa, family, listen_addr, 53);
1206 if (r < 0)
1207 return r;
1208
1209 if (bind(fd, &sa.sa, sizeof(sa.in)) < 0)
1210 return -errno;
1211
1212 if (type == SOCK_STREAM &&
1213 listen(fd, SOMAXCONN) < 0)
1214 return -errno;
1215
1216 r = sd_event_add_io(m->event, event_source, fd, EPOLLIN,
1217 type == SOCK_DGRAM ? on_dns_stub_packet : on_dns_stub_stream,
1218 m);
1219 if (r < 0)
1220 return r;
1221
1222 r = sd_event_source_set_io_fd_own(*event_source, true);
1223 if (r < 0)
1224 return r;
1225
1226 (void) sd_event_source_set_description(*event_source,
1227 type == SOCK_DGRAM ? "dns-stub-udp" : "dns-stub-tcp");
1228
1229 return TAKE_FD(fd);
1230 }
1231
1232 static int manager_dns_stub_fd_extra(Manager *m, DnsStubListenerExtra *l, int type) {
1233 _cleanup_free_ char *pretty = NULL;
1234 _cleanup_close_ int fd = -1;
1235 union sockaddr_union sa;
1236 int r;
1237
1238 assert(m);
1239 assert(l);
1240 assert(IN_SET(type, SOCK_DGRAM, SOCK_STREAM));
1241
1242 sd_event_source **event_source = type == SOCK_DGRAM ? &l->udp_event_source : &l->tcp_event_source;
1243 if (*event_source)
1244 return sd_event_source_get_io_fd(*event_source);
1245
1246 if (l->family == AF_INET)
1247 sa = (union sockaddr_union) {
1248 .in.sin_family = l->family,
1249 .in.sin_port = htobe16(dns_stub_listener_extra_port(l)),
1250 .in.sin_addr = l->address.in,
1251 };
1252 else
1253 sa = (union sockaddr_union) {
1254 .in6.sin6_family = l->family,
1255 .in6.sin6_port = htobe16(dns_stub_listener_extra_port(l)),
1256 .in6.sin6_addr = l->address.in6,
1257 };
1258
1259 fd = socket(l->family, type | SOCK_CLOEXEC | SOCK_NONBLOCK, 0);
1260 if (fd < 0) {
1261 r = -errno;
1262 goto fail;
1263 }
1264
1265 r = set_dns_stub_common_socket_options(fd, l->family);
1266 if (r < 0)
1267 goto fail;
1268
1269 if (type == SOCK_STREAM) {
1270 r = set_dns_stub_common_tcp_socket_options(fd);
1271 if (r < 0)
1272 goto fail;
1273 }
1274
1275 /* Do not set IP_TTL for extra DNS stub listeners, as the address may not be local and in that case
1276 * people may want ttl > 1. */
1277
1278 r = socket_set_freebind(fd, l->family, true);
1279 if (r < 0)
1280 goto fail;
1281
1282 if (type == SOCK_DGRAM) {
1283 r = socket_disable_pmtud(fd, l->family);
1284 if (r < 0)
1285 log_debug_errno(r, "Failed to disable UDP PMTUD, ignoring: %m");
1286
1287 r = socket_set_recvfragsize(fd, l->family, true);
1288 if (r < 0)
1289 log_debug_errno(r, "Failed to enable fragment size reception, ignoring: %m");
1290 }
1291
1292 r = RET_NERRNO(bind(fd, &sa.sa, SOCKADDR_LEN(sa)));
1293 if (r < 0)
1294 goto fail;
1295
1296 if (type == SOCK_STREAM &&
1297 listen(fd, SOMAXCONN) < 0) {
1298 r = -errno;
1299 goto fail;
1300 }
1301
1302 r = sd_event_add_io(m->event, event_source, fd, EPOLLIN,
1303 type == SOCK_DGRAM ? on_dns_stub_packet_extra : on_dns_stub_stream_extra,
1304 l);
1305 if (r < 0)
1306 goto fail;
1307
1308 r = sd_event_source_set_io_fd_own(*event_source, true);
1309 if (r < 0)
1310 goto fail;
1311
1312 (void) sd_event_source_set_description(*event_source,
1313 type == SOCK_DGRAM ? "dns-stub-udp-extra" : "dns-stub-tcp-extra");
1314
1315 if (DEBUG_LOGGING) {
1316 (void) in_addr_port_to_string(l->family, &l->address, l->port, &pretty);
1317 log_debug("Listening on %s socket %s.",
1318 type == SOCK_DGRAM ? "UDP" : "TCP",
1319 strnull(pretty));
1320 }
1321
1322 return TAKE_FD(fd);
1323
1324 fail:
1325 assert(r < 0);
1326 (void) in_addr_port_to_string(l->family, &l->address, l->port, &pretty);
1327 return log_warning_errno(r,
1328 r == -EADDRINUSE ? "Another process is already listening on %s socket %s: %m" :
1329 "Failed to listen on %s socket %s: %m",
1330 type == SOCK_DGRAM ? "UDP" : "TCP",
1331 strnull(pretty));
1332 }
1333
1334 int manager_dns_stub_start(Manager *m) {
1335 int r;
1336
1337 assert(m);
1338
1339 if (m->dns_stub_listener_mode == DNS_STUB_LISTENER_NO)
1340 log_debug("Not creating stub listener.");
1341 else {
1342 static const struct {
1343 uint32_t addr;
1344 int socket_type;
1345 } stub_sockets[] = {
1346 { INADDR_DNS_STUB, SOCK_DGRAM },
1347 { INADDR_DNS_STUB, SOCK_STREAM },
1348 { INADDR_DNS_PROXY_STUB, SOCK_DGRAM },
1349 { INADDR_DNS_PROXY_STUB, SOCK_STREAM },
1350 };
1351
1352 log_debug("Creating stub listener using %s.",
1353 m->dns_stub_listener_mode == DNS_STUB_LISTENER_UDP ? "UDP" :
1354 m->dns_stub_listener_mode == DNS_STUB_LISTENER_TCP ? "TCP" :
1355 "UDP/TCP");
1356
1357 for (size_t i = 0; i < ELEMENTSOF(stub_sockets); i++) {
1358 union in_addr_union a = {
1359 .in.s_addr = htobe32(stub_sockets[i].addr),
1360 };
1361
1362 if (m->dns_stub_listener_mode == DNS_STUB_LISTENER_UDP && stub_sockets[i].socket_type == SOCK_STREAM)
1363 continue;
1364 if (m->dns_stub_listener_mode == DNS_STUB_LISTENER_TCP && stub_sockets[i].socket_type == SOCK_DGRAM)
1365 continue;
1366
1367 r = manager_dns_stub_fd(m, AF_INET, &a, stub_sockets[i].socket_type);
1368 if (r < 0) {
1369 _cleanup_free_ char *busy_socket = NULL;
1370
1371 if (asprintf(&busy_socket,
1372 "%s socket " IPV4_ADDRESS_FMT_STR ":53",
1373 stub_sockets[i].socket_type == SOCK_DGRAM ? "UDP" : "TCP",
1374 IPV4_ADDRESS_FMT_VAL(a.in)) < 0)
1375 return log_oom();
1376
1377 if (IN_SET(r, -EADDRINUSE, -EPERM)) {
1378 log_warning_errno(r,
1379 r == -EADDRINUSE ? "Another process is already listening on %s.\n"
1380 "Turning off local DNS stub support." :
1381 "Failed to listen on %s: %m.\n"
1382 "Turning off local DNS stub support.",
1383 busy_socket);
1384 manager_dns_stub_stop(m);
1385 break;
1386 }
1387
1388 return log_error_errno(r, "Failed to listen on %s: %m", busy_socket);
1389 }
1390 }
1391 }
1392
1393 if (!ordered_set_isempty(m->dns_extra_stub_listeners)) {
1394 DnsStubListenerExtra *l;
1395
1396 log_debug("Creating extra stub listeners.");
1397
1398 ORDERED_SET_FOREACH(l, m->dns_extra_stub_listeners) {
1399 if (FLAGS_SET(l->mode, DNS_STUB_LISTENER_UDP))
1400 (void) manager_dns_stub_fd_extra(m, l, SOCK_DGRAM);
1401 if (FLAGS_SET(l->mode, DNS_STUB_LISTENER_TCP))
1402 (void) manager_dns_stub_fd_extra(m, l, SOCK_STREAM);
1403 }
1404 }
1405
1406 return 0;
1407 }
1408
1409 void manager_dns_stub_stop(Manager *m) {
1410 assert(m);
1411
1412 m->dns_stub_udp_event_source = sd_event_source_disable_unref(m->dns_stub_udp_event_source);
1413 m->dns_stub_tcp_event_source = sd_event_source_disable_unref(m->dns_stub_tcp_event_source);
1414 m->dns_proxy_stub_udp_event_source = sd_event_source_disable_unref(m->dns_proxy_stub_udp_event_source);
1415 m->dns_proxy_stub_tcp_event_source = sd_event_source_disable_unref(m->dns_proxy_stub_tcp_event_source);
1416 }
1417
1418 static const char* const dns_stub_listener_mode_table[_DNS_STUB_LISTENER_MODE_MAX] = {
1419 [DNS_STUB_LISTENER_NO] = "no",
1420 [DNS_STUB_LISTENER_UDP] = "udp",
1421 [DNS_STUB_LISTENER_TCP] = "tcp",
1422 [DNS_STUB_LISTENER_YES] = "yes",
1423 };
1424 DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(dns_stub_listener_mode, DnsStubListenerMode, DNS_STUB_LISTENER_YES);