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