blob: 713a64c0fa588224bf21162d68c5c83152b4d72a [file] [log] [blame]
Simon Kelleyc47e3ba2014-01-08 17:07:54 +00001/* dnsmasq is Copyright (c) 2000-2014 Simon Kelley
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
Simon Kelley824af852008-02-12 20:43:05 +00005 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
Simon Kelley9e4abcb2004-01-22 19:47:41 +00008 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
Simon Kelley824af852008-02-12 20:43:05 +000012
Simon Kelley73a08a22009-02-05 20:28:08 +000013 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000015*/
16
Simon Kelley9e4abcb2004-01-22 19:47:41 +000017#include "dnsmasq.h"
18
Simon Kelley8a9be9e2014-01-25 23:17:21 +000019static struct frec *lookup_frec(unsigned short id, void *hash);
Simon Kelley9e4abcb2004-01-22 19:47:41 +000020static struct frec *lookup_frec_by_sender(unsigned short id,
Simon Kelleyfd9fa482004-10-21 20:24:00 +010021 union mysockaddr *addr,
Simon Kelley8a9be9e2014-01-25 23:17:21 +000022 void *hash);
23static unsigned short get_id(void);
Simon Kelley1a6bca82008-07-11 11:11:42 +010024static void free_frec(struct frec *f);
Simon Kelley9e4abcb2004-01-22 19:47:41 +000025
Simon Kelley00a5b5d2014-02-28 18:10:55 +000026#ifdef HAVE_DNSSEC
27static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n,
28 int class, char *name, char *keyname, struct server *server, int *keycount);
Simon Kelley97e618a2015-01-07 21:55:43 +000029static int do_check_sign(struct frec *forward, int status, time_t now, char *name, char *keyname);
30static int send_check_sign(struct frec *forward, time_t now, struct dns_header *header, size_t plen,
31 char *name, char *keyname);
Simon Kelley00a5b5d2014-02-28 18:10:55 +000032#endif
33
34
Simon Kelley824af852008-02-12 20:43:05 +000035/* Send a UDP packet with its source address set as "source"
Simon Kelley44a2a312004-03-10 20:04:35 +000036 unless nowild is true, when we just send it with the kernel default */
Simon Kelley29689cf2012-03-22 14:01:00 +000037int send_from(int fd, int nowild, char *packet, size_t len,
38 union mysockaddr *to, struct all_addr *source,
Simon Kelley50303b12012-04-04 22:13:17 +010039 unsigned int iface)
Simon Kelley9e4abcb2004-01-22 19:47:41 +000040{
Simon Kelley44a2a312004-03-10 20:04:35 +000041 struct msghdr msg;
42 struct iovec iov[1];
Simon Kelley44a2a312004-03-10 20:04:35 +000043 union {
44 struct cmsghdr align; /* this ensures alignment */
Simon Kelley5e9e0ef2006-04-17 14:24:29 +010045#if defined(HAVE_LINUX_NETWORK)
Simon Kelley44a2a312004-03-10 20:04:35 +000046 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
47#elif defined(IP_SENDSRCADDR)
48 char control[CMSG_SPACE(sizeof(struct in_addr))];
49#endif
50#ifdef HAVE_IPV6
51 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
52#endif
53 } control_u;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010054
Simon Kelley44a2a312004-03-10 20:04:35 +000055 iov[0].iov_base = packet;
56 iov[0].iov_len = len;
57
Simon Kelleyfeba5c12004-07-27 20:28:58 +010058 msg.msg_control = NULL;
59 msg.msg_controllen = 0;
Simon Kelley44a2a312004-03-10 20:04:35 +000060 msg.msg_flags = 0;
61 msg.msg_name = to;
62 msg.msg_namelen = sa_len(to);
63 msg.msg_iov = iov;
64 msg.msg_iovlen = 1;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010065
Simon Kelley26128d22004-11-14 16:43:54 +000066 if (!nowild)
Simon Kelleyfeba5c12004-07-27 20:28:58 +010067 {
Simon Kelley26128d22004-11-14 16:43:54 +000068 struct cmsghdr *cmptr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +010069 msg.msg_control = &control_u;
70 msg.msg_controllen = sizeof(control_u);
Simon Kelley26128d22004-11-14 16:43:54 +000071 cmptr = CMSG_FIRSTHDR(&msg);
Simon Kelley44a2a312004-03-10 20:04:35 +000072
Simon Kelley26128d22004-11-14 16:43:54 +000073 if (to->sa.sa_family == AF_INET)
74 {
Simon Kelley5e9e0ef2006-04-17 14:24:29 +010075#if defined(HAVE_LINUX_NETWORK)
Simon Kelley8ef5ada2010-06-03 19:42:45 +010076 struct in_pktinfo p;
77 p.ipi_ifindex = 0;
78 p.ipi_spec_dst = source->addr.addr4;
79 memcpy(CMSG_DATA(cmptr), &p, sizeof(p));
Simon Kelley26128d22004-11-14 16:43:54 +000080 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in_pktinfo));
Simon Kelleyc72daea2012-01-05 21:33:27 +000081 cmptr->cmsg_level = IPPROTO_IP;
Simon Kelley26128d22004-11-14 16:43:54 +000082 cmptr->cmsg_type = IP_PKTINFO;
83#elif defined(IP_SENDSRCADDR)
Simon Kelley8ef5ada2010-06-03 19:42:45 +010084 memcpy(CMSG_DATA(cmptr), &(source->addr.addr4), sizeof(source->addr.addr4));
Simon Kelley26128d22004-11-14 16:43:54 +000085 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in_addr));
86 cmptr->cmsg_level = IPPROTO_IP;
87 cmptr->cmsg_type = IP_SENDSRCADDR;
Simon Kelley44a2a312004-03-10 20:04:35 +000088#endif
Simon Kelley26128d22004-11-14 16:43:54 +000089 }
Simon Kelley26128d22004-11-14 16:43:54 +000090 else
Simon Kelleyb8187c82005-11-26 21:46:27 +000091#ifdef HAVE_IPV6
Simon Kelley26128d22004-11-14 16:43:54 +000092 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +010093 struct in6_pktinfo p;
94 p.ipi6_ifindex = iface; /* Need iface for IPv6 to handle link-local addrs */
95 p.ipi6_addr = source->addr.addr6;
96 memcpy(CMSG_DATA(cmptr), &p, sizeof(p));
Simon Kelley26128d22004-11-14 16:43:54 +000097 msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo));
Simon Kelley316e2732010-01-22 20:16:09 +000098 cmptr->cmsg_type = daemon->v6pktinfo;
Simon Kelleyc72daea2012-01-05 21:33:27 +000099 cmptr->cmsg_level = IPPROTO_IPV6;
Simon Kelley26128d22004-11-14 16:43:54 +0000100 }
Simon Kelley3d8df262005-08-29 12:19:27 +0100101#else
Simon Kelleyc72daea2012-01-05 21:33:27 +0000102 (void)iface; /* eliminate warning */
Simon Kelley26128d22004-11-14 16:43:54 +0000103#endif
104 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100105
Simon Kelley29d28dd2012-12-03 14:05:59 +0000106 while (sendmsg(fd, &msg, 0) == -1)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100107 {
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100108 if (retry_send())
Simon Kelley29d28dd2012-12-03 14:05:59 +0000109 continue;
110
111 /* If interface is still in DAD, EINVAL results - ignore that. */
112 if (errno == EINVAL)
113 break;
Simon Kelley22d904d2012-02-26 20:13:45 +0000114
Simon Kelley50303b12012-04-04 22:13:17 +0100115 my_syslog(LOG_ERR, _("failed to send packet: %s"), strerror(errno));
Simon Kelley29689cf2012-03-22 14:01:00 +0000116 return 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100117 }
Simon Kelley29d28dd2012-12-03 14:05:59 +0000118
Simon Kelley29689cf2012-03-22 14:01:00 +0000119 return 1;
Simon Kelley44a2a312004-03-10 20:04:35 +0000120}
121
Simon Kelley28866e92011-02-14 20:19:14 +0000122static unsigned int search_servers(time_t now, struct all_addr **addrpp,
123 unsigned int qtype, char *qdomain, int *type, char **domain, int *norebind)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100124
125{
126 /* If the query ends in the domain in one of our servers, set
127 domain to point to that name. We find the largest match to allow both
128 domain.org and sub.domain.org to exist. */
129
130 unsigned int namelen = strlen(qdomain);
131 unsigned int matchlen = 0;
132 struct server *serv;
Simon Kelley28866e92011-02-14 20:19:14 +0000133 unsigned int flags = 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100134
Simon Kelley3be34542004-09-11 19:12:13 +0100135 for (serv = daemon->servers; serv; serv=serv->next)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100136 /* domain matches take priority over NODOTS matches */
Simon Kelley3d8df262005-08-29 12:19:27 +0100137 if ((serv->flags & SERV_FOR_NODOTS) && *type != SERV_HAS_DOMAIN && !strchr(qdomain, '.') && namelen != 0)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100138 {
Simon Kelley28866e92011-02-14 20:19:14 +0000139 unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100140 *type = SERV_FOR_NODOTS;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100141 if (serv->flags & SERV_NO_ADDR)
Simon Kelley36717ee2004-09-20 19:20:58 +0100142 flags = F_NXDOMAIN;
143 else if (serv->flags & SERV_LITERAL_ADDRESS)
144 {
145 if (sflag & qtype)
146 {
147 flags = sflag;
148 if (serv->addr.sa.sa_family == AF_INET)
149 *addrpp = (struct all_addr *)&serv->addr.in.sin_addr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100150#ifdef HAVE_IPV6
Simon Kelley36717ee2004-09-20 19:20:58 +0100151 else
152 *addrpp = (struct all_addr *)&serv->addr.in6.sin6_addr;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100153#endif
Simon Kelley36717ee2004-09-20 19:20:58 +0100154 }
Simon Kelley824af852008-02-12 20:43:05 +0000155 else if (!flags || (flags & F_NXDOMAIN))
Simon Kelley36717ee2004-09-20 19:20:58 +0100156 flags = F_NOERR;
157 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100158 }
159 else if (serv->flags & SERV_HAS_DOMAIN)
160 {
161 unsigned int domainlen = strlen(serv->domain);
Simon Kelleyb8187c82005-11-26 21:46:27 +0000162 char *matchstart = qdomain + namelen - domainlen;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100163 if (namelen >= domainlen &&
Simon Kelleyb8187c82005-11-26 21:46:27 +0000164 hostname_isequal(matchstart, serv->domain) &&
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100165 (domainlen == 0 || namelen == domainlen || *(matchstart-1) == '.' ))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100166 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100167 if (serv->flags & SERV_NO_REBIND)
168 *norebind = 1;
Simon Kelley28866e92011-02-14 20:19:14 +0000169 else
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100170 {
Simon Kelley28866e92011-02-14 20:19:14 +0000171 unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6;
172 /* implement priority rules for --address and --server for same domain.
173 --address wins if the address is for the correct AF
174 --server wins otherwise. */
175 if (domainlen != 0 && domainlen == matchlen)
Simon Kelley36717ee2004-09-20 19:20:58 +0100176 {
Simon Kelley28866e92011-02-14 20:19:14 +0000177 if ((serv->flags & SERV_LITERAL_ADDRESS))
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100178 {
Simon Kelley28866e92011-02-14 20:19:14 +0000179 if (!(sflag & qtype) && flags == 0)
180 continue;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100181 }
Simon Kelley28866e92011-02-14 20:19:14 +0000182 else
183 {
184 if (flags & (F_IPV4 | F_IPV6))
185 continue;
186 }
Simon Kelley36717ee2004-09-20 19:20:58 +0100187 }
Simon Kelley28866e92011-02-14 20:19:14 +0000188
189 if (domainlen >= matchlen)
190 {
191 *type = serv->flags & (SERV_HAS_DOMAIN | SERV_USE_RESOLV | SERV_NO_REBIND);
192 *domain = serv->domain;
193 matchlen = domainlen;
194 if (serv->flags & SERV_NO_ADDR)
195 flags = F_NXDOMAIN;
196 else if (serv->flags & SERV_LITERAL_ADDRESS)
197 {
198 if (sflag & qtype)
199 {
200 flags = sflag;
201 if (serv->addr.sa.sa_family == AF_INET)
202 *addrpp = (struct all_addr *)&serv->addr.in.sin_addr;
203#ifdef HAVE_IPV6
204 else
205 *addrpp = (struct all_addr *)&serv->addr.in6.sin6_addr;
206#endif
207 }
208 else if (!flags || (flags & F_NXDOMAIN))
209 flags = F_NOERR;
210 }
211 else
212 flags = 0;
213 }
214 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100215 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100216 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100217
Simon Kelley7de060b2011-08-26 17:24:52 +0100218 if (flags == 0 && !(qtype & F_QUERY) &&
Simon Kelley28866e92011-02-14 20:19:14 +0000219 option_bool(OPT_NODOTS_LOCAL) && !strchr(qdomain, '.') && namelen != 0)
Simon Kelley7de060b2011-08-26 17:24:52 +0100220 /* don't forward A or AAAA queries for simple names, except the empty name */
221 flags = F_NOERR;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100222
Simon Kelley5aabfc72007-08-29 11:24:47 +0100223 if (flags == F_NXDOMAIN && check_for_local_domain(qdomain, now))
Simon Kelleyc1bb8502004-08-11 18:40:17 +0100224 flags = F_NOERR;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100225
Simon Kelley824af852008-02-12 20:43:05 +0000226 if (flags)
227 {
228 int logflags = 0;
229
230 if (flags == F_NXDOMAIN || flags == F_NOERR)
231 logflags = F_NEG | qtype;
232
Simon Kelley1a6bca82008-07-11 11:11:42 +0100233 log_query(logflags | flags | F_CONFIG | F_FORWARD, qdomain, *addrpp, NULL);
Simon Kelley824af852008-02-12 20:43:05 +0000234 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100235 else if ((*type) & SERV_USE_RESOLV)
236 {
237 *type = 0; /* use normal servers for this domain */
238 *domain = NULL;
239 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100240 return flags;
241}
Simon Kelley44a2a312004-03-10 20:04:35 +0000242
Simon Kelley824af852008-02-12 20:43:05 +0000243static int forward_query(int udpfd, union mysockaddr *udpaddr,
244 struct all_addr *dst_addr, unsigned int dst_iface,
Simon Kelley83349b82014-02-10 21:02:01 +0000245 struct dns_header *header, size_t plen, time_t now,
Simon Kelley613ad152014-02-25 23:02:28 +0000246 struct frec *forward, int ad_reqd, int do_bit)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000247{
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000248 char *domain = NULL;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100249 int type = 0, norebind = 0;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000250 struct all_addr *addrp = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +0000251 unsigned int flags = 0;
Simon Kelleyde379512004-06-22 20:23:33 +0100252 struct server *start = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000253#ifdef HAVE_DNSSEC
254 void *hash = hash_questions(header, plen, daemon->namebuff);
255#else
256 unsigned int crc = questions_crc(header, plen, daemon->namebuff);
257 void *hash = &crc;
258#endif
259 unsigned int gotname = extract_request(header, plen, daemon->namebuff, NULL);
260
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000261 (void)do_bit;
262
Simon Kelley3d8df262005-08-29 12:19:27 +0100263 /* may be no servers available. */
264 if (!daemon->servers)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000265 forward = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000266 else if (forward || (hash && (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, hash))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000267 {
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000268#ifdef HAVE_DNSSEC
Simon Kelleydac74312014-02-13 16:43:49 +0000269 /* If we've already got an answer to this query, but we're awaiting keys for validation,
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000270 there's no point retrying the query, retry the key query instead...... */
271 if (forward->blocking_query)
272 {
273 int fd;
274
275 while (forward->blocking_query)
276 forward = forward->blocking_query;
277
278 blockdata_retrieve(forward->stash, forward->stash_len, (void *)header);
279 plen = forward->stash_len;
280
Simon Kelley2b291912014-03-21 11:13:55 +0000281 if (forward->sentto->addr.sa.sa_family == AF_INET)
Simon Kelley25cf5e32015-01-09 15:53:03 +0000282 log_query(F_NOEXTRA | F_DNSSEC | F_IPV4, "retry", (struct all_addr *)&forward->sentto->addr.in.sin_addr, "dnssec");
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000283#ifdef HAVE_IPV6
284 else
Simon Kelley25cf5e32015-01-09 15:53:03 +0000285 log_query(F_NOEXTRA | F_DNSSEC | F_IPV6, "retry", (struct all_addr *)&forward->sentto->addr.in6.sin6_addr, "dnssec");
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000286#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
Simon Kelley25cf5e32015-01-09 15:53:03 +0000392 /* If a query is retried, use the log_id for the retry when logging the answer. */
393 forward->log_id = daemon->log_id;
394
Giacomo Tazzari797a7af2013-04-22 13:16:37 +0100395 if (option_bool(OPT_ADD_MAC))
Simon Kelley60b68062014-01-08 12:10:28 +0000396 plen = add_mac(header, plen, ((char *) header) + daemon->packet_buff_sz, &forward->source);
Simon Kelley28866e92011-02-14 20:19:14 +0000397
Simon Kelleyed4c0762013-10-08 20:46:34 +0100398 if (option_bool(OPT_CLIENT_SUBNET))
399 {
Simon Kelley60b68062014-01-08 12:10:28 +0000400 size_t new = add_source_addr(header, plen, ((char *) header) + daemon->packet_buff_sz, &forward->source);
Simon Kelleyed4c0762013-10-08 20:46:34 +0100401 if (new != plen)
402 {
403 plen = new;
404 forward->flags |= FREC_HAS_SUBNET;
405 }
406 }
407
Simon Kelley3a237152013-12-12 12:15:50 +0000408#ifdef HAVE_DNSSEC
409 if (option_bool(OPT_DNSSEC_VALID))
Simon Kelley0fc2f312014-01-08 10:26:58 +0000410 {
Simon Kelley613ad152014-02-25 23:02:28 +0000411 size_t new_plen = add_do_bit(header, plen, ((char *) header) + daemon->packet_buff_sz);
412
Simon Kelley5b3bf922014-01-25 17:03:07 +0000413 /* For debugging, set Checking Disabled, otherwise, have the upstream check too,
414 this allows it to select auth servers when one is returning bad data. */
415 if (option_bool(OPT_DNSSEC_DEBUG))
416 header->hb4 |= HB4_CD;
Simon Kelley613ad152014-02-25 23:02:28 +0000417
418 if (new_plen != plen)
419 forward->flags |= FREC_ADDED_PHEADER;
420
421 plen = new_plen;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000422 }
Simon Kelley3a237152013-12-12 12:15:50 +0000423#endif
424
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000425 while (1)
426 {
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000427 /* only send to servers dealing with our domain.
428 domain may be NULL, in which case server->domain
429 must be NULL also. */
430
Simon Kelleyde379512004-06-22 20:23:33 +0100431 if (type == (start->flags & SERV_TYPE) &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100432 (type != SERV_HAS_DOMAIN || hostname_isequal(domain, start->domain)) &&
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +0100433 !(start->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP)))
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000434 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100435 int fd;
436
437 /* find server socket to use, may need to get random one. */
438 if (start->sfd)
439 fd = start->sfd->fd;
440 else
441 {
442#ifdef HAVE_IPV6
443 if (start->addr.sa.sa_family == AF_INET6)
444 {
445 if (!forward->rfd6 &&
446 !(forward->rfd6 = allocate_rfd(AF_INET6)))
447 break;
Simon Kelley3927da42008-07-20 15:10:39 +0100448 daemon->rfd_save = forward->rfd6;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100449 fd = forward->rfd6->fd;
450 }
451 else
452#endif
453 {
454 if (!forward->rfd4 &&
455 !(forward->rfd4 = allocate_rfd(AF_INET)))
456 break;
Simon Kelley3927da42008-07-20 15:10:39 +0100457 daemon->rfd_save = forward->rfd4;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100458 fd = forward->rfd4->fd;
459 }
Simon Kelley7de060b2011-08-26 17:24:52 +0100460
461#ifdef HAVE_CONNTRACK
462 /* Copy connection mark of incoming query to outgoing connection. */
463 if (option_bool(OPT_CONNTRACK))
464 {
465 unsigned int mark;
Giacomo Tazzari797a7af2013-04-22 13:16:37 +0100466 if (get_incoming_mark(&forward->source, &forward->dest, 0, &mark))
Simon Kelley7de060b2011-08-26 17:24:52 +0100467 setsockopt(fd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
468 }
469#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +0100470 }
471
472 if (sendto(fd, (char *)header, plen, 0,
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100473 &start->addr.sa,
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100474 sa_len(&start->addr)) == -1)
475 {
476 if (retry_send())
477 continue;
478 }
479 else
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000480 {
Simon Kelleycdeda282006-03-16 20:16:06 +0000481 /* Keep info in case we want to re-send this packet */
482 daemon->srv_save = start;
483 daemon->packet_len = plen;
484
Simon Kelleyde379512004-06-22 20:23:33 +0100485 if (!gotname)
Simon Kelley3be34542004-09-11 19:12:13 +0100486 strcpy(daemon->namebuff, "query");
Simon Kelleyde379512004-06-22 20:23:33 +0100487 if (start->addr.sa.sa_family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +0100488 log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +0100489 (struct all_addr *)&start->addr.in.sin_addr, NULL);
Simon Kelleyde379512004-06-22 20:23:33 +0100490#ifdef HAVE_IPV6
491 else
Simon Kelley3be34542004-09-11 19:12:13 +0100492 log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +0100493 (struct all_addr *)&start->addr.in6.sin6_addr, NULL);
Simon Kelleyde379512004-06-22 20:23:33 +0100494#endif
Simon Kelley824af852008-02-12 20:43:05 +0000495 start->queries++;
Simon Kelleyde379512004-06-22 20:23:33 +0100496 forwarded = 1;
497 forward->sentto = start;
Simon Kelley0a852542005-03-23 20:28:59 +0000498 if (!forward->forwardall)
Simon Kelleyde379512004-06-22 20:23:33 +0100499 break;
Simon Kelley0a852542005-03-23 20:28:59 +0000500 forward->forwardall++;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000501 }
502 }
503
Simon Kelleyde379512004-06-22 20:23:33 +0100504 if (!(start = start->next))
Simon Kelley3be34542004-09-11 19:12:13 +0100505 start = daemon->servers;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000506
Simon Kelleyde379512004-06-22 20:23:33 +0100507 if (start == firstsentto)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000508 break;
509 }
510
Simon Kelleyde379512004-06-22 20:23:33 +0100511 if (forwarded)
Simon Kelley824af852008-02-12 20:43:05 +0000512 return 1;
Simon Kelleyde379512004-06-22 20:23:33 +0100513
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000514 /* could not send on, prepare to return */
515 header->id = htons(forward->orig_id);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100516 free_frec(forward); /* cancel */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000517 }
518
519 /* could not send on, return empty answer or address if known for whole domain */
Simon Kelleyb8187c82005-11-26 21:46:27 +0000520 if (udpfd != -1)
521 {
Simon Kelleycdeda282006-03-16 20:16:06 +0000522 plen = setup_reply(header, plen, addrp, flags, daemon->local_ttl);
Simon Kelley54dd3932012-06-20 11:23:38 +0100523 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 +0000524 }
525
Simon Kelley824af852008-02-12 20:43:05 +0000526 return 0;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000527}
528
Simon Kelleyed4c0762013-10-08 20:46:34 +0100529static 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 +0000530 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 +0100531{
Simon Kelley36717ee2004-09-20 19:20:58 +0100532 unsigned char *pheader, *sizep;
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000533 char **sets = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000534 int munged = 0, is_sign;
Simon Kelleycdeda282006-03-16 20:16:06 +0000535 size_t plen;
536
Simon Kelley83349b82014-02-10 21:02:01 +0000537 (void)ad_reqd;
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000538 (void) do_bit;
Simon Kelley83349b82014-02-10 21:02:01 +0000539
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000540#ifdef HAVE_IPSET
Simon Kelley82a14af2014-04-13 20:48:57 +0100541 if (daemon->ipsets && extract_request(header, n, daemon->namebuff, NULL))
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000542 {
Simon Kelley82a14af2014-04-13 20:48:57 +0100543 /* Similar algorithm to search_servers. */
544 struct ipsets *ipset_pos;
545 unsigned int namelen = strlen(daemon->namebuff);
546 unsigned int matchlen = 0;
547 for (ipset_pos = daemon->ipsets; ipset_pos; ipset_pos = ipset_pos->next)
Simon Kelley6c0cb852014-01-17 14:40:46 +0000548 {
Simon Kelley82a14af2014-04-13 20:48:57 +0100549 unsigned int domainlen = strlen(ipset_pos->domain);
550 char *matchstart = daemon->namebuff + namelen - domainlen;
551 if (namelen >= domainlen && hostname_isequal(matchstart, ipset_pos->domain) &&
552 (domainlen == 0 || namelen == domainlen || *(matchstart - 1) == '.' ) &&
553 domainlen >= matchlen)
554 {
555 matchlen = domainlen;
556 sets = ipset_pos->sets;
557 }
Simon Kelley6c0cb852014-01-17 14:40:46 +0000558 }
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000559 }
560#endif
561
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100562 /* If upstream is advertising a larger UDP packet size
Simon Kelley9009d742008-11-14 20:04:27 +0000563 than we allow, trim it so that we don't get overlarge
564 requests for the client. We can't do this for signed packets. */
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100565
Simon Kelleyed4c0762013-10-08 20:46:34 +0100566 if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100567 {
Simon Kelley83349b82014-02-10 21:02:01 +0000568 unsigned short udpsz;
569 unsigned char *psave = sizep;
570
571 GETSHORT(udpsz, sizep);
572
573 if (!is_sign && udpsz > daemon->edns_pktsz)
574 PUTSHORT(daemon->edns_pktsz, psave);
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100575
Simon Kelleyed4c0762013-10-08 20:46:34 +0100576 if (check_subnet && !check_source(header, plen, pheader, query_source))
577 {
578 my_syslog(LOG_WARNING, _("discarding DNS reply: subnet option mismatch"));
579 return 0;
580 }
Simon Kelley613ad152014-02-25 23:02:28 +0000581
582 if (added_pheader)
583 {
584 pheader = 0;
585 header->arcount = htons(0);
586 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100587 }
Simon Kelley83349b82014-02-10 21:02:01 +0000588
Simon Kelley28866e92011-02-14 20:19:14 +0000589 /* RFC 4035 sect 4.6 para 3 */
Giovanni Bajo237724c2012-04-05 02:46:52 +0200590 if (!is_sign && !option_bool(OPT_DNSSEC_PROXY))
Simon Kelley795501b2014-01-08 18:11:55 +0000591 header->hb4 &= ~HB4_AD;
Simon Kelley3a237152013-12-12 12:15:50 +0000592
Simon Kelley572b41e2011-02-18 18:11:18 +0000593 if (OPCODE(header) != QUERY || (RCODE(header) != NOERROR && RCODE(header) != NXDOMAIN))
Simon Kelley8938ae02014-05-01 17:46:25 +0100594 return resize_packet(header, n, pheader, plen);
Simon Kelley36717ee2004-09-20 19:20:58 +0100595
Simon Kelley0a852542005-03-23 20:28:59 +0000596 /* Complain loudly if the upstream server is non-recursive. */
Simon Kelley572b41e2011-02-18 18:11:18 +0000597 if (!(header->hb4 & HB4_RA) && RCODE(header) == NOERROR && ntohs(header->ancount) == 0 &&
Simon Kelley0a852542005-03-23 20:28:59 +0000598 server && !(server->flags & SERV_WARNED_RECURSIVE))
599 {
Simon Kelley3d8df262005-08-29 12:19:27 +0100600 prettyprint_addr(&server->addr, daemon->namebuff);
Simon Kelleyf2621c72007-04-29 19:47:21 +0100601 my_syslog(LOG_WARNING, _("nameserver %s refused to do a recursive query"), daemon->namebuff);
Simon Kelley28866e92011-02-14 20:19:14 +0000602 if (!option_bool(OPT_LOG))
Simon Kelley0a852542005-03-23 20:28:59 +0000603 server->flags |= SERV_WARNED_RECURSIVE;
604 }
Giovanni Bajoe292e932012-04-22 14:32:02 +0200605
Simon Kelley572b41e2011-02-18 18:11:18 +0000606 if (daemon->bogus_addr && RCODE(header) != NXDOMAIN &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100607 check_for_bogus_wildcard(header, n, daemon->namebuff, daemon->bogus_addr, now))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100608 {
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100609 munged = 1;
Simon Kelley572b41e2011-02-18 18:11:18 +0000610 SET_RCODE(header, NXDOMAIN);
611 header->hb3 &= ~HB3_AA;
Simon Kelley6938f342014-01-26 22:47:39 +0000612 cache_secure = 0;
Simon Kelley36717ee2004-09-20 19:20:58 +0100613 }
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100614 else
Simon Kelley36717ee2004-09-20 19:20:58 +0100615 {
Simon Kelley6938f342014-01-26 22:47:39 +0000616 int doctored = 0;
617
Simon Kelley572b41e2011-02-18 18:11:18 +0000618 if (RCODE(header) == NXDOMAIN &&
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100619 extract_request(header, n, daemon->namebuff, NULL) &&
Simon Kelley5aabfc72007-08-29 11:24:47 +0100620 check_for_local_domain(daemon->namebuff, now))
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100621 {
Simon Kelley36717ee2004-09-20 19:20:58 +0100622 /* if we forwarded a query for a locally known name (because it was for
623 an unknown type) and the answer is NXDOMAIN, convert that to NODATA,
624 since we know that the domain exists, even if upstream doesn't */
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100625 munged = 1;
Simon Kelley572b41e2011-02-18 18:11:18 +0000626 header->hb3 |= HB3_AA;
627 SET_RCODE(header, NOERROR);
Simon Kelley6938f342014-01-26 22:47:39 +0000628 cache_secure = 0;
Simon Kelley36717ee2004-09-20 19:20:58 +0100629 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000630
Simon Kelley6938f342014-01-26 22:47:39 +0000631 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 +0000632 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100633 my_syslog(LOG_WARNING, _("possible DNS-rebind attack detected: %s"), daemon->namebuff);
Simon Kelley824af852008-02-12 20:43:05 +0000634 munged = 1;
Simon Kelley6938f342014-01-26 22:47:39 +0000635 cache_secure = 0;
Simon Kelley824af852008-02-12 20:43:05 +0000636 }
Simon Kelley6938f342014-01-26 22:47:39 +0000637
638 if (doctored)
639 cache_secure = 0;
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100640 }
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100641
Simon Kelleya25720a2014-01-14 23:13:55 +0000642#ifdef HAVE_DNSSEC
643 if (no_cache && !(header->hb4 & HB4_CD))
644 {
Simon Kelley7d23a662014-01-26 09:33:21 +0000645 if (!option_bool(OPT_DNSSEC_DEBUG))
Simon Kelleya25720a2014-01-14 23:13:55 +0000646 {
647 /* Bogus reply, turn into SERVFAIL */
648 SET_RCODE(header, SERVFAIL);
649 munged = 1;
650 }
651 }
Simon Kelley6938f342014-01-26 22:47:39 +0000652
653 if (option_bool(OPT_DNSSEC_VALID))
654 header->hb4 &= ~HB4_AD;
655
Simon Kelley83349b82014-02-10 21:02:01 +0000656 if (!(header->hb4 & HB4_CD) && ad_reqd && cache_secure)
Simon Kelley6938f342014-01-26 22:47:39 +0000657 header->hb4 |= HB4_AD;
Simon Kelley613ad152014-02-25 23:02:28 +0000658
659 /* If the requestor didn't set the DO bit, don't return DNSSEC info. */
660 if (!do_bit)
661 n = filter_rrsigs(header, n);
Simon Kelleya25720a2014-01-14 23:13:55 +0000662#endif
663
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100664 /* do this after extract_addresses. Ensure NODATA reply and remove
665 nameserver info. */
666
667 if (munged)
668 {
669 header->ancount = htons(0);
670 header->nscount = htons(0);
671 header->arcount = htons(0);
672 }
673
Simon Kelley36717ee2004-09-20 19:20:58 +0100674 /* the bogus-nxdomain stuff, doctor and NXDOMAIN->NODATA munging can all elide
675 sections of the packet. Find the new length here and put back pseudoheader
676 if it was removed. */
677 return resize_packet(header, n, pheader, plen);
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100678}
679
Simon Kelley3be34542004-09-11 19:12:13 +0100680/* sets new last_server */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100681void reply_query(int fd, int family, time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000682{
683 /* packet from peer server, extract data for cache, and send to
684 original requester */
Simon Kelley572b41e2011-02-18 18:11:18 +0000685 struct dns_header *header;
Simon Kelleyde379512004-06-22 20:23:33 +0100686 union mysockaddr serveraddr;
Simon Kelley832af0b2007-01-21 20:01:28 +0000687 struct frec *forward;
Simon Kelleyde379512004-06-22 20:23:33 +0100688 socklen_t addrlen = sizeof(serveraddr);
Simon Kelley60b68062014-01-08 12:10:28 +0000689 ssize_t n = recvfrom(fd, daemon->packet, daemon->packet_buff_sz, 0, &serveraddr.sa, &addrlen);
Simon Kelleycdeda282006-03-16 20:16:06 +0000690 size_t nn;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100691 struct server *server;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000692 void *hash;
693#ifndef HAVE_DNSSEC
694 unsigned int crc;
695#endif
696
Simon Kelleycdeda282006-03-16 20:16:06 +0000697 /* packet buffer overwritten */
698 daemon->srv_save = NULL;
Simon Kelley832af0b2007-01-21 20:01:28 +0000699
Simon Kelleyde379512004-06-22 20:23:33 +0100700 /* Determine the address of the server replying so that we can mark that as good */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100701 serveraddr.sa.sa_family = family;
Simon Kelleyde379512004-06-22 20:23:33 +0100702#ifdef HAVE_IPV6
703 if (serveraddr.sa.sa_family == AF_INET6)
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100704 serveraddr.in6.sin6_flowinfo = 0;
Simon Kelleyde379512004-06-22 20:23:33 +0100705#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000706
Simon Kelley490f9072014-03-24 22:04:42 +0000707 header = (struct dns_header *)daemon->packet;
708
709 if (n < (int)sizeof(struct dns_header) || !(header->hb3 & HB3_QR))
710 return;
711
Simon Kelley1a6bca82008-07-11 11:11:42 +0100712 /* spoof check: answer must come from known server, */
713 for (server = daemon->servers; server; server = server->next)
714 if (!(server->flags & (SERV_LITERAL_ADDRESS | SERV_NO_ADDR)) &&
715 sockaddr_isequal(&server->addr, &serveraddr))
716 break;
Simon Kelley490f9072014-03-24 22:04:42 +0000717
718 if (!server)
719 return;
720
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000721#ifdef HAVE_DNSSEC
722 hash = hash_questions(header, n, daemon->namebuff);
723#else
724 hash = &crc;
725 crc = questions_crc(header, n, daemon->namebuff);
726#endif
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100727
Simon Kelley490f9072014-03-24 22:04:42 +0000728 if (!(forward = lookup_frec(ntohs(header->id), hash)))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100729 return;
Simon Kelley490f9072014-03-24 22:04:42 +0000730
Simon Kelley25cf5e32015-01-09 15:53:03 +0000731 /* log_query gets called indirectly all over the place, so
732 pass these in global variables - sorry. */
733 daemon->log_display_id = forward->log_id;
734 daemon->log_source_addr = &forward->source;
735
Glen Huang32fc6db2014-12-27 15:28:12 +0000736 if (daemon->ignore_addr && RCODE(header) == NOERROR &&
737 check_for_ignored_address(header, n, daemon->ignore_addr))
738 return;
739
Simon Kelley572b41e2011-02-18 18:11:18 +0000740 if ((RCODE(header) == SERVFAIL || RCODE(header) == REFUSED) &&
Simon Kelley28866e92011-02-14 20:19:14 +0000741 !option_bool(OPT_ORDER) &&
Simon Kelley1a6bca82008-07-11 11:11:42 +0100742 forward->forwardall == 0)
743 /* for broken servers, attempt to send to another one. */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000744 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100745 unsigned char *pheader;
746 size_t plen;
747 int is_sign;
Simon Kelley832af0b2007-01-21 20:01:28 +0000748
Simon Kelley1a6bca82008-07-11 11:11:42 +0100749 /* recreate query from reply */
750 pheader = find_pseudoheader(header, (size_t)n, &plen, NULL, &is_sign);
751 if (!is_sign)
Simon Kelley832af0b2007-01-21 20:01:28 +0000752 {
Simon Kelley1a6bca82008-07-11 11:11:42 +0100753 header->ancount = htons(0);
754 header->nscount = htons(0);
755 header->arcount = htons(0);
756 if ((nn = resize_packet(header, (size_t)n, pheader, plen)))
757 {
Simon Kelley572b41e2011-02-18 18:11:18 +0000758 header->hb3 &= ~(HB3_QR | HB3_TC);
Simon Kelley613ad152014-02-25 23:02:28 +0000759 forward_query(-1, NULL, NULL, 0, header, nn, now, forward, 0, 0);
Simon Kelley1a6bca82008-07-11 11:11:42 +0100760 return;
761 }
762 }
763 }
Simon Kelley3a237152013-12-12 12:15:50 +0000764
765 server = forward->sentto;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100766
767 if ((forward->sentto->flags & SERV_TYPE) == 0)
768 {
Simon Kelley51967f92014-03-25 21:07:00 +0000769 if (RCODE(header) == REFUSED)
Simon Kelley1a6bca82008-07-11 11:11:42 +0100770 server = NULL;
771 else
772 {
773 struct server *last_server;
Simon Kelley832af0b2007-01-21 20:01:28 +0000774
Simon Kelley1a6bca82008-07-11 11:11:42 +0100775 /* find good server by address if possible, otherwise assume the last one we sent to */
776 for (last_server = daemon->servers; last_server; last_server = last_server->next)
777 if (!(last_server->flags & (SERV_LITERAL_ADDRESS | SERV_HAS_DOMAIN | SERV_FOR_NODOTS | SERV_NO_ADDR)) &&
778 sockaddr_isequal(&last_server->addr, &serveraddr))
779 {
780 server = last_server;
781 break;
782 }
783 }
Simon Kelley28866e92011-02-14 20:19:14 +0000784 if (!option_bool(OPT_ALL_SERVERS))
Simon Kelley1a6bca82008-07-11 11:11:42 +0100785 daemon->last_server = server;
786 }
Simon Kelley3a237152013-12-12 12:15:50 +0000787
Simon Kelley1a6bca82008-07-11 11:11:42 +0100788 /* If the answer is an error, keep the forward record in place in case
789 we get a good reply from another server. Kill it when we've
790 had replies from all to avoid filling the forwarding table when
791 everything is broken */
Simon Kelley51967f92014-03-25 21:07:00 +0000792 if (forward->forwardall == 0 || --forward->forwardall == 1 || RCODE(header) != SERVFAIL)
Simon Kelley1a6bca82008-07-11 11:11:42 +0100793 {
Simon Kelley3a237152013-12-12 12:15:50 +0000794 int check_rebind = 0, no_cache_dnssec = 0, cache_secure = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100795
Simon Kelley3a237152013-12-12 12:15:50 +0000796 if (option_bool(OPT_NO_REBIND))
797 check_rebind = !(forward->flags & FREC_NOREBIND);
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100798
Simon Kelley3a237152013-12-12 12:15:50 +0000799 /* Don't cache replies where DNSSEC validation was turned off, either
800 the upstream server told us so, or the original query specified it. */
801 if ((header->hb4 & HB4_CD) || (forward->flags & FREC_CHECKING_DISABLED))
802 no_cache_dnssec = 1;
803
804#ifdef HAVE_DNSSEC
Simon Kelley51967f92014-03-25 21:07:00 +0000805 if (server && option_bool(OPT_DNSSEC_VALID) && !(forward->flags & FREC_CHECKING_DISABLED))
Simon Kelley3a237152013-12-12 12:15:50 +0000806 {
Simon Kelley9d633042013-12-13 15:36:55 +0000807 int status;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000808
809 /* We've had a reply already, which we're validating. Ignore this duplicate */
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000810 if (forward->blocking_query)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000811 return;
Simon Kelley9d633042013-12-13 15:36:55 +0000812
Simon Kelley871417d2014-01-08 11:22:32 +0000813 if (header->hb3 & HB3_TC)
814 {
815 /* Truncated answer can't be validated.
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000816 If this is an answer to a DNSSEC-generated query, we still
817 need to get the client to retry over TCP, so return
818 an answer with the TC bit set, even if the actual answer fits.
819 */
820 status = STAT_TRUNCATED;
Simon Kelley871417d2014-01-08 11:22:32 +0000821 }
822 else if (forward->flags & FREC_DNSKEY_QUERY)
Simon Kelley8d718cb2014-02-03 16:27:37 +0000823 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelleyc3e0b9b2013-12-31 13:50:39 +0000824 else if (forward->flags & FREC_DS_QUERY)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000825 {
826 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley97e618a2015-01-07 21:55:43 +0000827 if (status == STAT_NO_DS || status == STAT_NO_NS)
828 status = STAT_BOGUS;
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000829 }
830 else if (forward->flags & FREC_CHECK_NOSIGN)
Simon Kelley97e618a2015-01-07 21:55:43 +0000831 {
832 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
833 if (status != STAT_NEED_KEY)
834 status = do_check_sign(forward, status, now, daemon->namebuff, daemon->keyname);
835 }
Simon Kelley9d633042013-12-13 15:36:55 +0000836 else
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000837 {
Simon Kelley97e618a2015-01-07 21:55:43 +0000838 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000839 if (status == STAT_NO_SIG)
840 {
841 if (option_bool(OPT_DNSSEC_NO_SIGN))
Simon Kelley97e618a2015-01-07 21:55:43 +0000842 status = send_check_sign(forward, now, header, n, daemon->namebuff, daemon->keyname);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000843 else
844 status = STAT_INSECURE;
845 }
846 }
Simon Kelley3a237152013-12-12 12:15:50 +0000847 /* Can't validate, as we're missing key data. Put this
848 answer aside, whilst we get that. */
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000849 if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY)
Simon Kelley3a237152013-12-12 12:15:50 +0000850 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000851 struct frec *new, *orig;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000852
Simon Kelley7fa836e2014-02-10 20:11:24 +0000853 /* Free any saved query */
854 if (forward->stash)
855 blockdata_free(forward->stash);
856
857 /* Now save reply pending receipt of key data */
858 if (!(forward->stash = blockdata_alloc((char *)header, n)))
859 return;
860 forward->stash_len = n;
861
862 anotherkey:
863 /* Find the original query that started it all.... */
864 for (orig = forward; orig->dependent; orig = orig->dependent);
865
866 if (--orig->work_counter == 0 || !(new = get_new_frec(now, NULL, 1)))
867 status = STAT_INSECURE;
868 else
Simon Kelley3a237152013-12-12 12:15:50 +0000869 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000870 int fd;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000871 struct frec *next = new->next;
872 *new = *forward; /* copy everything, then overwrite */
873 new->next = next;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000874 new->blocking_query = NULL;
Simon Kelley8a8bbad2014-03-27 22:02:17 +0000875 new->sentto = server;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000876 new->rfd4 = NULL;
Simon Kelley97e618a2015-01-07 21:55:43 +0000877 new->orig_domain = NULL;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000878#ifdef HAVE_IPV6
879 new->rfd6 = NULL;
880#endif
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000881 new->flags &= ~(FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_CHECK_NOSIGN);
Simon Kelley9d633042013-12-13 15:36:55 +0000882
Simon Kelley7fa836e2014-02-10 20:11:24 +0000883 new->dependent = forward; /* to find query awaiting new one. */
884 forward->blocking_query = new; /* for garbage cleaning */
885 /* validate routines leave name of required record in daemon->keyname */
886 if (status == STAT_NEED_KEY)
887 {
888 new->flags |= FREC_DNSKEY_QUERY;
889 nn = dnssec_generate_query(header, ((char *) header) + daemon->packet_buff_sz,
890 daemon->keyname, forward->class, T_DNSKEY, &server->addr);
891 }
892 else
893 {
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000894 if (status == STAT_NEED_DS_NEG)
895 new->flags |= FREC_CHECK_NOSIGN;
896 else
897 new->flags |= FREC_DS_QUERY;
Simon Kelley7fa836e2014-02-10 20:11:24 +0000898 nn = dnssec_generate_query(header,((char *) header) + daemon->packet_buff_sz,
899 daemon->keyname, forward->class, T_DS, &server->addr);
900 }
901 if ((hash = hash_questions(header, nn, daemon->namebuff)))
902 memcpy(new->hash, hash, HASH_SIZE);
903 new->new_id = get_id();
904 header->id = htons(new->new_id);
905 /* Save query for retransmission */
Simon Kelley97e618a2015-01-07 21:55:43 +0000906 if (!(new->stash = blockdata_alloc((char *)header, nn)))
907 return;
908
Simon Kelley7fa836e2014-02-10 20:11:24 +0000909 new->stash_len = nn;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000910
Simon Kelley7fa836e2014-02-10 20:11:24 +0000911 /* Don't resend this. */
912 daemon->srv_save = NULL;
913
914 if (server->sfd)
915 fd = server->sfd->fd;
Simon Kelleye0c0ad32014-01-16 22:42:07 +0000916 else
Simon Kelley3a237152013-12-12 12:15:50 +0000917 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000918 fd = -1;
Simon Kelley3a237152013-12-12 12:15:50 +0000919#ifdef HAVE_IPV6
Simon Kelley7fa836e2014-02-10 20:11:24 +0000920 if (server->addr.sa.sa_family == AF_INET6)
Simon Kelleyf1668d22014-01-08 16:53:27 +0000921 {
Simon Kelley7fa836e2014-02-10 20:11:24 +0000922 if (new->rfd6 || (new->rfd6 = allocate_rfd(AF_INET6)))
923 fd = new->rfd6->fd;
924 }
925 else
926#endif
927 {
928 if (new->rfd4 || (new->rfd4 = allocate_rfd(AF_INET)))
929 fd = new->rfd4->fd;
Simon Kelleyf1668d22014-01-08 16:53:27 +0000930 }
Simon Kelley3a237152013-12-12 12:15:50 +0000931 }
Simon Kelley7fa836e2014-02-10 20:11:24 +0000932
933 if (fd != -1)
934 {
935 while (sendto(fd, (char *)header, nn, 0, &server->addr.sa, sa_len(&server->addr)) == -1 && retry_send());
936 server->queries++;
937 }
938
939 return;
Simon Kelley3a237152013-12-12 12:15:50 +0000940 }
Simon Kelley3a237152013-12-12 12:15:50 +0000941 }
942
943 /* Ok, we reached far enough up the chain-of-trust that we can validate something.
944 Now wind back down, pulling back answers which wouldn't previously validate
Simon Kelley7fa836e2014-02-10 20:11:24 +0000945 and validate them with the new data. Note that if an answer needs multiple
946 keys to validate, we may find another key is needed, in which case we set off
947 down another branch of the tree. Once we get to the original answer
948 (FREC_DNSSEC_QUERY not set) and it validates, return it to the original requestor. */
Simon Kelley0744ca62014-01-25 16:40:15 +0000949 while (forward->dependent)
Simon Kelley3a237152013-12-12 12:15:50 +0000950 {
Simon Kelley0744ca62014-01-25 16:40:15 +0000951 struct frec *prev = forward->dependent;
952 free_frec(forward);
953 forward = prev;
954 forward->blocking_query = NULL; /* already gone */
955 blockdata_retrieve(forward->stash, forward->stash_len, (void *)header);
956 n = forward->stash_len;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000957
Simon Kelley0fc2f312014-01-08 10:26:58 +0000958 if (status == STAT_SECURE)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000959 {
Simon Kelley0744ca62014-01-25 16:40:15 +0000960 if (forward->flags & FREC_DNSKEY_QUERY)
961 status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
962 else if (forward->flags & FREC_DS_QUERY)
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000963 {
964 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
Simon Kelley97e618a2015-01-07 21:55:43 +0000965 if (status == STAT_NO_DS || status == STAT_NO_NS)
966 status = STAT_BOGUS;
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000967 }
968 else if (forward->flags & FREC_CHECK_NOSIGN)
Simon Kelley97e618a2015-01-07 21:55:43 +0000969 {
970 status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class);
971 if (status != STAT_NEED_KEY)
972 status = do_check_sign(forward, status, now, daemon->namebuff, daemon->keyname);
973 }
Simon Kelley0744ca62014-01-25 16:40:15 +0000974 else
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000975 {
Simon Kelley97e618a2015-01-07 21:55:43 +0000976 status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000977 if (status == STAT_NO_SIG)
978 {
979 if (option_bool(OPT_DNSSEC_NO_SIGN))
Simon Kelley97e618a2015-01-07 21:55:43 +0000980 status = send_check_sign(forward, now, header, n, daemon->namebuff, daemon->keyname);
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000981 else
982 status = STAT_INSECURE;
983 }
984 }
985
986 if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +0000987 goto anotherkey;
Simon Kelley3a237152013-12-12 12:15:50 +0000988 }
989 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000990
991 if (status == STAT_TRUNCATED)
Simon Kelley0744ca62014-01-25 16:40:15 +0000992 header->hb3 |= HB3_TC;
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000993 else
Simon Kelley7fa836e2014-02-10 20:11:24 +0000994 {
995 char *result;
996
997 if (forward->work_counter == 0)
998 result = "ABANDONED";
999 else
1000 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
1001
1002 log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result);
1003 }
Simon Kelley5d3b87a2014-01-20 11:57:23 +00001004
Simon Kelley0fc2f312014-01-08 10:26:58 +00001005 no_cache_dnssec = 0;
Simon Kelley5d3b87a2014-01-20 11:57:23 +00001006
Simon Kelley3a237152013-12-12 12:15:50 +00001007 if (status == STAT_SECURE)
1008 cache_secure = 1;
Simon Kelley3a237152013-12-12 12:15:50 +00001009 else if (status == STAT_BOGUS)
1010 no_cache_dnssec = 1;
1011 }
Simon Kelley83349b82014-02-10 21:02:01 +00001012#endif
1013
1014 /* restore CD bit to the value in the query */
1015 if (forward->flags & FREC_CHECKING_DISABLED)
1016 header->hb4 |= HB4_CD;
1017 else
1018 header->hb4 &= ~HB4_CD;
Simon Kelley3a237152013-12-12 12:15:50 +00001019
1020 if ((nn = process_reply(header, now, server, (size_t)n, check_rebind, no_cache_dnssec, cache_secure,
Simon Kelley613ad152014-02-25 23:02:28 +00001021 forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION,
1022 forward->flags & FREC_ADDED_PHEADER, forward->flags & FREC_HAS_SUBNET, &forward->source)))
Simon Kelley832af0b2007-01-21 20:01:28 +00001023 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01001024 header->id = htons(forward->orig_id);
Simon Kelley572b41e2011-02-18 18:11:18 +00001025 header->hb4 |= HB4_RA; /* recursion if available */
Simon Kelley54dd3932012-06-20 11:23:38 +01001026 send_from(forward->fd, option_bool(OPT_NOWILD) || option_bool (OPT_CLEVERBIND), daemon->packet, nn,
Simon Kelley50303b12012-04-04 22:13:17 +01001027 &forward->source, &forward->dest, forward->iface);
Simon Kelley832af0b2007-01-21 20:01:28 +00001028 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01001029 free_frec(forward); /* cancel */
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001030 }
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001031}
Simon Kelley44a2a312004-03-10 20:04:35 +00001032
Simon Kelley1a6bca82008-07-11 11:11:42 +01001033
Simon Kelley5aabfc72007-08-29 11:24:47 +01001034void receive_query(struct listener *listen, time_t now)
Simon Kelley44a2a312004-03-10 20:04:35 +00001035{
Simon Kelley572b41e2011-02-18 18:11:18 +00001036 struct dns_header *header = (struct dns_header *)daemon->packet;
Simon Kelley44a2a312004-03-10 20:04:35 +00001037 union mysockaddr source_addr;
Simon Kelleyc1bb8502004-08-11 18:40:17 +01001038 unsigned short type;
Simon Kelley44a2a312004-03-10 20:04:35 +00001039 struct all_addr dst_addr;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001040 struct in_addr netmask, dst_addr_4;
Simon Kelleycdeda282006-03-16 20:16:06 +00001041 size_t m;
1042 ssize_t n;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001043 int if_index = 0, auth_dns = 0;
1044#ifdef HAVE_AUTH
1045 int local_auth = 0;
1046#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001047 struct iovec iov[1];
1048 struct msghdr msg;
1049 struct cmsghdr *cmptr;
Simon Kelley44a2a312004-03-10 20:04:35 +00001050 union {
1051 struct cmsghdr align; /* this ensures alignment */
1052#ifdef HAVE_IPV6
1053 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
1054#endif
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001055#if defined(HAVE_LINUX_NETWORK)
Simon Kelley44a2a312004-03-10 20:04:35 +00001056 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
Simon Kelley824af852008-02-12 20:43:05 +00001057#elif defined(IP_RECVDSTADDR) && defined(HAVE_SOLARIS_NETWORK)
1058 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1059 CMSG_SPACE(sizeof(unsigned int))];
Simon Kelley44a2a312004-03-10 20:04:35 +00001060#elif defined(IP_RECVDSTADDR)
1061 char control[CMSG_SPACE(sizeof(struct in_addr)) +
1062 CMSG_SPACE(sizeof(struct sockaddr_dl))];
1063#endif
1064 } control_u;
Simon Kelley2329bef2013-12-03 13:41:16 +00001065#ifdef HAVE_IPV6
1066 /* Can always get recvd interface for IPv6 */
1067 int check_dst = !option_bool(OPT_NOWILD) || listen->family == AF_INET6;
1068#else
1069 int check_dst = !option_bool(OPT_NOWILD);
1070#endif
1071
Simon Kelleycdeda282006-03-16 20:16:06 +00001072 /* packet buffer overwritten */
1073 daemon->srv_save = NULL;
1074
Hans Dedecker98906272014-12-09 22:22:53 +00001075 dst_addr_4.s_addr = dst_addr.addr.addr4.s_addr = 0;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001076 netmask.s_addr = 0;
1077
Simon Kelley7e5664b2013-04-05 16:57:41 +01001078 if (option_bool(OPT_NOWILD) && listen->iface)
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001079 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001080 auth_dns = listen->iface->dns_auth;
1081
1082 if (listen->family == AF_INET)
1083 {
Hans Dedecker98906272014-12-09 22:22:53 +00001084 dst_addr_4 = dst_addr.addr.addr4 = listen->iface->addr.in.sin_addr;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001085 netmask = listen->iface->netmask;
1086 }
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001087 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001088
Simon Kelley3be34542004-09-11 19:12:13 +01001089 iov[0].iov_base = daemon->packet;
1090 iov[0].iov_len = daemon->edns_pktsz;
Simon Kelley44a2a312004-03-10 20:04:35 +00001091
1092 msg.msg_control = control_u.control;
1093 msg.msg_controllen = sizeof(control_u);
1094 msg.msg_flags = 0;
1095 msg.msg_name = &source_addr;
1096 msg.msg_namelen = sizeof(source_addr);
1097 msg.msg_iov = iov;
1098 msg.msg_iovlen = 1;
1099
Simon Kelleyde379512004-06-22 20:23:33 +01001100 if ((n = recvmsg(listen->fd, &msg, 0)) == -1)
Simon Kelley3be34542004-09-11 19:12:13 +01001101 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001102
Simon Kelley572b41e2011-02-18 18:11:18 +00001103 if (n < (int)sizeof(struct dns_header) ||
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001104 (msg.msg_flags & MSG_TRUNC) ||
Simon Kelley572b41e2011-02-18 18:11:18 +00001105 (header->hb3 & HB3_QR))
Simon Kelley3be34542004-09-11 19:12:13 +01001106 return;
Simon Kelley44a2a312004-03-10 20:04:35 +00001107
Simon Kelley26128d22004-11-14 16:43:54 +00001108 source_addr.sa.sa_family = listen->family;
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001109
1110 if (listen->family == AF_INET)
1111 {
1112 /* Source-port == 0 is an error, we can't send back to that.
1113 http://www.ietf.org/mail-archive/web/dnsop/current/msg11441.html */
1114 if (source_addr.in.sin_port == 0)
1115 return;
1116 }
Simon Kelley26128d22004-11-14 16:43:54 +00001117#ifdef HAVE_IPV6
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001118 else
1119 {
1120 /* Source-port == 0 is an error, we can't send back to that. */
1121 if (source_addr.in6.sin6_port == 0)
1122 return;
1123 source_addr.in6.sin6_flowinfo = 0;
1124 }
Simon Kelley26128d22004-11-14 16:43:54 +00001125#endif
Simon Kelley2a7a2b82014-03-22 19:18:06 +00001126
Simon Kelleyc8a80482014-03-05 14:29:54 +00001127 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1128 if (option_bool(OPT_LOCAL_SERVICE))
1129 {
1130 struct addrlist *addr;
1131#ifdef HAVE_IPV6
1132 if (listen->family == AF_INET6)
1133 {
1134 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1135 if ((addr->flags & ADDRLIST_IPV6) &&
1136 is_same_net6(&addr->addr.addr.addr6, &source_addr.in6.sin6_addr, addr->prefixlen))
1137 break;
1138 }
1139 else
1140#endif
1141 {
1142 struct in_addr netmask;
1143 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1144 {
Richard Genoud15b1b7e2014-09-17 21:12:00 +01001145 netmask.s_addr = htonl(~(in_addr_t)0 << (32 - addr->prefixlen));
Simon Kelleyc8a80482014-03-05 14:29:54 +00001146 if (!(addr->flags & ADDRLIST_IPV6) &&
1147 is_same_net(addr->addr.addr.addr4, source_addr.in.sin_addr, netmask))
1148 break;
1149 }
1150 }
1151 if (!addr)
1152 {
Simon Kelley0c8584e2014-03-12 20:12:56 +00001153 static int warned = 0;
1154 if (!warned)
1155 {
1156 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1157 warned = 1;
1158 }
Simon Kelleyc8a80482014-03-05 14:29:54 +00001159 return;
1160 }
1161 }
1162
Simon Kelley2329bef2013-12-03 13:41:16 +00001163 if (check_dst)
Simon Kelley44a2a312004-03-10 20:04:35 +00001164 {
Simon Kelley8a911cc2004-03-16 18:35:52 +00001165 struct ifreq ifr;
1166
Simon Kelley26128d22004-11-14 16:43:54 +00001167 if (msg.msg_controllen < sizeof(struct cmsghdr))
1168 return;
1169
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001170#if defined(HAVE_LINUX_NETWORK)
Simon Kelley26128d22004-11-14 16:43:54 +00001171 if (listen->family == AF_INET)
1172 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001173 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
Simon Kelley26128d22004-11-14 16:43:54 +00001174 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001175 union {
1176 unsigned char *c;
1177 struct in_pktinfo *p;
1178 } p;
1179 p.c = CMSG_DATA(cmptr);
1180 dst_addr_4 = dst_addr.addr.addr4 = p.p->ipi_spec_dst;
1181 if_index = p.p->ipi_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001182 }
1183#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
1184 if (listen->family == AF_INET)
1185 {
1186 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001187 {
1188 union {
1189 unsigned char *c;
1190 unsigned int *i;
1191 struct in_addr *a;
1192#ifndef HAVE_SOLARIS_NETWORK
1193 struct sockaddr_dl *s;
Simon Kelley824af852008-02-12 20:43:05 +00001194#endif
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001195 } p;
1196 p.c = CMSG_DATA(cmptr);
1197 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
1198 dst_addr_4 = dst_addr.addr.addr4 = *(p.a);
1199 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
1200#ifdef HAVE_SOLARIS_NETWORK
1201 if_index = *(p.i);
1202#else
1203 if_index = p.s->sdl_index;
1204#endif
1205 }
Simon Kelley26128d22004-11-14 16:43:54 +00001206 }
1207#endif
1208
1209#ifdef HAVE_IPV6
1210 if (listen->family == AF_INET6)
1211 {
1212 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +00001213 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
Simon Kelley26128d22004-11-14 16:43:54 +00001214 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001215 union {
1216 unsigned char *c;
1217 struct in6_pktinfo *p;
1218 } p;
1219 p.c = CMSG_DATA(cmptr);
1220
1221 dst_addr.addr.addr6 = p.p->ipi6_addr;
1222 if_index = p.p->ipi6_ifindex;
Simon Kelley26128d22004-11-14 16:43:54 +00001223 }
1224 }
1225#endif
1226
1227 /* enforce available interface configuration */
1228
Simon Kelleye25db1f2013-01-29 22:10:26 +00001229 if (!indextoname(listen->fd, if_index, ifr.ifr_name))
Simon Kelley832af0b2007-01-21 20:01:28 +00001230 return;
1231
Simon Kelleye25db1f2013-01-29 22:10:26 +00001232 if (!iface_check(listen->family, &dst_addr, ifr.ifr_name, &auth_dns))
1233 {
1234 if (!option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001235 enumerate_interfaces(0);
Simon Kelley3f2873d2013-05-14 11:28:47 +01001236 if (!loopback_exception(listen->fd, listen->family, &dst_addr, ifr.ifr_name) &&
1237 !label_exception(if_index, listen->family, &dst_addr))
Simon Kelleye25db1f2013-01-29 22:10:26 +00001238 return;
1239 }
1240
Simon Kelley552af8b2012-02-29 20:10:31 +00001241 if (listen->family == AF_INET && option_bool(OPT_LOCALISE))
1242 {
1243 struct irec *iface;
1244
1245 /* get the netmask of the interface whch has the address we were sent to.
1246 This is no neccessarily the interface we arrived on. */
1247
1248 for (iface = daemon->interfaces; iface; iface = iface->next)
1249 if (iface->addr.sa.sa_family == AF_INET &&
1250 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1251 break;
1252
1253 /* interface may be new */
Simon Kelleye25db1f2013-01-29 22:10:26 +00001254 if (!iface && !option_bool(OPT_CLEVERBIND))
Simon Kelley115ac3e2013-05-20 11:28:32 +01001255 enumerate_interfaces(0);
Simon Kelley552af8b2012-02-29 20:10:31 +00001256
1257 for (iface = daemon->interfaces; iface; iface = iface->next)
1258 if (iface->addr.sa.sa_family == AF_INET &&
1259 iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr)
1260 break;
1261
1262 /* If we failed, abandon localisation */
1263 if (iface)
1264 netmask = iface->netmask;
1265 else
1266 dst_addr_4.s_addr = 0;
1267 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001268 }
Simon Kelley25cf5e32015-01-09 15:53:03 +00001269
1270 /* log_query gets called indirectly all over the place, so
1271 pass these in global variables - sorry. */
1272 daemon->log_display_id = ++daemon->log_id;
1273 daemon->log_source_addr = &source_addr;
Simon Kelley44a2a312004-03-10 20:04:35 +00001274
Simon Kelleycdeda282006-03-16 20:16:06 +00001275 if (extract_request(header, (size_t)n, daemon->namebuff, &type))
Simon Kelley44a2a312004-03-10 20:04:35 +00001276 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001277#ifdef HAVE_AUTH
1278 struct auth_zone *zone;
1279#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001280 char *types = querystr(auth_dns ? "auth" : "query", type);
1281
Simon Kelley44a2a312004-03-10 20:04:35 +00001282 if (listen->family == AF_INET)
Simon Kelley3be34542004-09-11 19:12:13 +01001283 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001284 (struct all_addr *)&source_addr.in.sin_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001285#ifdef HAVE_IPV6
1286 else
Simon Kelley3be34542004-09-11 19:12:13 +01001287 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
Simon Kelley1a6bca82008-07-11 11:11:42 +01001288 (struct all_addr *)&source_addr.in6.sin6_addr, types);
Simon Kelley44a2a312004-03-10 20:04:35 +00001289#endif
Simon Kelley44a2a312004-03-10 20:04:35 +00001290
Simon Kelley4820dce2012-12-18 18:30:30 +00001291#ifdef HAVE_AUTH
Simon Kelleyb485ed92013-10-18 22:00:39 +01001292 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley6008bdb2013-10-21 21:47:03 +01001293 if (!auth_dns)
1294 for (zone = daemon->auth_zones; zone; zone = zone->next)
1295 if (in_zone(zone, daemon->namebuff, NULL))
1296 {
1297 auth_dns = 1;
1298 local_auth = 1;
1299 break;
1300 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001301#endif
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001302
1303#ifdef HAVE_LOOP
1304 /* Check for forwarding loop */
1305 if (detect_loop(daemon->namebuff, type))
1306 return;
1307#endif
Simon Kelleyb485ed92013-10-18 22:00:39 +01001308 }
1309
1310#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001311 if (auth_dns)
Simon Kelley824af852008-02-12 20:43:05 +00001312 {
Simon Kelley60b68062014-01-08 12:10:28 +00001313 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 +00001314 if (m >= 1)
Simon Kelleyb485ed92013-10-18 22:00:39 +01001315 {
1316 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1317 (char *)header, m, &source_addr, &dst_addr, if_index);
1318 daemon->auth_answer++;
1319 }
Simon Kelley824af852008-02-12 20:43:05 +00001320 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001321 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001322#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001323 {
Simon Kelley613ad152014-02-25 23:02:28 +00001324 int ad_reqd, do_bit;
Simon Kelley60b68062014-01-08 12:10:28 +00001325 m = answer_request(header, ((char *) header) + daemon->packet_buff_sz, (size_t)n,
Simon Kelley613ad152014-02-25 23:02:28 +00001326 dst_addr_4, netmask, now, &ad_reqd, &do_bit);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001327
1328 if (m >= 1)
1329 {
1330 send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND),
1331 (char *)header, m, &source_addr, &dst_addr, if_index);
1332 daemon->local_answer++;
1333 }
1334 else if (forward_query(listen->fd, &source_addr, &dst_addr, if_index,
Simon Kelley613ad152014-02-25 23:02:28 +00001335 header, (size_t)n, now, NULL, ad_reqd, do_bit))
Simon Kelley4f7b3042012-11-28 21:27:02 +00001336 daemon->queries_forwarded++;
1337 else
1338 daemon->local_answer++;
1339 }
Simon Kelley44a2a312004-03-10 20:04:35 +00001340}
1341
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001342#ifdef HAVE_DNSSEC
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001343
1344/* UDP: we've got an unsigned answer, return STAT_INSECURE if we can prove there's no DS
1345 and therefore the answer shouldn't be signed, or STAT_BOGUS if it should be, or
1346 STAT_NEED_DS_NEG and keyname if we need to do the query. */
Simon Kelley97e618a2015-01-07 21:55:43 +00001347static int send_check_sign(struct frec *forward, time_t now, struct dns_header *header, size_t plen,
1348 char *name, char *keyname)
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001349{
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001350 int status = dnssec_chase_cname(now, header, plen, name, keyname);
1351
1352 if (status != STAT_INSECURE)
1353 return status;
1354
Simon Kelley97e618a2015-01-07 21:55:43 +00001355 /* Store the domain we're trying to check. */
1356 forward->name_start = strlen(name);
1357 forward->name_len = forward->name_start + 1;
1358 if (!(forward->orig_domain = blockdata_alloc(name, forward->name_len)))
1359 return STAT_BOGUS;
1360
1361 return do_check_sign(forward, 0, now, name, keyname);
1362}
1363
1364/* We either have a a reply (header non-NULL, or we need to start by looking in the cache */
1365static int do_check_sign(struct frec *forward, int status, time_t now, char *name, char *keyname)
1366{
1367 /* get domain we're checking back from blockdata store, it's stored on the original query. */
1368 while (forward->dependent)
1369 forward = forward->dependent;
1370
1371 blockdata_retrieve(forward->orig_domain, forward->name_len, name);
1372
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001373 while (1)
1374 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001375 char *p;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001376
Simon Kelley97e618a2015-01-07 21:55:43 +00001377 if (status == 0)
1378 {
1379 struct crec *crecp;
1380
1381 /* Haven't received answer, see if in cache */
1382 if (!(crecp = cache_find_by_name(NULL, &name[forward->name_start], now, F_DS)))
1383 {
1384 /* put name of DS record we're missing into keyname */
1385 strcpy(keyname, &name[forward->name_start]);
1386 /* and wait for reply to arrive */
1387 return STAT_NEED_DS_NEG;
1388 }
1389
1390 /* F_DNSSECOK misused in DS cache records to non-existance of NS record */
1391 if (!(crecp->flags & F_NEG))
1392 status = STAT_SECURE;
1393 else if (crecp->flags & F_DNSSECOK)
1394 status = STAT_NO_DS;
1395 else
1396 status = STAT_NO_NS;
1397 }
1398
1399 /* Have entered non-signed part of DNS tree. */
1400 if (status == STAT_NO_DS)
1401 return STAT_INSECURE;
1402
1403 if (status == STAT_BOGUS)
Simon Kelley4e1fe442014-03-26 12:24:19 +00001404 return STAT_BOGUS;
1405
Simon Kelley97e618a2015-01-07 21:55:43 +00001406 /* There's a proven DS record, or we're within a zone, where there doesn't need
1407 to be a DS record. Add a name and try again.
1408 If we've already tried the whole name, then fail */
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001409
Simon Kelley97e618a2015-01-07 21:55:43 +00001410 if (forward->name_start == 0)
1411 return STAT_BOGUS;
Simon Kelley4872aa72014-04-26 22:13:31 +01001412
Simon Kelley97e618a2015-01-07 21:55:43 +00001413 for (p = &name[forward->name_start-2]; (*p != '.') && (p != name); p--);
1414
1415 if (p != name)
1416 p++;
1417
1418 forward->name_start = p - name;
1419 status = 0; /* force to cache when we iterate. */
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001420 }
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001421}
1422
1423/* Move toward the root, until we find a signed non-existance of a DS, in which case
1424 an unsigned answer is OK, or we find a signed DS, in which case there should be
1425 a signature, and the answer is BOGUS */
1426static int tcp_check_for_unsigned_zone(time_t now, struct dns_header *header, size_t plen, int class, char *name,
1427 char *keyname, struct server *server, int *keycount)
1428{
1429 size_t m;
1430 unsigned char *packet, *payload;
1431 u16 *length;
Simon Kelley97e618a2015-01-07 21:55:43 +00001432 int status, name_len;
1433 struct blockdata *block;
1434
1435 char *name_start;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001436
1437 /* Get first insecure entry in CNAME chain */
1438 status = tcp_key_recurse(now, STAT_CHASE_CNAME, header, plen, class, name, keyname, server, keycount);
1439 if (status == STAT_BOGUS)
1440 return STAT_BOGUS;
1441
1442 if (!(packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16))))
1443 return STAT_BOGUS;
1444
1445 payload = &packet[2];
1446 header = (struct dns_header *)payload;
1447 length = (u16 *)packet;
Simon Kelley97e618a2015-01-07 21:55:43 +00001448
1449 /* Stash the name away, since the buffer will be trashed when we recurse */
1450 name_len = strlen(name) + 1;
1451 name_start = name + name_len - 1;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001452
Simon Kelley97e618a2015-01-07 21:55:43 +00001453 if (!(block = blockdata_alloc(name, name_len)))
1454 {
1455 free(packet);
1456 return STAT_BOGUS;
1457 }
1458
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001459 while (1)
1460 {
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001461 unsigned char c1, c2;
Simon Kelley97e618a2015-01-07 21:55:43 +00001462 struct crec *crecp;
1463
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001464 if (--(*keycount) == 0)
Tomas Hozzafc2833f2014-03-25 20:43:21 +00001465 {
1466 free(packet);
Simon Kelley97e618a2015-01-07 21:55:43 +00001467 blockdata_free(block);
Tomas Hozzafc2833f2014-03-25 20:43:21 +00001468 return STAT_BOGUS;
1469 }
Simon Kelley97e618a2015-01-07 21:55:43 +00001470
Simon Kelley424c4a82015-01-07 21:58:05 +00001471 while ((crecp = cache_find_by_name(NULL, name_start, now, F_DS)))
Simon Kelley97e618a2015-01-07 21:55:43 +00001472 {
1473 if ((crecp->flags & F_NEG) && (crecp->flags & F_DNSSECOK))
1474 {
1475 /* Found a secure denial of DS - delegation is indeed insecure */
1476 free(packet);
1477 blockdata_free(block);
1478 return STAT_INSECURE;
1479 }
1480
1481 /* Here, either there's a secure DS, or no NS and no DS, and therefore no delegation.
1482 Add another label and continue. */
1483
1484 if (name_start == name)
1485 {
1486 free(packet);
1487 blockdata_free(block);
1488 return STAT_BOGUS; /* run out of labels */
1489 }
1490
1491 name_start -= 2;
1492 while (*name_start != '.' && name_start != name)
1493 name_start--;
1494 if (name_start != name)
1495 name_start++;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001496 }
1497
Simon Kelley97e618a2015-01-07 21:55:43 +00001498 /* Can't find it in the cache, have to send a query */
Simon Kelley4e1fe442014-03-26 12:24:19 +00001499
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001500 m = dnssec_generate_query(header, ((char *) header) + 65536, name_start, class, T_DS, &server->addr);
1501
Simon Kelley97e618a2015-01-07 21:55:43 +00001502 *length = htons(m);
1503
1504 if (read_write(server->tcpfd, packet, m + sizeof(u16), 0) &&
1505 read_write(server->tcpfd, &c1, 1, 1) &&
1506 read_write(server->tcpfd, &c2, 1, 1) &&
1507 read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001508 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001509 m = (c1 << 8) | c2;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001510
Simon Kelley97e618a2015-01-07 21:55:43 +00001511 /* Note this trashes all three name workspaces */
1512 status = tcp_key_recurse(now, STAT_NEED_DS_NEG, header, m, class, name, keyname, server, keycount);
1513
1514 if (status == STAT_NO_DS)
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001515 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001516 /* Found a secure denial of DS - delegation is indeed insecure */
1517 free(packet);
1518 blockdata_free(block);
1519 return STAT_INSECURE;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001520 }
Simon Kelley97e618a2015-01-07 21:55:43 +00001521
1522 if (status == STAT_BOGUS)
1523 {
1524 free(packet);
1525 blockdata_free(block);
1526 return STAT_BOGUS;
1527 }
1528
1529 /* Here, either there's a secure DS, or no NS and no DS, and therefore no delegation.
1530 Add another label and continue. */
1531
1532 /* Get name we're checking back. */
1533 blockdata_retrieve(block, name_len, name);
1534
1535 if (name_start == name)
1536 {
1537 free(packet);
1538 blockdata_free(block);
1539 return STAT_BOGUS; /* run out of labels */
1540 }
1541
1542 name_start -= 2;
1543 while (*name_start != '.' && name_start != name)
1544 name_start--;
1545 if (name_start != name)
1546 name_start++;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001547 }
Simon Kelley97e618a2015-01-07 21:55:43 +00001548 else
1549 {
1550 /* IO failure */
1551 free(packet);
1552 blockdata_free(block);
1553 return STAT_BOGUS; /* run out of labels */
1554 }
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001555 }
1556}
1557
Simon Kelley7fa836e2014-02-10 20:11:24 +00001558static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n,
1559 int class, char *name, char *keyname, struct server *server, int *keycount)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001560{
1561 /* Recurse up the key heirarchy */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001562 int new_status;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001563
Simon Kelley7fa836e2014-02-10 20:11:24 +00001564 /* limit the amount of work we do, to avoid cycling forever on loops in the DNS */
1565 if (--(*keycount) == 0)
1566 return STAT_INSECURE;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001567
Simon Kelley7fa836e2014-02-10 20:11:24 +00001568 if (status == STAT_NEED_KEY)
1569 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001570 else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG)
1571 {
1572 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
Simon Kelley97e618a2015-01-07 21:55:43 +00001573 if (status == STAT_NEED_DS && (new_status == STAT_NO_DS || new_status == STAT_NO_NS))
1574 new_status = STAT_BOGUS;
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001575 }
1576 else if (status == STAT_CHASE_CNAME)
1577 new_status = dnssec_chase_cname(now, header, n, name, keyname);
1578 else
1579 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001580 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001581
1582 if (new_status == STAT_NO_SIG)
1583 {
1584 if (option_bool(OPT_DNSSEC_NO_SIGN))
1585 new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount);
1586 else
1587 new_status = STAT_INSECURE;
1588 }
1589 }
1590
Simon Kelley7fa836e2014-02-10 20:11:24 +00001591 /* Can't validate because we need a key/DS whose name now in keyname.
1592 Make query for same, and recurse to validate */
1593 if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001594 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001595 size_t m;
1596 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1597 unsigned char *payload = &packet[2];
1598 struct dns_header *new_header = (struct dns_header *)payload;
1599 u16 *length = (u16 *)packet;
1600 unsigned char c1, c2;
1601
1602 if (!packet)
1603 return STAT_INSECURE;
1604
1605 another_tcp_key:
1606 m = dnssec_generate_query(new_header, ((char *) new_header) + 65536, keyname, class,
1607 new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS, &server->addr);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001608
Simon Kelley7fa836e2014-02-10 20:11:24 +00001609 *length = htons(m);
1610
1611 if (!read_write(server->tcpfd, packet, m + sizeof(u16), 0) ||
1612 !read_write(server->tcpfd, &c1, 1, 1) ||
1613 !read_write(server->tcpfd, &c2, 1, 1) ||
1614 !read_write(server->tcpfd, payload, (c1 << 8) | c2, 1))
1615 new_status = STAT_INSECURE;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001616 else
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001617 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001618 m = (c1 << 8) | c2;
1619
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001620 new_status = tcp_key_recurse(now, new_status, new_header, m, class, name, keyname, server, keycount);
1621
1622 if (new_status == STAT_SECURE)
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001623 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001624 /* Reached a validated record, now try again at this level.
1625 Note that we may get ANOTHER NEED_* if an answer needs more than one key.
1626 If so, go round again. */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001627
Simon Kelley7fa836e2014-02-10 20:11:24 +00001628 if (status == STAT_NEED_KEY)
1629 new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001630 else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG)
1631 {
1632 new_status = dnssec_validate_ds(now, header, n, name, keyname, class);
Simon Kelley97e618a2015-01-07 21:55:43 +00001633 if (status == STAT_NEED_DS && (new_status == STAT_NO_DS || new_status == STAT_NO_NS))
1634 new_status = STAT_BOGUS; /* Validated no DS */
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001635 }
1636 else if (status == STAT_CHASE_CNAME)
1637 new_status = dnssec_chase_cname(now, header, n, name, keyname);
1638 else
1639 {
Simon Kelley97e618a2015-01-07 21:55:43 +00001640 new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL, NULL);
Simon Kelley00a5b5d2014-02-28 18:10:55 +00001641
1642 if (new_status == STAT_NO_SIG)
1643 {
1644 if (option_bool(OPT_DNSSEC_NO_SIGN))
1645 new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount);
1646 else
1647 new_status = STAT_INSECURE;
1648 }
1649 }
1650
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001651 if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY)
Simon Kelley7fa836e2014-02-10 20:11:24 +00001652 goto another_tcp_key;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001653 }
1654 }
Simon Kelley7fa836e2014-02-10 20:11:24 +00001655
1656 free(packet);
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001657 }
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001658 return new_status;
1659}
1660#endif
1661
1662
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001663/* The daemon forks before calling this: it should deal with one connection,
1664 blocking as neccessary, and then return. Note, need to be a bit careful
1665 about resources for debug mode, when the fork is suppressed: that's
1666 done by the caller. */
Simon Kelley5aabfc72007-08-29 11:24:47 +01001667unsigned char *tcp_request(int confd, time_t now,
Simon Kelley4f7b3042012-11-28 21:27:02 +00001668 union mysockaddr *local_addr, struct in_addr netmask, int auth_dns)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001669{
Simon Kelley28866e92011-02-14 20:19:14 +00001670 size_t size = 0;
1671 int norebind = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001672#ifdef HAVE_AUTH
Simon Kelley19b16892013-10-20 10:19:39 +01001673 int local_auth = 0;
Vladislav Grishenko3b195962013-11-26 11:08:21 +00001674#endif
Simon Kelley613ad152014-02-25 23:02:28 +00001675 int checking_disabled, ad_question, do_bit, added_pheader = 0;
1676 int check_subnet, no_cache_dnssec = 0, cache_secure = 0;
Simon Kelleycdeda282006-03-16 20:16:06 +00001677 size_t m;
Simon Kelleyee86ce62012-12-07 11:54:46 +00001678 unsigned short qtype;
1679 unsigned int gotname;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001680 unsigned char c1, c2;
Simon Kelley4b5ea122013-04-22 10:18:26 +01001681 /* Max TCP packet + slop + size */
1682 unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16));
1683 unsigned char *payload = &packet[2];
1684 /* largest field in header is 16-bits, so this is still sufficiently aligned */
1685 struct dns_header *header = (struct dns_header *)payload;
1686 u16 *length = (u16 *)packet;
Simon Kelley3be34542004-09-11 19:12:13 +01001687 struct server *last_server;
Simon Kelley7de060b2011-08-26 17:24:52 +01001688 struct in_addr dst_addr_4;
1689 union mysockaddr peer_addr;
1690 socklen_t peer_len = sizeof(union mysockaddr);
Simon Kelley25cf5e32015-01-09 15:53:03 +00001691 int query_count = 0;
1692
Simon Kelley7de060b2011-08-26 17:24:52 +01001693 if (getpeername(confd, (struct sockaddr *)&peer_addr, &peer_len) == -1)
1694 return packet;
Simon Kelleyc8a80482014-03-05 14:29:54 +00001695
1696 /* We can be configured to only accept queries from at-most-one-hop-away addresses. */
1697 if (option_bool(OPT_LOCAL_SERVICE))
1698 {
1699 struct addrlist *addr;
1700#ifdef HAVE_IPV6
1701 if (peer_addr.sa.sa_family == AF_INET6)
1702 {
1703 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1704 if ((addr->flags & ADDRLIST_IPV6) &&
1705 is_same_net6(&addr->addr.addr.addr6, &peer_addr.in6.sin6_addr, addr->prefixlen))
1706 break;
1707 }
1708 else
1709#endif
1710 {
1711 struct in_addr netmask;
1712 for (addr = daemon->interface_addrs; addr; addr = addr->next)
1713 {
Richard Genoud15b1b7e2014-09-17 21:12:00 +01001714 netmask.s_addr = htonl(~(in_addr_t)0 << (32 - addr->prefixlen));
Simon Kelleyc8a80482014-03-05 14:29:54 +00001715 if (!(addr->flags & ADDRLIST_IPV6) &&
1716 is_same_net(addr->addr.addr.addr4, peer_addr.in.sin_addr, netmask))
1717 break;
1718 }
1719 }
1720 if (!addr)
1721 {
1722 my_syslog(LOG_WARNING, _("Ignoring query from non-local network"));
1723 return packet;
1724 }
1725 }
Simon Kelley7de060b2011-08-26 17:24:52 +01001726
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001727 while (1)
1728 {
Simon Kelley25cf5e32015-01-09 15:53:03 +00001729 if (query_count == TCP_MAX_QUERIES ||
1730 !packet ||
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001731 !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) ||
1732 !(size = c1 << 8 | c2) ||
Simon Kelley4b5ea122013-04-22 10:18:26 +01001733 !read_write(confd, payload, size, 1))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001734 return packet;
1735
Simon Kelley572b41e2011-02-18 18:11:18 +00001736 if (size < (int)sizeof(struct dns_header))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001737 continue;
1738
Simon Kelley25cf5e32015-01-09 15:53:03 +00001739 query_count++;
1740
1741 /* log_query gets called indirectly all over the place, so
1742 pass these in global variables - sorry. */
1743 daemon->log_display_id = ++daemon->log_id;
1744 daemon->log_source_addr = &peer_addr;
1745
Simon Kelleyed4c0762013-10-08 20:46:34 +01001746 check_subnet = 0;
1747
Simon Kelley28866e92011-02-14 20:19:14 +00001748 /* save state of "cd" flag in query */
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001749 if ((checking_disabled = header->hb4 & HB4_CD))
1750 no_cache_dnssec = 1;
Simon Kelley28866e92011-02-14 20:19:14 +00001751
Simon Kelley3be34542004-09-11 19:12:13 +01001752 if ((gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype)))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001753 {
Simon Kelleyb485ed92013-10-18 22:00:39 +01001754#ifdef HAVE_AUTH
1755 struct auth_zone *zone;
1756#endif
Simon Kelley610e7822014-02-06 14:45:17 +00001757 char *types = querystr(auth_dns ? "auth" : "query", qtype);
Simon Kelley7de060b2011-08-26 17:24:52 +01001758
1759 if (peer_addr.sa.sa_family == AF_INET)
1760 log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff,
1761 (struct all_addr *)&peer_addr.in.sin_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001762#ifdef HAVE_IPV6
Simon Kelley7de060b2011-08-26 17:24:52 +01001763 else
1764 log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff,
1765 (struct all_addr *)&peer_addr.in6.sin6_addr, types);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001766#endif
Simon Kelleyb485ed92013-10-18 22:00:39 +01001767
1768#ifdef HAVE_AUTH
1769 /* find queries for zones we're authoritative for, and answer them directly */
Simon Kelley6008bdb2013-10-21 21:47:03 +01001770 if (!auth_dns)
1771 for (zone = daemon->auth_zones; zone; zone = zone->next)
1772 if (in_zone(zone, daemon->namebuff, NULL))
1773 {
1774 auth_dns = 1;
1775 local_auth = 1;
1776 break;
1777 }
Simon Kelleyb485ed92013-10-18 22:00:39 +01001778#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001779 }
1780
Simon Kelley7de060b2011-08-26 17:24:52 +01001781 if (local_addr->sa.sa_family == AF_INET)
1782 dst_addr_4 = local_addr->in.sin_addr;
1783 else
1784 dst_addr_4.s_addr = 0;
1785
Simon Kelley4820dce2012-12-18 18:30:30 +00001786#ifdef HAVE_AUTH
Simon Kelley4f7b3042012-11-28 21:27:02 +00001787 if (auth_dns)
Simon Kelley19b16892013-10-20 10:19:39 +01001788 m = answer_auth(header, ((char *) header) + 65536, (size_t)size, now, &peer_addr, local_auth);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001789 else
Simon Kelley4820dce2012-12-18 18:30:30 +00001790#endif
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001791 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001792 /* m > 0 if answered from cache */
1793 m = answer_request(header, ((char *) header) + 65536, (size_t)size,
Simon Kelley613ad152014-02-25 23:02:28 +00001794 dst_addr_4, netmask, now, &ad_question, &do_bit);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001795
Simon Kelley4f7b3042012-11-28 21:27:02 +00001796 /* Do this by steam now we're not in the select() loop */
1797 check_log_writer(NULL);
1798
1799 if (m == 0)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001800 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001801 unsigned int flags = 0;
1802 struct all_addr *addrp = NULL;
1803 int type = 0;
1804 char *domain = NULL;
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001805
Simon Kelley4f7b3042012-11-28 21:27:02 +00001806 if (option_bool(OPT_ADD_MAC))
1807 size = add_mac(header, size, ((char *) header) + 65536, &peer_addr);
Simon Kelleyed4c0762013-10-08 20:46:34 +01001808
1809 if (option_bool(OPT_CLIENT_SUBNET))
1810 {
1811 size_t new = add_source_addr(header, size, ((char *) header) + 65536, &peer_addr);
1812 if (size != new)
1813 {
1814 size = new;
1815 check_subnet = 1;
1816 }
1817 }
1818
Simon Kelley4f7b3042012-11-28 21:27:02 +00001819 if (gotname)
1820 flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind);
1821
1822 if (type != 0 || option_bool(OPT_ORDER) || !daemon->last_server)
1823 last_server = daemon->servers;
1824 else
1825 last_server = daemon->last_server;
1826
1827 if (!flags && last_server)
1828 {
1829 struct server *firstsendto = NULL;
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001830#ifdef HAVE_DNSSEC
Simon Kelley703c7ff2014-01-25 23:46:23 +00001831 unsigned char *newhash, hash[HASH_SIZE];
Simon Kelley63758382014-04-16 22:20:55 +01001832 if ((newhash = hash_questions(header, (unsigned int)size, daemon->namebuff)))
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001833 memcpy(hash, newhash, HASH_SIZE);
Tomas Hozzab37f8b92014-03-25 20:52:28 +00001834 else
1835 memset(hash, 0, HASH_SIZE);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001836#else
Simon Kelley4f7b3042012-11-28 21:27:02 +00001837 unsigned int crc = questions_crc(header, (unsigned int)size, daemon->namebuff);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001838#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001839 /* Loop round available servers until we succeed in connecting to one.
1840 Note that this code subtley ensures that consecutive queries on this connection
1841 which can go to the same server, do so. */
1842 while (1)
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001843 {
Simon Kelley4f7b3042012-11-28 21:27:02 +00001844 if (!firstsendto)
1845 firstsendto = last_server;
1846 else
1847 {
1848 if (!(last_server = last_server->next))
1849 last_server = daemon->servers;
1850
1851 if (last_server == firstsendto)
1852 break;
1853 }
1854
1855 /* server for wrong domain */
1856 if (type != (last_server->flags & SERV_TYPE) ||
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001857 (type == SERV_HAS_DOMAIN && !hostname_isequal(domain, last_server->domain)) ||
1858 (last_server->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP)))
Simon Kelley7de060b2011-08-26 17:24:52 +01001859 continue;
1860
Simon Kelley4f7b3042012-11-28 21:27:02 +00001861 if (last_server->tcpfd == -1)
1862 {
1863 if ((last_server->tcpfd = socket(last_server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1)
1864 continue;
1865
Karl Vogele9828b62014-10-03 21:45:15 +01001866#ifdef HAVE_CONNTRACK
1867 /* Copy connection mark of incoming query to outgoing connection. */
1868 if (option_bool(OPT_CONNTRACK))
1869 {
1870 unsigned int mark;
1871 struct all_addr local;
1872#ifdef HAVE_IPV6
1873 if (local_addr->sa.sa_family == AF_INET6)
1874 local.addr.addr6 = local_addr->in6.sin6_addr;
1875 else
1876#endif
1877 local.addr.addr4 = local_addr->in.sin_addr;
1878
1879 if (get_incoming_mark(&peer_addr, &local, 1, &mark))
1880 setsockopt(last_server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int));
1881 }
1882#endif
1883
Simon Kelley4f7b3042012-11-28 21:27:02 +00001884 if ((!local_bind(last_server->tcpfd, &last_server->source_addr, last_server->interface, 1) ||
1885 connect(last_server->tcpfd, &last_server->addr.sa, sa_len(&last_server->addr)) == -1))
1886 {
1887 close(last_server->tcpfd);
1888 last_server->tcpfd = -1;
1889 continue;
1890 }
1891
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001892#ifdef HAVE_DNSSEC
1893 if (option_bool(OPT_DNSSEC_VALID))
1894 {
Simon Kelley613ad152014-02-25 23:02:28 +00001895 size_t new_size = add_do_bit(header, size, ((char *) header) + 65536);
1896
Simon Kelley2ecd9bd2014-02-13 16:42:02 +00001897 /* For debugging, set Checking Disabled, otherwise, have the upstream check too,
1898 this allows it to select auth servers when one is returning bad data. */
1899 if (option_bool(OPT_DNSSEC_DEBUG))
1900 header->hb4 |= HB4_CD;
Simon Kelley613ad152014-02-25 23:02:28 +00001901
1902 if (size != new_size)
1903 added_pheader = 1;
1904
1905 size = new_size;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001906 }
1907#endif
Simon Kelley4f7b3042012-11-28 21:27:02 +00001908 }
1909
Simon Kelley4b5ea122013-04-22 10:18:26 +01001910 *length = htons(size);
Simon Kelley1fc02682014-04-29 12:30:18 +01001911
1912 /* get query name again for logging - may have been overwritten */
1913 if (!(gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype)))
1914 strcpy(daemon->namebuff, "query");
Simon Kelley4f7b3042012-11-28 21:27:02 +00001915
Simon Kelley4b5ea122013-04-22 10:18:26 +01001916 if (!read_write(last_server->tcpfd, packet, size + sizeof(u16), 0) ||
Simon Kelley4f7b3042012-11-28 21:27:02 +00001917 !read_write(last_server->tcpfd, &c1, 1, 1) ||
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001918 !read_write(last_server->tcpfd, &c2, 1, 1) ||
1919 !read_write(last_server->tcpfd, payload, (c1 << 8) | c2, 1))
Simon Kelley7de060b2011-08-26 17:24:52 +01001920 {
1921 close(last_server->tcpfd);
1922 last_server->tcpfd = -1;
1923 continue;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001924 }
1925
1926 m = (c1 << 8) | c2;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001927
Simon Kelley4f7b3042012-11-28 21:27:02 +00001928 if (last_server->addr.sa.sa_family == AF_INET)
1929 log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff,
1930 (struct all_addr *)&last_server->addr.in.sin_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001931#ifdef HAVE_IPV6
Simon Kelley4f7b3042012-11-28 21:27:02 +00001932 else
1933 log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff,
1934 (struct all_addr *)&last_server->addr.in6.sin6_addr, NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001935#endif
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001936
1937#ifdef HAVE_DNSSEC
1938 if (option_bool(OPT_DNSSEC_VALID) && !checking_disabled)
1939 {
Simon Kelley7fa836e2014-02-10 20:11:24 +00001940 int keycount = DNSSEC_WORK; /* Limit to number of DNSSEC questions, to catch loops and avoid filling cache. */
1941 int status = tcp_key_recurse(now, STAT_TRUNCATED, header, m, 0, daemon->namebuff, daemon->keyname, last_server, &keycount);
1942 char *result;
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001943
Simon Kelley7fa836e2014-02-10 20:11:24 +00001944 if (keycount == 0)
1945 result = "ABANDONED";
1946 else
1947 result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS"));
1948
1949 log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result);
1950
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001951 if (status == STAT_BOGUS)
1952 no_cache_dnssec = 1;
Simon Kelley7fa836e2014-02-10 20:11:24 +00001953
Simon Kelley7d7b7b32014-01-08 15:53:35 +00001954 if (status == STAT_SECURE)
1955 cache_secure = 1;
1956 }
1957#endif
1958
1959 /* restore CD bit to the value in the query */
1960 if (checking_disabled)
1961 header->hb4 |= HB4_CD;
1962 else
1963 header->hb4 &= ~HB4_CD;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001964
1965 /* There's no point in updating the cache, since this process will exit and
1966 lose the information after a few queries. We make this call for the alias and
1967 bogus-nxdomain side-effects. */
1968 /* If the crc of the question section doesn't match the crc we sent, then
1969 someone might be attempting to insert bogus values into the cache by
1970 sending replies containing questions and bogus answers. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001971#ifdef HAVE_DNSSEC
1972 newhash = hash_questions(header, (unsigned int)m, daemon->namebuff);
1973 if (!newhash || memcmp(hash, newhash, HASH_SIZE) != 0)
Simon Kelley703c7ff2014-01-25 23:46:23 +00001974 {
1975 m = 0;
1976 break;
1977 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001978#else
1979 if (crc != questions_crc(header, (unsigned int)m, daemon->namebuff))
Simon Kelley703c7ff2014-01-25 23:46:23 +00001980 {
1981 m = 0;
1982 break;
1983 }
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001984#endif
1985
1986 m = process_reply(header, now, last_server, (unsigned int)m,
1987 option_bool(OPT_NO_REBIND) && !norebind, no_cache_dnssec,
Simon Kelley613ad152014-02-25 23:02:28 +00001988 cache_secure, ad_question, do_bit, added_pheader, check_subnet, &peer_addr);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001989
1990 break;
1991 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001992 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001993
1994 /* In case of local answer or no connections made. */
1995 if (m == 0)
1996 m = setup_reply(header, (unsigned int)size, addrp, flags, daemon->local_ttl);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001997 }
Simon Kelleyfeba5c12004-07-27 20:28:58 +01001998 }
Simon Kelley4f7b3042012-11-28 21:27:02 +00001999
Simon Kelley5aabfc72007-08-29 11:24:47 +01002000 check_log_writer(NULL);
Simon Kelleyfeba5c12004-07-27 20:28:58 +01002001
Simon Kelley4b5ea122013-04-22 10:18:26 +01002002 *length = htons(m);
2003
2004 if (m == 0 || !read_write(confd, packet, m + sizeof(u16), 0))
Simon Kelleyfeba5c12004-07-27 20:28:58 +01002005 return packet;
2006 }
2007}
2008
Simon Kelley16972692006-10-16 20:04:18 +01002009static struct frec *allocate_frec(time_t now)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002010{
Simon Kelley16972692006-10-16 20:04:18 +01002011 struct frec *f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002012
Simon Kelley5aabfc72007-08-29 11:24:47 +01002013 if ((f = (struct frec *)whine_malloc(sizeof(struct frec))))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002014 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002015 f->next = daemon->frec_list;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002016 f->time = now;
Simon Kelley832af0b2007-01-21 20:01:28 +00002017 f->sentto = NULL;
Simon Kelley1a6bca82008-07-11 11:11:42 +01002018 f->rfd4 = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00002019 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01002020#ifdef HAVE_IPV6
2021 f->rfd6 = NULL;
2022#endif
Simon Kelley3a237152013-12-12 12:15:50 +00002023#ifdef HAVE_DNSSEC
Simon Kelley97bc7982014-01-31 10:19:52 +00002024 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002025 f->blocking_query = NULL;
Simon Kelley4619d942014-01-16 19:53:06 +00002026 f->stash = NULL;
Simon Kelley97e618a2015-01-07 21:55:43 +00002027 f->orig_domain = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002028#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01002029 daemon->frec_list = f;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002030 }
Simon Kelley16972692006-10-16 20:04:18 +01002031
2032 return f;
2033}
2034
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002035struct randfd *allocate_rfd(int family)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002036{
2037 static int finger = 0;
2038 int i;
2039
2040 /* limit the number of sockets we have open to avoid starvation of
2041 (eg) TFTP. Once we have a reasonable number, randomness should be OK */
2042
2043 for (i = 0; i < RANDOM_SOCKS; i++)
Simon Kelley9009d742008-11-14 20:04:27 +00002044 if (daemon->randomsocks[i].refcount == 0)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002045 {
Simon Kelley9009d742008-11-14 20:04:27 +00002046 if ((daemon->randomsocks[i].fd = random_sock(family)) == -1)
2047 break;
2048
Simon Kelley1a6bca82008-07-11 11:11:42 +01002049 daemon->randomsocks[i].refcount = 1;
2050 daemon->randomsocks[i].family = family;
2051 return &daemon->randomsocks[i];
2052 }
2053
Simon Kelley9009d742008-11-14 20:04:27 +00002054 /* No free ones or cannot get new socket, grab an existing one */
Simon Kelley1a6bca82008-07-11 11:11:42 +01002055 for (i = 0; i < RANDOM_SOCKS; i++)
2056 {
2057 int j = (i+finger) % RANDOM_SOCKS;
Simon Kelley9009d742008-11-14 20:04:27 +00002058 if (daemon->randomsocks[j].refcount != 0 &&
2059 daemon->randomsocks[j].family == family &&
2060 daemon->randomsocks[j].refcount != 0xffff)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002061 {
2062 finger = j;
2063 daemon->randomsocks[j].refcount++;
2064 return &daemon->randomsocks[j];
2065 }
2066 }
2067
2068 return NULL; /* doom */
2069}
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002070
2071void free_rfd(struct randfd *rfd)
2072{
2073 if (rfd && --(rfd->refcount) == 0)
2074 close(rfd->fd);
2075}
2076
Simon Kelley1a6bca82008-07-11 11:11:42 +01002077static void free_frec(struct frec *f)
2078{
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002079 free_rfd(f->rfd4);
Simon Kelley1a6bca82008-07-11 11:11:42 +01002080 f->rfd4 = NULL;
2081 f->sentto = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +00002082 f->flags = 0;
Simon Kelley1a6bca82008-07-11 11:11:42 +01002083
2084#ifdef HAVE_IPV6
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01002085 free_rfd(f->rfd6);
Simon Kelley1a6bca82008-07-11 11:11:42 +01002086 f->rfd6 = NULL;
2087#endif
Simon Kelley3a237152013-12-12 12:15:50 +00002088
2089#ifdef HAVE_DNSSEC
2090 if (f->stash)
Simon Kelley0fc2f312014-01-08 10:26:58 +00002091 {
2092 blockdata_free(f->stash);
2093 f->stash = NULL;
2094 }
Simon Kelley3a237152013-12-12 12:15:50 +00002095
Simon Kelley97e618a2015-01-07 21:55:43 +00002096 if (f->orig_domain)
2097 {
2098 blockdata_free(f->orig_domain);
2099 f->orig_domain = NULL;
2100 }
2101
Simon Kelley3a237152013-12-12 12:15:50 +00002102 /* Anything we're waiting on is pointless now, too */
2103 if (f->blocking_query)
2104 free_frec(f->blocking_query);
2105 f->blocking_query = NULL;
Simon Kelley39048ad2014-01-21 17:33:58 +00002106 f->dependent = NULL;
Simon Kelley3a237152013-12-12 12:15:50 +00002107#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01002108}
2109
Simon Kelley16972692006-10-16 20:04:18 +01002110/* if wait==NULL return a free or older than TIMEOUT record.
2111 else return *wait zero if one available, or *wait is delay to
Simon Kelley1a6bca82008-07-11 11:11:42 +01002112 when the oldest in-use record will expire. Impose an absolute
Simon Kelley3a237152013-12-12 12:15:50 +00002113 limit of 4*TIMEOUT before we wipe things (for random sockets).
2114 If force is set, always return a result, even if we have
2115 to allocate above the limit. */
2116struct frec *get_new_frec(time_t now, int *wait, int force)
Simon Kelley16972692006-10-16 20:04:18 +01002117{
Simon Kelley1a6bca82008-07-11 11:11:42 +01002118 struct frec *f, *oldest, *target;
Simon Kelley16972692006-10-16 20:04:18 +01002119 int count;
2120
2121 if (wait)
2122 *wait = 0;
2123
Simon Kelley1a6bca82008-07-11 11:11:42 +01002124 for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++)
Simon Kelley832af0b2007-01-21 20:01:28 +00002125 if (!f->sentto)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002126 target = f;
2127 else
Simon Kelley16972692006-10-16 20:04:18 +01002128 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002129 if (difftime(now, f->time) >= 4*TIMEOUT)
2130 {
2131 free_frec(f);
2132 target = f;
2133 }
2134
2135 if (!oldest || difftime(f->time, oldest->time) <= 0)
2136 oldest = f;
Simon Kelley16972692006-10-16 20:04:18 +01002137 }
Simon Kelley1a6bca82008-07-11 11:11:42 +01002138
2139 if (target)
2140 {
2141 target->time = now;
2142 return target;
2143 }
Simon Kelley16972692006-10-16 20:04:18 +01002144
2145 /* can't find empty one, use oldest if there is one
2146 and it's older than timeout */
2147 if (oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT)
2148 {
2149 /* keep stuff for twice timeout if we can by allocating a new
2150 record instead */
2151 if (difftime(now, oldest->time) < 2*TIMEOUT &&
2152 count <= daemon->ftabsize &&
2153 (f = allocate_frec(now)))
2154 return f;
2155
2156 if (!wait)
2157 {
Simon Kelley1a6bca82008-07-11 11:11:42 +01002158 free_frec(oldest);
Simon Kelley16972692006-10-16 20:04:18 +01002159 oldest->time = now;
2160 }
2161 return oldest;
2162 }
2163
2164 /* none available, calculate time 'till oldest record expires */
Simon Kelley3a237152013-12-12 12:15:50 +00002165 if (!force && count > daemon->ftabsize)
Simon Kelley16972692006-10-16 20:04:18 +01002166 {
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002167 static time_t last_log = 0;
2168
Simon Kelley16972692006-10-16 20:04:18 +01002169 if (oldest && wait)
2170 *wait = oldest->time + (time_t)TIMEOUT - now;
Marcelo Salhab Brogliato0da5e892013-05-31 11:49:06 +01002171
2172 if ((int)difftime(now, last_log) > 5)
2173 {
2174 last_log = now;
2175 my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries reached (max: %d)"), daemon->ftabsize);
2176 }
2177
Simon Kelley16972692006-10-16 20:04:18 +01002178 return NULL;
2179 }
2180
2181 if (!(f = allocate_frec(now)) && wait)
2182 /* wait one second on malloc failure */
2183 *wait = 1;
2184
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002185 return f; /* OK if malloc fails and this is NULL */
2186}
2187
Simon Kelley832af0b2007-01-21 20:01:28 +00002188/* crc is all-ones if not known. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002189static struct frec *lookup_frec(unsigned short id, void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002190{
2191 struct frec *f;
2192
Simon Kelley1a6bca82008-07-11 11:11:42 +01002193 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002194 if (f->sentto && f->new_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002195 (!hash || memcmp(hash, f->hash, HASH_SIZE) == 0))
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002196 return f;
2197
2198 return NULL;
2199}
2200
2201static struct frec *lookup_frec_by_sender(unsigned short id,
Simon Kelleyfd9fa482004-10-21 20:24:00 +01002202 union mysockaddr *addr,
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002203 void *hash)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002204{
Simon Kelleyfeba5c12004-07-27 20:28:58 +01002205 struct frec *f;
2206
Simon Kelley1a6bca82008-07-11 11:11:42 +01002207 for(f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002208 if (f->sentto &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002209 f->orig_id == id &&
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002210 memcmp(hash, f->hash, HASH_SIZE) == 0 &&
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002211 sockaddr_isequal(&f->source, addr))
2212 return f;
2213
2214 return NULL;
2215}
Simon Kelley47a95162014-07-08 22:22:02 +01002216
2217/* Send query packet again, if we can. */
2218void resend_query()
2219{
2220 if (daemon->srv_save)
2221 {
2222 int fd;
2223
2224 if (daemon->srv_save->sfd)
2225 fd = daemon->srv_save->sfd->fd;
2226 else if (daemon->rfd_save && daemon->rfd_save->refcount != 0)
2227 fd = daemon->rfd_save->fd;
2228 else
2229 return;
2230
2231 while(sendto(fd, daemon->packet, daemon->packet_len, 0,
2232 &daemon->srv_save->addr.sa, sa_len(&daemon->srv_save->addr)) == -1 && retry_send());
2233 }
2234}
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002235
Simon Kelley849a8352006-06-09 21:02:31 +01002236/* A server record is going away, remove references to it */
Simon Kelley5aabfc72007-08-29 11:24:47 +01002237void server_gone(struct server *server)
Simon Kelley849a8352006-06-09 21:02:31 +01002238{
2239 struct frec *f;
2240
Simon Kelley1a6bca82008-07-11 11:11:42 +01002241 for (f = daemon->frec_list; f; f = f->next)
Simon Kelley832af0b2007-01-21 20:01:28 +00002242 if (f->sentto && f->sentto == server)
Simon Kelley1a6bca82008-07-11 11:11:42 +01002243 free_frec(f);
Simon Kelley849a8352006-06-09 21:02:31 +01002244
2245 if (daemon->last_server == server)
2246 daemon->last_server = NULL;
2247
2248 if (daemon->srv_save == server)
2249 daemon->srv_save = NULL;
2250}
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002251
Simon Kelley316e2732010-01-22 20:16:09 +00002252/* return unique random ids. */
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002253static unsigned short get_id(void)
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002254{
2255 unsigned short ret = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +00002256
Simon Kelley316e2732010-01-22 20:16:09 +00002257 do
Simon Kelley832af0b2007-01-21 20:01:28 +00002258 ret = rand16();
Simon Kelley8a9be9e2014-01-25 23:17:21 +00002259 while (lookup_frec(ret, NULL));
Simon Kelley832af0b2007-01-21 20:01:28 +00002260
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002261 return ret;
2262}
2263
2264
2265
2266
2267