Simon Kelley | c47e3ba | 2014-01-08 17:07:54 +0000 | [diff] [blame] | 1 | /* dnsmasq is Copyright (c) 2000-2014 Simon Kelley |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2 | |
| 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 Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 5 | the Free Software Foundation; version 2 dated June, 1991, or |
| 6 | (at your option) version 3 dated 29 June, 2007. |
| 7 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 8 | 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 Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 12 | |
Simon Kelley | 73a08a2 | 2009-02-05 20:28:08 +0000 | [diff] [blame] | 13 | 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 Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 17 | #include "dnsmasq.h" |
| 18 | |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 19 | static struct frec *lookup_frec(unsigned short id, void *hash); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 20 | static struct frec *lookup_frec_by_sender(unsigned short id, |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 21 | union mysockaddr *addr, |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 22 | void *hash); |
| 23 | static unsigned short get_id(void); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 24 | static void free_frec(struct frec *f); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 25 | |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 26 | #ifdef HAVE_DNSSEC |
| 27 | static 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 Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 29 | static int do_check_sign(struct frec *forward, int status, time_t now, char *name, char *keyname); |
| 30 | static int send_check_sign(struct frec *forward, time_t now, struct dns_header *header, size_t plen, |
| 31 | char *name, char *keyname); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 32 | #endif |
| 33 | |
| 34 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 35 | /* Send a UDP packet with its source address set as "source" |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 36 | unless nowild is true, when we just send it with the kernel default */ |
Simon Kelley | 29689cf | 2012-03-22 14:01:00 +0000 | [diff] [blame] | 37 | int send_from(int fd, int nowild, char *packet, size_t len, |
| 38 | union mysockaddr *to, struct all_addr *source, |
Simon Kelley | 50303b1 | 2012-04-04 22:13:17 +0100 | [diff] [blame] | 39 | unsigned int iface) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 40 | { |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 41 | struct msghdr msg; |
| 42 | struct iovec iov[1]; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 43 | union { |
| 44 | struct cmsghdr align; /* this ensures alignment */ |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 45 | #if defined(HAVE_LINUX_NETWORK) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 46 | 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 Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 54 | |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 55 | iov[0].iov_base = packet; |
| 56 | iov[0].iov_len = len; |
| 57 | |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 58 | msg.msg_control = NULL; |
| 59 | msg.msg_controllen = 0; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 60 | 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 Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 65 | |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 66 | if (!nowild) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 67 | { |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 68 | struct cmsghdr *cmptr; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 69 | msg.msg_control = &control_u; |
| 70 | msg.msg_controllen = sizeof(control_u); |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 71 | cmptr = CMSG_FIRSTHDR(&msg); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 72 | |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 73 | if (to->sa.sa_family == AF_INET) |
| 74 | { |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 75 | #if defined(HAVE_LINUX_NETWORK) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 76 | 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 Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 80 | msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in_pktinfo)); |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 81 | cmptr->cmsg_level = IPPROTO_IP; |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 82 | cmptr->cmsg_type = IP_PKTINFO; |
| 83 | #elif defined(IP_SENDSRCADDR) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 84 | memcpy(CMSG_DATA(cmptr), &(source->addr.addr4), sizeof(source->addr.addr4)); |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 85 | 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 Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 88 | #endif |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 89 | } |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 90 | else |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 91 | #ifdef HAVE_IPV6 |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 92 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 93 | 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 Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 97 | msg.msg_controllen = cmptr->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo)); |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 98 | cmptr->cmsg_type = daemon->v6pktinfo; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 99 | cmptr->cmsg_level = IPPROTO_IPV6; |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 100 | } |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 101 | #else |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 102 | (void)iface; /* eliminate warning */ |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 103 | #endif |
| 104 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 105 | |
Simon Kelley | 29d28dd | 2012-12-03 14:05:59 +0000 | [diff] [blame] | 106 | while (sendmsg(fd, &msg, 0) == -1) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 107 | { |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 108 | if (retry_send()) |
Simon Kelley | 29d28dd | 2012-12-03 14:05:59 +0000 | [diff] [blame] | 109 | continue; |
| 110 | |
| 111 | /* If interface is still in DAD, EINVAL results - ignore that. */ |
| 112 | if (errno == EINVAL) |
| 113 | break; |
Simon Kelley | 22d904d | 2012-02-26 20:13:45 +0000 | [diff] [blame] | 114 | |
Simon Kelley | 50303b1 | 2012-04-04 22:13:17 +0100 | [diff] [blame] | 115 | my_syslog(LOG_ERR, _("failed to send packet: %s"), strerror(errno)); |
Simon Kelley | 29689cf | 2012-03-22 14:01:00 +0000 | [diff] [blame] | 116 | return 0; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 117 | } |
Simon Kelley | 29d28dd | 2012-12-03 14:05:59 +0000 | [diff] [blame] | 118 | |
Simon Kelley | 29689cf | 2012-03-22 14:01:00 +0000 | [diff] [blame] | 119 | return 1; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 122 | static unsigned int search_servers(time_t now, struct all_addr **addrpp, |
| 123 | unsigned int qtype, char *qdomain, int *type, char **domain, int *norebind) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 124 | |
| 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 Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 133 | unsigned int flags = 0; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 134 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 135 | for (serv = daemon->servers; serv; serv=serv->next) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 136 | /* domain matches take priority over NODOTS matches */ |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 137 | if ((serv->flags & SERV_FOR_NODOTS) && *type != SERV_HAS_DOMAIN && !strchr(qdomain, '.') && namelen != 0) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 138 | { |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 139 | unsigned int sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 140 | *type = SERV_FOR_NODOTS; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 141 | if (serv->flags & SERV_NO_ADDR) |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 142 | 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 Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 150 | #ifdef HAVE_IPV6 |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 151 | else |
| 152 | *addrpp = (struct all_addr *)&serv->addr.in6.sin6_addr; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 153 | #endif |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 154 | } |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 155 | else if (!flags || (flags & F_NXDOMAIN)) |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 156 | flags = F_NOERR; |
| 157 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 158 | } |
| 159 | else if (serv->flags & SERV_HAS_DOMAIN) |
| 160 | { |
| 161 | unsigned int domainlen = strlen(serv->domain); |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 162 | char *matchstart = qdomain + namelen - domainlen; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 163 | if (namelen >= domainlen && |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 164 | hostname_isequal(matchstart, serv->domain) && |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 165 | (domainlen == 0 || namelen == domainlen || *(matchstart-1) == '.' )) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 166 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 167 | if (serv->flags & SERV_NO_REBIND) |
| 168 | *norebind = 1; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 169 | else |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 170 | { |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 171 | 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 Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 176 | { |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 177 | if ((serv->flags & SERV_LITERAL_ADDRESS)) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 178 | { |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 179 | if (!(sflag & qtype) && flags == 0) |
| 180 | continue; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 181 | } |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 182 | else |
| 183 | { |
| 184 | if (flags & (F_IPV4 | F_IPV6)) |
| 185 | continue; |
| 186 | } |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 187 | } |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 188 | |
| 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 Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 215 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 216 | } |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 217 | |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 218 | if (flags == 0 && !(qtype & F_QUERY) && |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 219 | option_bool(OPT_NODOTS_LOCAL) && !strchr(qdomain, '.') && namelen != 0) |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 220 | /* don't forward A or AAAA queries for simple names, except the empty name */ |
| 221 | flags = F_NOERR; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 222 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 223 | if (flags == F_NXDOMAIN && check_for_local_domain(qdomain, now)) |
Simon Kelley | c1bb850 | 2004-08-11 18:40:17 +0100 | [diff] [blame] | 224 | flags = F_NOERR; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 225 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 226 | if (flags) |
| 227 | { |
| 228 | int logflags = 0; |
| 229 | |
| 230 | if (flags == F_NXDOMAIN || flags == F_NOERR) |
| 231 | logflags = F_NEG | qtype; |
| 232 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 233 | log_query(logflags | flags | F_CONFIG | F_FORWARD, qdomain, *addrpp, NULL); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 234 | } |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 235 | else if ((*type) & SERV_USE_RESOLV) |
| 236 | { |
| 237 | *type = 0; /* use normal servers for this domain */ |
| 238 | *domain = NULL; |
| 239 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 240 | return flags; |
| 241 | } |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 242 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 243 | static int forward_query(int udpfd, union mysockaddr *udpaddr, |
| 244 | struct all_addr *dst_addr, unsigned int dst_iface, |
Simon Kelley | 83349b8 | 2014-02-10 21:02:01 +0000 | [diff] [blame] | 245 | struct dns_header *header, size_t plen, time_t now, |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 246 | struct frec *forward, int ad_reqd, int do_bit) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 247 | { |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 248 | char *domain = NULL; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 249 | int type = 0, norebind = 0; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 250 | struct all_addr *addrp = NULL; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 251 | unsigned int flags = 0; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 252 | struct server *start = NULL; |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 253 | #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 Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 261 | (void)do_bit; |
| 262 | |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 263 | /* may be no servers available. */ |
| 264 | if (!daemon->servers) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 265 | forward = NULL; |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 266 | else if (forward || (hash && (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, hash)))) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 267 | { |
Simon Kelley | e0c0ad3 | 2014-01-16 22:42:07 +0000 | [diff] [blame] | 268 | #ifdef HAVE_DNSSEC |
Simon Kelley | dac7431 | 2014-02-13 16:43:49 +0000 | [diff] [blame] | 269 | /* If we've already got an answer to this query, but we're awaiting keys for validation, |
Simon Kelley | e0c0ad3 | 2014-01-16 22:42:07 +0000 | [diff] [blame] | 270 | 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 Kelley | 2b29191 | 2014-03-21 11:13:55 +0000 | [diff] [blame] | 281 | if (forward->sentto->addr.sa.sa_family == AF_INET) |
Simon Kelley | e0c0ad3 | 2014-01-16 22:42:07 +0000 | [diff] [blame] | 282 | log_query(F_DNSSEC | F_IPV4, "retry", (struct all_addr *)&forward->sentto->addr.in.sin_addr, "dnssec"); |
| 283 | #ifdef HAVE_IPV6 |
| 284 | else |
| 285 | log_query(F_DNSSEC | F_IPV6, "retry", (struct all_addr *)&forward->sentto->addr.in6.sin6_addr, "dnssec"); |
| 286 | #endif |
| 287 | |
| 288 | if (forward->sentto->sfd) |
| 289 | fd = forward->sentto->sfd->fd; |
| 290 | else |
| 291 | { |
| 292 | #ifdef HAVE_IPV6 |
| 293 | if (forward->sentto->addr.sa.sa_family == AF_INET6) |
| 294 | fd = forward->rfd6->fd; |
| 295 | else |
| 296 | #endif |
| 297 | fd = forward->rfd4->fd; |
| 298 | } |
| 299 | |
| 300 | while (sendto(fd, (char *)header, plen, 0, |
| 301 | &forward->sentto->addr.sa, |
Simon Kelley | 2b29191 | 2014-03-21 11:13:55 +0000 | [diff] [blame] | 302 | sa_len(&forward->sentto->addr)) == -1 && retry_send()); |
Simon Kelley | e0c0ad3 | 2014-01-16 22:42:07 +0000 | [diff] [blame] | 303 | |
| 304 | return 1; |
| 305 | } |
| 306 | #endif |
| 307 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 308 | /* retry on existing query, send to all available servers */ |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 309 | domain = forward->sentto->domain; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 310 | forward->sentto->failed_queries++; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 311 | if (!option_bool(OPT_ORDER)) |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 312 | { |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 313 | forward->forwardall = 1; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 314 | daemon->last_server = NULL; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 315 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 316 | type = forward->sentto->flags & SERV_TYPE; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 317 | if (!(start = forward->sentto->next)) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 318 | start = daemon->servers; /* at end of list, recycle */ |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 319 | header->id = htons(forward->new_id); |
| 320 | } |
| 321 | else |
| 322 | { |
| 323 | if (gotname) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 324 | flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 325 | |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 326 | if (!flags && !(forward = get_new_frec(now, NULL, 0))) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 327 | /* table full - server failure. */ |
| 328 | flags = F_NEG; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 329 | |
| 330 | if (forward) |
| 331 | { |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 332 | forward->source = *udpaddr; |
| 333 | forward->dest = *dst_addr; |
| 334 | forward->iface = dst_iface; |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 335 | forward->orig_id = ntohs(header->id); |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 336 | forward->new_id = get_id(); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 337 | forward->fd = udpfd; |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 338 | memcpy(forward->hash, hash, HASH_SIZE); |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 339 | forward->forwardall = 0; |
Simon Kelley | ed4c076 | 2013-10-08 20:46:34 +0100 | [diff] [blame] | 340 | forward->flags = 0; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 341 | if (norebind) |
| 342 | forward->flags |= FREC_NOREBIND; |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 343 | if (header->hb4 & HB4_CD) |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 344 | forward->flags |= FREC_CHECKING_DISABLED; |
Simon Kelley | 83349b8 | 2014-02-10 21:02:01 +0000 | [diff] [blame] | 345 | if (ad_reqd) |
| 346 | forward->flags |= FREC_AD_QUESTION; |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 347 | #ifdef HAVE_DNSSEC |
| 348 | forward->work_counter = DNSSEC_WORK; |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 349 | if (do_bit) |
| 350 | forward->flags |= FREC_DO_QUESTION; |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 351 | #endif |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 352 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 353 | header->id = htons(forward->new_id); |
| 354 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 355 | /* 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 Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 358 | otherwise, use the one last known to work. */ |
| 359 | |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 360 | if (type == 0) |
| 361 | { |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 362 | if (option_bool(OPT_ORDER)) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 363 | 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 Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 375 | { |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 376 | start = daemon->servers; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 377 | if (!option_bool(OPT_ORDER)) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 378 | forward->forwardall = 1; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 379 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 380 | } |
| 381 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 382 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 383 | /* 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 Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 389 | struct server *firstsentto = start; |
| 390 | int forwarded = 0; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 391 | |
Giacomo Tazzari | 797a7af | 2013-04-22 13:16:37 +0100 | [diff] [blame] | 392 | if (option_bool(OPT_ADD_MAC)) |
Simon Kelley | 60b6806 | 2014-01-08 12:10:28 +0000 | [diff] [blame] | 393 | plen = add_mac(header, plen, ((char *) header) + daemon->packet_buff_sz, &forward->source); |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 394 | |
Simon Kelley | ed4c076 | 2013-10-08 20:46:34 +0100 | [diff] [blame] | 395 | if (option_bool(OPT_CLIENT_SUBNET)) |
| 396 | { |
Simon Kelley | 60b6806 | 2014-01-08 12:10:28 +0000 | [diff] [blame] | 397 | size_t new = add_source_addr(header, plen, ((char *) header) + daemon->packet_buff_sz, &forward->source); |
Simon Kelley | ed4c076 | 2013-10-08 20:46:34 +0100 | [diff] [blame] | 398 | if (new != plen) |
| 399 | { |
| 400 | plen = new; |
| 401 | forward->flags |= FREC_HAS_SUBNET; |
| 402 | } |
| 403 | } |
| 404 | |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 405 | #ifdef HAVE_DNSSEC |
| 406 | if (option_bool(OPT_DNSSEC_VALID)) |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 407 | { |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 408 | size_t new_plen = add_do_bit(header, plen, ((char *) header) + daemon->packet_buff_sz); |
| 409 | |
Simon Kelley | 5b3bf92 | 2014-01-25 17:03:07 +0000 | [diff] [blame] | 410 | /* For debugging, set Checking Disabled, otherwise, have the upstream check too, |
| 411 | this allows it to select auth servers when one is returning bad data. */ |
| 412 | if (option_bool(OPT_DNSSEC_DEBUG)) |
| 413 | header->hb4 |= HB4_CD; |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 414 | |
| 415 | if (new_plen != plen) |
| 416 | forward->flags |= FREC_ADDED_PHEADER; |
| 417 | |
| 418 | plen = new_plen; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 419 | } |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 420 | #endif |
| 421 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 422 | while (1) |
| 423 | { |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 424 | /* only send to servers dealing with our domain. |
| 425 | domain may be NULL, in which case server->domain |
| 426 | must be NULL also. */ |
| 427 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 428 | if (type == (start->flags & SERV_TYPE) && |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 429 | (type != SERV_HAS_DOMAIN || hostname_isequal(domain, start->domain)) && |
Simon Kelley | b5ea1cc | 2014-07-29 16:34:14 +0100 | [diff] [blame] | 430 | !(start->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP))) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 431 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 432 | int fd; |
| 433 | |
| 434 | /* find server socket to use, may need to get random one. */ |
| 435 | if (start->sfd) |
| 436 | fd = start->sfd->fd; |
| 437 | else |
| 438 | { |
| 439 | #ifdef HAVE_IPV6 |
| 440 | if (start->addr.sa.sa_family == AF_INET6) |
| 441 | { |
| 442 | if (!forward->rfd6 && |
| 443 | !(forward->rfd6 = allocate_rfd(AF_INET6))) |
| 444 | break; |
Simon Kelley | 3927da4 | 2008-07-20 15:10:39 +0100 | [diff] [blame] | 445 | daemon->rfd_save = forward->rfd6; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 446 | fd = forward->rfd6->fd; |
| 447 | } |
| 448 | else |
| 449 | #endif |
| 450 | { |
| 451 | if (!forward->rfd4 && |
| 452 | !(forward->rfd4 = allocate_rfd(AF_INET))) |
| 453 | break; |
Simon Kelley | 3927da4 | 2008-07-20 15:10:39 +0100 | [diff] [blame] | 454 | daemon->rfd_save = forward->rfd4; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 455 | fd = forward->rfd4->fd; |
| 456 | } |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 457 | |
| 458 | #ifdef HAVE_CONNTRACK |
| 459 | /* Copy connection mark of incoming query to outgoing connection. */ |
| 460 | if (option_bool(OPT_CONNTRACK)) |
| 461 | { |
| 462 | unsigned int mark; |
Giacomo Tazzari | 797a7af | 2013-04-22 13:16:37 +0100 | [diff] [blame] | 463 | if (get_incoming_mark(&forward->source, &forward->dest, 0, &mark)) |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 464 | setsockopt(fd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int)); |
| 465 | } |
| 466 | #endif |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | if (sendto(fd, (char *)header, plen, 0, |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 470 | &start->addr.sa, |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 471 | sa_len(&start->addr)) == -1) |
| 472 | { |
| 473 | if (retry_send()) |
| 474 | continue; |
| 475 | } |
| 476 | else |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 477 | { |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 478 | /* Keep info in case we want to re-send this packet */ |
| 479 | daemon->srv_save = start; |
| 480 | daemon->packet_len = plen; |
| 481 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 482 | if (!gotname) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 483 | strcpy(daemon->namebuff, "query"); |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 484 | if (start->addr.sa.sa_family == AF_INET) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 485 | log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff, |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 486 | (struct all_addr *)&start->addr.in.sin_addr, NULL); |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 487 | #ifdef HAVE_IPV6 |
| 488 | else |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 489 | log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff, |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 490 | (struct all_addr *)&start->addr.in6.sin6_addr, NULL); |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 491 | #endif |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 492 | start->queries++; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 493 | forwarded = 1; |
| 494 | forward->sentto = start; |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 495 | if (!forward->forwardall) |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 496 | break; |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 497 | forward->forwardall++; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 498 | } |
| 499 | } |
| 500 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 501 | if (!(start = start->next)) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 502 | start = daemon->servers; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 503 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 504 | if (start == firstsentto) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 505 | break; |
| 506 | } |
| 507 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 508 | if (forwarded) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 509 | return 1; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 510 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 511 | /* could not send on, prepare to return */ |
| 512 | header->id = htons(forward->orig_id); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 513 | free_frec(forward); /* cancel */ |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | /* could not send on, return empty answer or address if known for whole domain */ |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 517 | if (udpfd != -1) |
| 518 | { |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 519 | plen = setup_reply(header, plen, addrp, flags, daemon->local_ttl); |
Simon Kelley | 54dd393 | 2012-06-20 11:23:38 +0100 | [diff] [blame] | 520 | send_from(udpfd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), (char *)header, plen, udpaddr, dst_addr, dst_iface); |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 523 | return 0; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 524 | } |
| 525 | |
Simon Kelley | ed4c076 | 2013-10-08 20:46:34 +0100 | [diff] [blame] | 526 | static size_t process_reply(struct dns_header *header, time_t now, struct server *server, size_t n, int check_rebind, |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 527 | int no_cache, int cache_secure, int ad_reqd, int do_bit, int added_pheader, int check_subnet, union mysockaddr *query_source) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 528 | { |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 529 | unsigned char *pheader, *sizep; |
Jason A. Donenfeld | 13d86c7 | 2013-02-22 18:20:53 +0000 | [diff] [blame] | 530 | char **sets = 0; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 531 | int munged = 0, is_sign; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 532 | size_t plen; |
| 533 | |
Simon Kelley | 83349b8 | 2014-02-10 21:02:01 +0000 | [diff] [blame] | 534 | (void)ad_reqd; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 535 | (void) do_bit; |
Simon Kelley | 83349b8 | 2014-02-10 21:02:01 +0000 | [diff] [blame] | 536 | |
Jason A. Donenfeld | 13d86c7 | 2013-02-22 18:20:53 +0000 | [diff] [blame] | 537 | #ifdef HAVE_IPSET |
Simon Kelley | 82a14af | 2014-04-13 20:48:57 +0100 | [diff] [blame] | 538 | if (daemon->ipsets && extract_request(header, n, daemon->namebuff, NULL)) |
Jason A. Donenfeld | 13d86c7 | 2013-02-22 18:20:53 +0000 | [diff] [blame] | 539 | { |
Simon Kelley | 82a14af | 2014-04-13 20:48:57 +0100 | [diff] [blame] | 540 | /* Similar algorithm to search_servers. */ |
| 541 | struct ipsets *ipset_pos; |
| 542 | unsigned int namelen = strlen(daemon->namebuff); |
| 543 | unsigned int matchlen = 0; |
| 544 | for (ipset_pos = daemon->ipsets; ipset_pos; ipset_pos = ipset_pos->next) |
Simon Kelley | 6c0cb85 | 2014-01-17 14:40:46 +0000 | [diff] [blame] | 545 | { |
Simon Kelley | 82a14af | 2014-04-13 20:48:57 +0100 | [diff] [blame] | 546 | unsigned int domainlen = strlen(ipset_pos->domain); |
| 547 | char *matchstart = daemon->namebuff + namelen - domainlen; |
| 548 | if (namelen >= domainlen && hostname_isequal(matchstart, ipset_pos->domain) && |
| 549 | (domainlen == 0 || namelen == domainlen || *(matchstart - 1) == '.' ) && |
| 550 | domainlen >= matchlen) |
| 551 | { |
| 552 | matchlen = domainlen; |
| 553 | sets = ipset_pos->sets; |
| 554 | } |
Simon Kelley | 6c0cb85 | 2014-01-17 14:40:46 +0000 | [diff] [blame] | 555 | } |
Jason A. Donenfeld | 13d86c7 | 2013-02-22 18:20:53 +0000 | [diff] [blame] | 556 | } |
| 557 | #endif |
| 558 | |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 559 | /* If upstream is advertising a larger UDP packet size |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 560 | than we allow, trim it so that we don't get overlarge |
| 561 | requests for the client. We can't do this for signed packets. */ |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 562 | |
Simon Kelley | ed4c076 | 2013-10-08 20:46:34 +0100 | [diff] [blame] | 563 | if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign))) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 564 | { |
Simon Kelley | 83349b8 | 2014-02-10 21:02:01 +0000 | [diff] [blame] | 565 | unsigned short udpsz; |
| 566 | unsigned char *psave = sizep; |
| 567 | |
| 568 | GETSHORT(udpsz, sizep); |
| 569 | |
| 570 | if (!is_sign && udpsz > daemon->edns_pktsz) |
| 571 | PUTSHORT(daemon->edns_pktsz, psave); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 572 | |
Simon Kelley | ed4c076 | 2013-10-08 20:46:34 +0100 | [diff] [blame] | 573 | if (check_subnet && !check_source(header, plen, pheader, query_source)) |
| 574 | { |
| 575 | my_syslog(LOG_WARNING, _("discarding DNS reply: subnet option mismatch")); |
| 576 | return 0; |
| 577 | } |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 578 | |
| 579 | if (added_pheader) |
| 580 | { |
| 581 | pheader = 0; |
| 582 | header->arcount = htons(0); |
| 583 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 584 | } |
Simon Kelley | 83349b8 | 2014-02-10 21:02:01 +0000 | [diff] [blame] | 585 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 586 | /* RFC 4035 sect 4.6 para 3 */ |
Giovanni Bajo | 237724c | 2012-04-05 02:46:52 +0200 | [diff] [blame] | 587 | if (!is_sign && !option_bool(OPT_DNSSEC_PROXY)) |
Simon Kelley | 795501b | 2014-01-08 18:11:55 +0000 | [diff] [blame] | 588 | header->hb4 &= ~HB4_AD; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 589 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 590 | if (OPCODE(header) != QUERY || (RCODE(header) != NOERROR && RCODE(header) != NXDOMAIN)) |
Simon Kelley | 8938ae0 | 2014-05-01 17:46:25 +0100 | [diff] [blame] | 591 | return resize_packet(header, n, pheader, plen); |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 592 | |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 593 | /* Complain loudly if the upstream server is non-recursive. */ |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 594 | if (!(header->hb4 & HB4_RA) && RCODE(header) == NOERROR && ntohs(header->ancount) == 0 && |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 595 | server && !(server->flags & SERV_WARNED_RECURSIVE)) |
| 596 | { |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 597 | prettyprint_addr(&server->addr, daemon->namebuff); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 598 | my_syslog(LOG_WARNING, _("nameserver %s refused to do a recursive query"), daemon->namebuff); |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 599 | if (!option_bool(OPT_LOG)) |
Simon Kelley | 0a85254 | 2005-03-23 20:28:59 +0000 | [diff] [blame] | 600 | server->flags |= SERV_WARNED_RECURSIVE; |
| 601 | } |
Giovanni Bajo | e292e93 | 2012-04-22 14:32:02 +0200 | [diff] [blame] | 602 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 603 | if (daemon->bogus_addr && RCODE(header) != NXDOMAIN && |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 604 | check_for_bogus_wildcard(header, n, daemon->namebuff, daemon->bogus_addr, now)) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 605 | { |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 606 | munged = 1; |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 607 | SET_RCODE(header, NXDOMAIN); |
| 608 | header->hb3 &= ~HB3_AA; |
Simon Kelley | 6938f34 | 2014-01-26 22:47:39 +0000 | [diff] [blame] | 609 | cache_secure = 0; |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 610 | } |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 611 | else |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 612 | { |
Simon Kelley | 6938f34 | 2014-01-26 22:47:39 +0000 | [diff] [blame] | 613 | int doctored = 0; |
| 614 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 615 | if (RCODE(header) == NXDOMAIN && |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 616 | extract_request(header, n, daemon->namebuff, NULL) && |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 617 | check_for_local_domain(daemon->namebuff, now)) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 618 | { |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 619 | /* if we forwarded a query for a locally known name (because it was for |
| 620 | an unknown type) and the answer is NXDOMAIN, convert that to NODATA, |
| 621 | since we know that the domain exists, even if upstream doesn't */ |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 622 | munged = 1; |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 623 | header->hb3 |= HB3_AA; |
| 624 | SET_RCODE(header, NOERROR); |
Simon Kelley | 6938f34 | 2014-01-26 22:47:39 +0000 | [diff] [blame] | 625 | cache_secure = 0; |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 626 | } |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 627 | |
Simon Kelley | 6938f34 | 2014-01-26 22:47:39 +0000 | [diff] [blame] | 628 | if (extract_addresses(header, n, daemon->namebuff, now, sets, is_sign, check_rebind, no_cache, cache_secure, &doctored)) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 629 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 630 | my_syslog(LOG_WARNING, _("possible DNS-rebind attack detected: %s"), daemon->namebuff); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 631 | munged = 1; |
Simon Kelley | 6938f34 | 2014-01-26 22:47:39 +0000 | [diff] [blame] | 632 | cache_secure = 0; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 633 | } |
Simon Kelley | 6938f34 | 2014-01-26 22:47:39 +0000 | [diff] [blame] | 634 | |
| 635 | if (doctored) |
| 636 | cache_secure = 0; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 637 | } |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 638 | |
Simon Kelley | a25720a | 2014-01-14 23:13:55 +0000 | [diff] [blame] | 639 | #ifdef HAVE_DNSSEC |
| 640 | if (no_cache && !(header->hb4 & HB4_CD)) |
| 641 | { |
Simon Kelley | 7d23a66 | 2014-01-26 09:33:21 +0000 | [diff] [blame] | 642 | if (!option_bool(OPT_DNSSEC_DEBUG)) |
Simon Kelley | a25720a | 2014-01-14 23:13:55 +0000 | [diff] [blame] | 643 | { |
| 644 | /* Bogus reply, turn into SERVFAIL */ |
| 645 | SET_RCODE(header, SERVFAIL); |
| 646 | munged = 1; |
| 647 | } |
| 648 | } |
Simon Kelley | 6938f34 | 2014-01-26 22:47:39 +0000 | [diff] [blame] | 649 | |
| 650 | if (option_bool(OPT_DNSSEC_VALID)) |
| 651 | header->hb4 &= ~HB4_AD; |
| 652 | |
Simon Kelley | 83349b8 | 2014-02-10 21:02:01 +0000 | [diff] [blame] | 653 | if (!(header->hb4 & HB4_CD) && ad_reqd && cache_secure) |
Simon Kelley | 6938f34 | 2014-01-26 22:47:39 +0000 | [diff] [blame] | 654 | header->hb4 |= HB4_AD; |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 655 | |
| 656 | /* If the requestor didn't set the DO bit, don't return DNSSEC info. */ |
| 657 | if (!do_bit) |
| 658 | n = filter_rrsigs(header, n); |
Simon Kelley | a25720a | 2014-01-14 23:13:55 +0000 | [diff] [blame] | 659 | #endif |
| 660 | |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 661 | /* do this after extract_addresses. Ensure NODATA reply and remove |
| 662 | nameserver info. */ |
| 663 | |
| 664 | if (munged) |
| 665 | { |
| 666 | header->ancount = htons(0); |
| 667 | header->nscount = htons(0); |
| 668 | header->arcount = htons(0); |
| 669 | } |
| 670 | |
Simon Kelley | 36717ee | 2004-09-20 19:20:58 +0100 | [diff] [blame] | 671 | /* the bogus-nxdomain stuff, doctor and NXDOMAIN->NODATA munging can all elide |
| 672 | sections of the packet. Find the new length here and put back pseudoheader |
| 673 | if it was removed. */ |
| 674 | return resize_packet(header, n, pheader, plen); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 675 | } |
| 676 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 677 | /* sets new last_server */ |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 678 | void reply_query(int fd, int family, time_t now) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 679 | { |
| 680 | /* packet from peer server, extract data for cache, and send to |
| 681 | original requester */ |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 682 | struct dns_header *header; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 683 | union mysockaddr serveraddr; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 684 | struct frec *forward; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 685 | socklen_t addrlen = sizeof(serveraddr); |
Simon Kelley | 60b6806 | 2014-01-08 12:10:28 +0000 | [diff] [blame] | 686 | ssize_t n = recvfrom(fd, daemon->packet, daemon->packet_buff_sz, 0, &serveraddr.sa, &addrlen); |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 687 | size_t nn; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 688 | struct server *server; |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 689 | void *hash; |
| 690 | #ifndef HAVE_DNSSEC |
| 691 | unsigned int crc; |
| 692 | #endif |
| 693 | |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 694 | /* packet buffer overwritten */ |
| 695 | daemon->srv_save = NULL; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 696 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 697 | /* Determine the address of the server replying so that we can mark that as good */ |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 698 | serveraddr.sa.sa_family = family; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 699 | #ifdef HAVE_IPV6 |
| 700 | if (serveraddr.sa.sa_family == AF_INET6) |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 701 | serveraddr.in6.sin6_flowinfo = 0; |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 702 | #endif |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 703 | |
Simon Kelley | 490f907 | 2014-03-24 22:04:42 +0000 | [diff] [blame] | 704 | header = (struct dns_header *)daemon->packet; |
| 705 | |
| 706 | if (n < (int)sizeof(struct dns_header) || !(header->hb3 & HB3_QR)) |
| 707 | return; |
| 708 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 709 | /* spoof check: answer must come from known server, */ |
| 710 | for (server = daemon->servers; server; server = server->next) |
| 711 | if (!(server->flags & (SERV_LITERAL_ADDRESS | SERV_NO_ADDR)) && |
| 712 | sockaddr_isequal(&server->addr, &serveraddr)) |
| 713 | break; |
Simon Kelley | 490f907 | 2014-03-24 22:04:42 +0000 | [diff] [blame] | 714 | |
| 715 | if (!server) |
| 716 | return; |
| 717 | |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 718 | #ifdef HAVE_DNSSEC |
| 719 | hash = hash_questions(header, n, daemon->namebuff); |
| 720 | #else |
| 721 | hash = &crc; |
| 722 | crc = questions_crc(header, n, daemon->namebuff); |
| 723 | #endif |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 724 | |
Simon Kelley | 490f907 | 2014-03-24 22:04:42 +0000 | [diff] [blame] | 725 | if (!(forward = lookup_frec(ntohs(header->id), hash))) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 726 | return; |
Simon Kelley | 490f907 | 2014-03-24 22:04:42 +0000 | [diff] [blame] | 727 | |
Glen Huang | 32fc6db | 2014-12-27 15:28:12 +0000 | [diff] [blame] | 728 | if (daemon->ignore_addr && RCODE(header) == NOERROR && |
| 729 | check_for_ignored_address(header, n, daemon->ignore_addr)) |
| 730 | return; |
| 731 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 732 | if ((RCODE(header) == SERVFAIL || RCODE(header) == REFUSED) && |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 733 | !option_bool(OPT_ORDER) && |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 734 | forward->forwardall == 0) |
| 735 | /* for broken servers, attempt to send to another one. */ |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 736 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 737 | unsigned char *pheader; |
| 738 | size_t plen; |
| 739 | int is_sign; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 740 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 741 | /* recreate query from reply */ |
| 742 | pheader = find_pseudoheader(header, (size_t)n, &plen, NULL, &is_sign); |
| 743 | if (!is_sign) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 744 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 745 | header->ancount = htons(0); |
| 746 | header->nscount = htons(0); |
| 747 | header->arcount = htons(0); |
| 748 | if ((nn = resize_packet(header, (size_t)n, pheader, plen))) |
| 749 | { |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 750 | header->hb3 &= ~(HB3_QR | HB3_TC); |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 751 | forward_query(-1, NULL, NULL, 0, header, nn, now, forward, 0, 0); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 752 | return; |
| 753 | } |
| 754 | } |
| 755 | } |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 756 | |
| 757 | server = forward->sentto; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 758 | |
| 759 | if ((forward->sentto->flags & SERV_TYPE) == 0) |
| 760 | { |
Simon Kelley | 51967f9 | 2014-03-25 21:07:00 +0000 | [diff] [blame] | 761 | if (RCODE(header) == REFUSED) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 762 | server = NULL; |
| 763 | else |
| 764 | { |
| 765 | struct server *last_server; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 766 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 767 | /* find good server by address if possible, otherwise assume the last one we sent to */ |
| 768 | for (last_server = daemon->servers; last_server; last_server = last_server->next) |
| 769 | if (!(last_server->flags & (SERV_LITERAL_ADDRESS | SERV_HAS_DOMAIN | SERV_FOR_NODOTS | SERV_NO_ADDR)) && |
| 770 | sockaddr_isequal(&last_server->addr, &serveraddr)) |
| 771 | { |
| 772 | server = last_server; |
| 773 | break; |
| 774 | } |
| 775 | } |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 776 | if (!option_bool(OPT_ALL_SERVERS)) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 777 | daemon->last_server = server; |
| 778 | } |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 779 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 780 | /* If the answer is an error, keep the forward record in place in case |
| 781 | we get a good reply from another server. Kill it when we've |
| 782 | had replies from all to avoid filling the forwarding table when |
| 783 | everything is broken */ |
Simon Kelley | 51967f9 | 2014-03-25 21:07:00 +0000 | [diff] [blame] | 784 | if (forward->forwardall == 0 || --forward->forwardall == 1 || RCODE(header) != SERVFAIL) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 785 | { |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 786 | int check_rebind = 0, no_cache_dnssec = 0, cache_secure = 0; |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 787 | |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 788 | if (option_bool(OPT_NO_REBIND)) |
| 789 | check_rebind = !(forward->flags & FREC_NOREBIND); |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 790 | |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 791 | /* Don't cache replies where DNSSEC validation was turned off, either |
| 792 | the upstream server told us so, or the original query specified it. */ |
| 793 | if ((header->hb4 & HB4_CD) || (forward->flags & FREC_CHECKING_DISABLED)) |
| 794 | no_cache_dnssec = 1; |
| 795 | |
| 796 | #ifdef HAVE_DNSSEC |
Simon Kelley | 51967f9 | 2014-03-25 21:07:00 +0000 | [diff] [blame] | 797 | if (server && option_bool(OPT_DNSSEC_VALID) && !(forward->flags & FREC_CHECKING_DISABLED)) |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 798 | { |
Simon Kelley | 9d63304 | 2013-12-13 15:36:55 +0000 | [diff] [blame] | 799 | int status; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 800 | |
| 801 | /* We've had a reply already, which we're validating. Ignore this duplicate */ |
Simon Kelley | e0c0ad3 | 2014-01-16 22:42:07 +0000 | [diff] [blame] | 802 | if (forward->blocking_query) |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 803 | return; |
Simon Kelley | 9d63304 | 2013-12-13 15:36:55 +0000 | [diff] [blame] | 804 | |
Simon Kelley | 871417d | 2014-01-08 11:22:32 +0000 | [diff] [blame] | 805 | if (header->hb3 & HB3_TC) |
| 806 | { |
| 807 | /* Truncated answer can't be validated. |
Simon Kelley | 5d3b87a | 2014-01-20 11:57:23 +0000 | [diff] [blame] | 808 | If this is an answer to a DNSSEC-generated query, we still |
| 809 | need to get the client to retry over TCP, so return |
| 810 | an answer with the TC bit set, even if the actual answer fits. |
| 811 | */ |
| 812 | status = STAT_TRUNCATED; |
Simon Kelley | 871417d | 2014-01-08 11:22:32 +0000 | [diff] [blame] | 813 | } |
| 814 | else if (forward->flags & FREC_DNSKEY_QUERY) |
Simon Kelley | 8d718cb | 2014-02-03 16:27:37 +0000 | [diff] [blame] | 815 | status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class); |
Simon Kelley | c3e0b9b | 2013-12-31 13:50:39 +0000 | [diff] [blame] | 816 | else if (forward->flags & FREC_DS_QUERY) |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 817 | { |
| 818 | status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class); |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 819 | if (status == STAT_NO_DS || status == STAT_NO_NS) |
| 820 | status = STAT_BOGUS; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 821 | } |
| 822 | else if (forward->flags & FREC_CHECK_NOSIGN) |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 823 | { |
| 824 | status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class); |
| 825 | if (status != STAT_NEED_KEY) |
| 826 | status = do_check_sign(forward, status, now, daemon->namebuff, daemon->keyname); |
| 827 | } |
Simon Kelley | 9d63304 | 2013-12-13 15:36:55 +0000 | [diff] [blame] | 828 | else |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 829 | { |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 830 | status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL, NULL); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 831 | if (status == STAT_NO_SIG) |
| 832 | { |
| 833 | if (option_bool(OPT_DNSSEC_NO_SIGN)) |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 834 | status = send_check_sign(forward, now, header, n, daemon->namebuff, daemon->keyname); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 835 | else |
| 836 | status = STAT_INSECURE; |
| 837 | } |
| 838 | } |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 839 | /* Can't validate, as we're missing key data. Put this |
| 840 | answer aside, whilst we get that. */ |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 841 | if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY) |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 842 | { |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 843 | struct frec *new, *orig; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 844 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 845 | /* Free any saved query */ |
| 846 | if (forward->stash) |
| 847 | blockdata_free(forward->stash); |
| 848 | |
| 849 | /* Now save reply pending receipt of key data */ |
| 850 | if (!(forward->stash = blockdata_alloc((char *)header, n))) |
| 851 | return; |
| 852 | forward->stash_len = n; |
| 853 | |
| 854 | anotherkey: |
| 855 | /* Find the original query that started it all.... */ |
| 856 | for (orig = forward; orig->dependent; orig = orig->dependent); |
| 857 | |
| 858 | if (--orig->work_counter == 0 || !(new = get_new_frec(now, NULL, 1))) |
| 859 | status = STAT_INSECURE; |
| 860 | else |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 861 | { |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 862 | int fd; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 863 | struct frec *next = new->next; |
| 864 | *new = *forward; /* copy everything, then overwrite */ |
| 865 | new->next = next; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 866 | new->blocking_query = NULL; |
Simon Kelley | 8a8bbad | 2014-03-27 22:02:17 +0000 | [diff] [blame] | 867 | new->sentto = server; |
Simon Kelley | f1668d2 | 2014-01-08 16:53:27 +0000 | [diff] [blame] | 868 | new->rfd4 = NULL; |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 869 | new->orig_domain = NULL; |
Simon Kelley | f1668d2 | 2014-01-08 16:53:27 +0000 | [diff] [blame] | 870 | #ifdef HAVE_IPV6 |
| 871 | new->rfd6 = NULL; |
| 872 | #endif |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 873 | new->flags &= ~(FREC_DNSKEY_QUERY | FREC_DS_QUERY | FREC_CHECK_NOSIGN); |
Simon Kelley | 9d63304 | 2013-12-13 15:36:55 +0000 | [diff] [blame] | 874 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 875 | new->dependent = forward; /* to find query awaiting new one. */ |
| 876 | forward->blocking_query = new; /* for garbage cleaning */ |
| 877 | /* validate routines leave name of required record in daemon->keyname */ |
| 878 | if (status == STAT_NEED_KEY) |
| 879 | { |
| 880 | new->flags |= FREC_DNSKEY_QUERY; |
| 881 | nn = dnssec_generate_query(header, ((char *) header) + daemon->packet_buff_sz, |
| 882 | daemon->keyname, forward->class, T_DNSKEY, &server->addr); |
| 883 | } |
| 884 | else |
| 885 | { |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 886 | if (status == STAT_NEED_DS_NEG) |
| 887 | new->flags |= FREC_CHECK_NOSIGN; |
| 888 | else |
| 889 | new->flags |= FREC_DS_QUERY; |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 890 | nn = dnssec_generate_query(header,((char *) header) + daemon->packet_buff_sz, |
| 891 | daemon->keyname, forward->class, T_DS, &server->addr); |
| 892 | } |
| 893 | if ((hash = hash_questions(header, nn, daemon->namebuff))) |
| 894 | memcpy(new->hash, hash, HASH_SIZE); |
| 895 | new->new_id = get_id(); |
| 896 | header->id = htons(new->new_id); |
| 897 | /* Save query for retransmission */ |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 898 | if (!(new->stash = blockdata_alloc((char *)header, nn))) |
| 899 | return; |
| 900 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 901 | new->stash_len = nn; |
Simon Kelley | e0c0ad3 | 2014-01-16 22:42:07 +0000 | [diff] [blame] | 902 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 903 | /* Don't resend this. */ |
| 904 | daemon->srv_save = NULL; |
| 905 | |
| 906 | if (server->sfd) |
| 907 | fd = server->sfd->fd; |
Simon Kelley | e0c0ad3 | 2014-01-16 22:42:07 +0000 | [diff] [blame] | 908 | else |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 909 | { |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 910 | fd = -1; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 911 | #ifdef HAVE_IPV6 |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 912 | if (server->addr.sa.sa_family == AF_INET6) |
Simon Kelley | f1668d2 | 2014-01-08 16:53:27 +0000 | [diff] [blame] | 913 | { |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 914 | if (new->rfd6 || (new->rfd6 = allocate_rfd(AF_INET6))) |
| 915 | fd = new->rfd6->fd; |
| 916 | } |
| 917 | else |
| 918 | #endif |
| 919 | { |
| 920 | if (new->rfd4 || (new->rfd4 = allocate_rfd(AF_INET))) |
| 921 | fd = new->rfd4->fd; |
Simon Kelley | f1668d2 | 2014-01-08 16:53:27 +0000 | [diff] [blame] | 922 | } |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 923 | } |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 924 | |
| 925 | if (fd != -1) |
| 926 | { |
| 927 | while (sendto(fd, (char *)header, nn, 0, &server->addr.sa, sa_len(&server->addr)) == -1 && retry_send()); |
| 928 | server->queries++; |
| 929 | } |
| 930 | |
| 931 | return; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 932 | } |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 933 | } |
| 934 | |
| 935 | /* Ok, we reached far enough up the chain-of-trust that we can validate something. |
| 936 | Now wind back down, pulling back answers which wouldn't previously validate |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 937 | and validate them with the new data. Note that if an answer needs multiple |
| 938 | keys to validate, we may find another key is needed, in which case we set off |
| 939 | down another branch of the tree. Once we get to the original answer |
| 940 | (FREC_DNSSEC_QUERY not set) and it validates, return it to the original requestor. */ |
Simon Kelley | 0744ca6 | 2014-01-25 16:40:15 +0000 | [diff] [blame] | 941 | while (forward->dependent) |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 942 | { |
Simon Kelley | 0744ca6 | 2014-01-25 16:40:15 +0000 | [diff] [blame] | 943 | struct frec *prev = forward->dependent; |
| 944 | free_frec(forward); |
| 945 | forward = prev; |
| 946 | forward->blocking_query = NULL; /* already gone */ |
| 947 | blockdata_retrieve(forward->stash, forward->stash_len, (void *)header); |
| 948 | n = forward->stash_len; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 949 | |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 950 | if (status == STAT_SECURE) |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 951 | { |
Simon Kelley | 0744ca6 | 2014-01-25 16:40:15 +0000 | [diff] [blame] | 952 | if (forward->flags & FREC_DNSKEY_QUERY) |
| 953 | status = dnssec_validate_by_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class); |
| 954 | else if (forward->flags & FREC_DS_QUERY) |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 955 | { |
| 956 | status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class); |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 957 | if (status == STAT_NO_DS || status == STAT_NO_NS) |
| 958 | status = STAT_BOGUS; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 959 | } |
| 960 | else if (forward->flags & FREC_CHECK_NOSIGN) |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 961 | { |
| 962 | status = dnssec_validate_ds(now, header, n, daemon->namebuff, daemon->keyname, forward->class); |
| 963 | if (status != STAT_NEED_KEY) |
| 964 | status = do_check_sign(forward, status, now, daemon->namebuff, daemon->keyname); |
| 965 | } |
Simon Kelley | 0744ca6 | 2014-01-25 16:40:15 +0000 | [diff] [blame] | 966 | else |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 967 | { |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 968 | status = dnssec_validate_reply(now, header, n, daemon->namebuff, daemon->keyname, &forward->class, NULL, NULL); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 969 | if (status == STAT_NO_SIG) |
| 970 | { |
| 971 | if (option_bool(OPT_DNSSEC_NO_SIGN)) |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 972 | status = send_check_sign(forward, now, header, n, daemon->namebuff, daemon->keyname); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 973 | else |
| 974 | status = STAT_INSECURE; |
| 975 | } |
| 976 | } |
| 977 | |
| 978 | if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG || status == STAT_NEED_KEY) |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 979 | goto anotherkey; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 980 | } |
| 981 | } |
Simon Kelley | 5d3b87a | 2014-01-20 11:57:23 +0000 | [diff] [blame] | 982 | |
| 983 | if (status == STAT_TRUNCATED) |
Simon Kelley | 0744ca6 | 2014-01-25 16:40:15 +0000 | [diff] [blame] | 984 | header->hb3 |= HB3_TC; |
Simon Kelley | 5d3b87a | 2014-01-20 11:57:23 +0000 | [diff] [blame] | 985 | else |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 986 | { |
| 987 | char *result; |
| 988 | |
| 989 | if (forward->work_counter == 0) |
| 990 | result = "ABANDONED"; |
| 991 | else |
| 992 | result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS")); |
| 993 | |
| 994 | log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result); |
| 995 | } |
Simon Kelley | 5d3b87a | 2014-01-20 11:57:23 +0000 | [diff] [blame] | 996 | |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 997 | no_cache_dnssec = 0; |
Simon Kelley | 5d3b87a | 2014-01-20 11:57:23 +0000 | [diff] [blame] | 998 | |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 999 | if (status == STAT_SECURE) |
| 1000 | cache_secure = 1; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 1001 | else if (status == STAT_BOGUS) |
| 1002 | no_cache_dnssec = 1; |
| 1003 | } |
Simon Kelley | 83349b8 | 2014-02-10 21:02:01 +0000 | [diff] [blame] | 1004 | #endif |
| 1005 | |
| 1006 | /* restore CD bit to the value in the query */ |
| 1007 | if (forward->flags & FREC_CHECKING_DISABLED) |
| 1008 | header->hb4 |= HB4_CD; |
| 1009 | else |
| 1010 | header->hb4 &= ~HB4_CD; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 1011 | |
| 1012 | if ((nn = process_reply(header, now, server, (size_t)n, check_rebind, no_cache_dnssec, cache_secure, |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1013 | forward->flags & FREC_AD_QUESTION, forward->flags & FREC_DO_QUESTION, |
| 1014 | forward->flags & FREC_ADDED_PHEADER, forward->flags & FREC_HAS_SUBNET, &forward->source))) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1015 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1016 | header->id = htons(forward->orig_id); |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 1017 | header->hb4 |= HB4_RA; /* recursion if available */ |
Simon Kelley | 54dd393 | 2012-06-20 11:23:38 +0100 | [diff] [blame] | 1018 | send_from(forward->fd, option_bool(OPT_NOWILD) || option_bool (OPT_CLEVERBIND), daemon->packet, nn, |
Simon Kelley | 50303b1 | 2012-04-04 22:13:17 +0100 | [diff] [blame] | 1019 | &forward->source, &forward->dest, forward->iface); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1020 | } |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1021 | free_frec(forward); /* cancel */ |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1022 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1023 | } |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1024 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1025 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1026 | void receive_query(struct listener *listen, time_t now) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1027 | { |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 1028 | struct dns_header *header = (struct dns_header *)daemon->packet; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1029 | union mysockaddr source_addr; |
Simon Kelley | c1bb850 | 2004-08-11 18:40:17 +0100 | [diff] [blame] | 1030 | unsigned short type; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1031 | struct all_addr dst_addr; |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 1032 | struct in_addr netmask, dst_addr_4; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 1033 | size_t m; |
| 1034 | ssize_t n; |
Vladislav Grishenko | 3b19596 | 2013-11-26 11:08:21 +0000 | [diff] [blame] | 1035 | int if_index = 0, auth_dns = 0; |
| 1036 | #ifdef HAVE_AUTH |
| 1037 | int local_auth = 0; |
| 1038 | #endif |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1039 | struct iovec iov[1]; |
| 1040 | struct msghdr msg; |
| 1041 | struct cmsghdr *cmptr; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1042 | union { |
| 1043 | struct cmsghdr align; /* this ensures alignment */ |
| 1044 | #ifdef HAVE_IPV6 |
| 1045 | char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))]; |
| 1046 | #endif |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1047 | #if defined(HAVE_LINUX_NETWORK) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1048 | char control[CMSG_SPACE(sizeof(struct in_pktinfo))]; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1049 | #elif defined(IP_RECVDSTADDR) && defined(HAVE_SOLARIS_NETWORK) |
| 1050 | char control[CMSG_SPACE(sizeof(struct in_addr)) + |
| 1051 | CMSG_SPACE(sizeof(unsigned int))]; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1052 | #elif defined(IP_RECVDSTADDR) |
| 1053 | char control[CMSG_SPACE(sizeof(struct in_addr)) + |
| 1054 | CMSG_SPACE(sizeof(struct sockaddr_dl))]; |
| 1055 | #endif |
| 1056 | } control_u; |
Simon Kelley | 2329bef | 2013-12-03 13:41:16 +0000 | [diff] [blame] | 1057 | #ifdef HAVE_IPV6 |
| 1058 | /* Can always get recvd interface for IPv6 */ |
| 1059 | int check_dst = !option_bool(OPT_NOWILD) || listen->family == AF_INET6; |
| 1060 | #else |
| 1061 | int check_dst = !option_bool(OPT_NOWILD); |
| 1062 | #endif |
| 1063 | |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 1064 | /* packet buffer overwritten */ |
| 1065 | daemon->srv_save = NULL; |
| 1066 | |
Hans Dedecker | 9890627 | 2014-12-09 22:22:53 +0000 | [diff] [blame] | 1067 | dst_addr_4.s_addr = dst_addr.addr.addr4.s_addr = 0; |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1068 | netmask.s_addr = 0; |
| 1069 | |
Simon Kelley | 7e5664b | 2013-04-05 16:57:41 +0100 | [diff] [blame] | 1070 | if (option_bool(OPT_NOWILD) && listen->iface) |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 1071 | { |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1072 | auth_dns = listen->iface->dns_auth; |
| 1073 | |
| 1074 | if (listen->family == AF_INET) |
| 1075 | { |
Hans Dedecker | 9890627 | 2014-12-09 22:22:53 +0000 | [diff] [blame] | 1076 | dst_addr_4 = dst_addr.addr.addr4 = listen->iface->addr.in.sin_addr; |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1077 | netmask = listen->iface->netmask; |
| 1078 | } |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 1079 | } |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1080 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1081 | iov[0].iov_base = daemon->packet; |
| 1082 | iov[0].iov_len = daemon->edns_pktsz; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1083 | |
| 1084 | msg.msg_control = control_u.control; |
| 1085 | msg.msg_controllen = sizeof(control_u); |
| 1086 | msg.msg_flags = 0; |
| 1087 | msg.msg_name = &source_addr; |
| 1088 | msg.msg_namelen = sizeof(source_addr); |
| 1089 | msg.msg_iov = iov; |
| 1090 | msg.msg_iovlen = 1; |
| 1091 | |
Simon Kelley | de37951 | 2004-06-22 20:23:33 +0100 | [diff] [blame] | 1092 | if ((n = recvmsg(listen->fd, &msg, 0)) == -1) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1093 | return; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1094 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 1095 | if (n < (int)sizeof(struct dns_header) || |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1096 | (msg.msg_flags & MSG_TRUNC) || |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 1097 | (header->hb3 & HB3_QR)) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1098 | return; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1099 | |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1100 | source_addr.sa.sa_family = listen->family; |
Simon Kelley | 2a7a2b8 | 2014-03-22 19:18:06 +0000 | [diff] [blame] | 1101 | |
| 1102 | if (listen->family == AF_INET) |
| 1103 | { |
| 1104 | /* Source-port == 0 is an error, we can't send back to that. |
| 1105 | http://www.ietf.org/mail-archive/web/dnsop/current/msg11441.html */ |
| 1106 | if (source_addr.in.sin_port == 0) |
| 1107 | return; |
| 1108 | } |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1109 | #ifdef HAVE_IPV6 |
Simon Kelley | 2a7a2b8 | 2014-03-22 19:18:06 +0000 | [diff] [blame] | 1110 | else |
| 1111 | { |
| 1112 | /* Source-port == 0 is an error, we can't send back to that. */ |
| 1113 | if (source_addr.in6.sin6_port == 0) |
| 1114 | return; |
| 1115 | source_addr.in6.sin6_flowinfo = 0; |
| 1116 | } |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1117 | #endif |
Simon Kelley | 2a7a2b8 | 2014-03-22 19:18:06 +0000 | [diff] [blame] | 1118 | |
Simon Kelley | c8a8048 | 2014-03-05 14:29:54 +0000 | [diff] [blame] | 1119 | /* We can be configured to only accept queries from at-most-one-hop-away addresses. */ |
| 1120 | if (option_bool(OPT_LOCAL_SERVICE)) |
| 1121 | { |
| 1122 | struct addrlist *addr; |
| 1123 | #ifdef HAVE_IPV6 |
| 1124 | if (listen->family == AF_INET6) |
| 1125 | { |
| 1126 | for (addr = daemon->interface_addrs; addr; addr = addr->next) |
| 1127 | if ((addr->flags & ADDRLIST_IPV6) && |
| 1128 | is_same_net6(&addr->addr.addr.addr6, &source_addr.in6.sin6_addr, addr->prefixlen)) |
| 1129 | break; |
| 1130 | } |
| 1131 | else |
| 1132 | #endif |
| 1133 | { |
| 1134 | struct in_addr netmask; |
| 1135 | for (addr = daemon->interface_addrs; addr; addr = addr->next) |
| 1136 | { |
Richard Genoud | 15b1b7e | 2014-09-17 21:12:00 +0100 | [diff] [blame] | 1137 | netmask.s_addr = htonl(~(in_addr_t)0 << (32 - addr->prefixlen)); |
Simon Kelley | c8a8048 | 2014-03-05 14:29:54 +0000 | [diff] [blame] | 1138 | if (!(addr->flags & ADDRLIST_IPV6) && |
| 1139 | is_same_net(addr->addr.addr.addr4, source_addr.in.sin_addr, netmask)) |
| 1140 | break; |
| 1141 | } |
| 1142 | } |
| 1143 | if (!addr) |
| 1144 | { |
Simon Kelley | 0c8584e | 2014-03-12 20:12:56 +0000 | [diff] [blame] | 1145 | static int warned = 0; |
| 1146 | if (!warned) |
| 1147 | { |
| 1148 | my_syslog(LOG_WARNING, _("Ignoring query from non-local network")); |
| 1149 | warned = 1; |
| 1150 | } |
Simon Kelley | c8a8048 | 2014-03-05 14:29:54 +0000 | [diff] [blame] | 1151 | return; |
| 1152 | } |
| 1153 | } |
| 1154 | |
Simon Kelley | 2329bef | 2013-12-03 13:41:16 +0000 | [diff] [blame] | 1155 | if (check_dst) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1156 | { |
Simon Kelley | 8a911cc | 2004-03-16 18:35:52 +0000 | [diff] [blame] | 1157 | struct ifreq ifr; |
| 1158 | |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1159 | if (msg.msg_controllen < sizeof(struct cmsghdr)) |
| 1160 | return; |
| 1161 | |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1162 | #if defined(HAVE_LINUX_NETWORK) |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1163 | if (listen->family == AF_INET) |
| 1164 | for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr)) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1165 | if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO) |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1166 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1167 | union { |
| 1168 | unsigned char *c; |
| 1169 | struct in_pktinfo *p; |
| 1170 | } p; |
| 1171 | p.c = CMSG_DATA(cmptr); |
| 1172 | dst_addr_4 = dst_addr.addr.addr4 = p.p->ipi_spec_dst; |
| 1173 | if_index = p.p->ipi_ifindex; |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1174 | } |
| 1175 | #elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF) |
| 1176 | if (listen->family == AF_INET) |
| 1177 | { |
| 1178 | for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr)) |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1179 | { |
| 1180 | union { |
| 1181 | unsigned char *c; |
| 1182 | unsigned int *i; |
| 1183 | struct in_addr *a; |
| 1184 | #ifndef HAVE_SOLARIS_NETWORK |
| 1185 | struct sockaddr_dl *s; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1186 | #endif |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1187 | } p; |
| 1188 | p.c = CMSG_DATA(cmptr); |
| 1189 | if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR) |
| 1190 | dst_addr_4 = dst_addr.addr.addr4 = *(p.a); |
| 1191 | else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF) |
| 1192 | #ifdef HAVE_SOLARIS_NETWORK |
| 1193 | if_index = *(p.i); |
| 1194 | #else |
| 1195 | if_index = p.s->sdl_index; |
| 1196 | #endif |
| 1197 | } |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1198 | } |
| 1199 | #endif |
| 1200 | |
| 1201 | #ifdef HAVE_IPV6 |
| 1202 | if (listen->family == AF_INET6) |
| 1203 | { |
| 1204 | for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr)) |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1205 | if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo) |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1206 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1207 | union { |
| 1208 | unsigned char *c; |
| 1209 | struct in6_pktinfo *p; |
| 1210 | } p; |
| 1211 | p.c = CMSG_DATA(cmptr); |
| 1212 | |
| 1213 | dst_addr.addr.addr6 = p.p->ipi6_addr; |
| 1214 | if_index = p.p->ipi6_ifindex; |
Simon Kelley | 26128d2 | 2004-11-14 16:43:54 +0000 | [diff] [blame] | 1215 | } |
| 1216 | } |
| 1217 | #endif |
| 1218 | |
| 1219 | /* enforce available interface configuration */ |
| 1220 | |
Simon Kelley | e25db1f | 2013-01-29 22:10:26 +0000 | [diff] [blame] | 1221 | if (!indextoname(listen->fd, if_index, ifr.ifr_name)) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1222 | return; |
| 1223 | |
Simon Kelley | e25db1f | 2013-01-29 22:10:26 +0000 | [diff] [blame] | 1224 | if (!iface_check(listen->family, &dst_addr, ifr.ifr_name, &auth_dns)) |
| 1225 | { |
| 1226 | if (!option_bool(OPT_CLEVERBIND)) |
Simon Kelley | 115ac3e | 2013-05-20 11:28:32 +0100 | [diff] [blame] | 1227 | enumerate_interfaces(0); |
Simon Kelley | 3f2873d | 2013-05-14 11:28:47 +0100 | [diff] [blame] | 1228 | if (!loopback_exception(listen->fd, listen->family, &dst_addr, ifr.ifr_name) && |
| 1229 | !label_exception(if_index, listen->family, &dst_addr)) |
Simon Kelley | e25db1f | 2013-01-29 22:10:26 +0000 | [diff] [blame] | 1230 | return; |
| 1231 | } |
| 1232 | |
Simon Kelley | 552af8b | 2012-02-29 20:10:31 +0000 | [diff] [blame] | 1233 | if (listen->family == AF_INET && option_bool(OPT_LOCALISE)) |
| 1234 | { |
| 1235 | struct irec *iface; |
| 1236 | |
| 1237 | /* get the netmask of the interface whch has the address we were sent to. |
| 1238 | This is no neccessarily the interface we arrived on. */ |
| 1239 | |
| 1240 | for (iface = daemon->interfaces; iface; iface = iface->next) |
| 1241 | if (iface->addr.sa.sa_family == AF_INET && |
| 1242 | iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr) |
| 1243 | break; |
| 1244 | |
| 1245 | /* interface may be new */ |
Simon Kelley | e25db1f | 2013-01-29 22:10:26 +0000 | [diff] [blame] | 1246 | if (!iface && !option_bool(OPT_CLEVERBIND)) |
Simon Kelley | 115ac3e | 2013-05-20 11:28:32 +0100 | [diff] [blame] | 1247 | enumerate_interfaces(0); |
Simon Kelley | 552af8b | 2012-02-29 20:10:31 +0000 | [diff] [blame] | 1248 | |
| 1249 | for (iface = daemon->interfaces; iface; iface = iface->next) |
| 1250 | if (iface->addr.sa.sa_family == AF_INET && |
| 1251 | iface->addr.in.sin_addr.s_addr == dst_addr_4.s_addr) |
| 1252 | break; |
| 1253 | |
| 1254 | /* If we failed, abandon localisation */ |
| 1255 | if (iface) |
| 1256 | netmask = iface->netmask; |
| 1257 | else |
| 1258 | dst_addr_4.s_addr = 0; |
| 1259 | } |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1260 | } |
| 1261 | |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 1262 | if (extract_request(header, (size_t)n, daemon->namebuff, &type)) |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1263 | { |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1264 | #ifdef HAVE_AUTH |
| 1265 | struct auth_zone *zone; |
| 1266 | #endif |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1267 | char *types = querystr(auth_dns ? "auth" : "query", type); |
| 1268 | |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1269 | if (listen->family == AF_INET) |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1270 | log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff, |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1271 | (struct all_addr *)&source_addr.in.sin_addr, types); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1272 | #ifdef HAVE_IPV6 |
| 1273 | else |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1274 | log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff, |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1275 | (struct all_addr *)&source_addr.in6.sin6_addr, types); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1276 | #endif |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1277 | |
Simon Kelley | 4820dce | 2012-12-18 18:30:30 +0000 | [diff] [blame] | 1278 | #ifdef HAVE_AUTH |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1279 | /* find queries for zones we're authoritative for, and answer them directly */ |
Simon Kelley | 6008bdb | 2013-10-21 21:47:03 +0100 | [diff] [blame] | 1280 | if (!auth_dns) |
| 1281 | for (zone = daemon->auth_zones; zone; zone = zone->next) |
| 1282 | if (in_zone(zone, daemon->namebuff, NULL)) |
| 1283 | { |
| 1284 | auth_dns = 1; |
| 1285 | local_auth = 1; |
| 1286 | break; |
| 1287 | } |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1288 | #endif |
Simon Kelley | b5ea1cc | 2014-07-29 16:34:14 +0100 | [diff] [blame] | 1289 | |
| 1290 | #ifdef HAVE_LOOP |
| 1291 | /* Check for forwarding loop */ |
| 1292 | if (detect_loop(daemon->namebuff, type)) |
| 1293 | return; |
| 1294 | #endif |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1295 | } |
| 1296 | |
| 1297 | #ifdef HAVE_AUTH |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1298 | if (auth_dns) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1299 | { |
Simon Kelley | 60b6806 | 2014-01-08 12:10:28 +0000 | [diff] [blame] | 1300 | m = answer_auth(header, ((char *) header) + daemon->packet_buff_sz, (size_t)n, now, &source_addr, local_auth); |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1301 | if (m >= 1) |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1302 | { |
| 1303 | send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), |
| 1304 | (char *)header, m, &source_addr, &dst_addr, if_index); |
| 1305 | daemon->auth_answer++; |
| 1306 | } |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1307 | } |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1308 | else |
Simon Kelley | 4820dce | 2012-12-18 18:30:30 +0000 | [diff] [blame] | 1309 | #endif |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1310 | { |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1311 | int ad_reqd, do_bit; |
Simon Kelley | 60b6806 | 2014-01-08 12:10:28 +0000 | [diff] [blame] | 1312 | m = answer_request(header, ((char *) header) + daemon->packet_buff_sz, (size_t)n, |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1313 | dst_addr_4, netmask, now, &ad_reqd, &do_bit); |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1314 | |
| 1315 | if (m >= 1) |
| 1316 | { |
| 1317 | send_from(listen->fd, option_bool(OPT_NOWILD) || option_bool(OPT_CLEVERBIND), |
| 1318 | (char *)header, m, &source_addr, &dst_addr, if_index); |
| 1319 | daemon->local_answer++; |
| 1320 | } |
| 1321 | else if (forward_query(listen->fd, &source_addr, &dst_addr, if_index, |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1322 | header, (size_t)n, now, NULL, ad_reqd, do_bit)) |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1323 | daemon->queries_forwarded++; |
| 1324 | else |
| 1325 | daemon->local_answer++; |
| 1326 | } |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1327 | } |
| 1328 | |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1329 | #ifdef HAVE_DNSSEC |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1330 | |
| 1331 | /* UDP: we've got an unsigned answer, return STAT_INSECURE if we can prove there's no DS |
| 1332 | and therefore the answer shouldn't be signed, or STAT_BOGUS if it should be, or |
| 1333 | STAT_NEED_DS_NEG and keyname if we need to do the query. */ |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1334 | static int send_check_sign(struct frec *forward, time_t now, struct dns_header *header, size_t plen, |
| 1335 | char *name, char *keyname) |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1336 | { |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1337 | int status = dnssec_chase_cname(now, header, plen, name, keyname); |
| 1338 | |
| 1339 | if (status != STAT_INSECURE) |
| 1340 | return status; |
| 1341 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1342 | /* Store the domain we're trying to check. */ |
| 1343 | forward->name_start = strlen(name); |
| 1344 | forward->name_len = forward->name_start + 1; |
| 1345 | if (!(forward->orig_domain = blockdata_alloc(name, forward->name_len))) |
| 1346 | return STAT_BOGUS; |
| 1347 | |
| 1348 | return do_check_sign(forward, 0, now, name, keyname); |
| 1349 | } |
| 1350 | |
| 1351 | /* We either have a a reply (header non-NULL, or we need to start by looking in the cache */ |
| 1352 | static int do_check_sign(struct frec *forward, int status, time_t now, char *name, char *keyname) |
| 1353 | { |
| 1354 | /* get domain we're checking back from blockdata store, it's stored on the original query. */ |
| 1355 | while (forward->dependent) |
| 1356 | forward = forward->dependent; |
| 1357 | |
| 1358 | blockdata_retrieve(forward->orig_domain, forward->name_len, name); |
| 1359 | |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1360 | while (1) |
| 1361 | { |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1362 | char *p; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1363 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1364 | if (status == 0) |
| 1365 | { |
| 1366 | struct crec *crecp; |
| 1367 | |
| 1368 | /* Haven't received answer, see if in cache */ |
| 1369 | if (!(crecp = cache_find_by_name(NULL, &name[forward->name_start], now, F_DS))) |
| 1370 | { |
| 1371 | /* put name of DS record we're missing into keyname */ |
| 1372 | strcpy(keyname, &name[forward->name_start]); |
| 1373 | /* and wait for reply to arrive */ |
| 1374 | return STAT_NEED_DS_NEG; |
| 1375 | } |
| 1376 | |
| 1377 | /* F_DNSSECOK misused in DS cache records to non-existance of NS record */ |
| 1378 | if (!(crecp->flags & F_NEG)) |
| 1379 | status = STAT_SECURE; |
| 1380 | else if (crecp->flags & F_DNSSECOK) |
| 1381 | status = STAT_NO_DS; |
| 1382 | else |
| 1383 | status = STAT_NO_NS; |
| 1384 | } |
| 1385 | |
| 1386 | /* Have entered non-signed part of DNS tree. */ |
| 1387 | if (status == STAT_NO_DS) |
| 1388 | return STAT_INSECURE; |
| 1389 | |
| 1390 | if (status == STAT_BOGUS) |
Simon Kelley | 4e1fe44 | 2014-03-26 12:24:19 +0000 | [diff] [blame] | 1391 | return STAT_BOGUS; |
| 1392 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1393 | /* There's a proven DS record, or we're within a zone, where there doesn't need |
| 1394 | to be a DS record. Add a name and try again. |
| 1395 | If we've already tried the whole name, then fail */ |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1396 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1397 | if (forward->name_start == 0) |
| 1398 | return STAT_BOGUS; |
Simon Kelley | 4872aa7 | 2014-04-26 22:13:31 +0100 | [diff] [blame] | 1399 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1400 | for (p = &name[forward->name_start-2]; (*p != '.') && (p != name); p--); |
| 1401 | |
| 1402 | if (p != name) |
| 1403 | p++; |
| 1404 | |
| 1405 | forward->name_start = p - name; |
| 1406 | status = 0; /* force to cache when we iterate. */ |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1407 | } |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1408 | } |
| 1409 | |
| 1410 | /* Move toward the root, until we find a signed non-existance of a DS, in which case |
| 1411 | an unsigned answer is OK, or we find a signed DS, in which case there should be |
| 1412 | a signature, and the answer is BOGUS */ |
| 1413 | static int tcp_check_for_unsigned_zone(time_t now, struct dns_header *header, size_t plen, int class, char *name, |
| 1414 | char *keyname, struct server *server, int *keycount) |
| 1415 | { |
| 1416 | size_t m; |
| 1417 | unsigned char *packet, *payload; |
| 1418 | u16 *length; |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1419 | int status, name_len; |
| 1420 | struct blockdata *block; |
| 1421 | |
| 1422 | char *name_start; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1423 | |
| 1424 | /* Get first insecure entry in CNAME chain */ |
| 1425 | status = tcp_key_recurse(now, STAT_CHASE_CNAME, header, plen, class, name, keyname, server, keycount); |
| 1426 | if (status == STAT_BOGUS) |
| 1427 | return STAT_BOGUS; |
| 1428 | |
| 1429 | if (!(packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16)))) |
| 1430 | return STAT_BOGUS; |
| 1431 | |
| 1432 | payload = &packet[2]; |
| 1433 | header = (struct dns_header *)payload; |
| 1434 | length = (u16 *)packet; |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1435 | |
| 1436 | /* Stash the name away, since the buffer will be trashed when we recurse */ |
| 1437 | name_len = strlen(name) + 1; |
| 1438 | name_start = name + name_len - 1; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1439 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1440 | if (!(block = blockdata_alloc(name, name_len))) |
| 1441 | { |
| 1442 | free(packet); |
| 1443 | return STAT_BOGUS; |
| 1444 | } |
| 1445 | |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1446 | while (1) |
| 1447 | { |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1448 | unsigned char c1, c2; |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1449 | struct crec *crecp; |
| 1450 | |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1451 | if (--(*keycount) == 0) |
Tomas Hozza | fc2833f | 2014-03-25 20:43:21 +0000 | [diff] [blame] | 1452 | { |
| 1453 | free(packet); |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1454 | blockdata_free(block); |
Tomas Hozza | fc2833f | 2014-03-25 20:43:21 +0000 | [diff] [blame] | 1455 | return STAT_BOGUS; |
| 1456 | } |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1457 | |
Simon Kelley | 424c4a8 | 2015-01-07 21:58:05 +0000 | [diff] [blame^] | 1458 | while ((crecp = cache_find_by_name(NULL, name_start, now, F_DS))) |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1459 | { |
| 1460 | if ((crecp->flags & F_NEG) && (crecp->flags & F_DNSSECOK)) |
| 1461 | { |
| 1462 | /* Found a secure denial of DS - delegation is indeed insecure */ |
| 1463 | free(packet); |
| 1464 | blockdata_free(block); |
| 1465 | return STAT_INSECURE; |
| 1466 | } |
| 1467 | |
| 1468 | /* Here, either there's a secure DS, or no NS and no DS, and therefore no delegation. |
| 1469 | Add another label and continue. */ |
| 1470 | |
| 1471 | if (name_start == name) |
| 1472 | { |
| 1473 | free(packet); |
| 1474 | blockdata_free(block); |
| 1475 | return STAT_BOGUS; /* run out of labels */ |
| 1476 | } |
| 1477 | |
| 1478 | name_start -= 2; |
| 1479 | while (*name_start != '.' && name_start != name) |
| 1480 | name_start--; |
| 1481 | if (name_start != name) |
| 1482 | name_start++; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1483 | } |
| 1484 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1485 | /* Can't find it in the cache, have to send a query */ |
Simon Kelley | 4e1fe44 | 2014-03-26 12:24:19 +0000 | [diff] [blame] | 1486 | |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1487 | m = dnssec_generate_query(header, ((char *) header) + 65536, name_start, class, T_DS, &server->addr); |
| 1488 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1489 | *length = htons(m); |
| 1490 | |
| 1491 | if (read_write(server->tcpfd, packet, m + sizeof(u16), 0) && |
| 1492 | read_write(server->tcpfd, &c1, 1, 1) && |
| 1493 | read_write(server->tcpfd, &c2, 1, 1) && |
| 1494 | read_write(server->tcpfd, payload, (c1 << 8) | c2, 1)) |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1495 | { |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1496 | m = (c1 << 8) | c2; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1497 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1498 | /* Note this trashes all three name workspaces */ |
| 1499 | status = tcp_key_recurse(now, STAT_NEED_DS_NEG, header, m, class, name, keyname, server, keycount); |
| 1500 | |
| 1501 | if (status == STAT_NO_DS) |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1502 | { |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1503 | /* Found a secure denial of DS - delegation is indeed insecure */ |
| 1504 | free(packet); |
| 1505 | blockdata_free(block); |
| 1506 | return STAT_INSECURE; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1507 | } |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1508 | |
| 1509 | if (status == STAT_BOGUS) |
| 1510 | { |
| 1511 | free(packet); |
| 1512 | blockdata_free(block); |
| 1513 | return STAT_BOGUS; |
| 1514 | } |
| 1515 | |
| 1516 | /* Here, either there's a secure DS, or no NS and no DS, and therefore no delegation. |
| 1517 | Add another label and continue. */ |
| 1518 | |
| 1519 | /* Get name we're checking back. */ |
| 1520 | blockdata_retrieve(block, name_len, name); |
| 1521 | |
| 1522 | if (name_start == name) |
| 1523 | { |
| 1524 | free(packet); |
| 1525 | blockdata_free(block); |
| 1526 | return STAT_BOGUS; /* run out of labels */ |
| 1527 | } |
| 1528 | |
| 1529 | name_start -= 2; |
| 1530 | while (*name_start != '.' && name_start != name) |
| 1531 | name_start--; |
| 1532 | if (name_start != name) |
| 1533 | name_start++; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1534 | } |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1535 | else |
| 1536 | { |
| 1537 | /* IO failure */ |
| 1538 | free(packet); |
| 1539 | blockdata_free(block); |
| 1540 | return STAT_BOGUS; /* run out of labels */ |
| 1541 | } |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1542 | } |
| 1543 | } |
| 1544 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1545 | static int tcp_key_recurse(time_t now, int status, struct dns_header *header, size_t n, |
| 1546 | int class, char *name, char *keyname, struct server *server, int *keycount) |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1547 | { |
| 1548 | /* Recurse up the key heirarchy */ |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1549 | int new_status; |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1550 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1551 | /* limit the amount of work we do, to avoid cycling forever on loops in the DNS */ |
| 1552 | if (--(*keycount) == 0) |
| 1553 | return STAT_INSECURE; |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1554 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1555 | if (status == STAT_NEED_KEY) |
| 1556 | new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1557 | else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG) |
| 1558 | { |
| 1559 | new_status = dnssec_validate_ds(now, header, n, name, keyname, class); |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1560 | if (status == STAT_NEED_DS && (new_status == STAT_NO_DS || new_status == STAT_NO_NS)) |
| 1561 | new_status = STAT_BOGUS; |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1562 | } |
| 1563 | else if (status == STAT_CHASE_CNAME) |
| 1564 | new_status = dnssec_chase_cname(now, header, n, name, keyname); |
| 1565 | else |
| 1566 | { |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1567 | new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL, NULL); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1568 | |
| 1569 | if (new_status == STAT_NO_SIG) |
| 1570 | { |
| 1571 | if (option_bool(OPT_DNSSEC_NO_SIGN)) |
| 1572 | new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount); |
| 1573 | else |
| 1574 | new_status = STAT_INSECURE; |
| 1575 | } |
| 1576 | } |
| 1577 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1578 | /* Can't validate because we need a key/DS whose name now in keyname. |
| 1579 | Make query for same, and recurse to validate */ |
| 1580 | if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY) |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1581 | { |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1582 | size_t m; |
| 1583 | unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16)); |
| 1584 | unsigned char *payload = &packet[2]; |
| 1585 | struct dns_header *new_header = (struct dns_header *)payload; |
| 1586 | u16 *length = (u16 *)packet; |
| 1587 | unsigned char c1, c2; |
| 1588 | |
| 1589 | if (!packet) |
| 1590 | return STAT_INSECURE; |
| 1591 | |
| 1592 | another_tcp_key: |
| 1593 | m = dnssec_generate_query(new_header, ((char *) new_header) + 65536, keyname, class, |
| 1594 | new_status == STAT_NEED_KEY ? T_DNSKEY : T_DS, &server->addr); |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1595 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1596 | *length = htons(m); |
| 1597 | |
| 1598 | if (!read_write(server->tcpfd, packet, m + sizeof(u16), 0) || |
| 1599 | !read_write(server->tcpfd, &c1, 1, 1) || |
| 1600 | !read_write(server->tcpfd, &c2, 1, 1) || |
| 1601 | !read_write(server->tcpfd, payload, (c1 << 8) | c2, 1)) |
| 1602 | new_status = STAT_INSECURE; |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1603 | else |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1604 | { |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1605 | m = (c1 << 8) | c2; |
| 1606 | |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1607 | new_status = tcp_key_recurse(now, new_status, new_header, m, class, name, keyname, server, keycount); |
| 1608 | |
| 1609 | if (new_status == STAT_SECURE) |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1610 | { |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1611 | /* Reached a validated record, now try again at this level. |
| 1612 | Note that we may get ANOTHER NEED_* if an answer needs more than one key. |
| 1613 | If so, go round again. */ |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1614 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1615 | if (status == STAT_NEED_KEY) |
| 1616 | new_status = dnssec_validate_by_ds(now, header, n, name, keyname, class); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1617 | else if (status == STAT_NEED_DS || status == STAT_NEED_DS_NEG) |
| 1618 | { |
| 1619 | new_status = dnssec_validate_ds(now, header, n, name, keyname, class); |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1620 | if (status == STAT_NEED_DS && (new_status == STAT_NO_DS || new_status == STAT_NO_NS)) |
| 1621 | new_status = STAT_BOGUS; /* Validated no DS */ |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1622 | } |
| 1623 | else if (status == STAT_CHASE_CNAME) |
| 1624 | new_status = dnssec_chase_cname(now, header, n, name, keyname); |
| 1625 | else |
| 1626 | { |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 1627 | new_status = dnssec_validate_reply(now, header, n, name, keyname, &class, NULL, NULL); |
Simon Kelley | 00a5b5d | 2014-02-28 18:10:55 +0000 | [diff] [blame] | 1628 | |
| 1629 | if (new_status == STAT_NO_SIG) |
| 1630 | { |
| 1631 | if (option_bool(OPT_DNSSEC_NO_SIGN)) |
| 1632 | new_status = tcp_check_for_unsigned_zone(now, header, n, class, name, keyname, server, keycount); |
| 1633 | else |
| 1634 | new_status = STAT_INSECURE; |
| 1635 | } |
| 1636 | } |
| 1637 | |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1638 | if (new_status == STAT_NEED_DS || new_status == STAT_NEED_KEY) |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1639 | goto another_tcp_key; |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1640 | } |
| 1641 | } |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1642 | |
| 1643 | free(packet); |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1644 | } |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1645 | return new_status; |
| 1646 | } |
| 1647 | #endif |
| 1648 | |
| 1649 | |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1650 | /* The daemon forks before calling this: it should deal with one connection, |
| 1651 | blocking as neccessary, and then return. Note, need to be a bit careful |
| 1652 | about resources for debug mode, when the fork is suppressed: that's |
| 1653 | done by the caller. */ |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1654 | unsigned char *tcp_request(int confd, time_t now, |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1655 | union mysockaddr *local_addr, struct in_addr netmask, int auth_dns) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1656 | { |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1657 | size_t size = 0; |
| 1658 | int norebind = 0; |
Vladislav Grishenko | 3b19596 | 2013-11-26 11:08:21 +0000 | [diff] [blame] | 1659 | #ifdef HAVE_AUTH |
Simon Kelley | 19b1689 | 2013-10-20 10:19:39 +0100 | [diff] [blame] | 1660 | int local_auth = 0; |
Vladislav Grishenko | 3b19596 | 2013-11-26 11:08:21 +0000 | [diff] [blame] | 1661 | #endif |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1662 | int checking_disabled, ad_question, do_bit, added_pheader = 0; |
| 1663 | int check_subnet, no_cache_dnssec = 0, cache_secure = 0; |
Simon Kelley | cdeda28 | 2006-03-16 20:16:06 +0000 | [diff] [blame] | 1664 | size_t m; |
Simon Kelley | ee86ce6 | 2012-12-07 11:54:46 +0000 | [diff] [blame] | 1665 | unsigned short qtype; |
| 1666 | unsigned int gotname; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1667 | unsigned char c1, c2; |
Simon Kelley | 4b5ea12 | 2013-04-22 10:18:26 +0100 | [diff] [blame] | 1668 | /* Max TCP packet + slop + size */ |
| 1669 | unsigned char *packet = whine_malloc(65536 + MAXDNAME + RRFIXEDSZ + sizeof(u16)); |
| 1670 | unsigned char *payload = &packet[2]; |
| 1671 | /* largest field in header is 16-bits, so this is still sufficiently aligned */ |
| 1672 | struct dns_header *header = (struct dns_header *)payload; |
| 1673 | u16 *length = (u16 *)packet; |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1674 | struct server *last_server; |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1675 | struct in_addr dst_addr_4; |
| 1676 | union mysockaddr peer_addr; |
| 1677 | socklen_t peer_len = sizeof(union mysockaddr); |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1678 | |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1679 | if (getpeername(confd, (struct sockaddr *)&peer_addr, &peer_len) == -1) |
| 1680 | return packet; |
Simon Kelley | c8a8048 | 2014-03-05 14:29:54 +0000 | [diff] [blame] | 1681 | |
| 1682 | /* We can be configured to only accept queries from at-most-one-hop-away addresses. */ |
| 1683 | if (option_bool(OPT_LOCAL_SERVICE)) |
| 1684 | { |
| 1685 | struct addrlist *addr; |
| 1686 | #ifdef HAVE_IPV6 |
| 1687 | if (peer_addr.sa.sa_family == AF_INET6) |
| 1688 | { |
| 1689 | for (addr = daemon->interface_addrs; addr; addr = addr->next) |
| 1690 | if ((addr->flags & ADDRLIST_IPV6) && |
| 1691 | is_same_net6(&addr->addr.addr.addr6, &peer_addr.in6.sin6_addr, addr->prefixlen)) |
| 1692 | break; |
| 1693 | } |
| 1694 | else |
| 1695 | #endif |
| 1696 | { |
| 1697 | struct in_addr netmask; |
| 1698 | for (addr = daemon->interface_addrs; addr; addr = addr->next) |
| 1699 | { |
Richard Genoud | 15b1b7e | 2014-09-17 21:12:00 +0100 | [diff] [blame] | 1700 | netmask.s_addr = htonl(~(in_addr_t)0 << (32 - addr->prefixlen)); |
Simon Kelley | c8a8048 | 2014-03-05 14:29:54 +0000 | [diff] [blame] | 1701 | if (!(addr->flags & ADDRLIST_IPV6) && |
| 1702 | is_same_net(addr->addr.addr.addr4, peer_addr.in.sin_addr, netmask)) |
| 1703 | break; |
| 1704 | } |
| 1705 | } |
| 1706 | if (!addr) |
| 1707 | { |
| 1708 | my_syslog(LOG_WARNING, _("Ignoring query from non-local network")); |
| 1709 | return packet; |
| 1710 | } |
| 1711 | } |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1712 | |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1713 | while (1) |
| 1714 | { |
| 1715 | if (!packet || |
| 1716 | !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) || |
| 1717 | !(size = c1 << 8 | c2) || |
Simon Kelley | 4b5ea12 | 2013-04-22 10:18:26 +0100 | [diff] [blame] | 1718 | !read_write(confd, payload, size, 1)) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1719 | return packet; |
| 1720 | |
Simon Kelley | 572b41e | 2011-02-18 18:11:18 +0000 | [diff] [blame] | 1721 | if (size < (int)sizeof(struct dns_header)) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1722 | continue; |
| 1723 | |
Simon Kelley | ed4c076 | 2013-10-08 20:46:34 +0100 | [diff] [blame] | 1724 | check_subnet = 0; |
| 1725 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1726 | /* save state of "cd" flag in query */ |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1727 | if ((checking_disabled = header->hb4 & HB4_CD)) |
| 1728 | no_cache_dnssec = 1; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1729 | |
Simon Kelley | 3be3454 | 2004-09-11 19:12:13 +0100 | [diff] [blame] | 1730 | if ((gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype))) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1731 | { |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1732 | #ifdef HAVE_AUTH |
| 1733 | struct auth_zone *zone; |
| 1734 | #endif |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1735 | char *types = querystr(auth_dns ? "auth" : "query", qtype); |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1736 | |
| 1737 | if (peer_addr.sa.sa_family == AF_INET) |
| 1738 | log_query(F_QUERY | F_IPV4 | F_FORWARD, daemon->namebuff, |
| 1739 | (struct all_addr *)&peer_addr.in.sin_addr, types); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1740 | #ifdef HAVE_IPV6 |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1741 | else |
| 1742 | log_query(F_QUERY | F_IPV6 | F_FORWARD, daemon->namebuff, |
| 1743 | (struct all_addr *)&peer_addr.in6.sin6_addr, types); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1744 | #endif |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1745 | |
| 1746 | #ifdef HAVE_AUTH |
| 1747 | /* find queries for zones we're authoritative for, and answer them directly */ |
Simon Kelley | 6008bdb | 2013-10-21 21:47:03 +0100 | [diff] [blame] | 1748 | if (!auth_dns) |
| 1749 | for (zone = daemon->auth_zones; zone; zone = zone->next) |
| 1750 | if (in_zone(zone, daemon->namebuff, NULL)) |
| 1751 | { |
| 1752 | auth_dns = 1; |
| 1753 | local_auth = 1; |
| 1754 | break; |
| 1755 | } |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1756 | #endif |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1757 | } |
| 1758 | |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1759 | if (local_addr->sa.sa_family == AF_INET) |
| 1760 | dst_addr_4 = local_addr->in.sin_addr; |
| 1761 | else |
| 1762 | dst_addr_4.s_addr = 0; |
| 1763 | |
Simon Kelley | 4820dce | 2012-12-18 18:30:30 +0000 | [diff] [blame] | 1764 | #ifdef HAVE_AUTH |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1765 | if (auth_dns) |
Simon Kelley | 19b1689 | 2013-10-20 10:19:39 +0100 | [diff] [blame] | 1766 | m = answer_auth(header, ((char *) header) + 65536, (size_t)size, now, &peer_addr, local_auth); |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1767 | else |
Simon Kelley | 4820dce | 2012-12-18 18:30:30 +0000 | [diff] [blame] | 1768 | #endif |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1769 | { |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1770 | /* m > 0 if answered from cache */ |
| 1771 | m = answer_request(header, ((char *) header) + 65536, (size_t)size, |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1772 | dst_addr_4, netmask, now, &ad_question, &do_bit); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1773 | |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1774 | /* Do this by steam now we're not in the select() loop */ |
| 1775 | check_log_writer(NULL); |
| 1776 | |
| 1777 | if (m == 0) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1778 | { |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1779 | unsigned int flags = 0; |
| 1780 | struct all_addr *addrp = NULL; |
| 1781 | int type = 0; |
| 1782 | char *domain = NULL; |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1783 | |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1784 | if (option_bool(OPT_ADD_MAC)) |
| 1785 | size = add_mac(header, size, ((char *) header) + 65536, &peer_addr); |
Simon Kelley | ed4c076 | 2013-10-08 20:46:34 +0100 | [diff] [blame] | 1786 | |
| 1787 | if (option_bool(OPT_CLIENT_SUBNET)) |
| 1788 | { |
| 1789 | size_t new = add_source_addr(header, size, ((char *) header) + 65536, &peer_addr); |
| 1790 | if (size != new) |
| 1791 | { |
| 1792 | size = new; |
| 1793 | check_subnet = 1; |
| 1794 | } |
| 1795 | } |
| 1796 | |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1797 | if (gotname) |
| 1798 | flags = search_servers(now, &addrp, gotname, daemon->namebuff, &type, &domain, &norebind); |
| 1799 | |
| 1800 | if (type != 0 || option_bool(OPT_ORDER) || !daemon->last_server) |
| 1801 | last_server = daemon->servers; |
| 1802 | else |
| 1803 | last_server = daemon->last_server; |
| 1804 | |
| 1805 | if (!flags && last_server) |
| 1806 | { |
| 1807 | struct server *firstsendto = NULL; |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 1808 | #ifdef HAVE_DNSSEC |
Simon Kelley | 703c7ff | 2014-01-25 23:46:23 +0000 | [diff] [blame] | 1809 | unsigned char *newhash, hash[HASH_SIZE]; |
Simon Kelley | 6375838 | 2014-04-16 22:20:55 +0100 | [diff] [blame] | 1810 | if ((newhash = hash_questions(header, (unsigned int)size, daemon->namebuff))) |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 1811 | memcpy(hash, newhash, HASH_SIZE); |
Tomas Hozza | b37f8b9 | 2014-03-25 20:52:28 +0000 | [diff] [blame] | 1812 | else |
| 1813 | memset(hash, 0, HASH_SIZE); |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 1814 | #else |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1815 | unsigned int crc = questions_crc(header, (unsigned int)size, daemon->namebuff); |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 1816 | #endif |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1817 | /* Loop round available servers until we succeed in connecting to one. |
| 1818 | Note that this code subtley ensures that consecutive queries on this connection |
| 1819 | which can go to the same server, do so. */ |
| 1820 | while (1) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1821 | { |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1822 | if (!firstsendto) |
| 1823 | firstsendto = last_server; |
| 1824 | else |
| 1825 | { |
| 1826 | if (!(last_server = last_server->next)) |
| 1827 | last_server = daemon->servers; |
| 1828 | |
| 1829 | if (last_server == firstsendto) |
| 1830 | break; |
| 1831 | } |
| 1832 | |
| 1833 | /* server for wrong domain */ |
| 1834 | if (type != (last_server->flags & SERV_TYPE) || |
Simon Kelley | b5ea1cc | 2014-07-29 16:34:14 +0100 | [diff] [blame] | 1835 | (type == SERV_HAS_DOMAIN && !hostname_isequal(domain, last_server->domain)) || |
| 1836 | (last_server->flags & (SERV_LITERAL_ADDRESS | SERV_LOOP))) |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1837 | continue; |
| 1838 | |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1839 | if (last_server->tcpfd == -1) |
| 1840 | { |
| 1841 | if ((last_server->tcpfd = socket(last_server->addr.sa.sa_family, SOCK_STREAM, 0)) == -1) |
| 1842 | continue; |
| 1843 | |
Karl Vogel | e9828b6 | 2014-10-03 21:45:15 +0100 | [diff] [blame] | 1844 | #ifdef HAVE_CONNTRACK |
| 1845 | /* Copy connection mark of incoming query to outgoing connection. */ |
| 1846 | if (option_bool(OPT_CONNTRACK)) |
| 1847 | { |
| 1848 | unsigned int mark; |
| 1849 | struct all_addr local; |
| 1850 | #ifdef HAVE_IPV6 |
| 1851 | if (local_addr->sa.sa_family == AF_INET6) |
| 1852 | local.addr.addr6 = local_addr->in6.sin6_addr; |
| 1853 | else |
| 1854 | #endif |
| 1855 | local.addr.addr4 = local_addr->in.sin_addr; |
| 1856 | |
| 1857 | if (get_incoming_mark(&peer_addr, &local, 1, &mark)) |
| 1858 | setsockopt(last_server->tcpfd, SOL_SOCKET, SO_MARK, &mark, sizeof(unsigned int)); |
| 1859 | } |
| 1860 | #endif |
| 1861 | |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1862 | if ((!local_bind(last_server->tcpfd, &last_server->source_addr, last_server->interface, 1) || |
| 1863 | connect(last_server->tcpfd, &last_server->addr.sa, sa_len(&last_server->addr)) == -1)) |
| 1864 | { |
| 1865 | close(last_server->tcpfd); |
| 1866 | last_server->tcpfd = -1; |
| 1867 | continue; |
| 1868 | } |
| 1869 | |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1870 | #ifdef HAVE_DNSSEC |
| 1871 | if (option_bool(OPT_DNSSEC_VALID)) |
| 1872 | { |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1873 | size_t new_size = add_do_bit(header, size, ((char *) header) + 65536); |
| 1874 | |
Simon Kelley | 2ecd9bd | 2014-02-13 16:42:02 +0000 | [diff] [blame] | 1875 | /* For debugging, set Checking Disabled, otherwise, have the upstream check too, |
| 1876 | this allows it to select auth servers when one is returning bad data. */ |
| 1877 | if (option_bool(OPT_DNSSEC_DEBUG)) |
| 1878 | header->hb4 |= HB4_CD; |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1879 | |
| 1880 | if (size != new_size) |
| 1881 | added_pheader = 1; |
| 1882 | |
| 1883 | size = new_size; |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1884 | } |
| 1885 | #endif |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1886 | } |
| 1887 | |
Simon Kelley | 4b5ea12 | 2013-04-22 10:18:26 +0100 | [diff] [blame] | 1888 | *length = htons(size); |
Simon Kelley | 1fc0268 | 2014-04-29 12:30:18 +0100 | [diff] [blame] | 1889 | |
| 1890 | /* get query name again for logging - may have been overwritten */ |
| 1891 | if (!(gotname = extract_request(header, (unsigned int)size, daemon->namebuff, &qtype))) |
| 1892 | strcpy(daemon->namebuff, "query"); |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1893 | |
Simon Kelley | 4b5ea12 | 2013-04-22 10:18:26 +0100 | [diff] [blame] | 1894 | if (!read_write(last_server->tcpfd, packet, size + sizeof(u16), 0) || |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1895 | !read_write(last_server->tcpfd, &c1, 1, 1) || |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1896 | !read_write(last_server->tcpfd, &c2, 1, 1) || |
| 1897 | !read_write(last_server->tcpfd, payload, (c1 << 8) | c2, 1)) |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1898 | { |
| 1899 | close(last_server->tcpfd); |
| 1900 | last_server->tcpfd = -1; |
| 1901 | continue; |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1902 | } |
| 1903 | |
| 1904 | m = (c1 << 8) | c2; |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1905 | |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1906 | if (last_server->addr.sa.sa_family == AF_INET) |
| 1907 | log_query(F_SERVER | F_IPV4 | F_FORWARD, daemon->namebuff, |
| 1908 | (struct all_addr *)&last_server->addr.in.sin_addr, NULL); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1909 | #ifdef HAVE_IPV6 |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1910 | else |
| 1911 | log_query(F_SERVER | F_IPV6 | F_FORWARD, daemon->namebuff, |
| 1912 | (struct all_addr *)&last_server->addr.in6.sin6_addr, NULL); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1913 | #endif |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1914 | |
| 1915 | #ifdef HAVE_DNSSEC |
| 1916 | if (option_bool(OPT_DNSSEC_VALID) && !checking_disabled) |
| 1917 | { |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1918 | int keycount = DNSSEC_WORK; /* Limit to number of DNSSEC questions, to catch loops and avoid filling cache. */ |
| 1919 | int status = tcp_key_recurse(now, STAT_TRUNCATED, header, m, 0, daemon->namebuff, daemon->keyname, last_server, &keycount); |
| 1920 | char *result; |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1921 | |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1922 | if (keycount == 0) |
| 1923 | result = "ABANDONED"; |
| 1924 | else |
| 1925 | result = (status == STAT_SECURE ? "SECURE" : (status == STAT_INSECURE ? "INSECURE" : "BOGUS")); |
| 1926 | |
| 1927 | log_query(F_KEYTAG | F_SECSTAT, "result", NULL, result); |
| 1928 | |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1929 | if (status == STAT_BOGUS) |
| 1930 | no_cache_dnssec = 1; |
Simon Kelley | 7fa836e | 2014-02-10 20:11:24 +0000 | [diff] [blame] | 1931 | |
Simon Kelley | 7d7b7b3 | 2014-01-08 15:53:35 +0000 | [diff] [blame] | 1932 | if (status == STAT_SECURE) |
| 1933 | cache_secure = 1; |
| 1934 | } |
| 1935 | #endif |
| 1936 | |
| 1937 | /* restore CD bit to the value in the query */ |
| 1938 | if (checking_disabled) |
| 1939 | header->hb4 |= HB4_CD; |
| 1940 | else |
| 1941 | header->hb4 &= ~HB4_CD; |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1942 | |
| 1943 | /* There's no point in updating the cache, since this process will exit and |
| 1944 | lose the information after a few queries. We make this call for the alias and |
| 1945 | bogus-nxdomain side-effects. */ |
| 1946 | /* If the crc of the question section doesn't match the crc we sent, then |
| 1947 | someone might be attempting to insert bogus values into the cache by |
| 1948 | sending replies containing questions and bogus answers. */ |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 1949 | #ifdef HAVE_DNSSEC |
| 1950 | newhash = hash_questions(header, (unsigned int)m, daemon->namebuff); |
| 1951 | if (!newhash || memcmp(hash, newhash, HASH_SIZE) != 0) |
Simon Kelley | 703c7ff | 2014-01-25 23:46:23 +0000 | [diff] [blame] | 1952 | { |
| 1953 | m = 0; |
| 1954 | break; |
| 1955 | } |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 1956 | #else |
| 1957 | if (crc != questions_crc(header, (unsigned int)m, daemon->namebuff)) |
Simon Kelley | 703c7ff | 2014-01-25 23:46:23 +0000 | [diff] [blame] | 1958 | { |
| 1959 | m = 0; |
| 1960 | break; |
| 1961 | } |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 1962 | #endif |
| 1963 | |
| 1964 | m = process_reply(header, now, last_server, (unsigned int)m, |
| 1965 | option_bool(OPT_NO_REBIND) && !norebind, no_cache_dnssec, |
Simon Kelley | 613ad15 | 2014-02-25 23:02:28 +0000 | [diff] [blame] | 1966 | cache_secure, ad_question, do_bit, added_pheader, check_subnet, &peer_addr); |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1967 | |
| 1968 | break; |
| 1969 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1970 | } |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1971 | |
| 1972 | /* In case of local answer or no connections made. */ |
| 1973 | if (m == 0) |
| 1974 | m = setup_reply(header, (unsigned int)size, addrp, flags, daemon->local_ttl); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1975 | } |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1976 | } |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1977 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1978 | check_log_writer(NULL); |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1979 | |
Simon Kelley | 4b5ea12 | 2013-04-22 10:18:26 +0100 | [diff] [blame] | 1980 | *length = htons(m); |
| 1981 | |
| 1982 | if (m == 0 || !read_write(confd, packet, m + sizeof(u16), 0)) |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 1983 | return packet; |
| 1984 | } |
| 1985 | } |
| 1986 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1987 | static struct frec *allocate_frec(time_t now) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1988 | { |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 1989 | struct frec *f; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1990 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1991 | if ((f = (struct frec *)whine_malloc(sizeof(struct frec)))) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1992 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1993 | f->next = daemon->frec_list; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1994 | f->time = now; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1995 | f->sentto = NULL; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1996 | f->rfd4 = NULL; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1997 | f->flags = 0; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1998 | #ifdef HAVE_IPV6 |
| 1999 | f->rfd6 = NULL; |
| 2000 | #endif |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2001 | #ifdef HAVE_DNSSEC |
Simon Kelley | 97bc798 | 2014-01-31 10:19:52 +0000 | [diff] [blame] | 2002 | f->dependent = NULL; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2003 | f->blocking_query = NULL; |
Simon Kelley | 4619d94 | 2014-01-16 19:53:06 +0000 | [diff] [blame] | 2004 | f->stash = NULL; |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 2005 | f->orig_domain = NULL; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2006 | #endif |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2007 | daemon->frec_list = f; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2008 | } |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2009 | |
| 2010 | return f; |
| 2011 | } |
| 2012 | |
Simon Kelley | b5ea1cc | 2014-07-29 16:34:14 +0100 | [diff] [blame] | 2013 | struct randfd *allocate_rfd(int family) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2014 | { |
| 2015 | static int finger = 0; |
| 2016 | int i; |
| 2017 | |
| 2018 | /* limit the number of sockets we have open to avoid starvation of |
| 2019 | (eg) TFTP. Once we have a reasonable number, randomness should be OK */ |
| 2020 | |
| 2021 | for (i = 0; i < RANDOM_SOCKS; i++) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 2022 | if (daemon->randomsocks[i].refcount == 0) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2023 | { |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 2024 | if ((daemon->randomsocks[i].fd = random_sock(family)) == -1) |
| 2025 | break; |
| 2026 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2027 | daemon->randomsocks[i].refcount = 1; |
| 2028 | daemon->randomsocks[i].family = family; |
| 2029 | return &daemon->randomsocks[i]; |
| 2030 | } |
| 2031 | |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 2032 | /* No free ones or cannot get new socket, grab an existing one */ |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2033 | for (i = 0; i < RANDOM_SOCKS; i++) |
| 2034 | { |
| 2035 | int j = (i+finger) % RANDOM_SOCKS; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 2036 | if (daemon->randomsocks[j].refcount != 0 && |
| 2037 | daemon->randomsocks[j].family == family && |
| 2038 | daemon->randomsocks[j].refcount != 0xffff) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2039 | { |
| 2040 | finger = j; |
| 2041 | daemon->randomsocks[j].refcount++; |
| 2042 | return &daemon->randomsocks[j]; |
| 2043 | } |
| 2044 | } |
| 2045 | |
| 2046 | return NULL; /* doom */ |
| 2047 | } |
Simon Kelley | b5ea1cc | 2014-07-29 16:34:14 +0100 | [diff] [blame] | 2048 | |
| 2049 | void free_rfd(struct randfd *rfd) |
| 2050 | { |
| 2051 | if (rfd && --(rfd->refcount) == 0) |
| 2052 | close(rfd->fd); |
| 2053 | } |
| 2054 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2055 | static void free_frec(struct frec *f) |
| 2056 | { |
Simon Kelley | b5ea1cc | 2014-07-29 16:34:14 +0100 | [diff] [blame] | 2057 | free_rfd(f->rfd4); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2058 | f->rfd4 = NULL; |
| 2059 | f->sentto = NULL; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 2060 | f->flags = 0; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2061 | |
| 2062 | #ifdef HAVE_IPV6 |
Simon Kelley | b5ea1cc | 2014-07-29 16:34:14 +0100 | [diff] [blame] | 2063 | free_rfd(f->rfd6); |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2064 | f->rfd6 = NULL; |
| 2065 | #endif |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2066 | |
| 2067 | #ifdef HAVE_DNSSEC |
| 2068 | if (f->stash) |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 2069 | { |
| 2070 | blockdata_free(f->stash); |
| 2071 | f->stash = NULL; |
| 2072 | } |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2073 | |
Simon Kelley | 97e618a | 2015-01-07 21:55:43 +0000 | [diff] [blame] | 2074 | if (f->orig_domain) |
| 2075 | { |
| 2076 | blockdata_free(f->orig_domain); |
| 2077 | f->orig_domain = NULL; |
| 2078 | } |
| 2079 | |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2080 | /* Anything we're waiting on is pointless now, too */ |
| 2081 | if (f->blocking_query) |
| 2082 | free_frec(f->blocking_query); |
| 2083 | f->blocking_query = NULL; |
Simon Kelley | 39048ad | 2014-01-21 17:33:58 +0000 | [diff] [blame] | 2084 | f->dependent = NULL; |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2085 | #endif |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2086 | } |
| 2087 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2088 | /* if wait==NULL return a free or older than TIMEOUT record. |
| 2089 | else return *wait zero if one available, or *wait is delay to |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2090 | when the oldest in-use record will expire. Impose an absolute |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2091 | limit of 4*TIMEOUT before we wipe things (for random sockets). |
| 2092 | If force is set, always return a result, even if we have |
| 2093 | to allocate above the limit. */ |
| 2094 | struct frec *get_new_frec(time_t now, int *wait, int force) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2095 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2096 | struct frec *f, *oldest, *target; |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2097 | int count; |
| 2098 | |
| 2099 | if (wait) |
| 2100 | *wait = 0; |
| 2101 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2102 | for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 2103 | if (!f->sentto) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2104 | target = f; |
| 2105 | else |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2106 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2107 | if (difftime(now, f->time) >= 4*TIMEOUT) |
| 2108 | { |
| 2109 | free_frec(f); |
| 2110 | target = f; |
| 2111 | } |
| 2112 | |
| 2113 | if (!oldest || difftime(f->time, oldest->time) <= 0) |
| 2114 | oldest = f; |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2115 | } |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2116 | |
| 2117 | if (target) |
| 2118 | { |
| 2119 | target->time = now; |
| 2120 | return target; |
| 2121 | } |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2122 | |
| 2123 | /* can't find empty one, use oldest if there is one |
| 2124 | and it's older than timeout */ |
| 2125 | if (oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT) |
| 2126 | { |
| 2127 | /* keep stuff for twice timeout if we can by allocating a new |
| 2128 | record instead */ |
| 2129 | if (difftime(now, oldest->time) < 2*TIMEOUT && |
| 2130 | count <= daemon->ftabsize && |
| 2131 | (f = allocate_frec(now))) |
| 2132 | return f; |
| 2133 | |
| 2134 | if (!wait) |
| 2135 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2136 | free_frec(oldest); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2137 | oldest->time = now; |
| 2138 | } |
| 2139 | return oldest; |
| 2140 | } |
| 2141 | |
| 2142 | /* none available, calculate time 'till oldest record expires */ |
Simon Kelley | 3a23715 | 2013-12-12 12:15:50 +0000 | [diff] [blame] | 2143 | if (!force && count > daemon->ftabsize) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2144 | { |
Marcelo Salhab Brogliato | 0da5e89 | 2013-05-31 11:49:06 +0100 | [diff] [blame] | 2145 | static time_t last_log = 0; |
| 2146 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2147 | if (oldest && wait) |
| 2148 | *wait = oldest->time + (time_t)TIMEOUT - now; |
Marcelo Salhab Brogliato | 0da5e89 | 2013-05-31 11:49:06 +0100 | [diff] [blame] | 2149 | |
| 2150 | if ((int)difftime(now, last_log) > 5) |
| 2151 | { |
| 2152 | last_log = now; |
| 2153 | my_syslog(LOG_WARNING, _("Maximum number of concurrent DNS queries reached (max: %d)"), daemon->ftabsize); |
| 2154 | } |
| 2155 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 2156 | return NULL; |
| 2157 | } |
| 2158 | |
| 2159 | if (!(f = allocate_frec(now)) && wait) |
| 2160 | /* wait one second on malloc failure */ |
| 2161 | *wait = 1; |
| 2162 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2163 | return f; /* OK if malloc fails and this is NULL */ |
| 2164 | } |
| 2165 | |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 2166 | /* crc is all-ones if not known. */ |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 2167 | static struct frec *lookup_frec(unsigned short id, void *hash) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2168 | { |
| 2169 | struct frec *f; |
| 2170 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2171 | for(f = daemon->frec_list; f; f = f->next) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 2172 | if (f->sentto && f->new_id == id && |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 2173 | (!hash || memcmp(hash, f->hash, HASH_SIZE) == 0)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2174 | return f; |
| 2175 | |
| 2176 | return NULL; |
| 2177 | } |
| 2178 | |
| 2179 | static struct frec *lookup_frec_by_sender(unsigned short id, |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 2180 | union mysockaddr *addr, |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 2181 | void *hash) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2182 | { |
Simon Kelley | feba5c1 | 2004-07-27 20:28:58 +0100 | [diff] [blame] | 2183 | struct frec *f; |
| 2184 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2185 | for(f = daemon->frec_list; f; f = f->next) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 2186 | if (f->sentto && |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2187 | f->orig_id == id && |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 2188 | memcmp(hash, f->hash, HASH_SIZE) == 0 && |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2189 | sockaddr_isequal(&f->source, addr)) |
| 2190 | return f; |
| 2191 | |
| 2192 | return NULL; |
| 2193 | } |
Simon Kelley | 47a9516 | 2014-07-08 22:22:02 +0100 | [diff] [blame] | 2194 | |
| 2195 | /* Send query packet again, if we can. */ |
| 2196 | void resend_query() |
| 2197 | { |
| 2198 | if (daemon->srv_save) |
| 2199 | { |
| 2200 | int fd; |
| 2201 | |
| 2202 | if (daemon->srv_save->sfd) |
| 2203 | fd = daemon->srv_save->sfd->fd; |
| 2204 | else if (daemon->rfd_save && daemon->rfd_save->refcount != 0) |
| 2205 | fd = daemon->rfd_save->fd; |
| 2206 | else |
| 2207 | return; |
| 2208 | |
| 2209 | while(sendto(fd, daemon->packet, daemon->packet_len, 0, |
| 2210 | &daemon->srv_save->addr.sa, sa_len(&daemon->srv_save->addr)) == -1 && retry_send()); |
| 2211 | } |
| 2212 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2213 | |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 2214 | /* A server record is going away, remove references to it */ |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 2215 | void server_gone(struct server *server) |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 2216 | { |
| 2217 | struct frec *f; |
| 2218 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2219 | for (f = daemon->frec_list; f; f = f->next) |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 2220 | if (f->sentto && f->sentto == server) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 2221 | free_frec(f); |
Simon Kelley | 849a835 | 2006-06-09 21:02:31 +0100 | [diff] [blame] | 2222 | |
| 2223 | if (daemon->last_server == server) |
| 2224 | daemon->last_server = NULL; |
| 2225 | |
| 2226 | if (daemon->srv_save == server) |
| 2227 | daemon->srv_save = NULL; |
| 2228 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2229 | |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 2230 | /* return unique random ids. */ |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 2231 | static unsigned short get_id(void) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2232 | { |
| 2233 | unsigned short ret = 0; |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 2234 | |
Simon Kelley | 316e273 | 2010-01-22 20:16:09 +0000 | [diff] [blame] | 2235 | do |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 2236 | ret = rand16(); |
Simon Kelley | 8a9be9e | 2014-01-25 23:17:21 +0000 | [diff] [blame] | 2237 | while (lookup_frec(ret, NULL)); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 2238 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 2239 | return ret; |
| 2240 | } |
| 2241 | |
| 2242 | |
| 2243 | |
| 2244 | |
| 2245 | |