version 1.1.1.4, 2021/03/17 00:56:46
|
version 1.1.1.5, 2023/09/27 11:02:07
|
Line 1
|
Line 1
|
/* dnsmasq is Copyright (c) 2000-2021 Simon Kelley | /* dnsmasq is Copyright (c) 2000-2022 Simon Kelley |
|
|
This program is free software; you can redistribute it and/or modify |
This program is free software; you can redistribute it and/or modify |
it under the terms of the GNU General Public License as published by |
it under the terms of the GNU General Public License as published by |
Line 16
|
Line 16
|
|
|
#include "dnsmasq.h" |
#include "dnsmasq.h" |
|
|
static struct frec *lookup_frec(unsigned short id, int fd, int family, void *hash); | static struct frec *get_new_frec(time_t now, struct server *serv, int force); |
static struct frec *lookup_frec_by_sender(unsigned short id, | static struct frec *lookup_frec(unsigned short id, int fd, void *hash, int *firstp, int *lastp); |
union mysockaddr *addr, | static struct frec *lookup_frec_by_query(void *hash, unsigned int flags, unsigned int flagmask); |
void *hash); | #ifdef HAVE_DNSSEC |
static struct frec *lookup_frec_by_query(void *hash, unsigned int flags); | static struct frec *lookup_frec_dnssec(char *target, int class, int flags, struct dns_header *header); |
| #endif |
|
|
static unsigned short get_id(void); |
static unsigned short get_id(void); |
static void free_frec(struct frec *f); |
static void free_frec(struct frec *f); |
|
static void query_full(time_t now, char *domain); |
|
|
|
static void return_reply(time_t now, struct frec *forward, struct dns_header *header, ssize_t n, int status); |
|
|
/* Send a UDP packet with its source address set as "source" |
/* Send a UDP packet with its source address set as "source" |
unless nowild is true, when we just send it with the kernel default */ |
unless nowild is true, when we just send it with the kernel default */ |
int send_from(int fd, int nowild, char *packet, size_t len, |
int send_from(int fd, int nowild, char *packet, size_t len, |
Line 108 int send_from(int fd, int nowild, char *packet, size_t
|
Line 112 int send_from(int fd, int nowild, char *packet, size_t
|
return 1; |
return 1; |
} |
} |
|
|
static unsigned int search_servers(time_t now, union all_addr **addrpp, unsigned int qtype, | #ifdef HAVE_CONNTRACK |
char *qdomain, int *type, char **domain, int *norebind) | static void set_outgoing_mark(struct frec *forward, int fd) |
| |
{ |
{ |
/* If the query ends in the domain in one of our servers, set | /* Copy connection mark of incoming query to outgoing connection. */ |
domain to point to that name. We find the largest match to allow both | unsigned int mark; |
domain.org and sub.domain.org to exist. */ | if (get_incoming_mark(&forward->frec_src.source, &forward->frec_src.dest, 0, &mark)) |
| setsockopt(fd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int)); |
unsigned int namelen = strlen(qdomain); | } |
unsigned int matchlen = 0; | #endif |
struct server *serv; | |
unsigned int flags = 0; | |
static union all_addr zero; | |
| |
for (serv = daemon->servers; serv; serv=serv->next) | |
if (qtype == F_DNSSECOK && !(serv->flags & SERV_DO_DNSSEC)) | |
continue; | |
/* domain matches take priority over NODOTS matches */ | |
else if ((serv->flags & SERV_FOR_NODOTS) && *type != SERV_HAS_DOMAIN && !strchr(qdomain, '.') && namelen != 0) | |
{ | |
unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6; | |
*type = SERV_FOR_NODOTS; | |
if ((serv->flags & SERV_NO_REBIND) && norebind) | |
*norebind = 1; | |
else if (serv->flags & SERV_NO_ADDR) | |
flags = F_NXDOMAIN; | |
else if (serv->flags & SERV_LITERAL_ADDRESS) | |
{ | |
/* literal address = '#' -> return all-zero address for IPv4 and IPv6 */ | |
if ((serv->flags & SERV_USE_RESOLV) && (qtype & (F_IPV6 | F_IPV4))) | |
{ | |
memset(&zero, 0, sizeof(zero)); | |
flags = qtype; | |
*addrpp = &zero; | |
} | |
else if (sflag & qtype) | |
{ | |
flags = sflag; | |
if (serv->addr.sa.sa_family == AF_INET) | |
*addrpp = (union all_addr *)&serv->addr.in.sin_addr; | |
else | |
*addrpp = (union all_addr *)&serv->addr.in6.sin6_addr; | |
} | |
else if (!flags || (flags & F_NXDOMAIN)) | |
flags = F_NOERR; | |
} | |
} | |
else if (serv->flags & SERV_HAS_DOMAIN) | |
{ | |
unsigned int domainlen = strlen(serv->domain); | |
char *matchstart = qdomain + namelen - domainlen; | |
if (namelen >= domainlen && | |
hostname_isequal(matchstart, serv->domain) && | |
(domainlen == 0 || namelen == domainlen || *(matchstart-1) == '.' )) | |
{ | |
if ((serv->flags & SERV_NO_REBIND) && norebind) | |
*norebind = 1; | |
else | |
{ | |
unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6; | |
/* implement priority rules for --address and --server for same domain. | |
--address wins if the address is for the correct AF | |
--server wins otherwise. */ | |
if (domainlen != 0 && domainlen == matchlen) | |
{ | |
if ((serv->flags & SERV_LITERAL_ADDRESS)) | |
{ | |
if (!(sflag & qtype) && flags == 0) | |
continue; | |
} | |
else | |
{ | |
if (flags & (F_IPV4 | F_IPV6)) | |
continue; | |
} | |
} | |
| |
if (domainlen >= matchlen) | |
{ | |
*type = serv->flags & (SERV_HAS_DOMAIN | SERV_USE_RESOLV | SERV_NO_REBIND | SERV_DO_DNSSEC); | |
*domain = serv->domain; | |
matchlen = domainlen; | |
if (serv->flags & SERV_NO_ADDR) | |
flags = F_NXDOMAIN; | |
else if (serv->flags & SERV_LITERAL_ADDRESS) | |
{ | |
/* literal address = '#' -> return all-zero address for IPv4 and IPv6 */ | |
if ((serv->flags & SERV_USE_RESOLV) && (qtype & (F_IPV6 | F_IPV4))) | |
{ | |
memset(&zero, 0, sizeof(zero)); | |
flags = qtype; | |
*addrpp = &zero; | |
} | |
else if (sflag & qtype) | |
{ | |
flags = sflag; | |
if (serv->addr.sa.sa_family == AF_INET) | |
*addrpp = (union all_addr *)&serv->addr.in.sin_addr; | |
else | |
*addrpp = (union all_addr *)&serv->addr.in6.sin6_addr; | |
} | |
else if (!flags || (flags & F_NXDOMAIN)) | |
flags = F_NOERR; | |
} | |
else | |
flags = 0; | |
} | |
} | |
} | |
} | |
| |
if (flags == 0 && !(qtype & (F_QUERY | F_DNSSECOK)) && | |
option_bool(OPT_NODOTS_LOCAL) && !strchr(qdomain, '.') && namelen != 0) | |
/* don't forward A or AAAA queries for simple names, except the empty name */ | |
flags = F_NOERR; | |
| |
if (flags == F_NXDOMAIN && check_for_local_domain(qdomain, now)) | |
flags = F_NOERR; | |
|
|
if (flags) | static void log_query_mysockaddr(unsigned int flags, char *name, union mysockaddr *addr, char *arg, unsigned short type) |
| { |
| if (addr->sa.sa_family == AF_INET) |
{ |
{ |
if (flags == F_NXDOMAIN || flags == F_NOERR) | if (flags & F_SERVER) |
log_query(flags | qtype | F_NEG | F_CONFIG | F_FORWARD, qdomain, NULL, NULL); | type = ntohs(addr->in.sin_port); |
else | log_query(flags | F_IPV4, name, (union all_addr *)&addr->in.sin_addr, arg, type); |
{ | |
/* handle F_IPV4 and F_IPV6 set on ANY query to 0.0.0.0/:: domain. */ | |
if (flags & F_IPV4) | |
log_query((flags | F_CONFIG | F_FORWARD) & ~F_IPV6, qdomain, *addrpp, NULL); | |
if (flags & F_IPV6) | |
log_query((flags | F_CONFIG | F_FORWARD) & ~F_IPV4, qdomain, *addrpp, NULL); | |
} | |
} |
} |
else if ((*type) & SERV_USE_RESOLV) | else |
{ |
{ |
*type = 0; /* use normal servers for this domain */ | if (flags & F_SERVER) |
*domain = NULL; | type = ntohs(addr->in6.sin6_port); |
| log_query(flags | F_IPV6, name, (union all_addr *)&addr->in6.sin6_addr, arg, type); |
} |
} |
return flags; |
|
} |
} |
|
|
|
static void server_send(struct server *server, int fd, |
|
const void *header, size_t plen, int flags) |
|
{ |
|
while (retry_send(sendto(fd, header, plen, flags, |
|
&server->addr.sa, |
|
sa_len(&server->addr)))); |
|
} |
|
|
|
static int domain_no_rebind(char *domain) |
|
{ |
|
struct rebind_domain *rbd; |
|
size_t tlen, dlen = strlen(domain); |
|
char *dots = strchr(domain, '.'); |
|
|
|
/* Match whole labels only. Empty domain matches no dots (any single label) */ |
|
for (rbd = daemon->no_rebind; rbd; rbd = rbd->next) |
|
{ |
|
if (dlen >= (tlen = strlen(rbd->domain)) && |
|
hostname_isequal(rbd->domain, &domain[dlen - tlen]) && |
|
(dlen == tlen || domain[dlen - tlen - 1] == '.')) |
|
return 1; |
|
|
|
if (tlen == 0 && !dots) |
|
return 1; |
|
} |
|
|
|
return 0; |
|
} |
|
|
static int forward_query(int udpfd, union mysockaddr *udpaddr, |
static int forward_query(int udpfd, union mysockaddr *udpaddr, |
union all_addr *dst_addr, unsigned int dst_iface, |
union all_addr *dst_addr, unsigned int dst_iface, |
struct dns_header *header, size_t plen, time_t now, | struct dns_header *header, size_t plen, char *limit, time_t now, |
struct frec *forward, int ad_reqd, int do_bit) | struct frec *forward, int ad_reqd, int do_bit, int fast_retry) |
{ |
{ |
char *domain = NULL; |
|
int type = SERV_DO_DNSSEC, norebind = 0; |
|
union all_addr *addrp = NULL; |
|
unsigned int flags = 0; |
unsigned int flags = 0; |
unsigned int fwd_flags = 0; |
unsigned int fwd_flags = 0; |
struct server *start = NULL; | int is_dnssec = forward && (forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)); |
| struct server *master; |
void *hash = hash_questions(header, plen, daemon->namebuff); |
void *hash = hash_questions(header, plen, daemon->namebuff); |
#ifdef HAVE_DNSSEC |
|
int do_dnssec = 0; |
|
#endif |
|
unsigned int gotname = extract_request(header, plen, daemon->namebuff, NULL); |
unsigned int gotname = extract_request(header, plen, daemon->namebuff, NULL); |
unsigned char *oph = find_pseudoheader(header, plen, NULL, NULL, NULL, NULL); |
unsigned char *oph = find_pseudoheader(header, plen, NULL, NULL, NULL, NULL); |
|
int old_src = 0, old_reply = 0; |
|
int first, last, start = 0; |
|
int cacheable, forwarded = 0; |
|
size_t edns0_len; |
|
unsigned char *pheader; |
|
int ede = EDE_UNSET; |
(void)do_bit; |
(void)do_bit; |
|
|
if (header->hb4 & HB4_CD) |
if (header->hb4 & HB4_CD) |
Line 278 static int forward_query(int udpfd, union mysockaddr *
|
Line 198 static int forward_query(int udpfd, union mysockaddr *
|
fwd_flags |= FREC_DO_QUESTION; |
fwd_flags |= FREC_DO_QUESTION; |
#endif |
#endif |
|
|
/* may be no servers available. */ | /* Check for retry on existing query. |
if (forward || (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, hash))) | FREC_DNSKEY and FREC_DS_QUERY are never set in flags, so the test below |
| ensures that no frec created for internal DNSSEC query can be returned here. |
| |
| Similarly FREC_NO_CACHE is never set in flags, so a query which is |
| contigent on a particular source address EDNS0 option will never be matched. */ |
| if (forward) |
{ |
{ |
/* If we didn't get an answer advertising a maximal packet in EDNS, | old_src = 1; |
fall back to 1280, which should work everywhere on IPv6. | old_reply = 1; |
If that generates an answer, it will become the new default | } |
for this server */ | else if ((forward = lookup_frec_by_query(hash, fwd_flags, |
forward->flags |= FREC_TEST_PKTSZ; | FREC_CHECKING_DISABLED | FREC_AD_QUESTION | FREC_DO_QUESTION | |
| FREC_HAS_PHEADER | FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_NO_CACHE))) |
| { |
| struct frec_src *src; |
|
|
#ifdef HAVE_DNSSEC | for (src = &forward->frec_src; src; src = src->next) |
/* If we've already got an answer to this query, but we're awaiting keys for validation, | if (src->orig_id == ntohs(header->id) && |
there's no point retrying the query, retry the key query instead...... */ | sockaddr_isequal(&src->source, udpaddr)) |
if (forward->blocking_query) | break; |
| |
| if (src) |
{ |
{ |
int fd, is_sign; | old_src = 1; |
unsigned char *pheader; | /* If a query is retried, use the log_id for the retry when logging the answer. */ |
| src->log_id = daemon->log_id; |
forward->flags &= ~FREC_TEST_PKTSZ; | |
| |
while (forward->blocking_query) | |
forward = forward->blocking_query; | |
| |
blockdata_retrieve(forward->stash, forward->stash_len, (void *)header); | |
plen = forward->stash_len; | |
| |
forward->flags |= FREC_TEST_PKTSZ; | |
if (find_pseudoheader(header, plen, NULL, &pheader, &is_sign, NULL) && !is_sign) | |
PUTSHORT(SAFE_PKTSZ, pheader); | |
| |
if (forward->sentto->addr.sa.sa_family == AF_INET) | |
log_query(F_NOEXTRA | F_DNSSEC | F_IPV4, "retry", (union all_addr *)&forward->sentto->addr.in.sin_addr, "dnssec"); | |
else | |
log_query(F_NOEXTRA | F_DNSSEC | F_IPV6, "retry", (union all_addr *)&forward->sentto->addr.in6.sin6_addr, "dnssec"); | |
| |
| |
if (forward->sentto->sfd) | |
fd = forward->sentto->sfd->fd; | |
else | |
{ | |
if (forward->sentto->addr.sa.sa_family == AF_INET6) | |
fd = forward->rfd6->fd; | |
else | |
fd = forward->rfd4->fd; | |
} | |
| |
while (retry_send(sendto(fd, (char *)header, plen, 0, | |
&forward->sentto->addr.sa, | |
sa_len(&forward->sentto->addr)))); | |
| |
return 1; | |
} |
} |
#endif | else |
| |
/* retry on existing query, send to all available servers */ | |
domain = forward->sentto->domain; | |
forward->sentto->failed_queries++; | |
if (!option_bool(OPT_ORDER)) | |
{ |
{ |
forward->forwardall = 1; | /* Existing query, but from new source, just add this |
daemon->last_server = NULL; | client to the list that will get the reply.*/ |
} | |
type = forward->sentto->flags & SERV_TYPE; | |
#ifdef HAVE_DNSSEC | |
do_dnssec = forward->sentto->flags & SERV_DO_DNSSEC; | |
#endif | |
| |
if (!(start = forward->sentto->next)) | |
start = daemon->servers; /* at end of list, recycle */ | |
header->id = htons(forward->new_id); | |
} | |
else | |
{ | |
/* Query from new source, but the same query may be in progress | |
from another source. If so, just add this client to the | |
list that will get the reply.*/ | |
| |
if (!option_bool(OPT_ADD_MAC) && !option_bool(OPT_MAC_B64) && | |
(forward = lookup_frec_by_query(hash, fwd_flags))) | |
{ | |
/* Note whine_malloc() zeros memory. */ |
/* Note whine_malloc() zeros memory. */ |
if (!daemon->free_frec_src && |
if (!daemon->free_frec_src && |
daemon->frec_src_count < daemon->ftabsize && |
daemon->frec_src_count < daemon->ftabsize && |
Line 366 static int forward_query(int udpfd, union mysockaddr *
|
Line 240 static int forward_query(int udpfd, union mysockaddr *
|
daemon->free_frec_src->next = NULL; |
daemon->free_frec_src->next = NULL; |
} |
} |
|
|
/* If we've been spammed with many duplicates, just drop the query. */ | /* If we've been spammed with many duplicates, return REFUSED. */ |
if (daemon->free_frec_src) | if (!daemon->free_frec_src) |
{ |
{ |
struct frec_src *new = daemon->free_frec_src; | query_full(now, NULL); |
daemon->free_frec_src = new->next; | /* This is tricky; if we're blasted with the same query |
new->next = forward->frec_src.next; | over and over, we'll end up taking this path each time |
forward->frec_src.next = new; | and never resetting until the frec gets deleted by |
new->orig_id = ntohs(header->id); | aging followed by the receipt of a different query. This |
new->source = *udpaddr; | is a bit of a DoS vuln. Avoid by explicitly deleting the |
new->dest = *dst_addr; | frec once it expires. */ |
new->log_id = daemon->log_id; | if (difftime(now, forward->time) >= TIMEOUT) |
new->iface = dst_iface; | free_frec(forward); |
new->fd = udpfd; | goto reply; |
} |
} |
|
|
return 1; | src = daemon->free_frec_src; |
| daemon->free_frec_src = src->next; |
| src->next = forward->frec_src.next; |
| forward->frec_src.next = src; |
| src->orig_id = ntohs(header->id); |
| src->source = *udpaddr; |
| src->dest = *dst_addr; |
| src->log_id = daemon->log_id; |
| src->iface = dst_iface; |
| src->fd = udpfd; |
| |
| /* closely spaced identical queries cannot be a try and a retry, so |
| it's safe to wait for the reply from the first without |
| forwarding the second. */ |
| if (difftime(now, forward->time) < 2) |
| return 0; |
} |
} |
| } |
if (gotname) | |
flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind); | /* new query */ |
| if (!forward) |
| { |
| /* If the query is malformed, we can't forward it because |
| we can't get a reliable hash to recognise the answer. */ |
| if (!hash) |
| { |
| flags = 0; |
| ede = EDE_INVALID_DATA; |
| goto reply; |
| } |
|
|
#ifdef HAVE_DNSSEC | if (lookup_domain(daemon->namebuff, gotname, &first, &last)) |
do_dnssec = type & SERV_DO_DNSSEC; | flags = is_local_answer(now, first, daemon->namebuff); |
#endif | else |
type &= ~SERV_DO_DNSSEC; | { |
| /* no available server. */ |
| ede = EDE_NOT_READY; |
| flags = 0; |
| } |
| |
| /* don't forward A or AAAA queries for simple names, except the empty name */ |
| if (!flags && |
| option_bool(OPT_NODOTS_LOCAL) && |
| (gotname & (F_IPV4 | F_IPV6)) && |
| !strchr(daemon->namebuff, '.') && |
| strlen(daemon->namebuff) != 0) |
| flags = check_for_local_domain(daemon->namebuff, now) ? F_NOERR : F_NXDOMAIN; |
|
|
if (daemon->servers && !flags) | /* Configured answer. */ |
forward = get_new_frec(now, NULL, NULL); | if (flags || ede == EDE_NOT_READY) |
| goto reply; |
| |
| master = daemon->serverarray[first]; |
| |
| if (!(forward = get_new_frec(now, master, 0))) |
| goto reply; |
/* table full - flags == 0, return REFUSED */ |
/* table full - flags == 0, return REFUSED */ |
|
|
if (forward) | /* Keep copy of query if we're doing fast retry. */ |
| if (daemon->fast_retry_time != 0) |
{ |
{ |
forward->frec_src.source = *udpaddr; | forward->stash = blockdata_alloc((char *)header, plen); |
forward->frec_src.orig_id = ntohs(header->id); | forward->stash_len = plen; |
forward->frec_src.dest = *dst_addr; | } |
forward->frec_src.iface = dst_iface; | |
forward->frec_src.next = NULL; | forward->frec_src.log_id = daemon->log_id; |
forward->frec_src.fd = udpfd; | forward->frec_src.source = *udpaddr; |
forward->new_id = get_id(); | forward->frec_src.orig_id = ntohs(header->id); |
memcpy(forward->hash, hash, HASH_SIZE); | forward->frec_src.dest = *dst_addr; |
forward->forwardall = 0; | forward->frec_src.iface = dst_iface; |
forward->flags = fwd_flags; | forward->frec_src.next = NULL; |
if (norebind) | forward->frec_src.fd = udpfd; |
forward->flags |= FREC_NOREBIND; | forward->new_id = get_id(); |
if (header->hb4 & HB4_CD) | memcpy(forward->hash, hash, HASH_SIZE); |
forward->flags |= FREC_CHECKING_DISABLED; | forward->forwardall = 0; |
if (ad_reqd) | forward->flags = fwd_flags; |
forward->flags |= FREC_AD_QUESTION; | if (domain_no_rebind(daemon->namebuff)) |
| forward->flags |= FREC_NOREBIND; |
| if (header->hb4 & HB4_CD) |
| forward->flags |= FREC_CHECKING_DISABLED; |
| if (ad_reqd) |
| forward->flags |= FREC_AD_QUESTION; |
#ifdef HAVE_DNSSEC |
#ifdef HAVE_DNSSEC |
forward->work_counter = DNSSEC_WORK; | forward->work_counter = DNSSEC_WORK; |
if (do_bit) | if (do_bit) |
forward->flags |= FREC_DO_QUESTION; | forward->flags |= FREC_DO_QUESTION; |
#endif |
#endif |
|
|
|
start = first; |
|
|
|
if (option_bool(OPT_ALL_SERVERS)) |
|
forward->forwardall = 1; |
|
|
|
if (!option_bool(OPT_ORDER)) |
|
{ |
|
if (master->forwardcount++ > FORWARD_TEST || |
|
difftime(now, master->forwardtime) > FORWARD_TIME || |
|
master->last_server == -1) |
|
{ |
|
master->forwardtime = now; |
|
master->forwardcount = 0; |
|
forward->forwardall = 1; |
|
} |
|
else |
|
start = master->last_server; |
|
} |
|
} |
|
else |
|
{ |
|
#ifdef HAVE_DNSSEC |
|
/* If we've already got an answer to this query, but we're awaiting keys for validation, |
|
there's no point retrying the query, retry the key query instead...... */ |
|
while (forward->blocking_query) |
|
forward = forward->blocking_query; |
|
|
|
if (forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)) |
|
{ |
|
int is_sign; |
|
unsigned char *pheader; |
|
|
header->id = htons(forward->new_id); | /* log_id should match previous DNSSEC query. */ |
| daemon->log_display_id = forward->frec_src.log_id; |
|
|
/* In strict_order mode, always try servers in the order | blockdata_retrieve(forward->stash, forward->stash_len, (void *)header); |
specified in resolv.conf, if a domain is given | plen = forward->stash_len; |
always try all the available servers, | /* get query for logging. */ |
otherwise, use the one last known to work. */ | extract_request(header, plen, daemon->namebuff, NULL); |
|
|
if (type == 0) | if (find_pseudoheader(header, plen, NULL, &pheader, &is_sign, NULL) && !is_sign) |
| PUTSHORT(SAFE_PKTSZ, pheader); |
| |
| /* Find suitable servers: should never fail. */ |
| if (!filter_servers(forward->sentto->arrayposn, F_DNSSECOK, &first, &last)) |
| return 0; |
| |
| is_dnssec = 1; |
| forward->forwardall = 1; |
| } |
| else |
| #endif |
| { |
| /* retry on existing query, from original source. Send to all available servers */ |
| if (udpfd == -1 && !fast_retry) |
| forward->sentto->failed_queries++; |
| else |
| forward->sentto->retrys++; |
| |
| if (!filter_servers(forward->sentto->arrayposn, F_SERVER, &first, &last)) |
| goto reply; |
| |
| master = daemon->serverarray[first]; |
| |
| /* Forward to all available servers on retry of query from same host. */ |
| if (!option_bool(OPT_ORDER) && old_src && !fast_retry) |
| forward->forwardall = 1; |
| else |
{ |
{ |
if (option_bool(OPT_ORDER)) | start = forward->sentto->arrayposn; |
start = daemon->servers; | |
else if (!(start = daemon->last_server) || | if (option_bool(OPT_ORDER) && !fast_retry) |
daemon->forwardcount++ > FORWARD_TEST || | |
difftime(now, daemon->forwardtime) > FORWARD_TIME) | |
{ |
{ |
start = daemon->servers; | /* In strict order mode, there must be a server later in the list |
forward->forwardall = 1; | left to send to, otherwise without the forwardall mechanism, |
daemon->forwardcount = 0; | code further on will cycle around the list forwever if they |
daemon->forwardtime = now; | all return REFUSED. If at the last, give up. |
| Note that we can get here EITHER because a client retried, |
| or an upstream server returned REFUSED. The above only |
| applied in the later case. For client retries, |
| keep trying the last server.. */ |
| if (++start == last) |
| { |
| if (old_reply) |
| goto reply; |
| else |
| start--; |
| } |
} |
} |
} | } |
else | |
{ | |
start = daemon->servers; | |
if (!option_bool(OPT_ORDER)) | |
forward->forwardall = 1; | |
} | |
} |
} |
|
|
|
/* If we didn't get an answer advertising a maximal packet in EDNS, |
|
fall back to 1280, which should work everywhere on IPv6. |
|
If that generates an answer, it will become the new default |
|
for this server */ |
|
forward->flags |= FREC_TEST_PKTSZ; |
} |
} |
|
|
/* check for send errors here (no route to host) | /* We may be resending a DNSSEC query here, for which the below processing is not necessary. */ |
if we fail to send to all nameservers, send back an error | if (!is_dnssec) |
packet straight away (helps modem users when offline) */ | |
| |
if (!flags && forward) | |
{ |
{ |
struct server *firstsentto = start; | header->id = htons(forward->new_id); |
int subnet, cacheable, forwarded = 0; | |
size_t edns0_len; | |
unsigned char *pheader; | |
|
|
/* If a query is retried, use the log_id for the retry when logging the answer. */ | plen = add_edns0_config(header, plen, ((unsigned char *)header) + PACKETSZ, &forward->frec_src.source, now, &cacheable); |
forward->frec_src.log_id = daemon->log_id; | |
|
|
plen = add_edns0_config(header, plen, ((unsigned char *)header) + PACKETSZ, &forward->frec_src.source, now, &subnet, &cacheable); |
|
|
|
if (subnet) |
|
forward->flags |= FREC_HAS_SUBNET; |
|
|
|
if (!cacheable) |
if (!cacheable) |
forward->flags |= FREC_NO_CACHE; |
forward->flags |= FREC_NO_CACHE; |
| |
#ifdef HAVE_DNSSEC |
#ifdef HAVE_DNSSEC |
if (option_bool(OPT_DNSSEC_VALID) && do_dnssec) | if (option_bool(OPT_DNSSEC_VALID) && (master->flags & SERV_DO_DNSSEC)) |
{ |
{ |
plen = add_do_bit(header, plen, ((unsigned char *) header) + PACKETSZ); |
plen = add_do_bit(header, plen, ((unsigned char *) header) + PACKETSZ); |
| |
/* For debugging, set Checking Disabled, otherwise, have the upstream check too, |
/* For debugging, set Checking Disabled, otherwise, have the upstream check too, |
this allows it to select auth servers when one is returning bad data. */ |
this allows it to select auth servers when one is returning bad data. */ |
if (option_bool(OPT_DNSSEC_DEBUG)) |
if (option_bool(OPT_DNSSEC_DEBUG)) |
header->hb4 |= HB4_CD; |
header->hb4 |= HB4_CD; |
| |
} |
} |
#endif |
#endif |
| |
if (find_pseudoheader(header, plen, &edns0_len, &pheader, NULL, NULL)) |
if (find_pseudoheader(header, plen, &edns0_len, &pheader, NULL, NULL)) |
{ |
{ |
/* If there wasn't a PH before, and there is now, we added it. */ |
/* If there wasn't a PH before, and there is now, we added it. */ |
if (!oph) |
if (!oph) |
forward->flags |= FREC_ADDED_PHEADER; |
forward->flags |= FREC_ADDED_PHEADER; |
| |
/* If we're sending an EDNS0 with any options, we can't recreate the query from a reply. */ |
/* If we're sending an EDNS0 with any options, we can't recreate the query from a reply. */ |
if (edns0_len > 11) |
if (edns0_len > 11) |
forward->flags |= FREC_HAS_EXTRADATA; |
forward->flags |= FREC_HAS_EXTRADATA; |
| |
/* Reduce udp size on retransmits. */ |
/* Reduce udp size on retransmits. */ |
if (forward->flags & FREC_TEST_PKTSZ) |
if (forward->flags & FREC_TEST_PKTSZ) |
PUTSHORT(SAFE_PKTSZ, pheader); |
PUTSHORT(SAFE_PKTSZ, pheader); |
} |
} |
| } |
while (1) | |
{ | if (forward->forwardall) |
/* only send to servers dealing with our domain. | start = first; |
domain may be NULL, in which case server->domain | |
must be NULL also. */ | |
| |
if (type == (start->flags & SERV_TYPE) && | |
(type != SERV_HAS_DOMAIN || hostname_isequal(domain, start->domain)) && | |
!(start->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP))) | |
{ | |
int fd; | |
|
|
/* find server socket to use, may need to get random one. */ | forwarded = 0; |
if (start->sfd) | |
fd = start->sfd->fd; | /* check for send errors here (no route to host) |
else | if we fail to send to all nameservers, send back an error |
{ | packet straight away (helps modem users when offline) */ |
if (start->addr.sa.sa_family == AF_INET6) | |
{ | |
if (!forward->rfd6 && | |
!(forward->rfd6 = allocate_rfd(AF_INET6))) | |
break; | |
daemon->rfd_save = forward->rfd6; | |
fd = forward->rfd6->fd; | |
} | |
else | |
{ | |
if (!forward->rfd4 && | |
!(forward->rfd4 = allocate_rfd(AF_INET))) | |
break; | |
daemon->rfd_save = forward->rfd4; | |
fd = forward->rfd4->fd; | |
} | |
|
|
|
while (1) |
|
{ |
|
int fd; |
|
struct server *srv = daemon->serverarray[start]; |
|
|
|
if ((fd = allocate_rfd(&forward->rfds, srv)) != -1) |
|
{ |
|
|
#ifdef HAVE_CONNTRACK |
#ifdef HAVE_CONNTRACK |
/* Copy connection mark of incoming query to outgoing connection. */ | /* Copy connection mark of incoming query to outgoing connection. */ |
if (option_bool(OPT_CONNTRACK)) | if (option_bool(OPT_CONNTRACK)) |
{ | set_outgoing_mark(forward, fd); |
unsigned int mark; | |
if (get_incoming_mark(&forward->frec_src.source, &forward->frec_src.dest, 0, &mark)) | |
setsockopt(fd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int)); | |
} | |
#endif |
#endif |
} | |
| |
#ifdef HAVE_DNSSEC |
#ifdef HAVE_DNSSEC |
if (option_bool(OPT_DNSSEC_VALID) && (forward->flags & FREC_ADDED_PHEADER)) | if (option_bool(OPT_DNSSEC_VALID) && (forward->flags & FREC_ADDED_PHEADER)) |
{ | { |
/* Difficult one here. If our client didn't send EDNS0, we will have set the UDP | /* Difficult one here. If our client didn't send EDNS0, we will have set the UDP |
packet size to 512. But that won't provide space for the RRSIGS in many cases. | packet size to 512. But that won't provide space for the RRSIGS in many cases. |
The RRSIGS will be stripped out before the answer goes back, so the packet should | The RRSIGS will be stripped out before the answer goes back, so the packet should |
shrink again. So, if we added a do-bit, bump the udp packet size to the value | shrink again. So, if we added a do-bit, bump the udp packet size to the value |
known to be OK for this server. We check returned size after stripping and set | known to be OK for this server. We check returned size after stripping and set |
the truncated bit if it's still too big. */ | the truncated bit if it's still too big. */ |
unsigned char *pheader; | unsigned char *pheader; |
int is_sign; | int is_sign; |
if (find_pseudoheader(header, plen, NULL, &pheader, &is_sign, NULL) && !is_sign) | if (find_pseudoheader(header, plen, NULL, &pheader, &is_sign, NULL) && !is_sign) |
PUTSHORT(start->edns_pktsz, pheader); | PUTSHORT(srv->edns_pktsz, pheader); |
} | } |
#endif |
#endif |
| |
if (retry_send(sendto(fd, (char *)header, plen, 0, | if (retry_send(sendto(fd, (char *)header, plen, 0, |
&start->addr.sa, | &srv->addr.sa, |
sa_len(&start->addr)))) | sa_len(&srv->addr)))) |
continue; | continue; |
| |
if (errno == 0) | if (errno == 0) |
{ | { |
#ifdef HAVE_DUMPFILE |
#ifdef HAVE_DUMPFILE |
dump_packet(DUMP_UP_QUERY, (void *)header, plen, NULL, &start->addr); | dump_packet_udp(DUMP_UP_QUERY, (void *)header, plen, NULL, &srv->addr, fd); |
#endif |
#endif |
| |
/* Keep info in case we want to re-send this packet */ | /* Keep info in case we want to re-send this packet */ |
daemon->srv_save = start; | daemon->srv_save = srv; |
daemon->packet_len = plen; | daemon->packet_len = plen; |
| daemon->fd_save = fd; |
| |
| if (!(forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY))) |
| { |
if (!gotname) |
if (!gotname) |
strcpy(daemon->namebuff, "query"); |
strcpy(daemon->namebuff, "query"); |
if (start->addr.sa.sa_family == AF_INET) | log_query_mysockaddr(F_SERVER | F_FORWARD, daemon->namebuff, |
log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff, | &srv->addr, NULL, 0); |
(union all_addr *)&start->addr.in.sin_addr, NULL); | |
else | |
log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff, | |
(union all_addr *)&start->addr.in6.sin6_addr, NULL); | |
start->queries++; | |
forwarded = 1; | |
forward->sentto = start; | |
if (!forward->forwardall) | |
break; | |
forward->forwardall++; | |
} |
} |
} | #ifdef HAVE_DNSSEC |
| else |
if (!(start = start->next)) | log_query_mysockaddr(F_NOEXTRA | F_DNSSEC | F_SERVER, daemon->namebuff, &srv->addr, |
start = daemon->servers; | (forward->flags & FREC_DNSKEY_QUERY) ? "dnssec-retry[DNSKEY]" : "dnssec-retry[DS]", 0); |
| #endif |
if (start == firstsentto) | |
break; | srv->queries++; |
| forwarded = 1; |
| forward->sentto = srv; |
| if (!forward->forwardall) |
| break; |
| forward->forwardall++; |
| } |
} |
} |
|
|
if (forwarded) | if (++start == last) |
return 1; | break; |
| } |
/* could not send on, prepare to return */ | |
header->id = htons(forward->frec_src.orig_id); | |
free_frec(forward); /* cancel */ | |
} | |
|
|
/* could not send on, return empty answer or address if known for whole domain */ | if (forwarded || is_dnssec) |
| { |
| forward->forward_timestamp = dnsmasq_milliseconds(); |
| return 1; |
| } |
| |
| /* could not send on, prepare to return */ |
| header->id = htons(forward->frec_src.orig_id); |
| free_frec(forward); /* cancel */ |
| ede = EDE_NETERR; |
| |
| reply: |
if (udpfd != -1) |
if (udpfd != -1) |
{ |
{ |
plen = setup_reply(header, plen, addrp, flags, daemon->local_ttl); | if (!(plen = make_local_answer(flags, gotname, plen, header, daemon->namebuff, limit, first, last, ede))) |
| return 0; |
| |
if (oph) |
if (oph) |
plen = add_pseudoheader(header, plen, ((unsigned char *) header) + PACKETSZ, daemon->edns_pktsz, 0, NULL, 0, do_bit, 0); | { |
| u16 swap = htons((u16)ede); |
| |
| if (ede != EDE_UNSET) |
| plen = add_pseudoheader(header, plen, (unsigned char *)limit, daemon->edns_pktsz, EDNS0_OPTION_EDE, (unsigned char *)&swap, 2, do_bit, 0); |
| else |
| plen = add_pseudoheader(header, plen, (unsigned char *)limit, daemon->edns_pktsz, 0, NULL, 0, do_bit, 0); |
| } |
| |
| #if defined(HAVE_CONNTRACK) && defined(HAVE_UBUS) |
| if (option_bool(OPT_CMARK_ALST_EN)) |
| { |
| unsigned int mark; |
| int have_mark = get_incoming_mark(udpaddr, dst_addr, /* istcp: */ 0, &mark); |
| if (have_mark && ((u32)mark & daemon->allowlist_mask)) |
| report_addresses(header, plen, mark); |
| } |
| #endif |
| |
send_from(udpfd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), (char *)header, plen, udpaddr, dst_addr, dst_iface); |
send_from(udpfd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), (char *)header, plen, udpaddr, dst_addr, dst_iface); |
} |
} |
| |
return 0; |
return 0; |
} |
} |
|
|
|
/* Check if any frecs need to do a retry, and action that if so. |
|
Return time in milliseconds until he next retry will be required, |
|
or -1 if none. */ |
|
int fast_retry(time_t now) |
|
{ |
|
struct frec *f; |
|
int ret = -1; |
|
|
|
if (daemon->fast_retry_time != 0) |
|
{ |
|
u32 millis = dnsmasq_milliseconds(); |
|
|
|
for (f = daemon->frec_list; f; f = f->next) |
|
if (f->sentto && f->stash && difftime(now, f->time) < daemon->fast_retry_timeout) |
|
{ |
|
#ifdef HAVE_DNSSEC |
|
if (f->blocking_query) |
|
continue; |
|
#endif |
|
/* t is milliseconds since last query sent. */ |
|
int to_run, t = (int)(millis - f->forward_timestamp); |
|
|
|
if (t < f->forward_delay) |
|
to_run = f->forward_delay - t; |
|
else |
|
{ |
|
unsigned char *udpsz; |
|
unsigned short udp_size = PACKETSZ; /* default if no EDNS0 */ |
|
struct dns_header *header = (struct dns_header *)daemon->packet; |
|
|
|
/* packet buffer overwritten */ |
|
daemon->srv_save = NULL; |
|
|
|
blockdata_retrieve(f->stash, f->stash_len, (void *)header); |
|
|
|
/* UDP size already set in saved query. */ |
|
if (find_pseudoheader(header, f->stash_len, NULL, &udpsz, NULL, NULL)) |
|
GETSHORT(udp_size, udpsz); |
|
|
|
daemon->log_display_id = f->frec_src.log_id; |
|
|
|
forward_query(-1, NULL, NULL, 0, header, f->stash_len, ((char *) header) + udp_size, now, f, |
|
f->flags & FREC_AD_QUESTION, f->flags & FREC_DO_QUESTION, 1); |
|
|
|
to_run = f->forward_delay = 2 * f->forward_delay; |
|
} |
|
|
|
if (ret == -1 || ret > to_run) |
|
ret = to_run; |
|
} |
|
|
|
} |
|
return ret; |
|
} |
|
|
|
static struct ipsets *domain_find_sets(struct ipsets *setlist, const char *domain) { |
|
/* Similar algorithm to search_servers. */ |
|
struct ipsets *ipset_pos, *ret = NULL; |
|
unsigned int namelen = strlen(domain); |
|
unsigned int matchlen = 0; |
|
for (ipset_pos = setlist; ipset_pos; ipset_pos = ipset_pos->next) |
|
{ |
|
unsigned int domainlen = strlen(ipset_pos->domain); |
|
const char *matchstart = domain + namelen - domainlen; |
|
if (namelen >= domainlen && hostname_isequal(matchstart, ipset_pos->domain) && |
|
(domainlen == 0 || namelen == domainlen || *(matchstart - 1) == '.' ) && |
|
domainlen >= matchlen) |
|
{ |
|
matchlen = domainlen; |
|
ret = ipset_pos; |
|
} |
|
} |
|
|
|
return ret; |
|
} |
|
|
static size_t process_reply(struct dns_header *header, time_t now, struct server *server, size_t n, int check_rebind, |
static size_t process_reply(struct dns_header *header, time_t now, struct server *server, size_t n, int check_rebind, |
int no_cache, int cache_secure, int bogusanswer, int ad_reqd, int do_bit, int added_pheader, |
int no_cache, int cache_secure, int bogusanswer, int ad_reqd, int do_bit, int added_pheader, |
int check_subnet, union mysockaddr *query_source) | union mysockaddr *query_source, unsigned char *limit, int ede) |
{ |
{ |
unsigned char *pheader, *sizep; |
unsigned char *pheader, *sizep; |
char **sets = 0; | struct ipsets *ipsets = NULL, *nftsets = NULL; |
int munged = 0, is_sign; |
int munged = 0, is_sign; |
unsigned int rcode = RCODE(header); |
unsigned int rcode = RCODE(header); |
size_t plen; |
size_t plen; |
| |
(void)ad_reqd; |
(void)ad_reqd; |
(void)do_bit; |
(void)do_bit; |
(void)bogusanswer; |
(void)bogusanswer; |
|
|
#ifdef HAVE_IPSET |
#ifdef HAVE_IPSET |
if (daemon->ipsets && extract_request(header, n, daemon->namebuff, NULL)) |
if (daemon->ipsets && extract_request(header, n, daemon->namebuff, NULL)) |
{ | ipsets = domain_find_sets(daemon->ipsets, daemon->namebuff); |
/* Similar algorithm to search_servers. */ | |
struct ipsets *ipset_pos; | |
unsigned int namelen = strlen(daemon->namebuff); | |
unsigned int matchlen = 0; | |
for (ipset_pos = daemon->ipsets; ipset_pos; ipset_pos = ipset_pos->next) | |
{ | |
unsigned int domainlen = strlen(ipset_pos->domain); | |
char *matchstart = daemon->namebuff + namelen - domainlen; | |
if (namelen >= domainlen && hostname_isequal(matchstart, ipset_pos->domain) && | |
(domainlen == 0 || namelen == domainlen || *(matchstart - 1) == '.' ) && | |
domainlen >= matchlen) | |
{ | |
matchlen = domainlen; | |
sets = ipset_pos->sets; | |
} | |
} | |
} | |
#endif |
#endif |
|
|
|
#ifdef HAVE_NFTSET |
|
if (daemon->nftsets && extract_request(header, n, daemon->namebuff, NULL)) |
|
nftsets = domain_find_sets(daemon->nftsets, daemon->namebuff); |
|
#endif |
|
|
if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign, NULL))) |
if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign, NULL))) |
{ |
{ |
/* Get extended RCODE. */ |
/* Get extended RCODE. */ |
rcode |= sizep[2] << 4; |
rcode |= sizep[2] << 4; |
|
|
if (check_subnet && !check_source(header, plen, pheader, query_source)) | if (option_bool(OPT_CLIENT_SUBNET) && !check_source(header, plen, pheader, query_source)) |
{ |
{ |
my_syslog(LOG_WARNING, _("discarding DNS reply: subnet option mismatch")); |
my_syslog(LOG_WARNING, _("discarding DNS reply: subnet option mismatch")); |
return 0; |
return 0; |
Line 672 static size_t process_reply(struct dns_header *header,
|
Line 721 static size_t process_reply(struct dns_header *header,
|
if (added_pheader) |
if (added_pheader) |
{ |
{ |
/* client didn't send EDNS0, we added one, strip it off before returning answer. */ |
/* client didn't send EDNS0, we added one, strip it off before returning answer. */ |
n = rrfilter(header, n, 0); | n = rrfilter(header, n, RRFILTER_EDNS0); |
pheader = NULL; |
pheader = NULL; |
} |
} |
else |
else |
{ |
{ |
unsigned short udpsz; |
|
|
|
/* If upstream is advertising a larger UDP packet size |
/* If upstream is advertising a larger UDP packet size |
than we allow, trim it so that we don't get overlarge |
than we allow, trim it so that we don't get overlarge |
requests for the client. We can't do this for signed packets. */ |
requests for the client. We can't do this for signed packets. */ |
|
unsigned short udpsz; |
GETSHORT(udpsz, sizep); |
GETSHORT(udpsz, sizep); |
if (udpsz > daemon->edns_pktsz) |
if (udpsz > daemon->edns_pktsz) |
{ |
{ |
Line 708 static size_t process_reply(struct dns_header *header,
|
Line 756 static size_t process_reply(struct dns_header *header,
|
/* RFC 4035 sect 4.6 para 3 */ |
/* RFC 4035 sect 4.6 para 3 */ |
if (!is_sign && !option_bool(OPT_DNSSEC_PROXY)) |
if (!is_sign && !option_bool(OPT_DNSSEC_PROXY)) |
header->hb4 &= ~HB4_AD; |
header->hb4 &= ~HB4_AD; |
| |
| header->hb4 |= HB4_RA; /* recursion if available */ |
| |
if (OPCODE(header) != QUERY) |
if (OPCODE(header) != QUERY) |
return resize_packet(header, n, pheader, plen); |
return resize_packet(header, n, pheader, plen); |
|
|
Line 716 static size_t process_reply(struct dns_header *header,
|
Line 766 static size_t process_reply(struct dns_header *header,
|
{ |
{ |
union all_addr a; |
union all_addr a; |
a.log.rcode = rcode; |
a.log.rcode = rcode; |
log_query(F_UPSTREAM | F_RCODE, "error", &a, NULL); | a.log.ede = ede; |
| log_query(F_UPSTREAM | F_RCODE, "error", &a, NULL, 0); |
|
|
return resize_packet(header, n, pheader, plen); |
return resize_packet(header, n, pheader, plen); |
} |
} |
Line 732 static size_t process_reply(struct dns_header *header,
|
Line 783 static size_t process_reply(struct dns_header *header,
|
} |
} |
|
|
if (daemon->bogus_addr && rcode != NXDOMAIN && |
if (daemon->bogus_addr && rcode != NXDOMAIN && |
check_for_bogus_wildcard(header, n, daemon->namebuff, daemon->bogus_addr, now)) | check_for_bogus_wildcard(header, n, daemon->namebuff, now)) |
{ |
{ |
munged = 1; |
munged = 1; |
SET_RCODE(header, NXDOMAIN); |
SET_RCODE(header, NXDOMAIN); |
header->hb3 &= ~HB3_AA; |
header->hb3 &= ~HB3_AA; |
cache_secure = 0; |
cache_secure = 0; |
|
ede = EDE_BLOCKED; |
} |
} |
else |
else |
{ |
{ |
int doctored = 0; |
int doctored = 0; |
|
|
if (rcode == NXDOMAIN && |
if (rcode == NXDOMAIN && |
extract_request(header, n, daemon->namebuff, NULL) && | extract_request(header, n, daemon->namebuff, NULL)) |
check_for_local_domain(daemon->namebuff, now)) | |
{ |
{ |
/* if we forwarded a query for a locally known name (because it was for | if (check_for_local_domain(daemon->namebuff, now) || |
an unknown type) and the answer is NXDOMAIN, convert that to NODATA, | lookup_domain(daemon->namebuff, F_CONFIG, NULL, NULL)) |
since we know that the domain exists, even if upstream doesn't */ | { |
munged = 1; | /* if we forwarded a query for a locally known name (because it was for |
header->hb3 |= HB3_AA; | an unknown type) and the answer is NXDOMAIN, convert that to NODATA, |
SET_RCODE(header, NOERROR); | since we know that the domain exists, even if upstream doesn't */ |
cache_secure = 0; | munged = 1; |
| header->hb3 |= HB3_AA; |
| SET_RCODE(header, NOERROR); |
| cache_secure = 0; |
| } |
} |
} |
| |
if (extract_addresses(header, n, daemon->namebuff, now, sets, is_sign, check_rebind, no_cache, cache_secure, &doctored)) | /* Before extract_addresses() */ |
| if (rcode == NOERROR) |
{ |
{ |
|
if (option_bool(OPT_FILTER_A)) |
|
n = rrfilter(header, n, RRFILTER_A); |
|
|
|
if (option_bool(OPT_FILTER_AAAA)) |
|
n = rrfilter(header, n, RRFILTER_AAAA); |
|
} |
|
|
|
switch (extract_addresses(header, n, daemon->namebuff, now, ipsets, nftsets, is_sign, check_rebind, no_cache, cache_secure, &doctored)) |
|
{ |
|
case 1: |
my_syslog(LOG_WARNING, _("possible DNS-rebind attack detected: %s"), daemon->namebuff); |
my_syslog(LOG_WARNING, _("possible DNS-rebind attack detected: %s"), daemon->namebuff); |
munged = 1; |
munged = 1; |
cache_secure = 0; |
cache_secure = 0; |
|
ede = EDE_BLOCKED; |
|
break; |
|
|
|
/* extract_addresses() found a malformed answer. */ |
|
case 2: |
|
munged = 1; |
|
SET_RCODE(header, SERVFAIL); |
|
cache_secure = 0; |
|
ede = EDE_OTHER; |
|
break; |
} |
} |
|
|
if (doctored) |
if (doctored) |
Line 784 static size_t process_reply(struct dns_header *header,
|
Line 860 static size_t process_reply(struct dns_header *header,
|
|
|
/* If the requestor didn't set the DO bit, don't return DNSSEC info. */ |
/* If the requestor didn't set the DO bit, don't return DNSSEC info. */ |
if (!do_bit) |
if (!do_bit) |
n = rrfilter(header, n, 1); | n = rrfilter(header, n, RRFILTER_DNSSEC); |
} |
} |
#endif |
#endif |
|
|
/* do this after extract_addresses. Ensure NODATA reply and remove |
/* do this after extract_addresses. Ensure NODATA reply and remove |
nameserver info. */ |
nameserver info. */ |
|
|
if (munged) |
if (munged) |
{ |
{ |
header->ancount = htons(0); |
header->ancount = htons(0); |
Line 802 static size_t process_reply(struct dns_header *header,
|
Line 877 static size_t process_reply(struct dns_header *header,
|
/* the bogus-nxdomain stuff, doctor and NXDOMAIN->NODATA munging can all elide |
/* the bogus-nxdomain stuff, doctor and NXDOMAIN->NODATA munging can all elide |
sections of the packet. Find the new length here and put back pseudoheader |
sections of the packet. Find the new length here and put back pseudoheader |
if it was removed. */ |
if it was removed. */ |
return resize_packet(header, n, pheader, plen); | n = resize_packet(header, n, pheader, plen); |
| |
| if (pheader && ede != EDE_UNSET) |
| { |
| u16 swap = htons((u16)ede); |
| n = add_pseudoheader(header, n, limit, daemon->edns_pktsz, EDNS0_OPTION_EDE, (unsigned char *)&swap, 2, do_bit, 1); |
| } |
| |
| if (RCODE(header) == NXDOMAIN) |
| server->nxdomain_replies++; |
| |
| return n; |
} |
} |
|
|
|
#ifdef HAVE_DNSSEC |
|
static void dnssec_validate(struct frec *forward, struct dns_header *header, |
|
ssize_t plen, int status, time_t now) |
|
{ |
|
daemon->log_display_id = forward->frec_src.log_id; |
|
|
|
/* We've had a reply already, which we're validating. Ignore this duplicate */ |
|
if (forward->blocking_query) |
|
return; |
|
|
|
/* Truncated answer can't be validated. |
|
If this is an answer to a DNSSEC-generated query, we still |
|
need to get the client to retry over TCP, so return |
|
an answer with the TC bit set, even if the actual answer fits. |
|
*/ |
|
if (header->hb3 & HB3_TC) |
|
status = STAT_TRUNCATED; |
|
|
|
/* If all replies to a query are REFUSED, give up. */ |
|
if (RCODE(header) == REFUSED) |
|
status = STAT_ABANDONED; |
|
|
|
/* As soon as anything returns BOGUS, we stop and unwind, to do otherwise |
|
would invite infinite loops, since the answers to DNSKEY and DS queries |
|
will not be cached, so they'll be repeated. */ |
|
if (!STAT_ISEQUAL(status, STAT_BOGUS) && !STAT_ISEQUAL(status, STAT_TRUNCATED) && !STAT_ISEQUAL(status, STAT_ABANDONED)) |
|
{ |
|
if (forward->flags & FREC_DNSKEY_QUERY) |
|
status = dnssec_validate_by_ds(now, header, plen, daemon->namebuff, daemon->keyname, forward->class); |
|
else if (forward->flags & FREC_DS_QUERY) |
|
status = dnssec_validate_ds(now, header, plen, daemon->namebuff, daemon->keyname, forward->class); |
|
else |
|
status = dnssec_validate_reply(now, header, plen, daemon->namebuff, daemon->keyname, &forward->class, |
|
!option_bool(OPT_DNSSEC_IGN_NS) && (forward->sentto->flags & SERV_DO_DNSSEC), |
|
NULL, NULL, NULL); |
|
#ifdef HAVE_DUMPFILE |
|
if (STAT_ISEQUAL(status, STAT_BOGUS)) |
|
dump_packet_udp((forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)) ? DUMP_SEC_BOGUS : DUMP_BOGUS, |
|
header, (size_t)plen, &forward->sentto->addr, NULL, -daemon->port); |
|
#endif |
|
} |
|
|
|
/* Can't validate, as we're missing key data. Put this |
|
answer aside, whilst we get that. */ |
|
if (STAT_ISEQUAL(status, STAT_NEED_DS) || STAT_ISEQUAL(status, STAT_NEED_KEY)) |
|
{ |
|
struct frec *new = NULL; |
|
struct blockdata *stash; |
|
|
|
/* Now save reply pending receipt of key data */ |
|
if ((stash = blockdata_alloc((char *)header, plen))) |
|
{ |
|
/* validate routines leave name of required record in daemon->keyname */ |
|
unsigned int flags = STAT_ISEQUAL(status, STAT_NEED_KEY) ? FREC_DNSKEY_QUERY : FREC_DS_QUERY; |
|
|
|
if ((new = lookup_frec_dnssec(daemon->keyname, forward->class, flags, header))) |
|
{ |
|
/* This is tricky; it detects loops in the dependency |
|
graph for DNSSEC validation, say validating A requires DS B |
|
and validating DS B requires DNSKEY C and validating DNSKEY C requires DS B. |
|
This should never happen in correctly signed records, but it's |
|
likely the case that sufficiently broken ones can cause our validation |
|
code requests to exhibit cycles. The result is that the ->blocking_query list |
|
can form a cycle, and under certain circumstances that can lock us in |
|
an infinite loop. Here we transform the situation into ABANDONED. */ |
|
struct frec *f; |
|
for (f = new; f; f = f->blocking_query) |
|
if (f == forward) |
|
break; |
|
|
|
if (!f) |
|
{ |
|
forward->next_dependent = new->dependent; |
|
new->dependent = forward; |
|
/* Make consistent, only replace query copy with unvalidated answer |
|
when we set ->blocking_query. */ |
|
if (forward->stash) |
|
blockdata_free(forward->stash); |
|
forward->blocking_query = new; |
|
forward->stash_len = plen; |
|
forward->stash = stash; |
|
return; |
|
} |
|
} |
|
else |
|
{ |
|
struct server *server; |
|
struct frec *orig; |
|
void *hash; |
|
size_t nn; |
|
int serverind, fd; |
|
struct randfd_list *rfds = NULL; |
|
|
|
/* Find the original query that started it all.... */ |
|
for (orig = forward; orig->dependent; orig = orig->dependent); |
|
|
|
/* Make sure we don't expire and free the orig frec during the |
|
allocation of a new one: third arg of get_new_frec() does that. */ |
|
if ((serverind = dnssec_server(forward->sentto, daemon->keyname, NULL, NULL)) != -1 && |
|
(server = daemon->serverarray[serverind]) && |
|
(nn = dnssec_generate_query(header, ((unsigned char *) header) + server->edns_pktsz, |
|
daemon->keyname, forward->class, |
|
STAT_ISEQUAL(status, STAT_NEED_KEY) ? T_DNSKEY : T_DS, server->edns_pktsz)) && |
|
(hash = hash_questions(header, nn, daemon->namebuff)) && |
|
--orig->work_counter != 0 && |
|
(fd = allocate_rfd(&rfds, server)) != -1 && |
|
(new = get_new_frec(now, server, 1))) |
|
{ |
|
struct frec *next = new->next; |
|
|
|
*new = *forward; /* copy everything, then overwrite */ |
|
new->next = next; |
|
new->blocking_query = NULL; |
|
|
|
new->frec_src.log_id = daemon->log_display_id = ++daemon->log_id; |
|
new->sentto = server; |
|
new->rfds = rfds; |
|
new->frec_src.next = NULL; |
|
new->flags &= ~(FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_HAS_EXTRADATA); |
|
new->flags |= flags; |
|
new->forwardall = 0; |
|
|
|
forward->next_dependent = NULL; |
|
new->dependent = forward; /* to find query awaiting new one. */ |
|
|
|
/* Make consistent, only replace query copy with unvalidated answer |
|
when we set ->blocking_query. */ |
|
forward->blocking_query = new; |
|
if (forward->stash) |
|
blockdata_free(forward->stash); |
|
forward->stash_len = plen; |
|
forward->stash = stash; |
|
|
|
memcpy(new->hash, hash, HASH_SIZE); |
|
new->new_id = get_id(); |
|
header->id = htons(new->new_id); |
|
/* Save query for retransmission and de-dup */ |
|
new->stash = blockdata_alloc((char *)header, nn); |
|
new->stash_len = nn; |
|
if (daemon->fast_retry_time != 0) |
|
new->forward_timestamp = dnsmasq_milliseconds(); |
|
|
|
/* Don't resend this. */ |
|
daemon->srv_save = NULL; |
|
|
|
#ifdef HAVE_CONNTRACK |
|
if (option_bool(OPT_CONNTRACK)) |
|
set_outgoing_mark(orig, fd); |
|
#endif |
|
|
|
server_send(server, fd, header, nn, 0); |
|
server->queries++; |
|
#ifdef HAVE_DUMPFILE |
|
dump_packet_udp(DUMP_SEC_QUERY, (void *)header, (size_t)nn, NULL, &server->addr, fd); |
|
#endif |
|
log_query_mysockaddr(F_NOEXTRA | F_DNSSEC | F_SERVER, daemon->keyname, &server->addr, |
|
STAT_ISEQUAL(status, STAT_NEED_KEY) ? "dnssec-query[DNSKEY]" : "dnssec-query[DS]", 0); |
|
return; |
|
} |
|
|
|
free_rfds(&rfds); /* error unwind */ |
|
} |
|
|
|
blockdata_free(stash); /* don't leak this on failure. */ |
|
} |
|
|
|
/* sending DNSSEC query failed or loop detected. */ |
|
status = STAT_ABANDONED; |
|
} |
|
|
|
/* Validated original answer, all done. */ |
|
if (!forward->dependent) |
|
return_reply(now, forward, header, plen, status); |
|
else |
|
{ |
|
/* validated subsidiary query/queries, (and cached result) |
|
pop that and return to the previous query/queries we were working on. */ |
|
struct frec *prev, *nxt = forward->dependent; |
|
|
|
free_frec(forward); |
|
|
|
while ((prev = nxt)) |
|
{ |
|
/* ->next_dependent will have changed after return from recursive call below. */ |
|
nxt = prev->next_dependent; |
|
prev->blocking_query = NULL; /* already gone */ |
|
blockdata_retrieve(prev->stash, prev->stash_len, (void *)header); |
|
dnssec_validate(prev, header, prev->stash_len, status, now); |
|
} |
|
} |
|
} |
|
#endif |
|
|
/* sets new last_server */ |
/* sets new last_server */ |
void reply_query(int fd, int family, time_t now) | void reply_query(int fd, time_t now) |
{ |
{ |
/* packet from peer server, extract data for cache, and send to |
/* packet from peer server, extract data for cache, and send to |
original requester */ |
original requester */ |
Line 815 void reply_query(int fd, int family, time_t now)
|
Line 1094 void reply_query(int fd, int family, time_t now)
|
struct frec *forward; |
struct frec *forward; |
socklen_t addrlen = sizeof(serveraddr); |
socklen_t addrlen = sizeof(serveraddr); |
ssize_t n = recvfrom(fd, daemon->packet, daemon->packet_buff_sz, 0, &serveraddr.sa, &addrlen); |
ssize_t n = recvfrom(fd, daemon->packet, daemon->packet_buff_sz, 0, &serveraddr.sa, &addrlen); |
size_t nn; |
|
struct server *server; |
struct server *server; |
void *hash; |
void *hash; |
| int first, last, c; |
| |
/* packet buffer overwritten */ |
/* packet buffer overwritten */ |
daemon->srv_save = NULL; |
daemon->srv_save = NULL; |
| |
/* Determine the address of the server replying so that we can mark that as good */ |
/* Determine the address of the server replying so that we can mark that as good */ |
if ((serveraddr.sa.sa_family = family) == AF_INET6) | if (serveraddr.sa.sa_family == AF_INET6) |
serveraddr.in6.sin6_flowinfo = 0; |
serveraddr.in6.sin6_flowinfo = 0; |
|
|
header = (struct dns_header *)daemon->packet; |
header = (struct dns_header *)daemon->packet; |
|
|
if (n < (int)sizeof(struct dns_header) || !(header->hb3 & HB3_QR)) |
if (n < (int)sizeof(struct dns_header) || !(header->hb3 & HB3_QR)) |
return; |
return; |
|
|
|
hash = hash_questions(header, n, daemon->namebuff); |
|
|
/* spoof check: answer must come from known server, */ | if (!(forward = lookup_frec(ntohs(header->id), fd, hash, &first, &last))) |
for (server = daemon->servers; server; server = server->next) | return; |
if (!(server->flags & (SERV_LITERAL_ADDRESS | SERV_NO_ADDR)) && | |
sockaddr_isequal(&server->addr, &serveraddr)) | /* spoof check: answer must come from known server, also |
| we may have sent the same query to multiple servers from |
| the same local socket, and would like to know which one has answered. */ |
| for (c = first; c != last; c++) |
| if (sockaddr_isequal(&daemon->serverarray[c]->addr, &serveraddr)) |
break; |
break; |
|
|
if (!server) | if (c == last) |
return; |
return; |
|
|
|
server = daemon->serverarray[c]; |
|
|
|
if (RCODE(header) != REFUSED) |
|
daemon->serverarray[first]->last_server = c; |
|
else if (daemon->serverarray[first]->last_server == c) |
|
daemon->serverarray[first]->last_server = -1; |
|
|
/* If sufficient time has elapsed, try and expand UDP buffer size again. */ |
/* If sufficient time has elapsed, try and expand UDP buffer size again. */ |
if (difftime(now, server->pktsz_reduced) > UDP_TEST_TIME) |
if (difftime(now, server->pktsz_reduced) > UDP_TEST_TIME) |
server->edns_pktsz = daemon->edns_pktsz; |
server->edns_pktsz = daemon->edns_pktsz; |
|
|
hash = hash_questions(header, n, daemon->namebuff); |
|
|
|
if (!(forward = lookup_frec(ntohs(header->id), fd, family, hash))) |
|
return; |
|
|
|
#ifdef HAVE_DUMPFILE |
|
dump_packet((forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)) ? DUMP_SEC_REPLY : DUMP_UP_REPLY, |
|
(void *)header, n, &serveraddr, NULL); |
|
#endif |
|
|
|
/* log_query gets called indirectly all over the place, so |
/* log_query gets called indirectly all over the place, so |
pass these in global variables - sorry. */ |
pass these in global variables - sorry. */ |
daemon->log_display_id = forward->frec_src.log_id; |
daemon->log_display_id = forward->frec_src.log_id; |
daemon->log_source_addr = &forward->frec_src.source; |
daemon->log_source_addr = &forward->frec_src.source; |
|
|
|
#ifdef HAVE_DUMPFILE |
|
dump_packet_udp((forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)) ? DUMP_SEC_REPLY : DUMP_UP_REPLY, |
|
(void *)header, n, &serveraddr, NULL, fd); |
|
#endif |
|
|
if (daemon->ignore_addr && RCODE(header) == NOERROR && |
if (daemon->ignore_addr && RCODE(header) == NOERROR && |
check_for_ignored_address(header, n, daemon->ignore_addr)) | check_for_ignored_address(header, n)) |
return; |
return; |
| |
/* Note: if we send extra options in the EDNS0 header, we can't recreate |
/* Note: if we send extra options in the EDNS0 header, we can't recreate |
the query from the reply. */ |
the query from the reply. */ |
if ((RCODE(header) == REFUSED || RCODE(header) == SERVFAIL) && |
if ((RCODE(header) == REFUSED || RCODE(header) == SERVFAIL) && |
Line 870 void reply_query(int fd, int family, time_t now)
|
Line 1157 void reply_query(int fd, int family, time_t now)
|
!(forward->flags & FREC_HAS_EXTRADATA)) |
!(forward->flags & FREC_HAS_EXTRADATA)) |
/* for broken servers, attempt to send to another one. */ |
/* for broken servers, attempt to send to another one. */ |
{ |
{ |
unsigned char *pheader; | unsigned char *pheader, *udpsz; |
| unsigned short udp_size = PACKETSZ; /* default if no EDNS0 */ |
size_t plen; |
size_t plen; |
int is_sign; |
int is_sign; |
| size_t nn = 0; |
| |
#ifdef HAVE_DNSSEC |
#ifdef HAVE_DNSSEC |
|
/* The query MAY have got a good answer, and be awaiting |
|
the results of further queries, in which case |
|
The Stash contains something else and we don't need to retry anyway. */ |
|
if (forward->blocking_query) |
|
return; |
|
|
if (forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)) |
if (forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)) |
{ |
{ |
struct server *start; | /* DNSSEC queries have a copy of the original query stashed. */ |
| |
blockdata_retrieve(forward->stash, forward->stash_len, (void *)header); |
blockdata_retrieve(forward->stash, forward->stash_len, (void *)header); |
plen = forward->stash_len; | nn = forward->stash_len; |
| udp_size = daemon->edns_pktsz; |
forward->forwardall = 2; /* only retry once */ | |
start = forward->sentto; | |
| |
/* for non-domain specific servers, see if we can find another to try. */ | |
if ((forward->sentto->flags & SERV_TYPE) == 0) | |
while (1) | |
{ | |
if (!(start = start->next)) | |
start = daemon->servers; | |
if (start == forward->sentto) | |
break; | |
| |
if ((start->flags & SERV_TYPE) == 0 && | |
(start->flags & SERV_DO_DNSSEC)) | |
break; | |
} | |
| |
| |
fd = -1; | |
| |
if (start->sfd) | |
fd = start->sfd->fd; | |
else | |
{ | |
if (start->addr.sa.sa_family == AF_INET6) | |
{ | |
/* may have changed family */ | |
if (forward->rfd6 || (forward->rfd6 = allocate_rfd(AF_INET6))) | |
fd = forward->rfd6->fd; | |
} | |
else | |
{ | |
/* may have changed family */ | |
if (forward->rfd4 || (forward->rfd4 = allocate_rfd(AF_INET))) | |
fd = forward->rfd4->fd; | |
} | |
} | |
| |
/* Can't get socket. */ | |
if (fd == -1) | |
return; | |
| |
#ifdef HAVE_DUMPFILE | |
dump_packet(DUMP_SEC_QUERY, (void *)header, (size_t)plen, NULL, &start->addr); | |
#endif | |
| |
while (retry_send(sendto(fd, (char *)header, plen, 0, | |
&start->addr.sa, | |
sa_len(&start->addr)))); | |
| |
if (start->addr.sa.sa_family == AF_INET) | |
log_query(F_NOEXTRA | F_DNSSEC | F_IPV4, "retry", (union all_addr *)&start->addr.in.sin_addr, "dnssec"); | |
else | |
log_query(F_NOEXTRA | F_DNSSEC | F_IPV6, "retry", (union all_addr *)&start->addr.in6.sin6_addr, "dnssec"); | |
| |
return; | |
} |
} |
|
else |
#endif |
#endif |
|
|
/* In strict order mode, there must be a server later in the chain |
|
left to send to, otherwise without the forwardall mechanism, |
|
code further on will cycle around the list forwever if they |
|
all return REFUSED. Note that server is always non-NULL before |
|
this executes. */ |
|
if (option_bool(OPT_ORDER)) |
|
for (server = forward->sentto->next; server; server = server->next) |
|
if (!(server->flags & (SERV_LITERAL_ADDRESS | SERV_HAS_DOMAIN | SERV_FOR_NODOTS | SERV_NO_ADDR | SERV_LOOP))) |
|
break; |
|
|
|
/* recreate query from reply */ |
|
pheader = find_pseudoheader(header, (size_t)n, &plen, NULL, &is_sign, NULL); |
|
if (!is_sign && server) |
|
{ |
{ |
header->ancount = htons(0); | /* in fast retry mode, we have a copy of the query. */ |
header->nscount = htons(0); | if (daemon->fast_retry_time != 0 && forward->stash) |
header->arcount = htons(0); | |
if ((nn = resize_packet(header, (size_t)n, pheader, plen))) | |
{ |
{ |
|
blockdata_retrieve(forward->stash, forward->stash_len, (void *)header); |
|
nn = forward->stash_len; |
|
/* UDP size already set in saved query. */ |
|
if (find_pseudoheader(header, (size_t)n, NULL, &udpsz, NULL, NULL)) |
|
GETSHORT(udp_size, udpsz); |
|
} |
|
else |
|
{ |
|
/* recreate query from reply */ |
|
if ((pheader = find_pseudoheader(header, (size_t)n, &plen, &udpsz, &is_sign, NULL))) |
|
GETSHORT(udp_size, udpsz); |
|
|
|
/* If the client provides an EDNS0 UDP size, use that to limit our reply. |
|
(bounded by the maximum configured). If no EDNS0, then it |
|
defaults to 512 */ |
|
if (udp_size > daemon->edns_pktsz) |
|
udp_size = daemon->edns_pktsz; |
|
else if (udp_size < PACKETSZ) |
|
udp_size = PACKETSZ; /* Sanity check - can't reduce below default. RFC 6891 6.2.3 */ |
|
|
|
header->ancount = htons(0); |
|
header->nscount = htons(0); |
|
header->arcount = htons(0); |
header->hb3 &= ~(HB3_QR | HB3_AA | HB3_TC); |
header->hb3 &= ~(HB3_QR | HB3_AA | HB3_TC); |
header->hb4 &= ~(HB4_RA | HB4_RCODE | HB4_CD | HB4_AD); |
header->hb4 &= ~(HB4_RA | HB4_RCODE | HB4_CD | HB4_AD); |
if (forward->flags & FREC_CHECKING_DISABLED) |
if (forward->flags & FREC_CHECKING_DISABLED) |
header->hb4 |= HB4_CD; |
header->hb4 |= HB4_CD; |
if (forward->flags & FREC_AD_QUESTION) |
if (forward->flags & FREC_AD_QUESTION) |
header->hb4 |= HB4_AD; |
header->hb4 |= HB4_AD; |
if (forward->flags & FREC_DO_QUESTION) | |
| if (!is_sign && |
| (nn = resize_packet(header, (size_t)n, pheader, plen)) && |
| (forward->flags & FREC_DO_QUESTION)) |
add_do_bit(header, nn, (unsigned char *)pheader + plen); |
add_do_bit(header, nn, (unsigned char *)pheader + plen); |
forward_query(-1, NULL, NULL, 0, header, nn, now, forward, forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION); |
|
return; |
|
} |
} |
} |
} |
} | |
| if (nn) |
server = forward->sentto; | |
if ((forward->sentto->flags & SERV_TYPE) == 0) | |
{ | |
if (RCODE(header) == REFUSED) | |
server = NULL; | |
else | |
{ |
{ |
struct server *last_server; | forward_query(-1, NULL, NULL, 0, header, nn, ((char *) header) + udp_size, now, forward, |
| forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION, 0); |
/* find good server by address if possible, otherwise assume the last one we sent to */ | return; |
for (last_server = daemon->servers; last_server; last_server = last_server->next) | } |
if (!(last_server->flags & (SERV_LITERAL_ADDRESS | SERV_HAS_DOMAIN | SERV_FOR_NODOTS | SERV_NO_ADDR)) && | |
sockaddr_isequal(&last_server->addr, &serveraddr)) | |
{ | |
server = last_server; | |
break; | |
} | |
} | |
if (!option_bool(OPT_ALL_SERVERS)) | |
daemon->last_server = server; | |
} |
} |
| |
| /* If the answer is an error, keep the forward record in place in case |
| we get a good reply from another server. Kill it when we've |
| had replies from all to avoid filling the forwarding table when |
| everything is broken */ |
| |
| /* decrement count of replies recieved if we sent to more than one server. */ |
| if (forward->forwardall && (--forward->forwardall > 1) && RCODE(header) == REFUSED) |
| return; |
| |
/* We tried resending to this server with a smaller maximum size and got an answer. |
/* We tried resending to this server with a smaller maximum size and got an answer. |
Make that permanent. To avoid reduxing the packet size for a single dropped packet, |
Make that permanent. To avoid reduxing the packet size for a single dropped packet, |
only do this when we get a truncated answer, or one larger than the safe size. */ |
only do this when we get a truncated answer, or one larger than the safe size. */ |
if (forward->sentto->edns_pktsz > SAFE_PKTSZ && (forward->flags & FREC_TEST_PKTSZ) && | if (server->edns_pktsz > SAFE_PKTSZ && (forward->flags & FREC_TEST_PKTSZ) && |
((header->hb3 & HB3_TC) || n >= SAFE_PKTSZ)) |
((header->hb3 & HB3_TC) || n >= SAFE_PKTSZ)) |
{ |
{ |
forward->sentto->edns_pktsz = SAFE_PKTSZ; | server->edns_pktsz = SAFE_PKTSZ; |
forward->sentto->pktsz_reduced = now; | server->pktsz_reduced = now; |
(void)prettyprint_addr(&forward->sentto->addr, daemon->addrbuff); | (void)prettyprint_addr(&server->addr, daemon->addrbuff); |
my_syslog(LOG_WARNING, _("reducing DNS packet size for nameserver %s to %d"), daemon->addrbuff, SAFE_PKTSZ); |
my_syslog(LOG_WARNING, _("reducing DNS packet size for nameserver %s to %d"), daemon->addrbuff, SAFE_PKTSZ); |
} |
} |
|
|
| forward->sentto = server; |
/* If the answer is an error, keep the forward record in place in case | |
we get a good reply from another server. Kill it when we've | |
had replies from all to avoid filling the forwarding table when | |
everything is broken */ | |
if (forward->forwardall == 0 || --forward->forwardall == 1 || RCODE(header) != REFUSED) | |
{ | |
int check_rebind = 0, no_cache_dnssec = 0, cache_secure = 0, bogusanswer = 0; | |
| |
if (option_bool(OPT_NO_REBIND)) | |
check_rebind = !(forward->flags & FREC_NOREBIND); | |
| |
/* Don't cache replies where DNSSEC validation was turned off, either | |
the upstream server told us so, or the original query specified it. */ | |
if ((header->hb4 & HB4_CD) || (forward->flags & FREC_CHECKING_DISABLED)) | |
no_cache_dnssec = 1; | |
| |
#ifdef HAVE_DNSSEC | |
if ((forward->sentto->flags & SERV_DO_DNSSEC) && | |
option_bool(OPT_DNSSEC_VALID) && !(forward->flags & FREC_CHECKING_DISABLED)) | |
{ | |
int status = 0; | |
|
|
/* We've had a reply already, which we're validating. Ignore this duplicate */ | /* We have a good answer, and will now validate it or return it. |
if (forward->blocking_query) | It may be some time before this the validation completes, but we don't need |
return; | any more answers, so close the socket(s) on which we were expecting |
| answers, to conserve file descriptors, and to save work reading and |
/* Truncated answer can't be validated. | discarding answers for other upstreams. */ |
If this is an answer to a DNSSEC-generated query, we still | free_rfds(&forward->rfds); |
need to get the client to retry over TCP, so return | |
an answer with the TC bit set, even if the actual answer fits. | /* calculate modified moving average of server latency */ |
*/ | if (server->query_latency == 0) |
if (header->hb3 & HB3_TC) | server->mma_latency = (dnsmasq_milliseconds() - forward->forward_timestamp) * 128; /* init */ |
status = STAT_TRUNCATED; | else |
| server->mma_latency += dnsmasq_milliseconds() - forward->forward_timestamp - server->query_latency; |
while (1) | /* denominator controls how many queries we average over. */ |
{ | server->query_latency = server->mma_latency/128; |
/* As soon as anything returns BOGUS, we stop and unwind, to do otherwise | |
would invite infinite loops, since the answers to DNSKEY and DS queries | |
will not be cached, so they'll be repeated. */ | #ifdef HAVE_DNSSEC |
if (status != STAT_BOGUS && status != STAT_TRUNCATED && status != STAT_ABANDONED) | if ((forward->sentto->flags & SERV_DO_DNSSEC) && |
{ | option_bool(OPT_DNSSEC_VALID) && |
if (forward->flags & FREC_DNSKEY_QUERY) | !(forward->flags & FREC_CHECKING_DISABLED)) |
status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class); | dnssec_validate(forward, header, n, STAT_OK, now); |
else if (forward->flags & FREC_DS_QUERY) | else |
status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class); | |
else | |
status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, | |
!option_bool(OPT_DNSSEC_IGN_NS) && (forward->sentto->flags & SERV_DO_DNSSEC), | |
NULL, NULL, NULL); | |
#ifdef HAVE_DUMPFILE | |
if (status == STAT_BOGUS) | |
dump_packet((forward->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)) ? DUMP_SEC_BOGUS : DUMP_BOGUS, | |
header, (size_t)n, &serveraddr, NULL); | |
#endif |
#endif |
} | return_reply(now, forward, header, n, STAT_OK); |
| } |
/* Can't validate, as we're missing key data. Put this | |
answer aside, whilst we get that. */ | |
if (status == STAT_NEED_DS || status == STAT_NEED_KEY) | |
{ | |
struct frec *new, *orig; | |
| |
/* Free any saved query */ | |
if (forward->stash) | |
blockdata_free(forward->stash); | |
| |
/* Now save reply pending receipt of key data */ | |
if (!(forward->stash = blockdata_alloc((char *)header, n))) | |
return; | |
forward->stash_len = n; | |
| |
/* Find the original query that started it all.... */ | |
for (orig = forward; orig->dependent; orig = orig->dependent); | |
| |
/* Make sure we don't expire and free the orig frec during the | |
allocation of a new one. */ | |
if (--orig->work_counter == 0 || !(new = get_new_frec(now, NULL, orig))) | |
status = STAT_ABANDONED; | |
else | |
{ | |
int querytype, fd, type = SERV_DO_DNSSEC; | |
struct frec *next = new->next; | |
char *domain; | |
| |
*new = *forward; /* copy everything, then overwrite */ | |
new->next = next; | |
new->blocking_query = NULL; | |
|
|
/* Find server to forward to. This will normally be the | static void return_reply(time_t now, struct frec *forward, struct dns_header *header, ssize_t n, int status) |
same as for the original query, but may be another if | { |
servers for domains are involved. */ | int check_rebind = 0, no_cache_dnssec = 0, cache_secure = 0, bogusanswer = 0; |
if (search_servers(now, NULL, F_DNSSECOK, daemon->keyname, &type, &domain, NULL) == 0) | size_t nn; |
{ | int ede = EDE_UNSET; |
struct server *start, *new_server = NULL; | |
start = server = forward->sentto; | |
| |
while (1) | |
{ | |
if (type == (start->flags & (SERV_TYPE | SERV_DO_DNSSEC)) && | |
((type & SERV_TYPE) != SERV_HAS_DOMAIN || hostname_isequal(domain, start->domain)) && | |
!(start->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP))) | |
{ | |
new_server = start; | |
if (server == start) | |
{ | |
new_server = NULL; | |
break; | |
} | |
} | |
| |
if (!(start = start->next)) | |
start = daemon->servers; | |
if (start == server) | |
break; | |
} | |
| |
if (new_server) | |
server = new_server; | |
} | |
| |
new->sentto = server; | |
new->rfd4 = NULL; | |
new->rfd6 = NULL; | |
new->frec_src.next = NULL; | |
new->flags &= ~(FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_HAS_EXTRADATA); | |
new->forwardall = 0; | |
| |
new->dependent = forward; /* to find query awaiting new one. */ | |
forward->blocking_query = new; /* for garbage cleaning */ | |
/* validate routines leave name of required record in daemon->keyname */ | |
if (status == STAT_NEED_KEY) | |
{ | |
new->flags |= FREC_DNSKEY_QUERY; | |
querytype = T_DNSKEY; | |
} | |
else | |
{ | |
new->flags |= FREC_DS_QUERY; | |
querytype = T_DS; | |
} | |
|
|
nn = dnssec_generate_query(header,((unsigned char *) header) + server->edns_pktsz, | (void)status; |
daemon->keyname, forward->class, querytype, server->edns_pktsz); | |
|
|
if (server->addr.sa.sa_family == AF_INET) | daemon->log_display_id = forward->frec_src.log_id; |
log_query(F_NOEXTRA | F_DNSSEC | F_IPV4, daemon->keyname, (union all_addr *)&(server->addr.in.sin_addr), | daemon->log_source_addr = &forward->frec_src.source; |
querystr("dnssec-query", querytype)); | |
else | |
log_query(F_NOEXTRA | F_DNSSEC | F_IPV6, daemon->keyname, (union all_addr *)&(server->addr.in6.sin6_addr), | |
querystr("dnssec-query", querytype)); | |
|
|
memcpy(new->hash, hash_questions(header, nn, daemon->namebuff), HASH_SIZE); | /* Don't cache replies where DNSSEC validation was turned off, either |
new->new_id = get_id(); | the upstream server told us so, or the original query specified it. */ |
header->id = htons(new->new_id); | if ((header->hb4 & HB4_CD) || (forward->flags & FREC_CHECKING_DISABLED)) |
/* Save query for retransmission */ | no_cache_dnssec = 1; |
new->stash = blockdata_alloc((char *)header, nn); | |
new->stash_len = nn; | #ifdef HAVE_DNSSEC |
| if (!STAT_ISEQUAL(status, STAT_OK)) |
/* Don't resend this. */ | { |
daemon->srv_save = NULL; | /* status is STAT_OK when validation not turned on. */ |
| no_cache_dnssec = 0; |
if (server->sfd) | |
fd = server->sfd->fd; | if (STAT_ISEQUAL(status, STAT_TRUNCATED)) |
else | header->hb3 |= HB3_TC; |
{ | else |
fd = -1; | { |
if (server->addr.sa.sa_family == AF_INET6) | char *result, *domain = "result"; |
{ | union all_addr a; |
if (new->rfd6 || (new->rfd6 = allocate_rfd(AF_INET6))) | |
fd = new->rfd6->fd; | a.log.ede = ede = errflags_to_ede(status); |
} | |
else | if (STAT_ISEQUAL(status, STAT_ABANDONED)) |
{ | |
if (new->rfd4 || (new->rfd4 = allocate_rfd(AF_INET))) | |
fd = new->rfd4->fd; | |
} | |
} | |
| |
if (fd != -1) | |
{ | |
#ifdef HAVE_CONNTRACK | |
/* Copy connection mark of incoming query to outgoing connection. */ | |
if (option_bool(OPT_CONNTRACK)) | |
{ | |
unsigned int mark; | |
if (get_incoming_mark(&orig->frec_src.source, &orig->frec_src.dest, 0, &mark)) | |
setsockopt(fd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int)); | |
} | |
#endif | |
| |
#ifdef HAVE_DUMPFILE | |
dump_packet(DUMP_SEC_QUERY, (void *)header, (size_t)nn, NULL, &server->addr); | |
#endif | |
| |
while (retry_send(sendto(fd, (char *)header, nn, 0, | |
&server->addr.sa, | |
sa_len(&server->addr)))); | |
server->queries++; | |
} | |
} | |
return; | |
} | |
| |
/* Validated original answer, all done. */ | |
if (!forward->dependent) | |
break; | |
| |
/* validated subsidiary query, (and cached result) | |
pop that and return to the previous query we were working on. */ | |
struct frec *prev = forward->dependent; | |
free_frec(forward); | |
forward = prev; | |
forward->blocking_query = NULL; /* already gone */ | |
blockdata_retrieve(forward->stash, forward->stash_len, (void *)header); | |
n = forward->stash_len; | |
} | |
| |
| |
no_cache_dnssec = 0; | |
| |
if (status == STAT_TRUNCATED) | |
header->hb3 |= HB3_TC; | |
else | |
{ |
{ |
char *result, *domain = "result"; | result = "ABANDONED"; |
| status = STAT_BOGUS; |
if (status == STAT_ABANDONED) | |
{ | |
result = "ABANDONED"; | |
status = STAT_BOGUS; | |
} | |
else | |
result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS")); | |
| |
if (status == STAT_BOGUS && extract_request(header, n, daemon->namebuff, NULL)) | |
domain = daemon->namebuff; | |
| |
log_query(F_SECSTAT, domain, NULL, result); | |
} |
} |
|
else |
|
result = (STAT_ISEQUAL(status, STAT_SECURE) ? "SECURE" : (STAT_ISEQUAL(status, STAT_INSECURE) ? "INSECURE" : "BOGUS")); |
|
|
if (status == STAT_SECURE) | if (STAT_ISEQUAL(status, STAT_SECURE)) |
cache_secure = 1; |
cache_secure = 1; |
else if (status == STAT_BOGUS) | else if (STAT_ISEQUAL(status, STAT_BOGUS)) |
{ |
{ |
no_cache_dnssec = 1; |
no_cache_dnssec = 1; |
bogusanswer = 1; |
bogusanswer = 1; |
|
|
|
if (extract_request(header, n, daemon->namebuff, NULL)) |
|
domain = daemon->namebuff; |
} |
} |
|
|
|
log_query(F_SECSTAT, domain, &a, result, 0); |
} |
} |
| } |
#endif |
#endif |
| |
/* restore CD bit to the value in the query */ | if (option_bool(OPT_NO_REBIND)) |
if (forward->flags & FREC_CHECKING_DISABLED) | check_rebind = !(forward->flags & FREC_NOREBIND); |
header->hb4 |= HB4_CD; | |
else | /* restore CD bit to the value in the query */ |
header->hb4 &= ~HB4_CD; | if (forward->flags & FREC_CHECKING_DISABLED) |
| header->hb4 |= HB4_CD; |
/* Never cache answers which are contingent on the source or MAC address EDSN0 option, | else |
since the cache is ignorant of such things. */ | header->hb4 &= ~HB4_CD; |
if (forward->flags & FREC_NO_CACHE) | |
no_cache_dnssec = 1; | /* Never cache answers which are contingent on the source or MAC address EDSN0 option, |
| since the cache is ignorant of such things. */ |
| if (forward->flags & FREC_NO_CACHE) |
| no_cache_dnssec = 1; |
| |
| if ((nn = process_reply(header, now, forward->sentto, (size_t)n, check_rebind, no_cache_dnssec, cache_secure, bogusanswer, |
| forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION, |
| forward->flags & FREC_ADDED_PHEADER, &forward->frec_src.source, |
| ((unsigned char *)header) + daemon->edns_pktsz, ede))) |
| { |
| struct frec_src *src; |
|
|
if ((nn = process_reply(header, now, forward->sentto, (size_t)n, check_rebind, no_cache_dnssec, cache_secure, bogusanswer, | header->id = htons(forward->frec_src.orig_id); |
forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION, | |
forward->flags & FREC_ADDED_PHEADER, forward->flags & FREC_HAS_SUBNET, &forward->frec_src.source))) | |
{ | |
struct frec_src *src; | |
| |
header->id = htons(forward->frec_src.orig_id); | |
header->hb4 |= HB4_RA; /* recursion if available */ | |
#ifdef HAVE_DNSSEC |
#ifdef HAVE_DNSSEC |
/* We added an EDNSO header for the purpose of getting DNSSEC RRs, and set the value of the UDP payload size | /* We added an EDNSO header for the purpose of getting DNSSEC RRs, and set the value of the UDP payload size |
greater than the no-EDNS0-implied 512 to have space for the RRSIGS. If, having stripped them and the EDNS0 | greater than the no-EDNS0-implied 512 to have space for the RRSIGS. If, having stripped them and the EDNS0 |
header, the answer is still bigger than 512, truncate it and mark it so. The client then retries with TCP. */ | header, the answer is still bigger than 512, truncate it and mark it so. The client then retries with TCP. */ |
if (option_bool(OPT_DNSSEC_VALID) && (forward->flags & FREC_ADDED_PHEADER) && (nn > PACKETSZ)) | if (option_bool(OPT_DNSSEC_VALID) && (forward->flags & FREC_ADDED_PHEADER) && (nn > PACKETSZ)) |
| { |
| header->ancount = htons(0); |
| header->nscount = htons(0); |
| header->arcount = htons(0); |
| header->hb3 |= HB3_TC; |
| nn = resize_packet(header, nn, NULL, 0); |
| } |
| #endif |
| |
| for (src = &forward->frec_src; src; src = src->next) |
| { |
| header->id = htons(src->orig_id); |
| |
| #if defined(HAVE_CONNTRACK) && defined(HAVE_UBUS) |
| if (option_bool(OPT_CMARK_ALST_EN)) |
{ |
{ |
header->ancount = htons(0); | unsigned int mark; |
header->nscount = htons(0); | int have_mark = get_incoming_mark(&src->source, &src->dest, /* istcp: */ 0, &mark); |
header->arcount = htons(0); | if (have_mark && ((u32)mark & daemon->allowlist_mask)) |
header->hb3 |= HB3_TC; | report_addresses(header, nn, mark); |
nn = resize_packet(header, nn, NULL, 0); | |
} |
} |
#endif |
#endif |
| |
for (src = &forward->frec_src; src; src = src->next) | if (src->fd != -1) |
{ |
{ |
header->id = htons(src->orig_id); |
|
|
|
#ifdef HAVE_DUMPFILE |
#ifdef HAVE_DUMPFILE |
dump_packet(DUMP_REPLY, daemon->packet, (size_t)nn, NULL, &src->source); | dump_packet_udp(DUMP_REPLY, daemon->packet, (size_t)nn, NULL, &src->source, src->fd); |
#endif | #endif |
| |
send_from(src->fd, option_bool(OPT_NOWILD) || option_bool (OPT_CLEVERBIND), daemon->packet, nn, |
send_from(src->fd, option_bool(OPT_NOWILD) || option_bool (OPT_CLEVERBIND), daemon->packet, nn, |
&src->source, &src->dest, src->iface); |
&src->source, &src->dest, src->iface); |
| |
if (option_bool(OPT_EXTRALOG) && src != &forward->frec_src) |
if (option_bool(OPT_EXTRALOG) && src != &forward->frec_src) |
{ |
{ |
daemon->log_display_id = src->log_id; |
daemon->log_display_id = src->log_id; |
daemon->log_source_addr = &src->source; |
daemon->log_source_addr = &src->source; |
log_query(F_UPSTREAM, "query", NULL, "duplicate"); | log_query(F_UPSTREAM, "query", NULL, "duplicate", 0); |
} |
} |
} |
} |
} |
} |
|
|
free_frec(forward); /* cancel */ |
|
} |
} |
|
|
|
free_frec(forward); /* cancel */ |
} |
} |
|
|
|
|
|
#ifdef HAVE_CONNTRACK |
|
static int is_query_allowed_for_mark(u32 mark, const char *name) |
|
{ |
|
int is_allowable_name, did_validate_name = 0; |
|
struct allowlist *allowlists; |
|
char **patterns_pos; |
|
|
|
for (allowlists = daemon->allowlists; allowlists; allowlists = allowlists->next) |
|
if (allowlists->mark == (mark & daemon->allowlist_mask & allowlists->mask)) |
|
for (patterns_pos = allowlists->patterns; *patterns_pos; patterns_pos++) |
|
{ |
|
if (!strcmp(*patterns_pos, "*")) |
|
return 1; |
|
if (!did_validate_name) |
|
{ |
|
is_allowable_name = name ? is_valid_dns_name(name) : 0; |
|
did_validate_name = 1; |
|
} |
|
if (is_allowable_name && is_dns_name_matching_pattern(name, *patterns_pos)) |
|
return 1; |
|
} |
|
return 0; |
|
} |
|
|
|
static size_t answer_disallowed(struct dns_header *header, size_t qlen, u32 mark, const char *name) |
|
{ |
|
unsigned char *p; |
|
(void)name; |
|
(void)mark; |
|
|
|
#ifdef HAVE_UBUS |
|
if (name) |
|
ubus_event_bcast_connmark_allowlist_refused(mark, name); |
|
#endif |
|
|
|
setup_reply(header, /* flags: */ 0, EDE_BLOCKED); |
|
|
|
if (!(p = skip_questions(header, qlen))) |
|
return 0; |
|
return p - (unsigned char *)header; |
|
} |
|
#endif |
|
|
void receive_query(struct listener *listen, time_t now) |
void receive_query(struct listener *listen, time_t now) |
{ |
{ |
struct dns_header *header = (struct dns_header *)daemon->packet; |
struct dns_header *header = (struct dns_header *)daemon->packet; |
Line 1329 void receive_query(struct listener *listen, time_t now
|
Line 1458 void receive_query(struct listener *listen, time_t now
|
size_t m; |
size_t m; |
ssize_t n; |
ssize_t n; |
int if_index = 0, auth_dns = 0, do_bit = 0, have_pseudoheader = 0; |
int if_index = 0, auth_dns = 0, do_bit = 0, have_pseudoheader = 0; |
|
#ifdef HAVE_CONNTRACK |
|
unsigned int mark = 0; |
|
int have_mark = 0; |
|
int is_single_query = 0, allowed = 1; |
|
#endif |
#ifdef HAVE_AUTH |
#ifdef HAVE_AUTH |
int local_auth = 0; |
int local_auth = 0; |
#endif |
#endif |
Line 1351 void receive_query(struct listener *listen, time_t now
|
Line 1485 void receive_query(struct listener *listen, time_t now
|
int family = listen->addr.sa.sa_family; |
int family = listen->addr.sa.sa_family; |
/* Can always get recvd interface for IPv6 */ |
/* Can always get recvd interface for IPv6 */ |
int check_dst = !option_bool(OPT_NOWILD) || family == AF_INET6; |
int check_dst = !option_bool(OPT_NOWILD) || family == AF_INET6; |
| |
/* packet buffer overwritten */ |
/* packet buffer overwritten */ |
daemon->srv_save = NULL; |
daemon->srv_save = NULL; |
| |
dst_addr_4.s_addr = dst_addr.addr4.s_addr = 0; |
dst_addr_4.s_addr = dst_addr.addr4.s_addr = 0; |
netmask.s_addr = 0; |
netmask.s_addr = 0; |
|
|
Line 1437 void receive_query(struct listener *listen, time_t now
|
Line 1571 void receive_query(struct listener *listen, time_t now
|
static int warned = 0; |
static int warned = 0; |
if (!warned) |
if (!warned) |
{ |
{ |
my_syslog(LOG_WARNING, _("Ignoring query from non-local network")); | prettyprint_addr(&source_addr, daemon->addrbuff); |
| my_syslog(LOG_WARNING, _("ignoring query from non-local network %s (logged only once)"), daemon->addrbuff); |
warned = 1; |
warned = 1; |
} |
} |
return; |
return; |
Line 1555 void receive_query(struct listener *listen, time_t now
|
Line 1690 void receive_query(struct listener *listen, time_t now
|
daemon->log_source_addr = &source_addr; |
daemon->log_source_addr = &source_addr; |
|
|
#ifdef HAVE_DUMPFILE |
#ifdef HAVE_DUMPFILE |
dump_packet(DUMP_QUERY, daemon->packet, (size_t)n, &source_addr, NULL); | dump_packet_udp(DUMP_QUERY, daemon->packet, (size_t)n, &source_addr, NULL, listen->fd); |
#endif |
#endif |
|
|
|
#ifdef HAVE_CONNTRACK |
|
if (option_bool(OPT_CMARK_ALST_EN)) |
|
have_mark = get_incoming_mark(&source_addr, &dst_addr, /* istcp: */ 0, &mark); |
|
#endif |
|
|
if (extract_request(header, (size_t)n, daemon->namebuff, &type)) |
if (extract_request(header, (size_t)n, daemon->namebuff, &type)) |
{ |
{ |
#ifdef HAVE_AUTH |
#ifdef HAVE_AUTH |
struct auth_zone *zone; |
struct auth_zone *zone; |
#endif |
#endif |
char *types = querystr(auth_dns ? "auth" : "query", type); | log_query_mysockaddr(F_QUERY | F_FORWARD, daemon->namebuff, |
| &source_addr, auth_dns ? "auth" : "query", type); |
|
|
if (family == AF_INET) | #ifdef HAVE_CONNTRACK |
log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff, | is_single_query = 1; |
(union all_addr *)&source_addr.in.sin_addr, types); | #endif |
else | |
log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff, | |
(union all_addr *)&source_addr.in6.sin6_addr, types); | |
|
|
#ifdef HAVE_AUTH |
#ifdef HAVE_AUTH |
/* find queries for zones we're authoritative for, and answer them directly */ |
/* find queries for zones we're authoritative for, and answer them directly */ |
Line 1605 void receive_query(struct listener *listen, time_t now
|
Line 1743 void receive_query(struct listener *listen, time_t now
|
|
|
/* If the client provides an EDNS0 UDP size, use that to limit our reply. |
/* If the client provides an EDNS0 UDP size, use that to limit our reply. |
(bounded by the maximum configured). If no EDNS0, then it |
(bounded by the maximum configured). If no EDNS0, then it |
defaults to 512 */ | defaults to 512. We write this value into the query packet too, so that |
| if it's forwarded, we don't specify a maximum size greater than we can handle. */ |
if (udp_size > daemon->edns_pktsz) |
if (udp_size > daemon->edns_pktsz) |
udp_size = daemon->edns_pktsz; |
udp_size = daemon->edns_pktsz; |
else if (udp_size < PACKETSZ) |
else if (udp_size < PACKETSZ) |
udp_size = PACKETSZ; /* Sanity check - can't reduce below default. RFC 6891 6.2.3 */ |
udp_size = PACKETSZ; /* Sanity check - can't reduce below default. RFC 6891 6.2.3 */ |
|
|
|
pheader -= 6; /* ext_class */ |
|
PUTSHORT(udp_size, pheader); /* Bounding forwarded queries to maximum configured */ |
} |
} |
|
|
|
#ifdef HAVE_CONNTRACK |
|
#ifdef HAVE_AUTH |
|
if (!auth_dns || local_auth) |
|
#endif |
|
if (option_bool(OPT_CMARK_ALST_EN) && have_mark && ((u32)mark & daemon->allowlist_mask)) |
|
allowed = is_query_allowed_for_mark((u32)mark, is_single_query ? daemon->namebuff : NULL); |
|
#endif |
|
|
|
if (0); |
|
#ifdef HAVE_CONNTRACK |
|
else if (!allowed) |
|
{ |
|
u16 swap = htons(EDE_BLOCKED); |
|
|
|
m = answer_disallowed(header, (size_t)n, (u32)mark, is_single_query ? daemon->namebuff : NULL); |
|
|
|
if (have_pseudoheader && m != 0) |
|
m = add_pseudoheader(header, m, ((unsigned char *) header) + udp_size, daemon->edns_pktsz, |
|
EDNS0_OPTION_EDE, (unsigned char *)&swap, 2, do_bit, 0); |
|
|
|
if (m >= 1) |
|
{ |
|
#ifdef HAVE_DUMPFILE |
|
dump_packet_udp(DUMP_REPLY, daemon->packet, m, NULL, &source_addr, listen->fd); |
|
#endif |
|
send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), |
|
(char *)header, m, &source_addr, &dst_addr, if_index); |
|
daemon->metrics[METRIC_DNS_LOCAL_ANSWERED]++; |
|
} |
|
} |
|
#endif |
#ifdef HAVE_AUTH |
#ifdef HAVE_AUTH |
if (auth_dns) | else if (auth_dns) |
{ |
{ |
m = answer_auth(header, ((char *) header) + udp_size, (size_t)n, now, &source_addr, |
m = answer_auth(header, ((char *) header) + udp_size, (size_t)n, now, &source_addr, |
local_auth, do_bit, have_pseudoheader); |
local_auth, do_bit, have_pseudoheader); |
if (m >= 1) |
if (m >= 1) |
{ |
{ |
|
#ifdef HAVE_DUMPFILE |
|
dump_packet_udp(DUMP_REPLY, daemon->packet, m, NULL, &source_addr, listen->fd); |
|
#endif |
|
#if defined(HAVE_CONNTRACK) && defined(HAVE_UBUS) |
|
if (local_auth) |
|
if (option_bool(OPT_CMARK_ALST_EN) && have_mark && ((u32)mark & daemon->allowlist_mask)) |
|
report_addresses(header, m, mark); |
|
#endif |
send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), |
send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), |
(char *)header, m, &source_addr, &dst_addr, if_index); |
(char *)header, m, &source_addr, &dst_addr, if_index); |
daemon->metrics[METRIC_DNS_AUTH_ANSWERED]++; |
daemon->metrics[METRIC_DNS_AUTH_ANSWERED]++; |
} |
} |
} |
} |
else |
|
#endif |
#endif |
|
else |
{ |
{ |
|
int stale; |
int ad_reqd = do_bit; |
int ad_reqd = do_bit; |
/* RFC 6840 5.7 */ | u16 hb3 = header->hb3, hb4 = header->hb4; |
| int fd = listen->fd; |
| |
| /* RFC 6840 5.7 */ |
if (header->hb4 & HB4_AD) |
if (header->hb4 & HB4_AD) |
ad_reqd = 1; |
ad_reqd = 1; |
| |
m = answer_request(header, ((char *) header) + udp_size, (size_t)n, |
m = answer_request(header, ((char *) header) + udp_size, (size_t)n, |
dst_addr_4, netmask, now, ad_reqd, do_bit, have_pseudoheader); | dst_addr_4, netmask, now, ad_reqd, do_bit, have_pseudoheader, &stale); |
|
|
if (m >= 1) |
if (m >= 1) |
{ |
{ |
|
if (stale && have_pseudoheader) |
|
{ |
|
u16 swap = htons(EDE_STALE); |
|
|
|
m = add_pseudoheader(header, m, ((unsigned char *) header) + udp_size, daemon->edns_pktsz, |
|
EDNS0_OPTION_EDE, (unsigned char *)&swap, 2, do_bit, 0); |
|
} |
|
#ifdef HAVE_DUMPFILE |
|
dump_packet_udp(DUMP_REPLY, daemon->packet, m, NULL, &source_addr, listen->fd); |
|
#endif |
|
#if defined(HAVE_CONNTRACK) && defined(HAVE_UBUS) |
|
if (option_bool(OPT_CMARK_ALST_EN) && have_mark && ((u32)mark & daemon->allowlist_mask)) |
|
report_addresses(header, m, mark); |
|
#endif |
send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), |
send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), |
(char *)header, m, &source_addr, &dst_addr, if_index); |
(char *)header, m, &source_addr, &dst_addr, if_index); |
daemon->metrics[METRIC_DNS_LOCAL_ANSWERED]++; |
daemon->metrics[METRIC_DNS_LOCAL_ANSWERED]++; |
|
if (stale) |
|
daemon->metrics[METRIC_DNS_STALE_ANSWERED]++; |
} |
} |
else if (forward_query(listen->fd, &source_addr, &dst_addr, if_index, | |
header, (size_t)n, now, NULL, ad_reqd, do_bit)) | if (m == 0 || stale) |
daemon->metrics[METRIC_DNS_QUERIES_FORWARDED]++; | { |
else | if (m != 0) |
daemon->metrics[METRIC_DNS_LOCAL_ANSWERED]++; | { |
| size_t plen; |
| |
| /* We answered with stale cache data, so forward the query anyway to |
| refresh that. Restore the query from the answer packet. */ |
| pheader = find_pseudoheader(header, (size_t)m, &plen, NULL, NULL, NULL); |
| |
| header->hb3 = hb3; |
| header->hb4 = hb4; |
| header->ancount = htons(0); |
| header->nscount = htons(0); |
| header->arcount = htons(0); |
| |
| m = resize_packet(header, m, pheader, plen); |
| |
| /* We've already answered the client, so don't send it the answer |
| when it comes back. */ |
| fd = -1; |
| } |
| |
| if (forward_query(fd, &source_addr, &dst_addr, if_index, |
| header, (size_t)n, ((char *) header) + udp_size, now, NULL, ad_reqd, do_bit, 0)) |
| daemon->metrics[METRIC_DNS_QUERIES_FORWARDED]++; |
| else |
| daemon->metrics[METRIC_DNS_LOCAL_ANSWERED]++; |
| } |
} |
} |
} |
} |
|
|
|
/* Send query in packet, qsize to a server determined by first,last,start and |
|
get the reply. return reply size. */ |
|
static ssize_t tcp_talk(int first, int last, int start, unsigned char *packet, size_t qsize, |
|
int have_mark, unsigned int mark, struct server **servp) |
|
{ |
|
int firstsendto = -1; |
|
u16 *length = (u16 *)packet; |
|
unsigned char *payload = &packet[2]; |
|
struct dns_header *header = (struct dns_header *)payload; |
|
unsigned char c1, c2; |
|
unsigned char hash[HASH_SIZE], *hashp; |
|
unsigned int rsize; |
|
|
|
(void)mark; |
|
(void)have_mark; |
|
|
|
if (!(hashp = hash_questions(header, (unsigned int)qsize, daemon->namebuff))) |
|
return 0; |
|
|
|
memcpy(hash, hashp, HASH_SIZE); |
|
|
|
while (1) |
|
{ |
|
int data_sent = 0; |
|
struct server *serv; |
|
|
|
if (firstsendto == -1) |
|
firstsendto = start; |
|
else |
|
{ |
|
start++; |
|
|
|
if (start == last) |
|
start = first; |
|
|
|
if (start == firstsendto) |
|
break; |
|
} |
|
|
|
serv = daemon->serverarray[start]; |
|
|
|
retry: |
|
*length = htons(qsize); |
|
|
|
if (serv->tcpfd == -1) |
|
{ |
|
if ((serv->tcpfd = socket(serv->addr.sa.sa_family, SOCK_STREAM, 0)) == -1) |
|
continue; |
|
|
|
#ifdef HAVE_CONNTRACK |
|
/* Copy connection mark of incoming query to outgoing connection. */ |
|
if (have_mark) |
|
setsockopt(serv->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int)); |
|
#endif |
|
|
|
if ((!local_bind(serv->tcpfd, &serv->source_addr, serv->interface, 0, 1))) |
|
{ |
|
close(serv->tcpfd); |
|
serv->tcpfd = -1; |
|
continue; |
|
} |
|
|
|
#ifdef MSG_FASTOPEN |
|
server_send(serv, serv->tcpfd, packet, qsize + sizeof(u16), MSG_FASTOPEN); |
|
|
|
if (errno == 0) |
|
data_sent = 1; |
|
#endif |
|
|
|
if (!data_sent && connect(serv->tcpfd, &serv->addr.sa, sa_len(&serv->addr)) == -1) |
|
{ |
|
close(serv->tcpfd); |
|
serv->tcpfd = -1; |
|
continue; |
|
} |
|
|
|
daemon->serverarray[first]->last_server = start; |
|
serv->flags &= ~SERV_GOT_TCP; |
|
} |
|
|
|
if ((!data_sent && !read_write(serv->tcpfd, packet, qsize + sizeof(u16), 0)) || |
|
!read_write(serv->tcpfd, &c1, 1, 1) || |
|
!read_write(serv->tcpfd, &c2, 1, 1) || |
|
!read_write(serv->tcpfd, payload, (rsize = (c1 << 8) | c2), 1)) |
|
{ |
|
close(serv->tcpfd); |
|
serv->tcpfd = -1; |
|
/* We get data then EOF, reopen connection to same server, |
|
else try next. This avoids DoS from a server which accepts |
|
connections and then closes them. */ |
|
if (serv->flags & SERV_GOT_TCP) |
|
goto retry; |
|
else |
|
continue; |
|
} |
|
|
|
/* If the hash of the question section doesn't match the crc we sent, then |
|
someone might be attempting to insert bogus values into the cache by |
|
sending replies containing questions and bogus answers. |
|
Try another server, or give up */ |
|
if (!(hashp = hash_questions(header, rsize, daemon->namebuff)) || memcmp(hash, hashp, HASH_SIZE) != 0) |
|
continue; |
|
|
|
serv->flags |= SERV_GOT_TCP; |
|
|
|
*servp = serv; |
|
return rsize; |
|
} |
|
|
|
return 0; |
|
} |
|
|
#ifdef HAVE_DNSSEC |
#ifdef HAVE_DNSSEC |
/* Recurse up the key hierarchy */ | /* Recurse down the key hierarchy */ |
static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n, |
static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n, |
int class, char *name, char *keyname, struct server *server, |
int class, char *name, char *keyname, struct server *server, |
int have_mark, unsigned int mark, int *keycount) |
int have_mark, unsigned int mark, int *keycount) |
{ |
{ |
int new_status; | int first, last, start, new_status; |
unsigned char *packet = NULL; |
unsigned char *packet = NULL; |
unsigned char *payload = NULL; |
|
struct dns_header *new_header = NULL; |
struct dns_header *new_header = NULL; |
u16 *length = NULL; | |
| |
while (1) |
while (1) |
{ |
{ |
int type = SERV_DO_DNSSEC; | size_t m; |
char *domain; | int log_save; |
size_t m; | |
unsigned char c1, c2; | |
struct server *firstsendto = NULL; | |
| |
/* limit the amount of work we do, to avoid cycling forever on loops in the DNS */ |
/* limit the amount of work we do, to avoid cycling forever on loops in the DNS */ |
if (--(*keycount) == 0) |
if (--(*keycount) == 0) |
new_status = STAT_ABANDONED; |
new_status = STAT_ABANDONED; |
else if (status == STAT_NEED_KEY) | else if (STAT_ISEQUAL(status, STAT_NEED_KEY)) |
new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class); |
new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class); |
else if (status == STAT_NEED_DS) | else if (STAT_ISEQUAL(status, STAT_NEED_DS)) |
new_status = dnssec_validate_ds(now, header, n, name, keyname, class); |
new_status = dnssec_validate_ds(now, header, n, name, keyname, class); |
else |
else |
new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, |
new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, |
!option_bool(OPT_DNSSEC_IGN_NS) && (server->flags & SERV_DO_DNSSEC), |
!option_bool(OPT_DNSSEC_IGN_NS) && (server->flags & SERV_DO_DNSSEC), |
NULL, NULL, NULL); |
NULL, NULL, NULL); |
|
|
if (new_status != STAT_NEED_DS && new_status != STAT_NEED_KEY) | if (!STAT_ISEQUAL(new_status, STAT_NEED_DS) && !STAT_ISEQUAL(new_status, STAT_NEED_KEY)) |
break; |
break; |
|
|
/* Can't validate because we need a key/DS whose name now in keyname. |
/* Can't validate because we need a key/DS whose name now in keyname. |
Line 1689 static int tcp_key_recurse(time_t now, int status, str
|
Line 2022 static int tcp_key_recurse(time_t now, int status, str
|
if (!packet) |
if (!packet) |
{ |
{ |
packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16)); |
packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16)); |
payload = &packet[2]; | new_header = (struct dns_header *)&packet[2]; |
new_header = (struct dns_header *)payload; | |
length = (u16 *)packet; | |
} |
} |
|
|
if (!packet) |
if (!packet) |
Line 1701 static int tcp_key_recurse(time_t now, int status, str
|
Line 2032 static int tcp_key_recurse(time_t now, int status, str
|
} |
} |
|
|
m = dnssec_generate_query(new_header, ((unsigned char *) new_header) + 65536, keyname, class, |
m = dnssec_generate_query(new_header, ((unsigned char *) new_header) + 65536, keyname, class, |
new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS, server->edns_pktsz); | STAT_ISEQUAL(new_status, STAT_NEED_KEY) ? T_DNSKEY : T_DS, server->edns_pktsz); |
|
|
*length = htons(m); | if ((start = dnssec_server(server, daemon->keyname, &first, &last)) == -1 || |
| (m = tcp_talk(first, last, start, packet, m, have_mark, mark, &server)) == 0) |
/* Find server to forward to. This will normally be the | |
same as for the original query, but may be another if | |
servers for domains are involved. */ | |
if (search_servers(now, NULL, F_DNSSECOK, keyname, &type, &domain, NULL) != 0) | |
{ |
{ |
new_status = STAT_ABANDONED; |
new_status = STAT_ABANDONED; |
break; |
break; |
} |
} |
|
|
while (1) |
|
{ |
|
int data_sent = 0; |
|
|
|
if (!firstsendto) |
|
firstsendto = server; |
|
else |
|
{ |
|
if (!(server = server->next)) |
|
server = daemon->servers; |
|
if (server == firstsendto) |
|
{ |
|
/* can't find server to accept our query. */ |
|
new_status = STAT_ABANDONED; |
|
break; |
|
} |
|
} |
|
|
|
if (type != (server->flags & (SERV_TYPE | SERV_DO_DNSSEC)) || |
|
(type == SERV_HAS_DOMAIN && !hostname_isequal(domain, server->domain)) || |
|
(server->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP))) |
|
continue; |
|
|
|
retry: | log_save = daemon->log_display_id; |
/* may need to make new connection. */ | daemon->log_display_id = ++daemon->log_id; |
if (server->tcpfd == -1) | |
{ | log_query_mysockaddr(F_NOEXTRA | F_DNSSEC | F_SERVER, keyname, &server->addr, |
if ((server->tcpfd = socket(server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1) | STAT_ISEQUAL(status, STAT_NEED_KEY) ? "dnssec-query[DNSKEY]" : "dnssec-query[DS]", 0); |
continue; /* No good, next server */ | |
| new_status = tcp_key_recurse(now, new_status, new_header, m, class, name, keyname, server, have_mark, mark, keycount); |
#ifdef HAVE_CONNTRACK | |
/* Copy connection mark of incoming query to outgoing connection. */ | |
if (have_mark) | |
setsockopt(server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int)); | |
#endif | |
| |
if (!local_bind(server->tcpfd, &server->source_addr, server->interface, 0, 1)) | |
{ | |
close(server->tcpfd); | |
server->tcpfd = -1; | |
continue; /* No good, next server */ | |
} | |
| |
#ifdef MSG_FASTOPEN | |
while(retry_send(sendto(server->tcpfd, packet, m + sizeof(u16), | |
MSG_FASTOPEN, &server->addr.sa, sa_len(&server->addr)))); | |
| |
if (errno == 0) | |
data_sent = 1; | |
#endif | |
| |
if (!data_sent && connect(server->tcpfd, &server->addr.sa, sa_len(&server->addr)) == -1) | |
{ | |
close(server->tcpfd); | |
server->tcpfd = -1; | |
continue; /* No good, next server */ | |
} | |
| |
server->flags &= ~SERV_GOT_TCP; | |
} | |
| |
if ((!data_sent && !read_write(server->tcpfd, packet, m + sizeof(u16), 0)) || | |
!read_write(server->tcpfd, &c1, 1, 1) || | |
!read_write(server->tcpfd, &c2, 1, 1) || | |
!read_write(server->tcpfd, payload, (c1 << 8) | c2, 1)) | |
{ | |
close(server->tcpfd); | |
server->tcpfd = -1; | |
/* We get data then EOF, reopen connection to same server, | |
else try next. This avoids DoS from a server which accepts | |
connections and then closes them. */ | |
if (server->flags & SERV_GOT_TCP) | |
goto retry; | |
else | |
continue; | |
} | |
|
|
| daemon->log_display_id = log_save; |
if (server->addr.sa.sa_family == AF_INET) | |
log_query(F_NOEXTRA | F_DNSSEC | F_IPV4, keyname, (union all_addr *)&(server->addr.in.sin_addr), | |
querystr("dnssec-query", new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS)); | |
else | |
log_query(F_NOEXTRA | F_DNSSEC | F_IPV6, keyname, (union all_addr *)&(server->addr.in6.sin6_addr), | |
querystr("dnssec-query", new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS)); | |
| |
server->flags |= SERV_GOT_TCP; | |
| |
m = (c1 << 8) | c2; | |
new_status = tcp_key_recurse(now, new_status, new_header, m, class, name, keyname, server, have_mark, mark, keycount); | |
break; | |
} | |
|
|
if (new_status != STAT_OK) | if (!STAT_ISEQUAL(new_status, STAT_OK)) |
break; |
break; |
} |
} |
|
|
Line 1826 unsigned char *tcp_request(int confd, time_t now,
|
Line 2071 unsigned char *tcp_request(int confd, time_t now,
|
union mysockaddr *local_addr, struct in_addr netmask, int auth_dns) |
union mysockaddr *local_addr, struct in_addr netmask, int auth_dns) |
{ |
{ |
size_t size = 0; |
size_t size = 0; |
int norebind = 0; | int norebind; |
| #ifdef HAVE_CONNTRACK |
| int is_single_query = 0, allowed = 1; |
| #endif |
#ifdef HAVE_AUTH |
#ifdef HAVE_AUTH |
int local_auth = 0; |
int local_auth = 0; |
#endif |
#endif |
int checking_disabled, do_bit, added_pheader = 0, have_pseudoheader = 0; |
int checking_disabled, do_bit, added_pheader = 0, have_pseudoheader = 0; |
int check_subnet, cacheable, no_cache_dnssec = 0, cache_secure = 0, bogusanswer = 0; | int cacheable, no_cache_dnssec = 0, cache_secure = 0, bogusanswer = 0; |
size_t m; |
size_t m; |
unsigned short qtype; |
unsigned short qtype; |
unsigned int gotname; |
unsigned int gotname; |
unsigned char c1, c2; |
|
/* Max TCP packet + slop + size */ |
/* Max TCP packet + slop + size */ |
unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16)); |
unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16)); |
unsigned char *payload = &packet[2]; |
unsigned char *payload = &packet[2]; |
|
unsigned char c1, c2; |
/* largest field in header is 16-bits, so this is still sufficiently aligned */ |
/* largest field in header is 16-bits, so this is still sufficiently aligned */ |
struct dns_header *header = (struct dns_header *)payload; |
struct dns_header *header = (struct dns_header *)payload; |
u16 *length = (u16 *)packet; |
u16 *length = (u16 *)packet; |
struct server *last_server; | struct server *serv; |
struct in_addr dst_addr_4; |
struct in_addr dst_addr_4; |
union mysockaddr peer_addr; |
union mysockaddr peer_addr; |
socklen_t peer_len = sizeof(union mysockaddr); |
socklen_t peer_len = sizeof(union mysockaddr); |
Line 1850 unsigned char *tcp_request(int confd, time_t now,
|
Line 2098 unsigned char *tcp_request(int confd, time_t now,
|
unsigned char *pheader; |
unsigned char *pheader; |
unsigned int mark = 0; |
unsigned int mark = 0; |
int have_mark = 0; |
int have_mark = 0; |
| int first, last, stale, do_stale = 0; |
(void)mark; | unsigned int flags = 0; |
(void)have_mark; | u16 hb3, hb4; |
| |
if (getpeername(confd, (struct sockaddr *)&peer_addr, &peer_len) == -1) | if (!packet || getpeername(confd, (struct sockaddr *)&peer_addr, &peer_len) == -1) |
return packet; |
return packet; |
|
|
#ifdef HAVE_CONNTRACK |
#ifdef HAVE_CONNTRACK |
/* Get connection mark of incoming query to set on outgoing connections. */ |
/* Get connection mark of incoming query to set on outgoing connections. */ |
if (option_bool(OPT_CONNTRACK)) | if (option_bool(OPT_CONNTRACK) || option_bool(OPT_CMARK_ALST_EN)) |
{ |
{ |
union all_addr local; |
union all_addr local; |
|
|
Line 1897 unsigned char *tcp_request(int confd, time_t now,
|
Line 2145 unsigned char *tcp_request(int confd, time_t now,
|
} |
} |
if (!addr) |
if (!addr) |
{ |
{ |
my_syslog(LOG_WARNING, _("Ignoring query from non-local network")); | prettyprint_addr(&peer_addr, daemon->addrbuff); |
| my_syslog(LOG_WARNING, _("ignoring query from non-local network %s"), daemon->addrbuff); |
return packet; |
return packet; |
} |
} |
} |
} |
|
|
while (1) |
while (1) |
{ |
{ |
if (query_count == TCP_MAX_QUERIES || | int ede = EDE_UNSET; |
!packet || | |
!read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) || | if (query_count == TCP_MAX_QUERIES) |
!(size = c1 << 8 | c2) || | return packet; |
!read_write(confd, payload, size, 1)) | |
return packet; | if (do_stale) |
| { |
| size_t plen; |
| |
| /* We answered the last query with stale data. Now try and get fresh data. |
| Restore query from answer. */ |
| pheader = find_pseudoheader(header, m, &plen, NULL, NULL, NULL); |
| |
| header->hb3 = hb3; |
| header->hb4 = hb4; |
| header->ancount = htons(0); |
| header->nscount = htons(0); |
| header->arcount = htons(0); |
| |
| size = resize_packet(header, m, pheader, plen); |
| } |
| else |
| { |
| if (!read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) || |
| !(size = c1 << 8 | c2) || |
| !read_write(confd, payload, size, 1)) |
| return packet; |
| |
| /* for stale-answer processing. */ |
| hb3 = header->hb3; |
| hb4 = header->hb4; |
| } |
| |
if (size < (int)sizeof(struct dns_header)) |
if (size < (int)sizeof(struct dns_header)) |
continue; |
continue; |
|
|
Line 1934 unsigned char *tcp_request(int confd, time_t now,
|
Line 2209 unsigned char *tcp_request(int confd, time_t now,
|
#ifdef HAVE_AUTH |
#ifdef HAVE_AUTH |
struct auth_zone *zone; |
struct auth_zone *zone; |
#endif |
#endif |
char *types = querystr(auth_dns ? "auth" : "query", qtype); | |
| #ifdef HAVE_CONNTRACK |
if (peer_addr.sa.sa_family == AF_INET) | is_single_query = 1; |
log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff, | #endif |
(union all_addr *)&peer_addr.in.sin_addr, types); | |
else | if (!do_stale) |
log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff, | { |
(union all_addr *)&peer_addr.in6.sin6_addr, types); | log_query_mysockaddr(F_QUERY | F_FORWARD, daemon->namebuff, |
| &peer_addr, auth_dns ? "auth" : "query", qtype); |
| |
#ifdef HAVE_AUTH |
#ifdef HAVE_AUTH |
/* find queries for zones we're authoritative for, and answer them directly */ | /* find queries for zones we're authoritative for, and answer them directly */ |
if (!auth_dns && !option_bool(OPT_LOCALISE)) | if (!auth_dns && !option_bool(OPT_LOCALISE)) |
for (zone = daemon->auth_zones; zone; zone = zone->next) | for (zone = daemon->auth_zones; zone; zone = zone->next) |
if (in_zone(zone, daemon->namebuff, NULL)) | if (in_zone(zone, daemon->namebuff, NULL)) |
{ | { |
auth_dns = 1; | auth_dns = 1; |
local_auth = 1; | local_auth = 1; |
break; | break; |
} | } |
#endif |
#endif |
|
} |
} |
} |
|
|
|
norebind = domain_no_rebind(daemon->namebuff); |
|
|
if (local_addr->sa.sa_family == AF_INET) |
if (local_addr->sa.sa_family == AF_INET) |
dst_addr_4 = local_addr->in.sin_addr; |
dst_addr_4 = local_addr->in.sin_addr; |
else |
else |
Line 1974 unsigned char *tcp_request(int confd, time_t now,
|
Line 2253 unsigned char *tcp_request(int confd, time_t now,
|
if (flags & 0x8000) |
if (flags & 0x8000) |
do_bit = 1; /* do bit */ |
do_bit = 1; /* do bit */ |
} |
} |
|
|
|
#ifdef HAVE_CONNTRACK |
|
#ifdef HAVE_AUTH |
|
if (!auth_dns || local_auth) |
|
#endif |
|
if (option_bool(OPT_CMARK_ALST_EN) && have_mark && ((u32)mark & daemon->allowlist_mask)) |
|
allowed = is_query_allowed_for_mark((u32)mark, is_single_query ? daemon->namebuff : NULL); |
|
#endif |
|
|
|
if (0); |
|
#ifdef HAVE_CONNTRACK |
|
else if (!allowed) |
|
{ |
|
u16 swap = htons(EDE_BLOCKED); |
|
|
|
m = answer_disallowed(header, size, (u32)mark, is_single_query ? daemon->namebuff : NULL); |
|
|
|
if (have_pseudoheader && m != 0) |
|
m = add_pseudoheader(header, m, ((unsigned char *) header) + 65536, daemon->edns_pktsz, |
|
EDNS0_OPTION_EDE, (unsigned char *)&swap, 2, do_bit, 0); |
|
} |
|
#endif |
#ifdef HAVE_AUTH |
#ifdef HAVE_AUTH |
if (auth_dns) | else if (auth_dns) |
m = answer_auth(header, ((char *) header) + 65536, (size_t)size, now, &peer_addr, |
m = answer_auth(header, ((char *) header) + 65536, (size_t)size, now, &peer_addr, |
local_auth, do_bit, have_pseudoheader); |
local_auth, do_bit, have_pseudoheader); |
else |
|
#endif |
#endif |
|
else |
{ |
{ |
int ad_reqd = do_bit; |
int ad_reqd = do_bit; |
/* RFC 6840 5.7 */ |
/* RFC 6840 5.7 */ |
if (header->hb4 & HB4_AD) |
if (header->hb4 & HB4_AD) |
ad_reqd = 1; |
ad_reqd = 1; |
|
|
|
if (do_stale) |
|
m = 0; |
|
else |
|
/* m > 0 if answered from cache */ |
|
m = answer_request(header, ((char *) header) + 65536, (size_t)size, |
|
dst_addr_4, netmask, now, ad_reqd, do_bit, have_pseudoheader, &stale); |
|
|
/* m > 0 if answered from cache */ |
|
m = answer_request(header, ((char *) header) + 65536, (size_t)size, |
|
dst_addr_4, netmask, now, ad_reqd, do_bit, have_pseudoheader); |
|
|
|
/* Do this by steam now we're not in the select() loop */ |
/* Do this by steam now we're not in the select() loop */ |
check_log_writer(1); |
check_log_writer(1); |
|
|
if (m == 0) |
if (m == 0) |
{ |
{ |
unsigned int flags = 0; | struct server *master; |
union all_addr *addrp = NULL; | int start; |
int type = SERV_DO_DNSSEC; | |
char *domain = NULL; | |
unsigned char *oph = find_pseudoheader(header, size, NULL, NULL, NULL, NULL); | |
|
|
size = add_edns0_config(header, size, ((unsigned char *) header) + 65536, &peer_addr, now, &check_subnet, &cacheable); | if (lookup_domain(daemon->namebuff, gotname, &first, &last)) |
| flags = is_local_answer(now, first, daemon->namebuff); |
if (gotname) | else |
flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind); | |
| |
#ifdef HAVE_DNSSEC | |
if (option_bool(OPT_DNSSEC_VALID) && (type & SERV_DO_DNSSEC)) | |
{ |
{ |
size = add_do_bit(header, size, ((unsigned char *) header) + 65536); | /* No configured servers */ |
| ede = EDE_NOT_READY; |
/* For debugging, set Checking Disabled, otherwise, have the upstream check too, | flags = 0; |
this allows it to select auth servers when one is returning bad data. */ | |
if (option_bool(OPT_DNSSEC_DEBUG)) | |
header->hb4 |= HB4_CD; | |
} |
} |
#endif |
|
|
|
/* Check if we added a pheader on forwarding - may need to |
|
strip it from the reply. */ |
|
if (!oph && find_pseudoheader(header, size, NULL, NULL, NULL, NULL)) |
|
added_pheader = 1; |
|
|
|
type &= ~SERV_DO_DNSSEC; |
|
|
|
if (type != 0 || option_bool(OPT_ORDER) || !daemon->last_server) | /* don't forward A or AAAA queries for simple names, except the empty name */ |
last_server = daemon->servers; | if (!flags && |
else | option_bool(OPT_NODOTS_LOCAL) && |
last_server = daemon->last_server; | (gotname & (F_IPV4 | F_IPV6)) && |
| !strchr(daemon->namebuff, '.') && |
if (!flags && last_server) | strlen(daemon->namebuff) != 0) |
| flags = check_for_local_domain(daemon->namebuff, now) ? F_NOERR : F_NXDOMAIN; |
| |
| if (!flags && ede != EDE_NOT_READY) |
{ |
{ |
struct server *firstsendto = NULL; | master = daemon->serverarray[first]; |
unsigned char hash[HASH_SIZE]; | |
memcpy(hash, hash_questions(header, (unsigned int)size, daemon->namebuff), HASH_SIZE); | if (option_bool(OPT_ORDER) || master->last_server == -1) |
| start = first; |
/* Loop round available servers until we succeed in connecting to one. | else |
Note that this code subtly ensures that consecutive queries on this connection | start = master->last_server; |
which can go to the same server, do so. */ | |
while (1) | size = add_edns0_config(header, size, ((unsigned char *) header) + 65536, &peer_addr, now, &cacheable); |
| |
| #ifdef HAVE_DNSSEC |
| if (option_bool(OPT_DNSSEC_VALID) && (master->flags & SERV_DO_DNSSEC)) |
{ |
{ |
int data_sent = 0; | size = add_do_bit(header, size, ((unsigned char *) header) + 65536); |
| |
if (!firstsendto) | |
firstsendto = last_server; | |
else | |
{ | |
if (!(last_server = last_server->next)) | |
last_server = daemon->servers; | |
| |
if (last_server == firstsendto) | |
break; | |
} | |
|
|
/* server for wrong domain */ | /* For debugging, set Checking Disabled, otherwise, have the upstream check too, |
if (type != (last_server->flags & SERV_TYPE) || | this allows it to select auth servers when one is returning bad data. */ |
(type == SERV_HAS_DOMAIN && !hostname_isequal(domain, last_server->domain)) || | if (option_bool(OPT_DNSSEC_DEBUG)) |
(last_server->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP))) | header->hb4 |= HB4_CD; |
continue; | } |
| |
retry: | |
*length = htons(size); | |
| |
if (last_server->tcpfd == -1) | |
{ | |
if ((last_server->tcpfd = socket(last_server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1) | |
continue; | |
| |
#ifdef HAVE_CONNTRACK | |
/* Copy connection mark of incoming query to outgoing connection. */ | |
if (have_mark) | |
setsockopt(last_server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int)); | |
#endif | |
| |
if ((!local_bind(last_server->tcpfd, &last_server->source_addr, last_server->interface, 0, 1))) | |
{ | |
close(last_server->tcpfd); | |
last_server->tcpfd = -1; | |
continue; | |
} | |
| |
#ifdef MSG_FASTOPEN | |
while(retry_send(sendto(last_server->tcpfd, packet, size + sizeof(u16), | |
MSG_FASTOPEN, &last_server->addr.sa, sa_len(&last_server->addr)))); | |
| |
if (errno == 0) | |
data_sent = 1; | |
#endif |
#endif |
| |
if (!data_sent && connect(last_server->tcpfd, &last_server->addr.sa, sa_len(&last_server->addr)) == -1) | /* Check if we added a pheader on forwarding - may need to |
{ | strip it from the reply. */ |
close(last_server->tcpfd); | if (!have_pseudoheader && find_pseudoheader(header, size, NULL, NULL, NULL, NULL)) |
last_server->tcpfd = -1; | added_pheader = 1; |
continue; | |
} | /* Loop round available servers until we succeed in connecting to one. */ |
| if ((m = tcp_talk(first, last, start, packet, size, have_mark, mark, &serv)) == 0) |
last_server->flags &= ~SERV_GOT_TCP; | { |
} | ede = EDE_NETERR; |
| break; |
| } |
| |
| /* get query name again for logging - may have been overwritten */ |
| if (!(gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype))) |
| strcpy(daemon->namebuff, "query"); |
| log_query_mysockaddr(F_SERVER | F_FORWARD, daemon->namebuff, &serv->addr, NULL, 0); |
| |
| #ifdef HAVE_DNSSEC |
| if (option_bool(OPT_DNSSEC_VALID) && !checking_disabled && (master->flags & SERV_DO_DNSSEC)) |
| { |
| int keycount = DNSSEC_WORK; /* Limit to number of DNSSEC questions, to catch loops and avoid filling cache. */ |
| int status = tcp_key_recurse(now, STAT_OK, header, m, 0, daemon->namebuff, daemon->keyname, |
| serv, have_mark, mark, &keycount); |
| char *result, *domain = "result"; |
|
|
/* get query name again for logging - may have been overwritten */ | union all_addr a; |
if (!(gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype))) | a.log.ede = ede = errflags_to_ede(status); |
strcpy(daemon->namebuff, "query"); | |
|
|
if ((!data_sent && !read_write(last_server->tcpfd, packet, size + sizeof(u16), 0)) || | if (STAT_ISEQUAL(status, STAT_ABANDONED)) |
!read_write(last_server->tcpfd, &c1, 1, 1) || | |
!read_write(last_server->tcpfd, &c2, 1, 1) || | |
!read_write(last_server->tcpfd, payload, (c1 << 8) | c2, 1)) | |
{ |
{ |
close(last_server->tcpfd); | result = "ABANDONED"; |
last_server->tcpfd = -1; | status = STAT_BOGUS; |
/* We get data then EOF, reopen connection to same server, | |
else try next. This avoids DoS from a server which accepts | |
connections and then closes them. */ | |
if (last_server->flags & SERV_GOT_TCP) | |
goto retry; | |
else | |
continue; | |
} |
} |
|
|
last_server->flags |= SERV_GOT_TCP; |
|
|
|
m = (c1 << 8) | c2; |
|
|
|
if (last_server->addr.sa.sa_family == AF_INET) |
|
log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff, |
|
(union all_addr *)&last_server->addr.in.sin_addr, NULL); |
|
else |
else |
log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff, | result = (STAT_ISEQUAL(status, STAT_SECURE) ? "SECURE" : (STAT_ISEQUAL(status, STAT_INSECURE) ? "INSECURE" : "BOGUS")); |
(union all_addr *)&last_server->addr.in6.sin6_addr, NULL); | |
| if (STAT_ISEQUAL(status, STAT_SECURE)) |
#ifdef HAVE_DNSSEC | cache_secure = 1; |
if (option_bool(OPT_DNSSEC_VALID) && !checking_disabled && (last_server->flags & SERV_DO_DNSSEC)) | else if (STAT_ISEQUAL(status, STAT_BOGUS)) |
{ |
{ |
int keycount = DNSSEC_WORK; /* Limit to number of DNSSEC questions, to catch loops and avoid filling cache. */ | no_cache_dnssec = 1; |
int status = tcp_key_recurse(now, STAT_OK, header, m, 0, daemon->namebuff, daemon->keyname, | bogusanswer = 1; |
last_server, have_mark, mark, &keycount); | |
char *result, *domain = "result"; | |
|
|
if (status == STAT_ABANDONED) | if (extract_request(header, m, daemon->namebuff, NULL)) |
{ | |
result = "ABANDONED"; | |
status = STAT_BOGUS; | |
} | |
else | |
result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS")); | |
| |
if (status == STAT_BOGUS && extract_request(header, m, daemon->namebuff, NULL)) | |
domain = daemon->namebuff; |
domain = daemon->namebuff; |
|
|
log_query(F_SECSTAT, domain, NULL, result); |
|
|
|
if (status == STAT_BOGUS) |
|
{ |
|
no_cache_dnssec = 1; |
|
bogusanswer = 1; |
|
} |
|
|
|
if (status == STAT_SECURE) |
|
cache_secure = 1; |
|
} |
} |
#endif |
|
|
|
/* restore CD bit to the value in the query */ |
|
if (checking_disabled) |
|
header->hb4 |= HB4_CD; |
|
else |
|
header->hb4 &= ~HB4_CD; |
|
|
|
/* There's no point in updating the cache, since this process will exit and | log_query(F_SECSTAT, domain, &a, result, 0); |
lose the information after a few queries. We make this call for the alias and | |
bogus-nxdomain side-effects. */ | |
/* If the crc of the question section doesn't match the crc we sent, then | |
someone might be attempting to insert bogus values into the cache by | |
sending replies containing questions and bogus answers. */ | |
if (memcmp(hash, hash_questions(header, (unsigned int)m, daemon->namebuff), HASH_SIZE) != 0) | |
{ | |
m = 0; | |
break; | |
} | |
| |
/* Never cache answers which are contingent on the source or MAC address EDSN0 option, | |
since the cache is ignorant of such things. */ | |
if (!cacheable) | |
no_cache_dnssec = 1; | |
| |
m = process_reply(header, now, last_server, (unsigned int)m, | |
option_bool(OPT_NO_REBIND) && !norebind, no_cache_dnssec, cache_secure, bogusanswer, | |
ad_reqd, do_bit, added_pheader, check_subnet, &peer_addr); | |
| |
break; | |
} |
} |
|
#endif |
|
|
|
/* restore CD bit to the value in the query */ |
|
if (checking_disabled) |
|
header->hb4 |= HB4_CD; |
|
else |
|
header->hb4 &= ~HB4_CD; |
|
|
|
/* Never cache answers which are contingent on the source or MAC address EDSN0 option, |
|
since the cache is ignorant of such things. */ |
|
if (!cacheable) |
|
no_cache_dnssec = 1; |
|
|
|
m = process_reply(header, now, serv, (unsigned int)m, |
|
option_bool(OPT_NO_REBIND) && !norebind, no_cache_dnssec, cache_secure, bogusanswer, |
|
ad_reqd, do_bit, added_pheader, &peer_addr, ((unsigned char *)header) + 65536, ede); |
} |
} |
|
|
/* In case of local answer or no connections made. */ |
|
if (m == 0) |
|
{ |
|
m = setup_reply(header, (unsigned int)size, addrp, flags, daemon->local_ttl); |
|
if (have_pseudoheader) |
|
m = add_pseudoheader(header, m, ((unsigned char *) header) + 65536, daemon->edns_pktsz, 0, NULL, 0, do_bit, 0); |
|
} |
|
} |
} |
} |
} |
|
|
|
if (do_stale) |
|
break; |
|
|
|
/* In case of local answer or no connections made. */ |
|
if (m == 0) |
|
{ |
|
if (!(m = make_local_answer(flags, gotname, size, header, daemon->namebuff, |
|
((char *) header) + 65536, first, last, ede))) |
|
break; |
|
|
|
if (have_pseudoheader) |
|
{ |
|
u16 swap = htons((u16)ede); |
|
|
|
if (ede != EDE_UNSET) |
|
m = add_pseudoheader(header, m, ((unsigned char *) header) + 65536, daemon->edns_pktsz, EDNS0_OPTION_EDE, (unsigned char *)&swap, 2, do_bit, 0); |
|
else |
|
m = add_pseudoheader(header, m, ((unsigned char *) header) + 65536, daemon->edns_pktsz, 0, NULL, 0, do_bit, 0); |
|
} |
|
} |
|
else if (stale) |
|
{ |
|
u16 swap = htons((u16)EDE_STALE); |
|
|
|
m = add_pseudoheader(header, m, ((unsigned char *) header) + 65536, daemon->edns_pktsz, EDNS0_OPTION_EDE, (unsigned char *)&swap, 2, do_bit, 0); |
|
} |
|
|
check_log_writer(1); |
check_log_writer(1); |
|
|
*length = htons(m); |
*length = htons(m); |
| |
if (m == 0 || !read_write(confd, packet, m + sizeof(u16), 0)) | #if defined(HAVE_CONNTRACK) && defined(HAVE_UBUS) |
return packet; | #ifdef HAVE_AUTH |
| if (!auth_dns || local_auth) |
| #endif |
| if (option_bool(OPT_CMARK_ALST_EN) && have_mark && ((u32)mark & daemon->allowlist_mask)) |
| report_addresses(header, m, mark); |
| #endif |
| if (!read_write(confd, packet, m + sizeof(u16), 0)) |
| break; |
| |
| /* If we answered with stale data, this process will now try and get fresh data into |
| the cache then and cannot therefore accept new queries. Close the incoming |
| connection to signal that to the client. Then set do_stale and loop round |
| once more to try and get fresh data, after which we exit. */ |
| if (stale) |
| { |
| shutdown(confd, SHUT_RDWR); |
| close(confd); |
| do_stale = 1; |
| } |
} |
} |
|
|
|
/* If we ran once to get fresh data, confd is already closed. */ |
|
if (!do_stale) |
|
{ |
|
shutdown(confd, SHUT_RDWR); |
|
close(confd); |
|
} |
|
|
|
return packet; |
} |
} |
|
|
static struct frec *allocate_frec(time_t now) | /* return a UDP socket bound to a random port, have to cope with straying into |
| occupied port nos and reserved ones. */ |
| static int random_sock(struct server *s) |
{ |
{ |
struct frec *f; | int fd; |
| |
if ((f = (struct frec *)whine_malloc(sizeof(struct frec)))) | if ((fd = socket(s->source_addr.sa.sa_family, SOCK_DGRAM, 0)) != -1) |
{ |
{ |
f->next = daemon->frec_list; | /* We need to set IPV6ONLY so we can use the same ports |
f->time = now; | for IPv4 and IPV6, otherwise, in restriced port situations, |
f->sentto = NULL; | we can end up with all our available ports in use for |
f->rfd4 = NULL; | one address family, and the other address family cannot be used. */ |
f->flags = 0; | if (s->source_addr.sa.sa_family == AF_INET6) |
f->rfd6 = NULL; | { |
#ifdef HAVE_DNSSEC | int opt = 1; |
f->dependent = NULL; | |
f->blocking_query = NULL; | if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &opt, sizeof(opt)) == -1) |
f->stash = NULL; | { |
#endif | close(fd); |
daemon->frec_list = f; | return -1; |
| } |
| } |
| |
| if (local_bind(fd, &s->source_addr, s->interface, s->ifindex, 0)) |
| return fd; |
| |
| /* don't log errors due to running out of available ports, we handle those. */ |
| if (!sockaddr_isnull(&s->source_addr) || errno != EADDRINUSE) |
| { |
| if (s->interface[0] == 0) |
| (void)prettyprint_addr(&s->source_addr, daemon->addrbuff); |
| else |
| safe_strncpy(daemon->addrbuff, s->interface, ADDRSTRLEN); |
| |
| my_syslog(LOG_ERR, _("failed to bind server socket to %s: %s"), |
| daemon->addrbuff, strerror(errno)); |
| } |
| |
| close(fd); |
} |
} |
|
|
|
return -1; |
|
} |
|
|
return f; | /* compare source addresses and interface, serv2 can be null. */ |
| static int server_isequal(const struct server *serv1, |
| const struct server *serv2) |
| { |
| return (serv2 && |
| serv2->ifindex == serv1->ifindex && |
| sockaddr_isequal(&serv2->source_addr, &serv1->source_addr) && |
| strncmp(serv2->interface, serv1->interface, IF_NAMESIZE) == 0); |
} |
} |
|
|
struct randfd *allocate_rfd(int family) | /* fdlp points to chain of randomfds already in use by transaction. |
| If there's already a suitable one, return it, else allocate a |
| new one and add it to the list. |
| |
| Not leaking any resources in the face of allocation failures |
| is rather convoluted here. |
| |
| Note that rfd->serv may be NULL, when a server goes away. |
| */ |
| int allocate_rfd(struct randfd_list **fdlp, struct server *serv) |
{ |
{ |
static int finger = 0; |
static int finger = 0; |
int i; | int i, j = 0; |
| int ports_full = 0; |
| struct randfd_list **up, *rfl, *found, **found_link; |
| struct randfd *rfd = NULL; |
| int fd = 0; |
| int ports_avail = 0; |
| |
| /* We can't have more randomsocks for this AF available than ports in our port range, |
| so check that here, to avoid trying and failing to bind every port |
| in local_bind(), called from random_sock(). The actual check is below when |
| ports_avail != 0 */ |
| if (daemon->max_port != 0) |
| { |
| ports_avail = daemon->max_port - daemon->min_port + 1; |
| if (ports_avail >= SMALL_PORT_RANGE) |
| ports_avail = 0; |
| } |
| |
| /* If server has a pre-allocated fd, use that. */ |
| if (serv->sfd) |
| return serv->sfd->fd; |
| |
| /* existing suitable random port socket linked to this transaction? |
| Find the last one in the list and count how many there are. */ |
| for (found = NULL, found_link = NULL, i = 0, up = fdlp, rfl = *fdlp; rfl; up = &rfl->next, rfl = rfl->next) |
| if (server_isequal(serv, rfl->rfd->serv)) |
| { |
| i++; |
| found = rfl; |
| found_link = up; |
| } |
|
|
|
/* We have the maximum number for this query already. Promote |
|
the last one on the list to the head, to circulate them, |
|
and return it. */ |
|
if (found && i >= daemon->randport_limit) |
|
{ |
|
*found_link = found->next; |
|
found->next = *fdlp; |
|
*fdlp = found; |
|
return found->rfd->fd; |
|
} |
|
|
|
/* check for all available ports in use. */ |
|
if (ports_avail != 0) |
|
{ |
|
int ports_inuse; |
|
|
|
for (ports_inuse = 0, i = 0; i < daemon->numrrand; i++) |
|
if (daemon->randomsocks[i].refcount != 0 && |
|
daemon->randomsocks[i].serv->source_addr.sa.sa_family == serv->source_addr.sa.sa_family && |
|
++ports_inuse >= ports_avail) |
|
{ |
|
ports_full = 1; |
|
break; |
|
} |
|
} |
|
|
/* limit the number of sockets we have open to avoid starvation of |
/* limit the number of sockets we have open to avoid starvation of |
(eg) TFTP. Once we have a reasonable number, randomness should be OK */ |
(eg) TFTP. Once we have a reasonable number, randomness should be OK */ |
|
if (!ports_full) |
|
for (i = 0; i < daemon->numrrand; i++) |
|
if (daemon->randomsocks[i].refcount == 0) |
|
{ |
|
if ((fd = random_sock(serv)) != -1) |
|
{ |
|
rfd = &daemon->randomsocks[i]; |
|
rfd->serv = serv; |
|
rfd->fd = fd; |
|
rfd->refcount = 1; |
|
} |
|
break; |
|
} |
|
|
|
/* No good existing. Need new link. */ |
|
if ((rfl = daemon->rfl_spare)) |
|
daemon->rfl_spare = rfl->next; |
|
else if (!(rfl = whine_malloc(sizeof(struct randfd_list)))) |
|
{ |
|
/* malloc failed, don't leak allocated sock */ |
|
if (rfd) |
|
{ |
|
close(rfd->fd); |
|
rfd->refcount = 0; |
|
} |
|
|
for (i = 0; i < RANDOM_SOCKS; i++) | return -1; |
if (daemon->randomsocks[i].refcount == 0) | } |
| |
| /* No free ones or cannot get new socket, grab an existing one */ |
| if (!rfd) |
| for (j = 0; j < daemon->numrrand; j++) |
{ |
{ |
if ((daemon->randomsocks[i].fd = random_sock(family)) == -1) | i = (j + finger) % daemon->numrrand; |
break; | if (daemon->randomsocks[i].refcount != 0 && |
| server_isequal(serv, daemon->randomsocks[i].serv) && |
daemon->randomsocks[i].refcount = 1; | daemon->randomsocks[i].refcount != 0xfffe) |
daemon->randomsocks[i].family = family; | { |
return &daemon->randomsocks[i]; | struct randfd_list *rl; |
| /* Don't pick one we already have. */ |
| for (rl = *fdlp; rl; rl = rl->next) |
| if (rl->rfd == &daemon->randomsocks[i]) |
| break; |
| |
| if (!rl) |
| { |
| finger = i + 1; |
| rfd = &daemon->randomsocks[i]; |
| rfd->refcount++; |
| break; |
| } |
| } |
} |
} |
|
|
/* No free ones or cannot get new socket, grab an existing one */ | if (!rfd) /* should be when j == daemon->numrrand */ |
for (i = 0; i < RANDOM_SOCKS; i++) | |
{ |
{ |
int j = (i+finger) % RANDOM_SOCKS; | struct randfd_list *rfl_poll; |
if (daemon->randomsocks[j].refcount != 0 && | |
daemon->randomsocks[j].family == family && | /* there are no free slots, and non with the same parameters we can piggy-back on. |
daemon->randomsocks[j].refcount != 0xffff) | We're going to have to allocate a new temporary record, distinguished by |
| refcount == 0xffff. This will exist in the frec randfd list, never be shared, |
| and be freed when no longer in use. It will also be held on |
| the daemon->rfl_poll list so the poll system can find it. */ |
| |
| if ((rfl_poll = daemon->rfl_spare)) |
| daemon->rfl_spare = rfl_poll->next; |
| else |
| rfl_poll = whine_malloc(sizeof(struct randfd_list)); |
| |
| if (!rfl_poll || |
| !(rfd = whine_malloc(sizeof(struct randfd))) || |
| (fd = random_sock(serv)) == -1) |
{ |
{ |
finger = j; | |
daemon->randomsocks[j].refcount++; | /* Don't leak anything we may already have */ |
return &daemon->randomsocks[j]; | rfl->next = daemon->rfl_spare; |
| daemon->rfl_spare = rfl; |
| |
| if (rfl_poll) |
| { |
| rfl_poll->next = daemon->rfl_spare; |
| daemon->rfl_spare = rfl_poll; |
| } |
| |
| if (rfd) |
| free(rfd); |
| |
| return -1; /* doom */ |
} |
} |
} |
|
|
|
return NULL; /* doom */ | /* Note rfd->serv not set here, since it's not reused */ |
| rfd->fd = fd; |
| rfd->refcount = 0xffff; /* marker for temp record */ |
| |
| rfl_poll->rfd = rfd; |
| rfl_poll->next = daemon->rfl_poll; |
| daemon->rfl_poll = rfl_poll; |
| } |
| |
| rfl->rfd = rfd; |
| rfl->next = *fdlp; |
| *fdlp = rfl; |
| |
| return rfl->rfd->fd; |
} |
} |
|
|
void free_rfd(struct randfd *rfd) | void free_rfds(struct randfd_list **fdlp) |
{ |
{ |
if (rfd && --(rfd->refcount) == 0) | struct randfd_list *tmp, *rfl, *poll, *next, **up; |
close(rfd->fd); | |
| for (rfl = *fdlp; rfl; rfl = tmp) |
| { |
| if (rfl->rfd->refcount == 0xffff || --(rfl->rfd->refcount) == 0) |
| close(rfl->rfd->fd); |
| |
| /* temporary overflow record */ |
| if (rfl->rfd->refcount == 0xffff) |
| { |
| free(rfl->rfd); |
| |
| /* go through the link of all these by steam to delete. |
| This list is expected to be almost always empty. */ |
| for (poll = daemon->rfl_poll, up = &daemon->rfl_poll; poll; poll = next) |
| { |
| next = poll->next; |
| |
| if (poll->rfd == rfl->rfd) |
| { |
| *up = poll->next; |
| poll->next = daemon->rfl_spare; |
| daemon->rfl_spare = poll; |
| } |
| else |
| up = &poll->next; |
| } |
| } |
| |
| tmp = rfl->next; |
| rfl->next = daemon->rfl_spare; |
| daemon->rfl_spare = rfl; |
| } |
| |
| *fdlp = NULL; |
} |
} |
|
|
static void free_frec(struct frec *f) |
static void free_frec(struct frec *f) |
Line 2291 static void free_frec(struct frec *f)
|
Line 2758 static void free_frec(struct frec *f)
|
} |
} |
|
|
f->frec_src.next = NULL; |
f->frec_src.next = NULL; |
free_rfd(f->rfd4); | free_rfds(&f->rfds); |
f->rfd4 = NULL; | |
f->sentto = NULL; |
f->sentto = NULL; |
f->flags = 0; |
f->flags = 0; |
free_rfd(f->rfd6); |
|
f->rfd6 = NULL; |
|
|
|
#ifdef HAVE_DNSSEC |
|
if (f->stash) |
if (f->stash) |
{ |
{ |
blockdata_free(f->stash); |
blockdata_free(f->stash); |
f->stash = NULL; |
f->stash = NULL; |
} |
} |
| |
| #ifdef HAVE_DNSSEC |
/* Anything we're waiting on is pointless now, too */ |
/* Anything we're waiting on is pointless now, too */ |
if (f->blocking_query) |
if (f->blocking_query) |
free_frec(f->blocking_query); | { |
| struct frec *n, **up; |
| |
| /* unlink outselves from the blocking query's dependents list. */ |
| for (n = f->blocking_query->dependent, up = &f->blocking_query->dependent; n; n = n->next_dependent) |
| if (n == f) |
| { |
| *up = n->next_dependent; |
| break; |
| } |
| else |
| up = &n->next_dependent; |
| |
| /* If we were the only/last dependent, free the blocking query too. */ |
| if (!f->blocking_query->dependent) |
| free_frec(f->blocking_query); |
| } |
| |
f->blocking_query = NULL; |
f->blocking_query = NULL; |
f->dependent = NULL; |
f->dependent = NULL; |
|
f->next_dependent = NULL; |
#endif |
#endif |
} |
} |
|
|
|
|
|
|
/* if wait==NULL return a free or older than TIMEOUT record. | /* Impose an absolute |
else return *wait zero if one available, or *wait is delay to | |
when the oldest in-use record will expire. Impose an absolute | |
limit of 4*TIMEOUT before we wipe things (for random sockets). |
limit of 4*TIMEOUT before we wipe things (for random sockets). |
If force is non-NULL, always return a result, even if we have | If force is set, always return a result, even if we have |
to allocate above the limit, and never free the record pointed | to allocate above the limit, and don'y free any records. |
to by the force argument. */ | This is set when allocating for DNSSEC to avoid cutting off |
struct frec *get_new_frec(time_t now, int *wait, struct frec *force) | the branch we are sitting on. */ |
| static struct frec *get_new_frec(time_t now, struct server *master, int force) |
{ |
{ |
struct frec *f, *oldest, *target; |
struct frec *f, *oldest, *target; |
int count; |
int count; |
|
|
if (wait) | /* look for free records, garbage collect old records and count number in use by our server-group. */ |
*wait = 0; | for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next) |
| { |
for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++) | if (!f->sentto) |
if (!f->sentto) | target = f; |
target = f; | else |
else | { |
{ | |
#ifdef HAVE_DNSSEC |
#ifdef HAVE_DNSSEC |
/* Don't free DNSSEC sub-queries here, as we may end up with | /* Don't free DNSSEC sub-queries here, as we may end up with |
dangling references to them. They'll go when their "real" query | dangling references to them. They'll go when their "real" query |
is freed. */ | is freed. */ |
if (!f->dependent && f != force) | if (!f->dependent && !force) |
#endif |
#endif |
{ | { |
if (difftime(now, f->time) >= 4*TIMEOUT) | if (difftime(now, f->time) >= 4*TIMEOUT) |
{ | { |
free_frec(f); | daemon->metrics[METRIC_DNS_UNANSWERED_QUERY]++; |
target = f; | free_frec(f); |
} | target = f; |
| } |
| else if (!oldest || difftime(f->time, oldest->time) <= 0) |
if (!oldest || difftime(f->time, oldest->time) <= 0) | oldest = f; |
oldest = f; | } |
} | } |
} | |
| if (f->sentto && ((int)difftime(now, f->time)) < TIMEOUT && server_samegroup(f->sentto, master)) |
| count++; |
| } |
|
|
if (target) | if (!force && count >= daemon->ftabsize) |
{ |
{ |
target->time = now; | query_full(now, master->domain); |
return target; | return NULL; |
} |
} |
|
|
/* can't find empty one, use oldest if there is one | if (!target && oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT) |
and it's older than timeout */ | |
if (!force && oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT) | |
{ |
{ |
/* keep stuff for twice timeout if we can by allocating a new | /* can't find empty one, use oldest if there is one and it's older than timeout */ |
record instead */ | daemon->metrics[METRIC_DNS_UNANSWERED_QUERY]++; |
if (difftime(now, oldest->time) < 2*TIMEOUT && | free_frec(oldest); |
count <= daemon->ftabsize && | target = oldest; |
(f = allocate_frec(now))) | |
return f; | |
| |
if (!wait) | |
{ | |
free_frec(oldest); | |
oldest->time = now; | |
} | |
return oldest; | |
} |
} |
|
|
/* none available, calculate time 'till oldest record expires */ | if (!target && (target = (struct frec *)whine_malloc(sizeof(struct frec)))) |
if (!force && count > daemon->ftabsize) | |
{ |
{ |
static time_t last_log = 0; | target->next = daemon->frec_list; |
| daemon->frec_list = target; |
if (oldest && wait) | } |
*wait = oldest->time + (time_t)TIMEOUT - now; | |
| |
if ((int)difftime(now, last_log) > 5) | |
{ | |
last_log = now; | |
my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries reached (max: %d)"), daemon->ftabsize); | |
} | |
|
|
return NULL; | if (target) |
| { |
| target->time = now; |
| target->forward_delay = daemon->fast_retry_time; |
} |
} |
|
|
if (!(f = allocate_frec(now)) && wait) | return target; |
/* wait one second on malloc failure */ | } |
*wait = 1; | |
|
|
return f; /* OK if malloc fails and this is NULL */ | static void query_full(time_t now, char *domain) |
| { |
| static time_t last_log = 0; |
| |
| if ((int)difftime(now, last_log) > 5) |
| { |
| last_log = now; |
| if (!domain || strlen(domain) == 0) |
| my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries reached (max: %d)"), daemon->ftabsize); |
| else |
| my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries to %s reached (max: %d)"), domain, daemon->ftabsize); |
| } |
} |
} |
|
|
static struct frec *lookup_frec(unsigned short id, int fd, int family, void *hash) | |
| static struct frec *lookup_frec(unsigned short id, int fd, void *hash, int *firstp, int *lastp) |
{ |
{ |
struct frec *f; |
struct frec *f; |
|
struct server *s; |
|
int first, last; |
|
struct randfd_list *fdl; |
|
|
for(f = daemon->frec_list; f; f = f->next) | if (hash) |
if (f->sentto && f->new_id == id && | for (f = daemon->frec_list; f; f = f->next) |
(memcmp(hash, f->hash, HASH_SIZE) == 0)) | if (f->sentto && f->new_id == id && |
{ | (memcmp(hash, f->hash, HASH_SIZE) == 0)) |
/* sent from random port */ | { |
if (family == AF_INET && f->rfd4 && f->rfd4->fd == fd) | filter_servers(f->sentto->arrayposn, F_SERVER, firstp, lastp); |
return f; | |
| /* sent from random port */ |
if (family == AF_INET6 && f->rfd6 && f->rfd6->fd == fd) | for (fdl = f->rfds; fdl; fdl = fdl->next) |
return f; | if (fdl->rfd->fd == fd) |
| return f; |
/* sent to upstream from bound socket. */ | |
if (f->sentto->sfd && f->sentto->sfd->fd == fd) | /* Sent to upstream from socket associated with a server. |
return f; | Note we have to iterate over all the possible servers, since they may |
} | have different bound sockets. */ |
| for (first = *firstp, last = *lastp; first != last; first++) |
| { |
| s = daemon->serverarray[first]; |
| if (s->sfd && s->sfd->fd == fd) |
| return f; |
| } |
| } |
| |
return NULL; |
return NULL; |
} |
} |
|
|
static struct frec *lookup_frec_by_sender(unsigned short id, | static struct frec *lookup_frec_by_query(void *hash, unsigned int flags, unsigned int flagmask) |
union mysockaddr *addr, | |
void *hash) | |
{ |
{ |
struct frec *f; |
struct frec *f; |
struct frec_src *src; |
|
|
|
for (f = daemon->frec_list; f; f = f->next) | if (hash) |
if (f->sentto && | for (f = daemon->frec_list; f; f = f->next) |
!(f->flags & (FREC_DNSKEY_QUERY | FREC_DS_QUERY)) && | if (f->sentto && |
memcmp(hash, f->hash, HASH_SIZE) == 0) | (f->flags & flagmask) == flags && |
for (src = &f->frec_src; src; src = src->next) | memcmp(hash, f->hash, HASH_SIZE) == 0) |
if (src->orig_id == id && | return f; |
sockaddr_isequal(&src->source, addr)) | |
return f; | |
|
|
return NULL; |
return NULL; |
} |
} |
|
|
static struct frec *lookup_frec_by_query(void *hash, unsigned int flags) | #ifdef HAVE_DNSSEC |
| /* DNSSEC frecs have the complete query in the block stash. |
| Search for an existing query using that. */ |
| static struct frec *lookup_frec_dnssec(char *target, int class, int flags, struct dns_header *header) |
{ |
{ |
struct frec *f; | struct frec *f; |
|
|
/* FREC_DNSKEY and FREC_DS_QUERY are never set in flags, so the test below | for (f = daemon->frec_list; f; f = f->next) |
ensures that no frec created for internal DNSSEC query can be returned here. | if (f->sentto && |
| (f->flags & flags) && |
Similarly FREC_NO_CACHE is never set in flags, so a query which is | blockdata_retrieve(f->stash, f->stash_len, (void *)header)) |
contigent on a particular source address EDNS0 option will never be matched. */ | { |
| unsigned char *p = (unsigned char *)(header+1); |
| int hclass; |
|
|
#define FLAGMASK (FREC_CHECKING_DISABLED | FREC_AD_QUESTION | FREC_DO_QUESTION \ | if (extract_name(header, f->stash_len, &p, target, 0, 4) != 1) |
| FREC_HAS_PHEADER | FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_NO_CACHE) | continue; |
| |
for(f = daemon->frec_list; f; f = f->next) | p += 2; /* type, known from flags */ |
if (f->sentto && | GETSHORT(hclass, p); |
(f->flags & FLAGMASK) == flags && | |
memcmp(hash, f->hash, HASH_SIZE) == 0) | if (class != hclass) |
return f; | continue; |
| |
return NULL; | return f; |
| } |
| |
| return NULL; |
} |
} |
|
#endif |
|
|
/* Send query packet again, if we can. */ |
/* Send query packet again, if we can. */ |
void resend_query() |
void resend_query() |
{ |
{ |
if (daemon->srv_save) |
if (daemon->srv_save) |
{ | server_send(daemon->srv_save, daemon->fd_save, |
int fd; | daemon->packet, daemon->packet_len, 0); |
| |
if (daemon->srv_save->sfd) | |
fd = daemon->srv_save->sfd->fd; | |
else if (daemon->rfd_save && daemon->rfd_save->refcount != 0) | |
fd = daemon->rfd_save->fd; | |
else | |
return; | |
| |
while(retry_send(sendto(fd, daemon->packet, daemon->packet_len, 0, | |
&daemon->srv_save->addr.sa, | |
sa_len(&daemon->srv_save->addr)))); | |
} | |
} |
} |
|
|
/* A server record is going away, remove references to it */ |
/* A server record is going away, remove references to it */ |
void server_gone(struct server *server) |
void server_gone(struct server *server) |
{ |
{ |
struct frec *f; |
struct frec *f; |
|
int i; |
|
|
for (f = daemon->frec_list; f; f = f->next) |
for (f = daemon->frec_list; f; f = f->next) |
if (f->sentto && f->sentto == server) |
if (f->sentto && f->sentto == server) |
free_frec(f); |
free_frec(f); |
|
|
if (daemon->last_server == server) |
|
daemon->last_server = NULL; |
|
|
|
|
/* If any random socket refers to this server, NULL the reference. |
|
No more references to the socket will be created in the future. */ |
|
for (i = 0; i < daemon->numrrand; i++) |
|
if (daemon->randomsocks[i].refcount != 0 && daemon->randomsocks[i].serv == server) |
|
daemon->randomsocks[i].serv = NULL; |
|
|
if (daemon->srv_save == server) |
if (daemon->srv_save == server) |
daemon->srv_save = NULL; |
daemon->srv_save = NULL; |
} |
} |
Line 2522 static unsigned short get_id(void)
|
Line 3006 static unsigned short get_id(void)
|
return ret; |
return ret; |
} |
} |
} |
} |
|
|
|
|
|
|
|
|
|
|