blob: e3fa94be1dbcd7b97b0f231fdb3388118d628990 [file] [log] [blame]
Simon Kelley50ca8552017-06-24 22:36:43 +01001/* dnsmasq is Copyright (c) 2000-2017 Simon Kelley
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
Simon Kelley824af852008-02-12 20:43:05 +00005 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
Simon Kelley9e4abcb2004-01-22 19:47:41 +00008 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
Simon Kelley824af852008-02-12 20:43:05 +000012
Simon Kelley73a08a22009-02-05 20:28:08 +000013 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000015*/
16
Simon Kelley9e4abcb2004-01-22 19:47:41 +000017#include "dnsmasq.h"
18
Simon Kelley8a9be9e2014-01-25 23:17:21 +000019static struct frec *lookup_frec(unsigned short id, void *hash);
Simon Kelley9e4abcb2004-01-22 19:47:41 +000020static struct frec *lookup_frec_by_sender(unsigned short id,
Simon Kelleyfd9fa482004-10-21 20:24:00 +010021 union mysockaddr *addr,
Simon Kelley8a9be9e2014-01-25 23:17:21 +000022 void *hash);
23static unsigned short get_id(void);
Simon Kelley1a6bca82008-07-11 11:11:42 +010024static void free_frec(struct frec *f);
Simon Kelley9e4abcb2004-01-22 19:47:41 +000025
Simon Kelley824af852008-02-12 20:43:05 +000026/* Send a UDP packet with its source address set as "source"
Simon Kelley44a2a312004-03-10 20:04:35 +000027 unless nowild is true, when we just send it with the kernel default */
Simon Kelley29689cf2012-03-22 14:01:00 +000028int send_from(int fd, int nowild, char *packet, size_t len,
29 union mysockaddr *to, struct all_addr *source,
Simon Kelley50303b12012-04-04 22:13:17 +010030 unsigned int iface)
Simon Kelley9e4abcb2004-01-22 19:47:41 +000031{
Simon Kelley44a2a312004-03-10 20:04:35 +000032 struct msghdr msg;
33 struct iovec iov[1];
Simon Kelley44a2a312004-03-10 20:04:35 +000034 union {
35 struct cmsghdr align; /* this ensures alignment */
Simon Kelley5e9e0ef2006-04-17 14:24:29 +010036#if defined(HAVE_LINUX_NETWORK)
Simon Kelley44a2a312004-03-10 20:04:35 +000037 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
38#elif defined(IP_SENDSRCADDR)
39 char control[CMSG_SPACE(sizeof(struct in_addr))];
40#endif
41#ifdef HAVE_IPV6
42 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
43#endif
44 } control_u;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010045
Simon Kelley44a2a312004-03-10 20:04:35 +000046 iov[0].iov_base = packet;
47 iov[0].iov_len = len;
48
Simon Kelleyfeba5c12004-07-27 20:28:58 +010049 msg.msg_control = NULL;
50 msg.msg_controllen = 0;
Simon Kelley44a2a312004-03-10 20:04:35 +000051 msg.msg_flags = 0;
52 msg.msg_name = to;
53 msg.msg_namelen = sa_len(to);
54 msg.msg_iov = iov;
55 msg.msg_iovlen = 1;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010056
Simon Kelley26128d22004-11-14 16:43:54 +000057 if (!nowild)
Simon Kelleyfeba5c12004-07-27 20:28:58 +010058 {
Simon Kelley26128d22004-11-14 16:43:54 +000059 struct cmsghdr *cmptr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010060 msg.msg_control = &control_u;
61 msg.msg_controllen = sizeof(control_u);
Simon Kelley26128d22004-11-14 16:43:54 +000062 cmptr = CMSG_FIRSTHDR(&msg);
Simon Kelley44a2a312004-03-10 20:04:35 +000063
Simon Kelley26128d22004-11-14 16:43:54 +000064 if (to->sa.sa_family == AF_INET)
65 {
Simon Kelley5e9e0ef2006-04-17 14:24:29 +010066#if defined(HAVE_LINUX_NETWORK)
Simon Kelley8ef5ada2010-06-03 19:42:45 +010067 struct in_pktinfo p;
68 p.ipi_ifindex = 0;
69 p.ipi_spec_dst = source->addr.addr4;
70 memcpy(CMSG_DATA(cmptr), &p, sizeof(p));
Simon Kelley26128d22004-11-14 16:43:54 +000071 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in_pktinfo));
Simon Kelleyc72daea2012-01-05 21:33:27 +000072 cmptr->cmsg_level = IPPROTO_IP;
Simon Kelley26128d22004-11-14 16:43:54 +000073 cmptr->cmsg_type = IP_PKTINFO;
74#elif defined(IP_SENDSRCADDR)
Simon Kelley8ef5ada2010-06-03 19:42:45 +010075 memcpy(CMSG_DATA(cmptr), &(source->addr.addr4), sizeof(source->addr.addr4));
Simon Kelley26128d22004-11-14 16:43:54 +000076 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in_addr));
77 cmptr->cmsg_level = IPPROTO_IP;
78 cmptr->cmsg_type = IP_SENDSRCADDR;
Simon Kelley44a2a312004-03-10 20:04:35 +000079#endif
Simon Kelley26128d22004-11-14 16:43:54 +000080 }
Simon Kelley26128d22004-11-14 16:43:54 +000081 else
Simon Kelleyb8187c82005-11-26 21:46:27 +000082#ifdef HAVE_IPV6
Simon Kelley26128d22004-11-14 16:43:54 +000083 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +010084 struct in6_pktinfo p;
85 p.ipi6_ifindex = iface; /* Need iface for IPv6 to handle link-local addrs */
86 p.ipi6_addr = source->addr.addr6;
87 memcpy(CMSG_DATA(cmptr), &p, sizeof(p));
Simon Kelley26128d22004-11-14 16:43:54 +000088 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo));
Simon Kelley316e2732010-01-22 20:16:09 +000089 cmptr->cmsg_type = daemon->v6pktinfo;
Simon Kelleyc72daea2012-01-05 21:33:27 +000090 cmptr->cmsg_level = IPPROTO_IPV6;
Simon Kelley26128d22004-11-14 16:43:54 +000091 }
Simon Kelley3d8df262005-08-29 12:19:27 +010092#else
Simon Kelleyc72daea2012-01-05 21:33:27 +000093 (void)iface; /* eliminate warning */
Simon Kelley26128d22004-11-14 16:43:54 +000094#endif
95 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +010096
Simon Kelleyff841eb2015-03-11 21:36:30 +000097 while (retry_send(sendmsg(fd, &msg, 0)));
98
99 /* If interface is still in DAD, EINVAL results - ignore that. */
100 if (errno != 0 && errno != EINVAL)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100101 {
Simon Kelley50303b12012-04-04 22:13:17 +0100102 my_syslog(LOG_ERR, _("failed to send packet: %s"), strerror(errno));
Simon Kelley29689cf2012-03-22 14:01:00 +0000103 return 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100104 }
Simon Kelley29d28dd2012-12-03 14:05:59 +0000105
Simon Kelley29689cf2012-03-22 14:01:00 +0000106 return 1;
Simon Kelley44a2a312004-03-10 20:04:35 +0000107}
108
Simon Kelley367341f2016-01-12 15:58:23 +0000109static unsigned int search_servers(time_t now, struct all_addr **addrpp, unsigned int qtype,
110 char *qdomain, int *type, char **domain, int *norebind)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100111
112{
113 /* If the query ends in the domain in one of our servers, set
114 domain to point to that name. We find the largest match to allow both
115 domain.org and sub.domain.org to exist. */
116
117 unsigned int namelen = strlen(qdomain);
118 unsigned int matchlen = 0;
119 struct server *serv;
Simon Kelley28866e92011-02-14 20:19:14 +0000120 unsigned int flags = 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100121
Simon Kelley3be34542004-09-11 19:12:13 +0100122 for (serv = daemon->servers; serv; serv=serv->next)
Simon Kelley09f3b2c2017-05-09 01:34:02 +0100123 if (qtype == F_DNSSECOK && !(serv->flags & SERV_DO_DNSSEC))
124 continue;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100125 /* domain matches take priority over NODOTS matches */
Simon Kelley09f3b2c2017-05-09 01:34:02 +0100126 else if ((serv->flags & SERV_FOR_NODOTS) && *type != SERV_HAS_DOMAIN && !strchr(qdomain, '.') && namelen != 0)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100127 {
Simon Kelley28866e92011-02-14 20:19:14 +0000128 unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100129 *type = SERV_FOR_NODOTS;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100130 if (serv->flags & SERV_NO_ADDR)
Simon Kelley36717ee2004-09-20 19:20:58 +0100131 flags = F_NXDOMAIN;
132 else if (serv->flags & SERV_LITERAL_ADDRESS)
133 {
134 if (sflag & qtype)
135 {
136 flags = sflag;
137 if (serv->addr.sa.sa_family == AF_INET)
138 *addrpp = (struct all_addr *)&serv->addr.in.sin_addr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100139#ifdef HAVE_IPV6
Simon Kelley36717ee2004-09-20 19:20:58 +0100140 else
141 *addrpp = (struct all_addr *)&serv->addr.in6.sin6_addr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100142#endif
Simon Kelley36717ee2004-09-20 19:20:58 +0100143 }
Simon Kelley824af852008-02-12 20:43:05 +0000144 else if (!flags || (flags & F_NXDOMAIN))
Simon Kelley36717ee2004-09-20 19:20:58 +0100145 flags = F_NOERR;
146 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100147 }
148 else if (serv->flags & SERV_HAS_DOMAIN)
149 {
150 unsigned int domainlen = strlen(serv->domain);
Simon Kelleyb8187c82005-11-26 21:46:27 +0000151 char *matchstart = qdomain + namelen - domainlen;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100152 if (namelen >= domainlen &&
Simon Kelleyb8187c82005-11-26 21:46:27 +0000153 hostname_isequal(matchstart, serv->domain) &&
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100154 (domainlen == 0 || namelen == domainlen || *(matchstart-1) == '.' ))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100155 {
Simon Kelley92be34a2016-01-16 18:39:54 +0000156 if ((serv->flags & SERV_NO_REBIND) && norebind)
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100157 *norebind = 1;
Simon Kelley28866e92011-02-14 20:19:14 +0000158 else
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100159 {
Simon Kelley28866e92011-02-14 20:19:14 +0000160 unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6;
161 /* implement priority rules for --address and --server for same domain.
162 --address wins if the address is for the correct AF
163 --server wins otherwise. */
164 if (domainlen != 0 && domainlen == matchlen)
Simon Kelley36717ee2004-09-20 19:20:58 +0100165 {
Simon Kelley28866e92011-02-14 20:19:14 +0000166 if ((serv->flags & SERV_LITERAL_ADDRESS))
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100167 {
Simon Kelley28866e92011-02-14 20:19:14 +0000168 if (!(sflag & qtype) && flags == 0)
169 continue;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100170 }
Simon Kelley28866e92011-02-14 20:19:14 +0000171 else
172 {
173 if (flags & (F_IPV4 | F_IPV6))
174 continue;
175 }
Simon Kelley36717ee2004-09-20 19:20:58 +0100176 }
Simon Kelley28866e92011-02-14 20:19:14 +0000177
178 if (domainlen >= matchlen)
179 {
Simon Kelley367341f2016-01-12 15:58:23 +0000180 *type = serv->flags & (SERV_HAS_DOMAIN | SERV_USE_RESOLV | SERV_NO_REBIND | SERV_DO_DNSSEC);
Simon Kelley28866e92011-02-14 20:19:14 +0000181 *domain = serv->domain;
182 matchlen = domainlen;
183 if (serv->flags & SERV_NO_ADDR)
184 flags = F_NXDOMAIN;
185 else if (serv->flags & SERV_LITERAL_ADDRESS)
186 {
187 if (sflag & qtype)
188 {
189 flags = sflag;
190 if (serv->addr.sa.sa_family == AF_INET)
191 *addrpp = (struct all_addr *)&serv->addr.in.sin_addr;
192#ifdef HAVE_IPV6
193 else
194 *addrpp = (struct all_addr *)&serv->addr.in6.sin6_addr;
195#endif
196 }
197 else if (!flags || (flags & F_NXDOMAIN))
198 flags = F_NOERR;
199 }
200 else
201 flags = 0;
202 }
203 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100204 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100205 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100206
Simon Kelleybf05f8f2017-05-09 22:37:46 +0100207 if (flags == 0 && !(qtype & (F_QUERY | F_DNSSECOK)) &&
Simon Kelley28866e92011-02-14 20:19:14 +0000208 option_bool(OPT_NODOTS_LOCAL) && !strchr(qdomain, '.') && namelen != 0)
Simon Kelley7de060b2011-08-26 17:24:52 +0100209 /* don't forward A or AAAA queries for simple names, except the empty name */
210 flags = F_NOERR;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100211
Simon Kelley5aabfc72007-08-29 11:24:47 +0100212 if (flags == F_NXDOMAIN && check_for_local_domain(qdomain, now))
Simon Kelleyc1bb8502004-08-11 18:40:17 +0100213 flags = F_NOERR;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100214
Simon Kelley824af852008-02-12 20:43:05 +0000215 if (flags)
216 {
217 int logflags = 0;
218
219 if (flags == F_NXDOMAIN || flags == F_NOERR)
220 logflags = F_NEG | qtype;
221
Simon Kelley1a6bca82008-07-11 11:11:42 +0100222 log_query(logflags | flags | F_CONFIG | F_FORWARD, qdomain, *addrpp, NULL);
Simon Kelley824af852008-02-12 20:43:05 +0000223 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100224 else if ((*type) & SERV_USE_RESOLV)
225 {
226 *type = 0; /* use normal servers for this domain */
227 *domain = NULL;
228 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100229 return flags;
230}
Simon Kelley44a2a312004-03-10 20:04:35 +0000231
Simon Kelley824af852008-02-12 20:43:05 +0000232static int forward_query(int udpfd, union mysockaddr *udpaddr,
233 struct all_addr *dst_addr, unsigned int dst_iface,
Simon Kelley83349b82014-02-10 21:02:01 +0000234 struct dns_header *header, size_t plen, time_t now,
Simon Kelley613ad152014-02-25 23:02:28 +0000235 struct frec *forward, int ad_reqd, int do_bit)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000236{
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000237 char *domain = NULL;
Simon Kelley367341f2016-01-12 15:58:23 +0000238 int type = SERV_DO_DNSSEC, norebind = 0;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000239 struct all_addr *addrp = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +0000240 unsigned int flags = 0;
Simon Kelleyde379512004-06-22 20:23:33 +0100241 struct server *start = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000242#ifdef HAVE_DNSSEC
243 void *hash = hash_questions(header, plen, daemon->namebuff);
Simon Kelley367341f2016-01-12 15:58:23 +0000244 int do_dnssec = 0;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000245#else
246 unsigned int crc = questions_crc(header, plen, daemon->namebuff);
247 void *hash = &crc;
248#endif
249 unsigned int gotname = extract_request(header, plen, daemon->namebuff, NULL);
250
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000251 (void)do_bit;
252
Simon Kelley3d8df262005-08-29 12:19:27 +0100253 /* may be no servers available. */
Simon Kelleyd05dd582016-01-19 21:23:30 +0000254 if (forward || (hash && (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, hash))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000255 {
Simon Kelleya77cec82015-05-08 16:25:38 +0100256 /* If we didn't get an answer advertising a maximal packet in EDNS,
257 fall back to 1280, which should work everywhere on IPv6.
258 If that generates an answer, it will become the new default
259 for this server */
260 forward->flags |= FREC_TEST_PKTSZ;
261
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000262#ifdef HAVE_DNSSEC
Simon Kelleydac74312014-02-13 16:43:49 +0000263 /* If we've already got an answer to this query, but we're awaiting keys for validation,
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000264 there's no point retrying the query, retry the key query instead...... */
265 if (forward->blocking_query)
266 {
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000267 int fd, is_sign;
268 unsigned char *pheader;
Simon Kelleya77cec82015-05-08 16:25:38 +0100269
270 forward->flags &= ~FREC_TEST_PKTSZ;
271
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000272 while (forward->blocking_query)
273 forward = forward->blocking_query;
Simon Kelleya77cec82015-05-08 16:25:38 +0100274
275 forward->flags |= FREC_TEST_PKTSZ;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000276
277 blockdata_retrieve(forward->stash, forward->stash_len, (void *)header);
278 plen = forward->stash_len;
279
Simon Kelley5bb88f02015-12-21 16:23:47 +0000280 if (find_pseudoheader(header, plen, NULL, &pheader, &is_sign, NULL) && !is_sign)
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000281 PUTSHORT(SAFE_PKTSZ, pheader);
Simon Kelleya77cec82015-05-08 16:25:38 +0100282
Simon Kelley2b291912014-03-21 11:13:55 +0000283 if (forward->sentto->addr.sa.sa_family == AF_INET)
Simon Kelley25cf5e32015-01-09 15:53:03 +0000284 log_query(F_NOEXTRA | F_DNSSEC | F_IPV4, "retry", (struct all_addr *)&forward->sentto->addr.in.sin_addr, "dnssec");
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000285#ifdef HAVE_IPV6
286 else
Simon Kelley25cf5e32015-01-09 15:53:03 +0000287 log_query(F_NOEXTRA | F_DNSSEC | F_IPV6, "retry", (struct all_addr *)&forward->sentto->addr.in6.sin6_addr, "dnssec");
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000288#endif
289
290 if (forward->sentto->sfd)
291 fd = forward->sentto->sfd->fd;
292 else
293 {
294#ifdef HAVE_IPV6
295 if (forward->sentto->addr.sa.sa_family == AF_INET6)
296 fd = forward->rfd6->fd;
297 else
298#endif
299 fd = forward->rfd4->fd;
300 }
301
Simon Kelleyff841eb2015-03-11 21:36:30 +0000302 while (retry_send( sendto(fd, (char *)header, plen, 0,
303 &forward->sentto->addr.sa,
304 sa_len(&forward->sentto->addr))));
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000305
306 return 1;
307 }
308#endif
309
Simon Kelleyde379512004-06-22 20:23:33 +0100310 /* retry on existing query, send to all available servers */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000311 domain = forward->sentto->domain;
Simon Kelley824af852008-02-12 20:43:05 +0000312 forward->sentto->failed_queries++;
Simon Kelley28866e92011-02-14 20:19:14 +0000313 if (!option_bool(OPT_ORDER))
Simon Kelleyde379512004-06-22 20:23:33 +0100314 {
Simon Kelley0a852542005-03-23 20:28:59 +0000315 forward->forwardall = 1;
Simon Kelley3be34542004-09-11 19:12:13 +0100316 daemon->last_server = NULL;
Simon Kelleyde379512004-06-22 20:23:33 +0100317 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000318 type = forward->sentto->flags & SERV_TYPE;
Simon Kelley367341f2016-01-12 15:58:23 +0000319#ifdef HAVE_DNSSEC
320 do_dnssec = forward->sentto->flags & SERV_DO_DNSSEC;
321#endif
322
Simon Kelleyde379512004-06-22 20:23:33 +0100323 if (!(start = forward->sentto->next))
Simon Kelley3be34542004-09-11 19:12:13 +0100324 start = daemon->servers; /* at end of list, recycle */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000325 header->id = htons(forward->new_id);
326 }
327 else
328 {
329 if (gotname)
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100330 flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind);
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000331
Simon Kelley367341f2016-01-12 15:58:23 +0000332#ifdef HAVE_DNSSEC
333 do_dnssec = type & SERV_DO_DNSSEC;
Simon Kelleyf7443d72016-01-19 20:29:57 +0000334#endif
335 type &= ~SERV_DO_DNSSEC;
Simon Kelley367341f2016-01-12 15:58:23 +0000336
Simon Kelleyd05dd582016-01-19 21:23:30 +0000337 if (daemon->servers && !flags)
338 forward = get_new_frec(now, NULL, 0);
339 /* table full - flags == 0, return REFUSED */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000340
341 if (forward)
342 {
Simon Kelley0a852542005-03-23 20:28:59 +0000343 forward->source = *udpaddr;
344 forward->dest = *dst_addr;
345 forward->iface = dst_iface;
Simon Kelley0a852542005-03-23 20:28:59 +0000346 forward->orig_id = ntohs(header->id);
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000347 forward->new_id = get_id();
Simon Kelley832af0b2007-01-21 20:01:28 +0000348 forward->fd = udpfd;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000349 memcpy(forward->hash, hash, HASH_SIZE);
Simon Kelley0a852542005-03-23 20:28:59 +0000350 forward->forwardall = 0;
Simon Kelleyed4c0762013-10-08 20:46:34 +0100351 forward->flags = 0;
Simon Kelley28866e92011-02-14 20:19:14 +0000352 if (norebind)
353 forward->flags |= FREC_NOREBIND;
Simon Kelley572b41e2011-02-18 18:11:18 +0000354 if (header->hb4 & HB4_CD)
Simon Kelley28866e92011-02-14 20:19:14 +0000355 forward->flags |= FREC_CHECKING_DISABLED;
Simon Kelley83349b82014-02-10 21:02:01 +0000356 if (ad_reqd)
357 forward->flags |= FREC_AD_QUESTION;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000358#ifdef HAVE_DNSSEC
359 forward->work_counter = DNSSEC_WORK;
Simon Kelley613ad152014-02-25 23:02:28 +0000360 if (do_bit)
361 forward->flags |= FREC_DO_QUESTION;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000362#endif
Simon Kelley613ad152014-02-25 23:02:28 +0000363
Simon Kelley28866e92011-02-14 20:19:14 +0000364 header->id = htons(forward->new_id);
365
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100366 /* In strict_order mode, always try servers in the order
367 specified in resolv.conf, if a domain is given
368 always try all the available servers,
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000369 otherwise, use the one last known to work. */
370
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100371 if (type == 0)
372 {
Simon Kelley28866e92011-02-14 20:19:14 +0000373 if (option_bool(OPT_ORDER))
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100374 start = daemon->servers;
375 else if (!(start = daemon->last_server) ||
376 daemon->forwardcount++ > FORWARD_TEST ||
377 difftime(now, daemon->forwardtime) > FORWARD_TIME)
378 {
379 start = daemon->servers;
380 forward->forwardall = 1;
381 daemon->forwardcount = 0;
382 daemon->forwardtime = now;
383 }
384 }
385 else
Simon Kelleyde379512004-06-22 20:23:33 +0100386 {
Simon Kelley3be34542004-09-11 19:12:13 +0100387 start = daemon->servers;
Simon Kelley28866e92011-02-14 20:19:14 +0000388 if (!option_bool(OPT_ORDER))
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100389 forward->forwardall = 1;
Simon Kelleyde379512004-06-22 20:23:33 +0100390 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000391 }
392 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100393
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000394 /* check for send errors here (no route to host)
395 if we fail to send to all nameservers, send back an error
396 packet straight away (helps modem users when offline) */
397
398 if (!flags && forward)
399 {
Simon Kelleyde379512004-06-22 20:23:33 +0100400 struct server *firstsentto = start;
Simon Kelley33702ab2015-12-28 23:17:15 +0000401 int subnet, forwarded = 0;
Simon Kelleyd3a8b392015-12-23 12:27:37 +0000402 size_t edns0_len;
403
Simon Kelley25cf5e32015-01-09 15:53:03 +0000404 /* If a query is retried, use the log_id for the retry when logging the answer. */
405 forward->log_id = daemon->log_id;
406
Simon Kelley33702ab2015-12-28 23:17:15 +0000407 edns0_len = add_edns0_config(header, plen, ((unsigned char *)header) + PACKETSZ, &forward->source, now, &subnet);
408
409 if (edns0_len != plen)
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000410 {
Simon Kelley33702ab2015-12-28 23:17:15 +0000411 plen = edns0_len;
412 forward->flags |= FREC_ADDED_PHEADER;
413
414 if (subnet)
415 forward->flags |= FREC_HAS_SUBNET;
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000416 }
Simon Kelley33702ab2015-12-28 23:17:15 +0000417
Simon Kelley3a237152013-12-12 12:15:50 +0000418#ifdef HAVE_DNSSEC
Simon Kelley367341f2016-01-12 15:58:23 +0000419 if (option_bool(OPT_DNSSEC_VALID) && do_dnssec)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000420 {
Simon Kelley33702ab2015-12-28 23:17:15 +0000421 size_t new = add_do_bit(header, plen, ((unsigned char *) header) + PACKETSZ);
Simon Kelley613ad152014-02-25 23:02:28 +0000422
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000423 if (new != plen)
424 forward->flags |= FREC_ADDED_PHEADER;
425
426 plen = new;
427
Simon Kelley5b3bf922014-01-25 17:03:07 +0000428 /* For debugging, set Checking Disabled, otherwise, have the upstream check too,
429 this allows it to select auth servers when one is returning bad data. */
430 if (option_bool(OPT_DNSSEC_DEBUG))
431 header->hb4 |= HB4_CD;
Simon Kelley613ad152014-02-25 23:02:28 +0000432
Simon Kelley0fc2f312014-01-08 10:26:58 +0000433 }
Simon Kelley3a237152013-12-12 12:15:50 +0000434#endif
Simon Kelleyd3a8b392015-12-23 12:27:37 +0000435
436 /* If we're sending an EDNS0 with any options, we can't recreate the query from a reply. */
437 if (find_pseudoheader(header, plen, &edns0_len, NULL, NULL, NULL) && edns0_len > 11)
438 forward->flags |= FREC_HAS_EXTRADATA;
Simon Kelleya77cec82015-05-08 16:25:38 +0100439
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000440 while (1)
441 {
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000442 /* only send to servers dealing with our domain.
443 domain may be NULL, in which case server->domain
444 must be NULL also. */
445
Simon Kelleyde379512004-06-22 20:23:33 +0100446 if (type == (start->flags & SERV_TYPE) &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100447 (type != SERV_HAS_DOMAIN || hostname_isequal(domain, start->domain)) &&
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +0100448 !(start->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP)))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000449 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100450 int fd;
451
452 /* find server socket to use, may need to get random one. */
453 if (start->sfd)
454 fd = start->sfd->fd;
455 else
456 {
457#ifdef HAVE_IPV6
458 if (start->addr.sa.sa_family == AF_INET6)
459 {
460 if (!forward->rfd6 &&
461 !(forward->rfd6 = allocate_rfd(AF_INET6)))
462 break;
Simon Kelley3927da42008-07-20 15:10:39 +0100463 daemon->rfd_save = forward->rfd6;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100464 fd = forward->rfd6->fd;
465 }
466 else
467#endif
468 {
469 if (!forward->rfd4 &&
470 !(forward->rfd4 = allocate_rfd(AF_INET)))
471 break;
Simon Kelley3927da42008-07-20 15:10:39 +0100472 daemon->rfd_save = forward->rfd4;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100473 fd = forward->rfd4->fd;
474 }
Simon Kelley7de060b2011-08-26 17:24:52 +0100475
476#ifdef HAVE_CONNTRACK
477 /* Copy connection mark of incoming query to outgoing connection. */
478 if (option_bool(OPT_CONNTRACK))
479 {
480 unsigned int mark;
Giacomo Tazzari797a7af2013-04-22 13:16:37 +0100481 if (get_incoming_mark(&forward->source, &forward->dest, 0, &mark))
Simon Kelley7de060b2011-08-26 17:24:52 +0100482 setsockopt(fd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
483 }
484#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +0100485 }
486
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000487#ifdef HAVE_DNSSEC
Simon Kelley5bb88f02015-12-21 16:23:47 +0000488 if (option_bool(OPT_DNSSEC_VALID) && (forward->flags & FREC_ADDED_PHEADER))
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000489 {
490 /* Difficult one here. If our client didn't send EDNS0, we will have set the UDP
491 packet size to 512. But that won't provide space for the RRSIGS in many cases.
492 The RRSIGS will be stripped out before the answer goes back, so the packet should
493 shrink again. So, if we added a do-bit, bump the udp packet size to the value
Simon Kelley5aa5f0f2015-12-21 17:20:35 +0000494 known to be OK for this server. We check returned size after stripping and set
495 the truncated bit if it's still too big. */
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000496 unsigned char *pheader;
497 int is_sign;
Simon Kelley5bb88f02015-12-21 16:23:47 +0000498 if (find_pseudoheader(header, plen, NULL, &pheader, &is_sign, NULL) && !is_sign)
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000499 PUTSHORT(start->edns_pktsz, pheader);
500 }
501#endif
502
Simon Kelleyff841eb2015-03-11 21:36:30 +0000503 if (retry_send(sendto(fd, (char *)header, plen, 0,
504 &start->addr.sa,
505 sa_len(&start->addr))))
506 continue;
507
508 if (errno == 0)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000509 {
Simon Kelleycdeda282006-03-16 20:16:06 +0000510 /* Keep info in case we want to re-send this packet */
511 daemon->srv_save = start;
512 daemon->packet_len = plen;
513
Simon Kelleyde379512004-06-22 20:23:33 +0100514 if (!gotname)
Simon Kelley3be34542004-09-11 19:12:13 +0100515 strcpy(daemon->namebuff, "query");
Simon Kelleyde379512004-06-22 20:23:33 +0100516 if (start->addr.sa.sa_family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +0100517 log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +0100518 (struct all_addr *)&start->addr.in.sin_addr, NULL);
Simon Kelleyde379512004-06-22 20:23:33 +0100519#ifdef HAVE_IPV6
520 else
Simon Kelley3be34542004-09-11 19:12:13 +0100521 log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +0100522 (struct all_addr *)&start->addr.in6.sin6_addr, NULL);
Simon Kelleyde379512004-06-22 20:23:33 +0100523#endif
Simon Kelley824af852008-02-12 20:43:05 +0000524 start->queries++;
Simon Kelleyde379512004-06-22 20:23:33 +0100525 forwarded = 1;
526 forward->sentto = start;
Simon Kelley0a852542005-03-23 20:28:59 +0000527 if (!forward->forwardall)
Simon Kelleyde379512004-06-22 20:23:33 +0100528 break;
Simon Kelley0a852542005-03-23 20:28:59 +0000529 forward->forwardall++;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000530 }
531 }
532
Simon Kelleyde379512004-06-22 20:23:33 +0100533 if (!(start = start->next))
Simon Kelley3be34542004-09-11 19:12:13 +0100534 start = daemon->servers;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000535
Simon Kelleyde379512004-06-22 20:23:33 +0100536 if (start == firstsentto)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000537 break;
538 }
539
Simon Kelleyde379512004-06-22 20:23:33 +0100540 if (forwarded)
Simon Kelley824af852008-02-12 20:43:05 +0000541 return 1;
Simon Kelleyde379512004-06-22 20:23:33 +0100542
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000543 /* could not send on, prepare to return */
544 header->id = htons(forward->orig_id);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100545 free_frec(forward); /* cancel */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000546 }
547
548 /* could not send on, return empty answer or address if known for whole domain */
Simon Kelleyb8187c82005-11-26 21:46:27 +0000549 if (udpfd != -1)
550 {
Simon Kelleycdeda282006-03-16 20:16:06 +0000551 plen = setup_reply(header, plen, addrp, flags, daemon->local_ttl);
Simon Kelley54dd3932012-06-20 11:23:38 +0100552 send_from(udpfd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), (char *)header, plen, udpaddr, dst_addr, dst_iface);
Simon Kelleyb8187c82005-11-26 21:46:27 +0000553 }
554
Simon Kelley824af852008-02-12 20:43:05 +0000555 return 0;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000556}
557
Simon Kelleyed4c0762013-10-08 20:46:34 +0100558static size_t process_reply(struct dns_header *header, time_t now, struct server *server, size_t n, int check_rebind,
Simon Kelleyfe3992f2015-04-03 21:25:05 +0100559 int no_cache, int cache_secure, int bogusanswer, int ad_reqd, int do_bit, int added_pheader,
560 int check_subnet, union mysockaddr *query_source)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100561{
Simon Kelley36717ee2004-09-20 19:20:58 +0100562 unsigned char *pheader, *sizep;
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000563 char **sets = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000564 int munged = 0, is_sign;
Simon Kelleycdeda282006-03-16 20:16:06 +0000565 size_t plen;
566
Simon Kelley83349b82014-02-10 21:02:01 +0000567 (void)ad_reqd;
Simon Kelley982faf42015-04-03 21:42:30 +0100568 (void)do_bit;
569 (void)bogusanswer;
Simon Kelley83349b82014-02-10 21:02:01 +0000570
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000571#ifdef HAVE_IPSET
Simon Kelley82a14af2014-04-13 20:48:57 +0100572 if (daemon->ipsets && extract_request(header, n, daemon->namebuff, NULL))
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000573 {
Simon Kelley82a14af2014-04-13 20:48:57 +0100574 /* Similar algorithm to search_servers. */
575 struct ipsets *ipset_pos;
576 unsigned int namelen = strlen(daemon->namebuff);
577 unsigned int matchlen = 0;
578 for (ipset_pos = daemon->ipsets; ipset_pos; ipset_pos = ipset_pos->next)
Simon Kelley6c0cb852014-01-17 14:40:46 +0000579 {
Simon Kelley82a14af2014-04-13 20:48:57 +0100580 unsigned int domainlen = strlen(ipset_pos->domain);
581 char *matchstart = daemon->namebuff + namelen - domainlen;
582 if (namelen >= domainlen && hostname_isequal(matchstart, ipset_pos->domain) &&
583 (domainlen == 0 || namelen == domainlen || *(matchstart - 1) == '.' ) &&
584 domainlen >= matchlen)
585 {
586 matchlen = domainlen;
587 sets = ipset_pos->sets;
588 }
Simon Kelley6c0cb852014-01-17 14:40:46 +0000589 }
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000590 }
591#endif
592
Simon Kelley5bb88f02015-12-21 16:23:47 +0000593 if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign, NULL)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100594 {
Simon Kelleyed4c0762013-10-08 20:46:34 +0100595 if (check_subnet && !check_source(header, plen, pheader, query_source))
596 {
597 my_syslog(LOG_WARNING, _("discarding DNS reply: subnet option mismatch"));
598 return 0;
599 }
Simon Kelley613ad152014-02-25 23:02:28 +0000600
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000601 if (!is_sign)
Simon Kelley613ad152014-02-25 23:02:28 +0000602 {
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000603 if (added_pheader)
604 {
605 /* client didn't send EDNS0, we added one, strip it off before returning answer. */
606 n = rrfilter(header, n, 0);
607 pheader = NULL;
608 }
609 else
610 {
Simon Kelley33702ab2015-12-28 23:17:15 +0000611 unsigned short udpsz;
612
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000613 /* If upstream is advertising a larger UDP packet size
614 than we allow, trim it so that we don't get overlarge
615 requests for the client. We can't do this for signed packets. */
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000616 GETSHORT(udpsz, sizep);
617 if (udpsz > daemon->edns_pktsz)
Simon Kelley33702ab2015-12-28 23:17:15 +0000618 {
619 sizep -= 2;
620 PUTSHORT(daemon->edns_pktsz, sizep);
621 }
622
623#ifdef HAVE_DNSSEC
624 /* If the client didn't set the do bit, but we did, reset it. */
625 if (option_bool(OPT_DNSSEC_VALID) && !do_bit)
626 {
627 unsigned short flags;
628 sizep += 2; /* skip RCODE */
629 GETSHORT(flags, sizep);
630 flags &= ~0x8000;
631 sizep -= 2;
632 PUTSHORT(flags, sizep);
633 }
634#endif
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000635 }
Simon Kelley613ad152014-02-25 23:02:28 +0000636 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100637 }
Simon Kelley83349b82014-02-10 21:02:01 +0000638
Simon Kelley28866e92011-02-14 20:19:14 +0000639 /* RFC 4035 sect 4.6 para 3 */
Giovanni Bajo237724c2012-04-05 02:46:52 +0200640 if (!is_sign && !option_bool(OPT_DNSSEC_PROXY))
Simon Kelley795501b2014-01-08 18:11:55 +0000641 header->hb4 &= ~HB4_AD;
Simon Kelley3a237152013-12-12 12:15:50 +0000642
Simon Kelley572b41e2011-02-18 18:11:18 +0000643 if (OPCODE(header) != QUERY || (RCODE(header) != NOERROR && RCODE(header) != NXDOMAIN))
Simon Kelley8938ae02014-05-01 17:46:25 +0100644 return resize_packet(header, n, pheader, plen);
Simon Kelley36717ee2004-09-20 19:20:58 +0100645
Simon Kelley0a852542005-03-23 20:28:59 +0000646 /* Complain loudly if the upstream server is non-recursive. */
Simon Kelley92be34a2016-01-16 18:39:54 +0000647 if (!(header->hb4 & HB4_RA) && RCODE(header) == NOERROR &&
Simon Kelley0a852542005-03-23 20:28:59 +0000648 server && !(server->flags & SERV_WARNED_RECURSIVE))
649 {
Simon Kelley3d8df262005-08-29 12:19:27 +0100650 prettyprint_addr(&server->addr, daemon->namebuff);
Simon Kelleyf2621c72007-04-29 19:47:21 +0100651 my_syslog(LOG_WARNING, _("nameserver %s refused to do a recursive query"), daemon->namebuff);
Simon Kelley28866e92011-02-14 20:19:14 +0000652 if (!option_bool(OPT_LOG))
Simon Kelley0a852542005-03-23 20:28:59 +0000653 server->flags |= SERV_WARNED_RECURSIVE;
654 }
Giovanni Bajoe292e932012-04-22 14:32:02 +0200655
Simon Kelley572b41e2011-02-18 18:11:18 +0000656 if (daemon->bogus_addr && RCODE(header) != NXDOMAIN &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100657 check_for_bogus_wildcard(header, n, daemon->namebuff, daemon->bogus_addr, now))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100658 {
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100659 munged = 1;
Simon Kelley572b41e2011-02-18 18:11:18 +0000660 SET_RCODE(header, NXDOMAIN);
661 header->hb3 &= ~HB3_AA;
Simon Kelley6938f342014-01-26 22:47:39 +0000662 cache_secure = 0;
Simon Kelley36717ee2004-09-20 19:20:58 +0100663 }
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100664 else
Simon Kelley36717ee2004-09-20 19:20:58 +0100665 {
Simon Kelley6938f342014-01-26 22:47:39 +0000666 int doctored = 0;
667
Simon Kelley572b41e2011-02-18 18:11:18 +0000668 if (RCODE(header) == NXDOMAIN &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100669 extract_request(header, n, daemon->namebuff, NULL) &&
Simon Kelley5aabfc72007-08-29 11:24:47 +0100670 check_for_local_domain(daemon->namebuff, now))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100671 {
Simon Kelley36717ee2004-09-20 19:20:58 +0100672 /* if we forwarded a query for a locally known name (because it was for
673 an unknown type) and the answer is NXDOMAIN, convert that to NODATA,
674 since we know that the domain exists, even if upstream doesn't */
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100675 munged = 1;
Simon Kelley572b41e2011-02-18 18:11:18 +0000676 header->hb3 |= HB3_AA;
677 SET_RCODE(header, NOERROR);
Simon Kelley6938f342014-01-26 22:47:39 +0000678 cache_secure = 0;
Simon Kelley36717ee2004-09-20 19:20:58 +0100679 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000680
Simon Kelley6938f342014-01-26 22:47:39 +0000681 if (extract_addresses(header, n, daemon->namebuff, now, sets, is_sign, check_rebind, no_cache, cache_secure, &doctored))
Simon Kelley824af852008-02-12 20:43:05 +0000682 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100683 my_syslog(LOG_WARNING, _("possible DNS-rebind attack detected: %s"), daemon->namebuff);
Simon Kelley824af852008-02-12 20:43:05 +0000684 munged = 1;
Simon Kelley6938f342014-01-26 22:47:39 +0000685 cache_secure = 0;
Simon Kelley824af852008-02-12 20:43:05 +0000686 }
Simon Kelley6938f342014-01-26 22:47:39 +0000687
688 if (doctored)
689 cache_secure = 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100690 }
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100691
Simon Kelleya25720a2014-01-14 23:13:55 +0000692#ifdef HAVE_DNSSEC
Simon Kelley33702ab2015-12-28 23:17:15 +0000693 if (bogusanswer && !(header->hb4 & HB4_CD) && !option_bool(OPT_DNSSEC_DEBUG))
Simon Kelleya25720a2014-01-14 23:13:55 +0000694 {
Simon Kelley33702ab2015-12-28 23:17:15 +0000695 /* Bogus reply, turn into SERVFAIL */
696 SET_RCODE(header, SERVFAIL);
697 munged = 1;
Simon Kelleya25720a2014-01-14 23:13:55 +0000698 }
Simon Kelley6938f342014-01-26 22:47:39 +0000699
700 if (option_bool(OPT_DNSSEC_VALID))
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000701 {
702 header->hb4 &= ~HB4_AD;
703
704 if (!(header->hb4 & HB4_CD) && ad_reqd && cache_secure)
705 header->hb4 |= HB4_AD;
706
707 /* If the requestor didn't set the DO bit, don't return DNSSEC info. */
708 if (!do_bit)
709 n = rrfilter(header, n, 1);
710 }
Simon Kelleya25720a2014-01-14 23:13:55 +0000711#endif
712
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100713 /* do this after extract_addresses. Ensure NODATA reply and remove
714 nameserver info. */
715
716 if (munged)
717 {
718 header->ancount = htons(0);
719 header->nscount = htons(0);
720 header->arcount = htons(0);
Simon Kelley150162b2015-03-27 09:58:26 +0000721 header->hb3 &= ~HB3_TC;
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100722 }
723
Simon Kelley36717ee2004-09-20 19:20:58 +0100724 /* the bogus-nxdomain stuff, doctor and NXDOMAIN->NODATA munging can all elide
725 sections of the packet. Find the new length here and put back pseudoheader
726 if it was removed. */
727 return resize_packet(header, n, pheader, plen);
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100728}
729
Simon Kelley3be34542004-09-11 19:12:13 +0100730/* sets new last_server */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100731void reply_query(int fd, int family, time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000732{
733 /* packet from peer server, extract data for cache, and send to
734 original requester */
Simon Kelley572b41e2011-02-18 18:11:18 +0000735 struct dns_header *header;
Simon Kelleyde379512004-06-22 20:23:33 +0100736 union mysockaddr serveraddr;
Simon Kelley832af0b2007-01-21 20:01:28 +0000737 struct frec *forward;
Simon Kelleyde379512004-06-22 20:23:33 +0100738 socklen_t addrlen = sizeof(serveraddr);
Simon Kelley60b68062014-01-08 12:10:28 +0000739 ssize_t n = recvfrom(fd, daemon->packet, daemon->packet_buff_sz, 0, &serveraddr.sa, &addrlen);
Simon Kelleycdeda282006-03-16 20:16:06 +0000740 size_t nn;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100741 struct server *server;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000742 void *hash;
743#ifndef HAVE_DNSSEC
744 unsigned int crc;
745#endif
746
Simon Kelleycdeda282006-03-16 20:16:06 +0000747 /* packet buffer overwritten */
748 daemon->srv_save = NULL;
Simon Kelley832af0b2007-01-21 20:01:28 +0000749
Simon Kelleyde379512004-06-22 20:23:33 +0100750 /* Determine the address of the server replying so that we can mark that as good */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100751 serveraddr.sa.sa_family = family;
Simon Kelleyde379512004-06-22 20:23:33 +0100752#ifdef HAVE_IPV6
753 if (serveraddr.sa.sa_family == AF_INET6)
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100754 serveraddr.in6.sin6_flowinfo = 0;
Simon Kelleyde379512004-06-22 20:23:33 +0100755#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000756
Simon Kelley490f9072014-03-24 22:04:42 +0000757 header = (struct dns_header *)daemon->packet;
758
759 if (n < (int)sizeof(struct dns_header) || !(header->hb3 & HB3_QR))
760 return;
761
Simon Kelley1a6bca82008-07-11 11:11:42 +0100762 /* spoof check: answer must come from known server, */
763 for (server = daemon->servers; server; server = server->next)
764 if (!(server->flags & (SERV_LITERAL_ADDRESS | SERV_NO_ADDR)) &&
765 sockaddr_isequal(&server->addr, &serveraddr))
766 break;
Simon Kelley490f9072014-03-24 22:04:42 +0000767
768 if (!server)
769 return;
770
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000771#ifdef HAVE_DNSSEC
772 hash = hash_questions(header, n, daemon->namebuff);
773#else
774 hash = &crc;
775 crc = questions_crc(header, n, daemon->namebuff);
776#endif
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100777
Simon Kelley490f9072014-03-24 22:04:42 +0000778 if (!(forward = lookup_frec(ntohs(header->id), hash)))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100779 return;
Simon Kelley490f9072014-03-24 22:04:42 +0000780
Simon Kelley25cf5e32015-01-09 15:53:03 +0000781 /* log_query gets called indirectly all over the place, so
782 pass these in global variables - sorry. */
783 daemon->log_display_id = forward->log_id;
784 daemon->log_source_addr = &forward->source;
785
Glen Huang32fc6db2014-12-27 15:28:12 +0000786 if (daemon->ignore_addr && RCODE(header) == NOERROR &&
787 check_for_ignored_address(header, n, daemon->ignore_addr))
788 return;
789
Simon Kelleyd3a8b392015-12-23 12:27:37 +0000790 /* Note: if we send extra options in the EDNS0 header, we can't recreate
791 the query from the reply. */
Simon Kelley2ae195f2015-01-18 22:20:48 +0000792 if (RCODE(header) == REFUSED &&
Simon Kelleyd3a8b392015-12-23 12:27:37 +0000793 forward->forwardall == 0 &&
794 !(forward->flags & FREC_HAS_EXTRADATA))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100795 /* for broken servers, attempt to send to another one. */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000796 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100797 unsigned char *pheader;
798 size_t plen;
799 int is_sign;
Simon Kelley832af0b2007-01-21 20:01:28 +0000800
Simon Kelley1a6bca82008-07-11 11:11:42 +0100801 /* recreate query from reply */
Simon Kelley5bb88f02015-12-21 16:23:47 +0000802 pheader = find_pseudoheader(header, (size_t)n, &plen, NULL, &is_sign, NULL);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100803 if (!is_sign)
Simon Kelley832af0b2007-01-21 20:01:28 +0000804 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100805 header->ancount = htons(0);
806 header->nscount = htons(0);
807 header->arcount = htons(0);
808 if ((nn = resize_packet(header, (size_t)n, pheader, plen)))
809 {
swiggerbd7bfa22015-06-01 20:54:59 +0100810 header->hb3 &= ~(HB3_QR | HB3_AA | HB3_TC);
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000811 header->hb4 &= ~(HB4_RA | HB4_RCODE | HB4_CD | HB4_AD);
Simon Kelley1801a292016-01-17 21:53:57 +0000812 if (forward->flags & FREC_CHECKING_DISABLED)
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000813 header->hb4 |= HB4_CD;
Simon Kelley1801a292016-01-17 21:53:57 +0000814 if (forward->flags & FREC_AD_QUESTION)
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000815 header->hb4 |= HB4_AD;
816 if (forward->flags & FREC_DO_QUESTION)
Simon Kelley33702ab2015-12-28 23:17:15 +0000817 add_do_bit(header, nn, (unsigned char *)pheader + plen);
Simon Kelleyfa14bec2015-12-20 17:12:16 +0000818 forward_query(-1, NULL, NULL, 0, header, nn, now, forward, forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100819 return;
820 }
821 }
822 }
Simon Kelley3a237152013-12-12 12:15:50 +0000823
824 server = forward->sentto;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100825 if ((forward->sentto->flags & SERV_TYPE) == 0)
826 {
Simon Kelley51967f92014-03-25 21:07:00 +0000827 if (RCODE(header) == REFUSED)
Simon Kelley1a6bca82008-07-11 11:11:42 +0100828 server = NULL;
829 else
830 {
831 struct server *last_server;
Simon Kelley832af0b2007-01-21 20:01:28 +0000832
Simon Kelley1a6bca82008-07-11 11:11:42 +0100833 /* find good server by address if possible, otherwise assume the last one we sent to */
834 for (last_server = daemon->servers; last_server; last_server = last_server->next)
835 if (!(last_server->flags & (SERV_LITERAL_ADDRESS | SERV_HAS_DOMAIN | SERV_FOR_NODOTS | SERV_NO_ADDR)) &&
836 sockaddr_isequal(&last_server->addr, &serveraddr))
837 {
838 server = last_server;
839 break;
840 }
841 }
Simon Kelley28866e92011-02-14 20:19:14 +0000842 if (!option_bool(OPT_ALL_SERVERS))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100843 daemon->last_server = server;
844 }
Simon Kelleya77cec82015-05-08 16:25:38 +0100845
846 /* We tried resending to this server with a smaller maximum size and got an answer.
Simon Kelley86fa1042015-05-10 13:50:59 +0100847 Make that permanent. To avoid reduxing the packet size for an single dropped packet,
848 only do this when we get a truncated answer, or one larger than the safe size. */
849 if (server && (forward->flags & FREC_TEST_PKTSZ) &&
850 ((header->hb3 & HB3_TC) || n >= SAFE_PKTSZ))
Simon Kelleya77cec82015-05-08 16:25:38 +0100851 server->edns_pktsz = SAFE_PKTSZ;
852
Simon Kelley1a6bca82008-07-11 11:11:42 +0100853 /* If the answer is an error, keep the forward record in place in case
854 we get a good reply from another server. Kill it when we've
855 had replies from all to avoid filling the forwarding table when
856 everything is broken */
Baptiste Jonglez68f63122017-02-06 21:09:11 +0000857 if (forward->forwardall == 0 || --forward->forwardall == 1 ||
858 (RCODE(header) != REFUSED && RCODE(header) != SERVFAIL))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100859 {
Simon Kelleyfe3992f2015-04-03 21:25:05 +0100860 int check_rebind = 0, no_cache_dnssec = 0, cache_secure = 0, bogusanswer = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100861
Simon Kelley3a237152013-12-12 12:15:50 +0000862 if (option_bool(OPT_NO_REBIND))
863 check_rebind = !(forward->flags & FREC_NOREBIND);
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100864
Simon Kelley3a237152013-12-12 12:15:50 +0000865 /* Don't cache replies where DNSSEC validation was turned off, either
866 the upstream server told us so, or the original query specified it. */
867 if ((header->hb4 & HB4_CD) || (forward->flags & FREC_CHECKING_DISABLED))
868 no_cache_dnssec = 1;
869
870#ifdef HAVE_DNSSEC
Simon Kelley367341f2016-01-12 15:58:23 +0000871 if (server && (server->flags & SERV_DO_DNSSEC) &&
Simon Kelley57573712016-01-11 22:50:00 +0000872 option_bool(OPT_DNSSEC_VALID) && !(forward->flags & FREC_CHECKING_DISABLED))
Simon Kelley3a237152013-12-12 12:15:50 +0000873 {
Simon Kelley9a31b682015-12-15 10:20:39 +0000874 int status = 0;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000875
876 /* We've had a reply already, which we're validating. Ignore this duplicate */
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000877 if (forward->blocking_query)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000878 return;
Simon Kelley9a31b682015-12-15 10:20:39 +0000879
880 /* Truncated answer can't be validated.
Simon Kelley09f3b2c2017-05-09 01:34:02 +0100881 If this is an answer to a DNSSEC-generated query, we still
882 need to get the client to retry over TCP, so return
883 an answer with the TC bit set, even if the actual answer fits.
884 */
Simon Kelley9a31b682015-12-15 10:20:39 +0000885 if (header->hb3 & HB3_TC)
886 status = STAT_TRUNCATED;
887
888 while (1)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000889 {
Simon Kelley9a31b682015-12-15 10:20:39 +0000890 /* As soon as anything returns BOGUS, we stop and unwind, to do otherwise
891 would invite infinite loops, since the answers to DNSKEY and DS queries
892 will not be cached, so they'll be repeated. */
893 if (status != STAT_BOGUS && status != STAT_TRUNCATED && status != STAT_ABANDONED)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000894 {
Simon Kelley9a31b682015-12-15 10:20:39 +0000895 if (forward->flags & FREC_DNSKEY_QUERY)
896 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
897 else if (forward->flags & FREC_DS_QUERY)
898 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000899 else
Simon Kelley9a31b682015-12-15 10:20:39 +0000900 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class,
Simon Kelleyff19b1a2017-05-21 21:15:32 +0100901 option_bool(OPT_DNSSEC_NO_SIGN) && (server->flags & SERV_DO_DNSSEC), NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000902 }
Simon Kelley0fc2f312014-01-08 10:26:58 +0000903
Simon Kelley9a31b682015-12-15 10:20:39 +0000904 /* Can't validate, as we're missing key data. Put this
905 answer aside, whilst we get that. */
906 if (status == STAT_NEED_DS || status == STAT_NEED_KEY)
Simon Kelley3a237152013-12-12 12:15:50 +0000907 {
Simon Kelley9a31b682015-12-15 10:20:39 +0000908 struct frec *new, *orig;
Simon Kelley9d633042013-12-13 15:36:55 +0000909
Simon Kelley9a31b682015-12-15 10:20:39 +0000910 /* Free any saved query */
911 if (forward->stash)
912 blockdata_free(forward->stash);
913
914 /* Now save reply pending receipt of key data */
915 if (!(forward->stash = blockdata_alloc((char *)header, n)))
Simon Kelley97e618a2015-01-07 21:55:43 +0000916 return;
Simon Kelley9a31b682015-12-15 10:20:39 +0000917 forward->stash_len = n;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000918
Simon Kelley9a31b682015-12-15 10:20:39 +0000919 /* Find the original query that started it all.... */
920 for (orig = forward; orig->dependent; orig = orig->dependent);
Simon Kelley7fa836e2014-02-10 20:11:24 +0000921
Simon Kelley9a31b682015-12-15 10:20:39 +0000922 if (--orig->work_counter == 0 || !(new = get_new_frec(now, NULL, 1)))
923 status = STAT_ABANDONED;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000924 else
Simon Kelley3a237152013-12-12 12:15:50 +0000925 {
Simon Kelleyf344dbc2016-01-18 18:04:17 +0000926 int fd, type = SERV_DO_DNSSEC;
Simon Kelley9a31b682015-12-15 10:20:39 +0000927 struct frec *next = new->next;
Simon Kelley92be34a2016-01-16 18:39:54 +0000928 char *domain;
929
Simon Kelley9a31b682015-12-15 10:20:39 +0000930 *new = *forward; /* copy everything, then overwrite */
931 new->next = next;
932 new->blocking_query = NULL;
Simon Kelley92be34a2016-01-16 18:39:54 +0000933
934 /* Find server to forward to. This will normally be the
935 same as for the original query, but may be another if
936 servers for domains are involved. */
Simon Kelley09f3b2c2017-05-09 01:34:02 +0100937 if (search_servers(now, NULL, F_DNSSECOK, daemon->keyname, &type, &domain, NULL) == 0)
Simon Kelley92be34a2016-01-16 18:39:54 +0000938 {
Simon Kelleyf344dbc2016-01-18 18:04:17 +0000939 struct server *start = server, *new_server = NULL;
Simon Kelley09f3b2c2017-05-09 01:34:02 +0100940
941 while (1)
942 {
943 if (type == (start->flags & (SERV_TYPE | SERV_DO_DNSSEC)) &&
944 (type != SERV_HAS_DOMAIN || hostname_isequal(domain, start->domain)) &&
945 !(start->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP)))
946 {
947 new_server = start;
948 if (server == start)
949 {
950 new_server = NULL;
951 break;
952 }
953 }
954
955 if (!(start = start->next))
956 start = daemon->servers;
957 if (start == server)
958 break;
959 }
960
961 if (new_server)
962 server = new_server;
Simon Kelley92be34a2016-01-16 18:39:54 +0000963 }
Simon Kelley09f3b2c2017-05-09 01:34:02 +0100964
Simon Kelley9a31b682015-12-15 10:20:39 +0000965 new->sentto = server;
966 new->rfd4 = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +0000967#ifdef HAVE_IPV6
Simon Kelley9a31b682015-12-15 10:20:39 +0000968 new->rfd6 = NULL;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000969#endif
Simon Kelley9a31b682015-12-15 10:20:39 +0000970 new->flags &= ~(FREC_DNSKEY_QUERY | FREC_DS_QUERY);
971
972 new->dependent = forward; /* to find query awaiting new one. */
973 forward->blocking_query = new; /* for garbage cleaning */
974 /* validate routines leave name of required record in daemon->keyname */
975 if (status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +0000976 {
Simon Kelley9a31b682015-12-15 10:20:39 +0000977 new->flags |= FREC_DNSKEY_QUERY;
Simon Kelley33702ab2015-12-28 23:17:15 +0000978 nn = dnssec_generate_query(header, ((unsigned char *) header) + server->edns_pktsz,
Simon Kelley9a31b682015-12-15 10:20:39 +0000979 daemon->keyname, forward->class, T_DNSKEY, &server->addr, server->edns_pktsz);
Simon Kelleyf1668d22014-01-08 16:53:27 +0000980 }
Simon Kelley9a31b682015-12-15 10:20:39 +0000981 else
982 {
983 new->flags |= FREC_DS_QUERY;
Simon Kelley33702ab2015-12-28 23:17:15 +0000984 nn = dnssec_generate_query(header,((unsigned char *) header) + server->edns_pktsz,
Simon Kelley9a31b682015-12-15 10:20:39 +0000985 daemon->keyname, forward->class, T_DS, &server->addr, server->edns_pktsz);
986 }
987 if ((hash = hash_questions(header, nn, daemon->namebuff)))
988 memcpy(new->hash, hash, HASH_SIZE);
989 new->new_id = get_id();
990 header->id = htons(new->new_id);
991 /* Save query for retransmission */
992 new->stash = blockdata_alloc((char *)header, nn);
993 new->stash_len = nn;
994
995 /* Don't resend this. */
996 daemon->srv_save = NULL;
997
998 if (server->sfd)
999 fd = server->sfd->fd;
1000 else
1001 {
1002 fd = -1;
1003#ifdef HAVE_IPV6
1004 if (server->addr.sa.sa_family == AF_INET6)
1005 {
1006 if (new->rfd6 || (new->rfd6 = allocate_rfd(AF_INET6)))
1007 fd = new->rfd6->fd;
1008 }
1009 else
1010#endif
1011 {
1012 if (new->rfd4 || (new->rfd4 = allocate_rfd(AF_INET)))
1013 fd = new->rfd4->fd;
1014 }
1015 }
1016
1017 if (fd != -1)
1018 {
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001019#ifdef HAVE_CONNTRACK
1020 /* Copy connection mark of incoming query to outgoing connection. */
1021 if (option_bool(OPT_CONNTRACK))
1022 {
1023 unsigned int mark;
1024 if (get_incoming_mark(&orig->source, &orig->dest, 0, &mark))
1025 setsockopt(fd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
1026 }
1027#endif
Simon Kelley9a31b682015-12-15 10:20:39 +00001028 while (retry_send(sendto(fd, (char *)header, nn, 0,
1029 &server->addr.sa,
1030 sa_len(&server->addr))));
1031 server->queries++;
1032 }
1033 }
Simon Kelley7fa836e2014-02-10 20:11:24 +00001034 return;
Simon Kelley3a237152013-12-12 12:15:50 +00001035 }
Simon Kelley3a237152013-12-12 12:15:50 +00001036
Simon Kelley9a31b682015-12-15 10:20:39 +00001037 /* Validated original answer, all done. */
1038 if (!forward->dependent)
1039 break;
1040
Josh Soref730c6742017-02-06 16:14:04 +00001041 /* validated subsidiary query, (and cached result)
Simon Kelley9a31b682015-12-15 10:20:39 +00001042 pop that and return to the previous query we were working on. */
Simon Kelley0744ca62014-01-25 16:40:15 +00001043 struct frec *prev = forward->dependent;
1044 free_frec(forward);
1045 forward = prev;
1046 forward->blocking_query = NULL; /* already gone */
1047 blockdata_retrieve(forward->stash, forward->stash_len, (void *)header);
1048 n = forward->stash_len;
Simon Kelley3a237152013-12-12 12:15:50 +00001049 }
Simon Kelley9a31b682015-12-15 10:20:39 +00001050
Simon Kelley5d3b87a2014-01-20 11:57:23 +00001051
Simon Kelleyfe3992f2015-04-03 21:25:05 +01001052 no_cache_dnssec = 0;
Simon Kelleyfe3992f2015-04-03 21:25:05 +01001053
Simon Kelley5d3b87a2014-01-20 11:57:23 +00001054 if (status == STAT_TRUNCATED)
Simon Kelley0744ca62014-01-25 16:40:15 +00001055 header->hb3 |= HB3_TC;
Simon Kelley5d3b87a2014-01-20 11:57:23 +00001056 else
Simon Kelley7fa836e2014-02-10 20:11:24 +00001057 {
Simon Kelley554b5802015-04-17 22:50:20 +01001058 char *result, *domain = "result";
Simon Kelley7fa836e2014-02-10 20:11:24 +00001059
Simon Kelley9a31b682015-12-15 10:20:39 +00001060 if (status == STAT_ABANDONED)
Simon Kelley150162b2015-03-27 09:58:26 +00001061 {
1062 result = "ABANDONED";
1063 status = STAT_BOGUS;
1064 }
Simon Kelley7fa836e2014-02-10 20:11:24 +00001065 else
1066 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
1067
Simon Kelley554b5802015-04-17 22:50:20 +01001068 if (status == STAT_BOGUS && extract_request(header, n, daemon->namebuff, NULL))
1069 domain = daemon->namebuff;
Simon Kelley9a31b682015-12-15 10:20:39 +00001070
Simon Kelley554b5802015-04-17 22:50:20 +01001071 log_query(F_KEYTAG | F_SECSTAT, domain, NULL, result);
Simon Kelley7fa836e2014-02-10 20:11:24 +00001072 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +00001073
Simon Kelley3a237152013-12-12 12:15:50 +00001074 if (status == STAT_SECURE)
1075 cache_secure = 1;
Simon Kelley3a237152013-12-12 12:15:50 +00001076 else if (status == STAT_BOGUS)
Simon Kelleyfe3992f2015-04-03 21:25:05 +01001077 {
1078 no_cache_dnssec = 1;
1079 bogusanswer = 1;
1080 }
Simon Kelley3a237152013-12-12 12:15:50 +00001081 }
Simon Kelley83349b82014-02-10 21:02:01 +00001082#endif
1083
1084 /* restore CD bit to the value in the query */
1085 if (forward->flags & FREC_CHECKING_DISABLED)
1086 header->hb4 |= HB4_CD;
1087 else
1088 header->hb4 &= ~HB4_CD;
Simon Kelley3a237152013-12-12 12:15:50 +00001089
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001090 if ((nn = process_reply(header, now, forward->sentto, (size_t)n, check_rebind, no_cache_dnssec, cache_secure, bogusanswer,
Simon Kelley613ad152014-02-25 23:02:28 +00001091 forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION,
1092 forward->flags & FREC_ADDED_PHEADER, forward->flags & FREC_HAS_SUBNET, &forward->source)))
Simon Kelley832af0b2007-01-21 20:01:28 +00001093 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01001094 header->id = htons(forward->orig_id);
Simon Kelley572b41e2011-02-18 18:11:18 +00001095 header->hb4 |= HB4_RA; /* recursion if available */
Simon Kelley5aa5f0f2015-12-21 17:20:35 +00001096#ifdef HAVE_DNSSEC
1097 /* We added an EDNSO header for the purpose of getting DNSSEC RRs, and set the value of the UDP payload size
1098 greater than the no-EDNS0-implied 512 to have if space for the RRSIGS. If, having stripped them and the EDNS0
1099 header, the answer is still bigger than 512, truncate it and mark it so. The client then retries with TCP. */
1100 if (option_bool(OPT_DNSSEC_VALID) && (forward->flags & FREC_ADDED_PHEADER) && (nn > PACKETSZ))
1101 {
1102 header->ancount = htons(0);
1103 header->nscount = htons(0);
1104 header->arcount = htons(0);
1105 header->hb3 |= HB3_TC;
1106 nn = resize_packet(header, nn, NULL, 0);
1107 }
1108#endif
Simon Kelley54dd3932012-06-20 11:23:38 +01001109 send_from(forward->fd, option_bool(OPT_NOWILD) || option_bool (OPT_CLEVERBIND), daemon->packet, nn,
Simon Kelley50303b12012-04-04 22:13:17 +01001110 &forward->source, &forward->dest, forward->iface);
Simon Kelley832af0b2007-01-21 20:01:28 +00001111 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01001112 free_frec(forward); /* cancel */
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001113 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001114}
Simon Kelley44a2a312004-03-10 20:04:35 +00001115
Simon Kelley1a6bca82008-07-11 11:11:42 +01001116
Simon Kelley5aabfc72007-08-29 11:24:47 +01001117void receive_query(struct listener *listen, time_t now)
Simon Kelley44a2a312004-03-10 20:04:35 +00001118{
Simon Kelley572b41e2011-02-18 18:11:18 +00001119 struct dns_header *header = (struct dns_header *)daemon->packet;
Simon Kelley44a2a312004-03-10 20:04:35 +00001120 union mysockaddr source_addr;
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001121 unsigned char *pheader;
1122 unsigned short type, udp_size = PACKETSZ; /* default if no EDNS0 */
Simon Kelley44a2a312004-03-10 20:04:35 +00001123 struct all_addr dst_addr;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001124 struct in_addr netmask, dst_addr_4;
Simon Kelleycdeda282006-03-16 20:16:06 +00001125 size_t m;
1126 ssize_t n;
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001127 int if_index = 0, auth_dns = 0, do_bit = 0, have_pseudoheader = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001128#ifdef HAVE_AUTH
1129 int local_auth = 0;
1130#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001131 struct iovec iov[1];
1132 struct msghdr msg;
1133 struct cmsghdr *cmptr;
Simon Kelley44a2a312004-03-10 20:04:35 +00001134 union {
1135 struct cmsghdr align; /* this ensures alignment */
1136#ifdef HAVE_IPV6
1137 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
1138#endif
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001139#if defined(HAVE_LINUX_NETWORK)
Simon Kelley44a2a312004-03-10 20:04:35 +00001140 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
Simon Kelley824af852008-02-12 20:43:05 +00001141#elif defined(IP_RECVDSTADDR) && defined(HAVE_SOLARIS_NETWORK)
1142 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1143 CMSG_SPACE(sizeof(unsigned int))];
Simon Kelley44a2a312004-03-10 20:04:35 +00001144#elif defined(IP_RECVDSTADDR)
1145 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1146 CMSG_SPACE(sizeof(struct sockaddr_dl))];
1147#endif
1148 } control_u;
Simon Kelley2329bef2013-12-03 13:41:16 +00001149#ifdef HAVE_IPV6
1150 /* Can always get recvd interface for IPv6 */
1151 int check_dst = !option_bool(OPT_NOWILD) || listen->family == AF_INET6;
1152#else
1153 int check_dst = !option_bool(OPT_NOWILD);
1154#endif
1155
Simon Kelleycdeda282006-03-16 20:16:06 +00001156 /* packet buffer overwritten */
1157 daemon->srv_save = NULL;
1158
Hans Dedecker98906272014-12-09 22:22:53 +00001159 dst_addr_4.s_addr = dst_addr.addr.addr4.s_addr = 0;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001160 netmask.s_addr = 0;
1161
Simon Kelley7e5664b2013-04-05 16:57:41 +01001162 if (option_bool(OPT_NOWILD) && listen->iface)
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001163 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001164 auth_dns = listen->iface->dns_auth;
1165
1166 if (listen->family == AF_INET)
1167 {
Hans Dedecker98906272014-12-09 22:22:53 +00001168 dst_addr_4 = dst_addr.addr.addr4 = listen->iface->addr.in.sin_addr;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001169 netmask = listen->iface->netmask;
1170 }
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001171 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001172
Simon Kelley3be34542004-09-11 19:12:13 +01001173 iov[0].iov_base = daemon->packet;
1174 iov[0].iov_len = daemon->edns_pktsz;
Simon Kelley44a2a312004-03-10 20:04:35 +00001175
1176 msg.msg_control = control_u.control;
1177 msg.msg_controllen = sizeof(control_u);
1178 msg.msg_flags = 0;
1179 msg.msg_name = &source_addr;
1180 msg.msg_namelen = sizeof(source_addr);
1181 msg.msg_iov = iov;
1182 msg.msg_iovlen = 1;
1183
Simon Kelleyde379512004-06-22 20:23:33 +01001184 if ((n = recvmsg(listen->fd, &msg, 0)) == -1)
Simon Kelley3be34542004-09-11 19:12:13 +01001185 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001186
Simon Kelley572b41e2011-02-18 18:11:18 +00001187 if (n < (int)sizeof(struct dns_header) ||
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001188 (msg.msg_flags & MSG_TRUNC) ||
Simon Kelley572b41e2011-02-18 18:11:18 +00001189 (header->hb3 & HB3_QR))
Simon Kelley3be34542004-09-11 19:12:13 +01001190 return;
Simon Kelley63437ff2017-09-06 22:34:21 +01001191
1192 /* Clear buffer beyond request to avoid risk of
1193 information disclosure. */
1194 memset(daemon->packet + n, 0, daemon->edns_pktsz - n);
Simon Kelley44a2a312004-03-10 20:04:35 +00001195
Simon Kelley26128d22004-11-14 16:43:54 +00001196 source_addr.sa.sa_family = listen->family;
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001197
1198 if (listen->family == AF_INET)
1199 {
1200 /* Source-port == 0 is an error, we can't send back to that.
1201 http://www.ietf.org/mail-archive/web/dnsop/current/msg11441.html */
1202 if (source_addr.in.sin_port == 0)
1203 return;
1204 }
Simon Kelley26128d22004-11-14 16:43:54 +00001205#ifdef HAVE_IPV6
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001206 else
1207 {
1208 /* Source-port == 0 is an error, we can't send back to that. */
1209 if (source_addr.in6.sin6_port == 0)
1210 return;
1211 source_addr.in6.sin6_flowinfo = 0;
1212 }
Simon Kelley26128d22004-11-14 16:43:54 +00001213#endif
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001214
Simon Kelleyc8a80482014-03-05 14:29:54 +00001215 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1216 if (option_bool(OPT_LOCAL_SERVICE))
1217 {
1218 struct addrlist *addr;
1219#ifdef HAVE_IPV6
1220 if (listen->family == AF_INET6)
1221 {
1222 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1223 if ((addr->flags & ADDRLIST_IPV6) &&
1224 is_same_net6(&addr->addr.addr.addr6, &source_addr.in6.sin6_addr, addr->prefixlen))
1225 break;
1226 }
1227 else
1228#endif
1229 {
1230 struct in_addr netmask;
1231 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1232 {
Richard Genoud15b1b7e2014-09-17 21:12:00 +01001233 netmask.s_addr = htonl(~(in_addr_t)0 << (32 - addr->prefixlen));
Simon Kelleyc8a80482014-03-05 14:29:54 +00001234 if (!(addr->flags & ADDRLIST_IPV6) &&
1235 is_same_net(addr->addr.addr.addr4, source_addr.in.sin_addr, netmask))
1236 break;
1237 }
1238 }
1239 if (!addr)
1240 {
Simon Kelley0c8584e2014-03-12 20:12:56 +00001241 static int warned = 0;
1242 if (!warned)
1243 {
1244 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1245 warned = 1;
1246 }
Simon Kelleyc8a80482014-03-05 14:29:54 +00001247 return;
1248 }
1249 }
1250
Simon Kelley2329bef2013-12-03 13:41:16 +00001251 if (check_dst)
Simon Kelley44a2a312004-03-10 20:04:35 +00001252 {
Simon Kelley8a911cc2004-03-16 18:35:52 +00001253 struct ifreq ifr;
1254
Simon Kelley26128d22004-11-14 16:43:54 +00001255 if (msg.msg_controllen < sizeof(struct cmsghdr))
1256 return;
1257
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001258#if defined(HAVE_LINUX_NETWORK)
Simon Kelley26128d22004-11-14 16:43:54 +00001259 if (listen->family == AF_INET)
1260 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001261 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
Simon Kelley26128d22004-11-14 16:43:54 +00001262 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001263 union {
1264 unsigned char *c;
1265 struct in_pktinfo *p;
1266 } p;
1267 p.c = CMSG_DATA(cmptr);
1268 dst_addr_4 = dst_addr.addr.addr4 = p.p->ipi_spec_dst;
1269 if_index = p.p->ipi_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001270 }
1271#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
1272 if (listen->family == AF_INET)
1273 {
1274 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001275 {
1276 union {
1277 unsigned char *c;
1278 unsigned int *i;
1279 struct in_addr *a;
1280#ifndef HAVE_SOLARIS_NETWORK
1281 struct sockaddr_dl *s;
Simon Kelley824af852008-02-12 20:43:05 +00001282#endif
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001283 } p;
1284 p.c = CMSG_DATA(cmptr);
1285 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
1286 dst_addr_4 = dst_addr.addr.addr4 = *(p.a);
1287 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
1288#ifdef HAVE_SOLARIS_NETWORK
1289 if_index = *(p.i);
1290#else
1291 if_index = p.s->sdl_index;
1292#endif
1293 }
Simon Kelley26128d22004-11-14 16:43:54 +00001294 }
1295#endif
1296
1297#ifdef HAVE_IPV6
1298 if (listen->family == AF_INET6)
1299 {
1300 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001301 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
Simon Kelley26128d22004-11-14 16:43:54 +00001302 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001303 union {
1304 unsigned char *c;
1305 struct in6_pktinfo *p;
1306 } p;
1307 p.c = CMSG_DATA(cmptr);
1308
1309 dst_addr.addr.addr6 = p.p->ipi6_addr;
1310 if_index = p.p->ipi6_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001311 }
1312 }
1313#endif
1314
1315 /* enforce available interface configuration */
1316
Simon Kelleye25db1f2013-01-29 22:10:26 +00001317 if (!indextoname(listen->fd, if_index, ifr.ifr_name))
Simon Kelley832af0b2007-01-21 20:01:28 +00001318 return;
1319
Simon Kelleye25db1f2013-01-29 22:10:26 +00001320 if (!iface_check(listen->family, &dst_addr, ifr.ifr_name, &auth_dns))
1321 {
1322 if (!option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001323 enumerate_interfaces(0);
Simon Kelley3f2873d2013-05-14 11:28:47 +01001324 if (!loopback_exception(listen->fd, listen->family, &dst_addr, ifr.ifr_name) &&
1325 !label_exception(if_index, listen->family, &dst_addr))
Simon Kelleye25db1f2013-01-29 22:10:26 +00001326 return;
1327 }
1328
Simon Kelley552af8b2012-02-29 20:10:31 +00001329 if (listen->family == AF_INET && option_bool(OPT_LOCALISE))
1330 {
1331 struct irec *iface;
1332
Josh Soref730c6742017-02-06 16:14:04 +00001333 /* get the netmask of the interface which has the address we were sent to.
klemens43517fc2017-02-19 15:53:37 +00001334 This is no necessarily the interface we arrived on. */
Simon Kelley552af8b2012-02-29 20:10:31 +00001335
1336 for (iface = daemon->interfaces; iface; iface = iface->next)
1337 if (iface->addr.sa.sa_family == AF_INET &&
1338 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1339 break;
1340
1341 /* interface may be new */
Simon Kelleye25db1f2013-01-29 22:10:26 +00001342 if (!iface && !option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001343 enumerate_interfaces(0);
Simon Kelley552af8b2012-02-29 20:10:31 +00001344
1345 for (iface = daemon->interfaces; iface; iface = iface->next)
1346 if (iface->addr.sa.sa_family == AF_INET &&
1347 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1348 break;
1349
1350 /* If we failed, abandon localisation */
1351 if (iface)
1352 netmask = iface->netmask;
1353 else
1354 dst_addr_4.s_addr = 0;
1355 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001356 }
Simon Kelley25cf5e32015-01-09 15:53:03 +00001357
1358 /* log_query gets called indirectly all over the place, so
1359 pass these in global variables - sorry. */
1360 daemon->log_display_id = ++daemon->log_id;
1361 daemon->log_source_addr = &source_addr;
Simon Kelley44a2a312004-03-10 20:04:35 +00001362
Simon Kelleycdeda282006-03-16 20:16:06 +00001363 if (extract_request(header, (size_t)n, daemon->namebuff, &type))
Simon Kelley44a2a312004-03-10 20:04:35 +00001364 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001365#ifdef HAVE_AUTH
1366 struct auth_zone *zone;
1367#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001368 char *types = querystr(auth_dns ? "auth" : "query", type);
1369
Simon Kelley44a2a312004-03-10 20:04:35 +00001370 if (listen->family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01001371 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001372 (struct all_addr *)&source_addr.in.sin_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001373#ifdef HAVE_IPV6
1374 else
Simon Kelley3be34542004-09-11 19:12:13 +01001375 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001376 (struct all_addr *)&source_addr.in6.sin6_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001377#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001378
Simon Kelley4820dce2012-12-18 18:30:30 +00001379#ifdef HAVE_AUTH
Simon Kelleyb485ed92013-10-18 22:00:39 +01001380 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley3a3965a2015-08-09 17:45:06 +01001381 if (!auth_dns && !option_bool(OPT_LOCALISE))
Simon Kelley6008bdb2013-10-21 21:47:03 +01001382 for (zone = daemon->auth_zones; zone; zone = zone->next)
1383 if (in_zone(zone, daemon->namebuff, NULL))
1384 {
1385 auth_dns = 1;
1386 local_auth = 1;
1387 break;
1388 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001389#endif
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001390
1391#ifdef HAVE_LOOP
1392 /* Check for forwarding loop */
1393 if (detect_loop(daemon->namebuff, type))
1394 return;
1395#endif
Simon Kelleyb485ed92013-10-18 22:00:39 +01001396 }
1397
Simon Kelley5bb88f02015-12-21 16:23:47 +00001398 if (find_pseudoheader(header, (size_t)n, NULL, &pheader, NULL, NULL))
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001399 {
1400 unsigned short flags;
1401
1402 have_pseudoheader = 1;
1403 GETSHORT(udp_size, pheader);
1404 pheader += 2; /* ext_rcode */
1405 GETSHORT(flags, pheader);
1406
1407 if (flags & 0x8000)
1408 do_bit = 1;/* do bit */
1409
1410 /* If the client provides an EDNS0 UDP size, use that to limit our reply.
1411 (bounded by the maximum configured). If no EDNS0, then it
1412 defaults to 512 */
1413 if (udp_size > daemon->edns_pktsz)
1414 udp_size = daemon->edns_pktsz;
1415 }
1416
Simon Kelleyb485ed92013-10-18 22:00:39 +01001417#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001418 if (auth_dns)
Simon Kelley824af852008-02-12 20:43:05 +00001419 {
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001420 m = answer_auth(header, ((char *) header) + udp_size, (size_t)n, now, &source_addr,
1421 local_auth, do_bit, have_pseudoheader);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001422 if (m >= 1)
Simon Kelleyb485ed92013-10-18 22:00:39 +01001423 {
1424 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1425 (char *)header, m, &source_addr, &dst_addr, if_index);
1426 daemon->auth_answer++;
1427 }
Simon Kelley824af852008-02-12 20:43:05 +00001428 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001429 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001430#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001431 {
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001432 int ad_reqd = do_bit;
1433 /* RFC 6840 5.7 */
1434 if (header->hb4 & HB4_AD)
1435 ad_reqd = 1;
1436
1437 m = answer_request(header, ((char *) header) + udp_size, (size_t)n,
1438 dst_addr_4, netmask, now, ad_reqd, do_bit, have_pseudoheader);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001439
1440 if (m >= 1)
1441 {
1442 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1443 (char *)header, m, &source_addr, &dst_addr, if_index);
1444 daemon->local_answer++;
1445 }
1446 else if (forward_query(listen->fd, &source_addr, &dst_addr, if_index,
Simon Kelley613ad152014-02-25 23:02:28 +00001447 header, (size_t)n, now, NULL, ad_reqd, do_bit))
Simon Kelley4f7b3042012-11-28 21:27:02 +00001448 daemon->queries_forwarded++;
1449 else
1450 daemon->local_answer++;
1451 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001452}
1453
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001454#ifdef HAVE_DNSSEC
Josh Soref730c6742017-02-06 16:14:04 +00001455/* Recurse up the key hierarchy */
Simon Kelley7fa836e2014-02-10 20:11:24 +00001456static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n,
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001457 int class, char *name, char *keyname, struct server *server,
1458 int have_mark, unsigned int mark, int *keycount)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001459{
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001460 int new_status;
Simon Kelley9a31b682015-12-15 10:20:39 +00001461 unsigned char *packet = NULL;
Simon Kelley9a31b682015-12-15 10:20:39 +00001462 unsigned char *payload = NULL;
1463 struct dns_header *new_header = NULL;
1464 u16 *length = NULL;
Simon Kelley361dfe52017-02-10 21:12:30 +00001465
Simon Kelley9a31b682015-12-15 10:20:39 +00001466 while (1)
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001467 {
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001468 int type = SERV_DO_DNSSEC;
1469 char *domain;
1470 size_t m;
1471 unsigned char c1, c2;
Simon Kelley361dfe52017-02-10 21:12:30 +00001472 struct server *firstsendto = NULL;
1473
Simon Kelley9a31b682015-12-15 10:20:39 +00001474 /* limit the amount of work we do, to avoid cycling forever on loops in the DNS */
1475 if (--(*keycount) == 0)
1476 new_status = STAT_ABANDONED;
1477 else if (status == STAT_NEED_KEY)
1478 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
1479 else if (status == STAT_NEED_DS)
1480 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
1481 else
James Bottomleye33b4872017-03-17 21:44:10 +00001482 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class,
Simon Kelleyff19b1a2017-05-21 21:15:32 +01001483 option_bool(OPT_DNSSEC_NO_SIGN) && (server->flags & SERV_DO_DNSSEC), NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001484
Simon Kelley9a31b682015-12-15 10:20:39 +00001485 if (new_status != STAT_NEED_DS && new_status != STAT_NEED_KEY)
1486 break;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001487
Simon Kelley9a31b682015-12-15 10:20:39 +00001488 /* Can't validate because we need a key/DS whose name now in keyname.
1489 Make query for same, and recurse to validate */
Simon Kelley7fa836e2014-02-10 20:11:24 +00001490 if (!packet)
Simon Kelley9a31b682015-12-15 10:20:39 +00001491 {
1492 packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1493 payload = &packet[2];
1494 new_header = (struct dns_header *)payload;
1495 length = (u16 *)packet;
1496 }
1497
1498 if (!packet)
1499 {
1500 new_status = STAT_ABANDONED;
1501 break;
1502 }
1503
Simon Kelley33702ab2015-12-28 23:17:15 +00001504 m = dnssec_generate_query(new_header, ((unsigned char *) new_header) + 65536, keyname, class,
Simon Kelleya77cec82015-05-08 16:25:38 +01001505 new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS, &server->addr, server->edns_pktsz);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001506
Simon Kelley7fa836e2014-02-10 20:11:24 +00001507 *length = htons(m);
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001508
1509 /* Find server to forward to. This will normally be the
1510 same as for the original query, but may be another if
1511 servers for domains are involved. */
Simon Kelley09f3b2c2017-05-09 01:34:02 +01001512 if (search_servers(now, NULL, F_DNSSECOK, keyname, &type, &domain, NULL) != 0)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001513 {
Simon Kelley9a31b682015-12-15 10:20:39 +00001514 new_status = STAT_ABANDONED;
1515 break;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001516 }
Simon Kelley361dfe52017-02-10 21:12:30 +00001517
Simon Kelley361dfe52017-02-10 21:12:30 +00001518 while (1)
1519 {
1520 if (!firstsendto)
1521 firstsendto = server;
1522 else
1523 {
1524 if (!(server = server->next))
1525 server = daemon->servers;
1526 if (server == firstsendto)
1527 {
1528 /* can't find server to accept our query. */
1529 new_status = STAT_ABANDONED;
1530 break;
1531 }
1532 }
1533
Simon Kelley09f3b2c2017-05-09 01:34:02 +01001534 if (type != (server->flags & (SERV_TYPE | SERV_DO_DNSSEC)) ||
Simon Kelley361dfe52017-02-10 21:12:30 +00001535 (type == SERV_HAS_DOMAIN && !hostname_isequal(domain, server->domain)) ||
1536 (server->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP)))
1537 continue;
Simon Kelley09f3b2c2017-05-09 01:34:02 +01001538
1539 retry:
1540 /* may need to make new connection. */
1541 if (server->tcpfd == -1)
1542 {
1543 if ((server->tcpfd = socket(server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1)
Simon Kelley361dfe52017-02-10 21:12:30 +00001544 continue; /* No good, next server */
Simon Kelley09f3b2c2017-05-09 01:34:02 +01001545
1546#ifdef HAVE_CONNTRACK
1547 /* Copy connection mark of incoming query to outgoing connection. */
1548 if (have_mark)
1549 setsockopt(server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
1550#endif
1551
1552 if (!local_bind(server->tcpfd, &server->source_addr, server->interface, 1) ||
1553 connect(server->tcpfd, &server->addr.sa, sa_len(&server->addr)) == -1)
1554 {
1555 close(server->tcpfd);
1556 server->tcpfd = -1;
1557 continue; /* No good, next server */
1558 }
1559
1560 server->flags &= ~SERV_GOT_TCP;
1561 }
Simon Kelley361dfe52017-02-10 21:12:30 +00001562
1563 if (!read_write(server->tcpfd, packet, m + sizeof(u16), 0) ||
1564 !read_write(server->tcpfd, &c1, 1, 1) ||
1565 !read_write(server->tcpfd, &c2, 1, 1) ||
1566 !read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
1567 {
1568 close(server->tcpfd);
1569 server->tcpfd = -1;
1570 /* We get data then EOF, reopen connection to same server,
1571 else try next. This avoids DoS from a server which accepts
1572 connections and then closes them. */
1573 if (server->flags & SERV_GOT_TCP)
1574 goto retry;
1575 else
1576 continue;
1577 }
1578
1579 server->flags |= SERV_GOT_TCP;
1580
1581 m = (c1 << 8) | c2;
1582 new_status = tcp_key_recurse(now, new_status, new_header, m, class, name, keyname, server, have_mark, mark, keycount);
1583 break;
1584 }
Simon Kelley9a31b682015-12-15 10:20:39 +00001585
1586 if (new_status != STAT_OK)
1587 break;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001588 }
Simon Kelley361dfe52017-02-10 21:12:30 +00001589
Simon Kelley9a31b682015-12-15 10:20:39 +00001590 if (packet)
1591 free(packet);
1592
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001593 return new_status;
1594}
1595#endif
1596
1597
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001598/* The daemon forks before calling this: it should deal with one connection,
Josh Soref730c6742017-02-06 16:14:04 +00001599 blocking as necessary, and then return. Note, need to be a bit careful
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001600 about resources for debug mode, when the fork is suppressed: that's
1601 done by the caller. */
Simon Kelley5aabfc72007-08-29 11:24:47 +01001602unsigned char *tcp_request(int confd, time_t now,
Simon Kelley4f7b3042012-11-28 21:27:02 +00001603 union mysockaddr *local_addr, struct in_addr netmask, int auth_dns)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001604{
Simon Kelley28866e92011-02-14 20:19:14 +00001605 size_t size = 0;
1606 int norebind = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001607#ifdef HAVE_AUTH
Simon Kelley19b16892013-10-20 10:19:39 +01001608 int local_auth = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001609#endif
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001610 int checking_disabled, do_bit, added_pheader = 0, have_pseudoheader = 0;
Simon Kelleyfe3992f2015-04-03 21:25:05 +01001611 int check_subnet, no_cache_dnssec = 0, cache_secure = 0, bogusanswer = 0;
Simon Kelleycdeda282006-03-16 20:16:06 +00001612 size_t m;
Simon Kelleyee86ce62012-12-07 11:54:46 +00001613 unsigned short qtype;
1614 unsigned int gotname;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001615 unsigned char c1, c2;
Simon Kelley4b5ea122013-04-22 10:18:26 +01001616 /* Max TCP packet + slop + size */
1617 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1618 unsigned char *payload = &packet[2];
1619 /* largest field in header is 16-bits, so this is still sufficiently aligned */
1620 struct dns_header *header = (struct dns_header *)payload;
1621 u16 *length = (u16 *)packet;
Simon Kelley3be34542004-09-11 19:12:13 +01001622 struct server *last_server;
Simon Kelley7de060b2011-08-26 17:24:52 +01001623 struct in_addr dst_addr_4;
1624 union mysockaddr peer_addr;
1625 socklen_t peer_len = sizeof(union mysockaddr);
Simon Kelley25cf5e32015-01-09 15:53:03 +00001626 int query_count = 0;
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001627 unsigned char *pheader;
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001628 unsigned int mark = 0;
1629 int have_mark = 0;
Simon Kelley25cf5e32015-01-09 15:53:03 +00001630
Simon Kelleyd05dd582016-01-19 21:23:30 +00001631 (void)mark;
1632 (void)have_mark;
1633
Simon Kelley7de060b2011-08-26 17:24:52 +01001634 if (getpeername(confd, (struct sockaddr *)&peer_addr, &peer_len) == -1)
1635 return packet;
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001636
1637#ifdef HAVE_CONNTRACK
1638 /* Get connection mark of incoming query to set on outgoing connections. */
1639 if (option_bool(OPT_CONNTRACK))
1640 {
1641 struct all_addr local;
1642#ifdef HAVE_IPV6
1643 if (local_addr->sa.sa_family == AF_INET6)
1644 local.addr.addr6 = local_addr->in6.sin6_addr;
1645 else
1646#endif
1647 local.addr.addr4 = local_addr->in.sin_addr;
1648
1649 have_mark = get_incoming_mark(&peer_addr, &local, 1, &mark);
1650 }
1651#endif
1652
Simon Kelleyc8a80482014-03-05 14:29:54 +00001653 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1654 if (option_bool(OPT_LOCAL_SERVICE))
1655 {
1656 struct addrlist *addr;
1657#ifdef HAVE_IPV6
1658 if (peer_addr.sa.sa_family == AF_INET6)
1659 {
1660 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1661 if ((addr->flags & ADDRLIST_IPV6) &&
1662 is_same_net6(&addr->addr.addr.addr6, &peer_addr.in6.sin6_addr, addr->prefixlen))
1663 break;
1664 }
1665 else
1666#endif
1667 {
1668 struct in_addr netmask;
1669 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1670 {
Richard Genoud15b1b7e2014-09-17 21:12:00 +01001671 netmask.s_addr = htonl(~(in_addr_t)0 << (32 - addr->prefixlen));
Simon Kelleyc8a80482014-03-05 14:29:54 +00001672 if (!(addr->flags & ADDRLIST_IPV6) &&
1673 is_same_net(addr->addr.addr.addr4, peer_addr.in.sin_addr, netmask))
1674 break;
1675 }
1676 }
1677 if (!addr)
1678 {
1679 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1680 return packet;
1681 }
1682 }
Simon Kelley7de060b2011-08-26 17:24:52 +01001683
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001684 while (1)
1685 {
Simon Kelley25cf5e32015-01-09 15:53:03 +00001686 if (query_count == TCP_MAX_QUERIES ||
1687 !packet ||
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001688 !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) ||
1689 !(size = c1 << 8 | c2) ||
Simon Kelley4b5ea122013-04-22 10:18:26 +01001690 !read_write(confd, payload, size, 1))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001691 return packet;
1692
Simon Kelley572b41e2011-02-18 18:11:18 +00001693 if (size < (int)sizeof(struct dns_header))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001694 continue;
Simon Kelley63437ff2017-09-06 22:34:21 +01001695
1696 /* Clear buffer beyond request to avoid risk of
1697 information disclosure. */
1698 memset(payload + size, 0, 65536 - size);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001699
Simon Kelley25cf5e32015-01-09 15:53:03 +00001700 query_count++;
1701
1702 /* log_query gets called indirectly all over the place, so
1703 pass these in global variables - sorry. */
1704 daemon->log_display_id = ++daemon->log_id;
1705 daemon->log_source_addr = &peer_addr;
1706
Simon Kelley28866e92011-02-14 20:19:14 +00001707 /* save state of "cd" flag in query */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001708 if ((checking_disabled = header->hb4 & HB4_CD))
1709 no_cache_dnssec = 1;
Simon Kelley28866e92011-02-14 20:19:14 +00001710
Simon Kelley3be34542004-09-11 19:12:13 +01001711 if ((gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001712 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001713#ifdef HAVE_AUTH
1714 struct auth_zone *zone;
1715#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001716 char *types = querystr(auth_dns ? "auth" : "query", qtype);
Simon Kelley7de060b2011-08-26 17:24:52 +01001717
1718 if (peer_addr.sa.sa_family == AF_INET)
1719 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
1720 (struct all_addr *)&peer_addr.in.sin_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001721#ifdef HAVE_IPV6
Simon Kelley7de060b2011-08-26 17:24:52 +01001722 else
1723 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
1724 (struct all_addr *)&peer_addr.in6.sin6_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001725#endif
Simon Kelleyb485ed92013-10-18 22:00:39 +01001726
1727#ifdef HAVE_AUTH
1728 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley3a3965a2015-08-09 17:45:06 +01001729 if (!auth_dns && !option_bool(OPT_LOCALISE))
Simon Kelley6008bdb2013-10-21 21:47:03 +01001730 for (zone = daemon->auth_zones; zone; zone = zone->next)
1731 if (in_zone(zone, daemon->namebuff, NULL))
1732 {
1733 auth_dns = 1;
1734 local_auth = 1;
1735 break;
1736 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001737#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001738 }
1739
Simon Kelley7de060b2011-08-26 17:24:52 +01001740 if (local_addr->sa.sa_family == AF_INET)
1741 dst_addr_4 = local_addr->in.sin_addr;
1742 else
1743 dst_addr_4.s_addr = 0;
1744
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001745 do_bit = 0;
1746
Simon Kelley5bb88f02015-12-21 16:23:47 +00001747 if (find_pseudoheader(header, (size_t)size, NULL, &pheader, NULL, NULL))
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001748 {
1749 unsigned short flags;
1750
1751 have_pseudoheader = 1;
1752 pheader += 4; /* udp_size, ext_rcode */
1753 GETSHORT(flags, pheader);
1754
1755 if (flags & 0x8000)
Simon Kelley5bb88f02015-12-21 16:23:47 +00001756 do_bit = 1; /* do bit */
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001757 }
1758
Simon Kelley4820dce2012-12-18 18:30:30 +00001759#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001760 if (auth_dns)
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001761 m = answer_auth(header, ((char *) header) + 65536, (size_t)size, now, &peer_addr,
1762 local_auth, do_bit, have_pseudoheader);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001763 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001764#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001765 {
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001766 int ad_reqd = do_bit;
1767 /* RFC 6840 5.7 */
1768 if (header->hb4 & HB4_AD)
1769 ad_reqd = 1;
1770
1771 /* m > 0 if answered from cache */
1772 m = answer_request(header, ((char *) header) + 65536, (size_t)size,
1773 dst_addr_4, netmask, now, ad_reqd, do_bit, have_pseudoheader);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001774
Simon Kelley4f7b3042012-11-28 21:27:02 +00001775 /* Do this by steam now we're not in the select() loop */
Simon Kelleyb842bc92015-07-12 21:09:11 +01001776 check_log_writer(1);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001777
1778 if (m == 0)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001779 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001780 unsigned int flags = 0;
1781 struct all_addr *addrp = NULL;
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001782 int type = SERV_DO_DNSSEC;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001783 char *domain = NULL;
Simon Kelley33702ab2015-12-28 23:17:15 +00001784 size_t new_size = add_edns0_config(header, size, ((unsigned char *) header) + 65536, &peer_addr, now, &check_subnet);
Simon Kelleyed4c0762013-10-08 20:46:34 +01001785
Simon Kelley33702ab2015-12-28 23:17:15 +00001786 if (size != new_size)
1787 {
1788 added_pheader = 1;
1789 size = new_size;
1790 }
1791
Simon Kelley4f7b3042012-11-28 21:27:02 +00001792 if (gotname)
1793 flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind);
1794
Simon Kelley367341f2016-01-12 15:58:23 +00001795 type &= ~SERV_DO_DNSSEC;
Simon Kelley367341f2016-01-12 15:58:23 +00001796
Simon Kelley4f7b3042012-11-28 21:27:02 +00001797 if (type != 0 || option_bool(OPT_ORDER) || !daemon->last_server)
1798 last_server = daemon->servers;
1799 else
1800 last_server = daemon->last_server;
1801
1802 if (!flags && last_server)
1803 {
1804 struct server *firstsendto = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001805#ifdef HAVE_DNSSEC
Simon Kelley703c7ff2014-01-25 23:46:23 +00001806 unsigned char *newhash, hash[HASH_SIZE];
Simon Kelley63758382014-04-16 22:20:55 +01001807 if ((newhash = hash_questions(header, (unsigned int)size, daemon->namebuff)))
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001808 memcpy(hash, newhash, HASH_SIZE);
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001809 else
1810 memset(hash, 0, HASH_SIZE);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001811#else
Simon Kelley4f7b3042012-11-28 21:27:02 +00001812 unsigned int crc = questions_crc(header, (unsigned int)size, daemon->namebuff);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001813#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001814 /* Loop round available servers until we succeed in connecting to one.
Josh Soref730c6742017-02-06 16:14:04 +00001815 Note that this code subtly ensures that consecutive queries on this connection
Simon Kelley4f7b3042012-11-28 21:27:02 +00001816 which can go to the same server, do so. */
1817 while (1)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001818 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001819 if (!firstsendto)
1820 firstsendto = last_server;
1821 else
1822 {
1823 if (!(last_server = last_server->next))
1824 last_server = daemon->servers;
1825
1826 if (last_server == firstsendto)
1827 break;
1828 }
1829
1830 /* server for wrong domain */
1831 if (type != (last_server->flags & SERV_TYPE) ||
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001832 (type == SERV_HAS_DOMAIN && !hostname_isequal(domain, last_server->domain)) ||
1833 (last_server->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP)))
Simon Kelley7de060b2011-08-26 17:24:52 +01001834 continue;
Simon Kelley361dfe52017-02-10 21:12:30 +00001835
1836 retry:
Simon Kelley4f7b3042012-11-28 21:27:02 +00001837 if (last_server->tcpfd == -1)
1838 {
1839 if ((last_server->tcpfd = socket(last_server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1)
1840 continue;
1841
Karl Vogele9828b62014-10-03 21:45:15 +01001842#ifdef HAVE_CONNTRACK
1843 /* Copy connection mark of incoming query to outgoing connection. */
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001844 if (have_mark)
1845 setsockopt(last_server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
Karl Vogele9828b62014-10-03 21:45:15 +01001846#endif
1847
Simon Kelley4f7b3042012-11-28 21:27:02 +00001848 if ((!local_bind(last_server->tcpfd, &last_server->source_addr, last_server->interface, 1) ||
1849 connect(last_server->tcpfd, &last_server->addr.sa, sa_len(&last_server->addr)) == -1))
1850 {
1851 close(last_server->tcpfd);
1852 last_server->tcpfd = -1;
1853 continue;
1854 }
1855
Simon Kelley361dfe52017-02-10 21:12:30 +00001856 last_server->flags &= ~SERV_GOT_TCP;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001857 }
1858
Simon Kelley361dfe52017-02-10 21:12:30 +00001859#ifdef HAVE_DNSSEC
1860 if (option_bool(OPT_DNSSEC_VALID) && (last_server->flags & SERV_DO_DNSSEC))
1861 {
1862 new_size = add_do_bit(header, size, ((unsigned char *) header) + 65536);
1863
1864 if (size != new_size)
1865 {
1866 added_pheader = 1;
1867 size = new_size;
1868 }
1869
1870 /* For debugging, set Checking Disabled, otherwise, have the upstream check too,
1871 this allows it to select auth servers when one is returning bad data. */
1872 if (option_bool(OPT_DNSSEC_DEBUG))
1873 header->hb4 |= HB4_CD;
1874 }
1875#endif
1876
Simon Kelley4b5ea122013-04-22 10:18:26 +01001877 *length = htons(size);
Simon Kelley1fc02682014-04-29 12:30:18 +01001878
1879 /* get query name again for logging - may have been overwritten */
1880 if (!(gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype)))
1881 strcpy(daemon->namebuff, "query");
Simon Kelley4f7b3042012-11-28 21:27:02 +00001882
Simon Kelley4b5ea122013-04-22 10:18:26 +01001883 if (!read_write(last_server->tcpfd, packet, size + sizeof(u16), 0) ||
Simon Kelley4f7b3042012-11-28 21:27:02 +00001884 !read_write(last_server->tcpfd, &c1, 1, 1) ||
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001885 !read_write(last_server->tcpfd, &c2, 1, 1) ||
1886 !read_write(last_server->tcpfd, payload, (c1 << 8) | c2, 1))
Simon Kelley7de060b2011-08-26 17:24:52 +01001887 {
1888 close(last_server->tcpfd);
1889 last_server->tcpfd = -1;
Simon Kelley361dfe52017-02-10 21:12:30 +00001890 /* We get data then EOF, reopen connection to same server,
1891 else try next. This avoids DoS from a server which accepts
1892 connections and then closes them. */
1893 if (last_server->flags & SERV_GOT_TCP)
1894 goto retry;
1895 else
1896 continue;
1897 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001898
Simon Kelley361dfe52017-02-10 21:12:30 +00001899 last_server->flags |= SERV_GOT_TCP;
1900
Simon Kelley4f7b3042012-11-28 21:27:02 +00001901 m = (c1 << 8) | c2;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001902
Simon Kelley4f7b3042012-11-28 21:27:02 +00001903 if (last_server->addr.sa.sa_family == AF_INET)
1904 log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff,
1905 (struct all_addr *)&last_server->addr.in.sin_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001906#ifdef HAVE_IPV6
Simon Kelley4f7b3042012-11-28 21:27:02 +00001907 else
1908 log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff,
1909 (struct all_addr *)&last_server->addr.in6.sin6_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001910#endif
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001911
1912#ifdef HAVE_DNSSEC
Simon Kelley367341f2016-01-12 15:58:23 +00001913 if (option_bool(OPT_DNSSEC_VALID) && !checking_disabled && (last_server->flags & SERV_DO_DNSSEC))
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001914 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001915 int keycount = DNSSEC_WORK; /* Limit to number of DNSSEC questions, to catch loops and avoid filling cache. */
Simon Kelleyf344dbc2016-01-18 18:04:17 +00001916 int status = tcp_key_recurse(now, STAT_OK, header, m, 0, daemon->namebuff, daemon->keyname,
1917 last_server, have_mark, mark, &keycount);
Simon Kelley554b5802015-04-17 22:50:20 +01001918 char *result, *domain = "result";
Simon Kelleyfe3992f2015-04-03 21:25:05 +01001919
Simon Kelley9a31b682015-12-15 10:20:39 +00001920 if (status == STAT_ABANDONED)
Simon Kelley150162b2015-03-27 09:58:26 +00001921 {
1922 result = "ABANDONED";
1923 status = STAT_BOGUS;
1924 }
Simon Kelley7fa836e2014-02-10 20:11:24 +00001925 else
1926 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
Simon Kelleye66b4df2015-04-28 20:45:57 +01001927
1928 if (status == STAT_BOGUS && extract_request(header, m, daemon->namebuff, NULL))
1929 domain = daemon->namebuff;
Simon Kelley554b5802015-04-17 22:50:20 +01001930
1931 log_query(F_KEYTAG | F_SECSTAT, domain, NULL, result);
Simon Kelley7fa836e2014-02-10 20:11:24 +00001932
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001933 if (status == STAT_BOGUS)
Simon Kelleyfe3992f2015-04-03 21:25:05 +01001934 {
1935 no_cache_dnssec = 1;
1936 bogusanswer = 1;
1937 }
1938
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001939 if (status == STAT_SECURE)
1940 cache_secure = 1;
1941 }
1942#endif
1943
1944 /* restore CD bit to the value in the query */
1945 if (checking_disabled)
1946 header->hb4 |= HB4_CD;
1947 else
1948 header->hb4 &= ~HB4_CD;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001949
1950 /* There's no point in updating the cache, since this process will exit and
1951 lose the information after a few queries. We make this call for the alias and
1952 bogus-nxdomain side-effects. */
1953 /* If the crc of the question section doesn't match the crc we sent, then
1954 someone might be attempting to insert bogus values into the cache by
1955 sending replies containing questions and bogus answers. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001956#ifdef HAVE_DNSSEC
1957 newhash = hash_questions(header, (unsigned int)m, daemon->namebuff);
1958 if (!newhash || memcmp(hash, newhash, HASH_SIZE) != 0)
Simon Kelley703c7ff2014-01-25 23:46:23 +00001959 {
1960 m = 0;
1961 break;
1962 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001963#else
1964 if (crc != questions_crc(header, (unsigned int)m, daemon->namebuff))
Simon Kelley703c7ff2014-01-25 23:46:23 +00001965 {
1966 m = 0;
1967 break;
1968 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001969#endif
1970
1971 m = process_reply(header, now, last_server, (unsigned int)m,
Simon Kelleye66b4df2015-04-28 20:45:57 +01001972 option_bool(OPT_NO_REBIND) && !norebind, no_cache_dnssec, cache_secure, bogusanswer,
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001973 ad_reqd, do_bit, added_pheader, check_subnet, &peer_addr);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001974
1975 break;
1976 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001977 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001978
1979 /* In case of local answer or no connections made. */
1980 if (m == 0)
1981 m = setup_reply(header, (unsigned int)size, addrp, flags, daemon->local_ttl);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001982 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001983 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001984
Simon Kelleyb842bc92015-07-12 21:09:11 +01001985 check_log_writer(1);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001986
Simon Kelley4b5ea122013-04-22 10:18:26 +01001987 *length = htons(m);
1988
1989 if (m == 0 || !read_write(confd, packet, m + sizeof(u16), 0))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001990 return packet;
1991 }
1992}
1993
Simon Kelley16972692006-10-16 20:04:18 +01001994static struct frec *allocate_frec(time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001995{
Simon Kelley16972692006-10-16 20:04:18 +01001996 struct frec *f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001997
Simon Kelley5aabfc72007-08-29 11:24:47 +01001998 if ((f = (struct frec *)whine_malloc(sizeof(struct frec))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001999 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002000 f->next = daemon->frec_list;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002001 f->time = now;
Simon Kelley832af0b2007-01-21 20:01:28 +00002002 f->sentto = NULL;
Simon Kelley1a6bca82008-07-11 11:11:42 +01002003 f->rfd4 = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00002004 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01002005#ifdef HAVE_IPV6
2006 f->rfd6 = NULL;
2007#endif
Simon Kelley3a237152013-12-12 12:15:50 +00002008#ifdef HAVE_DNSSEC
Simon Kelley97bc7982014-01-31 10:19:52 +00002009 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002010 f->blocking_query = NULL;
Simon Kelley4619d942014-01-16 19:53:06 +00002011 f->stash = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002012#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01002013 daemon->frec_list = f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002014 }
Simon Kelley16972692006-10-16 20:04:18 +01002015
2016 return f;
2017}
2018
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002019struct randfd *allocate_rfd(int family)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002020{
2021 static int finger = 0;
2022 int i;
2023
2024 /* limit the number of sockets we have open to avoid starvation of
2025 (eg) TFTP. Once we have a reasonable number, randomness should be OK */
2026
2027 for (i = 0; i < RANDOM_SOCKS; i++)
Simon Kelley9009d742008-11-14 20:04:27 +00002028 if (daemon->randomsocks[i].refcount == 0)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002029 {
Simon Kelley9009d742008-11-14 20:04:27 +00002030 if ((daemon->randomsocks[i].fd = random_sock(family)) == -1)
2031 break;
2032
Simon Kelley1a6bca82008-07-11 11:11:42 +01002033 daemon->randomsocks[i].refcount = 1;
2034 daemon->randomsocks[i].family = family;
2035 return &daemon->randomsocks[i];
2036 }
2037
Simon Kelley9009d742008-11-14 20:04:27 +00002038 /* No free ones or cannot get new socket, grab an existing one */
Simon Kelley1a6bca82008-07-11 11:11:42 +01002039 for (i = 0; i < RANDOM_SOCKS; i++)
2040 {
2041 int j = (i+finger) % RANDOM_SOCKS;
Simon Kelley9009d742008-11-14 20:04:27 +00002042 if (daemon->randomsocks[j].refcount != 0 &&
2043 daemon->randomsocks[j].family == family &&
2044 daemon->randomsocks[j].refcount != 0xffff)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002045 {
2046 finger = j;
2047 daemon->randomsocks[j].refcount++;
2048 return &daemon->randomsocks[j];
2049 }
2050 }
2051
2052 return NULL; /* doom */
2053}
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002054
2055void free_rfd(struct randfd *rfd)
2056{
2057 if (rfd && --(rfd->refcount) == 0)
2058 close(rfd->fd);
2059}
2060
Simon Kelley1a6bca82008-07-11 11:11:42 +01002061static void free_frec(struct frec *f)
2062{
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002063 free_rfd(f->rfd4);
Simon Kelley1a6bca82008-07-11 11:11:42 +01002064 f->rfd4 = NULL;
2065 f->sentto = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00002066 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01002067
2068#ifdef HAVE_IPV6
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002069 free_rfd(f->rfd6);
Simon Kelley1a6bca82008-07-11 11:11:42 +01002070 f->rfd6 = NULL;
2071#endif
Simon Kelley3a237152013-12-12 12:15:50 +00002072
2073#ifdef HAVE_DNSSEC
2074 if (f->stash)
Simon Kelley0fc2f312014-01-08 10:26:58 +00002075 {
2076 blockdata_free(f->stash);
2077 f->stash = NULL;
2078 }
Simon Kelley3a237152013-12-12 12:15:50 +00002079
2080 /* Anything we're waiting on is pointless now, too */
2081 if (f->blocking_query)
2082 free_frec(f->blocking_query);
2083 f->blocking_query = NULL;
Simon Kelley39048ad2014-01-21 17:33:58 +00002084 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002085#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01002086}
2087
Simon Kelley09f3b2c2017-05-09 01:34:02 +01002088
2089
Simon Kelley16972692006-10-16 20:04:18 +01002090/* if wait==NULL return a free or older than TIMEOUT record.
2091 else return *wait zero if one available, or *wait is delay to
Simon Kelley1a6bca82008-07-11 11:11:42 +01002092 when the oldest in-use record will expire. Impose an absolute
Simon Kelley3a237152013-12-12 12:15:50 +00002093 limit of 4*TIMEOUT before we wipe things (for random sockets).
2094 If force is set, always return a result, even if we have
2095 to allocate above the limit. */
2096struct frec *get_new_frec(time_t now, int *wait, int force)
Simon Kelley16972692006-10-16 20:04:18 +01002097{
Simon Kelley1a6bca82008-07-11 11:11:42 +01002098 struct frec *f, *oldest, *target;
Simon Kelley16972692006-10-16 20:04:18 +01002099 int count;
2100
2101 if (wait)
2102 *wait = 0;
2103
Simon Kelley1a6bca82008-07-11 11:11:42 +01002104 for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++)
Simon Kelley832af0b2007-01-21 20:01:28 +00002105 if (!f->sentto)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002106 target = f;
2107 else
Simon Kelley16972692006-10-16 20:04:18 +01002108 {
Simon Kelley9a31b682015-12-15 10:20:39 +00002109#ifdef HAVE_DNSSEC
2110 /* Don't free DNSSEC sub-queries here, as we may end up with
2111 dangling references to them. They'll go when their "real" query
2112 is freed. */
2113 if (!f->dependent)
2114#endif
2115 {
2116 if (difftime(now, f->time) >= 4*TIMEOUT)
2117 {
2118 free_frec(f);
2119 target = f;
2120 }
2121
2122
2123 if (!oldest || difftime(f->time, oldest->time) <= 0)
2124 oldest = f;
2125 }
Simon Kelley16972692006-10-16 20:04:18 +01002126 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01002127
2128 if (target)
2129 {
2130 target->time = now;
2131 return target;
2132 }
Simon Kelley16972692006-10-16 20:04:18 +01002133
2134 /* can't find empty one, use oldest if there is one
2135 and it's older than timeout */
Simon Kelley09f3b2c2017-05-09 01:34:02 +01002136 if (!force && oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT)
Simon Kelley16972692006-10-16 20:04:18 +01002137 {
2138 /* keep stuff for twice timeout if we can by allocating a new
2139 record instead */
2140 if (difftime(now, oldest->time) < 2*TIMEOUT &&
2141 count <= daemon->ftabsize &&
2142 (f = allocate_frec(now)))
2143 return f;
2144
2145 if (!wait)
2146 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002147 free_frec(oldest);
Simon Kelley16972692006-10-16 20:04:18 +01002148 oldest->time = now;
2149 }
2150 return oldest;
2151 }
2152
2153 /* none available, calculate time 'till oldest record expires */
Simon Kelley3a237152013-12-12 12:15:50 +00002154 if (!force && count > daemon->ftabsize)
Simon Kelley16972692006-10-16 20:04:18 +01002155 {
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002156 static time_t last_log = 0;
2157
Simon Kelley16972692006-10-16 20:04:18 +01002158 if (oldest && wait)
2159 *wait = oldest->time + (time_t)TIMEOUT - now;
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002160
2161 if ((int)difftime(now, last_log) > 5)
2162 {
2163 last_log = now;
2164 my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries reached (max: %d)"), daemon->ftabsize);
2165 }
2166
Simon Kelley16972692006-10-16 20:04:18 +01002167 return NULL;
2168 }
2169
2170 if (!(f = allocate_frec(now)) && wait)
2171 /* wait one second on malloc failure */
2172 *wait = 1;
2173
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002174 return f; /* OK if malloc fails and this is NULL */
2175}
Simon Kelley09f3b2c2017-05-09 01:34:02 +01002176
Simon Kelley832af0b2007-01-21 20:01:28 +00002177/* crc is all-ones if not known. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002178static struct frec *lookup_frec(unsigned short id, void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002179{
2180 struct frec *f;
2181
Simon Kelley1a6bca82008-07-11 11:11:42 +01002182 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002183 if (f->sentto && f->new_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002184 (!hash || memcmp(hash, f->hash, HASH_SIZE) == 0))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002185 return f;
2186
2187 return NULL;
2188}
2189
2190static struct frec *lookup_frec_by_sender(unsigned short id,
Simon Kelleyfd9fa482004-10-21 20:24:00 +01002191 union mysockaddr *addr,
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002192 void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002193{
Simon Kelleyfeba5c12004-07-27 20:28:58 +01002194 struct frec *f;
2195
Simon Kelley1a6bca82008-07-11 11:11:42 +01002196 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002197 if (f->sentto &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002198 f->orig_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002199 memcmp(hash, f->hash, HASH_SIZE) == 0 &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002200 sockaddr_isequal(&f->source, addr))
2201 return f;
2202
2203 return NULL;
2204}
Simon Kelley47a95162014-07-08 22:22:02 +01002205
2206/* Send query packet again, if we can. */
2207void resend_query()
2208{
2209 if (daemon->srv_save)
2210 {
2211 int fd;
2212
2213 if (daemon->srv_save->sfd)
2214 fd = daemon->srv_save->sfd->fd;
2215 else if (daemon->rfd_save && daemon->rfd_save->refcount != 0)
2216 fd = daemon->rfd_save->fd;
2217 else
2218 return;
2219
Simon Kelleyff841eb2015-03-11 21:36:30 +00002220 while(retry_send(sendto(fd, daemon->packet, daemon->packet_len, 0,
2221 &daemon->srv_save->addr.sa,
2222 sa_len(&daemon->srv_save->addr))));
Simon Kelley47a95162014-07-08 22:22:02 +01002223 }
2224}
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002225
Simon Kelley849a8352006-06-09 21:02:31 +01002226/* A server record is going away, remove references to it */
Simon Kelley5aabfc72007-08-29 11:24:47 +01002227void server_gone(struct server *server)
Simon Kelley849a8352006-06-09 21:02:31 +01002228{
2229 struct frec *f;
2230
Simon Kelley1a6bca82008-07-11 11:11:42 +01002231 for (f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002232 if (f->sentto && f->sentto == server)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002233 free_frec(f);
Simon Kelley849a8352006-06-09 21:02:31 +01002234
2235 if (daemon->last_server == server)
2236 daemon->last_server = NULL;
2237
2238 if (daemon->srv_save == server)
2239 daemon->srv_save = NULL;
2240}
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002241
Simon Kelley316e2732010-01-22 20:16:09 +00002242/* return unique random ids. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002243static unsigned short get_id(void)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002244{
2245 unsigned short ret = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +00002246
Simon Kelley316e2732010-01-22 20:16:09 +00002247 do
Simon Kelley832af0b2007-01-21 20:01:28 +00002248 ret = rand16();
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002249 while (lookup_frec(ret, NULL));
Simon Kelley832af0b2007-01-21 20:01:28 +00002250
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002251 return ret;
2252}
2253
2254
2255
2256
2257