resolved-dns-scope.c revision 322345fdb9865ef2477fba8e4bdde0e1183ef505
/*-*- 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 "strv.h"
#include "socket-util.h"
#include "resolved-dns-domain.h"
#include "resolved-dns-scope.h"
DnsScope *s;
assert(m);
if (!s)
return -ENOMEM;
s->manager = m;
s->type = t;
*ret = s;
return 0;
}
if (!s)
return NULL;
while (s->transactions) {
DnsQuery *q;
q = s->transactions->query;
dns_query_finish(q);
}
dns_cache_flush(&s->cache);
free(s);
return NULL;
}
assert(s);
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->link)
link_next_dns_server(s->link);
else
}
int ifindex = 0;
int r;
assert(s);
assert(p);
srv = dns_scope_get_server(s);
if (!srv)
return -ESRCH;
if (s->link) {
return -EMSGSIZE;
} else {
if (mtu > 0) {
return -EMSGSIZE;
}
}
if (p->size > DNS_PACKET_UNICAST_SIZE_MAX)
return -EMSGSIZE;
else
return -EAFNOSUPPORT;
if (r < 0)
return r;
return 1;
}
int dns_scope_tcp_socket(DnsScope *s) {
union sockaddr_union sa = {};
int r;
assert(s);
srv = dns_scope_get_server(s);
if (!srv)
return -ESRCH;
if (s->link)
} else
return -EAFNOSUPPORT;
if (fd < 0)
return -errno;
one = 1;
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))
return DNS_SCOPE_YES;
if (dns_name_root(domain))
return DNS_SCOPE_NO;
if (is_localhost(domain))
return DNS_SCOPE_NO;
if (s->type == DNS_SCOPE_MDNS) {
return DNS_SCOPE_YES;
return DNS_SCOPE_MAYBE;
return DNS_SCOPE_NO;
}
if (s->type == DNS_SCOPE_DNS) {
return DNS_SCOPE_NO;
return DNS_SCOPE_MAYBE;
}
assert_not_reached("Unknown scope type");
}