resolved-dns-scope.c revision 75cd513ef830d8e00d0d2d6a64917fec533315db
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2014 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "missing.h"
#include "strv.h"
#include "socket-util.h"
#include "af-list.h"
#include "resolved-dns-domain.h"
#include "resolved-dns-scope.h"
DnsScope *s;
assert(m);
if (!s)
return -ENOMEM;
s->manager = m;
s->link = l;
dns_scope_llmnr_membership(s, true);
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));
*ret = s;
return 0;
}
DnsTransaction *t;
if (!s)
return NULL;
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));
dns_scope_llmnr_membership(s, false);
while ((t = s->transactions)) {
/* Abort the transaction, but make sure it is not
* freed while we still look at it */
t->block_gc++;
t->block_gc--;
}
dns_cache_flush(&s->cache);
dns_zone_flush(&s->zone);
free(s);
return NULL;
}
assert(s);
if (s->protocol != DNS_PROTOCOL_DNS)
return NULL;
if (s->link)
return link_get_dns_server(s->link);
else
return manager_get_dns_server(s->manager);
}
void dns_scope_next_dns_server(DnsScope *s) {
assert(s);
if (s->protocol != DNS_PROTOCOL_DNS)
return;
if (s->link)
link_next_dns_server(s->link);
else
}
union in_addr_union addr;
int ifindex = 0, r;
int family;
int fd;
assert(s);
assert(p);
if (s->link) {
} else
if (s->protocol == DNS_PROTOCOL_DNS) {
if (DNS_PACKET_QDCOUNT(p) > 1)
return -ENOTSUP;
srv = dns_scope_get_dns_server(s);
if (!srv)
return -ESRCH;
port = 53;
if (p->size > DNS_PACKET_UNICAST_SIZE_MAX)
return -EMSGSIZE;
return -EMSGSIZE;
else
return -EAFNOSUPPORT;
if (fd < 0)
return fd;
} else if (s->protocol == DNS_PROTOCOL_LLMNR) {
if (DNS_PACKET_QDCOUNT(p) > 1)
return -ENOTSUP;
port = 5355;
} else
return -EAFNOSUPPORT;
if (fd < 0)
return fd;
} else
return -EAFNOSUPPORT;
if (r < 0)
return r;
return 1;
}
int dns_scope_tcp_socket(DnsScope *s, int family, const union in_addr_union *address, uint16_t port) {
union sockaddr_union sa = {};
static const int one = 1;
int ret, r;
assert(s);
srv = dns_scope_get_dns_server(s);
if (!srv)
return -ESRCH;
} else
return -EAFNOSUPPORT;
} else {
} else
return -EAFNOSUPPORT;
}
if (fd < 0)
return -errno;
if (r < 0)
return -errno;
if (s->link) {
if (r < 0)
return -errno;
if (r < 0)
return -errno;
}
}
if (s->protocol == DNS_PROTOCOL_LLMNR) {
/* RFC 4795, section 2.5 requires the TTL to be set to 1 */
if (r < 0)
return -errno;
if (r < 0)
return -errno;
}
}
if (r < 0 && errno != EINPROGRESS)
return -errno;
fd = -1;
return ret;
}
char **i;
assert(s);
STRV_FOREACH(i, s->domains)
if (dns_name_endswith(domain, *i) > 0)
return DNS_SCOPE_YES;
if (dns_name_root(domain) != 0)
return DNS_SCOPE_NO;
if (is_localhost(domain))
return DNS_SCOPE_NO;
if (s->protocol == DNS_PROTOCOL_DNS) {
dns_name_single_label(domain) == 0)
return DNS_SCOPE_MAYBE;
return DNS_SCOPE_NO;
}
if (s->protocol == DNS_PROTOCOL_MDNS) {
return DNS_SCOPE_MAYBE;
return DNS_SCOPE_NO;
}
if (s->protocol == DNS_PROTOCOL_LLMNR) {
dns_name_single_label(domain) > 0)
return DNS_SCOPE_MAYBE;
return DNS_SCOPE_NO;
}
assert_not_reached("Unknown scope protocol");
}
assert(s);
if (s->protocol == DNS_PROTOCOL_DNS)
return true;
/* On mDNS and LLMNR, send A and AAAA queries only on the
* respective scopes */
return false;
return false;
return true;
}
int dns_scope_llmnr_membership(DnsScope *s, bool b) {
int fd;
};
if (fd < 0)
return fd;
/* Always first try to drop membership before we add
* one. This is necessary on some devices, such as
* veth. */
if (b)
if (setsockopt(fd, IPPROTO_IP, b ? IP_ADD_MEMBERSHIP : IP_DROP_MEMBERSHIP, &mreqn, sizeof(mreqn)) < 0)
return -errno;
};
if (fd < 0)
return fd;
if (b)
if (setsockopt(fd, IPPROTO_IPV6, b ? IPV6_ADD_MEMBERSHIP : IPV6_DROP_MEMBERSHIP, &mreq, sizeof(mreq)) < 0)
return -errno;
} else
return -EAFNOSUPPORT;
return 0;
}
assert(s);
if (s->protocol != DNS_PROTOCOL_DNS)
return 1;
if (s->link)
else
}
static int dns_scope_make_reply_packet(
DnsScope *s,
int rcode,
DnsQuestion *q,
bool tentative,
unsigned i;
int r;
assert(s);
if ((!q || q->n_keys <= 0)
return -EINVAL;
r = dns_packet_new(&p, s->protocol, 0);
if (r < 0)
return r;
1 /* qr */,
0 /* opcode */,
0 /* c */,
0 /* tc */,
0 /* (ra) */,
0 /* (ad) */,
0 /* (cd) */,
rcode));
if (q) {
for (i = 0; i < q->n_keys; i++) {
if (r < 0)
return r;
}
}
if (answer) {
if (r < 0)
return r;
}
}
if (soa) {
if (r < 0)
return r;
}
}
*ret = p;
p = NULL;
return 0;
}
bool tentative = false;
int r, fd;
assert(s);
assert(p);
if (p->protocol != DNS_PROTOCOL_LLMNR)
return;
if (p->ipproto == IPPROTO_UDP) {
/* Don't accept UDP queries directed to anything but
* the LLMNR multicast addresses. See RFC 4795,
* section 2.5.*/
if (p->family == AF_INET && !in_addr_equal(AF_INET, &p->destination, (union in_addr_union*) &LLMNR_MULTICAST_IPV4_ADDRESS))
return;
if (p->family == AF_INET6 && !in_addr_equal(AF_INET6, &p->destination, (union in_addr_union*) &LLMNR_MULTICAST_IPV6_ADDRESS))
return;
}
r = dns_packet_extract(p);
if (r < 0) {
return;
}
if (DNS_PACKET_C(p)) {
/* FIXME: Somebody notified us about a likely conflict */
return;
}
if (r < 0) {
return;
}
if (r == 0)
return;
if (answer)
r = dns_scope_make_reply_packet(s, DNS_PACKET_ID(p), DNS_RCODE_SUCCESS, p->question, answer, soa, tentative, &reply);
if (r < 0) {
return;
}
if (stream)
else {
else {
log_debug("Unknown protocol");
return;
}
if (fd < 0) {
return;
}
}
if (r < 0) {
return;
}
}
DnsTransaction *t;
/* Try to find an ongoing transaction that is a equal or a
* superset of the specified question */
return t;
return NULL;
}