]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-scope.c
resolved: extend dns_packet_append_opt() so that it can set the extended rcode
[thirdparty/systemd.git] / src / resolve / resolved-dns-scope.c
CommitLineData
74b2466e
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2014 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
ad867662
LP
20#include <netinet/tcp.h>
21
46f08bea 22#include "af-list.h"
b5efdb8a 23#include "alloc-util.h"
4ad7f276 24#include "dns-domain.h"
3ffd4af2
LP
25#include "fd-util.h"
26#include "hostname-util.h"
27#include "missing.h"
28#include "random-util.h"
74b2466e 29#include "resolved-dns-scope.h"
3ffd4af2 30#include "resolved-llmnr.h"
b4f1862d 31#include "resolved-mdns.h"
3ffd4af2
LP
32#include "socket-util.h"
33#include "strv.h"
74b2466e 34
aea2429d
LP
35#define MULTICAST_RATELIMIT_INTERVAL_USEC (1*USEC_PER_SEC)
36#define MULTICAST_RATELIMIT_BURST 1000
37
9df3ba6c
TG
38/* After how much time to repeat LLMNR requests, see RFC 4795 Section 7 */
39#define MULTICAST_RESEND_TIMEOUT_MIN_USEC (100 * USEC_PER_MSEC)
40#define MULTICAST_RESEND_TIMEOUT_MAX_USEC (1 * USEC_PER_SEC)
41
0dd25fb9 42int dns_scope_new(Manager *m, DnsScope **ret, Link *l, DnsProtocol protocol, int family) {
74b2466e
LP
43 DnsScope *s;
44
45 assert(m);
46 assert(ret);
47
48 s = new0(DnsScope, 1);
49 if (!s)
50 return -ENOMEM;
51
52 s->manager = m;
1716f6dc
LP
53 s->link = l;
54 s->protocol = protocol;
55 s->family = family;
9df3ba6c 56 s->resend_timeout = MULTICAST_RESEND_TIMEOUT_MIN_USEC;
74b2466e 57
ad6c0475
LP
58 if (protocol == DNS_PROTOCOL_DNS) {
59 /* Copy DNSSEC mode from the link if it is set there,
60 * otherwise take the manager's DNSSEC mode. Note that
61 * we copy this only at scope creation time, and do
62 * not update it from the on, even if the setting
63 * changes. */
64
65 if (l)
c69fa7e3
LP
66 s->dnssec_mode = link_get_dnssec_mode(l);
67 else
68 s->dnssec_mode = manager_get_dnssec_mode(m);
658f7f02
LP
69 } else
70 s->dnssec_mode = DNSSEC_NO;
ad6c0475 71
74b2466e
LP
72 LIST_PREPEND(scopes, m->dns_scopes, s);
73
1716f6dc 74 dns_scope_llmnr_membership(s, true);
0db4c90a 75 dns_scope_mdns_membership(s, true);
1716f6dc 76
46f08bea 77 log_debug("New scope on link %s, protocol %s, family %s", l ? l->name : "*", dns_protocol_to_string(protocol), family == AF_UNSPEC ? "*" : af_to_name(family));
1716f6dc 78
aea2429d
LP
79 /* Enforce ratelimiting for the multicast protocols */
80 RATELIMIT_INIT(s->ratelimit, MULTICAST_RATELIMIT_INTERVAL_USEC, MULTICAST_RATELIMIT_BURST);
81
74b2466e
LP
82 *ret = s;
83 return 0;
84}
85
801ad6a6 86static void dns_scope_abort_transactions(DnsScope *s) {
801ad6a6 87 assert(s);
1716f6dc 88
f9ebb22a
LP
89 while (s->transactions) {
90 DnsTransaction *t = s->transactions;
91
faa133f3
LP
92 /* Abort the transaction, but make sure it is not
93 * freed while we still look at it */
74b2466e 94
faa133f3 95 t->block_gc++;
f4e38037
LP
96 if (DNS_TRANSACTION_IS_LIVE(t->state))
97 dns_transaction_complete(t, DNS_TRANSACTION_ABORTED);
faa133f3 98 t->block_gc--;
74b2466e 99
ec2c5e43 100 dns_transaction_free(t);
74b2466e 101 }
801ad6a6
LP
102}
103
104DnsScope* dns_scope_free(DnsScope *s) {
105 DnsResourceRecord *rr;
106
107 if (!s)
108 return NULL;
109
110 log_debug("Removing scope on link %s, protocol %s, family %s", s->link ? s->link->name : "*", dns_protocol_to_string(s->protocol), s->family == AF_UNSPEC ? "*" : af_to_name(s->family));
111
112 dns_scope_llmnr_membership(s, false);
0db4c90a 113 dns_scope_mdns_membership(s, false);
801ad6a6
LP
114 dns_scope_abort_transactions(s);
115
116 while (s->query_candidates)
117 dns_query_candidate_free(s->query_candidates);
74b2466e 118
f9ebb22a 119 hashmap_free(s->transactions_by_key);
da0c630e 120
1e43061b 121 while ((rr = ordered_hashmap_steal_first(s->conflict_queue)))
a4076574
LP
122 dns_resource_record_unref(rr);
123
1e43061b 124 ordered_hashmap_free(s->conflict_queue);
a4076574
LP
125 sd_event_source_unref(s->conflict_event_source);
126
322345fd 127 dns_cache_flush(&s->cache);
623a4c97 128 dns_zone_flush(&s->zone);
322345fd 129
74b2466e 130 LIST_REMOVE(scopes, s->manager->dns_scopes, s);
74b2466e
LP
131 free(s);
132
133 return NULL;
134}
135
2c27fbca 136DnsServer *dns_scope_get_dns_server(DnsScope *s) {
74b2466e
LP
137 assert(s);
138
1716f6dc
LP
139 if (s->protocol != DNS_PROTOCOL_DNS)
140 return NULL;
141
74b2466e
LP
142 if (s->link)
143 return link_get_dns_server(s->link);
144 else
145 return manager_get_dns_server(s->manager);
146}
147
148void dns_scope_next_dns_server(DnsScope *s) {
149 assert(s);
150
1716f6dc
LP
151 if (s->protocol != DNS_PROTOCOL_DNS)
152 return;
153
74b2466e
LP
154 if (s->link)
155 link_next_dns_server(s->link);
156 else
157 manager_next_dns_server(s->manager);
158}
159
9df3ba6c
TG
160void dns_scope_packet_received(DnsScope *s, usec_t rtt) {
161 assert(s);
162
84129d46
LP
163 if (rtt <= s->max_rtt)
164 return;
165
166 s->max_rtt = rtt;
167 s->resend_timeout = MIN(MAX(MULTICAST_RESEND_TIMEOUT_MIN_USEC, s->max_rtt * 2), MULTICAST_RESEND_TIMEOUT_MAX_USEC);
9df3ba6c
TG
168}
169
170void dns_scope_packet_lost(DnsScope *s, usec_t usec) {
171 assert(s);
172
173 if (s->resend_timeout <= usec)
174 s->resend_timeout = MIN(s->resend_timeout * 2, MULTICAST_RESEND_TIMEOUT_MAX_USEC);
175}
176
519ef046 177static int dns_scope_emit_one(DnsScope *s, int fd, DnsPacket *p) {
1716f6dc
LP
178 union in_addr_union addr;
179 int ifindex = 0, r;
0dd25fb9 180 int family;
1716f6dc 181 uint32_t mtu;
74b2466e
LP
182
183 assert(s);
184 assert(p);
1716f6dc 185 assert(p->protocol == s->protocol);
ad867662
LP
186
187 if (s->link) {
1716f6dc 188 mtu = s->link->mtu;
74b2466e 189 ifindex = s->link->ifindex;
1716f6dc 190 } else
e1c95994 191 mtu = manager_find_mtu(s->manager);
74b2466e 192
106784eb 193 switch (s->protocol) {
519ef046 194
106784eb 195 case DNS_PROTOCOL_DNS:
519ef046 196 assert(fd >= 0);
9c5e12a4 197
623a4c97 198 if (DNS_PACKET_QDCOUNT(p) > 1)
15411c0c 199 return -EOPNOTSUPP;
623a4c97 200
1716f6dc
LP
201 if (p->size > DNS_PACKET_UNICAST_SIZE_MAX)
202 return -EMSGSIZE;
203
a0166609 204 if (p->size + UDP_PACKET_HEADER_SIZE > mtu)
1716f6dc
LP
205 return -EMSGSIZE;
206
72290734
TG
207 r = manager_write(s->manager, fd, p);
208 if (r < 0)
209 return r;
210
106784eb 211 break;
1716f6dc 212
106784eb 213 case DNS_PROTOCOL_LLMNR:
519ef046
LP
214 assert(fd < 0);
215
1716f6dc 216 if (DNS_PACKET_QDCOUNT(p) > 1)
15411c0c 217 return -EOPNOTSUPP;
1716f6dc 218
aea2429d
LP
219 if (!ratelimit_test(&s->ratelimit))
220 return -EBUSY;
221
1716f6dc 222 family = s->family;
1716f6dc
LP
223
224 if (family == AF_INET) {
225 addr.in = LLMNR_MULTICAST_IPV4_ADDRESS;
1716f6dc
LP
226 fd = manager_llmnr_ipv4_udp_fd(s->manager);
227 } else if (family == AF_INET6) {
228 addr.in6 = LLMNR_MULTICAST_IPV6_ADDRESS;
229 fd = manager_llmnr_ipv6_udp_fd(s->manager);
1716f6dc
LP
230 } else
231 return -EAFNOSUPPORT;
232 if (fd < 0)
233 return fd;
72290734 234
b4f1862d
DM
235 r = manager_send(s->manager, fd, ifindex, family, &addr, LLMNR_PORT, p);
236 if (r < 0)
237 return r;
238
239 break;
240
241 case DNS_PROTOCOL_MDNS:
519ef046
LP
242 assert(fd < 0);
243
b4f1862d
DM
244 if (!ratelimit_test(&s->ratelimit))
245 return -EBUSY;
246
247 family = s->family;
248
249 if (family == AF_INET) {
250 addr.in = MDNS_MULTICAST_IPV4_ADDRESS;
251 fd = manager_mdns_ipv4_fd(s->manager);
252 } else if (family == AF_INET6) {
253 addr.in6 = MDNS_MULTICAST_IPV6_ADDRESS;
254 fd = manager_mdns_ipv6_fd(s->manager);
255 } else
256 return -EAFNOSUPPORT;
257 if (fd < 0)
258 return fd;
259
260 r = manager_send(s->manager, fd, ifindex, family, &addr, MDNS_PORT, p);
72290734
TG
261 if (r < 0)
262 return r;
106784eb
DM
263
264 break;
265
266 default:
74b2466e 267 return -EAFNOSUPPORT;
106784eb 268 }
74b2466e 269
74b2466e
LP
270 return 1;
271}
272
519ef046 273int dns_scope_emit_udp(DnsScope *s, int fd, DnsPacket *p) {
80a62095
DM
274 int r;
275
276 assert(s);
277 assert(p);
278 assert(p->protocol == s->protocol);
519ef046 279 assert((s->protocol == DNS_PROTOCOL_DNS) == (fd >= 0));
80a62095
DM
280
281 do {
282 /* If there are multiple linked packets, set the TC bit in all but the last of them */
283 if (p->more) {
284 assert(p->protocol == DNS_PROTOCOL_MDNS);
261f3673 285 dns_packet_set_flags(p, true, true);
80a62095
DM
286 }
287
519ef046 288 r = dns_scope_emit_one(s, fd, p);
80a62095
DM
289 if (r < 0)
290 return r;
291
292 p = p->more;
519ef046 293 } while (p);
80a62095
DM
294
295 return 0;
296}
297
519ef046
LP
298static int dns_scope_socket(
299 DnsScope *s,
300 int type,
301 int family,
302 const union in_addr_union *address,
303 DnsServer *server,
304 uint16_t port) {
305
ad867662
LP
306 _cleanup_close_ int fd = -1;
307 union sockaddr_union sa = {};
308 socklen_t salen;
623a4c97 309 static const int one = 1;
2817157b 310 int ret, r, ifindex;
ad867662
LP
311
312 assert(s);
be808ea0 313
519ef046
LP
314 if (server) {
315 assert(family == AF_UNSPEC);
316 assert(!address);
be808ea0 317
2817157b
LP
318 ifindex = dns_server_ifindex(server);
319
519ef046
LP
320 sa.sa.sa_family = server->family;
321 if (server->family == AF_INET) {
623a4c97 322 sa.in.sin_port = htobe16(port);
519ef046 323 sa.in.sin_addr = server->address.in;
623a4c97 324 salen = sizeof(sa.in);
519ef046 325 } else if (server->family == AF_INET6) {
623a4c97 326 sa.in6.sin6_port = htobe16(port);
519ef046 327 sa.in6.sin6_addr = server->address.in6;
2817157b 328 sa.in6.sin6_scope_id = ifindex;
623a4c97
LP
329 salen = sizeof(sa.in6);
330 } else
331 return -EAFNOSUPPORT;
332 } else {
519ef046
LP
333 assert(family != AF_UNSPEC);
334 assert(address);
335
623a4c97 336 sa.sa.sa_family = family;
2817157b 337 ifindex = s->link ? s->link->ifindex : 0;
623a4c97
LP
338
339 if (family == AF_INET) {
340 sa.in.sin_port = htobe16(port);
341 sa.in.sin_addr = address->in;
342 salen = sizeof(sa.in);
343 } else if (family == AF_INET6) {
344 sa.in6.sin6_port = htobe16(port);
345 sa.in6.sin6_addr = address->in6;
2817157b 346 sa.in6.sin6_scope_id = ifindex;
623a4c97
LP
347 salen = sizeof(sa.in6);
348 } else
349 return -EAFNOSUPPORT;
350 }
ad867662 351
0db64366 352 fd = socket(sa.sa.sa_family, type|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
ad867662
LP
353 if (fd < 0)
354 return -errno;
355
0db64366
TG
356 if (type == SOCK_STREAM) {
357 r = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one));
358 if (r < 0)
359 return -errno;
360 }
623a4c97
LP
361
362 if (s->link) {
2817157b 363 be32_t ifindex_be = htobe32(ifindex);
623a4c97
LP
364
365 if (sa.sa.sa_family == AF_INET) {
2817157b 366 r = setsockopt(fd, IPPROTO_IP, IP_UNICAST_IF, &ifindex_be, sizeof(ifindex_be));
623a4c97
LP
367 if (r < 0)
368 return -errno;
369 } else if (sa.sa.sa_family == AF_INET6) {
2817157b 370 r = setsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_IF, &ifindex_be, sizeof(ifindex_be));
623a4c97
LP
371 if (r < 0)
372 return -errno;
373 }
374 }
375
376 if (s->protocol == DNS_PROTOCOL_LLMNR) {
bf3f1271 377 /* RFC 4795, section 2.5 requires the TTL to be set to 1 */
623a4c97
LP
378
379 if (sa.sa.sa_family == AF_INET) {
380 r = setsockopt(fd, IPPROTO_IP, IP_TTL, &one, sizeof(one));
381 if (r < 0)
382 return -errno;
383 } else if (sa.sa.sa_family == AF_INET6) {
384 r = setsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &one, sizeof(one));
385 if (r < 0)
386 return -errno;
387 }
388 }
ad867662
LP
389
390 r = connect(fd, &sa.sa, salen);
391 if (r < 0 && errno != EINPROGRESS)
392 return -errno;
393
394 ret = fd;
395 fd = -1;
623a4c97 396
ad867662
LP
397 return ret;
398}
399
519ef046
LP
400int dns_scope_socket_udp(DnsScope *s, DnsServer *server, uint16_t port) {
401 return dns_scope_socket(s, SOCK_DGRAM, AF_UNSPEC, NULL, server, port);
0db64366
TG
402}
403
519ef046
LP
404int dns_scope_socket_tcp(DnsScope *s, int family, const union in_addr_union *address, DnsServer *server, uint16_t port) {
405 return dns_scope_socket(s, SOCK_STREAM, family, address, server, port);
0db64366
TG
406}
407
51323288 408DnsScopeMatch dns_scope_good_domain(DnsScope *s, int ifindex, uint64_t flags, const char *domain) {
a51c1048 409 DnsSearchDomain *d;
74b2466e
LP
410
411 assert(s);
412 assert(domain);
413
28b9b764
LP
414 /* Checks if the specified domain is something to look up on
415 * this scope. Note that this accepts non-qualified hostnames,
416 * i.e. those without any search path prefixed yet. */
417
51323288
LP
418 if (ifindex != 0 && (!s->link || s->link->ifindex != ifindex))
419 return DNS_SCOPE_NO;
420
931851e8 421 if ((SD_RESOLVED_FLAGS_MAKE(s->protocol, s->family, 0) & flags) == 0)
51323288
LP
422 return DNS_SCOPE_NO;
423
78c6a153
LP
424 /* Never resolve any loopback hostname or IP address via DNS,
425 * LLMNR or mDNS. Instead, always rely on synthesized RRs for
426 * these. */
427 if (is_localhost(domain) ||
428 dns_name_endswith(domain, "127.in-addr.arpa") > 0 ||
9436e8ca
LP
429 dns_name_equal(domain, "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa") > 0)
430 return DNS_SCOPE_NO;
431
c9ad0edb
LP
432 /* Never respond to some of the domains listed in RFC6303 */
433 if (dns_name_endswith(domain, "0.in-addr.arpa") > 0 ||
434 dns_name_equal(domain, "255.255.255.255.in-addr.arpa") > 0 ||
435 dns_name_equal(domain, "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa") > 0)
436 return DNS_SCOPE_NO;
437
7bcffc2e
LP
438 /* Never respond to some of the domains listed in RFC6761 */
439 if (dns_name_endswith(domain, "invalid") > 0)
440 return DNS_SCOPE_NO;
441
801ad6a6
LP
442 /* Always honour search domains for routing queries. Note that
443 * we return DNS_SCOPE_YES here, rather than just
444 * DNS_SCOPE_MAYBE, which means wildcard scopes won't be
445 * considered anymore. */
a51c1048
LP
446 LIST_FOREACH(domains, d, dns_scope_get_search_domains(s))
447 if (dns_name_endswith(domain, d->name) > 0)
9b644bf9
LP
448 return DNS_SCOPE_YES;
449
106784eb 450 switch (s->protocol) {
801ad6a6 451
dc477e73 452 case DNS_PROTOCOL_DNS:
801ad6a6 453
28b9b764
LP
454 /* Exclude link-local IP ranges */
455 if (dns_name_endswith(domain, "254.169.in-addr.arpa") == 0 &&
c9ad0edb
LP
456 dns_name_endswith(domain, "8.e.f.ip6.arpa") == 0 &&
457 dns_name_endswith(domain, "9.e.f.ip6.arpa") == 0 &&
458 dns_name_endswith(domain, "a.e.f.ip6.arpa") == 0 &&
b43d96b0
DM
459 dns_name_endswith(domain, "b.e.f.ip6.arpa") == 0 &&
460 /* If networks use .local in their private setups, they are supposed to also add .local to their search
461 * domains, which we already checked above. Otherwise, we consider .local specific to mDNS and won't
462 * send such queries ordinary DNS servers. */
463 dns_name_endswith(domain, "local") == 0)
faa133f3 464 return DNS_SCOPE_MAYBE;
1716f6dc 465
faa133f3 466 return DNS_SCOPE_NO;
1716f6dc 467
106784eb 468 case DNS_PROTOCOL_MDNS:
78c6a153
LP
469 if ((s->family == AF_INET && dns_name_endswith(domain, "in-addr.arpa") > 0) ||
470 (s->family == AF_INET6 && dns_name_endswith(domain, "ip6.arpa") > 0) ||
471 (dns_name_endswith(domain, "local") > 0 && /* only resolve names ending in .local via mDNS */
472 dns_name_equal(domain, "local") == 0 && /* but not the single-label "local" name itself */
473 manager_is_own_hostname(s->manager, domain) <= 0)) /* never resolve the local hostname via mDNS */
d8b7e75f 474 return DNS_SCOPE_MAYBE;
74b2466e
LP
475
476 return DNS_SCOPE_NO;
74b2466e 477
106784eb 478 case DNS_PROTOCOL_LLMNR:
78c6a153
LP
479 if ((s->family == AF_INET && dns_name_endswith(domain, "in-addr.arpa") > 0) ||
480 (s->family == AF_INET6 && dns_name_endswith(domain, "ip6.arpa") > 0) ||
dc477e73 481 (dns_name_is_single_label(domain) && /* only resolve single label names via LLMNR */
78c6a153
LP
482 !is_gateway_hostname(domain) && /* don't resolve "gateway" with LLMNR, let nss-myhostname handle this */
483 manager_is_own_hostname(s->manager, domain) <= 0)) /* never resolve the local hostname via LLMNR */
1716f6dc 484 return DNS_SCOPE_MAYBE;
74b2466e 485
1716f6dc 486 return DNS_SCOPE_NO;
74b2466e 487
106784eb
DM
488 default:
489 assert_not_reached("Unknown scope protocol");
490 }
1716f6dc
LP
491}
492
011696f7
LP
493bool dns_scope_good_key(DnsScope *s, const DnsResourceKey *key) {
494 int key_family;
495
1716f6dc
LP
496 assert(s);
497 assert(key);
498
28b9b764
LP
499 /* Check if it makes sense to resolve the specified key on
500 * this scope. Note that this call assumes as fully qualified
501 * name, i.e. the search suffixes already appended. */
502
011696f7
LP
503 if (key->class != DNS_CLASS_IN)
504 return false;
505
28b9b764
LP
506 if (s->protocol == DNS_PROTOCOL_DNS) {
507
e5abebab 508 /* On classic DNS, looking up non-address RRs is always
28b9b764
LP
509 * fine. (Specifically, we want to permit looking up
510 * DNSKEY and DS records on the root and top-level
511 * domains.) */
512 if (!dns_resource_key_is_address(key))
513 return true;
514
515 /* However, we refuse to look up A and AAAA RRs on the
516 * root and single-label domains, under the assumption
517 * that those should be resolved via LLMNR or search
518 * path only, and should not be leaked onto the
519 * internet. */
1c02e7ba
ZJS
520 return !(dns_name_is_single_label(dns_resource_key_name(key)) ||
521 dns_name_is_root(dns_resource_key_name(key)));
28b9b764 522 }
1716f6dc
LP
523
524 /* On mDNS and LLMNR, send A and AAAA queries only on the
525 * respective scopes */
526
011696f7
LP
527 key_family = dns_type_to_af(key->type);
528 if (key_family < 0)
529 return true;
1716f6dc 530
011696f7 531 return key_family == s->family;
1716f6dc
LP
532}
533
0db4c90a 534static int dns_scope_multicast_membership(DnsScope *s, bool b, struct in_addr in, struct in6_addr in6) {
1716f6dc
LP
535 int fd;
536
5ba73e9b 537 assert(s);
5ba73e9b
LP
538 assert(s->link);
539
1716f6dc
LP
540 if (s->family == AF_INET) {
541 struct ip_mreqn mreqn = {
0db4c90a 542 .imr_multiaddr = in,
1716f6dc
LP
543 .imr_ifindex = s->link->ifindex,
544 };
545
546 fd = manager_llmnr_ipv4_udp_fd(s->manager);
547 if (fd < 0)
548 return fd;
549
7b4c2ee7
LP
550 /* Always first try to drop membership before we add
551 * one. This is necessary on some devices, such as
552 * veth. */
553 if (b)
dc751688 554 (void) setsockopt(fd, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreqn, sizeof(mreqn));
7b4c2ee7 555
1716f6dc
LP
556 if (setsockopt(fd, IPPROTO_IP, b ? IP_ADD_MEMBERSHIP : IP_DROP_MEMBERSHIP, &mreqn, sizeof(mreqn)) < 0)
557 return -errno;
558
559 } else if (s->family == AF_INET6) {
560 struct ipv6_mreq mreq = {
0db4c90a 561 .ipv6mr_multiaddr = in6,
1716f6dc
LP
562 .ipv6mr_interface = s->link->ifindex,
563 };
564
565 fd = manager_llmnr_ipv6_udp_fd(s->manager);
566 if (fd < 0)
567 return fd;
568
7b4c2ee7 569 if (b)
dc751688 570 (void) setsockopt(fd, IPPROTO_IPV6, IPV6_DROP_MEMBERSHIP, &mreq, sizeof(mreq));
7b4c2ee7 571
1716f6dc
LP
572 if (setsockopt(fd, IPPROTO_IPV6, b ? IPV6_ADD_MEMBERSHIP : IPV6_DROP_MEMBERSHIP, &mreq, sizeof(mreq)) < 0)
573 return -errno;
574 } else
575 return -EAFNOSUPPORT;
576
577 return 0;
74b2466e 578}
623a4c97 579
0db4c90a 580int dns_scope_llmnr_membership(DnsScope *s, bool b) {
f471bc11 581 assert(s);
0db4c90a
DM
582
583 if (s->protocol != DNS_PROTOCOL_LLMNR)
584 return 0;
585
586 return dns_scope_multicast_membership(s, b, LLMNR_MULTICAST_IPV4_ADDRESS, LLMNR_MULTICAST_IPV6_ADDRESS);
587}
588
589int dns_scope_mdns_membership(DnsScope *s, bool b) {
f471bc11 590 assert(s);
0db4c90a
DM
591
592 if (s->protocol != DNS_PROTOCOL_MDNS)
593 return 0;
594
595 return dns_scope_multicast_membership(s, b, MDNS_MULTICAST_IPV4_ADDRESS, MDNS_MULTICAST_IPV6_ADDRESS);
596}
597
ec2c5e43
LP
598static int dns_scope_make_reply_packet(
599 DnsScope *s,
600 uint16_t id,
601 int rcode,
602 DnsQuestion *q,
603 DnsAnswer *answer,
604 DnsAnswer *soa,
605 bool tentative,
606 DnsPacket **ret) {
607
623a4c97 608 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
623a4c97
LP
609 int r;
610
611 assert(s);
a4076574 612 assert(ret);
623a4c97 613
501e8eb0
LP
614 if (dns_question_isempty(q) &&
615 dns_answer_isempty(answer) &&
616 dns_answer_isempty(soa))
623a4c97
LP
617 return -EINVAL;
618
619 r = dns_packet_new(&p, s->protocol, 0);
620 if (r < 0)
621 return r;
622
623 DNS_PACKET_HEADER(p)->id = id;
ea917db9
LP
624 DNS_PACKET_HEADER(p)->flags = htobe16(DNS_PACKET_MAKE_FLAGS(
625 1 /* qr */,
626 0 /* opcode */,
627 0 /* c */,
628 0 /* tc */,
ec2c5e43 629 tentative,
ea917db9
LP
630 0 /* (ra) */,
631 0 /* (ad) */,
632 0 /* (cd) */,
633 rcode));
623a4c97 634
f471bc11
LP
635 r = dns_packet_append_question(p, q);
636 if (r < 0)
637 return r;
638 DNS_PACKET_HEADER(p)->qdcount = htobe16(dns_question_size(q));
8bf52d3d 639
f471bc11
LP
640 r = dns_packet_append_answer(p, answer);
641 if (r < 0)
642 return r;
643 DNS_PACKET_HEADER(p)->ancount = htobe16(dns_answer_size(answer));
8bf52d3d 644
f471bc11
LP
645 r = dns_packet_append_answer(p, soa);
646 if (r < 0)
647 return r;
648 DNS_PACKET_HEADER(p)->arcount = htobe16(dns_answer_size(soa));
623a4c97
LP
649
650 *ret = p;
651 p = NULL;
652
653 return 0;
654}
655
a4076574
LP
656static void dns_scope_verify_conflicts(DnsScope *s, DnsPacket *p) {
657 unsigned n;
658
659 assert(s);
660 assert(p);
661
662 if (p->question)
663 for (n = 0; n < p->question->n_keys; n++)
664 dns_zone_verify_conflicts(&s->zone, p->question->keys[n]);
665 if (p->answer)
666 for (n = 0; n < p->answer->n_rrs; n++)
78c6a153 667 dns_zone_verify_conflicts(&s->zone, p->answer->items[n].rr->key);
a4076574
LP
668}
669
623a4c97
LP
670void dns_scope_process_query(DnsScope *s, DnsStream *stream, DnsPacket *p) {
671 _cleanup_(dns_packet_unrefp) DnsPacket *reply = NULL;
8bf52d3d 672 _cleanup_(dns_answer_unrefp) DnsAnswer *answer = NULL, *soa = NULL;
5032b16d 673 DnsResourceKey *key = NULL;
ec2c5e43 674 bool tentative = false;
623a4c97
LP
675 int r, fd;
676
677 assert(s);
678 assert(p);
679
680 if (p->protocol != DNS_PROTOCOL_LLMNR)
681 return;
682
2442b93d
LP
683 if (p->ipproto == IPPROTO_UDP) {
684 /* Don't accept UDP queries directed to anything but
685 * the LLMNR multicast addresses. See RFC 4795,
d076c6f9 686 * section 2.5. */
2442b93d
LP
687
688 if (p->family == AF_INET && !in_addr_equal(AF_INET, &p->destination, (union in_addr_union*) &LLMNR_MULTICAST_IPV4_ADDRESS))
689 return;
690
691 if (p->family == AF_INET6 && !in_addr_equal(AF_INET6, &p->destination, (union in_addr_union*) &LLMNR_MULTICAST_IPV6_ADDRESS))
692 return;
693 }
694
623a4c97
LP
695 r = dns_packet_extract(p);
696 if (r < 0) {
da927ba9 697 log_debug_errno(r, "Failed to extract resources from incoming packet: %m");
623a4c97
LP
698 return;
699 }
700
8b757a38 701 if (DNS_PACKET_LLMNR_C(p)) {
a4076574
LP
702 /* Somebody notified us about a possible conflict */
703 dns_scope_verify_conflicts(s, p);
ea917db9
LP
704 return;
705 }
706
501e8eb0 707 assert(dns_question_size(p->question) == 1);
5032b16d
LP
708 key = p->question->keys[0];
709
97ebebbc 710 r = dns_zone_lookup(&s->zone, key, 0, &answer, &soa, &tentative);
623a4c97 711 if (r < 0) {
da927ba9 712 log_debug_errno(r, "Failed to lookup key: %m");
623a4c97
LP
713 return;
714 }
715 if (r == 0)
716 return;
717
fcf57f9c
LP
718 if (answer)
719 dns_answer_order_by_scope(answer, in_addr_is_link_local(p->family, &p->sender) > 0);
af93291c 720
ec2c5e43 721 r = dns_scope_make_reply_packet(s, DNS_PACKET_ID(p), DNS_RCODE_SUCCESS, p->question, answer, soa, tentative, &reply);
623a4c97 722 if (r < 0) {
da927ba9 723 log_debug_errno(r, "Failed to build reply packet: %m");
623a4c97
LP
724 return;
725 }
726
727 if (stream)
728 r = dns_stream_write_packet(stream, reply);
729 else {
aea2429d
LP
730 if (!ratelimit_test(&s->ratelimit))
731 return;
732
623a4c97
LP
733 if (p->family == AF_INET)
734 fd = manager_llmnr_ipv4_udp_fd(s->manager);
735 else if (p->family == AF_INET6)
736 fd = manager_llmnr_ipv6_udp_fd(s->manager);
737 else {
738 log_debug("Unknown protocol");
739 return;
740 }
741 if (fd < 0) {
da927ba9 742 log_debug_errno(fd, "Failed to get reply socket: %m");
623a4c97
LP
743 return;
744 }
745
6e068472
LP
746 /* Note that we always immediately reply to all LLMNR
747 * requests, and do not wait any time, since we
748 * verified uniqueness for all records. Also see RFC
749 * 4795, Section 2.7 */
750
623a4c97
LP
751 r = manager_send(s->manager, fd, p->ifindex, p->family, &p->sender, p->sender_port, reply);
752 }
753
754 if (r < 0) {
da927ba9 755 log_debug_errno(r, "Failed to send reply packet: %m");
623a4c97
LP
756 return;
757 }
758}
ec2c5e43 759
f52e61da 760DnsTransaction *dns_scope_find_transaction(DnsScope *scope, DnsResourceKey *key, bool cache_ok) {
ec2c5e43
LP
761 DnsTransaction *t;
762
763 assert(scope);
f52e61da 764 assert(key);
ec2c5e43 765
da0c630e
LP
766 /* Try to find an ongoing transaction that is a equal to the
767 * specified question */
f9ebb22a 768 t = hashmap_get(scope->transactions_by_key, key);
da0c630e
LP
769 if (!t)
770 return NULL;
dc4d47e2 771
da0c630e
LP
772 /* Refuse reusing transactions that completed based on cached
773 * data instead of a real packet, if that's requested. */
774 if (!cache_ok &&
3bbdc31d 775 IN_SET(t->state, DNS_TRANSACTION_SUCCESS, DNS_TRANSACTION_RCODE_FAILURE) &&
c3bc53e6 776 t->answer_source != DNS_TRANSACTION_NETWORK)
da0c630e 777 return NULL;
ec2c5e43 778
da0c630e 779 return t;
ec2c5e43 780}
a4076574
LP
781
782static int dns_scope_make_conflict_packet(
783 DnsScope *s,
784 DnsResourceRecord *rr,
785 DnsPacket **ret) {
786
787 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
788 int r;
789
790 assert(s);
791 assert(rr);
792 assert(ret);
793
794 r = dns_packet_new(&p, s->protocol, 0);
795 if (r < 0)
796 return r;
797
798 DNS_PACKET_HEADER(p)->flags = htobe16(DNS_PACKET_MAKE_FLAGS(
799 0 /* qr */,
800 0 /* opcode */,
801 1 /* conflict */,
802 0 /* tc */,
803 0 /* t */,
804 0 /* (ra) */,
805 0 /* (ad) */,
806 0 /* (cd) */,
807 0));
fe2dfc8b
DM
808
809 /* For mDNS, the transaction ID should always be 0 */
810 if (s->protocol != DNS_PROTOCOL_MDNS)
811 random_bytes(&DNS_PACKET_HEADER(p)->id, sizeof(uint16_t));
812
a4076574
LP
813 DNS_PACKET_HEADER(p)->qdcount = htobe16(1);
814 DNS_PACKET_HEADER(p)->arcount = htobe16(1);
815
816 r = dns_packet_append_key(p, rr->key, NULL);
817 if (r < 0)
818 return r;
819
a8812dd7 820 r = dns_packet_append_rr(p, rr, NULL, NULL);
a4076574
LP
821 if (r < 0)
822 return r;
823
824 *ret = p;
825 p = NULL;
826
827 return 0;
828}
829
830static int on_conflict_dispatch(sd_event_source *es, usec_t usec, void *userdata) {
831 DnsScope *scope = userdata;
832 int r;
833
834 assert(es);
835 assert(scope);
836
837 scope->conflict_event_source = sd_event_source_unref(scope->conflict_event_source);
838
839 for (;;) {
840 _cleanup_(dns_resource_record_unrefp) DnsResourceRecord *rr = NULL;
841 _cleanup_(dns_packet_unrefp) DnsPacket *p = NULL;
842
1e43061b 843 rr = ordered_hashmap_steal_first(scope->conflict_queue);
a4076574
LP
844 if (!rr)
845 break;
846
847 r = dns_scope_make_conflict_packet(scope, rr, &p);
848 if (r < 0) {
da927ba9 849 log_error_errno(r, "Failed to make conflict packet: %m");
a4076574
LP
850 return 0;
851 }
852
519ef046 853 r = dns_scope_emit_udp(scope, -1, p);
a4076574 854 if (r < 0)
da927ba9 855 log_debug_errno(r, "Failed to send conflict packet: %m");
a4076574
LP
856 }
857
858 return 0;
859}
860
861int dns_scope_notify_conflict(DnsScope *scope, DnsResourceRecord *rr) {
862 usec_t jitter;
863 int r;
864
865 assert(scope);
866 assert(rr);
867
868 /* We don't send these queries immediately. Instead, we queue
869 * them, and send them after some jitter delay. */
1e43061b 870 r = ordered_hashmap_ensure_allocated(&scope->conflict_queue, &dns_resource_key_hash_ops);
a4076574
LP
871 if (r < 0) {
872 log_oom();
873 return r;
874 }
875
876 /* We only place one RR per key in the conflict
877 * messages, not all of them. That should be enough to
878 * indicate where there might be a conflict */
1e43061b 879 r = ordered_hashmap_put(scope->conflict_queue, rr->key, rr);
a4076574
LP
880 if (r == -EEXIST || r == 0)
881 return 0;
f647962d
MS
882 if (r < 0)
883 return log_debug_errno(r, "Failed to queue conflicting RR: %m");
a4076574
LP
884
885 dns_resource_record_ref(rr);
886
887 if (scope->conflict_event_source)
888 return 0;
889
890 random_bytes(&jitter, sizeof(jitter));
891 jitter %= LLMNR_JITTER_INTERVAL_USEC;
892
893 r = sd_event_add_time(scope->manager->event,
894 &scope->conflict_event_source,
895 clock_boottime_or_monotonic(),
896 now(clock_boottime_or_monotonic()) + jitter,
897 LLMNR_JITTER_INTERVAL_USEC,
898 on_conflict_dispatch, scope);
f647962d
MS
899 if (r < 0)
900 return log_debug_errno(r, "Failed to add conflict dispatch event: %m");
a4076574 901
aa4a9deb
LP
902 (void) sd_event_source_set_description(scope->conflict_event_source, "scope-conflict");
903
a4076574
LP
904 return 0;
905}
906
907void dns_scope_check_conflicts(DnsScope *scope, DnsPacket *p) {
908 unsigned i;
909 int r;
910
911 assert(scope);
912 assert(p);
913
914 if (p->protocol != DNS_PROTOCOL_LLMNR)
915 return;
916
917 if (DNS_PACKET_RRCOUNT(p) <= 0)
918 return;
919
8b757a38 920 if (DNS_PACKET_LLMNR_C(p) != 0)
a4076574
LP
921 return;
922
8b757a38 923 if (DNS_PACKET_LLMNR_T(p) != 0)
a4076574
LP
924 return;
925
926 if (manager_our_packet(scope->manager, p))
927 return;
928
929 r = dns_packet_extract(p);
930 if (r < 0) {
da927ba9 931 log_debug_errno(r, "Failed to extract packet: %m");
a4076574
LP
932 return;
933 }
934
935 log_debug("Checking for conflicts...");
936
937 for (i = 0; i < p->answer->n_rrs; i++) {
938
939 /* Check for conflicts against the local zone. If we
940 * found one, we won't check any further */
78c6a153 941 r = dns_zone_check_conflicts(&scope->zone, p->answer->items[i].rr);
a4076574
LP
942 if (r != 0)
943 continue;
944
945 /* Check for conflicts against the local cache. If so,
946 * send out an advisory query, to inform everybody */
78c6a153 947 r = dns_cache_check_conflicts(&scope->cache, p->answer->items[i].rr, p->family, &p->sender);
a4076574
LP
948 if (r <= 0)
949 continue;
950
78c6a153 951 dns_scope_notify_conflict(scope, p->answer->items[i].rr);
a4076574
LP
952 }
953}
4d506d6b
LP
954
955void dns_scope_dump(DnsScope *s, FILE *f) {
956 assert(s);
957
958 if (!f)
959 f = stdout;
960
961 fputs("[Scope protocol=", f);
962 fputs(dns_protocol_to_string(s->protocol), f);
963
964 if (s->link) {
965 fputs(" interface=", f);
966 fputs(s->link->name, f);
967 }
968
969 if (s->family != AF_UNSPEC) {
970 fputs(" family=", f);
971 fputs(af_to_name(s->family), f);
972 }
973
974 fputs("]\n", f);
975
976 if (!dns_zone_is_empty(&s->zone)) {
977 fputs("ZONE:\n", f);
978 dns_zone_dump(&s->zone, f);
979 }
980
981 if (!dns_cache_is_empty(&s->cache)) {
982 fputs("CACHE:\n", f);
983 dns_cache_dump(&s->cache, f);
984 }
985}
a51c1048
LP
986
987DnsSearchDomain *dns_scope_get_search_domains(DnsScope *s) {
801ad6a6
LP
988 assert(s);
989
a51c1048
LP
990 if (s->protocol != DNS_PROTOCOL_DNS)
991 return NULL;
992
993 if (s->link)
994 return s->link->search_domains;
995
28b9b764 996 return s->manager->search_domains;
801ad6a6
LP
997}
998
dc477e73 999bool dns_scope_name_needs_search_domain(DnsScope *s, const char *name) {
801ad6a6
LP
1000 assert(s);
1001
1002 if (s->protocol != DNS_PROTOCOL_DNS)
dc477e73 1003 return false;
801ad6a6 1004
dc477e73 1005 return dns_name_is_single_label(name);
801ad6a6 1006}
edbcc1fd
LP
1007
1008bool dns_scope_network_good(DnsScope *s) {
edbcc1fd
LP
1009 /* Checks whether the network is in good state for lookups on this scope. For mDNS/LLMNR/Classic DNS scopes
1010 * bound to links this is easy, as they don't even exist if the link isn't in a suitable state. For the global
1011 * DNS scope we check whether there are any links that are up and have an address. */
1012
1013 if (s->link)
1014 return true;
1015
011696f7 1016 return manager_routable(s->manager, AF_UNSPEC);
edbcc1fd 1017}
97ebebbc
LP
1018
1019int dns_scope_ifindex(DnsScope *s) {
1020 assert(s);
1021
1022 if (s->link)
1023 return s->link->ifindex;
1024
1025 return 0;
1026}