blob: 941f80d78901a592ff1ce6e3b7e335270c543f45 [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);
25static struct randfd *allocate_rfd(int family);
Simon Kelley9e4abcb2004-01-22 19:47:41 +000026
Simon Kelley00a5b5d2014-02-28 18:10:55 +000027#ifdef HAVE_DNSSEC
28static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n,
29 int class, char *name, char *keyname, struct server *server, int *keycount);
30static int do_check_sign(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname, int class);
31static int send_check_sign(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname);
32#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)) &&
430 !(start->flags & SERV_LITERAL_ADDRESS))
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 Kelley36717ee2004-09-20 19:20:58 +0100591 return n;
592
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
Simon Kelley572b41e2011-02-18 18:11:18 +0000728 if ((RCODE(header) == SERVFAIL || RCODE(header) == REFUSED) &&
Simon Kelley28866e92011-02-14 20:19:14 +0000729 !option_bool(OPT_ORDER) &&
Simon Kelley1a6bca82008-07-11 11:11:42 +0100730 forward->forwardall == 0)
731 /* for broken servers, attempt to send to another one. */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000732 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100733 unsigned char *pheader;
734 size_t plen;
735 int is_sign;
Simon Kelley832af0b2007-01-21 20:01:28 +0000736
Simon Kelley1a6bca82008-07-11 11:11:42 +0100737 /* recreate query from reply */
738 pheader = find_pseudoheader(header, (size_t)n, &plen, NULL, &is_sign);
739 if (!is_sign)
Simon Kelley832af0b2007-01-21 20:01:28 +0000740 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100741 header->ancount = htons(0);
742 header->nscount = htons(0);
743 header->arcount = htons(0);
744 if ((nn = resize_packet(header, (size_t)n, pheader, plen)))
745 {
Simon Kelley572b41e2011-02-18 18:11:18 +0000746 header->hb3 &= ~(HB3_QR | HB3_TC);
Simon Kelley613ad152014-02-25 23:02:28 +0000747 forward_query(-1, NULL, NULL, 0, header, nn, now, forward, 0, 0);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100748 return;
749 }
750 }
751 }
Simon Kelley3a237152013-12-12 12:15:50 +0000752
753 server = forward->sentto;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100754
755 if ((forward->sentto->flags & SERV_TYPE) == 0)
756 {
Simon Kelley51967f92014-03-25 21:07:00 +0000757 if (RCODE(header) == REFUSED)
Simon Kelley1a6bca82008-07-11 11:11:42 +0100758 server = NULL;
759 else
760 {
761 struct server *last_server;
Simon Kelley832af0b2007-01-21 20:01:28 +0000762
Simon Kelley1a6bca82008-07-11 11:11:42 +0100763 /* find good server by address if possible, otherwise assume the last one we sent to */
764 for (last_server = daemon->servers; last_server; last_server = last_server->next)
765 if (!(last_server->flags & (SERV_LITERAL_ADDRESS | SERV_HAS_DOMAIN | SERV_FOR_NODOTS | SERV_NO_ADDR)) &&
766 sockaddr_isequal(&last_server->addr, &serveraddr))
767 {
768 server = last_server;
769 break;
770 }
771 }
Simon Kelley28866e92011-02-14 20:19:14 +0000772 if (!option_bool(OPT_ALL_SERVERS))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100773 daemon->last_server = server;
774 }
Simon Kelley3a237152013-12-12 12:15:50 +0000775
Simon Kelley1a6bca82008-07-11 11:11:42 +0100776 /* If the answer is an error, keep the forward record in place in case
777 we get a good reply from another server. Kill it when we've
778 had replies from all to avoid filling the forwarding table when
779 everything is broken */
Simon Kelley51967f92014-03-25 21:07:00 +0000780 if (forward->forwardall == 0 || --forward->forwardall == 1 || RCODE(header) != SERVFAIL)
Simon Kelley1a6bca82008-07-11 11:11:42 +0100781 {
Simon Kelley3a237152013-12-12 12:15:50 +0000782 int check_rebind = 0, no_cache_dnssec = 0, cache_secure = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100783
Simon Kelley3a237152013-12-12 12:15:50 +0000784 if (option_bool(OPT_NO_REBIND))
785 check_rebind = !(forward->flags & FREC_NOREBIND);
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100786
Simon Kelley3a237152013-12-12 12:15:50 +0000787 /* Don't cache replies where DNSSEC validation was turned off, either
788 the upstream server told us so, or the original query specified it. */
789 if ((header->hb4 & HB4_CD) || (forward->flags & FREC_CHECKING_DISABLED))
790 no_cache_dnssec = 1;
791
792#ifdef HAVE_DNSSEC
Simon Kelley51967f92014-03-25 21:07:00 +0000793 if (server && option_bool(OPT_DNSSEC_VALID) && !(forward->flags & FREC_CHECKING_DISABLED))
Simon Kelley3a237152013-12-12 12:15:50 +0000794 {
Simon Kelley9d633042013-12-13 15:36:55 +0000795 int status;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000796
797 /* We've had a reply already, which we're validating. Ignore this duplicate */
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000798 if (forward->blocking_query)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000799 return;
Simon Kelley9d633042013-12-13 15:36:55 +0000800
Simon Kelley871417d2014-01-08 11:22:32 +0000801 if (header->hb3 & HB3_TC)
802 {
803 /* Truncated answer can't be validated.
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000804 If this is an answer to a DNSSEC-generated query, we still
805 need to get the client to retry over TCP, so return
806 an answer with the TC bit set, even if the actual answer fits.
807 */
808 status = STAT_TRUNCATED;
Simon Kelley871417d2014-01-08 11:22:32 +0000809 }
810 else if (forward->flags & FREC_DNSKEY_QUERY)
Simon Kelley8d718cb2014-02-03 16:27:37 +0000811 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelleyc3e0b9b2013-12-31 13:50:39 +0000812 else if (forward->flags & FREC_DS_QUERY)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000813 {
814 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
815 if (status == STAT_NO_DS)
816 status = STAT_INSECURE;
817 }
818 else if (forward->flags & FREC_CHECK_NOSIGN)
819 status = do_check_sign(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley9d633042013-12-13 15:36:55 +0000820 else
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000821 {
822 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL);
823 if (status == STAT_NO_SIG)
824 {
825 if (option_bool(OPT_DNSSEC_NO_SIGN))
826 status = send_check_sign(now, header, n, daemon->namebuff, daemon->keyname);
827 else
828 status = STAT_INSECURE;
829 }
830 }
Simon Kelley3a237152013-12-12 12:15:50 +0000831 /* Can't validate, as we're missing key data. Put this
832 answer aside, whilst we get that. */
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000833 if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY)
Simon Kelley3a237152013-12-12 12:15:50 +0000834 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000835 struct frec *new, *orig;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000836
Simon Kelley7fa836e2014-02-10 20:11:24 +0000837 /* Free any saved query */
838 if (forward->stash)
839 blockdata_free(forward->stash);
840
841 /* Now save reply pending receipt of key data */
842 if (!(forward->stash = blockdata_alloc((char *)header, n)))
843 return;
844 forward->stash_len = n;
845
846 anotherkey:
847 /* Find the original query that started it all.... */
848 for (orig = forward; orig->dependent; orig = orig->dependent);
849
850 if (--orig->work_counter == 0 || !(new = get_new_frec(now, NULL, 1)))
851 status = STAT_INSECURE;
852 else
Simon Kelley3a237152013-12-12 12:15:50 +0000853 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000854 int fd;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000855 struct frec *next = new->next;
856 *new = *forward; /* copy everything, then overwrite */
857 new->next = next;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000858 new->blocking_query = NULL;
Simon Kelley8a8bbad2014-03-27 22:02:17 +0000859 new->sentto = server;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000860 new->rfd4 = NULL;
861#ifdef HAVE_IPV6
862 new->rfd6 = NULL;
863#endif
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000864 new->flags &= ~(FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_CHECK_NOSIGN);
Simon Kelley9d633042013-12-13 15:36:55 +0000865
Simon Kelley7fa836e2014-02-10 20:11:24 +0000866 new->dependent = forward; /* to find query awaiting new one. */
867 forward->blocking_query = new; /* for garbage cleaning */
868 /* validate routines leave name of required record in daemon->keyname */
869 if (status == STAT_NEED_KEY)
870 {
871 new->flags |= FREC_DNSKEY_QUERY;
872 nn = dnssec_generate_query(header, ((char *) header) + daemon->packet_buff_sz,
873 daemon->keyname, forward->class, T_DNSKEY, &server->addr);
874 }
875 else
876 {
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000877 if (status == STAT_NEED_DS_NEG)
878 new->flags |= FREC_CHECK_NOSIGN;
879 else
880 new->flags |= FREC_DS_QUERY;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000881 nn = dnssec_generate_query(header,((char *) header) + daemon->packet_buff_sz,
882 daemon->keyname, forward->class, T_DS, &server->addr);
883 }
884 if ((hash = hash_questions(header, nn, daemon->namebuff)))
885 memcpy(new->hash, hash, HASH_SIZE);
886 new->new_id = get_id();
887 header->id = htons(new->new_id);
888 /* Save query for retransmission */
889 new->stash = blockdata_alloc((char *)header, nn);
890 new->stash_len = nn;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000891
Simon Kelley7fa836e2014-02-10 20:11:24 +0000892 /* Don't resend this. */
893 daemon->srv_save = NULL;
894
895 if (server->sfd)
896 fd = server->sfd->fd;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000897 else
Simon Kelley3a237152013-12-12 12:15:50 +0000898 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000899 fd = -1;
Simon Kelley3a237152013-12-12 12:15:50 +0000900#ifdef HAVE_IPV6
Simon Kelley7fa836e2014-02-10 20:11:24 +0000901 if (server->addr.sa.sa_family == AF_INET6)
Simon Kelleyf1668d22014-01-08 16:53:27 +0000902 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000903 if (new->rfd6 || (new->rfd6 = allocate_rfd(AF_INET6)))
904 fd = new->rfd6->fd;
905 }
906 else
907#endif
908 {
909 if (new->rfd4 || (new->rfd4 = allocate_rfd(AF_INET)))
910 fd = new->rfd4->fd;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000911 }
Simon Kelley3a237152013-12-12 12:15:50 +0000912 }
Simon Kelley7fa836e2014-02-10 20:11:24 +0000913
914 if (fd != -1)
915 {
916 while (sendto(fd, (char *)header, nn, 0, &server->addr.sa, sa_len(&server->addr)) == -1 && retry_send());
917 server->queries++;
918 }
919
920 return;
Simon Kelley3a237152013-12-12 12:15:50 +0000921 }
Simon Kelley3a237152013-12-12 12:15:50 +0000922 }
923
924 /* Ok, we reached far enough up the chain-of-trust that we can validate something.
925 Now wind back down, pulling back answers which wouldn't previously validate
Simon Kelley7fa836e2014-02-10 20:11:24 +0000926 and validate them with the new data. Note that if an answer needs multiple
927 keys to validate, we may find another key is needed, in which case we set off
928 down another branch of the tree. Once we get to the original answer
929 (FREC_DNSSEC_QUERY not set) and it validates, return it to the original requestor. */
Simon Kelley0744ca62014-01-25 16:40:15 +0000930 while (forward->dependent)
Simon Kelley3a237152013-12-12 12:15:50 +0000931 {
Simon Kelley0744ca62014-01-25 16:40:15 +0000932 struct frec *prev = forward->dependent;
933 free_frec(forward);
934 forward = prev;
935 forward->blocking_query = NULL; /* already gone */
936 blockdata_retrieve(forward->stash, forward->stash_len, (void *)header);
937 n = forward->stash_len;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000938
Simon Kelley0fc2f312014-01-08 10:26:58 +0000939 if (status == STAT_SECURE)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000940 {
Simon Kelley0744ca62014-01-25 16:40:15 +0000941 if (forward->flags & FREC_DNSKEY_QUERY)
942 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
943 else if (forward->flags & FREC_DS_QUERY)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000944 {
945 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
946 if (status == STAT_NO_DS)
947 status = STAT_INSECURE;
948 }
949 else if (forward->flags & FREC_CHECK_NOSIGN)
950 status = do_check_sign(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley0744ca62014-01-25 16:40:15 +0000951 else
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000952 {
953 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL);
954 if (status == STAT_NO_SIG)
955 {
956 if (option_bool(OPT_DNSSEC_NO_SIGN))
957 status = send_check_sign(now, header, n, daemon->namebuff, daemon->keyname);
958 else
959 status = STAT_INSECURE;
960 }
961 }
962
963 if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +0000964 goto anotherkey;
Simon Kelley3a237152013-12-12 12:15:50 +0000965 }
966 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000967
968 if (status == STAT_TRUNCATED)
Simon Kelley0744ca62014-01-25 16:40:15 +0000969 header->hb3 |= HB3_TC;
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000970 else
Simon Kelley7fa836e2014-02-10 20:11:24 +0000971 {
972 char *result;
973
974 if (forward->work_counter == 0)
975 result = "ABANDONED";
976 else
977 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
978
979 log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result);
980 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000981
Simon Kelley0fc2f312014-01-08 10:26:58 +0000982 no_cache_dnssec = 0;
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000983
Simon Kelley3a237152013-12-12 12:15:50 +0000984 if (status == STAT_SECURE)
985 cache_secure = 1;
Simon Kelley3a237152013-12-12 12:15:50 +0000986 else if (status == STAT_BOGUS)
987 no_cache_dnssec = 1;
988 }
Simon Kelley83349b82014-02-10 21:02:01 +0000989#endif
990
991 /* restore CD bit to the value in the query */
992 if (forward->flags & FREC_CHECKING_DISABLED)
993 header->hb4 |= HB4_CD;
994 else
995 header->hb4 &= ~HB4_CD;
Simon Kelley3a237152013-12-12 12:15:50 +0000996
997 if ((nn = process_reply(header, now, server, (size_t)n, check_rebind, no_cache_dnssec, cache_secure,
Simon Kelley613ad152014-02-25 23:02:28 +0000998 forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION,
999 forward->flags & FREC_ADDED_PHEADER, forward->flags & FREC_HAS_SUBNET, &forward->source)))
Simon Kelley832af0b2007-01-21 20:01:28 +00001000 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01001001 header->id = htons(forward->orig_id);
Simon Kelley572b41e2011-02-18 18:11:18 +00001002 header->hb4 |= HB4_RA; /* recursion if available */
Simon Kelley54dd3932012-06-20 11:23:38 +01001003 send_from(forward->fd, option_bool(OPT_NOWILD) || option_bool (OPT_CLEVERBIND), daemon->packet, nn,
Simon Kelley50303b12012-04-04 22:13:17 +01001004 &forward->source, &forward->dest, forward->iface);
Simon Kelley832af0b2007-01-21 20:01:28 +00001005 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01001006 free_frec(forward); /* cancel */
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001007 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001008}
Simon Kelley44a2a312004-03-10 20:04:35 +00001009
Simon Kelley1a6bca82008-07-11 11:11:42 +01001010
Simon Kelley5aabfc72007-08-29 11:24:47 +01001011void receive_query(struct listener *listen, time_t now)
Simon Kelley44a2a312004-03-10 20:04:35 +00001012{
Simon Kelley572b41e2011-02-18 18:11:18 +00001013 struct dns_header *header = (struct dns_header *)daemon->packet;
Simon Kelley44a2a312004-03-10 20:04:35 +00001014 union mysockaddr source_addr;
Simon Kelleyc1bb8502004-08-11 18:40:17 +01001015 unsigned short type;
Simon Kelley44a2a312004-03-10 20:04:35 +00001016 struct all_addr dst_addr;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001017 struct in_addr netmask, dst_addr_4;
Simon Kelleycdeda282006-03-16 20:16:06 +00001018 size_t m;
1019 ssize_t n;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001020 int if_index = 0, auth_dns = 0;
1021#ifdef HAVE_AUTH
1022 int local_auth = 0;
1023#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001024 struct iovec iov[1];
1025 struct msghdr msg;
1026 struct cmsghdr *cmptr;
Simon Kelley44a2a312004-03-10 20:04:35 +00001027 union {
1028 struct cmsghdr align; /* this ensures alignment */
1029#ifdef HAVE_IPV6
1030 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
1031#endif
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001032#if defined(HAVE_LINUX_NETWORK)
Simon Kelley44a2a312004-03-10 20:04:35 +00001033 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
Simon Kelley824af852008-02-12 20:43:05 +00001034#elif defined(IP_RECVDSTADDR) && defined(HAVE_SOLARIS_NETWORK)
1035 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1036 CMSG_SPACE(sizeof(unsigned int))];
Simon Kelley44a2a312004-03-10 20:04:35 +00001037#elif defined(IP_RECVDSTADDR)
1038 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1039 CMSG_SPACE(sizeof(struct sockaddr_dl))];
1040#endif
1041 } control_u;
Simon Kelley2329bef2013-12-03 13:41:16 +00001042#ifdef HAVE_IPV6
1043 /* Can always get recvd interface for IPv6 */
1044 int check_dst = !option_bool(OPT_NOWILD) || listen->family == AF_INET6;
1045#else
1046 int check_dst = !option_bool(OPT_NOWILD);
1047#endif
1048
Simon Kelleycdeda282006-03-16 20:16:06 +00001049 /* packet buffer overwritten */
1050 daemon->srv_save = NULL;
1051
Simon Kelley4f7b3042012-11-28 21:27:02 +00001052 dst_addr_4.s_addr = 0;
1053 netmask.s_addr = 0;
1054
Simon Kelley7e5664b2013-04-05 16:57:41 +01001055 if (option_bool(OPT_NOWILD) && listen->iface)
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001056 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001057 auth_dns = listen->iface->dns_auth;
1058
1059 if (listen->family == AF_INET)
1060 {
1061 dst_addr_4 = listen->iface->addr.in.sin_addr;
1062 netmask = listen->iface->netmask;
1063 }
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001064 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001065
Simon Kelley3be34542004-09-11 19:12:13 +01001066 iov[0].iov_base = daemon->packet;
1067 iov[0].iov_len = daemon->edns_pktsz;
Simon Kelley44a2a312004-03-10 20:04:35 +00001068
1069 msg.msg_control = control_u.control;
1070 msg.msg_controllen = sizeof(control_u);
1071 msg.msg_flags = 0;
1072 msg.msg_name = &source_addr;
1073 msg.msg_namelen = sizeof(source_addr);
1074 msg.msg_iov = iov;
1075 msg.msg_iovlen = 1;
1076
Simon Kelleyde379512004-06-22 20:23:33 +01001077 if ((n = recvmsg(listen->fd, &msg, 0)) == -1)
Simon Kelley3be34542004-09-11 19:12:13 +01001078 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001079
Simon Kelley572b41e2011-02-18 18:11:18 +00001080 if (n < (int)sizeof(struct dns_header) ||
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001081 (msg.msg_flags & MSG_TRUNC) ||
Simon Kelley572b41e2011-02-18 18:11:18 +00001082 (header->hb3 & HB3_QR))
Simon Kelley3be34542004-09-11 19:12:13 +01001083 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001084
Simon Kelley26128d22004-11-14 16:43:54 +00001085 source_addr.sa.sa_family = listen->family;
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001086
1087 if (listen->family == AF_INET)
1088 {
1089 /* Source-port == 0 is an error, we can't send back to that.
1090 http://www.ietf.org/mail-archive/web/dnsop/current/msg11441.html */
1091 if (source_addr.in.sin_port == 0)
1092 return;
1093 }
Simon Kelley26128d22004-11-14 16:43:54 +00001094#ifdef HAVE_IPV6
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001095 else
1096 {
1097 /* Source-port == 0 is an error, we can't send back to that. */
1098 if (source_addr.in6.sin6_port == 0)
1099 return;
1100 source_addr.in6.sin6_flowinfo = 0;
1101 }
Simon Kelley26128d22004-11-14 16:43:54 +00001102#endif
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001103
Simon Kelleyc8a80482014-03-05 14:29:54 +00001104 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1105 if (option_bool(OPT_LOCAL_SERVICE))
1106 {
1107 struct addrlist *addr;
1108#ifdef HAVE_IPV6
1109 if (listen->family == AF_INET6)
1110 {
1111 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1112 if ((addr->flags & ADDRLIST_IPV6) &&
1113 is_same_net6(&addr->addr.addr.addr6, &source_addr.in6.sin6_addr, addr->prefixlen))
1114 break;
1115 }
1116 else
1117#endif
1118 {
1119 struct in_addr netmask;
1120 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1121 {
1122 netmask.s_addr = 0xffffffff << (32 - addr->prefixlen);
1123 if (!(addr->flags & ADDRLIST_IPV6) &&
1124 is_same_net(addr->addr.addr.addr4, source_addr.in.sin_addr, netmask))
1125 break;
1126 }
1127 }
1128 if (!addr)
1129 {
Simon Kelley0c8584e2014-03-12 20:12:56 +00001130 static int warned = 0;
1131 if (!warned)
1132 {
1133 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1134 warned = 1;
1135 }
Simon Kelleyc8a80482014-03-05 14:29:54 +00001136 return;
1137 }
1138 }
1139
Simon Kelley2329bef2013-12-03 13:41:16 +00001140 if (check_dst)
Simon Kelley44a2a312004-03-10 20:04:35 +00001141 {
Simon Kelley8a911cc2004-03-16 18:35:52 +00001142 struct ifreq ifr;
1143
Simon Kelley26128d22004-11-14 16:43:54 +00001144 if (msg.msg_controllen < sizeof(struct cmsghdr))
1145 return;
1146
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001147#if defined(HAVE_LINUX_NETWORK)
Simon Kelley26128d22004-11-14 16:43:54 +00001148 if (listen->family == AF_INET)
1149 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001150 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
Simon Kelley26128d22004-11-14 16:43:54 +00001151 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001152 union {
1153 unsigned char *c;
1154 struct in_pktinfo *p;
1155 } p;
1156 p.c = CMSG_DATA(cmptr);
1157 dst_addr_4 = dst_addr.addr.addr4 = p.p->ipi_spec_dst;
1158 if_index = p.p->ipi_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001159 }
1160#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
1161 if (listen->family == AF_INET)
1162 {
1163 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001164 {
1165 union {
1166 unsigned char *c;
1167 unsigned int *i;
1168 struct in_addr *a;
1169#ifndef HAVE_SOLARIS_NETWORK
1170 struct sockaddr_dl *s;
Simon Kelley824af852008-02-12 20:43:05 +00001171#endif
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001172 } p;
1173 p.c = CMSG_DATA(cmptr);
1174 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
1175 dst_addr_4 = dst_addr.addr.addr4 = *(p.a);
1176 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
1177#ifdef HAVE_SOLARIS_NETWORK
1178 if_index = *(p.i);
1179#else
1180 if_index = p.s->sdl_index;
1181#endif
1182 }
Simon Kelley26128d22004-11-14 16:43:54 +00001183 }
1184#endif
1185
1186#ifdef HAVE_IPV6
1187 if (listen->family == AF_INET6)
1188 {
1189 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001190 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
Simon Kelley26128d22004-11-14 16:43:54 +00001191 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001192 union {
1193 unsigned char *c;
1194 struct in6_pktinfo *p;
1195 } p;
1196 p.c = CMSG_DATA(cmptr);
1197
1198 dst_addr.addr.addr6 = p.p->ipi6_addr;
1199 if_index = p.p->ipi6_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001200 }
1201 }
1202#endif
1203
1204 /* enforce available interface configuration */
1205
Simon Kelleye25db1f2013-01-29 22:10:26 +00001206 if (!indextoname(listen->fd, if_index, ifr.ifr_name))
Simon Kelley832af0b2007-01-21 20:01:28 +00001207 return;
1208
Simon Kelleye25db1f2013-01-29 22:10:26 +00001209 if (!iface_check(listen->family, &dst_addr, ifr.ifr_name, &auth_dns))
1210 {
1211 if (!option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001212 enumerate_interfaces(0);
Simon Kelley3f2873d2013-05-14 11:28:47 +01001213 if (!loopback_exception(listen->fd, listen->family, &dst_addr, ifr.ifr_name) &&
1214 !label_exception(if_index, listen->family, &dst_addr))
Simon Kelleye25db1f2013-01-29 22:10:26 +00001215 return;
1216 }
1217
Simon Kelley552af8b2012-02-29 20:10:31 +00001218 if (listen->family == AF_INET && option_bool(OPT_LOCALISE))
1219 {
1220 struct irec *iface;
1221
1222 /* get the netmask of the interface whch has the address we were sent to.
1223 This is no neccessarily the interface we arrived on. */
1224
1225 for (iface = daemon->interfaces; iface; iface = iface->next)
1226 if (iface->addr.sa.sa_family == AF_INET &&
1227 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1228 break;
1229
1230 /* interface may be new */
Simon Kelleye25db1f2013-01-29 22:10:26 +00001231 if (!iface && !option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001232 enumerate_interfaces(0);
Simon Kelley552af8b2012-02-29 20:10:31 +00001233
1234 for (iface = daemon->interfaces; iface; iface = iface->next)
1235 if (iface->addr.sa.sa_family == AF_INET &&
1236 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1237 break;
1238
1239 /* If we failed, abandon localisation */
1240 if (iface)
1241 netmask = iface->netmask;
1242 else
1243 dst_addr_4.s_addr = 0;
1244 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001245 }
1246
Simon Kelleycdeda282006-03-16 20:16:06 +00001247 if (extract_request(header, (size_t)n, daemon->namebuff, &type))
Simon Kelley44a2a312004-03-10 20:04:35 +00001248 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001249#ifdef HAVE_AUTH
1250 struct auth_zone *zone;
1251#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001252 char *types = querystr(auth_dns ? "auth" : "query", type);
1253
Simon Kelley44a2a312004-03-10 20:04:35 +00001254 if (listen->family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01001255 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001256 (struct all_addr *)&source_addr.in.sin_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001257#ifdef HAVE_IPV6
1258 else
Simon Kelley3be34542004-09-11 19:12:13 +01001259 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001260 (struct all_addr *)&source_addr.in6.sin6_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001261#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001262
Simon Kelley4820dce2012-12-18 18:30:30 +00001263#ifdef HAVE_AUTH
Simon Kelleyb485ed92013-10-18 22:00:39 +01001264 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley6008bdb2013-10-21 21:47:03 +01001265 if (!auth_dns)
1266 for (zone = daemon->auth_zones; zone; zone = zone->next)
1267 if (in_zone(zone, daemon->namebuff, NULL))
1268 {
1269 auth_dns = 1;
1270 local_auth = 1;
1271 break;
1272 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001273#endif
1274 }
1275
1276#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001277 if (auth_dns)
Simon Kelley824af852008-02-12 20:43:05 +00001278 {
Simon Kelley60b68062014-01-08 12:10:28 +00001279 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 +00001280 if (m >= 1)
Simon Kelleyb485ed92013-10-18 22:00:39 +01001281 {
1282 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1283 (char *)header, m, &source_addr, &dst_addr, if_index);
1284 daemon->auth_answer++;
1285 }
Simon Kelley824af852008-02-12 20:43:05 +00001286 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001287 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001288#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001289 {
Simon Kelley613ad152014-02-25 23:02:28 +00001290 int ad_reqd, do_bit;
Simon Kelley60b68062014-01-08 12:10:28 +00001291 m = answer_request(header, ((char *) header) + daemon->packet_buff_sz, (size_t)n,
Simon Kelley613ad152014-02-25 23:02:28 +00001292 dst_addr_4, netmask, now, &ad_reqd, &do_bit);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001293
1294 if (m >= 1)
1295 {
1296 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1297 (char *)header, m, &source_addr, &dst_addr, if_index);
1298 daemon->local_answer++;
1299 }
1300 else if (forward_query(listen->fd, &source_addr, &dst_addr, if_index,
Simon Kelley613ad152014-02-25 23:02:28 +00001301 header, (size_t)n, now, NULL, ad_reqd, do_bit))
Simon Kelley4f7b3042012-11-28 21:27:02 +00001302 daemon->queries_forwarded++;
1303 else
1304 daemon->local_answer++;
1305 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001306}
1307
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001308#ifdef HAVE_DNSSEC
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001309
1310/* UDP: we've got an unsigned answer, return STAT_INSECURE if we can prove there's no DS
1311 and therefore the answer shouldn't be signed, or STAT_BOGUS if it should be, or
1312 STAT_NEED_DS_NEG and keyname if we need to do the query. */
1313static int send_check_sign(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname)
1314{
1315 struct crec *crecp;
1316 char *name_start = name;
1317 int status = dnssec_chase_cname(now, header, plen, name, keyname);
1318
1319 if (status != STAT_INSECURE)
1320 return status;
1321
1322 while (1)
1323 {
1324 crecp = cache_find_by_name(NULL, name_start, now, F_DS);
1325
1326 if (crecp && (crecp->flags & F_DNSSECOK))
1327 return (crecp->flags & F_NEG) ? STAT_INSECURE : STAT_BOGUS;
1328
1329 if (crecp && (crecp->flags & F_NEG) && (name_start = strchr(name_start, '.')))
1330 {
1331 name_start++; /* chop a label off and try again */
1332 continue;
1333 }
1334
Simon Kelley4e1fe442014-03-26 12:24:19 +00001335 /* Reached the root */
1336 if (!name_start)
1337 return STAT_BOGUS;
1338
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001339 strcpy(keyname, name_start);
1340 return STAT_NEED_DS_NEG;
1341 }
1342}
1343
1344/* Got answer to DS query from send_check_sign, check for proven non-existence, or make the next DS query to try. */
1345static int do_check_sign(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname, int class)
1346
1347{
1348 char *name_start;
1349 unsigned char *p;
Simon Kelley4872aa72014-04-26 22:13:31 +01001350 int status;
1351
1352 /* In this case only, a SERVFAIL reply allows us to continue up the tree, looking for a
1353 suitable NSEC reply to DS queries. */
1354 if (RCODE(header) != SERVFAIL)
1355 {
1356 status = dnssec_validate_ds(now, header, plen, name, keyname, class);
1357
1358 if (status != STAT_INSECURE)
1359 {
1360 if (status == STAT_NO_DS)
1361 status = STAT_INSECURE;
1362 return status;
1363 }
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001364 }
1365
1366 p = (unsigned char *)(header+1);
1367
1368 if (extract_name(header, plen, &p, name, 1, 4) &&
1369 (name_start = strchr(name, '.')))
1370 {
1371 name_start++; /* chop a label off and try again */
1372 strcpy(keyname, name_start);
1373 return STAT_NEED_DS_NEG;
1374 }
1375
1376 return STAT_BOGUS;
1377}
1378
1379/* Move toward the root, until we find a signed non-existance of a DS, in which case
1380 an unsigned answer is OK, or we find a signed DS, in which case there should be
1381 a signature, and the answer is BOGUS */
1382static int tcp_check_for_unsigned_zone(time_t now, struct dns_header *header, size_t plen, int class, char *name,
1383 char *keyname, struct server *server, int *keycount)
1384{
1385 size_t m;
1386 unsigned char *packet, *payload;
1387 u16 *length;
1388 unsigned char *p = (unsigned char *)(header+1);
1389 int status;
1390 char *name_start = name;
1391
1392 /* Get first insecure entry in CNAME chain */
1393 status = tcp_key_recurse(now, STAT_CHASE_CNAME, header, plen, class, name, keyname, server, keycount);
1394 if (status == STAT_BOGUS)
1395 return STAT_BOGUS;
1396
1397 if (!(packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16))))
1398 return STAT_BOGUS;
1399
1400 payload = &packet[2];
1401 header = (struct dns_header *)payload;
1402 length = (u16 *)packet;
1403
1404 while (1)
1405 {
1406 unsigned char *newhash, hash[HASH_SIZE];
1407 unsigned char c1, c2;
1408 struct crec *crecp = cache_find_by_name(NULL, name_start, now, F_DS);
1409
1410 if (--(*keycount) == 0)
Tomas Hozzafc2833f2014-03-25 20:43:21 +00001411 {
1412 free(packet);
1413 return STAT_BOGUS;
1414 }
1415
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001416 if (crecp && (crecp->flags & F_DNSSECOK))
1417 {
1418 free(packet);
1419 return (crecp->flags & F_NEG) ? STAT_INSECURE : STAT_BOGUS;
1420 }
1421
1422 /* If we have cached insecurely that a DS doesn't exist,
1423 ise that is a hit for where to start looking for the secure one */
1424 if (crecp && (crecp->flags & F_NEG) && (name_start = strchr(name_start, '.')))
1425 {
1426 name_start++; /* chop a label off and try again */
1427 continue;
1428 }
1429
Simon Kelley4e1fe442014-03-26 12:24:19 +00001430 /* reached the root */
1431 if (!name_start)
1432 {
1433 free(packet);
1434 return STAT_BOGUS;
1435 }
1436
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001437 m = dnssec_generate_query(header, ((char *) header) + 65536, name_start, class, T_DS, &server->addr);
1438
1439 /* We rely on the question section coming back unchanged, ensure it is with the hash. */
1440 if ((newhash = hash_questions(header, (unsigned int)m, name)))
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001441 {
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001442 memcpy(hash, newhash, HASH_SIZE);
1443
1444 *length = htons(m);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001445
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001446 if (read_write(server->tcpfd, packet, m + sizeof(u16), 0) &&
1447 read_write(server->tcpfd, &c1, 1, 1) &&
1448 read_write(server->tcpfd, &c2, 1, 1) &&
1449 read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001450 {
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001451 m = (c1 << 8) | c2;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001452
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001453 newhash = hash_questions(header, (unsigned int)m, name);
1454 if (newhash && memcmp(hash, newhash, HASH_SIZE) == 0)
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001455 {
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001456 /* Note this trashes all three name workspaces */
1457 status = tcp_key_recurse(now, STAT_NEED_DS_NEG, header, m, class, name, keyname, server, keycount);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001458
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001459 /* We've found a DS which proves the bit of the DNS where the
1460 original query is, is unsigned, so the answer is OK,
1461 if unvalidated. */
1462 if (status == STAT_NO_DS)
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001463 {
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001464 free(packet);
1465 return STAT_INSECURE;
1466 }
1467
1468 /* No DS, not got to DNSSEC-land yet, go up. */
1469 if (status == STAT_INSECURE)
1470 {
1471 p = (unsigned char *)(header+1);
1472
1473 if (extract_name(header, plen, &p, name, 1, 4) &&
1474 (name_start = strchr(name, '.')))
1475 {
1476 name_start++; /* chop a label off and try again */
1477 continue;
1478 }
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001479 }
1480 }
1481 }
1482 }
1483
1484 free(packet);
1485
1486 return STAT_BOGUS;
1487 }
1488}
1489
Simon Kelley7fa836e2014-02-10 20:11:24 +00001490static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n,
1491 int class, char *name, char *keyname, struct server *server, int *keycount)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001492{
1493 /* Recurse up the key heirarchy */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001494 int new_status;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001495
Simon Kelley7fa836e2014-02-10 20:11:24 +00001496 /* limit the amount of work we do, to avoid cycling forever on loops in the DNS */
1497 if (--(*keycount) == 0)
1498 return STAT_INSECURE;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001499
Simon Kelley7fa836e2014-02-10 20:11:24 +00001500 if (status == STAT_NEED_KEY)
1501 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001502 else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG)
1503 {
1504 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
1505 if (status == STAT_NEED_DS && new_status == STAT_NO_DS)
1506 new_status = STAT_INSECURE;
1507 }
1508 else if (status == STAT_CHASE_CNAME)
1509 new_status = dnssec_chase_cname(now, header, n, name, keyname);
1510 else
1511 {
1512 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL);
1513
1514 if (new_status == STAT_NO_SIG)
1515 {
1516 if (option_bool(OPT_DNSSEC_NO_SIGN))
1517 new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount);
1518 else
1519 new_status = STAT_INSECURE;
1520 }
1521 }
1522
Simon Kelley7fa836e2014-02-10 20:11:24 +00001523 /* Can't validate because we need a key/DS whose name now in keyname.
1524 Make query for same, and recurse to validate */
1525 if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001526 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001527 size_t m;
1528 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1529 unsigned char *payload = &packet[2];
1530 struct dns_header *new_header = (struct dns_header *)payload;
1531 u16 *length = (u16 *)packet;
1532 unsigned char c1, c2;
1533
1534 if (!packet)
1535 return STAT_INSECURE;
1536
1537 another_tcp_key:
1538 m = dnssec_generate_query(new_header, ((char *) new_header) + 65536, keyname, class,
1539 new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS, &server->addr);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001540
Simon Kelley7fa836e2014-02-10 20:11:24 +00001541 *length = htons(m);
1542
1543 if (!read_write(server->tcpfd, packet, m + sizeof(u16), 0) ||
1544 !read_write(server->tcpfd, &c1, 1, 1) ||
1545 !read_write(server->tcpfd, &c2, 1, 1) ||
1546 !read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
1547 new_status = STAT_INSECURE;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001548 else
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001549 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001550 m = (c1 << 8) | c2;
1551
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001552 new_status = tcp_key_recurse(now, new_status, new_header, m, class, name, keyname, server, keycount);
1553
1554 if (new_status == STAT_SECURE)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001555 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001556 /* Reached a validated record, now try again at this level.
1557 Note that we may get ANOTHER NEED_* if an answer needs more than one key.
1558 If so, go round again. */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001559
Simon Kelley7fa836e2014-02-10 20:11:24 +00001560 if (status == STAT_NEED_KEY)
1561 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001562 else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG)
1563 {
1564 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
1565 if (status == STAT_NEED_DS && new_status == STAT_NO_DS)
1566 new_status = STAT_INSECURE; /* Validated no DS */
1567 }
1568 else if (status == STAT_CHASE_CNAME)
1569 new_status = dnssec_chase_cname(now, header, n, name, keyname);
1570 else
1571 {
1572 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL);
1573
1574 if (new_status == STAT_NO_SIG)
1575 {
1576 if (option_bool(OPT_DNSSEC_NO_SIGN))
1577 new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount);
1578 else
1579 new_status = STAT_INSECURE;
1580 }
1581 }
1582
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001583 if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +00001584 goto another_tcp_key;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001585 }
1586 }
Simon Kelley7fa836e2014-02-10 20:11:24 +00001587
1588 free(packet);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001589 }
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001590 return new_status;
1591}
1592#endif
1593
1594
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001595/* The daemon forks before calling this: it should deal with one connection,
1596 blocking as neccessary, and then return. Note, need to be a bit careful
1597 about resources for debug mode, when the fork is suppressed: that's
1598 done by the caller. */
Simon Kelley5aabfc72007-08-29 11:24:47 +01001599unsigned char *tcp_request(int confd, time_t now,
Simon Kelley4f7b3042012-11-28 21:27:02 +00001600 union mysockaddr *local_addr, struct in_addr netmask, int auth_dns)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001601{
Simon Kelley28866e92011-02-14 20:19:14 +00001602 size_t size = 0;
1603 int norebind = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001604#ifdef HAVE_AUTH
Simon Kelley19b16892013-10-20 10:19:39 +01001605 int local_auth = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001606#endif
Simon Kelley613ad152014-02-25 23:02:28 +00001607 int checking_disabled, ad_question, do_bit, added_pheader = 0;
1608 int check_subnet, no_cache_dnssec = 0, cache_secure = 0;
Simon Kelleycdeda282006-03-16 20:16:06 +00001609 size_t m;
Simon Kelleyee86ce62012-12-07 11:54:46 +00001610 unsigned short qtype;
1611 unsigned int gotname;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001612 unsigned char c1, c2;
Simon Kelley4b5ea122013-04-22 10:18:26 +01001613 /* Max TCP packet + slop + size */
1614 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1615 unsigned char *payload = &packet[2];
1616 /* largest field in header is 16-bits, so this is still sufficiently aligned */
1617 struct dns_header *header = (struct dns_header *)payload;
1618 u16 *length = (u16 *)packet;
Simon Kelley3be34542004-09-11 19:12:13 +01001619 struct server *last_server;
Simon Kelley7de060b2011-08-26 17:24:52 +01001620 struct in_addr dst_addr_4;
1621 union mysockaddr peer_addr;
1622 socklen_t peer_len = sizeof(union mysockaddr);
Simon Kelley3be34542004-09-11 19:12:13 +01001623
Simon Kelley7de060b2011-08-26 17:24:52 +01001624 if (getpeername(confd, (struct sockaddr *)&peer_addr, &peer_len) == -1)
1625 return packet;
Simon Kelleyc8a80482014-03-05 14:29:54 +00001626
1627 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1628 if (option_bool(OPT_LOCAL_SERVICE))
1629 {
1630 struct addrlist *addr;
1631#ifdef HAVE_IPV6
1632 if (peer_addr.sa.sa_family == AF_INET6)
1633 {
1634 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1635 if ((addr->flags & ADDRLIST_IPV6) &&
1636 is_same_net6(&addr->addr.addr.addr6, &peer_addr.in6.sin6_addr, addr->prefixlen))
1637 break;
1638 }
1639 else
1640#endif
1641 {
1642 struct in_addr netmask;
1643 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1644 {
1645 netmask.s_addr = 0xffffffff << (32 - addr->prefixlen);
1646 if (!(addr->flags & ADDRLIST_IPV6) &&
1647 is_same_net(addr->addr.addr.addr4, peer_addr.in.sin_addr, netmask))
1648 break;
1649 }
1650 }
1651 if (!addr)
1652 {
1653 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1654 return packet;
1655 }
1656 }
Simon Kelley7de060b2011-08-26 17:24:52 +01001657
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001658 while (1)
1659 {
1660 if (!packet ||
1661 !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) ||
1662 !(size = c1 << 8 | c2) ||
Simon Kelley4b5ea122013-04-22 10:18:26 +01001663 !read_write(confd, payload, size, 1))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001664 return packet;
1665
Simon Kelley572b41e2011-02-18 18:11:18 +00001666 if (size < (int)sizeof(struct dns_header))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001667 continue;
1668
Simon Kelleyed4c0762013-10-08 20:46:34 +01001669 check_subnet = 0;
1670
Simon Kelley28866e92011-02-14 20:19:14 +00001671 /* save state of "cd" flag in query */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001672 if ((checking_disabled = header->hb4 & HB4_CD))
1673 no_cache_dnssec = 1;
Simon Kelley28866e92011-02-14 20:19:14 +00001674
Simon Kelley3be34542004-09-11 19:12:13 +01001675 if ((gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001676 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001677#ifdef HAVE_AUTH
1678 struct auth_zone *zone;
1679#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001680 char *types = querystr(auth_dns ? "auth" : "query", qtype);
Simon Kelley7de060b2011-08-26 17:24:52 +01001681
1682 if (peer_addr.sa.sa_family == AF_INET)
1683 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
1684 (struct all_addr *)&peer_addr.in.sin_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001685#ifdef HAVE_IPV6
Simon Kelley7de060b2011-08-26 17:24:52 +01001686 else
1687 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
1688 (struct all_addr *)&peer_addr.in6.sin6_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001689#endif
Simon Kelleyb485ed92013-10-18 22:00:39 +01001690
1691#ifdef HAVE_AUTH
1692 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley6008bdb2013-10-21 21:47:03 +01001693 if (!auth_dns)
1694 for (zone = daemon->auth_zones; zone; zone = zone->next)
1695 if (in_zone(zone, daemon->namebuff, NULL))
1696 {
1697 auth_dns = 1;
1698 local_auth = 1;
1699 break;
1700 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001701#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001702 }
1703
Simon Kelley7de060b2011-08-26 17:24:52 +01001704 if (local_addr->sa.sa_family == AF_INET)
1705 dst_addr_4 = local_addr->in.sin_addr;
1706 else
1707 dst_addr_4.s_addr = 0;
1708
Simon Kelley4820dce2012-12-18 18:30:30 +00001709#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001710 if (auth_dns)
Simon Kelley19b16892013-10-20 10:19:39 +01001711 m = answer_auth(header, ((char *) header) + 65536, (size_t)size, now, &peer_addr, local_auth);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001712 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001713#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001714 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001715 /* m > 0 if answered from cache */
1716 m = answer_request(header, ((char *) header) + 65536, (size_t)size,
Simon Kelley613ad152014-02-25 23:02:28 +00001717 dst_addr_4, netmask, now, &ad_question, &do_bit);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001718
Simon Kelley4f7b3042012-11-28 21:27:02 +00001719 /* Do this by steam now we're not in the select() loop */
1720 check_log_writer(NULL);
1721
1722 if (m == 0)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001723 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001724 unsigned int flags = 0;
1725 struct all_addr *addrp = NULL;
1726 int type = 0;
1727 char *domain = NULL;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001728
Simon Kelley4f7b3042012-11-28 21:27:02 +00001729 if (option_bool(OPT_ADD_MAC))
1730 size = add_mac(header, size, ((char *) header) + 65536, &peer_addr);
Simon Kelleyed4c0762013-10-08 20:46:34 +01001731
1732 if (option_bool(OPT_CLIENT_SUBNET))
1733 {
1734 size_t new = add_source_addr(header, size, ((char *) header) + 65536, &peer_addr);
1735 if (size != new)
1736 {
1737 size = new;
1738 check_subnet = 1;
1739 }
1740 }
1741
Simon Kelley4f7b3042012-11-28 21:27:02 +00001742 if (gotname)
1743 flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind);
1744
1745 if (type != 0 || option_bool(OPT_ORDER) || !daemon->last_server)
1746 last_server = daemon->servers;
1747 else
1748 last_server = daemon->last_server;
1749
1750 if (!flags && last_server)
1751 {
1752 struct server *firstsendto = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001753#ifdef HAVE_DNSSEC
Simon Kelley703c7ff2014-01-25 23:46:23 +00001754 unsigned char *newhash, hash[HASH_SIZE];
Simon Kelley63758382014-04-16 22:20:55 +01001755 if ((newhash = hash_questions(header, (unsigned int)size, daemon->namebuff)))
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001756 memcpy(hash, newhash, HASH_SIZE);
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001757 else
1758 memset(hash, 0, HASH_SIZE);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001759#else
Simon Kelley4f7b3042012-11-28 21:27:02 +00001760 unsigned int crc = questions_crc(header, (unsigned int)size, daemon->namebuff);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001761#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001762 /* Loop round available servers until we succeed in connecting to one.
1763 Note that this code subtley ensures that consecutive queries on this connection
1764 which can go to the same server, do so. */
1765 while (1)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001766 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001767 if (!firstsendto)
1768 firstsendto = last_server;
1769 else
1770 {
1771 if (!(last_server = last_server->next))
1772 last_server = daemon->servers;
1773
1774 if (last_server == firstsendto)
1775 break;
1776 }
1777
1778 /* server for wrong domain */
1779 if (type != (last_server->flags & SERV_TYPE) ||
1780 (type == SERV_HAS_DOMAIN && !hostname_isequal(domain, last_server->domain)))
Simon Kelley7de060b2011-08-26 17:24:52 +01001781 continue;
1782
Simon Kelley4f7b3042012-11-28 21:27:02 +00001783 if (last_server->tcpfd == -1)
1784 {
1785 if ((last_server->tcpfd = socket(last_server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1)
1786 continue;
1787
1788 if ((!local_bind(last_server->tcpfd, &last_server->source_addr, last_server->interface, 1) ||
1789 connect(last_server->tcpfd, &last_server->addr.sa, sa_len(&last_server->addr)) == -1))
1790 {
1791 close(last_server->tcpfd);
1792 last_server->tcpfd = -1;
1793 continue;
1794 }
1795
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001796#ifdef HAVE_DNSSEC
1797 if (option_bool(OPT_DNSSEC_VALID))
1798 {
Simon Kelley613ad152014-02-25 23:02:28 +00001799 size_t new_size = add_do_bit(header, size, ((char *) header) + 65536);
1800
Simon Kelley2ecd9bd2014-02-13 16:42:02 +00001801 /* For debugging, set Checking Disabled, otherwise, have the upstream check too,
1802 this allows it to select auth servers when one is returning bad data. */
1803 if (option_bool(OPT_DNSSEC_DEBUG))
1804 header->hb4 |= HB4_CD;
Simon Kelley613ad152014-02-25 23:02:28 +00001805
1806 if (size != new_size)
1807 added_pheader = 1;
1808
1809 size = new_size;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001810 }
1811#endif
1812
Simon Kelley4f7b3042012-11-28 21:27:02 +00001813#ifdef HAVE_CONNTRACK
1814 /* Copy connection mark of incoming query to outgoing connection. */
1815 if (option_bool(OPT_CONNTRACK))
1816 {
1817 unsigned int mark;
1818 struct all_addr local;
1819#ifdef HAVE_IPV6
1820 if (local_addr->sa.sa_family == AF_INET6)
1821 local.addr.addr6 = local_addr->in6.sin6_addr;
1822 else
1823#endif
1824 local.addr.addr4 = local_addr->in.sin_addr;
1825
1826 if (get_incoming_mark(&peer_addr, &local, 1, &mark))
1827 setsockopt(last_server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
1828 }
1829#endif
1830 }
1831
Simon Kelley4b5ea122013-04-22 10:18:26 +01001832 *length = htons(size);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001833
Simon Kelley4b5ea122013-04-22 10:18:26 +01001834 if (!read_write(last_server->tcpfd, packet, size + sizeof(u16), 0) ||
Simon Kelley4f7b3042012-11-28 21:27:02 +00001835 !read_write(last_server->tcpfd, &c1, 1, 1) ||
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001836 !read_write(last_server->tcpfd, &c2, 1, 1) ||
1837 !read_write(last_server->tcpfd, payload, (c1 << 8) | c2, 1))
Simon Kelley7de060b2011-08-26 17:24:52 +01001838 {
1839 close(last_server->tcpfd);
1840 last_server->tcpfd = -1;
1841 continue;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001842 }
1843
1844 m = (c1 << 8) | c2;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001845
1846 if (!gotname)
1847 strcpy(daemon->namebuff, "query");
1848 if (last_server->addr.sa.sa_family == AF_INET)
1849 log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff,
1850 (struct all_addr *)&last_server->addr.in.sin_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001851#ifdef HAVE_IPV6
Simon Kelley4f7b3042012-11-28 21:27:02 +00001852 else
1853 log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff,
1854 (struct all_addr *)&last_server->addr.in6.sin6_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001855#endif
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001856
1857#ifdef HAVE_DNSSEC
1858 if (option_bool(OPT_DNSSEC_VALID) && !checking_disabled)
1859 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001860 int keycount = DNSSEC_WORK; /* Limit to number of DNSSEC questions, to catch loops and avoid filling cache. */
1861 int status = tcp_key_recurse(now, STAT_TRUNCATED, header, m, 0, daemon->namebuff, daemon->keyname, last_server, &keycount);
1862 char *result;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001863
Simon Kelley7fa836e2014-02-10 20:11:24 +00001864 if (keycount == 0)
1865 result = "ABANDONED";
1866 else
1867 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
1868
1869 log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result);
1870
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001871 if (status == STAT_BOGUS)
1872 no_cache_dnssec = 1;
Simon Kelley7fa836e2014-02-10 20:11:24 +00001873
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001874 if (status == STAT_SECURE)
1875 cache_secure = 1;
1876 }
1877#endif
1878
1879 /* restore CD bit to the value in the query */
1880 if (checking_disabled)
1881 header->hb4 |= HB4_CD;
1882 else
1883 header->hb4 &= ~HB4_CD;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001884
1885 /* There's no point in updating the cache, since this process will exit and
1886 lose the information after a few queries. We make this call for the alias and
1887 bogus-nxdomain side-effects. */
1888 /* If the crc of the question section doesn't match the crc we sent, then
1889 someone might be attempting to insert bogus values into the cache by
1890 sending replies containing questions and bogus answers. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001891#ifdef HAVE_DNSSEC
1892 newhash = hash_questions(header, (unsigned int)m, daemon->namebuff);
1893 if (!newhash || memcmp(hash, newhash, HASH_SIZE) != 0)
Simon Kelley703c7ff2014-01-25 23:46:23 +00001894 {
1895 m = 0;
1896 break;
1897 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001898#else
1899 if (crc != questions_crc(header, (unsigned int)m, daemon->namebuff))
Simon Kelley703c7ff2014-01-25 23:46:23 +00001900 {
1901 m = 0;
1902 break;
1903 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001904#endif
1905
1906 m = process_reply(header, now, last_server, (unsigned int)m,
1907 option_bool(OPT_NO_REBIND) && !norebind, no_cache_dnssec,
Simon Kelley613ad152014-02-25 23:02:28 +00001908 cache_secure, ad_question, do_bit, added_pheader, check_subnet, &peer_addr);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001909
1910 break;
1911 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001912 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001913
1914 /* In case of local answer or no connections made. */
1915 if (m == 0)
1916 m = setup_reply(header, (unsigned int)size, addrp, flags, daemon->local_ttl);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001917 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001918 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001919
Simon Kelley5aabfc72007-08-29 11:24:47 +01001920 check_log_writer(NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001921
Simon Kelley4b5ea122013-04-22 10:18:26 +01001922 *length = htons(m);
1923
1924 if (m == 0 || !read_write(confd, packet, m + sizeof(u16), 0))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001925 return packet;
1926 }
1927}
1928
Simon Kelley16972692006-10-16 20:04:18 +01001929static struct frec *allocate_frec(time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001930{
Simon Kelley16972692006-10-16 20:04:18 +01001931 struct frec *f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001932
Simon Kelley5aabfc72007-08-29 11:24:47 +01001933 if ((f = (struct frec *)whine_malloc(sizeof(struct frec))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001934 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01001935 f->next = daemon->frec_list;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001936 f->time = now;
Simon Kelley832af0b2007-01-21 20:01:28 +00001937 f->sentto = NULL;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001938 f->rfd4 = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00001939 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001940#ifdef HAVE_IPV6
1941 f->rfd6 = NULL;
1942#endif
Simon Kelley3a237152013-12-12 12:15:50 +00001943#ifdef HAVE_DNSSEC
Simon Kelley97bc7982014-01-31 10:19:52 +00001944 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00001945 f->blocking_query = NULL;
Simon Kelley4619d942014-01-16 19:53:06 +00001946 f->stash = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00001947#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01001948 daemon->frec_list = f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001949 }
Simon Kelley16972692006-10-16 20:04:18 +01001950
1951 return f;
1952}
1953
Simon Kelley1a6bca82008-07-11 11:11:42 +01001954static struct randfd *allocate_rfd(int family)
1955{
1956 static int finger = 0;
1957 int i;
1958
1959 /* limit the number of sockets we have open to avoid starvation of
1960 (eg) TFTP. Once we have a reasonable number, randomness should be OK */
1961
1962 for (i = 0; i < RANDOM_SOCKS; i++)
Simon Kelley9009d742008-11-14 20:04:27 +00001963 if (daemon->randomsocks[i].refcount == 0)
Simon Kelley1a6bca82008-07-11 11:11:42 +01001964 {
Simon Kelley9009d742008-11-14 20:04:27 +00001965 if ((daemon->randomsocks[i].fd = random_sock(family)) == -1)
1966 break;
1967
Simon Kelley1a6bca82008-07-11 11:11:42 +01001968 daemon->randomsocks[i].refcount = 1;
1969 daemon->randomsocks[i].family = family;
1970 return &daemon->randomsocks[i];
1971 }
1972
Simon Kelley9009d742008-11-14 20:04:27 +00001973 /* No free ones or cannot get new socket, grab an existing one */
Simon Kelley1a6bca82008-07-11 11:11:42 +01001974 for (i = 0; i < RANDOM_SOCKS; i++)
1975 {
1976 int j = (i+finger) % RANDOM_SOCKS;
Simon Kelley9009d742008-11-14 20:04:27 +00001977 if (daemon->randomsocks[j].refcount != 0 &&
1978 daemon->randomsocks[j].family == family &&
1979 daemon->randomsocks[j].refcount != 0xffff)
Simon Kelley1a6bca82008-07-11 11:11:42 +01001980 {
1981 finger = j;
1982 daemon->randomsocks[j].refcount++;
1983 return &daemon->randomsocks[j];
1984 }
1985 }
1986
1987 return NULL; /* doom */
1988}
Simon Kelley1a6bca82008-07-11 11:11:42 +01001989static void free_frec(struct frec *f)
1990{
1991 if (f->rfd4 && --(f->rfd4->refcount) == 0)
1992 close(f->rfd4->fd);
1993
1994 f->rfd4 = NULL;
1995 f->sentto = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00001996 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001997
1998#ifdef HAVE_IPV6
1999 if (f->rfd6 && --(f->rfd6->refcount) == 0)
2000 close(f->rfd6->fd);
2001
2002 f->rfd6 = NULL;
2003#endif
Simon Kelley3a237152013-12-12 12:15:50 +00002004
2005#ifdef HAVE_DNSSEC
2006 if (f->stash)
Simon Kelley0fc2f312014-01-08 10:26:58 +00002007 {
2008 blockdata_free(f->stash);
2009 f->stash = NULL;
2010 }
Simon Kelley3a237152013-12-12 12:15:50 +00002011
2012 /* Anything we're waiting on is pointless now, too */
2013 if (f->blocking_query)
2014 free_frec(f->blocking_query);
2015 f->blocking_query = NULL;
Simon Kelley39048ad2014-01-21 17:33:58 +00002016 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002017#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01002018}
2019
Simon Kelley16972692006-10-16 20:04:18 +01002020/* if wait==NULL return a free or older than TIMEOUT record.
2021 else return *wait zero if one available, or *wait is delay to
Simon Kelley1a6bca82008-07-11 11:11:42 +01002022 when the oldest in-use record will expire. Impose an absolute
Simon Kelley3a237152013-12-12 12:15:50 +00002023 limit of 4*TIMEOUT before we wipe things (for random sockets).
2024 If force is set, always return a result, even if we have
2025 to allocate above the limit. */
2026struct frec *get_new_frec(time_t now, int *wait, int force)
Simon Kelley16972692006-10-16 20:04:18 +01002027{
Simon Kelley1a6bca82008-07-11 11:11:42 +01002028 struct frec *f, *oldest, *target;
Simon Kelley16972692006-10-16 20:04:18 +01002029 int count;
2030
2031 if (wait)
2032 *wait = 0;
2033
Simon Kelley1a6bca82008-07-11 11:11:42 +01002034 for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++)
Simon Kelley832af0b2007-01-21 20:01:28 +00002035 if (!f->sentto)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002036 target = f;
2037 else
Simon Kelley16972692006-10-16 20:04:18 +01002038 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002039 if (difftime(now, f->time) >= 4*TIMEOUT)
2040 {
2041 free_frec(f);
2042 target = f;
2043 }
2044
2045 if (!oldest || difftime(f->time, oldest->time) <= 0)
2046 oldest = f;
Simon Kelley16972692006-10-16 20:04:18 +01002047 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01002048
2049 if (target)
2050 {
2051 target->time = now;
2052 return target;
2053 }
Simon Kelley16972692006-10-16 20:04:18 +01002054
2055 /* can't find empty one, use oldest if there is one
2056 and it's older than timeout */
2057 if (oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT)
2058 {
2059 /* keep stuff for twice timeout if we can by allocating a new
2060 record instead */
2061 if (difftime(now, oldest->time) < 2*TIMEOUT &&
2062 count <= daemon->ftabsize &&
2063 (f = allocate_frec(now)))
2064 return f;
2065
2066 if (!wait)
2067 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002068 free_frec(oldest);
Simon Kelley16972692006-10-16 20:04:18 +01002069 oldest->time = now;
2070 }
2071 return oldest;
2072 }
2073
2074 /* none available, calculate time 'till oldest record expires */
Simon Kelley3a237152013-12-12 12:15:50 +00002075 if (!force && count > daemon->ftabsize)
Simon Kelley16972692006-10-16 20:04:18 +01002076 {
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002077 static time_t last_log = 0;
2078
Simon Kelley16972692006-10-16 20:04:18 +01002079 if (oldest && wait)
2080 *wait = oldest->time + (time_t)TIMEOUT - now;
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002081
2082 if ((int)difftime(now, last_log) > 5)
2083 {
2084 last_log = now;
2085 my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries reached (max: %d)"), daemon->ftabsize);
2086 }
2087
Simon Kelley16972692006-10-16 20:04:18 +01002088 return NULL;
2089 }
2090
2091 if (!(f = allocate_frec(now)) && wait)
2092 /* wait one second on malloc failure */
2093 *wait = 1;
2094
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002095 return f; /* OK if malloc fails and this is NULL */
2096}
2097
Simon Kelley832af0b2007-01-21 20:01:28 +00002098/* crc is all-ones if not known. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002099static struct frec *lookup_frec(unsigned short id, void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002100{
2101 struct frec *f;
2102
Simon Kelley1a6bca82008-07-11 11:11:42 +01002103 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002104 if (f->sentto && f->new_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002105 (!hash || memcmp(hash, f->hash, HASH_SIZE) == 0))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002106 return f;
2107
2108 return NULL;
2109}
2110
2111static struct frec *lookup_frec_by_sender(unsigned short id,
Simon Kelleyfd9fa482004-10-21 20:24:00 +01002112 union mysockaddr *addr,
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002113 void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002114{
Simon Kelleyfeba5c12004-07-27 20:28:58 +01002115 struct frec *f;
2116
Simon Kelley1a6bca82008-07-11 11:11:42 +01002117 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002118 if (f->sentto &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002119 f->orig_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002120 memcmp(hash, f->hash, HASH_SIZE) == 0 &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002121 sockaddr_isequal(&f->source, addr))
2122 return f;
2123
2124 return NULL;
2125}
2126
Simon Kelley849a8352006-06-09 21:02:31 +01002127/* A server record is going away, remove references to it */
Simon Kelley5aabfc72007-08-29 11:24:47 +01002128void server_gone(struct server *server)
Simon Kelley849a8352006-06-09 21:02:31 +01002129{
2130 struct frec *f;
2131
Simon Kelley1a6bca82008-07-11 11:11:42 +01002132 for (f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002133 if (f->sentto && f->sentto == server)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002134 free_frec(f);
Simon Kelley849a8352006-06-09 21:02:31 +01002135
2136 if (daemon->last_server == server)
2137 daemon->last_server = NULL;
2138
2139 if (daemon->srv_save == server)
2140 daemon->srv_save = NULL;
2141}
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002142
Simon Kelley316e2732010-01-22 20:16:09 +00002143/* return unique random ids. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002144static unsigned short get_id(void)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002145{
2146 unsigned short ret = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +00002147
Simon Kelley316e2732010-01-22 20:16:09 +00002148 do
Simon Kelley832af0b2007-01-21 20:01:28 +00002149 ret = rand16();
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002150 while (lookup_frec(ret, NULL));
Simon Kelley832af0b2007-01-21 20:01:28 +00002151
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002152 return ret;
2153}
2154
2155
2156
2157
2158