blob: 3f4ec62c639716d7c810b116bb823add7f43c427 [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
538 /* Similar algorithm to search_servers. */
539 struct ipsets *ipset_pos;
540 unsigned int namelen = strlen(daemon->namebuff);
541 unsigned int matchlen = 0;
542 for (ipset_pos = daemon->ipsets; ipset_pos; ipset_pos = ipset_pos->next)
543 {
544 unsigned int domainlen = strlen(ipset_pos->domain);
545 char *matchstart = daemon->namebuff + namelen - domainlen;
546 if (namelen >= domainlen && hostname_isequal(matchstart, ipset_pos->domain) &&
547 (domainlen == 0 || namelen == domainlen || *(matchstart - 1) == '.' ) &&
Simon Kelley6c0cb852014-01-17 14:40:46 +0000548 domainlen >= matchlen)
549 {
550 matchlen = domainlen;
551 sets = ipset_pos->sets;
552 }
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000553 }
554#endif
555
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100556 /* If upstream is advertising a larger UDP packet size
Simon Kelley9009d742008-11-14 20:04:27 +0000557 than we allow, trim it so that we don't get overlarge
558 requests for the client. We can't do this for signed packets. */
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100559
Simon Kelleyed4c0762013-10-08 20:46:34 +0100560 if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100561 {
Simon Kelley83349b82014-02-10 21:02:01 +0000562 unsigned short udpsz;
563 unsigned char *psave = sizep;
564
565 GETSHORT(udpsz, sizep);
566
567 if (!is_sign && udpsz > daemon->edns_pktsz)
568 PUTSHORT(daemon->edns_pktsz, psave);
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100569
Simon Kelleyed4c0762013-10-08 20:46:34 +0100570 if (check_subnet && !check_source(header, plen, pheader, query_source))
571 {
572 my_syslog(LOG_WARNING, _("discarding DNS reply: subnet option mismatch"));
573 return 0;
574 }
Simon Kelley613ad152014-02-25 23:02:28 +0000575
576 if (added_pheader)
577 {
578 pheader = 0;
579 header->arcount = htons(0);
580 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100581 }
Simon Kelley83349b82014-02-10 21:02:01 +0000582
Simon Kelley28866e92011-02-14 20:19:14 +0000583 /* RFC 4035 sect 4.6 para 3 */
Giovanni Bajo237724c2012-04-05 02:46:52 +0200584 if (!is_sign && !option_bool(OPT_DNSSEC_PROXY))
Simon Kelley795501b2014-01-08 18:11:55 +0000585 header->hb4 &= ~HB4_AD;
Simon Kelley3a237152013-12-12 12:15:50 +0000586
Simon Kelley572b41e2011-02-18 18:11:18 +0000587 if (OPCODE(header) != QUERY || (RCODE(header) != NOERROR && RCODE(header) != NXDOMAIN))
Simon Kelley36717ee2004-09-20 19:20:58 +0100588 return n;
589
Simon Kelley0a852542005-03-23 20:28:59 +0000590 /* Complain loudly if the upstream server is non-recursive. */
Simon Kelley572b41e2011-02-18 18:11:18 +0000591 if (!(header->hb4 & HB4_RA) && RCODE(header) == NOERROR && ntohs(header->ancount) == 0 &&
Simon Kelley0a852542005-03-23 20:28:59 +0000592 server && !(server->flags & SERV_WARNED_RECURSIVE))
593 {
Simon Kelley3d8df262005-08-29 12:19:27 +0100594 prettyprint_addr(&server->addr, daemon->namebuff);
Simon Kelleyf2621c72007-04-29 19:47:21 +0100595 my_syslog(LOG_WARNING, _("nameserver %s refused to do a recursive query"), daemon->namebuff);
Simon Kelley28866e92011-02-14 20:19:14 +0000596 if (!option_bool(OPT_LOG))
Simon Kelley0a852542005-03-23 20:28:59 +0000597 server->flags |= SERV_WARNED_RECURSIVE;
598 }
Giovanni Bajoe292e932012-04-22 14:32:02 +0200599
Simon Kelley572b41e2011-02-18 18:11:18 +0000600 if (daemon->bogus_addr && RCODE(header) != NXDOMAIN &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100601 check_for_bogus_wildcard(header, n, daemon->namebuff, daemon->bogus_addr, now))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100602 {
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100603 munged = 1;
Simon Kelley572b41e2011-02-18 18:11:18 +0000604 SET_RCODE(header, NXDOMAIN);
605 header->hb3 &= ~HB3_AA;
Simon Kelley6938f342014-01-26 22:47:39 +0000606 cache_secure = 0;
Simon Kelley36717ee2004-09-20 19:20:58 +0100607 }
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100608 else
Simon Kelley36717ee2004-09-20 19:20:58 +0100609 {
Simon Kelley6938f342014-01-26 22:47:39 +0000610 int doctored = 0;
611
Simon Kelley572b41e2011-02-18 18:11:18 +0000612 if (RCODE(header) == NXDOMAIN &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100613 extract_request(header, n, daemon->namebuff, NULL) &&
Simon Kelley5aabfc72007-08-29 11:24:47 +0100614 check_for_local_domain(daemon->namebuff, now))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100615 {
Simon Kelley36717ee2004-09-20 19:20:58 +0100616 /* if we forwarded a query for a locally known name (because it was for
617 an unknown type) and the answer is NXDOMAIN, convert that to NODATA,
618 since we know that the domain exists, even if upstream doesn't */
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100619 munged = 1;
Simon Kelley572b41e2011-02-18 18:11:18 +0000620 header->hb3 |= HB3_AA;
621 SET_RCODE(header, NOERROR);
Simon Kelley6938f342014-01-26 22:47:39 +0000622 cache_secure = 0;
Simon Kelley36717ee2004-09-20 19:20:58 +0100623 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000624
Simon Kelley6938f342014-01-26 22:47:39 +0000625 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 +0000626 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100627 my_syslog(LOG_WARNING, _("possible DNS-rebind attack detected: %s"), daemon->namebuff);
Simon Kelley824af852008-02-12 20:43:05 +0000628 munged = 1;
Simon Kelley6938f342014-01-26 22:47:39 +0000629 cache_secure = 0;
Simon Kelley824af852008-02-12 20:43:05 +0000630 }
Simon Kelley6938f342014-01-26 22:47:39 +0000631
632 if (doctored)
633 cache_secure = 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100634 }
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100635
Simon Kelleya25720a2014-01-14 23:13:55 +0000636#ifdef HAVE_DNSSEC
637 if (no_cache && !(header->hb4 & HB4_CD))
638 {
Simon Kelley7d23a662014-01-26 09:33:21 +0000639 if (!option_bool(OPT_DNSSEC_DEBUG))
Simon Kelleya25720a2014-01-14 23:13:55 +0000640 {
641 /* Bogus reply, turn into SERVFAIL */
642 SET_RCODE(header, SERVFAIL);
643 munged = 1;
644 }
645 }
Simon Kelley6938f342014-01-26 22:47:39 +0000646
647 if (option_bool(OPT_DNSSEC_VALID))
648 header->hb4 &= ~HB4_AD;
649
Simon Kelley83349b82014-02-10 21:02:01 +0000650 if (!(header->hb4 & HB4_CD) && ad_reqd && cache_secure)
Simon Kelley6938f342014-01-26 22:47:39 +0000651 header->hb4 |= HB4_AD;
Simon Kelley613ad152014-02-25 23:02:28 +0000652
653 /* If the requestor didn't set the DO bit, don't return DNSSEC info. */
654 if (!do_bit)
655 n = filter_rrsigs(header, n);
Simon Kelleya25720a2014-01-14 23:13:55 +0000656#endif
657
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100658 /* do this after extract_addresses. Ensure NODATA reply and remove
659 nameserver info. */
660
661 if (munged)
662 {
663 header->ancount = htons(0);
664 header->nscount = htons(0);
665 header->arcount = htons(0);
666 }
667
Simon Kelley36717ee2004-09-20 19:20:58 +0100668 /* the bogus-nxdomain stuff, doctor and NXDOMAIN->NODATA munging can all elide
669 sections of the packet. Find the new length here and put back pseudoheader
670 if it was removed. */
671 return resize_packet(header, n, pheader, plen);
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100672}
673
Simon Kelley3be34542004-09-11 19:12:13 +0100674/* sets new last_server */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100675void reply_query(int fd, int family, time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000676{
677 /* packet from peer server, extract data for cache, and send to
678 original requester */
Simon Kelley572b41e2011-02-18 18:11:18 +0000679 struct dns_header *header;
Simon Kelleyde379512004-06-22 20:23:33 +0100680 union mysockaddr serveraddr;
Simon Kelley832af0b2007-01-21 20:01:28 +0000681 struct frec *forward;
Simon Kelleyde379512004-06-22 20:23:33 +0100682 socklen_t addrlen = sizeof(serveraddr);
Simon Kelley60b68062014-01-08 12:10:28 +0000683 ssize_t n = recvfrom(fd, daemon->packet, daemon->packet_buff_sz, 0, &serveraddr.sa, &addrlen);
Simon Kelleycdeda282006-03-16 20:16:06 +0000684 size_t nn;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100685 struct server *server;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000686 void *hash;
687#ifndef HAVE_DNSSEC
688 unsigned int crc;
689#endif
690
Simon Kelleycdeda282006-03-16 20:16:06 +0000691 /* packet buffer overwritten */
692 daemon->srv_save = NULL;
Simon Kelley832af0b2007-01-21 20:01:28 +0000693
Simon Kelleyde379512004-06-22 20:23:33 +0100694 /* Determine the address of the server replying so that we can mark that as good */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100695 serveraddr.sa.sa_family = family;
Simon Kelleyde379512004-06-22 20:23:33 +0100696#ifdef HAVE_IPV6
697 if (serveraddr.sa.sa_family == AF_INET6)
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100698 serveraddr.in6.sin6_flowinfo = 0;
Simon Kelleyde379512004-06-22 20:23:33 +0100699#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000700
Simon Kelley1a6bca82008-07-11 11:11:42 +0100701 /* spoof check: answer must come from known server, */
702 for (server = daemon->servers; server; server = server->next)
703 if (!(server->flags & (SERV_LITERAL_ADDRESS | SERV_NO_ADDR)) &&
704 sockaddr_isequal(&server->addr, &serveraddr))
705 break;
706
Simon Kelley572b41e2011-02-18 18:11:18 +0000707 header = (struct dns_header *)daemon->packet;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000708
709#ifdef HAVE_DNSSEC
710 hash = hash_questions(header, n, daemon->namebuff);
711#else
712 hash = &crc;
713 crc = questions_crc(header, n, daemon->namebuff);
714#endif
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100715
Simon Kelley1a6bca82008-07-11 11:11:42 +0100716 if (!server ||
Simon Kelley572b41e2011-02-18 18:11:18 +0000717 n < (int)sizeof(struct dns_header) || !(header->hb3 & HB3_QR) ||
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000718 !(forward = lookup_frec(ntohs(header->id), hash)))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100719 return;
Simon Kelley3a237152013-12-12 12:15:50 +0000720
Simon Kelley572b41e2011-02-18 18:11:18 +0000721 if ((RCODE(header) == SERVFAIL || RCODE(header) == REFUSED) &&
Simon Kelley28866e92011-02-14 20:19:14 +0000722 !option_bool(OPT_ORDER) &&
Simon Kelley1a6bca82008-07-11 11:11:42 +0100723 forward->forwardall == 0)
724 /* for broken servers, attempt to send to another one. */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000725 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100726 unsigned char *pheader;
727 size_t plen;
728 int is_sign;
Simon Kelley832af0b2007-01-21 20:01:28 +0000729
Simon Kelley1a6bca82008-07-11 11:11:42 +0100730 /* recreate query from reply */
731 pheader = find_pseudoheader(header, (size_t)n, &plen, NULL, &is_sign);
732 if (!is_sign)
Simon Kelley832af0b2007-01-21 20:01:28 +0000733 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100734 header->ancount = htons(0);
735 header->nscount = htons(0);
736 header->arcount = htons(0);
737 if ((nn = resize_packet(header, (size_t)n, pheader, plen)))
738 {
Simon Kelley572b41e2011-02-18 18:11:18 +0000739 header->hb3 &= ~(HB3_QR | HB3_TC);
Simon Kelley613ad152014-02-25 23:02:28 +0000740 forward_query(-1, NULL, NULL, 0, header, nn, now, forward, 0, 0);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100741 return;
742 }
743 }
744 }
Simon Kelley3a237152013-12-12 12:15:50 +0000745
746 server = forward->sentto;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100747
748 if ((forward->sentto->flags & SERV_TYPE) == 0)
749 {
Simon Kelley572b41e2011-02-18 18:11:18 +0000750 if (RCODE(header) == SERVFAIL || RCODE(header) == REFUSED)
Simon Kelley1a6bca82008-07-11 11:11:42 +0100751 server = NULL;
752 else
753 {
754 struct server *last_server;
Simon Kelley832af0b2007-01-21 20:01:28 +0000755
Simon Kelley1a6bca82008-07-11 11:11:42 +0100756 /* find good server by address if possible, otherwise assume the last one we sent to */
757 for (last_server = daemon->servers; last_server; last_server = last_server->next)
758 if (!(last_server->flags & (SERV_LITERAL_ADDRESS | SERV_HAS_DOMAIN | SERV_FOR_NODOTS | SERV_NO_ADDR)) &&
759 sockaddr_isequal(&last_server->addr, &serveraddr))
760 {
761 server = last_server;
762 break;
763 }
764 }
Simon Kelley28866e92011-02-14 20:19:14 +0000765 if (!option_bool(OPT_ALL_SERVERS))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100766 daemon->last_server = server;
767 }
Simon Kelley3a237152013-12-12 12:15:50 +0000768
Simon Kelley1a6bca82008-07-11 11:11:42 +0100769 /* If the answer is an error, keep the forward record in place in case
770 we get a good reply from another server. Kill it when we've
771 had replies from all to avoid filling the forwarding table when
772 everything is broken */
773 if (forward->forwardall == 0 || --forward->forwardall == 1 ||
Simon Kelley572b41e2011-02-18 18:11:18 +0000774 (RCODE(header) != REFUSED && RCODE(header) != SERVFAIL))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100775 {
Simon Kelley3a237152013-12-12 12:15:50 +0000776 int check_rebind = 0, no_cache_dnssec = 0, cache_secure = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100777
Simon Kelley3a237152013-12-12 12:15:50 +0000778 if (option_bool(OPT_NO_REBIND))
779 check_rebind = !(forward->flags & FREC_NOREBIND);
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100780
Simon Kelley3a237152013-12-12 12:15:50 +0000781 /* Don't cache replies where DNSSEC validation was turned off, either
782 the upstream server told us so, or the original query specified it. */
783 if ((header->hb4 & HB4_CD) || (forward->flags & FREC_CHECKING_DISABLED))
784 no_cache_dnssec = 1;
785
786#ifdef HAVE_DNSSEC
787 if (option_bool(OPT_DNSSEC_VALID) && !(forward->flags & FREC_CHECKING_DISABLED))
788 {
Simon Kelley9d633042013-12-13 15:36:55 +0000789 int status;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000790
791 /* We've had a reply already, which we're validating. Ignore this duplicate */
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000792 if (forward->blocking_query)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000793 return;
Simon Kelley9d633042013-12-13 15:36:55 +0000794
Simon Kelley871417d2014-01-08 11:22:32 +0000795 if (header->hb3 & HB3_TC)
796 {
797 /* Truncated answer can't be validated.
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000798 If this is an answer to a DNSSEC-generated query, we still
799 need to get the client to retry over TCP, so return
800 an answer with the TC bit set, even if the actual answer fits.
801 */
802 status = STAT_TRUNCATED;
Simon Kelley871417d2014-01-08 11:22:32 +0000803 }
804 else if (forward->flags & FREC_DNSKEY_QUERY)
Simon Kelley8d718cb2014-02-03 16:27:37 +0000805 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelleyc3e0b9b2013-12-31 13:50:39 +0000806 else if (forward->flags & FREC_DS_QUERY)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000807 {
808 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
809 if (status == STAT_NO_DS)
810 status = STAT_INSECURE;
811 }
812 else if (forward->flags & FREC_CHECK_NOSIGN)
813 status = do_check_sign(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley9d633042013-12-13 15:36:55 +0000814 else
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000815 {
816 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL);
817 if (status == STAT_NO_SIG)
818 {
819 if (option_bool(OPT_DNSSEC_NO_SIGN))
820 status = send_check_sign(now, header, n, daemon->namebuff, daemon->keyname);
821 else
822 status = STAT_INSECURE;
823 }
824 }
Simon Kelley3a237152013-12-12 12:15:50 +0000825 /* Can't validate, as we're missing key data. Put this
826 answer aside, whilst we get that. */
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000827 if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY)
Simon Kelley3a237152013-12-12 12:15:50 +0000828 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000829 struct frec *new, *orig;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000830
Simon Kelley7fa836e2014-02-10 20:11:24 +0000831 /* Free any saved query */
832 if (forward->stash)
833 blockdata_free(forward->stash);
834
835 /* Now save reply pending receipt of key data */
836 if (!(forward->stash = blockdata_alloc((char *)header, n)))
837 return;
838 forward->stash_len = n;
839
840 anotherkey:
841 /* Find the original query that started it all.... */
842 for (orig = forward; orig->dependent; orig = orig->dependent);
843
844 if (--orig->work_counter == 0 || !(new = get_new_frec(now, NULL, 1)))
845 status = STAT_INSECURE;
846 else
Simon Kelley3a237152013-12-12 12:15:50 +0000847 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000848 int fd;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000849 struct frec *next = new->next;
850 *new = *forward; /* copy everything, then overwrite */
851 new->next = next;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000852 new->blocking_query = NULL;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000853 new->rfd4 = NULL;
854#ifdef HAVE_IPV6
855 new->rfd6 = NULL;
856#endif
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000857 new->flags &= ~(FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_CHECK_NOSIGN);
Simon Kelley9d633042013-12-13 15:36:55 +0000858
Simon Kelley7fa836e2014-02-10 20:11:24 +0000859 new->dependent = forward; /* to find query awaiting new one. */
860 forward->blocking_query = new; /* for garbage cleaning */
861 /* validate routines leave name of required record in daemon->keyname */
862 if (status == STAT_NEED_KEY)
863 {
864 new->flags |= FREC_DNSKEY_QUERY;
865 nn = dnssec_generate_query(header, ((char *) header) + daemon->packet_buff_sz,
866 daemon->keyname, forward->class, T_DNSKEY, &server->addr);
867 }
868 else
869 {
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000870 if (status == STAT_NEED_DS_NEG)
871 new->flags |= FREC_CHECK_NOSIGN;
872 else
873 new->flags |= FREC_DS_QUERY;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000874 nn = dnssec_generate_query(header,((char *) header) + daemon->packet_buff_sz,
875 daemon->keyname, forward->class, T_DS, &server->addr);
876 }
877 if ((hash = hash_questions(header, nn, daemon->namebuff)))
878 memcpy(new->hash, hash, HASH_SIZE);
879 new->new_id = get_id();
880 header->id = htons(new->new_id);
881 /* Save query for retransmission */
882 new->stash = blockdata_alloc((char *)header, nn);
883 new->stash_len = nn;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000884
Simon Kelley7fa836e2014-02-10 20:11:24 +0000885 /* Don't resend this. */
886 daemon->srv_save = NULL;
887
888 if (server->sfd)
889 fd = server->sfd->fd;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000890 else
Simon Kelley3a237152013-12-12 12:15:50 +0000891 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000892 fd = -1;
Simon Kelley3a237152013-12-12 12:15:50 +0000893#ifdef HAVE_IPV6
Simon Kelley7fa836e2014-02-10 20:11:24 +0000894 if (server->addr.sa.sa_family == AF_INET6)
Simon Kelleyf1668d22014-01-08 16:53:27 +0000895 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000896 if (new->rfd6 || (new->rfd6 = allocate_rfd(AF_INET6)))
897 fd = new->rfd6->fd;
898 }
899 else
900#endif
901 {
902 if (new->rfd4 || (new->rfd4 = allocate_rfd(AF_INET)))
903 fd = new->rfd4->fd;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000904 }
Simon Kelley3a237152013-12-12 12:15:50 +0000905 }
Simon Kelley7fa836e2014-02-10 20:11:24 +0000906
907 if (fd != -1)
908 {
909 while (sendto(fd, (char *)header, nn, 0, &server->addr.sa, sa_len(&server->addr)) == -1 && retry_send());
910 server->queries++;
911 }
912
913 return;
Simon Kelley3a237152013-12-12 12:15:50 +0000914 }
Simon Kelley3a237152013-12-12 12:15:50 +0000915 }
916
917 /* Ok, we reached far enough up the chain-of-trust that we can validate something.
918 Now wind back down, pulling back answers which wouldn't previously validate
Simon Kelley7fa836e2014-02-10 20:11:24 +0000919 and validate them with the new data. Note that if an answer needs multiple
920 keys to validate, we may find another key is needed, in which case we set off
921 down another branch of the tree. Once we get to the original answer
922 (FREC_DNSSEC_QUERY not set) and it validates, return it to the original requestor. */
Simon Kelley0744ca62014-01-25 16:40:15 +0000923 while (forward->dependent)
Simon Kelley3a237152013-12-12 12:15:50 +0000924 {
Simon Kelley0744ca62014-01-25 16:40:15 +0000925 struct frec *prev = forward->dependent;
926 free_frec(forward);
927 forward = prev;
928 forward->blocking_query = NULL; /* already gone */
929 blockdata_retrieve(forward->stash, forward->stash_len, (void *)header);
930 n = forward->stash_len;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000931
Simon Kelley0fc2f312014-01-08 10:26:58 +0000932 if (status == STAT_SECURE)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000933 {
Simon Kelley0744ca62014-01-25 16:40:15 +0000934 if (forward->flags & FREC_DNSKEY_QUERY)
935 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
936 else if (forward->flags & FREC_DS_QUERY)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000937 {
938 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
939 if (status == STAT_NO_DS)
940 status = STAT_INSECURE;
941 }
942 else if (forward->flags & FREC_CHECK_NOSIGN)
943 status = do_check_sign(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley0744ca62014-01-25 16:40:15 +0000944 else
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000945 {
946 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL);
947 if (status == STAT_NO_SIG)
948 {
949 if (option_bool(OPT_DNSSEC_NO_SIGN))
950 status = send_check_sign(now, header, n, daemon->namebuff, daemon->keyname);
951 else
952 status = STAT_INSECURE;
953 }
954 }
955
956 if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +0000957 goto anotherkey;
Simon Kelley3a237152013-12-12 12:15:50 +0000958 }
959 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000960
961 if (status == STAT_TRUNCATED)
Simon Kelley0744ca62014-01-25 16:40:15 +0000962 header->hb3 |= HB3_TC;
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000963 else
Simon Kelley7fa836e2014-02-10 20:11:24 +0000964 {
965 char *result;
966
967 if (forward->work_counter == 0)
968 result = "ABANDONED";
969 else
970 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
971
972 log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result);
973 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000974
Simon Kelley0fc2f312014-01-08 10:26:58 +0000975 no_cache_dnssec = 0;
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000976
Simon Kelley3a237152013-12-12 12:15:50 +0000977 if (status == STAT_SECURE)
978 cache_secure = 1;
Simon Kelley3a237152013-12-12 12:15:50 +0000979 else if (status == STAT_BOGUS)
980 no_cache_dnssec = 1;
981 }
Simon Kelley83349b82014-02-10 21:02:01 +0000982#endif
983
984 /* restore CD bit to the value in the query */
985 if (forward->flags & FREC_CHECKING_DISABLED)
986 header->hb4 |= HB4_CD;
987 else
988 header->hb4 &= ~HB4_CD;
Simon Kelley3a237152013-12-12 12:15:50 +0000989
990 if ((nn = process_reply(header, now, server, (size_t)n, check_rebind, no_cache_dnssec, cache_secure,
Simon Kelley613ad152014-02-25 23:02:28 +0000991 forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION,
992 forward->flags & FREC_ADDED_PHEADER, forward->flags & FREC_HAS_SUBNET, &forward->source)))
Simon Kelley832af0b2007-01-21 20:01:28 +0000993 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100994 header->id = htons(forward->orig_id);
Simon Kelley572b41e2011-02-18 18:11:18 +0000995 header->hb4 |= HB4_RA; /* recursion if available */
Simon Kelley54dd3932012-06-20 11:23:38 +0100996 send_from(forward->fd, option_bool(OPT_NOWILD) || option_bool (OPT_CLEVERBIND), daemon->packet, nn,
Simon Kelley50303b12012-04-04 22:13:17 +0100997 &forward->source, &forward->dest, forward->iface);
Simon Kelley832af0b2007-01-21 20:01:28 +0000998 }
Simon Kelley1a6bca82008-07-11 11:11:42 +0100999 free_frec(forward); /* cancel */
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001000 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001001}
Simon Kelley44a2a312004-03-10 20:04:35 +00001002
Simon Kelley1a6bca82008-07-11 11:11:42 +01001003
Simon Kelley5aabfc72007-08-29 11:24:47 +01001004void receive_query(struct listener *listen, time_t now)
Simon Kelley44a2a312004-03-10 20:04:35 +00001005{
Simon Kelley572b41e2011-02-18 18:11:18 +00001006 struct dns_header *header = (struct dns_header *)daemon->packet;
Simon Kelley44a2a312004-03-10 20:04:35 +00001007 union mysockaddr source_addr;
Simon Kelleyc1bb8502004-08-11 18:40:17 +01001008 unsigned short type;
Simon Kelley44a2a312004-03-10 20:04:35 +00001009 struct all_addr dst_addr;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001010 struct in_addr netmask, dst_addr_4;
Simon Kelleycdeda282006-03-16 20:16:06 +00001011 size_t m;
1012 ssize_t n;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001013 int if_index = 0, auth_dns = 0;
1014#ifdef HAVE_AUTH
1015 int local_auth = 0;
1016#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001017 struct iovec iov[1];
1018 struct msghdr msg;
1019 struct cmsghdr *cmptr;
Simon Kelley44a2a312004-03-10 20:04:35 +00001020 union {
1021 struct cmsghdr align; /* this ensures alignment */
1022#ifdef HAVE_IPV6
1023 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
1024#endif
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001025#if defined(HAVE_LINUX_NETWORK)
Simon Kelley44a2a312004-03-10 20:04:35 +00001026 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
Simon Kelley824af852008-02-12 20:43:05 +00001027#elif defined(IP_RECVDSTADDR) && defined(HAVE_SOLARIS_NETWORK)
1028 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1029 CMSG_SPACE(sizeof(unsigned int))];
Simon Kelley44a2a312004-03-10 20:04:35 +00001030#elif defined(IP_RECVDSTADDR)
1031 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1032 CMSG_SPACE(sizeof(struct sockaddr_dl))];
1033#endif
1034 } control_u;
Simon Kelley2329bef2013-12-03 13:41:16 +00001035#ifdef HAVE_IPV6
1036 /* Can always get recvd interface for IPv6 */
1037 int check_dst = !option_bool(OPT_NOWILD) || listen->family == AF_INET6;
1038#else
1039 int check_dst = !option_bool(OPT_NOWILD);
1040#endif
1041
Simon Kelleycdeda282006-03-16 20:16:06 +00001042 /* packet buffer overwritten */
1043 daemon->srv_save = NULL;
1044
Simon Kelley4f7b3042012-11-28 21:27:02 +00001045 dst_addr_4.s_addr = 0;
1046 netmask.s_addr = 0;
1047
Simon Kelley7e5664b2013-04-05 16:57:41 +01001048 if (option_bool(OPT_NOWILD) && listen->iface)
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001049 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001050 auth_dns = listen->iface->dns_auth;
1051
1052 if (listen->family == AF_INET)
1053 {
1054 dst_addr_4 = listen->iface->addr.in.sin_addr;
1055 netmask = listen->iface->netmask;
1056 }
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001057 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001058
Simon Kelley3be34542004-09-11 19:12:13 +01001059 iov[0].iov_base = daemon->packet;
1060 iov[0].iov_len = daemon->edns_pktsz;
Simon Kelley44a2a312004-03-10 20:04:35 +00001061
1062 msg.msg_control = control_u.control;
1063 msg.msg_controllen = sizeof(control_u);
1064 msg.msg_flags = 0;
1065 msg.msg_name = &source_addr;
1066 msg.msg_namelen = sizeof(source_addr);
1067 msg.msg_iov = iov;
1068 msg.msg_iovlen = 1;
1069
Simon Kelleyde379512004-06-22 20:23:33 +01001070 if ((n = recvmsg(listen->fd, &msg, 0)) == -1)
Simon Kelley3be34542004-09-11 19:12:13 +01001071 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001072
Simon Kelley572b41e2011-02-18 18:11:18 +00001073 if (n < (int)sizeof(struct dns_header) ||
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001074 (msg.msg_flags & MSG_TRUNC) ||
Simon Kelley572b41e2011-02-18 18:11:18 +00001075 (header->hb3 & HB3_QR))
Simon Kelley3be34542004-09-11 19:12:13 +01001076 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001077
Simon Kelley26128d22004-11-14 16:43:54 +00001078 source_addr.sa.sa_family = listen->family;
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001079
1080 if (listen->family == AF_INET)
1081 {
1082 /* Source-port == 0 is an error, we can't send back to that.
1083 http://www.ietf.org/mail-archive/web/dnsop/current/msg11441.html */
1084 if (source_addr.in.sin_port == 0)
1085 return;
1086 }
Simon Kelley26128d22004-11-14 16:43:54 +00001087#ifdef HAVE_IPV6
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001088 else
1089 {
1090 /* Source-port == 0 is an error, we can't send back to that. */
1091 if (source_addr.in6.sin6_port == 0)
1092 return;
1093 source_addr.in6.sin6_flowinfo = 0;
1094 }
Simon Kelley26128d22004-11-14 16:43:54 +00001095#endif
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001096
Simon Kelleyc8a80482014-03-05 14:29:54 +00001097 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1098 if (option_bool(OPT_LOCAL_SERVICE))
1099 {
1100 struct addrlist *addr;
1101#ifdef HAVE_IPV6
1102 if (listen->family == AF_INET6)
1103 {
1104 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1105 if ((addr->flags & ADDRLIST_IPV6) &&
1106 is_same_net6(&addr->addr.addr.addr6, &source_addr.in6.sin6_addr, addr->prefixlen))
1107 break;
1108 }
1109 else
1110#endif
1111 {
1112 struct in_addr netmask;
1113 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1114 {
1115 netmask.s_addr = 0xffffffff << (32 - addr->prefixlen);
1116 if (!(addr->flags & ADDRLIST_IPV6) &&
1117 is_same_net(addr->addr.addr.addr4, source_addr.in.sin_addr, netmask))
1118 break;
1119 }
1120 }
1121 if (!addr)
1122 {
Simon Kelley0c8584e2014-03-12 20:12:56 +00001123 static int warned = 0;
1124 if (!warned)
1125 {
1126 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1127 warned = 1;
1128 }
Simon Kelleyc8a80482014-03-05 14:29:54 +00001129 return;
1130 }
1131 }
1132
Simon Kelley2329bef2013-12-03 13:41:16 +00001133 if (check_dst)
Simon Kelley44a2a312004-03-10 20:04:35 +00001134 {
Simon Kelley8a911cc2004-03-16 18:35:52 +00001135 struct ifreq ifr;
1136
Simon Kelley26128d22004-11-14 16:43:54 +00001137 if (msg.msg_controllen < sizeof(struct cmsghdr))
1138 return;
1139
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001140#if defined(HAVE_LINUX_NETWORK)
Simon Kelley26128d22004-11-14 16:43:54 +00001141 if (listen->family == AF_INET)
1142 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001143 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
Simon Kelley26128d22004-11-14 16:43:54 +00001144 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001145 union {
1146 unsigned char *c;
1147 struct in_pktinfo *p;
1148 } p;
1149 p.c = CMSG_DATA(cmptr);
1150 dst_addr_4 = dst_addr.addr.addr4 = p.p->ipi_spec_dst;
1151 if_index = p.p->ipi_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001152 }
1153#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
1154 if (listen->family == AF_INET)
1155 {
1156 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001157 {
1158 union {
1159 unsigned char *c;
1160 unsigned int *i;
1161 struct in_addr *a;
1162#ifndef HAVE_SOLARIS_NETWORK
1163 struct sockaddr_dl *s;
Simon Kelley824af852008-02-12 20:43:05 +00001164#endif
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001165 } p;
1166 p.c = CMSG_DATA(cmptr);
1167 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
1168 dst_addr_4 = dst_addr.addr.addr4 = *(p.a);
1169 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
1170#ifdef HAVE_SOLARIS_NETWORK
1171 if_index = *(p.i);
1172#else
1173 if_index = p.s->sdl_index;
1174#endif
1175 }
Simon Kelley26128d22004-11-14 16:43:54 +00001176 }
1177#endif
1178
1179#ifdef HAVE_IPV6
1180 if (listen->family == AF_INET6)
1181 {
1182 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001183 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
Simon Kelley26128d22004-11-14 16:43:54 +00001184 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001185 union {
1186 unsigned char *c;
1187 struct in6_pktinfo *p;
1188 } p;
1189 p.c = CMSG_DATA(cmptr);
1190
1191 dst_addr.addr.addr6 = p.p->ipi6_addr;
1192 if_index = p.p->ipi6_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001193 }
1194 }
1195#endif
1196
1197 /* enforce available interface configuration */
1198
Simon Kelleye25db1f2013-01-29 22:10:26 +00001199 if (!indextoname(listen->fd, if_index, ifr.ifr_name))
Simon Kelley832af0b2007-01-21 20:01:28 +00001200 return;
1201
Simon Kelleye25db1f2013-01-29 22:10:26 +00001202 if (!iface_check(listen->family, &dst_addr, ifr.ifr_name, &auth_dns))
1203 {
1204 if (!option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001205 enumerate_interfaces(0);
Simon Kelley3f2873d2013-05-14 11:28:47 +01001206 if (!loopback_exception(listen->fd, listen->family, &dst_addr, ifr.ifr_name) &&
1207 !label_exception(if_index, listen->family, &dst_addr))
Simon Kelleye25db1f2013-01-29 22:10:26 +00001208 return;
1209 }
1210
Simon Kelley552af8b2012-02-29 20:10:31 +00001211 if (listen->family == AF_INET && option_bool(OPT_LOCALISE))
1212 {
1213 struct irec *iface;
1214
1215 /* get the netmask of the interface whch has the address we were sent to.
1216 This is no neccessarily the interface we arrived on. */
1217
1218 for (iface = daemon->interfaces; iface; iface = iface->next)
1219 if (iface->addr.sa.sa_family == AF_INET &&
1220 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1221 break;
1222
1223 /* interface may be new */
Simon Kelleye25db1f2013-01-29 22:10:26 +00001224 if (!iface && !option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001225 enumerate_interfaces(0);
Simon Kelley552af8b2012-02-29 20:10:31 +00001226
1227 for (iface = daemon->interfaces; iface; iface = iface->next)
1228 if (iface->addr.sa.sa_family == AF_INET &&
1229 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1230 break;
1231
1232 /* If we failed, abandon localisation */
1233 if (iface)
1234 netmask = iface->netmask;
1235 else
1236 dst_addr_4.s_addr = 0;
1237 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001238 }
1239
Simon Kelleycdeda282006-03-16 20:16:06 +00001240 if (extract_request(header, (size_t)n, daemon->namebuff, &type))
Simon Kelley44a2a312004-03-10 20:04:35 +00001241 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001242#ifdef HAVE_AUTH
1243 struct auth_zone *zone;
1244#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001245 char *types = querystr(auth_dns ? "auth" : "query", type);
1246
Simon Kelley44a2a312004-03-10 20:04:35 +00001247 if (listen->family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01001248 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001249 (struct all_addr *)&source_addr.in.sin_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001250#ifdef HAVE_IPV6
1251 else
Simon Kelley3be34542004-09-11 19:12:13 +01001252 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001253 (struct all_addr *)&source_addr.in6.sin6_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001254#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001255
Simon Kelley4820dce2012-12-18 18:30:30 +00001256#ifdef HAVE_AUTH
Simon Kelleyb485ed92013-10-18 22:00:39 +01001257 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley6008bdb2013-10-21 21:47:03 +01001258 if (!auth_dns)
1259 for (zone = daemon->auth_zones; zone; zone = zone->next)
1260 if (in_zone(zone, daemon->namebuff, NULL))
1261 {
1262 auth_dns = 1;
1263 local_auth = 1;
1264 break;
1265 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001266#endif
1267 }
1268
1269#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001270 if (auth_dns)
Simon Kelley824af852008-02-12 20:43:05 +00001271 {
Simon Kelley60b68062014-01-08 12:10:28 +00001272 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 +00001273 if (m >= 1)
Simon Kelleyb485ed92013-10-18 22:00:39 +01001274 {
1275 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1276 (char *)header, m, &source_addr, &dst_addr, if_index);
1277 daemon->auth_answer++;
1278 }
Simon Kelley824af852008-02-12 20:43:05 +00001279 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001280 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001281#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001282 {
Simon Kelley613ad152014-02-25 23:02:28 +00001283 int ad_reqd, do_bit;
Simon Kelley60b68062014-01-08 12:10:28 +00001284 m = answer_request(header, ((char *) header) + daemon->packet_buff_sz, (size_t)n,
Simon Kelley613ad152014-02-25 23:02:28 +00001285 dst_addr_4, netmask, now, &ad_reqd, &do_bit);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001286
1287 if (m >= 1)
1288 {
1289 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1290 (char *)header, m, &source_addr, &dst_addr, if_index);
1291 daemon->local_answer++;
1292 }
1293 else if (forward_query(listen->fd, &source_addr, &dst_addr, if_index,
Simon Kelley613ad152014-02-25 23:02:28 +00001294 header, (size_t)n, now, NULL, ad_reqd, do_bit))
Simon Kelley4f7b3042012-11-28 21:27:02 +00001295 daemon->queries_forwarded++;
1296 else
1297 daemon->local_answer++;
1298 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001299}
1300
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001301#ifdef HAVE_DNSSEC
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001302
1303/* UDP: we've got an unsigned answer, return STAT_INSECURE if we can prove there's no DS
1304 and therefore the answer shouldn't be signed, or STAT_BOGUS if it should be, or
1305 STAT_NEED_DS_NEG and keyname if we need to do the query. */
1306static int send_check_sign(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname)
1307{
1308 struct crec *crecp;
1309 char *name_start = name;
1310 int status = dnssec_chase_cname(now, header, plen, name, keyname);
1311
1312 if (status != STAT_INSECURE)
1313 return status;
1314
1315 while (1)
1316 {
1317 crecp = cache_find_by_name(NULL, name_start, now, F_DS);
1318
1319 if (crecp && (crecp->flags & F_DNSSECOK))
1320 return (crecp->flags & F_NEG) ? STAT_INSECURE : STAT_BOGUS;
1321
1322 if (crecp && (crecp->flags & F_NEG) && (name_start = strchr(name_start, '.')))
1323 {
1324 name_start++; /* chop a label off and try again */
1325 continue;
1326 }
1327
1328 strcpy(keyname, name_start);
1329 return STAT_NEED_DS_NEG;
1330 }
1331}
1332
1333/* Got answer to DS query from send_check_sign, check for proven non-existence, or make the next DS query to try. */
1334static int do_check_sign(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname, int class)
1335
1336{
1337 char *name_start;
1338 unsigned char *p;
1339 int status = dnssec_validate_ds(now, header, plen, name, keyname, class);
1340
1341 if (status != STAT_INSECURE)
1342 {
1343 if (status == STAT_NO_DS)
1344 status = STAT_INSECURE;
1345 return status;
1346 }
1347
1348 p = (unsigned char *)(header+1);
1349
1350 if (extract_name(header, plen, &p, name, 1, 4) &&
1351 (name_start = strchr(name, '.')))
1352 {
1353 name_start++; /* chop a label off and try again */
1354 strcpy(keyname, name_start);
1355 return STAT_NEED_DS_NEG;
1356 }
1357
1358 return STAT_BOGUS;
1359}
1360
1361/* Move toward the root, until we find a signed non-existance of a DS, in which case
1362 an unsigned answer is OK, or we find a signed DS, in which case there should be
1363 a signature, and the answer is BOGUS */
1364static int tcp_check_for_unsigned_zone(time_t now, struct dns_header *header, size_t plen, int class, char *name,
1365 char *keyname, struct server *server, int *keycount)
1366{
1367 size_t m;
1368 unsigned char *packet, *payload;
1369 u16 *length;
1370 unsigned char *p = (unsigned char *)(header+1);
1371 int status;
1372 char *name_start = name;
1373
1374 /* Get first insecure entry in CNAME chain */
1375 status = tcp_key_recurse(now, STAT_CHASE_CNAME, header, plen, class, name, keyname, server, keycount);
1376 if (status == STAT_BOGUS)
1377 return STAT_BOGUS;
1378
1379 if (!(packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16))))
1380 return STAT_BOGUS;
1381
1382 payload = &packet[2];
1383 header = (struct dns_header *)payload;
1384 length = (u16 *)packet;
1385
1386 while (1)
1387 {
1388 unsigned char *newhash, hash[HASH_SIZE];
1389 unsigned char c1, c2;
1390 struct crec *crecp = cache_find_by_name(NULL, name_start, now, F_DS);
1391
1392 if (--(*keycount) == 0)
1393 return STAT_BOGUS;
1394
1395 if (crecp && (crecp->flags & F_DNSSECOK))
1396 {
1397 free(packet);
1398 return (crecp->flags & F_NEG) ? STAT_INSECURE : STAT_BOGUS;
1399 }
1400
1401 /* If we have cached insecurely that a DS doesn't exist,
1402 ise that is a hit for where to start looking for the secure one */
1403 if (crecp && (crecp->flags & F_NEG) && (name_start = strchr(name_start, '.')))
1404 {
1405 name_start++; /* chop a label off and try again */
1406 continue;
1407 }
1408
1409 m = dnssec_generate_query(header, ((char *) header) + 65536, name_start, class, T_DS, &server->addr);
1410
1411 /* We rely on the question section coming back unchanged, ensure it is with the hash. */
1412 if ((newhash = hash_questions(header, (unsigned int)m, name)))
1413 memcpy(hash, newhash, HASH_SIZE);
1414
1415 *length = htons(m);
1416
1417 if (read_write(server->tcpfd, packet, m + sizeof(u16), 0) &&
1418 read_write(server->tcpfd, &c1, 1, 1) &&
1419 read_write(server->tcpfd, &c2, 1, 1) &&
1420 read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
1421 {
1422 m = (c1 << 8) | c2;
1423
1424 newhash = hash_questions(header, (unsigned int)m, name);
1425 if (newhash && memcmp(hash, newhash, HASH_SIZE) == 0)
1426 {
1427 /* Note this trashes all three name workspaces */
1428 status = tcp_key_recurse(now, STAT_NEED_DS_NEG, header, m, class, name, keyname, server, keycount);
1429
1430 /* We've found a DS which proves the bit of the DNS where the
1431 original query is, is unsigned, so the answer is OK,
1432 if unvalidated. */
1433 if (status == STAT_NO_DS)
1434 {
1435 free(packet);
1436 return STAT_INSECURE;
1437 }
1438
1439 /* No DS, not got to DNSSEC-land yet, go up. */
1440 if (status == STAT_INSECURE)
1441 {
1442 p = (unsigned char *)(header+1);
1443
1444 if (extract_name(header, plen, &p, name, 1, 4) &&
1445 (name_start = strchr(name, '.')))
1446 {
1447 name_start++; /* chop a label off and try again */
1448 continue;
1449 }
1450 }
1451 }
1452 }
1453
1454 free(packet);
1455
1456 return STAT_BOGUS;
1457 }
1458}
1459
Simon Kelley7fa836e2014-02-10 20:11:24 +00001460static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n,
1461 int class, char *name, char *keyname, struct server *server, int *keycount)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001462{
1463 /* Recurse up the key heirarchy */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001464 int new_status;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001465
Simon Kelley7fa836e2014-02-10 20:11:24 +00001466 /* limit the amount of work we do, to avoid cycling forever on loops in the DNS */
1467 if (--(*keycount) == 0)
1468 return STAT_INSECURE;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001469
Simon Kelley7fa836e2014-02-10 20:11:24 +00001470 if (status == STAT_NEED_KEY)
1471 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001472 else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG)
1473 {
1474 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
1475 if (status == STAT_NEED_DS && new_status == STAT_NO_DS)
1476 new_status = STAT_INSECURE;
1477 }
1478 else if (status == STAT_CHASE_CNAME)
1479 new_status = dnssec_chase_cname(now, header, n, name, keyname);
1480 else
1481 {
1482 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL);
1483
1484 if (new_status == STAT_NO_SIG)
1485 {
1486 if (option_bool(OPT_DNSSEC_NO_SIGN))
1487 new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount);
1488 else
1489 new_status = STAT_INSECURE;
1490 }
1491 }
1492
Simon Kelley7fa836e2014-02-10 20:11:24 +00001493 /* Can't validate because we need a key/DS whose name now in keyname.
1494 Make query for same, and recurse to validate */
1495 if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001496 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001497 size_t m;
1498 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1499 unsigned char *payload = &packet[2];
1500 struct dns_header *new_header = (struct dns_header *)payload;
1501 u16 *length = (u16 *)packet;
1502 unsigned char c1, c2;
1503
1504 if (!packet)
1505 return STAT_INSECURE;
1506
1507 another_tcp_key:
1508 m = dnssec_generate_query(new_header, ((char *) new_header) + 65536, keyname, class,
1509 new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS, &server->addr);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001510
Simon Kelley7fa836e2014-02-10 20:11:24 +00001511 *length = htons(m);
1512
1513 if (!read_write(server->tcpfd, packet, m + sizeof(u16), 0) ||
1514 !read_write(server->tcpfd, &c1, 1, 1) ||
1515 !read_write(server->tcpfd, &c2, 1, 1) ||
1516 !read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
1517 new_status = STAT_INSECURE;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001518 else
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001519 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001520 m = (c1 << 8) | c2;
1521
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001522 new_status = tcp_key_recurse(now, new_status, new_header, m, class, name, keyname, server, keycount);
1523
1524 if (new_status == STAT_SECURE)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001525 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001526 /* Reached a validated record, now try again at this level.
1527 Note that we may get ANOTHER NEED_* if an answer needs more than one key.
1528 If so, go round again. */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001529
Simon Kelley7fa836e2014-02-10 20:11:24 +00001530 if (status == STAT_NEED_KEY)
1531 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001532 else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG)
1533 {
1534 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
1535 if (status == STAT_NEED_DS && new_status == STAT_NO_DS)
1536 new_status = STAT_INSECURE; /* Validated no DS */
1537 }
1538 else if (status == STAT_CHASE_CNAME)
1539 new_status = dnssec_chase_cname(now, header, n, name, keyname);
1540 else
1541 {
1542 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL);
1543
1544 if (new_status == STAT_NO_SIG)
1545 {
1546 if (option_bool(OPT_DNSSEC_NO_SIGN))
1547 new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount);
1548 else
1549 new_status = STAT_INSECURE;
1550 }
1551 }
1552
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001553 if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +00001554 goto another_tcp_key;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001555 }
1556 }
Simon Kelley7fa836e2014-02-10 20:11:24 +00001557
1558 free(packet);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001559 }
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001560 return new_status;
1561}
1562#endif
1563
1564
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001565/* The daemon forks before calling this: it should deal with one connection,
1566 blocking as neccessary, and then return. Note, need to be a bit careful
1567 about resources for debug mode, when the fork is suppressed: that's
1568 done by the caller. */
Simon Kelley5aabfc72007-08-29 11:24:47 +01001569unsigned char *tcp_request(int confd, time_t now,
Simon Kelley4f7b3042012-11-28 21:27:02 +00001570 union mysockaddr *local_addr, struct in_addr netmask, int auth_dns)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001571{
Simon Kelley28866e92011-02-14 20:19:14 +00001572 size_t size = 0;
1573 int norebind = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001574#ifdef HAVE_AUTH
Simon Kelley19b16892013-10-20 10:19:39 +01001575 int local_auth = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001576#endif
Simon Kelley613ad152014-02-25 23:02:28 +00001577 int checking_disabled, ad_question, do_bit, added_pheader = 0;
1578 int check_subnet, no_cache_dnssec = 0, cache_secure = 0;
Simon Kelleycdeda282006-03-16 20:16:06 +00001579 size_t m;
Simon Kelleyee86ce62012-12-07 11:54:46 +00001580 unsigned short qtype;
1581 unsigned int gotname;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001582 unsigned char c1, c2;
Simon Kelley4b5ea122013-04-22 10:18:26 +01001583 /* Max TCP packet + slop + size */
1584 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1585 unsigned char *payload = &packet[2];
1586 /* largest field in header is 16-bits, so this is still sufficiently aligned */
1587 struct dns_header *header = (struct dns_header *)payload;
1588 u16 *length = (u16 *)packet;
Simon Kelley3be34542004-09-11 19:12:13 +01001589 struct server *last_server;
Simon Kelley7de060b2011-08-26 17:24:52 +01001590 struct in_addr dst_addr_4;
1591 union mysockaddr peer_addr;
1592 socklen_t peer_len = sizeof(union mysockaddr);
Simon Kelley3be34542004-09-11 19:12:13 +01001593
Simon Kelley7de060b2011-08-26 17:24:52 +01001594 if (getpeername(confd, (struct sockaddr *)&peer_addr, &peer_len) == -1)
1595 return packet;
Simon Kelleyc8a80482014-03-05 14:29:54 +00001596
1597 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1598 if (option_bool(OPT_LOCAL_SERVICE))
1599 {
1600 struct addrlist *addr;
1601#ifdef HAVE_IPV6
1602 if (peer_addr.sa.sa_family == AF_INET6)
1603 {
1604 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1605 if ((addr->flags & ADDRLIST_IPV6) &&
1606 is_same_net6(&addr->addr.addr.addr6, &peer_addr.in6.sin6_addr, addr->prefixlen))
1607 break;
1608 }
1609 else
1610#endif
1611 {
1612 struct in_addr netmask;
1613 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1614 {
1615 netmask.s_addr = 0xffffffff << (32 - addr->prefixlen);
1616 if (!(addr->flags & ADDRLIST_IPV6) &&
1617 is_same_net(addr->addr.addr.addr4, peer_addr.in.sin_addr, netmask))
1618 break;
1619 }
1620 }
1621 if (!addr)
1622 {
1623 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1624 return packet;
1625 }
1626 }
Simon Kelley7de060b2011-08-26 17:24:52 +01001627
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001628 while (1)
1629 {
1630 if (!packet ||
1631 !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) ||
1632 !(size = c1 << 8 | c2) ||
Simon Kelley4b5ea122013-04-22 10:18:26 +01001633 !read_write(confd, payload, size, 1))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001634 return packet;
1635
Simon Kelley572b41e2011-02-18 18:11:18 +00001636 if (size < (int)sizeof(struct dns_header))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001637 continue;
1638
Simon Kelleyed4c0762013-10-08 20:46:34 +01001639 check_subnet = 0;
1640
Simon Kelley28866e92011-02-14 20:19:14 +00001641 /* save state of "cd" flag in query */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001642 if ((checking_disabled = header->hb4 & HB4_CD))
1643 no_cache_dnssec = 1;
Simon Kelley28866e92011-02-14 20:19:14 +00001644
Simon Kelley3be34542004-09-11 19:12:13 +01001645 if ((gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001646 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001647#ifdef HAVE_AUTH
1648 struct auth_zone *zone;
1649#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001650 char *types = querystr(auth_dns ? "auth" : "query", qtype);
Simon Kelley7de060b2011-08-26 17:24:52 +01001651
1652 if (peer_addr.sa.sa_family == AF_INET)
1653 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
1654 (struct all_addr *)&peer_addr.in.sin_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001655#ifdef HAVE_IPV6
Simon Kelley7de060b2011-08-26 17:24:52 +01001656 else
1657 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
1658 (struct all_addr *)&peer_addr.in6.sin6_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001659#endif
Simon Kelleyb485ed92013-10-18 22:00:39 +01001660
1661#ifdef HAVE_AUTH
1662 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley6008bdb2013-10-21 21:47:03 +01001663 if (!auth_dns)
1664 for (zone = daemon->auth_zones; zone; zone = zone->next)
1665 if (in_zone(zone, daemon->namebuff, NULL))
1666 {
1667 auth_dns = 1;
1668 local_auth = 1;
1669 break;
1670 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001671#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001672 }
1673
Simon Kelley7de060b2011-08-26 17:24:52 +01001674 if (local_addr->sa.sa_family == AF_INET)
1675 dst_addr_4 = local_addr->in.sin_addr;
1676 else
1677 dst_addr_4.s_addr = 0;
1678
Simon Kelley4820dce2012-12-18 18:30:30 +00001679#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001680 if (auth_dns)
Simon Kelley19b16892013-10-20 10:19:39 +01001681 m = answer_auth(header, ((char *) header) + 65536, (size_t)size, now, &peer_addr, local_auth);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001682 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001683#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001684 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001685 /* m > 0 if answered from cache */
1686 m = answer_request(header, ((char *) header) + 65536, (size_t)size,
Simon Kelley613ad152014-02-25 23:02:28 +00001687 dst_addr_4, netmask, now, &ad_question, &do_bit);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001688
Simon Kelley4f7b3042012-11-28 21:27:02 +00001689 /* Do this by steam now we're not in the select() loop */
1690 check_log_writer(NULL);
1691
1692 if (m == 0)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001693 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001694 unsigned int flags = 0;
1695 struct all_addr *addrp = NULL;
1696 int type = 0;
1697 char *domain = NULL;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001698
Simon Kelley4f7b3042012-11-28 21:27:02 +00001699 if (option_bool(OPT_ADD_MAC))
1700 size = add_mac(header, size, ((char *) header) + 65536, &peer_addr);
Simon Kelleyed4c0762013-10-08 20:46:34 +01001701
1702 if (option_bool(OPT_CLIENT_SUBNET))
1703 {
1704 size_t new = add_source_addr(header, size, ((char *) header) + 65536, &peer_addr);
1705 if (size != new)
1706 {
1707 size = new;
1708 check_subnet = 1;
1709 }
1710 }
1711
Simon Kelley4f7b3042012-11-28 21:27:02 +00001712 if (gotname)
1713 flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind);
1714
1715 if (type != 0 || option_bool(OPT_ORDER) || !daemon->last_server)
1716 last_server = daemon->servers;
1717 else
1718 last_server = daemon->last_server;
1719
1720 if (!flags && last_server)
1721 {
1722 struct server *firstsendto = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001723#ifdef HAVE_DNSSEC
Simon Kelley703c7ff2014-01-25 23:46:23 +00001724 unsigned char *newhash, hash[HASH_SIZE];
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001725 if ((newhash = hash_questions(header, (unsigned int)size, daemon->keyname)))
1726 memcpy(hash, newhash, HASH_SIZE);
1727#else
Simon Kelley4f7b3042012-11-28 21:27:02 +00001728 unsigned int crc = questions_crc(header, (unsigned int)size, daemon->namebuff);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001729#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001730 /* Loop round available servers until we succeed in connecting to one.
1731 Note that this code subtley ensures that consecutive queries on this connection
1732 which can go to the same server, do so. */
1733 while (1)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001734 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001735 if (!firstsendto)
1736 firstsendto = last_server;
1737 else
1738 {
1739 if (!(last_server = last_server->next))
1740 last_server = daemon->servers;
1741
1742 if (last_server == firstsendto)
1743 break;
1744 }
1745
1746 /* server for wrong domain */
1747 if (type != (last_server->flags & SERV_TYPE) ||
1748 (type == SERV_HAS_DOMAIN && !hostname_isequal(domain, last_server->domain)))
Simon Kelley7de060b2011-08-26 17:24:52 +01001749 continue;
1750
Simon Kelley4f7b3042012-11-28 21:27:02 +00001751 if (last_server->tcpfd == -1)
1752 {
1753 if ((last_server->tcpfd = socket(last_server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1)
1754 continue;
1755
1756 if ((!local_bind(last_server->tcpfd, &last_server->source_addr, last_server->interface, 1) ||
1757 connect(last_server->tcpfd, &last_server->addr.sa, sa_len(&last_server->addr)) == -1))
1758 {
1759 close(last_server->tcpfd);
1760 last_server->tcpfd = -1;
1761 continue;
1762 }
1763
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001764#ifdef HAVE_DNSSEC
1765 if (option_bool(OPT_DNSSEC_VALID))
1766 {
Simon Kelley613ad152014-02-25 23:02:28 +00001767 size_t new_size = add_do_bit(header, size, ((char *) header) + 65536);
1768
Simon Kelley2ecd9bd2014-02-13 16:42:02 +00001769 /* For debugging, set Checking Disabled, otherwise, have the upstream check too,
1770 this allows it to select auth servers when one is returning bad data. */
1771 if (option_bool(OPT_DNSSEC_DEBUG))
1772 header->hb4 |= HB4_CD;
Simon Kelley613ad152014-02-25 23:02:28 +00001773
1774 if (size != new_size)
1775 added_pheader = 1;
1776
1777 size = new_size;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001778 }
1779#endif
1780
Simon Kelley4f7b3042012-11-28 21:27:02 +00001781#ifdef HAVE_CONNTRACK
1782 /* Copy connection mark of incoming query to outgoing connection. */
1783 if (option_bool(OPT_CONNTRACK))
1784 {
1785 unsigned int mark;
1786 struct all_addr local;
1787#ifdef HAVE_IPV6
1788 if (local_addr->sa.sa_family == AF_INET6)
1789 local.addr.addr6 = local_addr->in6.sin6_addr;
1790 else
1791#endif
1792 local.addr.addr4 = local_addr->in.sin_addr;
1793
1794 if (get_incoming_mark(&peer_addr, &local, 1, &mark))
1795 setsockopt(last_server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
1796 }
1797#endif
1798 }
1799
Simon Kelley4b5ea122013-04-22 10:18:26 +01001800 *length = htons(size);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001801
Simon Kelley4b5ea122013-04-22 10:18:26 +01001802 if (!read_write(last_server->tcpfd, packet, size + sizeof(u16), 0) ||
Simon Kelley4f7b3042012-11-28 21:27:02 +00001803 !read_write(last_server->tcpfd, &c1, 1, 1) ||
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001804 !read_write(last_server->tcpfd, &c2, 1, 1) ||
1805 !read_write(last_server->tcpfd, payload, (c1 << 8) | c2, 1))
Simon Kelley7de060b2011-08-26 17:24:52 +01001806 {
1807 close(last_server->tcpfd);
1808 last_server->tcpfd = -1;
1809 continue;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001810 }
1811
1812 m = (c1 << 8) | c2;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001813
1814 if (!gotname)
1815 strcpy(daemon->namebuff, "query");
1816 if (last_server->addr.sa.sa_family == AF_INET)
1817 log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff,
1818 (struct all_addr *)&last_server->addr.in.sin_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001819#ifdef HAVE_IPV6
Simon Kelley4f7b3042012-11-28 21:27:02 +00001820 else
1821 log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff,
1822 (struct all_addr *)&last_server->addr.in6.sin6_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001823#endif
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001824
1825#ifdef HAVE_DNSSEC
1826 if (option_bool(OPT_DNSSEC_VALID) && !checking_disabled)
1827 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001828 int keycount = DNSSEC_WORK; /* Limit to number of DNSSEC questions, to catch loops and avoid filling cache. */
1829 int status = tcp_key_recurse(now, STAT_TRUNCATED, header, m, 0, daemon->namebuff, daemon->keyname, last_server, &keycount);
1830 char *result;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001831
Simon Kelley7fa836e2014-02-10 20:11:24 +00001832 if (keycount == 0)
1833 result = "ABANDONED";
1834 else
1835 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
1836
1837 log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result);
1838
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001839 if (status == STAT_BOGUS)
1840 no_cache_dnssec = 1;
Simon Kelley7fa836e2014-02-10 20:11:24 +00001841
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001842 if (status == STAT_SECURE)
1843 cache_secure = 1;
1844 }
1845#endif
1846
1847 /* restore CD bit to the value in the query */
1848 if (checking_disabled)
1849 header->hb4 |= HB4_CD;
1850 else
1851 header->hb4 &= ~HB4_CD;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001852
1853 /* There's no point in updating the cache, since this process will exit and
1854 lose the information after a few queries. We make this call for the alias and
1855 bogus-nxdomain side-effects. */
1856 /* If the crc of the question section doesn't match the crc we sent, then
1857 someone might be attempting to insert bogus values into the cache by
1858 sending replies containing questions and bogus answers. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001859#ifdef HAVE_DNSSEC
1860 newhash = hash_questions(header, (unsigned int)m, daemon->namebuff);
1861 if (!newhash || memcmp(hash, newhash, HASH_SIZE) != 0)
Simon Kelley703c7ff2014-01-25 23:46:23 +00001862 {
1863 m = 0;
1864 break;
1865 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001866#else
1867 if (crc != questions_crc(header, (unsigned int)m, daemon->namebuff))
Simon Kelley703c7ff2014-01-25 23:46:23 +00001868 {
1869 m = 0;
1870 break;
1871 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001872#endif
1873
1874 m = process_reply(header, now, last_server, (unsigned int)m,
1875 option_bool(OPT_NO_REBIND) && !norebind, no_cache_dnssec,
Simon Kelley613ad152014-02-25 23:02:28 +00001876 cache_secure, ad_question, do_bit, added_pheader, check_subnet, &peer_addr);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001877
1878 break;
1879 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001880 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001881
1882 /* In case of local answer or no connections made. */
1883 if (m == 0)
1884 m = setup_reply(header, (unsigned int)size, addrp, flags, daemon->local_ttl);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001885 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001886 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001887
Simon Kelley5aabfc72007-08-29 11:24:47 +01001888 check_log_writer(NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001889
Simon Kelley4b5ea122013-04-22 10:18:26 +01001890 *length = htons(m);
1891
1892 if (m == 0 || !read_write(confd, packet, m + sizeof(u16), 0))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001893 return packet;
1894 }
1895}
1896
Simon Kelley16972692006-10-16 20:04:18 +01001897static struct frec *allocate_frec(time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001898{
Simon Kelley16972692006-10-16 20:04:18 +01001899 struct frec *f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001900
Simon Kelley5aabfc72007-08-29 11:24:47 +01001901 if ((f = (struct frec *)whine_malloc(sizeof(struct frec))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001902 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01001903 f->next = daemon->frec_list;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001904 f->time = now;
Simon Kelley832af0b2007-01-21 20:01:28 +00001905 f->sentto = NULL;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001906 f->rfd4 = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00001907 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001908#ifdef HAVE_IPV6
1909 f->rfd6 = NULL;
1910#endif
Simon Kelley3a237152013-12-12 12:15:50 +00001911#ifdef HAVE_DNSSEC
Simon Kelley97bc7982014-01-31 10:19:52 +00001912 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00001913 f->blocking_query = NULL;
Simon Kelley4619d942014-01-16 19:53:06 +00001914 f->stash = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00001915#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01001916 daemon->frec_list = f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001917 }
Simon Kelley16972692006-10-16 20:04:18 +01001918
1919 return f;
1920}
1921
Simon Kelley1a6bca82008-07-11 11:11:42 +01001922static struct randfd *allocate_rfd(int family)
1923{
1924 static int finger = 0;
1925 int i;
1926
1927 /* limit the number of sockets we have open to avoid starvation of
1928 (eg) TFTP. Once we have a reasonable number, randomness should be OK */
1929
1930 for (i = 0; i < RANDOM_SOCKS; i++)
Simon Kelley9009d742008-11-14 20:04:27 +00001931 if (daemon->randomsocks[i].refcount == 0)
Simon Kelley1a6bca82008-07-11 11:11:42 +01001932 {
Simon Kelley9009d742008-11-14 20:04:27 +00001933 if ((daemon->randomsocks[i].fd = random_sock(family)) == -1)
1934 break;
1935
Simon Kelley1a6bca82008-07-11 11:11:42 +01001936 daemon->randomsocks[i].refcount = 1;
1937 daemon->randomsocks[i].family = family;
1938 return &daemon->randomsocks[i];
1939 }
1940
Simon Kelley9009d742008-11-14 20:04:27 +00001941 /* No free ones or cannot get new socket, grab an existing one */
Simon Kelley1a6bca82008-07-11 11:11:42 +01001942 for (i = 0; i < RANDOM_SOCKS; i++)
1943 {
1944 int j = (i+finger) % RANDOM_SOCKS;
Simon Kelley9009d742008-11-14 20:04:27 +00001945 if (daemon->randomsocks[j].refcount != 0 &&
1946 daemon->randomsocks[j].family == family &&
1947 daemon->randomsocks[j].refcount != 0xffff)
Simon Kelley1a6bca82008-07-11 11:11:42 +01001948 {
1949 finger = j;
1950 daemon->randomsocks[j].refcount++;
1951 return &daemon->randomsocks[j];
1952 }
1953 }
1954
1955 return NULL; /* doom */
1956}
Simon Kelley1a6bca82008-07-11 11:11:42 +01001957static void free_frec(struct frec *f)
1958{
1959 if (f->rfd4 && --(f->rfd4->refcount) == 0)
1960 close(f->rfd4->fd);
1961
1962 f->rfd4 = NULL;
1963 f->sentto = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00001964 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001965
1966#ifdef HAVE_IPV6
1967 if (f->rfd6 && --(f->rfd6->refcount) == 0)
1968 close(f->rfd6->fd);
1969
1970 f->rfd6 = NULL;
1971#endif
Simon Kelley3a237152013-12-12 12:15:50 +00001972
1973#ifdef HAVE_DNSSEC
1974 if (f->stash)
Simon Kelley0fc2f312014-01-08 10:26:58 +00001975 {
1976 blockdata_free(f->stash);
1977 f->stash = NULL;
1978 }
Simon Kelley3a237152013-12-12 12:15:50 +00001979
1980 /* Anything we're waiting on is pointless now, too */
1981 if (f->blocking_query)
1982 free_frec(f->blocking_query);
1983 f->blocking_query = NULL;
Simon Kelley39048ad2014-01-21 17:33:58 +00001984 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00001985#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01001986}
1987
Simon Kelley16972692006-10-16 20:04:18 +01001988/* if wait==NULL return a free or older than TIMEOUT record.
1989 else return *wait zero if one available, or *wait is delay to
Simon Kelley1a6bca82008-07-11 11:11:42 +01001990 when the oldest in-use record will expire. Impose an absolute
Simon Kelley3a237152013-12-12 12:15:50 +00001991 limit of 4*TIMEOUT before we wipe things (for random sockets).
1992 If force is set, always return a result, even if we have
1993 to allocate above the limit. */
1994struct frec *get_new_frec(time_t now, int *wait, int force)
Simon Kelley16972692006-10-16 20:04:18 +01001995{
Simon Kelley1a6bca82008-07-11 11:11:42 +01001996 struct frec *f, *oldest, *target;
Simon Kelley16972692006-10-16 20:04:18 +01001997 int count;
1998
1999 if (wait)
2000 *wait = 0;
2001
Simon Kelley1a6bca82008-07-11 11:11:42 +01002002 for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++)
Simon Kelley832af0b2007-01-21 20:01:28 +00002003 if (!f->sentto)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002004 target = f;
2005 else
Simon Kelley16972692006-10-16 20:04:18 +01002006 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002007 if (difftime(now, f->time) >= 4*TIMEOUT)
2008 {
2009 free_frec(f);
2010 target = f;
2011 }
2012
2013 if (!oldest || difftime(f->time, oldest->time) <= 0)
2014 oldest = f;
Simon Kelley16972692006-10-16 20:04:18 +01002015 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01002016
2017 if (target)
2018 {
2019 target->time = now;
2020 return target;
2021 }
Simon Kelley16972692006-10-16 20:04:18 +01002022
2023 /* can't find empty one, use oldest if there is one
2024 and it's older than timeout */
2025 if (oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT)
2026 {
2027 /* keep stuff for twice timeout if we can by allocating a new
2028 record instead */
2029 if (difftime(now, oldest->time) < 2*TIMEOUT &&
2030 count <= daemon->ftabsize &&
2031 (f = allocate_frec(now)))
2032 return f;
2033
2034 if (!wait)
2035 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002036 free_frec(oldest);
Simon Kelley16972692006-10-16 20:04:18 +01002037 oldest->time = now;
2038 }
2039 return oldest;
2040 }
2041
2042 /* none available, calculate time 'till oldest record expires */
Simon Kelley3a237152013-12-12 12:15:50 +00002043 if (!force && count > daemon->ftabsize)
Simon Kelley16972692006-10-16 20:04:18 +01002044 {
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002045 static time_t last_log = 0;
2046
Simon Kelley16972692006-10-16 20:04:18 +01002047 if (oldest && wait)
2048 *wait = oldest->time + (time_t)TIMEOUT - now;
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002049
2050 if ((int)difftime(now, last_log) > 5)
2051 {
2052 last_log = now;
2053 my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries reached (max: %d)"), daemon->ftabsize);
2054 }
2055
Simon Kelley16972692006-10-16 20:04:18 +01002056 return NULL;
2057 }
2058
2059 if (!(f = allocate_frec(now)) && wait)
2060 /* wait one second on malloc failure */
2061 *wait = 1;
2062
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002063 return f; /* OK if malloc fails and this is NULL */
2064}
2065
Simon Kelley832af0b2007-01-21 20:01:28 +00002066/* crc is all-ones if not known. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002067static struct frec *lookup_frec(unsigned short id, void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002068{
2069 struct frec *f;
2070
Simon Kelley1a6bca82008-07-11 11:11:42 +01002071 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002072 if (f->sentto && f->new_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002073 (!hash || memcmp(hash, f->hash, HASH_SIZE) == 0))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002074 return f;
2075
2076 return NULL;
2077}
2078
2079static struct frec *lookup_frec_by_sender(unsigned short id,
Simon Kelleyfd9fa482004-10-21 20:24:00 +01002080 union mysockaddr *addr,
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002081 void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002082{
Simon Kelleyfeba5c12004-07-27 20:28:58 +01002083 struct frec *f;
2084
Simon Kelley1a6bca82008-07-11 11:11:42 +01002085 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002086 if (f->sentto &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002087 f->orig_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002088 memcmp(hash, f->hash, HASH_SIZE) == 0 &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002089 sockaddr_isequal(&f->source, addr))
2090 return f;
2091
2092 return NULL;
2093}
2094
Simon Kelley849a8352006-06-09 21:02:31 +01002095/* A server record is going away, remove references to it */
Simon Kelley5aabfc72007-08-29 11:24:47 +01002096void server_gone(struct server *server)
Simon Kelley849a8352006-06-09 21:02:31 +01002097{
2098 struct frec *f;
2099
Simon Kelley1a6bca82008-07-11 11:11:42 +01002100 for (f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002101 if (f->sentto && f->sentto == server)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002102 free_frec(f);
Simon Kelley849a8352006-06-09 21:02:31 +01002103
2104 if (daemon->last_server == server)
2105 daemon->last_server = NULL;
2106
2107 if (daemon->srv_save == server)
2108 daemon->srv_save = NULL;
2109}
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002110
Simon Kelley316e2732010-01-22 20:16:09 +00002111/* return unique random ids. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002112static unsigned short get_id(void)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002113{
2114 unsigned short ret = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +00002115
Simon Kelley316e2732010-01-22 20:16:09 +00002116 do
Simon Kelley832af0b2007-01-21 20:01:28 +00002117 ret = rand16();
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002118 while (lookup_frec(ret, NULL));
Simon Kelley832af0b2007-01-21 20:01:28 +00002119
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002120 return ret;
2121}
2122
2123
2124
2125
2126