blob: 55f583383bc68b87b809ac1361297edc2baf2cc0 [file] [log] [blame]
Simon Kelleyc47e3ba2014-01-08 17:07:54 +00001/* dnsmasq is Copyright (c) 2000-2014 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 Kelley00a5b5d2014-02-28 18:10:55 +000026#ifdef HAVE_DNSSEC
27static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n,
28 int class, char *name, char *keyname, struct server *server, int *keycount);
Simon Kelley97e618a2015-01-07 21:55:43 +000029static int do_check_sign(struct frec *forward, int status, time_t now, char *name, char *keyname);
30static int send_check_sign(struct frec *forward, time_t now, struct dns_header *header, size_t plen,
31 char *name, char *keyname);
Simon Kelley00a5b5d2014-02-28 18:10:55 +000032#endif
33
34
Simon Kelley824af852008-02-12 20:43:05 +000035/* Send a UDP packet with its source address set as "source"
Simon Kelley44a2a312004-03-10 20:04:35 +000036 unless nowild is true, when we just send it with the kernel default */
Simon Kelley29689cf2012-03-22 14:01:00 +000037int send_from(int fd, int nowild, char *packet, size_t len,
38 union mysockaddr *to, struct all_addr *source,
Simon Kelley50303b12012-04-04 22:13:17 +010039 unsigned int iface)
Simon Kelley9e4abcb2004-01-22 19:47:41 +000040{
Simon Kelley44a2a312004-03-10 20:04:35 +000041 struct msghdr msg;
42 struct iovec iov[1];
Simon Kelley44a2a312004-03-10 20:04:35 +000043 union {
44 struct cmsghdr align; /* this ensures alignment */
Simon Kelley5e9e0ef2006-04-17 14:24:29 +010045#if defined(HAVE_LINUX_NETWORK)
Simon Kelley44a2a312004-03-10 20:04:35 +000046 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
47#elif defined(IP_SENDSRCADDR)
48 char control[CMSG_SPACE(sizeof(struct in_addr))];
49#endif
50#ifdef HAVE_IPV6
51 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
52#endif
53 } control_u;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010054
Simon Kelley44a2a312004-03-10 20:04:35 +000055 iov[0].iov_base = packet;
56 iov[0].iov_len = len;
57
Simon Kelleyfeba5c12004-07-27 20:28:58 +010058 msg.msg_control = NULL;
59 msg.msg_controllen = 0;
Simon Kelley44a2a312004-03-10 20:04:35 +000060 msg.msg_flags = 0;
61 msg.msg_name = to;
62 msg.msg_namelen = sa_len(to);
63 msg.msg_iov = iov;
64 msg.msg_iovlen = 1;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010065
Simon Kelley26128d22004-11-14 16:43:54 +000066 if (!nowild)
Simon Kelleyfeba5c12004-07-27 20:28:58 +010067 {
Simon Kelley26128d22004-11-14 16:43:54 +000068 struct cmsghdr *cmptr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010069 msg.msg_control = &control_u;
70 msg.msg_controllen = sizeof(control_u);
Simon Kelley26128d22004-11-14 16:43:54 +000071 cmptr = CMSG_FIRSTHDR(&msg);
Simon Kelley44a2a312004-03-10 20:04:35 +000072
Simon Kelley26128d22004-11-14 16:43:54 +000073 if (to->sa.sa_family == AF_INET)
74 {
Simon Kelley5e9e0ef2006-04-17 14:24:29 +010075#if defined(HAVE_LINUX_NETWORK)
Simon Kelley8ef5ada2010-06-03 19:42:45 +010076 struct in_pktinfo p;
77 p.ipi_ifindex = 0;
78 p.ipi_spec_dst = source->addr.addr4;
79 memcpy(CMSG_DATA(cmptr), &p, sizeof(p));
Simon Kelley26128d22004-11-14 16:43:54 +000080 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in_pktinfo));
Simon Kelleyc72daea2012-01-05 21:33:27 +000081 cmptr->cmsg_level = IPPROTO_IP;
Simon Kelley26128d22004-11-14 16:43:54 +000082 cmptr->cmsg_type = IP_PKTINFO;
83#elif defined(IP_SENDSRCADDR)
Simon Kelley8ef5ada2010-06-03 19:42:45 +010084 memcpy(CMSG_DATA(cmptr), &(source->addr.addr4), sizeof(source->addr.addr4));
Simon Kelley26128d22004-11-14 16:43:54 +000085 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in_addr));
86 cmptr->cmsg_level = IPPROTO_IP;
87 cmptr->cmsg_type = IP_SENDSRCADDR;
Simon Kelley44a2a312004-03-10 20:04:35 +000088#endif
Simon Kelley26128d22004-11-14 16:43:54 +000089 }
Simon Kelley26128d22004-11-14 16:43:54 +000090 else
Simon Kelleyb8187c82005-11-26 21:46:27 +000091#ifdef HAVE_IPV6
Simon Kelley26128d22004-11-14 16:43:54 +000092 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +010093 struct in6_pktinfo p;
94 p.ipi6_ifindex = iface; /* Need iface for IPv6 to handle link-local addrs */
95 p.ipi6_addr = source->addr.addr6;
96 memcpy(CMSG_DATA(cmptr), &p, sizeof(p));
Simon Kelley26128d22004-11-14 16:43:54 +000097 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo));
Simon Kelley316e2732010-01-22 20:16:09 +000098 cmptr->cmsg_type = daemon->v6pktinfo;
Simon Kelleyc72daea2012-01-05 21:33:27 +000099 cmptr->cmsg_level = IPPROTO_IPV6;
Simon Kelley26128d22004-11-14 16:43:54 +0000100 }
Simon Kelley3d8df262005-08-29 12:19:27 +0100101#else
Simon Kelleyc72daea2012-01-05 21:33:27 +0000102 (void)iface; /* eliminate warning */
Simon Kelley26128d22004-11-14 16:43:54 +0000103#endif
104 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100105
Simon Kelley29d28dd2012-12-03 14:05:59 +0000106 while (sendmsg(fd, &msg, 0) == -1)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100107 {
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100108 if (retry_send())
Simon Kelley29d28dd2012-12-03 14:05:59 +0000109 continue;
110
111 /* If interface is still in DAD, EINVAL results - ignore that. */
112 if (errno == EINVAL)
113 break;
Simon Kelley22d904d2012-02-26 20:13:45 +0000114
Simon Kelley50303b12012-04-04 22:13:17 +0100115 my_syslog(LOG_ERR, _("failed to send packet: %s"), strerror(errno));
Simon Kelley29689cf2012-03-22 14:01:00 +0000116 return 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100117 }
Simon Kelley29d28dd2012-12-03 14:05:59 +0000118
Simon Kelley29689cf2012-03-22 14:01:00 +0000119 return 1;
Simon Kelley44a2a312004-03-10 20:04:35 +0000120}
121
Simon Kelley28866e92011-02-14 20:19:14 +0000122static unsigned int search_servers(time_t now, struct all_addr **addrpp,
123 unsigned int qtype, char *qdomain, int *type, char **domain, int *norebind)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100124
125{
126 /* If the query ends in the domain in one of our servers, set
127 domain to point to that name. We find the largest match to allow both
128 domain.org and sub.domain.org to exist. */
129
130 unsigned int namelen = strlen(qdomain);
131 unsigned int matchlen = 0;
132 struct server *serv;
Simon Kelley28866e92011-02-14 20:19:14 +0000133 unsigned int flags = 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100134
Simon Kelley3be34542004-09-11 19:12:13 +0100135 for (serv = daemon->servers; serv; serv=serv->next)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100136 /* domain matches take priority over NODOTS matches */
Simon Kelley3d8df262005-08-29 12:19:27 +0100137 if ((serv->flags & SERV_FOR_NODOTS) && *type != SERV_HAS_DOMAIN && !strchr(qdomain, '.') && namelen != 0)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100138 {
Simon Kelley28866e92011-02-14 20:19:14 +0000139 unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100140 *type = SERV_FOR_NODOTS;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100141 if (serv->flags & SERV_NO_ADDR)
Simon Kelley36717ee2004-09-20 19:20:58 +0100142 flags = F_NXDOMAIN;
143 else if (serv->flags & SERV_LITERAL_ADDRESS)
144 {
145 if (sflag & qtype)
146 {
147 flags = sflag;
148 if (serv->addr.sa.sa_family == AF_INET)
149 *addrpp = (struct all_addr *)&serv->addr.in.sin_addr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100150#ifdef HAVE_IPV6
Simon Kelley36717ee2004-09-20 19:20:58 +0100151 else
152 *addrpp = (struct all_addr *)&serv->addr.in6.sin6_addr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100153#endif
Simon Kelley36717ee2004-09-20 19:20:58 +0100154 }
Simon Kelley824af852008-02-12 20:43:05 +0000155 else if (!flags || (flags & F_NXDOMAIN))
Simon Kelley36717ee2004-09-20 19:20:58 +0100156 flags = F_NOERR;
157 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100158 }
159 else if (serv->flags & SERV_HAS_DOMAIN)
160 {
161 unsigned int domainlen = strlen(serv->domain);
Simon Kelleyb8187c82005-11-26 21:46:27 +0000162 char *matchstart = qdomain + namelen - domainlen;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100163 if (namelen >= domainlen &&
Simon Kelleyb8187c82005-11-26 21:46:27 +0000164 hostname_isequal(matchstart, serv->domain) &&
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100165 (domainlen == 0 || namelen == domainlen || *(matchstart-1) == '.' ))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100166 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100167 if (serv->flags & SERV_NO_REBIND)
168 *norebind = 1;
Simon Kelley28866e92011-02-14 20:19:14 +0000169 else
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100170 {
Simon Kelley28866e92011-02-14 20:19:14 +0000171 unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6;
172 /* implement priority rules for --address and --server for same domain.
173 --address wins if the address is for the correct AF
174 --server wins otherwise. */
175 if (domainlen != 0 && domainlen == matchlen)
Simon Kelley36717ee2004-09-20 19:20:58 +0100176 {
Simon Kelley28866e92011-02-14 20:19:14 +0000177 if ((serv->flags & SERV_LITERAL_ADDRESS))
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100178 {
Simon Kelley28866e92011-02-14 20:19:14 +0000179 if (!(sflag & qtype) && flags == 0)
180 continue;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100181 }
Simon Kelley28866e92011-02-14 20:19:14 +0000182 else
183 {
184 if (flags & (F_IPV4 | F_IPV6))
185 continue;
186 }
Simon Kelley36717ee2004-09-20 19:20:58 +0100187 }
Simon Kelley28866e92011-02-14 20:19:14 +0000188
189 if (domainlen >= matchlen)
190 {
191 *type = serv->flags & (SERV_HAS_DOMAIN | SERV_USE_RESOLV | SERV_NO_REBIND);
192 *domain = serv->domain;
193 matchlen = domainlen;
194 if (serv->flags & SERV_NO_ADDR)
195 flags = F_NXDOMAIN;
196 else if (serv->flags & SERV_LITERAL_ADDRESS)
197 {
198 if (sflag & qtype)
199 {
200 flags = sflag;
201 if (serv->addr.sa.sa_family == AF_INET)
202 *addrpp = (struct all_addr *)&serv->addr.in.sin_addr;
203#ifdef HAVE_IPV6
204 else
205 *addrpp = (struct all_addr *)&serv->addr.in6.sin6_addr;
206#endif
207 }
208 else if (!flags || (flags & F_NXDOMAIN))
209 flags = F_NOERR;
210 }
211 else
212 flags = 0;
213 }
214 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100215 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100216 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100217
Simon Kelley7de060b2011-08-26 17:24:52 +0100218 if (flags == 0 && !(qtype & F_QUERY) &&
Simon Kelley28866e92011-02-14 20:19:14 +0000219 option_bool(OPT_NODOTS_LOCAL) && !strchr(qdomain, '.') && namelen != 0)
Simon Kelley7de060b2011-08-26 17:24:52 +0100220 /* don't forward A or AAAA queries for simple names, except the empty name */
221 flags = F_NOERR;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100222
Simon Kelley5aabfc72007-08-29 11:24:47 +0100223 if (flags == F_NXDOMAIN && check_for_local_domain(qdomain, now))
Simon Kelleyc1bb8502004-08-11 18:40:17 +0100224 flags = F_NOERR;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100225
Simon Kelley824af852008-02-12 20:43:05 +0000226 if (flags)
227 {
228 int logflags = 0;
229
230 if (flags == F_NXDOMAIN || flags == F_NOERR)
231 logflags = F_NEG | qtype;
232
Simon Kelley1a6bca82008-07-11 11:11:42 +0100233 log_query(logflags | flags | F_CONFIG | F_FORWARD, qdomain, *addrpp, NULL);
Simon Kelley824af852008-02-12 20:43:05 +0000234 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100235 else if ((*type) & SERV_USE_RESOLV)
236 {
237 *type = 0; /* use normal servers for this domain */
238 *domain = NULL;
239 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100240 return flags;
241}
Simon Kelley44a2a312004-03-10 20:04:35 +0000242
Simon Kelley824af852008-02-12 20:43:05 +0000243static int forward_query(int udpfd, union mysockaddr *udpaddr,
244 struct all_addr *dst_addr, unsigned int dst_iface,
Simon Kelley83349b82014-02-10 21:02:01 +0000245 struct dns_header *header, size_t plen, time_t now,
Simon Kelley613ad152014-02-25 23:02:28 +0000246 struct frec *forward, int ad_reqd, int do_bit)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000247{
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000248 char *domain = NULL;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100249 int type = 0, norebind = 0;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000250 struct all_addr *addrp = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +0000251 unsigned int flags = 0;
Simon Kelleyde379512004-06-22 20:23:33 +0100252 struct server *start = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000253#ifdef HAVE_DNSSEC
254 void *hash = hash_questions(header, plen, daemon->namebuff);
255#else
256 unsigned int crc = questions_crc(header, plen, daemon->namebuff);
257 void *hash = &crc;
258#endif
259 unsigned int gotname = extract_request(header, plen, daemon->namebuff, NULL);
260
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000261 (void)do_bit;
262
Simon Kelley3d8df262005-08-29 12:19:27 +0100263 /* may be no servers available. */
264 if (!daemon->servers)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000265 forward = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000266 else if (forward || (hash && (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, hash))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000267 {
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000268#ifdef HAVE_DNSSEC
Simon Kelleydac74312014-02-13 16:43:49 +0000269 /* If we've already got an answer to this query, but we're awaiting keys for validation,
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000270 there's no point retrying the query, retry the key query instead...... */
271 if (forward->blocking_query)
272 {
273 int fd;
274
275 while (forward->blocking_query)
276 forward = forward->blocking_query;
277
278 blockdata_retrieve(forward->stash, forward->stash_len, (void *)header);
279 plen = forward->stash_len;
280
Simon Kelley2b291912014-03-21 11:13:55 +0000281 if (forward->sentto->addr.sa.sa_family == AF_INET)
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000282 log_query(F_DNSSEC | F_IPV4, "retry", (struct all_addr *)&forward->sentto->addr.in.sin_addr, "dnssec");
283#ifdef HAVE_IPV6
284 else
285 log_query(F_DNSSEC | F_IPV6, "retry", (struct all_addr *)&forward->sentto->addr.in6.sin6_addr, "dnssec");
286#endif
287
288 if (forward->sentto->sfd)
289 fd = forward->sentto->sfd->fd;
290 else
291 {
292#ifdef HAVE_IPV6
293 if (forward->sentto->addr.sa.sa_family == AF_INET6)
294 fd = forward->rfd6->fd;
295 else
296#endif
297 fd = forward->rfd4->fd;
298 }
299
300 while (sendto(fd, (char *)header, plen, 0,
301 &forward->sentto->addr.sa,
Simon Kelley2b291912014-03-21 11:13:55 +0000302 sa_len(&forward->sentto->addr)) == -1 && retry_send());
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000303
304 return 1;
305 }
306#endif
307
Simon Kelleyde379512004-06-22 20:23:33 +0100308 /* retry on existing query, send to all available servers */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000309 domain = forward->sentto->domain;
Simon Kelley824af852008-02-12 20:43:05 +0000310 forward->sentto->failed_queries++;
Simon Kelley28866e92011-02-14 20:19:14 +0000311 if (!option_bool(OPT_ORDER))
Simon Kelleyde379512004-06-22 20:23:33 +0100312 {
Simon Kelley0a852542005-03-23 20:28:59 +0000313 forward->forwardall = 1;
Simon Kelley3be34542004-09-11 19:12:13 +0100314 daemon->last_server = NULL;
Simon Kelleyde379512004-06-22 20:23:33 +0100315 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000316 type = forward->sentto->flags & SERV_TYPE;
Simon Kelleyde379512004-06-22 20:23:33 +0100317 if (!(start = forward->sentto->next))
Simon Kelley3be34542004-09-11 19:12:13 +0100318 start = daemon->servers; /* at end of list, recycle */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000319 header->id = htons(forward->new_id);
320 }
321 else
322 {
323 if (gotname)
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100324 flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind);
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000325
Simon Kelley3a237152013-12-12 12:15:50 +0000326 if (!flags && !(forward = get_new_frec(now, NULL, 0)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100327 /* table full - server failure. */
328 flags = F_NEG;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000329
330 if (forward)
331 {
Simon Kelley0a852542005-03-23 20:28:59 +0000332 forward->source = *udpaddr;
333 forward->dest = *dst_addr;
334 forward->iface = dst_iface;
Simon Kelley0a852542005-03-23 20:28:59 +0000335 forward->orig_id = ntohs(header->id);
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000336 forward->new_id = get_id();
Simon Kelley832af0b2007-01-21 20:01:28 +0000337 forward->fd = udpfd;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000338 memcpy(forward->hash, hash, HASH_SIZE);
Simon Kelley0a852542005-03-23 20:28:59 +0000339 forward->forwardall = 0;
Simon Kelleyed4c0762013-10-08 20:46:34 +0100340 forward->flags = 0;
Simon Kelley28866e92011-02-14 20:19:14 +0000341 if (norebind)
342 forward->flags |= FREC_NOREBIND;
Simon Kelley572b41e2011-02-18 18:11:18 +0000343 if (header->hb4 & HB4_CD)
Simon Kelley28866e92011-02-14 20:19:14 +0000344 forward->flags |= FREC_CHECKING_DISABLED;
Simon Kelley83349b82014-02-10 21:02:01 +0000345 if (ad_reqd)
346 forward->flags |= FREC_AD_QUESTION;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000347#ifdef HAVE_DNSSEC
348 forward->work_counter = DNSSEC_WORK;
Simon Kelley613ad152014-02-25 23:02:28 +0000349 if (do_bit)
350 forward->flags |= FREC_DO_QUESTION;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000351#endif
Simon Kelley613ad152014-02-25 23:02:28 +0000352
Simon Kelley28866e92011-02-14 20:19:14 +0000353 header->id = htons(forward->new_id);
354
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100355 /* In strict_order mode, always try servers in the order
356 specified in resolv.conf, if a domain is given
357 always try all the available servers,
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000358 otherwise, use the one last known to work. */
359
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100360 if (type == 0)
361 {
Simon Kelley28866e92011-02-14 20:19:14 +0000362 if (option_bool(OPT_ORDER))
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100363 start = daemon->servers;
364 else if (!(start = daemon->last_server) ||
365 daemon->forwardcount++ > FORWARD_TEST ||
366 difftime(now, daemon->forwardtime) > FORWARD_TIME)
367 {
368 start = daemon->servers;
369 forward->forwardall = 1;
370 daemon->forwardcount = 0;
371 daemon->forwardtime = now;
372 }
373 }
374 else
Simon Kelleyde379512004-06-22 20:23:33 +0100375 {
Simon Kelley3be34542004-09-11 19:12:13 +0100376 start = daemon->servers;
Simon Kelley28866e92011-02-14 20:19:14 +0000377 if (!option_bool(OPT_ORDER))
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100378 forward->forwardall = 1;
Simon Kelleyde379512004-06-22 20:23:33 +0100379 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000380 }
381 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100382
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000383 /* check for send errors here (no route to host)
384 if we fail to send to all nameservers, send back an error
385 packet straight away (helps modem users when offline) */
386
387 if (!flags && forward)
388 {
Simon Kelleyde379512004-06-22 20:23:33 +0100389 struct server *firstsentto = start;
390 int forwarded = 0;
Simon Kelley28866e92011-02-14 20:19:14 +0000391
Giacomo Tazzari797a7af2013-04-22 13:16:37 +0100392 if (option_bool(OPT_ADD_MAC))
Simon Kelley60b68062014-01-08 12:10:28 +0000393 plen = add_mac(header, plen, ((char *) header) + daemon->packet_buff_sz, &forward->source);
Simon Kelley28866e92011-02-14 20:19:14 +0000394
Simon Kelleyed4c0762013-10-08 20:46:34 +0100395 if (option_bool(OPT_CLIENT_SUBNET))
396 {
Simon Kelley60b68062014-01-08 12:10:28 +0000397 size_t new = add_source_addr(header, plen, ((char *) header) + daemon->packet_buff_sz, &forward->source);
Simon Kelleyed4c0762013-10-08 20:46:34 +0100398 if (new != plen)
399 {
400 plen = new;
401 forward->flags |= FREC_HAS_SUBNET;
402 }
403 }
404
Simon Kelley3a237152013-12-12 12:15:50 +0000405#ifdef HAVE_DNSSEC
406 if (option_bool(OPT_DNSSEC_VALID))
Simon Kelley0fc2f312014-01-08 10:26:58 +0000407 {
Simon Kelley613ad152014-02-25 23:02:28 +0000408 size_t new_plen = add_do_bit(header, plen, ((char *) header) + daemon->packet_buff_sz);
409
Simon Kelley5b3bf922014-01-25 17:03:07 +0000410 /* For debugging, set Checking Disabled, otherwise, have the upstream check too,
411 this allows it to select auth servers when one is returning bad data. */
412 if (option_bool(OPT_DNSSEC_DEBUG))
413 header->hb4 |= HB4_CD;
Simon Kelley613ad152014-02-25 23:02:28 +0000414
415 if (new_plen != plen)
416 forward->flags |= FREC_ADDED_PHEADER;
417
418 plen = new_plen;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000419 }
Simon Kelley3a237152013-12-12 12:15:50 +0000420#endif
421
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000422 while (1)
423 {
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000424 /* only send to servers dealing with our domain.
425 domain may be NULL, in which case server->domain
426 must be NULL also. */
427
Simon Kelleyde379512004-06-22 20:23:33 +0100428 if (type == (start->flags & SERV_TYPE) &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100429 (type != SERV_HAS_DOMAIN || hostname_isequal(domain, start->domain)) &&
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +0100430 !(start->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP)))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000431 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100432 int fd;
433
434 /* find server socket to use, may need to get random one. */
435 if (start->sfd)
436 fd = start->sfd->fd;
437 else
438 {
439#ifdef HAVE_IPV6
440 if (start->addr.sa.sa_family == AF_INET6)
441 {
442 if (!forward->rfd6 &&
443 !(forward->rfd6 = allocate_rfd(AF_INET6)))
444 break;
Simon Kelley3927da42008-07-20 15:10:39 +0100445 daemon->rfd_save = forward->rfd6;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100446 fd = forward->rfd6->fd;
447 }
448 else
449#endif
450 {
451 if (!forward->rfd4 &&
452 !(forward->rfd4 = allocate_rfd(AF_INET)))
453 break;
Simon Kelley3927da42008-07-20 15:10:39 +0100454 daemon->rfd_save = forward->rfd4;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100455 fd = forward->rfd4->fd;
456 }
Simon Kelley7de060b2011-08-26 17:24:52 +0100457
458#ifdef HAVE_CONNTRACK
459 /* Copy connection mark of incoming query to outgoing connection. */
460 if (option_bool(OPT_CONNTRACK))
461 {
462 unsigned int mark;
Giacomo Tazzari797a7af2013-04-22 13:16:37 +0100463 if (get_incoming_mark(&forward->source, &forward->dest, 0, &mark))
Simon Kelley7de060b2011-08-26 17:24:52 +0100464 setsockopt(fd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
465 }
466#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +0100467 }
468
469 if (sendto(fd, (char *)header, plen, 0,
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100470 &start->addr.sa,
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100471 sa_len(&start->addr)) == -1)
472 {
473 if (retry_send())
474 continue;
475 }
476 else
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000477 {
Simon Kelleycdeda282006-03-16 20:16:06 +0000478 /* Keep info in case we want to re-send this packet */
479 daemon->srv_save = start;
480 daemon->packet_len = plen;
481
Simon Kelleyde379512004-06-22 20:23:33 +0100482 if (!gotname)
Simon Kelley3be34542004-09-11 19:12:13 +0100483 strcpy(daemon->namebuff, "query");
Simon Kelleyde379512004-06-22 20:23:33 +0100484 if (start->addr.sa.sa_family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +0100485 log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +0100486 (struct all_addr *)&start->addr.in.sin_addr, NULL);
Simon Kelleyde379512004-06-22 20:23:33 +0100487#ifdef HAVE_IPV6
488 else
Simon Kelley3be34542004-09-11 19:12:13 +0100489 log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +0100490 (struct all_addr *)&start->addr.in6.sin6_addr, NULL);
Simon Kelleyde379512004-06-22 20:23:33 +0100491#endif
Simon Kelley824af852008-02-12 20:43:05 +0000492 start->queries++;
Simon Kelleyde379512004-06-22 20:23:33 +0100493 forwarded = 1;
494 forward->sentto = start;
Simon Kelley0a852542005-03-23 20:28:59 +0000495 if (!forward->forwardall)
Simon Kelleyde379512004-06-22 20:23:33 +0100496 break;
Simon Kelley0a852542005-03-23 20:28:59 +0000497 forward->forwardall++;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000498 }
499 }
500
Simon Kelleyde379512004-06-22 20:23:33 +0100501 if (!(start = start->next))
Simon Kelley3be34542004-09-11 19:12:13 +0100502 start = daemon->servers;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000503
Simon Kelleyde379512004-06-22 20:23:33 +0100504 if (start == firstsentto)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000505 break;
506 }
507
Simon Kelleyde379512004-06-22 20:23:33 +0100508 if (forwarded)
Simon Kelley824af852008-02-12 20:43:05 +0000509 return 1;
Simon Kelleyde379512004-06-22 20:23:33 +0100510
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000511 /* could not send on, prepare to return */
512 header->id = htons(forward->orig_id);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100513 free_frec(forward); /* cancel */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000514 }
515
516 /* could not send on, return empty answer or address if known for whole domain */
Simon Kelleyb8187c82005-11-26 21:46:27 +0000517 if (udpfd != -1)
518 {
Simon Kelleycdeda282006-03-16 20:16:06 +0000519 plen = setup_reply(header, plen, addrp, flags, daemon->local_ttl);
Simon Kelley54dd3932012-06-20 11:23:38 +0100520 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 +0000521 }
522
Simon Kelley824af852008-02-12 20:43:05 +0000523 return 0;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000524}
525
Simon Kelleyed4c0762013-10-08 20:46:34 +0100526static size_t process_reply(struct dns_header *header, time_t now, struct server *server, size_t n, int check_rebind,
Simon Kelley613ad152014-02-25 23:02:28 +0000527 int no_cache, int cache_secure, int ad_reqd, int do_bit, int added_pheader, int check_subnet, union mysockaddr *query_source)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100528{
Simon Kelley36717ee2004-09-20 19:20:58 +0100529 unsigned char *pheader, *sizep;
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000530 char **sets = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000531 int munged = 0, is_sign;
Simon Kelleycdeda282006-03-16 20:16:06 +0000532 size_t plen;
533
Simon Kelley83349b82014-02-10 21:02:01 +0000534 (void)ad_reqd;
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000535 (void) do_bit;
Simon Kelley83349b82014-02-10 21:02:01 +0000536
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000537#ifdef HAVE_IPSET
Simon Kelley82a14af2014-04-13 20:48:57 +0100538 if (daemon->ipsets && extract_request(header, n, daemon->namebuff, NULL))
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000539 {
Simon Kelley82a14af2014-04-13 20:48:57 +0100540 /* Similar algorithm to search_servers. */
541 struct ipsets *ipset_pos;
542 unsigned int namelen = strlen(daemon->namebuff);
543 unsigned int matchlen = 0;
544 for (ipset_pos = daemon->ipsets; ipset_pos; ipset_pos = ipset_pos->next)
Simon Kelley6c0cb852014-01-17 14:40:46 +0000545 {
Simon Kelley82a14af2014-04-13 20:48:57 +0100546 unsigned int domainlen = strlen(ipset_pos->domain);
547 char *matchstart = daemon->namebuff + namelen - domainlen;
548 if (namelen >= domainlen && hostname_isequal(matchstart, ipset_pos->domain) &&
549 (domainlen == 0 || namelen == domainlen || *(matchstart - 1) == '.' ) &&
550 domainlen >= matchlen)
551 {
552 matchlen = domainlen;
553 sets = ipset_pos->sets;
554 }
Simon Kelley6c0cb852014-01-17 14:40:46 +0000555 }
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000556 }
557#endif
558
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100559 /* If upstream is advertising a larger UDP packet size
Simon Kelley9009d742008-11-14 20:04:27 +0000560 than we allow, trim it so that we don't get overlarge
561 requests for the client. We can't do this for signed packets. */
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100562
Simon Kelleyed4c0762013-10-08 20:46:34 +0100563 if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100564 {
Simon Kelley83349b82014-02-10 21:02:01 +0000565 unsigned short udpsz;
566 unsigned char *psave = sizep;
567
568 GETSHORT(udpsz, sizep);
569
570 if (!is_sign && udpsz > daemon->edns_pktsz)
571 PUTSHORT(daemon->edns_pktsz, psave);
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100572
Simon Kelleyed4c0762013-10-08 20:46:34 +0100573 if (check_subnet && !check_source(header, plen, pheader, query_source))
574 {
575 my_syslog(LOG_WARNING, _("discarding DNS reply: subnet option mismatch"));
576 return 0;
577 }
Simon Kelley613ad152014-02-25 23:02:28 +0000578
579 if (added_pheader)
580 {
581 pheader = 0;
582 header->arcount = htons(0);
583 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100584 }
Simon Kelley83349b82014-02-10 21:02:01 +0000585
Simon Kelley28866e92011-02-14 20:19:14 +0000586 /* RFC 4035 sect 4.6 para 3 */
Giovanni Bajo237724c2012-04-05 02:46:52 +0200587 if (!is_sign && !option_bool(OPT_DNSSEC_PROXY))
Simon Kelley795501b2014-01-08 18:11:55 +0000588 header->hb4 &= ~HB4_AD;
Simon Kelley3a237152013-12-12 12:15:50 +0000589
Simon Kelley572b41e2011-02-18 18:11:18 +0000590 if (OPCODE(header) != QUERY || (RCODE(header) != NOERROR && RCODE(header) != NXDOMAIN))
Simon Kelley8938ae02014-05-01 17:46:25 +0100591 return resize_packet(header, n, pheader, plen);
Simon Kelley36717ee2004-09-20 19:20:58 +0100592
Simon Kelley0a852542005-03-23 20:28:59 +0000593 /* Complain loudly if the upstream server is non-recursive. */
Simon Kelley572b41e2011-02-18 18:11:18 +0000594 if (!(header->hb4 & HB4_RA) && RCODE(header) == NOERROR && ntohs(header->ancount) == 0 &&
Simon Kelley0a852542005-03-23 20:28:59 +0000595 server && !(server->flags & SERV_WARNED_RECURSIVE))
596 {
Simon Kelley3d8df262005-08-29 12:19:27 +0100597 prettyprint_addr(&server->addr, daemon->namebuff);
Simon Kelleyf2621c72007-04-29 19:47:21 +0100598 my_syslog(LOG_WARNING, _("nameserver %s refused to do a recursive query"), daemon->namebuff);
Simon Kelley28866e92011-02-14 20:19:14 +0000599 if (!option_bool(OPT_LOG))
Simon Kelley0a852542005-03-23 20:28:59 +0000600 server->flags |= SERV_WARNED_RECURSIVE;
601 }
Giovanni Bajoe292e932012-04-22 14:32:02 +0200602
Simon Kelley572b41e2011-02-18 18:11:18 +0000603 if (daemon->bogus_addr && RCODE(header) != NXDOMAIN &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100604 check_for_bogus_wildcard(header, n, daemon->namebuff, daemon->bogus_addr, now))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100605 {
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100606 munged = 1;
Simon Kelley572b41e2011-02-18 18:11:18 +0000607 SET_RCODE(header, NXDOMAIN);
608 header->hb3 &= ~HB3_AA;
Simon Kelley6938f342014-01-26 22:47:39 +0000609 cache_secure = 0;
Simon Kelley36717ee2004-09-20 19:20:58 +0100610 }
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100611 else
Simon Kelley36717ee2004-09-20 19:20:58 +0100612 {
Simon Kelley6938f342014-01-26 22:47:39 +0000613 int doctored = 0;
614
Simon Kelley572b41e2011-02-18 18:11:18 +0000615 if (RCODE(header) == NXDOMAIN &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100616 extract_request(header, n, daemon->namebuff, NULL) &&
Simon Kelley5aabfc72007-08-29 11:24:47 +0100617 check_for_local_domain(daemon->namebuff, now))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100618 {
Simon Kelley36717ee2004-09-20 19:20:58 +0100619 /* if we forwarded a query for a locally known name (because it was for
620 an unknown type) and the answer is NXDOMAIN, convert that to NODATA,
621 since we know that the domain exists, even if upstream doesn't */
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100622 munged = 1;
Simon Kelley572b41e2011-02-18 18:11:18 +0000623 header->hb3 |= HB3_AA;
624 SET_RCODE(header, NOERROR);
Simon Kelley6938f342014-01-26 22:47:39 +0000625 cache_secure = 0;
Simon Kelley36717ee2004-09-20 19:20:58 +0100626 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000627
Simon Kelley6938f342014-01-26 22:47:39 +0000628 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 +0000629 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100630 my_syslog(LOG_WARNING, _("possible DNS-rebind attack detected: %s"), daemon->namebuff);
Simon Kelley824af852008-02-12 20:43:05 +0000631 munged = 1;
Simon Kelley6938f342014-01-26 22:47:39 +0000632 cache_secure = 0;
Simon Kelley824af852008-02-12 20:43:05 +0000633 }
Simon Kelley6938f342014-01-26 22:47:39 +0000634
635 if (doctored)
636 cache_secure = 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100637 }
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100638
Simon Kelleya25720a2014-01-14 23:13:55 +0000639#ifdef HAVE_DNSSEC
640 if (no_cache && !(header->hb4 & HB4_CD))
641 {
Simon Kelley7d23a662014-01-26 09:33:21 +0000642 if (!option_bool(OPT_DNSSEC_DEBUG))
Simon Kelleya25720a2014-01-14 23:13:55 +0000643 {
644 /* Bogus reply, turn into SERVFAIL */
645 SET_RCODE(header, SERVFAIL);
646 munged = 1;
647 }
648 }
Simon Kelley6938f342014-01-26 22:47:39 +0000649
650 if (option_bool(OPT_DNSSEC_VALID))
651 header->hb4 &= ~HB4_AD;
652
Simon Kelley83349b82014-02-10 21:02:01 +0000653 if (!(header->hb4 & HB4_CD) && ad_reqd && cache_secure)
Simon Kelley6938f342014-01-26 22:47:39 +0000654 header->hb4 |= HB4_AD;
Simon Kelley613ad152014-02-25 23:02:28 +0000655
656 /* If the requestor didn't set the DO bit, don't return DNSSEC info. */
657 if (!do_bit)
658 n = filter_rrsigs(header, n);
Simon Kelleya25720a2014-01-14 23:13:55 +0000659#endif
660
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100661 /* do this after extract_addresses. Ensure NODATA reply and remove
662 nameserver info. */
663
664 if (munged)
665 {
666 header->ancount = htons(0);
667 header->nscount = htons(0);
668 header->arcount = htons(0);
669 }
670
Simon Kelley36717ee2004-09-20 19:20:58 +0100671 /* the bogus-nxdomain stuff, doctor and NXDOMAIN->NODATA munging can all elide
672 sections of the packet. Find the new length here and put back pseudoheader
673 if it was removed. */
674 return resize_packet(header, n, pheader, plen);
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100675}
676
Simon Kelley3be34542004-09-11 19:12:13 +0100677/* sets new last_server */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100678void reply_query(int fd, int family, time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000679{
680 /* packet from peer server, extract data for cache, and send to
681 original requester */
Simon Kelley572b41e2011-02-18 18:11:18 +0000682 struct dns_header *header;
Simon Kelleyde379512004-06-22 20:23:33 +0100683 union mysockaddr serveraddr;
Simon Kelley832af0b2007-01-21 20:01:28 +0000684 struct frec *forward;
Simon Kelleyde379512004-06-22 20:23:33 +0100685 socklen_t addrlen = sizeof(serveraddr);
Simon Kelley60b68062014-01-08 12:10:28 +0000686 ssize_t n = recvfrom(fd, daemon->packet, daemon->packet_buff_sz, 0, &serveraddr.sa, &addrlen);
Simon Kelleycdeda282006-03-16 20:16:06 +0000687 size_t nn;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100688 struct server *server;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000689 void *hash;
690#ifndef HAVE_DNSSEC
691 unsigned int crc;
692#endif
693
Simon Kelleycdeda282006-03-16 20:16:06 +0000694 /* packet buffer overwritten */
695 daemon->srv_save = NULL;
Simon Kelley832af0b2007-01-21 20:01:28 +0000696
Simon Kelleyde379512004-06-22 20:23:33 +0100697 /* Determine the address of the server replying so that we can mark that as good */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100698 serveraddr.sa.sa_family = family;
Simon Kelleyde379512004-06-22 20:23:33 +0100699#ifdef HAVE_IPV6
700 if (serveraddr.sa.sa_family == AF_INET6)
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100701 serveraddr.in6.sin6_flowinfo = 0;
Simon Kelleyde379512004-06-22 20:23:33 +0100702#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000703
Simon Kelley490f9072014-03-24 22:04:42 +0000704 header = (struct dns_header *)daemon->packet;
705
706 if (n < (int)sizeof(struct dns_header) || !(header->hb3 & HB3_QR))
707 return;
708
Simon Kelley1a6bca82008-07-11 11:11:42 +0100709 /* spoof check: answer must come from known server, */
710 for (server = daemon->servers; server; server = server->next)
711 if (!(server->flags & (SERV_LITERAL_ADDRESS | SERV_NO_ADDR)) &&
712 sockaddr_isequal(&server->addr, &serveraddr))
713 break;
Simon Kelley490f9072014-03-24 22:04:42 +0000714
715 if (!server)
716 return;
717
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000718#ifdef HAVE_DNSSEC
719 hash = hash_questions(header, n, daemon->namebuff);
720#else
721 hash = &crc;
722 crc = questions_crc(header, n, daemon->namebuff);
723#endif
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100724
Simon Kelley490f9072014-03-24 22:04:42 +0000725 if (!(forward = lookup_frec(ntohs(header->id), hash)))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100726 return;
Simon Kelley490f9072014-03-24 22:04:42 +0000727
Glen Huang32fc6db2014-12-27 15:28:12 +0000728 if (daemon->ignore_addr && RCODE(header) == NOERROR &&
729 check_for_ignored_address(header, n, daemon->ignore_addr))
730 return;
731
Simon Kelley572b41e2011-02-18 18:11:18 +0000732 if ((RCODE(header) == SERVFAIL || RCODE(header) == REFUSED) &&
Simon Kelley28866e92011-02-14 20:19:14 +0000733 !option_bool(OPT_ORDER) &&
Simon Kelley1a6bca82008-07-11 11:11:42 +0100734 forward->forwardall == 0)
735 /* for broken servers, attempt to send to another one. */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000736 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100737 unsigned char *pheader;
738 size_t plen;
739 int is_sign;
Simon Kelley832af0b2007-01-21 20:01:28 +0000740
Simon Kelley1a6bca82008-07-11 11:11:42 +0100741 /* recreate query from reply */
742 pheader = find_pseudoheader(header, (size_t)n, &plen, NULL, &is_sign);
743 if (!is_sign)
Simon Kelley832af0b2007-01-21 20:01:28 +0000744 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100745 header->ancount = htons(0);
746 header->nscount = htons(0);
747 header->arcount = htons(0);
748 if ((nn = resize_packet(header, (size_t)n, pheader, plen)))
749 {
Simon Kelley572b41e2011-02-18 18:11:18 +0000750 header->hb3 &= ~(HB3_QR | HB3_TC);
Simon Kelley613ad152014-02-25 23:02:28 +0000751 forward_query(-1, NULL, NULL, 0, header, nn, now, forward, 0, 0);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100752 return;
753 }
754 }
755 }
Simon Kelley3a237152013-12-12 12:15:50 +0000756
757 server = forward->sentto;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100758
759 if ((forward->sentto->flags & SERV_TYPE) == 0)
760 {
Simon Kelley51967f92014-03-25 21:07:00 +0000761 if (RCODE(header) == REFUSED)
Simon Kelley1a6bca82008-07-11 11:11:42 +0100762 server = NULL;
763 else
764 {
765 struct server *last_server;
Simon Kelley832af0b2007-01-21 20:01:28 +0000766
Simon Kelley1a6bca82008-07-11 11:11:42 +0100767 /* find good server by address if possible, otherwise assume the last one we sent to */
768 for (last_server = daemon->servers; last_server; last_server = last_server->next)
769 if (!(last_server->flags & (SERV_LITERAL_ADDRESS | SERV_HAS_DOMAIN | SERV_FOR_NODOTS | SERV_NO_ADDR)) &&
770 sockaddr_isequal(&last_server->addr, &serveraddr))
771 {
772 server = last_server;
773 break;
774 }
775 }
Simon Kelley28866e92011-02-14 20:19:14 +0000776 if (!option_bool(OPT_ALL_SERVERS))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100777 daemon->last_server = server;
778 }
Simon Kelley3a237152013-12-12 12:15:50 +0000779
Simon Kelley1a6bca82008-07-11 11:11:42 +0100780 /* If the answer is an error, keep the forward record in place in case
781 we get a good reply from another server. Kill it when we've
782 had replies from all to avoid filling the forwarding table when
783 everything is broken */
Simon Kelley51967f92014-03-25 21:07:00 +0000784 if (forward->forwardall == 0 || --forward->forwardall == 1 || RCODE(header) != SERVFAIL)
Simon Kelley1a6bca82008-07-11 11:11:42 +0100785 {
Simon Kelley3a237152013-12-12 12:15:50 +0000786 int check_rebind = 0, no_cache_dnssec = 0, cache_secure = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100787
Simon Kelley3a237152013-12-12 12:15:50 +0000788 if (option_bool(OPT_NO_REBIND))
789 check_rebind = !(forward->flags & FREC_NOREBIND);
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100790
Simon Kelley3a237152013-12-12 12:15:50 +0000791 /* Don't cache replies where DNSSEC validation was turned off, either
792 the upstream server told us so, or the original query specified it. */
793 if ((header->hb4 & HB4_CD) || (forward->flags & FREC_CHECKING_DISABLED))
794 no_cache_dnssec = 1;
795
796#ifdef HAVE_DNSSEC
Simon Kelley51967f92014-03-25 21:07:00 +0000797 if (server && option_bool(OPT_DNSSEC_VALID) && !(forward->flags & FREC_CHECKING_DISABLED))
Simon Kelley3a237152013-12-12 12:15:50 +0000798 {
Simon Kelley9d633042013-12-13 15:36:55 +0000799 int status;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000800
801 /* We've had a reply already, which we're validating. Ignore this duplicate */
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000802 if (forward->blocking_query)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000803 return;
Simon Kelley9d633042013-12-13 15:36:55 +0000804
Simon Kelley871417d2014-01-08 11:22:32 +0000805 if (header->hb3 & HB3_TC)
806 {
807 /* Truncated answer can't be validated.
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000808 If this is an answer to a DNSSEC-generated query, we still
809 need to get the client to retry over TCP, so return
810 an answer with the TC bit set, even if the actual answer fits.
811 */
812 status = STAT_TRUNCATED;
Simon Kelley871417d2014-01-08 11:22:32 +0000813 }
814 else if (forward->flags & FREC_DNSKEY_QUERY)
Simon Kelley8d718cb2014-02-03 16:27:37 +0000815 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelleyc3e0b9b2013-12-31 13:50:39 +0000816 else if (forward->flags & FREC_DS_QUERY)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000817 {
818 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley97e618a2015-01-07 21:55:43 +0000819 if (status == STAT_NO_DS || status == STAT_NO_NS)
820 status = STAT_BOGUS;
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000821 }
822 else if (forward->flags & FREC_CHECK_NOSIGN)
Simon Kelley97e618a2015-01-07 21:55:43 +0000823 {
824 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
825 if (status != STAT_NEED_KEY)
826 status = do_check_sign(forward, status, now, daemon->namebuff, daemon->keyname);
827 }
Simon Kelley9d633042013-12-13 15:36:55 +0000828 else
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000829 {
Simon Kelley97e618a2015-01-07 21:55:43 +0000830 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000831 if (status == STAT_NO_SIG)
832 {
833 if (option_bool(OPT_DNSSEC_NO_SIGN))
Simon Kelley97e618a2015-01-07 21:55:43 +0000834 status = send_check_sign(forward, now, header, n, daemon->namebuff, daemon->keyname);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000835 else
836 status = STAT_INSECURE;
837 }
838 }
Simon Kelley3a237152013-12-12 12:15:50 +0000839 /* Can't validate, as we're missing key data. Put this
840 answer aside, whilst we get that. */
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000841 if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY)
Simon Kelley3a237152013-12-12 12:15:50 +0000842 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000843 struct frec *new, *orig;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000844
Simon Kelley7fa836e2014-02-10 20:11:24 +0000845 /* Free any saved query */
846 if (forward->stash)
847 blockdata_free(forward->stash);
848
849 /* Now save reply pending receipt of key data */
850 if (!(forward->stash = blockdata_alloc((char *)header, n)))
851 return;
852 forward->stash_len = n;
853
854 anotherkey:
855 /* Find the original query that started it all.... */
856 for (orig = forward; orig->dependent; orig = orig->dependent);
857
858 if (--orig->work_counter == 0 || !(new = get_new_frec(now, NULL, 1)))
859 status = STAT_INSECURE;
860 else
Simon Kelley3a237152013-12-12 12:15:50 +0000861 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000862 int fd;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000863 struct frec *next = new->next;
864 *new = *forward; /* copy everything, then overwrite */
865 new->next = next;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000866 new->blocking_query = NULL;
Simon Kelley8a8bbad2014-03-27 22:02:17 +0000867 new->sentto = server;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000868 new->rfd4 = NULL;
Simon Kelley97e618a2015-01-07 21:55:43 +0000869 new->orig_domain = NULL;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000870#ifdef HAVE_IPV6
871 new->rfd6 = NULL;
872#endif
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000873 new->flags &= ~(FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_CHECK_NOSIGN);
Simon Kelley9d633042013-12-13 15:36:55 +0000874
Simon Kelley7fa836e2014-02-10 20:11:24 +0000875 new->dependent = forward; /* to find query awaiting new one. */
876 forward->blocking_query = new; /* for garbage cleaning */
877 /* validate routines leave name of required record in daemon->keyname */
878 if (status == STAT_NEED_KEY)
879 {
880 new->flags |= FREC_DNSKEY_QUERY;
881 nn = dnssec_generate_query(header, ((char *) header) + daemon->packet_buff_sz,
882 daemon->keyname, forward->class, T_DNSKEY, &server->addr);
883 }
884 else
885 {
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000886 if (status == STAT_NEED_DS_NEG)
887 new->flags |= FREC_CHECK_NOSIGN;
888 else
889 new->flags |= FREC_DS_QUERY;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000890 nn = dnssec_generate_query(header,((char *) header) + daemon->packet_buff_sz,
891 daemon->keyname, forward->class, T_DS, &server->addr);
892 }
893 if ((hash = hash_questions(header, nn, daemon->namebuff)))
894 memcpy(new->hash, hash, HASH_SIZE);
895 new->new_id = get_id();
896 header->id = htons(new->new_id);
897 /* Save query for retransmission */
Simon Kelley97e618a2015-01-07 21:55:43 +0000898 if (!(new->stash = blockdata_alloc((char *)header, nn)))
899 return;
900
Simon Kelley7fa836e2014-02-10 20:11:24 +0000901 new->stash_len = nn;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000902
Simon Kelley7fa836e2014-02-10 20:11:24 +0000903 /* Don't resend this. */
904 daemon->srv_save = NULL;
905
906 if (server->sfd)
907 fd = server->sfd->fd;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000908 else
Simon Kelley3a237152013-12-12 12:15:50 +0000909 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000910 fd = -1;
Simon Kelley3a237152013-12-12 12:15:50 +0000911#ifdef HAVE_IPV6
Simon Kelley7fa836e2014-02-10 20:11:24 +0000912 if (server->addr.sa.sa_family == AF_INET6)
Simon Kelleyf1668d22014-01-08 16:53:27 +0000913 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000914 if (new->rfd6 || (new->rfd6 = allocate_rfd(AF_INET6)))
915 fd = new->rfd6->fd;
916 }
917 else
918#endif
919 {
920 if (new->rfd4 || (new->rfd4 = allocate_rfd(AF_INET)))
921 fd = new->rfd4->fd;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000922 }
Simon Kelley3a237152013-12-12 12:15:50 +0000923 }
Simon Kelley7fa836e2014-02-10 20:11:24 +0000924
925 if (fd != -1)
926 {
927 while (sendto(fd, (char *)header, nn, 0, &server->addr.sa, sa_len(&server->addr)) == -1 && retry_send());
928 server->queries++;
929 }
930
931 return;
Simon Kelley3a237152013-12-12 12:15:50 +0000932 }
Simon Kelley3a237152013-12-12 12:15:50 +0000933 }
934
935 /* Ok, we reached far enough up the chain-of-trust that we can validate something.
936 Now wind back down, pulling back answers which wouldn't previously validate
Simon Kelley7fa836e2014-02-10 20:11:24 +0000937 and validate them with the new data. Note that if an answer needs multiple
938 keys to validate, we may find another key is needed, in which case we set off
939 down another branch of the tree. Once we get to the original answer
940 (FREC_DNSSEC_QUERY not set) and it validates, return it to the original requestor. */
Simon Kelley0744ca62014-01-25 16:40:15 +0000941 while (forward->dependent)
Simon Kelley3a237152013-12-12 12:15:50 +0000942 {
Simon Kelley0744ca62014-01-25 16:40:15 +0000943 struct frec *prev = forward->dependent;
944 free_frec(forward);
945 forward = prev;
946 forward->blocking_query = NULL; /* already gone */
947 blockdata_retrieve(forward->stash, forward->stash_len, (void *)header);
948 n = forward->stash_len;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000949
Simon Kelley0fc2f312014-01-08 10:26:58 +0000950 if (status == STAT_SECURE)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000951 {
Simon Kelley0744ca62014-01-25 16:40:15 +0000952 if (forward->flags & FREC_DNSKEY_QUERY)
953 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
954 else if (forward->flags & FREC_DS_QUERY)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000955 {
956 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley97e618a2015-01-07 21:55:43 +0000957 if (status == STAT_NO_DS || status == STAT_NO_NS)
958 status = STAT_BOGUS;
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000959 }
960 else if (forward->flags & FREC_CHECK_NOSIGN)
Simon Kelley97e618a2015-01-07 21:55:43 +0000961 {
962 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
963 if (status != STAT_NEED_KEY)
964 status = do_check_sign(forward, status, now, daemon->namebuff, daemon->keyname);
965 }
Simon Kelley0744ca62014-01-25 16:40:15 +0000966 else
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000967 {
Simon Kelley97e618a2015-01-07 21:55:43 +0000968 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000969 if (status == STAT_NO_SIG)
970 {
971 if (option_bool(OPT_DNSSEC_NO_SIGN))
Simon Kelley97e618a2015-01-07 21:55:43 +0000972 status = send_check_sign(forward, now, header, n, daemon->namebuff, daemon->keyname);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000973 else
974 status = STAT_INSECURE;
975 }
976 }
977
978 if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +0000979 goto anotherkey;
Simon Kelley3a237152013-12-12 12:15:50 +0000980 }
981 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000982
983 if (status == STAT_TRUNCATED)
Simon Kelley0744ca62014-01-25 16:40:15 +0000984 header->hb3 |= HB3_TC;
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000985 else
Simon Kelley7fa836e2014-02-10 20:11:24 +0000986 {
987 char *result;
988
989 if (forward->work_counter == 0)
990 result = "ABANDONED";
991 else
992 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
993
994 log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result);
995 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000996
Simon Kelley0fc2f312014-01-08 10:26:58 +0000997 no_cache_dnssec = 0;
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000998
Simon Kelley3a237152013-12-12 12:15:50 +0000999 if (status == STAT_SECURE)
1000 cache_secure = 1;
Simon Kelley3a237152013-12-12 12:15:50 +00001001 else if (status == STAT_BOGUS)
1002 no_cache_dnssec = 1;
1003 }
Simon Kelley83349b82014-02-10 21:02:01 +00001004#endif
1005
1006 /* restore CD bit to the value in the query */
1007 if (forward->flags & FREC_CHECKING_DISABLED)
1008 header->hb4 |= HB4_CD;
1009 else
1010 header->hb4 &= ~HB4_CD;
Simon Kelley3a237152013-12-12 12:15:50 +00001011
1012 if ((nn = process_reply(header, now, server, (size_t)n, check_rebind, no_cache_dnssec, cache_secure,
Simon Kelley613ad152014-02-25 23:02:28 +00001013 forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION,
1014 forward->flags & FREC_ADDED_PHEADER, forward->flags & FREC_HAS_SUBNET, &forward->source)))
Simon Kelley832af0b2007-01-21 20:01:28 +00001015 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01001016 header->id = htons(forward->orig_id);
Simon Kelley572b41e2011-02-18 18:11:18 +00001017 header->hb4 |= HB4_RA; /* recursion if available */
Simon Kelley54dd3932012-06-20 11:23:38 +01001018 send_from(forward->fd, option_bool(OPT_NOWILD) || option_bool (OPT_CLEVERBIND), daemon->packet, nn,
Simon Kelley50303b12012-04-04 22:13:17 +01001019 &forward->source, &forward->dest, forward->iface);
Simon Kelley832af0b2007-01-21 20:01:28 +00001020 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01001021 free_frec(forward); /* cancel */
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001022 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001023}
Simon Kelley44a2a312004-03-10 20:04:35 +00001024
Simon Kelley1a6bca82008-07-11 11:11:42 +01001025
Simon Kelley5aabfc72007-08-29 11:24:47 +01001026void receive_query(struct listener *listen, time_t now)
Simon Kelley44a2a312004-03-10 20:04:35 +00001027{
Simon Kelley572b41e2011-02-18 18:11:18 +00001028 struct dns_header *header = (struct dns_header *)daemon->packet;
Simon Kelley44a2a312004-03-10 20:04:35 +00001029 union mysockaddr source_addr;
Simon Kelleyc1bb8502004-08-11 18:40:17 +01001030 unsigned short type;
Simon Kelley44a2a312004-03-10 20:04:35 +00001031 struct all_addr dst_addr;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001032 struct in_addr netmask, dst_addr_4;
Simon Kelleycdeda282006-03-16 20:16:06 +00001033 size_t m;
1034 ssize_t n;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001035 int if_index = 0, auth_dns = 0;
1036#ifdef HAVE_AUTH
1037 int local_auth = 0;
1038#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001039 struct iovec iov[1];
1040 struct msghdr msg;
1041 struct cmsghdr *cmptr;
Simon Kelley44a2a312004-03-10 20:04:35 +00001042 union {
1043 struct cmsghdr align; /* this ensures alignment */
1044#ifdef HAVE_IPV6
1045 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
1046#endif
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001047#if defined(HAVE_LINUX_NETWORK)
Simon Kelley44a2a312004-03-10 20:04:35 +00001048 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
Simon Kelley824af852008-02-12 20:43:05 +00001049#elif defined(IP_RECVDSTADDR) && defined(HAVE_SOLARIS_NETWORK)
1050 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1051 CMSG_SPACE(sizeof(unsigned int))];
Simon Kelley44a2a312004-03-10 20:04:35 +00001052#elif defined(IP_RECVDSTADDR)
1053 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1054 CMSG_SPACE(sizeof(struct sockaddr_dl))];
1055#endif
1056 } control_u;
Simon Kelley2329bef2013-12-03 13:41:16 +00001057#ifdef HAVE_IPV6
1058 /* Can always get recvd interface for IPv6 */
1059 int check_dst = !option_bool(OPT_NOWILD) || listen->family == AF_INET6;
1060#else
1061 int check_dst = !option_bool(OPT_NOWILD);
1062#endif
1063
Simon Kelleycdeda282006-03-16 20:16:06 +00001064 /* packet buffer overwritten */
1065 daemon->srv_save = NULL;
1066
Hans Dedecker98906272014-12-09 22:22:53 +00001067 dst_addr_4.s_addr = dst_addr.addr.addr4.s_addr = 0;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001068 netmask.s_addr = 0;
1069
Simon Kelley7e5664b2013-04-05 16:57:41 +01001070 if (option_bool(OPT_NOWILD) && listen->iface)
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001071 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001072 auth_dns = listen->iface->dns_auth;
1073
1074 if (listen->family == AF_INET)
1075 {
Hans Dedecker98906272014-12-09 22:22:53 +00001076 dst_addr_4 = dst_addr.addr.addr4 = listen->iface->addr.in.sin_addr;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001077 netmask = listen->iface->netmask;
1078 }
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001079 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001080
Simon Kelley3be34542004-09-11 19:12:13 +01001081 iov[0].iov_base = daemon->packet;
1082 iov[0].iov_len = daemon->edns_pktsz;
Simon Kelley44a2a312004-03-10 20:04:35 +00001083
1084 msg.msg_control = control_u.control;
1085 msg.msg_controllen = sizeof(control_u);
1086 msg.msg_flags = 0;
1087 msg.msg_name = &source_addr;
1088 msg.msg_namelen = sizeof(source_addr);
1089 msg.msg_iov = iov;
1090 msg.msg_iovlen = 1;
1091
Simon Kelleyde379512004-06-22 20:23:33 +01001092 if ((n = recvmsg(listen->fd, &msg, 0)) == -1)
Simon Kelley3be34542004-09-11 19:12:13 +01001093 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001094
Simon Kelley572b41e2011-02-18 18:11:18 +00001095 if (n < (int)sizeof(struct dns_header) ||
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001096 (msg.msg_flags & MSG_TRUNC) ||
Simon Kelley572b41e2011-02-18 18:11:18 +00001097 (header->hb3 & HB3_QR))
Simon Kelley3be34542004-09-11 19:12:13 +01001098 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001099
Simon Kelley26128d22004-11-14 16:43:54 +00001100 source_addr.sa.sa_family = listen->family;
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001101
1102 if (listen->family == AF_INET)
1103 {
1104 /* Source-port == 0 is an error, we can't send back to that.
1105 http://www.ietf.org/mail-archive/web/dnsop/current/msg11441.html */
1106 if (source_addr.in.sin_port == 0)
1107 return;
1108 }
Simon Kelley26128d22004-11-14 16:43:54 +00001109#ifdef HAVE_IPV6
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001110 else
1111 {
1112 /* Source-port == 0 is an error, we can't send back to that. */
1113 if (source_addr.in6.sin6_port == 0)
1114 return;
1115 source_addr.in6.sin6_flowinfo = 0;
1116 }
Simon Kelley26128d22004-11-14 16:43:54 +00001117#endif
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001118
Simon Kelleyc8a80482014-03-05 14:29:54 +00001119 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1120 if (option_bool(OPT_LOCAL_SERVICE))
1121 {
1122 struct addrlist *addr;
1123#ifdef HAVE_IPV6
1124 if (listen->family == AF_INET6)
1125 {
1126 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1127 if ((addr->flags & ADDRLIST_IPV6) &&
1128 is_same_net6(&addr->addr.addr.addr6, &source_addr.in6.sin6_addr, addr->prefixlen))
1129 break;
1130 }
1131 else
1132#endif
1133 {
1134 struct in_addr netmask;
1135 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1136 {
Richard Genoud15b1b7e2014-09-17 21:12:00 +01001137 netmask.s_addr = htonl(~(in_addr_t)0 << (32 - addr->prefixlen));
Simon Kelleyc8a80482014-03-05 14:29:54 +00001138 if (!(addr->flags & ADDRLIST_IPV6) &&
1139 is_same_net(addr->addr.addr.addr4, source_addr.in.sin_addr, netmask))
1140 break;
1141 }
1142 }
1143 if (!addr)
1144 {
Simon Kelley0c8584e2014-03-12 20:12:56 +00001145 static int warned = 0;
1146 if (!warned)
1147 {
1148 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1149 warned = 1;
1150 }
Simon Kelleyc8a80482014-03-05 14:29:54 +00001151 return;
1152 }
1153 }
1154
Simon Kelley2329bef2013-12-03 13:41:16 +00001155 if (check_dst)
Simon Kelley44a2a312004-03-10 20:04:35 +00001156 {
Simon Kelley8a911cc2004-03-16 18:35:52 +00001157 struct ifreq ifr;
1158
Simon Kelley26128d22004-11-14 16:43:54 +00001159 if (msg.msg_controllen < sizeof(struct cmsghdr))
1160 return;
1161
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001162#if defined(HAVE_LINUX_NETWORK)
Simon Kelley26128d22004-11-14 16:43:54 +00001163 if (listen->family == AF_INET)
1164 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001165 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
Simon Kelley26128d22004-11-14 16:43:54 +00001166 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001167 union {
1168 unsigned char *c;
1169 struct in_pktinfo *p;
1170 } p;
1171 p.c = CMSG_DATA(cmptr);
1172 dst_addr_4 = dst_addr.addr.addr4 = p.p->ipi_spec_dst;
1173 if_index = p.p->ipi_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001174 }
1175#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
1176 if (listen->family == AF_INET)
1177 {
1178 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001179 {
1180 union {
1181 unsigned char *c;
1182 unsigned int *i;
1183 struct in_addr *a;
1184#ifndef HAVE_SOLARIS_NETWORK
1185 struct sockaddr_dl *s;
Simon Kelley824af852008-02-12 20:43:05 +00001186#endif
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001187 } p;
1188 p.c = CMSG_DATA(cmptr);
1189 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
1190 dst_addr_4 = dst_addr.addr.addr4 = *(p.a);
1191 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
1192#ifdef HAVE_SOLARIS_NETWORK
1193 if_index = *(p.i);
1194#else
1195 if_index = p.s->sdl_index;
1196#endif
1197 }
Simon Kelley26128d22004-11-14 16:43:54 +00001198 }
1199#endif
1200
1201#ifdef HAVE_IPV6
1202 if (listen->family == AF_INET6)
1203 {
1204 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001205 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
Simon Kelley26128d22004-11-14 16:43:54 +00001206 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001207 union {
1208 unsigned char *c;
1209 struct in6_pktinfo *p;
1210 } p;
1211 p.c = CMSG_DATA(cmptr);
1212
1213 dst_addr.addr.addr6 = p.p->ipi6_addr;
1214 if_index = p.p->ipi6_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001215 }
1216 }
1217#endif
1218
1219 /* enforce available interface configuration */
1220
Simon Kelleye25db1f2013-01-29 22:10:26 +00001221 if (!indextoname(listen->fd, if_index, ifr.ifr_name))
Simon Kelley832af0b2007-01-21 20:01:28 +00001222 return;
1223
Simon Kelleye25db1f2013-01-29 22:10:26 +00001224 if (!iface_check(listen->family, &dst_addr, ifr.ifr_name, &auth_dns))
1225 {
1226 if (!option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001227 enumerate_interfaces(0);
Simon Kelley3f2873d2013-05-14 11:28:47 +01001228 if (!loopback_exception(listen->fd, listen->family, &dst_addr, ifr.ifr_name) &&
1229 !label_exception(if_index, listen->family, &dst_addr))
Simon Kelleye25db1f2013-01-29 22:10:26 +00001230 return;
1231 }
1232
Simon Kelley552af8b2012-02-29 20:10:31 +00001233 if (listen->family == AF_INET && option_bool(OPT_LOCALISE))
1234 {
1235 struct irec *iface;
1236
1237 /* get the netmask of the interface whch has the address we were sent to.
1238 This is no neccessarily the interface we arrived on. */
1239
1240 for (iface = daemon->interfaces; iface; iface = iface->next)
1241 if (iface->addr.sa.sa_family == AF_INET &&
1242 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1243 break;
1244
1245 /* interface may be new */
Simon Kelleye25db1f2013-01-29 22:10:26 +00001246 if (!iface && !option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001247 enumerate_interfaces(0);
Simon Kelley552af8b2012-02-29 20:10:31 +00001248
1249 for (iface = daemon->interfaces; iface; iface = iface->next)
1250 if (iface->addr.sa.sa_family == AF_INET &&
1251 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1252 break;
1253
1254 /* If we failed, abandon localisation */
1255 if (iface)
1256 netmask = iface->netmask;
1257 else
1258 dst_addr_4.s_addr = 0;
1259 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001260 }
1261
Simon Kelleycdeda282006-03-16 20:16:06 +00001262 if (extract_request(header, (size_t)n, daemon->namebuff, &type))
Simon Kelley44a2a312004-03-10 20:04:35 +00001263 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001264#ifdef HAVE_AUTH
1265 struct auth_zone *zone;
1266#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001267 char *types = querystr(auth_dns ? "auth" : "query", type);
1268
Simon Kelley44a2a312004-03-10 20:04:35 +00001269 if (listen->family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01001270 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001271 (struct all_addr *)&source_addr.in.sin_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001272#ifdef HAVE_IPV6
1273 else
Simon Kelley3be34542004-09-11 19:12:13 +01001274 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001275 (struct all_addr *)&source_addr.in6.sin6_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001276#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001277
Simon Kelley4820dce2012-12-18 18:30:30 +00001278#ifdef HAVE_AUTH
Simon Kelleyb485ed92013-10-18 22:00:39 +01001279 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley6008bdb2013-10-21 21:47:03 +01001280 if (!auth_dns)
1281 for (zone = daemon->auth_zones; zone; zone = zone->next)
1282 if (in_zone(zone, daemon->namebuff, NULL))
1283 {
1284 auth_dns = 1;
1285 local_auth = 1;
1286 break;
1287 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001288#endif
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001289
1290#ifdef HAVE_LOOP
1291 /* Check for forwarding loop */
1292 if (detect_loop(daemon->namebuff, type))
1293 return;
1294#endif
Simon Kelleyb485ed92013-10-18 22:00:39 +01001295 }
1296
1297#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001298 if (auth_dns)
Simon Kelley824af852008-02-12 20:43:05 +00001299 {
Simon Kelley60b68062014-01-08 12:10:28 +00001300 m = answer_auth(header, ((char *) header) + daemon->packet_buff_sz, (size_t)n, now, &source_addr, local_auth);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001301 if (m >= 1)
Simon Kelleyb485ed92013-10-18 22:00:39 +01001302 {
1303 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1304 (char *)header, m, &source_addr, &dst_addr, if_index);
1305 daemon->auth_answer++;
1306 }
Simon Kelley824af852008-02-12 20:43:05 +00001307 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001308 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001309#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001310 {
Simon Kelley613ad152014-02-25 23:02:28 +00001311 int ad_reqd, do_bit;
Simon Kelley60b68062014-01-08 12:10:28 +00001312 m = answer_request(header, ((char *) header) + daemon->packet_buff_sz, (size_t)n,
Simon Kelley613ad152014-02-25 23:02:28 +00001313 dst_addr_4, netmask, now, &ad_reqd, &do_bit);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001314
1315 if (m >= 1)
1316 {
1317 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1318 (char *)header, m, &source_addr, &dst_addr, if_index);
1319 daemon->local_answer++;
1320 }
1321 else if (forward_query(listen->fd, &source_addr, &dst_addr, if_index,
Simon Kelley613ad152014-02-25 23:02:28 +00001322 header, (size_t)n, now, NULL, ad_reqd, do_bit))
Simon Kelley4f7b3042012-11-28 21:27:02 +00001323 daemon->queries_forwarded++;
1324 else
1325 daemon->local_answer++;
1326 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001327}
1328
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001329#ifdef HAVE_DNSSEC
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001330
1331/* UDP: we've got an unsigned answer, return STAT_INSECURE if we can prove there's no DS
1332 and therefore the answer shouldn't be signed, or STAT_BOGUS if it should be, or
1333 STAT_NEED_DS_NEG and keyname if we need to do the query. */
Simon Kelley97e618a2015-01-07 21:55:43 +00001334static int send_check_sign(struct frec *forward, time_t now, struct dns_header *header, size_t plen,
1335 char *name, char *keyname)
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001336{
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001337 int status = dnssec_chase_cname(now, header, plen, name, keyname);
1338
1339 if (status != STAT_INSECURE)
1340 return status;
1341
Simon Kelley97e618a2015-01-07 21:55:43 +00001342 /* Store the domain we're trying to check. */
1343 forward->name_start = strlen(name);
1344 forward->name_len = forward->name_start + 1;
1345 if (!(forward->orig_domain = blockdata_alloc(name, forward->name_len)))
1346 return STAT_BOGUS;
1347
1348 return do_check_sign(forward, 0, now, name, keyname);
1349}
1350
1351/* We either have a a reply (header non-NULL, or we need to start by looking in the cache */
1352static int do_check_sign(struct frec *forward, int status, time_t now, char *name, char *keyname)
1353{
1354 /* get domain we're checking back from blockdata store, it's stored on the original query. */
1355 while (forward->dependent)
1356 forward = forward->dependent;
1357
1358 blockdata_retrieve(forward->orig_domain, forward->name_len, name);
1359
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001360 while (1)
1361 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001362 char *p;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001363
Simon Kelley97e618a2015-01-07 21:55:43 +00001364 if (status == 0)
1365 {
1366 struct crec *crecp;
1367
1368 /* Haven't received answer, see if in cache */
1369 if (!(crecp = cache_find_by_name(NULL, &name[forward->name_start], now, F_DS)))
1370 {
1371 /* put name of DS record we're missing into keyname */
1372 strcpy(keyname, &name[forward->name_start]);
1373 /* and wait for reply to arrive */
1374 return STAT_NEED_DS_NEG;
1375 }
1376
1377 /* F_DNSSECOK misused in DS cache records to non-existance of NS record */
1378 if (!(crecp->flags & F_NEG))
1379 status = STAT_SECURE;
1380 else if (crecp->flags & F_DNSSECOK)
1381 status = STAT_NO_DS;
1382 else
1383 status = STAT_NO_NS;
1384 }
1385
1386 /* Have entered non-signed part of DNS tree. */
1387 if (status == STAT_NO_DS)
1388 return STAT_INSECURE;
1389
1390 if (status == STAT_BOGUS)
Simon Kelley4e1fe442014-03-26 12:24:19 +00001391 return STAT_BOGUS;
1392
Simon Kelley97e618a2015-01-07 21:55:43 +00001393 /* There's a proven DS record, or we're within a zone, where there doesn't need
1394 to be a DS record. Add a name and try again.
1395 If we've already tried the whole name, then fail */
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001396
Simon Kelley97e618a2015-01-07 21:55:43 +00001397 if (forward->name_start == 0)
1398 return STAT_BOGUS;
Simon Kelley4872aa72014-04-26 22:13:31 +01001399
Simon Kelley97e618a2015-01-07 21:55:43 +00001400 for (p = &name[forward->name_start-2]; (*p != '.') && (p != name); p--);
1401
1402 if (p != name)
1403 p++;
1404
1405 forward->name_start = p - name;
1406 status = 0; /* force to cache when we iterate. */
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001407 }
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001408}
1409
1410/* Move toward the root, until we find a signed non-existance of a DS, in which case
1411 an unsigned answer is OK, or we find a signed DS, in which case there should be
1412 a signature, and the answer is BOGUS */
1413static int tcp_check_for_unsigned_zone(time_t now, struct dns_header *header, size_t plen, int class, char *name,
1414 char *keyname, struct server *server, int *keycount)
1415{
1416 size_t m;
1417 unsigned char *packet, *payload;
1418 u16 *length;
Simon Kelley97e618a2015-01-07 21:55:43 +00001419 int status, name_len;
1420 struct blockdata *block;
1421
1422 char *name_start;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001423
1424 /* Get first insecure entry in CNAME chain */
1425 status = tcp_key_recurse(now, STAT_CHASE_CNAME, header, plen, class, name, keyname, server, keycount);
1426 if (status == STAT_BOGUS)
1427 return STAT_BOGUS;
1428
1429 if (!(packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16))))
1430 return STAT_BOGUS;
1431
1432 payload = &packet[2];
1433 header = (struct dns_header *)payload;
1434 length = (u16 *)packet;
Simon Kelley97e618a2015-01-07 21:55:43 +00001435
1436 /* Stash the name away, since the buffer will be trashed when we recurse */
1437 name_len = strlen(name) + 1;
1438 name_start = name + name_len - 1;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001439
Simon Kelley97e618a2015-01-07 21:55:43 +00001440 if (!(block = blockdata_alloc(name, name_len)))
1441 {
1442 free(packet);
1443 return STAT_BOGUS;
1444 }
1445
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001446 while (1)
1447 {
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001448 unsigned char c1, c2;
Simon Kelley97e618a2015-01-07 21:55:43 +00001449 struct crec *crecp;
1450
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001451 if (--(*keycount) == 0)
Tomas Hozzafc2833f2014-03-25 20:43:21 +00001452 {
1453 free(packet);
Simon Kelley97e618a2015-01-07 21:55:43 +00001454 blockdata_free(block);
Tomas Hozzafc2833f2014-03-25 20:43:21 +00001455 return STAT_BOGUS;
1456 }
Simon Kelley97e618a2015-01-07 21:55:43 +00001457
Simon Kelley424c4a82015-01-07 21:58:05 +00001458 while ((crecp = cache_find_by_name(NULL, name_start, now, F_DS)))
Simon Kelley97e618a2015-01-07 21:55:43 +00001459 {
1460 if ((crecp->flags & F_NEG) && (crecp->flags & F_DNSSECOK))
1461 {
1462 /* Found a secure denial of DS - delegation is indeed insecure */
1463 free(packet);
1464 blockdata_free(block);
1465 return STAT_INSECURE;
1466 }
1467
1468 /* Here, either there's a secure DS, or no NS and no DS, and therefore no delegation.
1469 Add another label and continue. */
1470
1471 if (name_start == name)
1472 {
1473 free(packet);
1474 blockdata_free(block);
1475 return STAT_BOGUS; /* run out of labels */
1476 }
1477
1478 name_start -= 2;
1479 while (*name_start != '.' && name_start != name)
1480 name_start--;
1481 if (name_start != name)
1482 name_start++;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001483 }
1484
Simon Kelley97e618a2015-01-07 21:55:43 +00001485 /* Can't find it in the cache, have to send a query */
Simon Kelley4e1fe442014-03-26 12:24:19 +00001486
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001487 m = dnssec_generate_query(header, ((char *) header) + 65536, name_start, class, T_DS, &server->addr);
1488
Simon Kelley97e618a2015-01-07 21:55:43 +00001489 *length = htons(m);
1490
1491 if (read_write(server->tcpfd, packet, m + sizeof(u16), 0) &&
1492 read_write(server->tcpfd, &c1, 1, 1) &&
1493 read_write(server->tcpfd, &c2, 1, 1) &&
1494 read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001495 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001496 m = (c1 << 8) | c2;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001497
Simon Kelley97e618a2015-01-07 21:55:43 +00001498 /* Note this trashes all three name workspaces */
1499 status = tcp_key_recurse(now, STAT_NEED_DS_NEG, header, m, class, name, keyname, server, keycount);
1500
1501 if (status == STAT_NO_DS)
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001502 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001503 /* Found a secure denial of DS - delegation is indeed insecure */
1504 free(packet);
1505 blockdata_free(block);
1506 return STAT_INSECURE;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001507 }
Simon Kelley97e618a2015-01-07 21:55:43 +00001508
1509 if (status == STAT_BOGUS)
1510 {
1511 free(packet);
1512 blockdata_free(block);
1513 return STAT_BOGUS;
1514 }
1515
1516 /* Here, either there's a secure DS, or no NS and no DS, and therefore no delegation.
1517 Add another label and continue. */
1518
1519 /* Get name we're checking back. */
1520 blockdata_retrieve(block, name_len, name);
1521
1522 if (name_start == name)
1523 {
1524 free(packet);
1525 blockdata_free(block);
1526 return STAT_BOGUS; /* run out of labels */
1527 }
1528
1529 name_start -= 2;
1530 while (*name_start != '.' && name_start != name)
1531 name_start--;
1532 if (name_start != name)
1533 name_start++;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001534 }
Simon Kelley97e618a2015-01-07 21:55:43 +00001535 else
1536 {
1537 /* IO failure */
1538 free(packet);
1539 blockdata_free(block);
1540 return STAT_BOGUS; /* run out of labels */
1541 }
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001542 }
1543}
1544
Simon Kelley7fa836e2014-02-10 20:11:24 +00001545static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n,
1546 int class, char *name, char *keyname, struct server *server, int *keycount)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001547{
1548 /* Recurse up the key heirarchy */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001549 int new_status;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001550
Simon Kelley7fa836e2014-02-10 20:11:24 +00001551 /* limit the amount of work we do, to avoid cycling forever on loops in the DNS */
1552 if (--(*keycount) == 0)
1553 return STAT_INSECURE;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001554
Simon Kelley7fa836e2014-02-10 20:11:24 +00001555 if (status == STAT_NEED_KEY)
1556 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001557 else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG)
1558 {
1559 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
Simon Kelley97e618a2015-01-07 21:55:43 +00001560 if (status == STAT_NEED_DS && (new_status == STAT_NO_DS || new_status == STAT_NO_NS))
1561 new_status = STAT_BOGUS;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001562 }
1563 else if (status == STAT_CHASE_CNAME)
1564 new_status = dnssec_chase_cname(now, header, n, name, keyname);
1565 else
1566 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001567 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001568
1569 if (new_status == STAT_NO_SIG)
1570 {
1571 if (option_bool(OPT_DNSSEC_NO_SIGN))
1572 new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount);
1573 else
1574 new_status = STAT_INSECURE;
1575 }
1576 }
1577
Simon Kelley7fa836e2014-02-10 20:11:24 +00001578 /* Can't validate because we need a key/DS whose name now in keyname.
1579 Make query for same, and recurse to validate */
1580 if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001581 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001582 size_t m;
1583 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1584 unsigned char *payload = &packet[2];
1585 struct dns_header *new_header = (struct dns_header *)payload;
1586 u16 *length = (u16 *)packet;
1587 unsigned char c1, c2;
1588
1589 if (!packet)
1590 return STAT_INSECURE;
1591
1592 another_tcp_key:
1593 m = dnssec_generate_query(new_header, ((char *) new_header) + 65536, keyname, class,
1594 new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS, &server->addr);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001595
Simon Kelley7fa836e2014-02-10 20:11:24 +00001596 *length = htons(m);
1597
1598 if (!read_write(server->tcpfd, packet, m + sizeof(u16), 0) ||
1599 !read_write(server->tcpfd, &c1, 1, 1) ||
1600 !read_write(server->tcpfd, &c2, 1, 1) ||
1601 !read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
1602 new_status = STAT_INSECURE;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001603 else
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001604 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001605 m = (c1 << 8) | c2;
1606
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001607 new_status = tcp_key_recurse(now, new_status, new_header, m, class, name, keyname, server, keycount);
1608
1609 if (new_status == STAT_SECURE)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001610 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001611 /* Reached a validated record, now try again at this level.
1612 Note that we may get ANOTHER NEED_* if an answer needs more than one key.
1613 If so, go round again. */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001614
Simon Kelley7fa836e2014-02-10 20:11:24 +00001615 if (status == STAT_NEED_KEY)
1616 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001617 else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG)
1618 {
1619 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
Simon Kelley97e618a2015-01-07 21:55:43 +00001620 if (status == STAT_NEED_DS && (new_status == STAT_NO_DS || new_status == STAT_NO_NS))
1621 new_status = STAT_BOGUS; /* Validated no DS */
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001622 }
1623 else if (status == STAT_CHASE_CNAME)
1624 new_status = dnssec_chase_cname(now, header, n, name, keyname);
1625 else
1626 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001627 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001628
1629 if (new_status == STAT_NO_SIG)
1630 {
1631 if (option_bool(OPT_DNSSEC_NO_SIGN))
1632 new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount);
1633 else
1634 new_status = STAT_INSECURE;
1635 }
1636 }
1637
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001638 if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +00001639 goto another_tcp_key;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001640 }
1641 }
Simon Kelley7fa836e2014-02-10 20:11:24 +00001642
1643 free(packet);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001644 }
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001645 return new_status;
1646}
1647#endif
1648
1649
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001650/* The daemon forks before calling this: it should deal with one connection,
1651 blocking as neccessary, and then return. Note, need to be a bit careful
1652 about resources for debug mode, when the fork is suppressed: that's
1653 done by the caller. */
Simon Kelley5aabfc72007-08-29 11:24:47 +01001654unsigned char *tcp_request(int confd, time_t now,
Simon Kelley4f7b3042012-11-28 21:27:02 +00001655 union mysockaddr *local_addr, struct in_addr netmask, int auth_dns)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001656{
Simon Kelley28866e92011-02-14 20:19:14 +00001657 size_t size = 0;
1658 int norebind = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001659#ifdef HAVE_AUTH
Simon Kelley19b16892013-10-20 10:19:39 +01001660 int local_auth = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001661#endif
Simon Kelley613ad152014-02-25 23:02:28 +00001662 int checking_disabled, ad_question, do_bit, added_pheader = 0;
1663 int check_subnet, no_cache_dnssec = 0, cache_secure = 0;
Simon Kelleycdeda282006-03-16 20:16:06 +00001664 size_t m;
Simon Kelleyee86ce62012-12-07 11:54:46 +00001665 unsigned short qtype;
1666 unsigned int gotname;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001667 unsigned char c1, c2;
Simon Kelley4b5ea122013-04-22 10:18:26 +01001668 /* Max TCP packet + slop + size */
1669 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1670 unsigned char *payload = &packet[2];
1671 /* largest field in header is 16-bits, so this is still sufficiently aligned */
1672 struct dns_header *header = (struct dns_header *)payload;
1673 u16 *length = (u16 *)packet;
Simon Kelley3be34542004-09-11 19:12:13 +01001674 struct server *last_server;
Simon Kelley7de060b2011-08-26 17:24:52 +01001675 struct in_addr dst_addr_4;
1676 union mysockaddr peer_addr;
1677 socklen_t peer_len = sizeof(union mysockaddr);
Simon Kelley3be34542004-09-11 19:12:13 +01001678
Simon Kelley7de060b2011-08-26 17:24:52 +01001679 if (getpeername(confd, (struct sockaddr *)&peer_addr, &peer_len) == -1)
1680 return packet;
Simon Kelleyc8a80482014-03-05 14:29:54 +00001681
1682 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1683 if (option_bool(OPT_LOCAL_SERVICE))
1684 {
1685 struct addrlist *addr;
1686#ifdef HAVE_IPV6
1687 if (peer_addr.sa.sa_family == AF_INET6)
1688 {
1689 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1690 if ((addr->flags & ADDRLIST_IPV6) &&
1691 is_same_net6(&addr->addr.addr.addr6, &peer_addr.in6.sin6_addr, addr->prefixlen))
1692 break;
1693 }
1694 else
1695#endif
1696 {
1697 struct in_addr netmask;
1698 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1699 {
Richard Genoud15b1b7e2014-09-17 21:12:00 +01001700 netmask.s_addr = htonl(~(in_addr_t)0 << (32 - addr->prefixlen));
Simon Kelleyc8a80482014-03-05 14:29:54 +00001701 if (!(addr->flags & ADDRLIST_IPV6) &&
1702 is_same_net(addr->addr.addr.addr4, peer_addr.in.sin_addr, netmask))
1703 break;
1704 }
1705 }
1706 if (!addr)
1707 {
1708 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1709 return packet;
1710 }
1711 }
Simon Kelley7de060b2011-08-26 17:24:52 +01001712
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001713 while (1)
1714 {
1715 if (!packet ||
1716 !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) ||
1717 !(size = c1 << 8 | c2) ||
Simon Kelley4b5ea122013-04-22 10:18:26 +01001718 !read_write(confd, payload, size, 1))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001719 return packet;
1720
Simon Kelley572b41e2011-02-18 18:11:18 +00001721 if (size < (int)sizeof(struct dns_header))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001722 continue;
1723
Simon Kelleyed4c0762013-10-08 20:46:34 +01001724 check_subnet = 0;
1725
Simon Kelley28866e92011-02-14 20:19:14 +00001726 /* save state of "cd" flag in query */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001727 if ((checking_disabled = header->hb4 & HB4_CD))
1728 no_cache_dnssec = 1;
Simon Kelley28866e92011-02-14 20:19:14 +00001729
Simon Kelley3be34542004-09-11 19:12:13 +01001730 if ((gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001731 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001732#ifdef HAVE_AUTH
1733 struct auth_zone *zone;
1734#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001735 char *types = querystr(auth_dns ? "auth" : "query", qtype);
Simon Kelley7de060b2011-08-26 17:24:52 +01001736
1737 if (peer_addr.sa.sa_family == AF_INET)
1738 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
1739 (struct all_addr *)&peer_addr.in.sin_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001740#ifdef HAVE_IPV6
Simon Kelley7de060b2011-08-26 17:24:52 +01001741 else
1742 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
1743 (struct all_addr *)&peer_addr.in6.sin6_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001744#endif
Simon Kelleyb485ed92013-10-18 22:00:39 +01001745
1746#ifdef HAVE_AUTH
1747 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley6008bdb2013-10-21 21:47:03 +01001748 if (!auth_dns)
1749 for (zone = daemon->auth_zones; zone; zone = zone->next)
1750 if (in_zone(zone, daemon->namebuff, NULL))
1751 {
1752 auth_dns = 1;
1753 local_auth = 1;
1754 break;
1755 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001756#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001757 }
1758
Simon Kelley7de060b2011-08-26 17:24:52 +01001759 if (local_addr->sa.sa_family == AF_INET)
1760 dst_addr_4 = local_addr->in.sin_addr;
1761 else
1762 dst_addr_4.s_addr = 0;
1763
Simon Kelley4820dce2012-12-18 18:30:30 +00001764#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001765 if (auth_dns)
Simon Kelley19b16892013-10-20 10:19:39 +01001766 m = answer_auth(header, ((char *) header) + 65536, (size_t)size, now, &peer_addr, local_auth);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001767 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001768#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001769 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001770 /* m > 0 if answered from cache */
1771 m = answer_request(header, ((char *) header) + 65536, (size_t)size,
Simon Kelley613ad152014-02-25 23:02:28 +00001772 dst_addr_4, netmask, now, &ad_question, &do_bit);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001773
Simon Kelley4f7b3042012-11-28 21:27:02 +00001774 /* Do this by steam now we're not in the select() loop */
1775 check_log_writer(NULL);
1776
1777 if (m == 0)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001778 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001779 unsigned int flags = 0;
1780 struct all_addr *addrp = NULL;
1781 int type = 0;
1782 char *domain = NULL;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001783
Simon Kelley4f7b3042012-11-28 21:27:02 +00001784 if (option_bool(OPT_ADD_MAC))
1785 size = add_mac(header, size, ((char *) header) + 65536, &peer_addr);
Simon Kelleyed4c0762013-10-08 20:46:34 +01001786
1787 if (option_bool(OPT_CLIENT_SUBNET))
1788 {
1789 size_t new = add_source_addr(header, size, ((char *) header) + 65536, &peer_addr);
1790 if (size != new)
1791 {
1792 size = new;
1793 check_subnet = 1;
1794 }
1795 }
1796
Simon Kelley4f7b3042012-11-28 21:27:02 +00001797 if (gotname)
1798 flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind);
1799
1800 if (type != 0 || option_bool(OPT_ORDER) || !daemon->last_server)
1801 last_server = daemon->servers;
1802 else
1803 last_server = daemon->last_server;
1804
1805 if (!flags && last_server)
1806 {
1807 struct server *firstsendto = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001808#ifdef HAVE_DNSSEC
Simon Kelley703c7ff2014-01-25 23:46:23 +00001809 unsigned char *newhash, hash[HASH_SIZE];
Simon Kelley63758382014-04-16 22:20:55 +01001810 if ((newhash = hash_questions(header, (unsigned int)size, daemon->namebuff)))
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001811 memcpy(hash, newhash, HASH_SIZE);
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001812 else
1813 memset(hash, 0, HASH_SIZE);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001814#else
Simon Kelley4f7b3042012-11-28 21:27:02 +00001815 unsigned int crc = questions_crc(header, (unsigned int)size, daemon->namebuff);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001816#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001817 /* Loop round available servers until we succeed in connecting to one.
1818 Note that this code subtley ensures that consecutive queries on this connection
1819 which can go to the same server, do so. */
1820 while (1)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001821 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001822 if (!firstsendto)
1823 firstsendto = last_server;
1824 else
1825 {
1826 if (!(last_server = last_server->next))
1827 last_server = daemon->servers;
1828
1829 if (last_server == firstsendto)
1830 break;
1831 }
1832
1833 /* server for wrong domain */
1834 if (type != (last_server->flags & SERV_TYPE) ||
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001835 (type == SERV_HAS_DOMAIN && !hostname_isequal(domain, last_server->domain)) ||
1836 (last_server->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP)))
Simon Kelley7de060b2011-08-26 17:24:52 +01001837 continue;
1838
Simon Kelley4f7b3042012-11-28 21:27:02 +00001839 if (last_server->tcpfd == -1)
1840 {
1841 if ((last_server->tcpfd = socket(last_server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1)
1842 continue;
1843
Karl Vogele9828b62014-10-03 21:45:15 +01001844#ifdef HAVE_CONNTRACK
1845 /* Copy connection mark of incoming query to outgoing connection. */
1846 if (option_bool(OPT_CONNTRACK))
1847 {
1848 unsigned int mark;
1849 struct all_addr local;
1850#ifdef HAVE_IPV6
1851 if (local_addr->sa.sa_family == AF_INET6)
1852 local.addr.addr6 = local_addr->in6.sin6_addr;
1853 else
1854#endif
1855 local.addr.addr4 = local_addr->in.sin_addr;
1856
1857 if (get_incoming_mark(&peer_addr, &local, 1, &mark))
1858 setsockopt(last_server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
1859 }
1860#endif
1861
Simon Kelley4f7b3042012-11-28 21:27:02 +00001862 if ((!local_bind(last_server->tcpfd, &last_server->source_addr, last_server->interface, 1) ||
1863 connect(last_server->tcpfd, &last_server->addr.sa, sa_len(&last_server->addr)) == -1))
1864 {
1865 close(last_server->tcpfd);
1866 last_server->tcpfd = -1;
1867 continue;
1868 }
1869
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001870#ifdef HAVE_DNSSEC
1871 if (option_bool(OPT_DNSSEC_VALID))
1872 {
Simon Kelley613ad152014-02-25 23:02:28 +00001873 size_t new_size = add_do_bit(header, size, ((char *) header) + 65536);
1874
Simon Kelley2ecd9bd2014-02-13 16:42:02 +00001875 /* For debugging, set Checking Disabled, otherwise, have the upstream check too,
1876 this allows it to select auth servers when one is returning bad data. */
1877 if (option_bool(OPT_DNSSEC_DEBUG))
1878 header->hb4 |= HB4_CD;
Simon Kelley613ad152014-02-25 23:02:28 +00001879
1880 if (size != new_size)
1881 added_pheader = 1;
1882
1883 size = new_size;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001884 }
1885#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001886 }
1887
Simon Kelley4b5ea122013-04-22 10:18:26 +01001888 *length = htons(size);
Simon Kelley1fc02682014-04-29 12:30:18 +01001889
1890 /* get query name again for logging - may have been overwritten */
1891 if (!(gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype)))
1892 strcpy(daemon->namebuff, "query");
Simon Kelley4f7b3042012-11-28 21:27:02 +00001893
Simon Kelley4b5ea122013-04-22 10:18:26 +01001894 if (!read_write(last_server->tcpfd, packet, size + sizeof(u16), 0) ||
Simon Kelley4f7b3042012-11-28 21:27:02 +00001895 !read_write(last_server->tcpfd, &c1, 1, 1) ||
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001896 !read_write(last_server->tcpfd, &c2, 1, 1) ||
1897 !read_write(last_server->tcpfd, payload, (c1 << 8) | c2, 1))
Simon Kelley7de060b2011-08-26 17:24:52 +01001898 {
1899 close(last_server->tcpfd);
1900 last_server->tcpfd = -1;
1901 continue;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001902 }
1903
1904 m = (c1 << 8) | c2;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001905
Simon Kelley4f7b3042012-11-28 21:27:02 +00001906 if (last_server->addr.sa.sa_family == AF_INET)
1907 log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff,
1908 (struct all_addr *)&last_server->addr.in.sin_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001909#ifdef HAVE_IPV6
Simon Kelley4f7b3042012-11-28 21:27:02 +00001910 else
1911 log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff,
1912 (struct all_addr *)&last_server->addr.in6.sin6_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001913#endif
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001914
1915#ifdef HAVE_DNSSEC
1916 if (option_bool(OPT_DNSSEC_VALID) && !checking_disabled)
1917 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001918 int keycount = DNSSEC_WORK; /* Limit to number of DNSSEC questions, to catch loops and avoid filling cache. */
1919 int status = tcp_key_recurse(now, STAT_TRUNCATED, header, m, 0, daemon->namebuff, daemon->keyname, last_server, &keycount);
1920 char *result;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001921
Simon Kelley7fa836e2014-02-10 20:11:24 +00001922 if (keycount == 0)
1923 result = "ABANDONED";
1924 else
1925 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
1926
1927 log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result);
1928
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001929 if (status == STAT_BOGUS)
1930 no_cache_dnssec = 1;
Simon Kelley7fa836e2014-02-10 20:11:24 +00001931
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001932 if (status == STAT_SECURE)
1933 cache_secure = 1;
1934 }
1935#endif
1936
1937 /* restore CD bit to the value in the query */
1938 if (checking_disabled)
1939 header->hb4 |= HB4_CD;
1940 else
1941 header->hb4 &= ~HB4_CD;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001942
1943 /* There's no point in updating the cache, since this process will exit and
1944 lose the information after a few queries. We make this call for the alias and
1945 bogus-nxdomain side-effects. */
1946 /* If the crc of the question section doesn't match the crc we sent, then
1947 someone might be attempting to insert bogus values into the cache by
1948 sending replies containing questions and bogus answers. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001949#ifdef HAVE_DNSSEC
1950 newhash = hash_questions(header, (unsigned int)m, daemon->namebuff);
1951 if (!newhash || memcmp(hash, newhash, HASH_SIZE) != 0)
Simon Kelley703c7ff2014-01-25 23:46:23 +00001952 {
1953 m = 0;
1954 break;
1955 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001956#else
1957 if (crc != questions_crc(header, (unsigned int)m, daemon->namebuff))
Simon Kelley703c7ff2014-01-25 23:46:23 +00001958 {
1959 m = 0;
1960 break;
1961 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001962#endif
1963
1964 m = process_reply(header, now, last_server, (unsigned int)m,
1965 option_bool(OPT_NO_REBIND) && !norebind, no_cache_dnssec,
Simon Kelley613ad152014-02-25 23:02:28 +00001966 cache_secure, ad_question, do_bit, added_pheader, check_subnet, &peer_addr);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001967
1968 break;
1969 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001970 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001971
1972 /* In case of local answer or no connections made. */
1973 if (m == 0)
1974 m = setup_reply(header, (unsigned int)size, addrp, flags, daemon->local_ttl);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001975 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001976 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001977
Simon Kelley5aabfc72007-08-29 11:24:47 +01001978 check_log_writer(NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001979
Simon Kelley4b5ea122013-04-22 10:18:26 +01001980 *length = htons(m);
1981
1982 if (m == 0 || !read_write(confd, packet, m + sizeof(u16), 0))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001983 return packet;
1984 }
1985}
1986
Simon Kelley16972692006-10-16 20:04:18 +01001987static struct frec *allocate_frec(time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001988{
Simon Kelley16972692006-10-16 20:04:18 +01001989 struct frec *f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001990
Simon Kelley5aabfc72007-08-29 11:24:47 +01001991 if ((f = (struct frec *)whine_malloc(sizeof(struct frec))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001992 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01001993 f->next = daemon->frec_list;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001994 f->time = now;
Simon Kelley832af0b2007-01-21 20:01:28 +00001995 f->sentto = NULL;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001996 f->rfd4 = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00001997 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001998#ifdef HAVE_IPV6
1999 f->rfd6 = NULL;
2000#endif
Simon Kelley3a237152013-12-12 12:15:50 +00002001#ifdef HAVE_DNSSEC
Simon Kelley97bc7982014-01-31 10:19:52 +00002002 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002003 f->blocking_query = NULL;
Simon Kelley4619d942014-01-16 19:53:06 +00002004 f->stash = NULL;
Simon Kelley97e618a2015-01-07 21:55:43 +00002005 f->orig_domain = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002006#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01002007 daemon->frec_list = f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002008 }
Simon Kelley16972692006-10-16 20:04:18 +01002009
2010 return f;
2011}
2012
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002013struct randfd *allocate_rfd(int family)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002014{
2015 static int finger = 0;
2016 int i;
2017
2018 /* limit the number of sockets we have open to avoid starvation of
2019 (eg) TFTP. Once we have a reasonable number, randomness should be OK */
2020
2021 for (i = 0; i < RANDOM_SOCKS; i++)
Simon Kelley9009d742008-11-14 20:04:27 +00002022 if (daemon->randomsocks[i].refcount == 0)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002023 {
Simon Kelley9009d742008-11-14 20:04:27 +00002024 if ((daemon->randomsocks[i].fd = random_sock(family)) == -1)
2025 break;
2026
Simon Kelley1a6bca82008-07-11 11:11:42 +01002027 daemon->randomsocks[i].refcount = 1;
2028 daemon->randomsocks[i].family = family;
2029 return &daemon->randomsocks[i];
2030 }
2031
Simon Kelley9009d742008-11-14 20:04:27 +00002032 /* No free ones or cannot get new socket, grab an existing one */
Simon Kelley1a6bca82008-07-11 11:11:42 +01002033 for (i = 0; i < RANDOM_SOCKS; i++)
2034 {
2035 int j = (i+finger) % RANDOM_SOCKS;
Simon Kelley9009d742008-11-14 20:04:27 +00002036 if (daemon->randomsocks[j].refcount != 0 &&
2037 daemon->randomsocks[j].family == family &&
2038 daemon->randomsocks[j].refcount != 0xffff)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002039 {
2040 finger = j;
2041 daemon->randomsocks[j].refcount++;
2042 return &daemon->randomsocks[j];
2043 }
2044 }
2045
2046 return NULL; /* doom */
2047}
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002048
2049void free_rfd(struct randfd *rfd)
2050{
2051 if (rfd && --(rfd->refcount) == 0)
2052 close(rfd->fd);
2053}
2054
Simon Kelley1a6bca82008-07-11 11:11:42 +01002055static void free_frec(struct frec *f)
2056{
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002057 free_rfd(f->rfd4);
Simon Kelley1a6bca82008-07-11 11:11:42 +01002058 f->rfd4 = NULL;
2059 f->sentto = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00002060 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01002061
2062#ifdef HAVE_IPV6
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002063 free_rfd(f->rfd6);
Simon Kelley1a6bca82008-07-11 11:11:42 +01002064 f->rfd6 = NULL;
2065#endif
Simon Kelley3a237152013-12-12 12:15:50 +00002066
2067#ifdef HAVE_DNSSEC
2068 if (f->stash)
Simon Kelley0fc2f312014-01-08 10:26:58 +00002069 {
2070 blockdata_free(f->stash);
2071 f->stash = NULL;
2072 }
Simon Kelley3a237152013-12-12 12:15:50 +00002073
Simon Kelley97e618a2015-01-07 21:55:43 +00002074 if (f->orig_domain)
2075 {
2076 blockdata_free(f->orig_domain);
2077 f->orig_domain = NULL;
2078 }
2079
Simon Kelley3a237152013-12-12 12:15:50 +00002080 /* 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 Kelley16972692006-10-16 20:04:18 +01002088/* if wait==NULL return a free or older than TIMEOUT record.
2089 else return *wait zero if one available, or *wait is delay to
Simon Kelley1a6bca82008-07-11 11:11:42 +01002090 when the oldest in-use record will expire. Impose an absolute
Simon Kelley3a237152013-12-12 12:15:50 +00002091 limit of 4*TIMEOUT before we wipe things (for random sockets).
2092 If force is set, always return a result, even if we have
2093 to allocate above the limit. */
2094struct frec *get_new_frec(time_t now, int *wait, int force)
Simon Kelley16972692006-10-16 20:04:18 +01002095{
Simon Kelley1a6bca82008-07-11 11:11:42 +01002096 struct frec *f, *oldest, *target;
Simon Kelley16972692006-10-16 20:04:18 +01002097 int count;
2098
2099 if (wait)
2100 *wait = 0;
2101
Simon Kelley1a6bca82008-07-11 11:11:42 +01002102 for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++)
Simon Kelley832af0b2007-01-21 20:01:28 +00002103 if (!f->sentto)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002104 target = f;
2105 else
Simon Kelley16972692006-10-16 20:04:18 +01002106 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002107 if (difftime(now, f->time) >= 4*TIMEOUT)
2108 {
2109 free_frec(f);
2110 target = f;
2111 }
2112
2113 if (!oldest || difftime(f->time, oldest->time) <= 0)
2114 oldest = f;
Simon Kelley16972692006-10-16 20:04:18 +01002115 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01002116
2117 if (target)
2118 {
2119 target->time = now;
2120 return target;
2121 }
Simon Kelley16972692006-10-16 20:04:18 +01002122
2123 /* can't find empty one, use oldest if there is one
2124 and it's older than timeout */
2125 if (oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT)
2126 {
2127 /* keep stuff for twice timeout if we can by allocating a new
2128 record instead */
2129 if (difftime(now, oldest->time) < 2*TIMEOUT &&
2130 count <= daemon->ftabsize &&
2131 (f = allocate_frec(now)))
2132 return f;
2133
2134 if (!wait)
2135 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002136 free_frec(oldest);
Simon Kelley16972692006-10-16 20:04:18 +01002137 oldest->time = now;
2138 }
2139 return oldest;
2140 }
2141
2142 /* none available, calculate time 'till oldest record expires */
Simon Kelley3a237152013-12-12 12:15:50 +00002143 if (!force && count > daemon->ftabsize)
Simon Kelley16972692006-10-16 20:04:18 +01002144 {
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002145 static time_t last_log = 0;
2146
Simon Kelley16972692006-10-16 20:04:18 +01002147 if (oldest && wait)
2148 *wait = oldest->time + (time_t)TIMEOUT - now;
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002149
2150 if ((int)difftime(now, last_log) > 5)
2151 {
2152 last_log = now;
2153 my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries reached (max: %d)"), daemon->ftabsize);
2154 }
2155
Simon Kelley16972692006-10-16 20:04:18 +01002156 return NULL;
2157 }
2158
2159 if (!(f = allocate_frec(now)) && wait)
2160 /* wait one second on malloc failure */
2161 *wait = 1;
2162
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002163 return f; /* OK if malloc fails and this is NULL */
2164}
2165
Simon Kelley832af0b2007-01-21 20:01:28 +00002166/* crc is all-ones if not known. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002167static struct frec *lookup_frec(unsigned short id, void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002168{
2169 struct frec *f;
2170
Simon Kelley1a6bca82008-07-11 11:11:42 +01002171 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002172 if (f->sentto && f->new_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002173 (!hash || memcmp(hash, f->hash, HASH_SIZE) == 0))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002174 return f;
2175
2176 return NULL;
2177}
2178
2179static struct frec *lookup_frec_by_sender(unsigned short id,
Simon Kelleyfd9fa482004-10-21 20:24:00 +01002180 union mysockaddr *addr,
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002181 void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002182{
Simon Kelleyfeba5c12004-07-27 20:28:58 +01002183 struct frec *f;
2184
Simon Kelley1a6bca82008-07-11 11:11:42 +01002185 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002186 if (f->sentto &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002187 f->orig_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002188 memcmp(hash, f->hash, HASH_SIZE) == 0 &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002189 sockaddr_isequal(&f->source, addr))
2190 return f;
2191
2192 return NULL;
2193}
Simon Kelley47a95162014-07-08 22:22:02 +01002194
2195/* Send query packet again, if we can. */
2196void resend_query()
2197{
2198 if (daemon->srv_save)
2199 {
2200 int fd;
2201
2202 if (daemon->srv_save->sfd)
2203 fd = daemon->srv_save->sfd->fd;
2204 else if (daemon->rfd_save && daemon->rfd_save->refcount != 0)
2205 fd = daemon->rfd_save->fd;
2206 else
2207 return;
2208
2209 while(sendto(fd, daemon->packet, daemon->packet_len, 0,
2210 &daemon->srv_save->addr.sa, sa_len(&daemon->srv_save->addr)) == -1 && retry_send());
2211 }
2212}
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002213
Simon Kelley849a8352006-06-09 21:02:31 +01002214/* A server record is going away, remove references to it */
Simon Kelley5aabfc72007-08-29 11:24:47 +01002215void server_gone(struct server *server)
Simon Kelley849a8352006-06-09 21:02:31 +01002216{
2217 struct frec *f;
2218
Simon Kelley1a6bca82008-07-11 11:11:42 +01002219 for (f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002220 if (f->sentto && f->sentto == server)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002221 free_frec(f);
Simon Kelley849a8352006-06-09 21:02:31 +01002222
2223 if (daemon->last_server == server)
2224 daemon->last_server = NULL;
2225
2226 if (daemon->srv_save == server)
2227 daemon->srv_save = NULL;
2228}
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002229
Simon Kelley316e2732010-01-22 20:16:09 +00002230/* return unique random ids. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002231static unsigned short get_id(void)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002232{
2233 unsigned short ret = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +00002234
Simon Kelley316e2732010-01-22 20:16:09 +00002235 do
Simon Kelley832af0b2007-01-21 20:01:28 +00002236 ret = rand16();
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002237 while (lookup_frec(ret, NULL));
Simon Kelley832af0b2007-01-21 20:01:28 +00002238
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002239 return ret;
2240}
2241
2242
2243
2244
2245