Simon Kelley | d1ced3a | 2018-01-01 22:18:03 +0000 | [diff] [blame] | 1 | /* dnsmasq is Copyright (c) 2000-2018 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 | |
| 17 | #include "dnsmasq.h" |
| 18 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 19 | static struct crec *cache_head = NULL, *cache_tail = NULL, **hash_table = NULL; |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 20 | #ifdef HAVE_DHCP |
| 21 | static struct crec *dhcp_spare = NULL; |
| 22 | #endif |
| 23 | static struct crec *new_chain = NULL; |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 24 | static int insert_error; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 25 | static union bigname *big_free = NULL; |
| 26 | static int bignames_left, hash_size; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 27 | |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 28 | static void make_non_terminals(struct crec *source); |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 29 | static struct crec *really_insert(char *name, union all_addr *addr, unsigned short class, |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 30 | time_t now, unsigned long ttl, unsigned int flags); |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 31 | |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 32 | /* type->string mapping: this is also used by the name-hash function as a mixing table. */ |
| 33 | static const struct { |
| 34 | unsigned int type; |
| 35 | const char * const name; |
| 36 | } typestr[] = { |
| 37 | { 1, "A" }, |
| 38 | { 2, "NS" }, |
| 39 | { 5, "CNAME" }, |
| 40 | { 6, "SOA" }, |
| 41 | { 10, "NULL" }, |
| 42 | { 11, "WKS" }, |
| 43 | { 12, "PTR" }, |
| 44 | { 13, "HINFO" }, |
| 45 | { 15, "MX" }, |
| 46 | { 16, "TXT" }, |
| 47 | { 22, "NSAP" }, |
| 48 | { 23, "NSAP_PTR" }, |
| 49 | { 24, "SIG" }, |
| 50 | { 25, "KEY" }, |
| 51 | { 28, "AAAA" }, |
Simon Kelley | aa6f832 | 2017-10-27 22:52:26 +0100 | [diff] [blame] | 52 | { 29, "LOC" }, |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 53 | { 33, "SRV" }, |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 54 | { 35, "NAPTR" }, |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 55 | { 36, "KX" }, |
| 56 | { 37, "CERT" }, |
| 57 | { 38, "A6" }, |
| 58 | { 39, "DNAME" }, |
| 59 | { 41, "OPT" }, |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 60 | { 43, "DS" }, |
| 61 | { 46, "RRSIG" }, |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 62 | { 47, "NSEC" }, |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 63 | { 48, "DNSKEY" }, |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 64 | { 50, "NSEC3" }, |
Simon Kelley | aa6f832 | 2017-10-27 22:52:26 +0100 | [diff] [blame] | 65 | { 51, "NSEC3PARAM" }, |
| 66 | { 52, "TLSA" }, |
| 67 | { 53, "SMIMEA" }, |
| 68 | { 55, "HIP" }, |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 69 | { 249, "TKEY" }, |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 70 | { 250, "TSIG" }, |
| 71 | { 251, "IXFR" }, |
| 72 | { 252, "AXFR" }, |
| 73 | { 253, "MAILB" }, |
| 74 | { 254, "MAILA" }, |
Simon Kelley | b758b67 | 2018-08-23 21:41:23 +0100 | [diff] [blame] | 75 | { 255, "ANY" }, |
| 76 | { 257, "CAA" } |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 77 | }; |
| 78 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 79 | static void cache_free(struct crec *crecp); |
| 80 | static void cache_unlink(struct crec *crecp); |
| 81 | static void cache_link(struct crec *crecp); |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 82 | static void rehash(int size); |
| 83 | static void cache_hash(struct crec *crecp); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 84 | |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 85 | void next_uid(struct crec *crecp) |
Simon Kelley | 3f7483e | 2014-03-16 22:56:58 +0000 | [diff] [blame] | 86 | { |
Andy | d508215 | 2014-03-17 19:50:29 +0000 | [diff] [blame] | 87 | static unsigned int uid = 0; |
Simon Kelley | 3f7483e | 2014-03-16 22:56:58 +0000 | [diff] [blame] | 88 | |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 89 | if (crecp->uid == UID_NONE) |
| 90 | { |
| 91 | uid++; |
Andy | d508215 | 2014-03-17 19:50:29 +0000 | [diff] [blame] | 92 | |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 93 | /* uid == 0 used to indicate CNAME to interface name. */ |
| 94 | if (uid == UID_NONE) |
| 95 | uid++; |
| 96 | |
| 97 | crecp->uid = uid; |
| 98 | } |
Simon Kelley | 3f7483e | 2014-03-16 22:56:58 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 101 | void cache_init(void) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 102 | { |
| 103 | struct crec *crecp; |
| 104 | int i; |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 105 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 106 | bignames_left = daemon->cachesize/10; |
| 107 | |
| 108 | if (daemon->cachesize > 0) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 109 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 110 | crecp = safe_malloc(daemon->cachesize*sizeof(struct crec)); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 111 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 112 | for (i=0; i < daemon->cachesize; i++, crecp++) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 113 | { |
| 114 | cache_link(crecp); |
| 115 | crecp->flags = 0; |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 116 | crecp->uid = UID_NONE; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 117 | } |
| 118 | } |
| 119 | |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 120 | /* create initial hash table*/ |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 121 | rehash(daemon->cachesize); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 122 | } |
| 123 | |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 124 | /* In most cases, we create the hash table once here by calling this with (hash_table == NULL) |
| 125 | but if the hosts file(s) are big (some people have 50000 ad-block entries), the table |
| 126 | will be much too small, so the hosts reading code calls rehash every 1000 addresses, to |
| 127 | expand the table. */ |
| 128 | static void rehash(int size) |
| 129 | { |
| 130 | struct crec **new, **old, *p, *tmp; |
| 131 | int i, new_size, old_size; |
| 132 | |
| 133 | /* hash_size is a power of two. */ |
| 134 | for (new_size = 64; new_size < size/10; new_size = new_size << 1); |
| 135 | |
| 136 | /* must succeed in getting first instance, failure later is non-fatal */ |
| 137 | if (!hash_table) |
| 138 | new = safe_malloc(new_size * sizeof(struct crec *)); |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 139 | else if (new_size <= hash_size || !(new = whine_malloc(new_size * sizeof(struct crec *)))) |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 140 | return; |
| 141 | |
| 142 | for(i = 0; i < new_size; i++) |
| 143 | new[i] = NULL; |
| 144 | |
| 145 | old = hash_table; |
| 146 | old_size = hash_size; |
| 147 | hash_table = new; |
| 148 | hash_size = new_size; |
| 149 | |
| 150 | if (old) |
| 151 | { |
| 152 | for (i = 0; i < old_size; i++) |
| 153 | for (p = old[i]; p ; p = tmp) |
| 154 | { |
| 155 | tmp = p->hash_next; |
| 156 | cache_hash(p); |
| 157 | } |
| 158 | free(old); |
| 159 | } |
| 160 | } |
| 161 | |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 162 | static struct crec **hash_bucket(char *name) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 163 | { |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 164 | unsigned int c, val = 017465; /* Barker code - minimum self-correlation in cyclic shift */ |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 165 | const unsigned char *mix_tab = (const unsigned char*)typestr; |
| 166 | |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 167 | while((c = (unsigned char) *name++)) |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 168 | { |
| 169 | /* don't use tolower and friends here - they may be messed up by LOCALE */ |
| 170 | if (c >= 'A' && c <= 'Z') |
| 171 | c += 'a' - 'A'; |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 172 | val = ((val << 7) | (val >> (32 - 7))) + (mix_tab[(val + c) & 0x3F] ^ c); |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 173 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 174 | |
| 175 | /* hash_size is a power of two */ |
Simon Kelley | 1697269 | 2006-10-16 20:04:18 +0100 | [diff] [blame] | 176 | return hash_table + ((val ^ (val >> 16)) & (hash_size - 1)); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | static void cache_hash(struct crec *crecp) |
| 180 | { |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 181 | /* maintain an invariant that all entries with F_REVERSE set |
| 182 | are at the start of the hash-chain and all non-reverse |
| 183 | immortal entries are at the end of the hash-chain. |
| 184 | This allows reverse searches and garbage collection to be optimised */ |
| 185 | |
| 186 | struct crec **up = hash_bucket(cache_get_name(crecp)); |
| 187 | |
| 188 | if (!(crecp->flags & F_REVERSE)) |
| 189 | { |
| 190 | while (*up && ((*up)->flags & F_REVERSE)) |
| 191 | up = &((*up)->hash_next); |
| 192 | |
| 193 | if (crecp->flags & F_IMMORTAL) |
Simon Kelley | 6b01084 | 2007-02-12 20:32:07 +0000 | [diff] [blame] | 194 | while (*up && !((*up)->flags & F_IMMORTAL)) |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 195 | up = &((*up)->hash_next); |
| 196 | } |
| 197 | crecp->hash_next = *up; |
| 198 | *up = crecp; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 199 | } |
Simon Kelley | 82e3f45 | 2014-01-31 21:05:48 +0000 | [diff] [blame] | 200 | |
Simon Kelley | 82e3f45 | 2014-01-31 21:05:48 +0000 | [diff] [blame] | 201 | static void cache_blockdata_free(struct crec *crecp) |
| 202 | { |
Simon Kelley | 4bf62f6 | 2019-01-10 21:54:22 +0000 | [diff] [blame] | 203 | if (!(crecp->flags & F_NEG)) |
| 204 | { |
| 205 | if (crecp->flags & F_SRV) |
| 206 | blockdata_free(crecp->addr.srv.target); |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 207 | #ifdef HAVE_DNSSEC |
Simon Kelley | 4bf62f6 | 2019-01-10 21:54:22 +0000 | [diff] [blame] | 208 | else if (crecp->flags & F_DNSKEY) |
| 209 | blockdata_free(crecp->addr.key.keydata); |
| 210 | else if (crecp->flags & F_DS) |
| 211 | blockdata_free(crecp->addr.ds.keydata); |
Simon Kelley | 82e3f45 | 2014-01-31 21:05:48 +0000 | [diff] [blame] | 212 | #endif |
Simon Kelley | 4bf62f6 | 2019-01-10 21:54:22 +0000 | [diff] [blame] | 213 | } |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 214 | } |
Simon Kelley | 82e3f45 | 2014-01-31 21:05:48 +0000 | [diff] [blame] | 215 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 216 | static void cache_free(struct crec *crecp) |
| 217 | { |
| 218 | crecp->flags &= ~F_FORWARD; |
| 219 | crecp->flags &= ~F_REVERSE; |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 220 | crecp->uid = UID_NONE; /* invalidate CNAMES pointing to this. */ |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 221 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 222 | if (cache_tail) |
| 223 | cache_tail->next = crecp; |
| 224 | else |
| 225 | cache_head = crecp; |
| 226 | crecp->prev = cache_tail; |
| 227 | crecp->next = NULL; |
| 228 | cache_tail = crecp; |
| 229 | |
| 230 | /* retrieve big name for further use. */ |
| 231 | if (crecp->flags & F_BIGNAME) |
| 232 | { |
| 233 | crecp->name.bname->next = big_free; |
| 234 | big_free = crecp->name.bname; |
| 235 | crecp->flags &= ~F_BIGNAME; |
| 236 | } |
Simon Kelley | 072e81b | 2014-01-31 12:42:54 +0000 | [diff] [blame] | 237 | |
Simon Kelley | 82e3f45 | 2014-01-31 21:05:48 +0000 | [diff] [blame] | 238 | cache_blockdata_free(crecp); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /* insert a new cache entry at the head of the list (youngest entry) */ |
| 242 | static void cache_link(struct crec *crecp) |
| 243 | { |
| 244 | if (cache_head) /* check needed for init code */ |
| 245 | cache_head->prev = crecp; |
| 246 | crecp->next = cache_head; |
| 247 | crecp->prev = NULL; |
| 248 | cache_head = crecp; |
| 249 | if (!cache_tail) |
| 250 | cache_tail = crecp; |
| 251 | } |
| 252 | |
| 253 | /* remove an arbitrary cache entry for promotion */ |
| 254 | static void cache_unlink (struct crec *crecp) |
| 255 | { |
| 256 | if (crecp->prev) |
| 257 | crecp->prev->next = crecp->next; |
| 258 | else |
| 259 | cache_head = crecp->next; |
| 260 | |
| 261 | if (crecp->next) |
| 262 | crecp->next->prev = crecp->prev; |
| 263 | else |
| 264 | cache_tail = crecp->prev; |
| 265 | } |
| 266 | |
| 267 | char *cache_get_name(struct crec *crecp) |
| 268 | { |
| 269 | if (crecp->flags & F_BIGNAME) |
| 270 | return crecp->name.bname->name; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 271 | else if (crecp->flags & F_NAMEP) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 272 | return crecp->name.namep; |
| 273 | |
| 274 | return crecp->name.sname; |
| 275 | } |
| 276 | |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 277 | char *cache_get_cname_target(struct crec *crecp) |
| 278 | { |
Simon Kelley | 19c51cf | 2014-03-18 22:38:30 +0000 | [diff] [blame] | 279 | if (crecp->addr.cname.uid != SRC_INTERFACE) |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 280 | return cache_get_name(crecp->addr.cname.target.cache); |
| 281 | |
| 282 | return crecp->addr.cname.target.int_name->name; |
| 283 | } |
| 284 | |
| 285 | |
| 286 | |
Simon Kelley | b75e936 | 2012-12-07 11:50:41 +0000 | [diff] [blame] | 287 | struct crec *cache_enumerate(int init) |
| 288 | { |
| 289 | static int bucket; |
| 290 | static struct crec *cache; |
| 291 | |
| 292 | if (init) |
| 293 | { |
| 294 | bucket = 0; |
| 295 | cache = NULL; |
| 296 | } |
| 297 | else if (cache && cache->hash_next) |
| 298 | cache = cache->hash_next; |
| 299 | else |
| 300 | { |
| 301 | cache = NULL; |
| 302 | while (bucket < hash_size) |
| 303 | if ((cache = hash_table[bucket++])) |
| 304 | break; |
| 305 | } |
| 306 | |
| 307 | return cache; |
| 308 | } |
| 309 | |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 310 | static int is_outdated_cname_pointer(struct crec *crecp) |
| 311 | { |
Andy | 3e21a1a | 2014-03-22 19:10:07 +0000 | [diff] [blame] | 312 | if (!(crecp->flags & F_CNAME) || crecp->addr.cname.uid == SRC_INTERFACE) |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 313 | return 0; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 314 | |
Simon Kelley | cdbee9a | 2012-04-04 21:55:59 +0100 | [diff] [blame] | 315 | /* NB. record may be reused as DS or DNSKEY, where uid is |
| 316 | overloaded for something completely different */ |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 317 | if (crecp->addr.cname.target.cache && |
Simon Kelley | 2896e24 | 2019-01-09 15:12:34 +0000 | [diff] [blame] | 318 | !(crecp->addr.cname.target.cache->flags & (F_DNSKEY | F_DS)) && |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 319 | crecp->addr.cname.uid == crecp->addr.cname.target.cache->uid) |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 320 | return 0; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 321 | |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 322 | return 1; |
| 323 | } |
| 324 | |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 325 | static int is_expired(time_t now, struct crec *crecp) |
| 326 | { |
| 327 | if (crecp->flags & F_IMMORTAL) |
| 328 | return 0; |
| 329 | |
| 330 | if (difftime(now, crecp->ttd) < 0) |
| 331 | return 0; |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 332 | |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 333 | return 1; |
| 334 | } |
| 335 | |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 336 | static struct crec *cache_scan_free(char *name, union all_addr *addr, unsigned short class, time_t now, |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 337 | unsigned int flags, struct crec **target_crec, unsigned int *target_uid) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 338 | { |
| 339 | /* Scan and remove old entries. |
| 340 | If (flags & F_FORWARD) then remove any forward entries for name and any expired |
| 341 | entries but only in the same hash bucket as name. |
| 342 | If (flags & F_REVERSE) then remove any reverse entries for addr and any expired |
| 343 | entries in the whole cache. |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 344 | If (flags == 0) remove any expired entries in the whole cache. |
| 345 | |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 346 | In the flags & F_FORWARD case, the return code is valid, and returns a non-NULL pointer |
| 347 | to a cache entry if the name exists in the cache as a HOSTS or DHCP entry (these are never deleted) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 348 | |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 349 | We take advantage of the fact that hash chains have stuff in the order <reverse>,<other>,<immortal> |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 350 | so that when we hit an entry which isn't reverse and is immortal, we're done. |
| 351 | |
| 352 | If we free a crec which is a CNAME target, return the entry and uid in target_crec and target_uid. |
| 353 | This entry will get re-used with the same name, to preserve CNAMEs. */ |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 354 | |
| 355 | struct crec *crecp, **up; |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 356 | |
| 357 | (void)class; |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 358 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 359 | if (flags & F_FORWARD) |
| 360 | { |
Simon Kelley | 6b01084 | 2007-02-12 20:32:07 +0000 | [diff] [blame] | 361 | for (up = hash_bucket(name), crecp = *up; crecp; crecp = crecp->hash_next) |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 362 | { |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 363 | if ((crecp->flags & F_FORWARD) && hostname_isequal(cache_get_name(crecp), name)) |
| 364 | { |
Simon Kelley | e7829ae | 2014-01-22 22:21:51 +0000 | [diff] [blame] | 365 | /* Don't delete DNSSEC in favour of a CNAME, they can co-exist */ |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 366 | if ((flags & crecp->flags & (F_IPV4 | F_IPV6 | F_SRV)) || |
Simon Kelley | 6429e42 | 2014-01-23 12:09:36 +0000 | [diff] [blame] | 367 | (((crecp->flags | flags) & F_CNAME) && !(crecp->flags & (F_DNSKEY | F_DS)))) |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 368 | { |
| 369 | if (crecp->flags & (F_HOSTS | F_DHCP | F_CONFIG)) |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 370 | return crecp; |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 371 | *up = crecp->hash_next; |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 372 | /* If this record is for the name we're inserting and is the target |
| 373 | of a CNAME record. Make the new record for the same name, in the same |
| 374 | crec, with the same uid to avoid breaking the existing CNAME. */ |
| 375 | if (crecp->uid != UID_NONE) |
| 376 | { |
| 377 | if (target_crec) |
| 378 | *target_crec = crecp; |
| 379 | if (target_uid) |
| 380 | *target_uid = crecp->uid; |
| 381 | } |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 382 | cache_unlink(crecp); |
| 383 | cache_free(crecp); |
| 384 | continue; |
| 385 | } |
| 386 | |
| 387 | #ifdef HAVE_DNSSEC |
Simon Kelley | 93be5b1 | 2015-12-15 12:04:40 +0000 | [diff] [blame] | 388 | /* Deletion has to be class-sensitive for DS and DNSKEY */ |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 389 | if ((flags & crecp->flags & (F_DNSKEY | F_DS)) && crecp->uid == class) |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 390 | { |
Simon Kelley | 824202e | 2014-01-23 20:59:46 +0000 | [diff] [blame] | 391 | if (crecp->flags & F_CONFIG) |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 392 | return crecp; |
Simon Kelley | 824202e | 2014-01-23 20:59:46 +0000 | [diff] [blame] | 393 | *up = crecp->hash_next; |
| 394 | cache_unlink(crecp); |
| 395 | cache_free(crecp); |
| 396 | continue; |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 397 | } |
| 398 | #endif |
| 399 | } |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 400 | |
| 401 | if (is_expired(now, crecp) || is_outdated_cname_pointer(crecp)) |
| 402 | { |
| 403 | *up = crecp->hash_next; |
| 404 | if (!(crecp->flags & (F_HOSTS | F_DHCP | F_CONFIG))) |
| 405 | { |
| 406 | cache_unlink(crecp); |
| 407 | cache_free(crecp); |
| 408 | } |
| 409 | continue; |
| 410 | } |
| 411 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 412 | up = &crecp->hash_next; |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 413 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 414 | } |
| 415 | else |
| 416 | { |
| 417 | int i; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 418 | int addrlen = (flags & F_IPV6) ? IN6ADDRSZ : INADDRSZ; |
Simon Kelley | ee87504 | 2018-10-23 22:10:17 +0100 | [diff] [blame] | 419 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 420 | for (i = 0; i < hash_size; i++) |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 421 | for (crecp = hash_table[i], up = &hash_table[i]; |
| 422 | crecp && ((crecp->flags & F_REVERSE) || !(crecp->flags & F_IMMORTAL)); |
| 423 | crecp = crecp->hash_next) |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 424 | if (is_expired(now, crecp)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 425 | { |
| 426 | *up = crecp->hash_next; |
Simon Kelley | 2543906 | 2013-11-25 21:14:51 +0000 | [diff] [blame] | 427 | if (!(crecp->flags & (F_HOSTS | F_DHCP | F_CONFIG))) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 428 | { |
| 429 | cache_unlink(crecp); |
| 430 | cache_free(crecp); |
| 431 | } |
| 432 | } |
Simon Kelley | 2543906 | 2013-11-25 21:14:51 +0000 | [diff] [blame] | 433 | else if (!(crecp->flags & (F_HOSTS | F_DHCP | F_CONFIG)) && |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 434 | (flags & crecp->flags & F_REVERSE) && |
| 435 | (flags & crecp->flags & (F_IPV4 | F_IPV6)) && |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 436 | memcmp(&crecp->addr, addr, addrlen) == 0) |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 437 | { |
| 438 | *up = crecp->hash_next; |
| 439 | cache_unlink(crecp); |
| 440 | cache_free(crecp); |
| 441 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 442 | else |
| 443 | up = &crecp->hash_next; |
| 444 | } |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 445 | |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 446 | return NULL; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | /* Note: The normal calling sequence is |
| 450 | cache_start_insert |
| 451 | cache_insert * n |
| 452 | cache_end_insert |
| 453 | |
| 454 | but an abort can cause the cache_end_insert to be missed |
| 455 | in which can the next cache_start_insert cleans things up. */ |
| 456 | |
| 457 | void cache_start_insert(void) |
| 458 | { |
| 459 | /* Free any entries which didn't get committed during the last |
| 460 | insert due to error. |
| 461 | */ |
| 462 | while (new_chain) |
| 463 | { |
| 464 | struct crec *tmp = new_chain->next; |
| 465 | cache_free(new_chain); |
| 466 | new_chain = tmp; |
| 467 | } |
| 468 | new_chain = NULL; |
| 469 | insert_error = 0; |
| 470 | } |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 471 | |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 472 | struct crec *cache_insert(char *name, union all_addr *addr, unsigned short class, |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 473 | time_t now, unsigned long ttl, unsigned int flags) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 474 | { |
Simon Kelley | a0ab18f | 2014-02-13 16:38:23 +0000 | [diff] [blame] | 475 | /* Don't log DNSSEC records here, done elsewhere */ |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 476 | if (flags & (F_IPV4 | F_IPV6 | F_CNAME | F_SRV)) |
Simon Kelley | a0ab18f | 2014-02-13 16:38:23 +0000 | [diff] [blame] | 477 | { |
| 478 | log_query(flags | F_UPSTREAM, name, addr, NULL); |
RinSatsuki | 28de387 | 2015-01-10 15:22:21 +0000 | [diff] [blame] | 479 | /* Don't mess with TTL for DNSSEC records. */ |
Simon Kelley | a0ab18f | 2014-02-13 16:38:23 +0000 | [diff] [blame] | 480 | if (daemon->max_cache_ttl != 0 && daemon->max_cache_ttl < ttl) |
| 481 | ttl = daemon->max_cache_ttl; |
RinSatsuki | 28de387 | 2015-01-10 15:22:21 +0000 | [diff] [blame] | 482 | if (daemon->min_cache_ttl != 0 && daemon->min_cache_ttl > ttl) |
| 483 | ttl = daemon->min_cache_ttl; |
Simon Kelley | a0ab18f | 2014-02-13 16:38:23 +0000 | [diff] [blame] | 484 | } |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 485 | |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 486 | return really_insert(name, addr, class, now, ttl, flags); |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 487 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 488 | |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 489 | |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 490 | static struct crec *really_insert(char *name, union all_addr *addr, unsigned short class, |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 491 | time_t now, unsigned long ttl, unsigned int flags) |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 492 | { |
| 493 | struct crec *new, *target_crec = NULL; |
| 494 | union bigname *big_name = NULL; |
| 495 | int freed_all = flags & F_REVERSE; |
| 496 | int free_avail = 0; |
| 497 | unsigned int target_uid; |
| 498 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 499 | /* if previous insertion failed give up now. */ |
| 500 | if (insert_error) |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 501 | return NULL; |
Simon Kelley | 8d718cb | 2014-02-03 16:27:37 +0000 | [diff] [blame] | 502 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 503 | /* First remove any expired entries and entries for the name/address we |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 504 | are currently inserting. */ |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 505 | if ((new = cache_scan_free(name, addr, class, now, flags, &target_crec, &target_uid))) |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 506 | { |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 507 | /* We're trying to insert a record over one from |
| 508 | /etc/hosts or DHCP, or other config. If the |
| 509 | existing record is for an A or AAAA and |
| 510 | the record we're trying to insert is the same, |
| 511 | just drop the insert, but don't error the whole process. */ |
Edwin Török | 41a8d9e | 2015-11-14 17:45:48 +0000 | [diff] [blame] | 512 | if ((flags & (F_IPV4 | F_IPV6)) && (flags & F_FORWARD) && addr) |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 513 | { |
| 514 | if ((flags & F_IPV4) && (new->flags & F_IPV4) && |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 515 | new->addr.addr4.s_addr == addr->addr4.s_addr) |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 516 | return new; |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 517 | else if ((flags & F_IPV6) && (new->flags & F_IPV6) && |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 518 | IN6_ARE_ADDR_EQUAL(&new->addr.addr6, &addr->addr6)) |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 519 | return new; |
Simon Kelley | cbc6524 | 2014-12-21 21:21:53 +0000 | [diff] [blame] | 520 | } |
| 521 | |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 522 | insert_error = 1; |
| 523 | return NULL; |
| 524 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 525 | |
| 526 | /* Now get a cache entry from the end of the LRU list */ |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 527 | if (!target_crec) |
| 528 | while (1) { |
| 529 | if (!(new = cache_tail)) /* no entries left - cache is too small, bail */ |
| 530 | { |
| 531 | insert_error = 1; |
| 532 | return NULL; |
| 533 | } |
| 534 | |
| 535 | /* Free entry at end of LRU list, use it. */ |
| 536 | if (!(new->flags & (F_FORWARD | F_REVERSE))) |
| 537 | break; |
Simon Kelley | 8d718cb | 2014-02-03 16:27:37 +0000 | [diff] [blame] | 538 | |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 539 | /* End of LRU list is still in use: if we didn't scan all the hash |
| 540 | chains for expired entries do that now. If we already tried that |
| 541 | then it's time to start spilling things. */ |
| 542 | |
| 543 | /* If free_avail set, we believe that an entry has been freed. |
| 544 | Bugs have been known to make this not true, resulting in |
| 545 | a tight loop here. If that happens, abandon the |
| 546 | insert. Once in this state, all inserts will probably fail. */ |
| 547 | if (free_avail) |
| 548 | { |
| 549 | static int warned = 0; |
| 550 | if (!warned) |
| 551 | { |
| 552 | my_syslog(LOG_ERR, _("Internal error in cache.")); |
| 553 | warned = 1; |
| 554 | } |
| 555 | insert_error = 1; |
| 556 | return NULL; |
| 557 | } |
| 558 | |
| 559 | if (freed_all) |
| 560 | { |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 561 | /* For DNSSEC records, uid holds class. */ |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 562 | free_avail = 1; /* Must be free space now. */ |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 563 | cache_scan_free(cache_get_name(new), &new->addr, new->uid, now, new->flags, NULL, NULL); |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 564 | daemon->metrics[METRIC_DNS_CACHE_LIVE_FREED]++; |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 565 | } |
| 566 | else |
| 567 | { |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 568 | cache_scan_free(NULL, NULL, class, now, 0, NULL, NULL); |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 569 | freed_all = 1; |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | /* Check if we need to and can allocate extra memory for a long name. |
| 574 | If that fails, give up now, always succeed for DNSSEC records. */ |
| 575 | if (name && (strlen(name) > SMALLDNAME-1)) |
| 576 | { |
| 577 | if (big_free) |
| 578 | { |
| 579 | big_name = big_free; |
| 580 | big_free = big_free->next; |
| 581 | } |
| 582 | else if ((bignames_left == 0 && !(flags & (F_DS | F_DNSKEY))) || |
| 583 | !(big_name = (union bigname *)whine_malloc(sizeof(union bigname)))) |
| 584 | { |
| 585 | insert_error = 1; |
| 586 | return NULL; |
| 587 | } |
| 588 | else if (bignames_left != 0) |
| 589 | bignames_left--; |
| 590 | |
| 591 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 592 | |
Simon Kelley | eb1fe15 | 2018-07-18 20:59:52 +0100 | [diff] [blame] | 593 | /* If we freed a cache entry for our name which was a CNAME target, use that. |
| 594 | and preserve the uid, so that existing CNAMES are not broken. */ |
| 595 | if (target_crec) |
| 596 | { |
| 597 | new = target_crec; |
| 598 | new->uid = target_uid; |
| 599 | } |
| 600 | |
| 601 | /* Got the rest: finally grab entry. */ |
| 602 | cache_unlink(new); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 603 | |
| 604 | new->flags = flags; |
| 605 | if (big_name) |
| 606 | { |
| 607 | new->name.bname = big_name; |
| 608 | new->flags |= F_BIGNAME; |
| 609 | } |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 610 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 611 | if (name) |
| 612 | strcpy(cache_get_name(new), name); |
| 613 | else |
| 614 | *cache_get_name(new) = 0; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 615 | |
Simon Kelley | b8eac19 | 2014-02-27 14:30:03 +0000 | [diff] [blame] | 616 | #ifdef HAVE_DNSSEC |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 617 | if (flags & (F_DS | F_DNSKEY)) |
| 618 | new->uid = class; |
Simon Kelley | b8eac19 | 2014-02-27 14:30:03 +0000 | [diff] [blame] | 619 | #endif |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 620 | |
| 621 | if (addr) |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 622 | new->addr = *addr; |
Simon Kelley | 7b4ad2e | 2012-04-04 14:05:35 +0100 | [diff] [blame] | 623 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 624 | new->ttd = now + (time_t)ttl; |
| 625 | new->next = new_chain; |
| 626 | new_chain = new; |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 627 | |
| 628 | return new; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 629 | } |
| 630 | |
| 631 | /* after end of insertion, commit the new entries */ |
| 632 | void cache_end_insert(void) |
| 633 | { |
| 634 | if (insert_error) |
| 635 | return; |
| 636 | |
| 637 | while (new_chain) |
| 638 | { |
| 639 | struct crec *tmp = new_chain->next; |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 640 | /* drop CNAMEs which didn't find a target. */ |
| 641 | if (is_outdated_cname_pointer(new_chain)) |
| 642 | cache_free(new_chain); |
| 643 | else |
| 644 | { |
| 645 | cache_hash(new_chain); |
| 646 | cache_link(new_chain); |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 647 | daemon->metrics[METRIC_DNS_CACHE_INSERTED]++; |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 648 | |
| 649 | /* If we're a child process, send this cache entry up the pipe to the master. |
| 650 | The marshalling process is rather nasty. */ |
| 651 | if (daemon->pipe_to_parent != -1) |
| 652 | { |
| 653 | char *name = cache_get_name(new_chain); |
| 654 | ssize_t m = strlen(name); |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 655 | unsigned int flags = new_chain->flags; |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 656 | #ifdef HAVE_DNSSEC |
| 657 | u16 class = new_chain->uid; |
| 658 | #endif |
| 659 | |
| 660 | read_write(daemon->pipe_to_parent, (unsigned char *)&m, sizeof(m), 0); |
| 661 | read_write(daemon->pipe_to_parent, (unsigned char *)name, m, 0); |
| 662 | read_write(daemon->pipe_to_parent, (unsigned char *)&new_chain->ttd, sizeof(new_chain->ttd), 0); |
| 663 | read_write(daemon->pipe_to_parent, (unsigned char *)&flags, sizeof(flags), 0); |
| 664 | |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 665 | if (flags & (F_IPV4 | F_IPV6 | F_DNSKEY | F_DS | F_SRV)) |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 666 | read_write(daemon->pipe_to_parent, (unsigned char *)&new_chain->addr, sizeof(new_chain->addr), 0); |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 667 | if (flags & F_SRV) |
Alin Nastac | e710c34 | 2019-09-30 15:30:26 +0100 | [diff] [blame] | 668 | { |
| 669 | /* A negative SRV entry is possible and has no data, obviously. */ |
| 670 | if (!(flags & F_NEG)) |
| 671 | blockdata_write(new_chain->addr.srv.target, new_chain->addr.srv.targetlen, daemon->pipe_to_parent); |
| 672 | } |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 673 | #ifdef HAVE_DNSSEC |
Simon Kelley | ab194ed | 2019-01-01 01:35:30 +0000 | [diff] [blame] | 674 | if (flags & F_DNSKEY) |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 675 | { |
| 676 | read_write(daemon->pipe_to_parent, (unsigned char *)&class, sizeof(class), 0); |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 677 | blockdata_write(new_chain->addr.key.keydata, new_chain->addr.key.keylen, daemon->pipe_to_parent); |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 678 | } |
| 679 | else if (flags & F_DS) |
| 680 | { |
| 681 | read_write(daemon->pipe_to_parent, (unsigned char *)&class, sizeof(class), 0); |
| 682 | /* A negative DS entry is possible and has no data, obviously. */ |
| 683 | if (!(flags & F_NEG)) |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 684 | blockdata_write(new_chain->addr.ds.keydata, new_chain->addr.ds.keylen, daemon->pipe_to_parent); |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 685 | } |
| 686 | #endif |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 687 | } |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 688 | } |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 689 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 690 | new_chain = tmp; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 691 | } |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 692 | |
| 693 | /* signal end of cache insert in master process */ |
| 694 | if (daemon->pipe_to_parent != -1) |
| 695 | { |
| 696 | ssize_t m = -1; |
| 697 | read_write(daemon->pipe_to_parent, (unsigned char *)&m, sizeof(m), 0); |
| 698 | } |
| 699 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 700 | new_chain = NULL; |
| 701 | } |
| 702 | |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 703 | |
| 704 | /* A marshalled cache entry arrives on fd, read, unmarshall and insert into cache of master process. */ |
| 705 | int cache_recv_insert(time_t now, int fd) |
| 706 | { |
| 707 | ssize_t m; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 708 | union all_addr addr; |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 709 | unsigned long ttl; |
| 710 | time_t ttd; |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 711 | unsigned int flags; |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 712 | struct crec *crecp = NULL; |
| 713 | |
| 714 | cache_start_insert(); |
| 715 | |
| 716 | while(1) |
| 717 | { |
| 718 | |
| 719 | if (!read_write(fd, (unsigned char *)&m, sizeof(m), 1)) |
| 720 | return 0; |
| 721 | |
| 722 | if (m == -1) |
| 723 | { |
| 724 | cache_end_insert(); |
| 725 | return 1; |
| 726 | } |
| 727 | |
| 728 | if (!read_write(fd, (unsigned char *)daemon->namebuff, m, 1) || |
| 729 | !read_write(fd, (unsigned char *)&ttd, sizeof(ttd), 1) || |
| 730 | !read_write(fd, (unsigned char *)&flags, sizeof(flags), 1)) |
| 731 | return 0; |
| 732 | |
| 733 | daemon->namebuff[m] = 0; |
| 734 | |
| 735 | ttl = difftime(ttd, now); |
| 736 | |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 737 | if (flags & (F_IPV4 | F_IPV6 | F_DNSKEY | F_DS | F_SRV)) |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 738 | { |
Simon Kelley | ab194ed | 2019-01-01 01:35:30 +0000 | [diff] [blame] | 739 | unsigned short class = C_IN; |
| 740 | |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 741 | if (!read_write(fd, (unsigned char *)&addr, sizeof(addr), 1)) |
| 742 | return 0; |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 743 | |
Alin Nastac | e710c34 | 2019-09-30 15:30:26 +0100 | [diff] [blame] | 744 | if ((flags & F_SRV) && !(flags & F_NEG) && !(addr.srv.target = blockdata_read(fd, addr.srv.targetlen))) |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 745 | return 0; |
| 746 | |
Simon Kelley | ab194ed | 2019-01-01 01:35:30 +0000 | [diff] [blame] | 747 | #ifdef HAVE_DNSSEC |
| 748 | if (flags & F_DNSKEY) |
| 749 | { |
| 750 | if (!read_write(fd, (unsigned char *)&class, sizeof(class), 1) || |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 751 | !(addr.key.keydata = blockdata_read(fd, addr.key.keylen))) |
Simon Kelley | ab194ed | 2019-01-01 01:35:30 +0000 | [diff] [blame] | 752 | return 0; |
| 753 | } |
| 754 | else if (flags & F_DS) |
| 755 | { |
| 756 | if (!read_write(fd, (unsigned char *)&class, sizeof(class), 1) || |
Simon Kelley | 2c59473 | 2019-01-03 13:42:03 +0000 | [diff] [blame] | 757 | (!(flags & F_NEG) && !(addr.key.keydata = blockdata_read(fd, addr.key.keylen)))) |
Simon Kelley | ab194ed | 2019-01-01 01:35:30 +0000 | [diff] [blame] | 758 | return 0; |
| 759 | } |
| 760 | #endif |
| 761 | |
| 762 | crecp = really_insert(daemon->namebuff, &addr, class, now, ttl, flags); |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 763 | } |
| 764 | else if (flags & F_CNAME) |
| 765 | { |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 766 | struct crec *newc = really_insert(daemon->namebuff, NULL, C_IN, now, ttl, flags); |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 767 | /* This relies on the fact the the target of a CNAME immediately preceeds |
| 768 | it because of the order of extraction in extract_addresses, and |
| 769 | the order reversal on the new_chain. */ |
| 770 | if (newc) |
| 771 | { |
| 772 | if (!crecp) |
| 773 | { |
| 774 | newc->addr.cname.target.cache = NULL; |
| 775 | /* anything other than zero, to avoid being mistaken for CNAME to interface-name */ |
| 776 | newc->addr.cname.uid = 1; |
| 777 | } |
| 778 | else |
| 779 | { |
| 780 | next_uid(crecp); |
| 781 | newc->addr.cname.target.cache = crecp; |
| 782 | newc->addr.cname.uid = crecp->uid; |
| 783 | } |
| 784 | } |
| 785 | } |
Simon Kelley | a799ca0 | 2018-10-18 19:35:29 +0100 | [diff] [blame] | 786 | } |
| 787 | } |
| 788 | |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 789 | int cache_find_non_terminal(char *name, time_t now) |
| 790 | { |
| 791 | struct crec *crecp; |
| 792 | |
| 793 | for (crecp = *hash_bucket(name); crecp; crecp = crecp->hash_next) |
| 794 | if (!is_outdated_cname_pointer(crecp) && |
| 795 | !is_expired(now, crecp) && |
| 796 | (crecp->flags & F_FORWARD) && |
Sven Mueller | 162e5e0 | 2019-02-27 21:17:37 +0000 | [diff] [blame] | 797 | !(crecp->flags & F_NXDOMAIN) && |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 798 | hostname_isequal(name, cache_get_name(crecp))) |
| 799 | return 1; |
| 800 | |
| 801 | return 0; |
| 802 | } |
| 803 | |
Simon Kelley | 12fae49 | 2014-02-04 22:03:06 +0000 | [diff] [blame] | 804 | struct crec *cache_find_by_name(struct crec *crecp, char *name, time_t now, unsigned int prot) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 805 | { |
| 806 | struct crec *ans; |
Simon Kelley | 12fae49 | 2014-02-04 22:03:06 +0000 | [diff] [blame] | 807 | int no_rr = prot & F_NO_RR; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 808 | |
Simon Kelley | 12fae49 | 2014-02-04 22:03:06 +0000 | [diff] [blame] | 809 | prot &= ~F_NO_RR; |
| 810 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 811 | if (crecp) /* iterating */ |
| 812 | ans = crecp->next; |
| 813 | else |
| 814 | { |
| 815 | /* first search, look for relevant entries and push to top of list |
| 816 | also free anything which has expired */ |
| 817 | struct crec *next, **up, **insert = NULL, **chainp = &ans; |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 818 | unsigned int ins_flags = 0; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 819 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 820 | for (up = hash_bucket(name), crecp = *up; crecp; crecp = next) |
| 821 | { |
| 822 | next = crecp->hash_next; |
| 823 | |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 824 | if (!is_expired(now, crecp) && !is_outdated_cname_pointer(crecp)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 825 | { |
| 826 | if ((crecp->flags & F_FORWARD) && |
| 827 | (crecp->flags & prot) && |
| 828 | hostname_isequal(cache_get_name(crecp), name)) |
| 829 | { |
Simon Kelley | 2543906 | 2013-11-25 21:14:51 +0000 | [diff] [blame] | 830 | if (crecp->flags & (F_HOSTS | F_DHCP | F_CONFIG)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 831 | { |
| 832 | *chainp = crecp; |
| 833 | chainp = &crecp->next; |
| 834 | } |
| 835 | else |
| 836 | { |
| 837 | cache_unlink(crecp); |
| 838 | cache_link(crecp); |
| 839 | } |
| 840 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 841 | /* Move all but the first entry up the hash chain |
| 842 | this implements round-robin. |
| 843 | Make sure that re-ordering doesn't break the hash-chain |
| 844 | order invariants. |
| 845 | */ |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 846 | if (insert && (crecp->flags & (F_REVERSE | F_IMMORTAL)) == ins_flags) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 847 | { |
| 848 | *up = crecp->hash_next; |
| 849 | crecp->hash_next = *insert; |
| 850 | *insert = crecp; |
| 851 | insert = &crecp->hash_next; |
| 852 | } |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 853 | else |
| 854 | { |
Simon Kelley | 12fae49 | 2014-02-04 22:03:06 +0000 | [diff] [blame] | 855 | if (!insert && !no_rr) |
Simon Kelley | 9e03894 | 2008-05-30 20:06:34 +0100 | [diff] [blame] | 856 | { |
| 857 | insert = up; |
| 858 | ins_flags = crecp->flags & (F_REVERSE | F_IMMORTAL); |
| 859 | } |
| 860 | up = &crecp->hash_next; |
| 861 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 862 | } |
| 863 | else |
| 864 | /* case : not expired, incorrect entry. */ |
| 865 | up = &crecp->hash_next; |
| 866 | } |
| 867 | else |
| 868 | { |
| 869 | /* expired entry, free it */ |
| 870 | *up = crecp->hash_next; |
Simon Kelley | 2543906 | 2013-11-25 21:14:51 +0000 | [diff] [blame] | 871 | if (!(crecp->flags & (F_HOSTS | F_DHCP | F_CONFIG))) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 872 | { |
| 873 | cache_unlink(crecp); |
| 874 | cache_free(crecp); |
| 875 | } |
| 876 | } |
| 877 | } |
| 878 | |
| 879 | *chainp = cache_head; |
| 880 | } |
| 881 | |
| 882 | if (ans && |
| 883 | (ans->flags & F_FORWARD) && |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 884 | (ans->flags & prot) && |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 885 | hostname_isequal(cache_get_name(ans), name)) |
| 886 | return ans; |
| 887 | |
| 888 | return NULL; |
| 889 | } |
| 890 | |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 891 | struct crec *cache_find_by_addr(struct crec *crecp, union all_addr *addr, |
Simon Kelley | 12fae49 | 2014-02-04 22:03:06 +0000 | [diff] [blame] | 892 | time_t now, unsigned int prot) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 893 | { |
| 894 | struct crec *ans; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 895 | int addrlen = (prot == F_IPV6) ? IN6ADDRSZ : INADDRSZ; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 896 | |
| 897 | if (crecp) /* iterating */ |
| 898 | ans = crecp->next; |
| 899 | else |
| 900 | { |
| 901 | /* first search, look for relevant entries and push to top of list |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 902 | also free anything which has expired. All the reverse entries are at the |
| 903 | start of the hash chain, so we can give up when we find the first |
| 904 | non-REVERSE one. */ |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 905 | int i; |
| 906 | struct crec **up, **chainp = &ans; |
| 907 | |
Simon Kelley | 1b7ecd1 | 2007-02-05 14:57:57 +0000 | [diff] [blame] | 908 | for (i=0; i<hash_size; i++) |
| 909 | for (crecp = hash_table[i], up = &hash_table[i]; |
| 910 | crecp && (crecp->flags & F_REVERSE); |
| 911 | crecp = crecp->hash_next) |
Simon Kelley | f6b7dc4 | 2005-01-23 12:06:08 +0000 | [diff] [blame] | 912 | if (!is_expired(now, crecp)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 913 | { |
Simon Kelley | 6b01084 | 2007-02-12 20:32:07 +0000 | [diff] [blame] | 914 | if ((crecp->flags & prot) && |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 915 | memcmp(&crecp->addr, addr, addrlen) == 0) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 916 | { |
Simon Kelley | 2543906 | 2013-11-25 21:14:51 +0000 | [diff] [blame] | 917 | if (crecp->flags & (F_HOSTS | F_DHCP | F_CONFIG)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 918 | { |
| 919 | *chainp = crecp; |
| 920 | chainp = &crecp->next; |
| 921 | } |
| 922 | else |
| 923 | { |
| 924 | cache_unlink(crecp); |
| 925 | cache_link(crecp); |
| 926 | } |
| 927 | } |
| 928 | up = &crecp->hash_next; |
| 929 | } |
| 930 | else |
| 931 | { |
| 932 | *up = crecp->hash_next; |
Simon Kelley | 2543906 | 2013-11-25 21:14:51 +0000 | [diff] [blame] | 933 | if (!(crecp->flags & (F_HOSTS | F_DHCP | F_CONFIG))) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 934 | { |
| 935 | cache_unlink(crecp); |
| 936 | cache_free(crecp); |
| 937 | } |
| 938 | } |
| 939 | |
| 940 | *chainp = cache_head; |
| 941 | } |
| 942 | |
| 943 | if (ans && |
| 944 | (ans->flags & F_REVERSE) && |
| 945 | (ans->flags & prot) && |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 946 | memcmp(&ans->addr, addr, addrlen) == 0) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 947 | return ans; |
| 948 | |
| 949 | return NULL; |
| 950 | } |
| 951 | |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 952 | static void add_hosts_cname(struct crec *target) |
| 953 | { |
| 954 | struct crec *crec; |
| 955 | struct cname *a; |
| 956 | |
| 957 | for (a = daemon->cnames; a; a = a->next) |
Simon Kelley | b637d78 | 2016-12-13 16:44:11 +0000 | [diff] [blame] | 958 | if (a->alias[1] != '*' && |
| 959 | hostname_isequal(cache_get_name(target), a->target) && |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 960 | (crec = whine_malloc(SIZEOF_POINTER_CREC))) |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 961 | { |
Simon Kelley | bce6e1b | 2014-01-23 22:02:19 +0000 | [diff] [blame] | 962 | crec->flags = F_FORWARD | F_IMMORTAL | F_NAMEP | F_CONFIG | F_CNAME; |
Simon Kelley | df3d54f | 2016-02-24 21:03:38 +0000 | [diff] [blame] | 963 | crec->ttd = a->ttl; |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 964 | crec->name.namep = a->alias; |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 965 | crec->addr.cname.target.cache = target; |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 966 | next_uid(target); |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 967 | crec->addr.cname.uid = target->uid; |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 968 | crec->uid = UID_NONE; |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 969 | cache_hash(crec); |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 970 | make_non_terminals(crec); |
| 971 | |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 972 | add_hosts_cname(crec); /* handle chains */ |
| 973 | } |
| 974 | } |
| 975 | |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 976 | static void add_hosts_entry(struct crec *cache, union all_addr *addr, int addrlen, |
Simon Kelley | 19c51cf | 2014-03-18 22:38:30 +0000 | [diff] [blame] | 977 | unsigned int index, struct crec **rhash, int hashsz) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 978 | { |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 979 | struct crec *lookup = cache_find_by_name(NULL, cache_get_name(cache), 0, cache->flags & (F_IPV4 | F_IPV6)); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 980 | int i, nameexists = 0; |
Simon Kelley | 205fafa | 2012-01-11 21:31:51 +0000 | [diff] [blame] | 981 | unsigned int j; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 982 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 983 | /* Remove duplicates in hosts files. */ |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 984 | if (lookup && (lookup->flags & F_HOSTS)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 985 | { |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 986 | nameexists = 1; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 987 | if (memcmp(&lookup->addr, addr, addrlen) == 0) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 988 | { |
| 989 | free(cache); |
| 990 | return; |
| 991 | } |
| 992 | } |
| 993 | |
| 994 | /* Ensure there is only one address -> name mapping (first one trumps) |
Simon Kelley | 205fafa | 2012-01-11 21:31:51 +0000 | [diff] [blame] | 995 | We do this by steam here, The entries are kept in hash chains, linked |
| 996 | by ->next (which is unused at this point) held in hash buckets in |
Simon Kelley | 1ab62ae | 2012-01-12 11:33:16 +0000 | [diff] [blame] | 997 | the array rhash, hashed on address. Note that rhash and the values |
| 998 | in ->next are only valid whilst reading hosts files: the buckets are |
| 999 | then freed, and the ->next pointer used for other things. |
Simon Kelley | 205fafa | 2012-01-11 21:31:51 +0000 | [diff] [blame] | 1000 | |
Simon Kelley | 1ab62ae | 2012-01-12 11:33:16 +0000 | [diff] [blame] | 1001 | Only insert each unique address once into this hashing structure. |
Simon Kelley | 205fafa | 2012-01-11 21:31:51 +0000 | [diff] [blame] | 1002 | |
| 1003 | This complexity avoids O(n^2) divergent CPU use whilst reading |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1004 | large (10000 entry) hosts files. |
| 1005 | |
| 1006 | Note that we only do this process when bulk-reading hosts files, |
| 1007 | for incremental reads, rhash is NULL, and we use cache lookups |
| 1008 | instead. |
| 1009 | */ |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1010 | |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1011 | if (rhash) |
Simon Kelley | 915363f | 2012-01-11 22:00:48 +0000 | [diff] [blame] | 1012 | { |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1013 | /* hash address */ |
| 1014 | for (j = 0, i = 0; i < addrlen; i++) |
| 1015 | j = (j*2 +((unsigned char *)addr)[i]) % hashsz; |
| 1016 | |
| 1017 | for (lookup = rhash[j]; lookup; lookup = lookup->next) |
| 1018 | if ((lookup->flags & cache->flags & (F_IPV4 | F_IPV6)) && |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1019 | memcmp(&lookup->addr, addr, addrlen) == 0) |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1020 | { |
| 1021 | cache->flags &= ~F_REVERSE; |
| 1022 | break; |
| 1023 | } |
| 1024 | |
| 1025 | /* maintain address hash chain, insert new unique address */ |
| 1026 | if (!lookup) |
| 1027 | { |
| 1028 | cache->next = rhash[j]; |
| 1029 | rhash[j] = cache; |
| 1030 | } |
Simon Kelley | 915363f | 2012-01-11 22:00:48 +0000 | [diff] [blame] | 1031 | } |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1032 | else |
| 1033 | { |
| 1034 | /* incremental read, lookup in cache */ |
| 1035 | lookup = cache_find_by_addr(NULL, addr, 0, cache->flags & (F_IPV4 | F_IPV6)); |
| 1036 | if (lookup && lookup->flags & F_HOSTS) |
| 1037 | cache->flags &= ~F_REVERSE; |
| 1038 | } |
| 1039 | |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1040 | cache->uid = index; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1041 | memcpy(&cache->addr, addr, addrlen); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1042 | cache_hash(cache); |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1043 | make_non_terminals(cache); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1044 | |
| 1045 | /* don't need to do alias stuff for second and subsequent addresses. */ |
| 1046 | if (!nameexists) |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1047 | add_hosts_cname(cache); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1048 | } |
| 1049 | |
| 1050 | static int eatspace(FILE *f) |
| 1051 | { |
| 1052 | int c, nl = 0; |
| 1053 | |
| 1054 | while (1) |
| 1055 | { |
| 1056 | if ((c = getc(f)) == '#') |
| 1057 | while (c != '\n' && c != EOF) |
| 1058 | c = getc(f); |
Simon Kelley | 832af0b | 2007-01-21 20:01:28 +0000 | [diff] [blame] | 1059 | |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1060 | if (c == EOF) |
| 1061 | return 1; |
| 1062 | |
| 1063 | if (!isspace(c)) |
| 1064 | { |
| 1065 | ungetc(c, f); |
| 1066 | return nl; |
| 1067 | } |
| 1068 | |
| 1069 | if (c == '\n') |
Simon Kelley | 4219ade | 2019-02-27 20:30:21 +0000 | [diff] [blame] | 1070 | nl++; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1071 | } |
| 1072 | } |
| 1073 | |
| 1074 | static int gettok(FILE *f, char *token) |
| 1075 | { |
| 1076 | int c, count = 0; |
| 1077 | |
| 1078 | while (1) |
| 1079 | { |
| 1080 | if ((c = getc(f)) == EOF) |
Simon Kelley | 4219ade | 2019-02-27 20:30:21 +0000 | [diff] [blame] | 1081 | return (count == 0) ? -1 : 1; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1082 | |
| 1083 | if (isspace(c) || c == '#') |
| 1084 | { |
| 1085 | ungetc(c, f); |
| 1086 | return eatspace(f); |
| 1087 | } |
| 1088 | |
| 1089 | if (count < (MAXDNAME - 1)) |
| 1090 | { |
| 1091 | token[count++] = c; |
| 1092 | token[count] = 0; |
| 1093 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1094 | } |
| 1095 | } |
| 1096 | |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1097 | int read_hostsfile(char *filename, unsigned int index, int cache_size, struct crec **rhash, int hashsz) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1098 | { |
| 1099 | FILE *f = fopen(filename, "r"); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1100 | char *token = daemon->namebuff, *domain_suffix = NULL; |
Simon Kelley | 4219ade | 2019-02-27 20:30:21 +0000 | [diff] [blame] | 1101 | int addr_count = 0, name_count = cache_size, lineno = 1; |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 1102 | unsigned int flags = 0; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1103 | union all_addr addr; |
Simon Kelley | 205fafa | 2012-01-11 21:31:51 +0000 | [diff] [blame] | 1104 | int atnl, addrlen = 0; |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 1105 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1106 | if (!f) |
| 1107 | { |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1108 | my_syslog(LOG_ERR, _("failed to load names from %s: %s"), filename, strerror(errno)); |
André Glüpker | eddf365 | 2016-01-12 12:54:17 +0000 | [diff] [blame] | 1109 | return cache_size; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1110 | } |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1111 | |
Simon Kelley | 4219ade | 2019-02-27 20:30:21 +0000 | [diff] [blame] | 1112 | lineno += eatspace(f); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1113 | |
Simon Kelley | 4219ade | 2019-02-27 20:30:21 +0000 | [diff] [blame] | 1114 | while ((atnl = gettok(f, token)) != -1) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1115 | { |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1116 | if (inet_pton(AF_INET, token, &addr) > 0) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1117 | { |
Simon Kelley | bce6e1b | 2014-01-23 22:02:19 +0000 | [diff] [blame] | 1118 | flags = F_HOSTS | F_IMMORTAL | F_FORWARD | F_REVERSE | F_IPV4; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1119 | addrlen = INADDRSZ; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1120 | domain_suffix = get_domain(addr.addr4); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1121 | } |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1122 | else if (inet_pton(AF_INET6, token, &addr) > 0) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1123 | { |
Simon Kelley | bce6e1b | 2014-01-23 22:02:19 +0000 | [diff] [blame] | 1124 | flags = F_HOSTS | F_IMMORTAL | F_FORWARD | F_REVERSE | F_IPV6; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1125 | addrlen = IN6ADDRSZ; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1126 | domain_suffix = get_domain6(&addr.addr6); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1127 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1128 | else |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 1129 | { |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1130 | my_syslog(LOG_ERR, _("bad address at %s line %d"), filename, lineno); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1131 | while (atnl == 0) |
| 1132 | atnl = gettok(f, token); |
Simon Kelley | 065e5bb | 2019-03-01 14:38:51 +0000 | [diff] [blame] | 1133 | lineno += atnl; |
Simon Kelley | b8187c8 | 2005-11-26 21:46:27 +0000 | [diff] [blame] | 1134 | continue; |
| 1135 | } |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1136 | |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1137 | addr_count++; |
| 1138 | |
| 1139 | /* rehash every 1000 names. */ |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1140 | if (rhash && ((name_count - cache_size) > 1000)) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1141 | { |
| 1142 | rehash(name_count); |
| 1143 | cache_size = name_count; |
| 1144 | } |
| 1145 | |
| 1146 | while (atnl == 0) |
| 1147 | { |
| 1148 | struct crec *cache; |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 1149 | int fqdn, nomem; |
| 1150 | char *canon; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1151 | |
Simon Kelley | 4219ade | 2019-02-27 20:30:21 +0000 | [diff] [blame] | 1152 | if ((atnl = gettok(f, token)) == -1) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1153 | break; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1154 | |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1155 | fqdn = !!strchr(token, '.'); |
| 1156 | |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 1157 | if ((canon = canonicalise(token, &nomem))) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1158 | { |
| 1159 | /* If set, add a version of the name with a default domain appended */ |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1160 | if (option_bool(OPT_EXPAND) && domain_suffix && !fqdn && |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1161 | (cache = whine_malloc(SIZEOF_BARE_CREC + strlen(canon) + 2 + strlen(domain_suffix)))) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1162 | { |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 1163 | strcpy(cache->name.sname, canon); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1164 | strcat(cache->name.sname, "."); |
| 1165 | strcat(cache->name.sname, domain_suffix); |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1166 | cache->flags = flags; |
Simon Kelley | df3d54f | 2016-02-24 21:03:38 +0000 | [diff] [blame] | 1167 | cache->ttd = daemon->local_ttl; |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1168 | add_hosts_entry(cache, &addr, addrlen, index, rhash, hashsz); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1169 | name_count++; |
| 1170 | } |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1171 | if ((cache = whine_malloc(SIZEOF_BARE_CREC + strlen(canon) + 1))) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1172 | { |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 1173 | strcpy(cache->name.sname, canon); |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1174 | cache->flags = flags; |
Simon Kelley | df3d54f | 2016-02-24 21:03:38 +0000 | [diff] [blame] | 1175 | cache->ttd = daemon->local_ttl; |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1176 | add_hosts_entry(cache, &addr, addrlen, index, rhash, hashsz); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1177 | name_count++; |
| 1178 | } |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 1179 | free(canon); |
| 1180 | |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1181 | } |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 1182 | else if (!nomem) |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1183 | my_syslog(LOG_ERR, _("bad name at %s line %d"), filename, lineno); |
| 1184 | } |
Simon Kelley | 4219ade | 2019-02-27 20:30:21 +0000 | [diff] [blame] | 1185 | |
| 1186 | lineno += atnl; |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1189 | fclose(f); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1190 | |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1191 | if (rhash) |
Simon Kelley | f9c8637 | 2015-02-03 21:52:48 +0000 | [diff] [blame] | 1192 | rehash(name_count); |
| 1193 | |
| 1194 | my_syslog(LOG_INFO, _("read %s - %d addresses"), filename, addr_count); |
| 1195 | |
Simon Kelley | 4011c4e | 2006-10-28 16:26:19 +0100 | [diff] [blame] | 1196 | return name_count; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1197 | } |
| 1198 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1199 | void cache_reload(void) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1200 | { |
| 1201 | struct crec *cache, **up, *tmp; |
Simon Kelley | 1ab62ae | 2012-01-12 11:33:16 +0000 | [diff] [blame] | 1202 | int revhashsz, i, total_size = daemon->cachesize; |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1203 | struct hostsfile *ah; |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1204 | struct host_record *hr; |
| 1205 | struct name_list *nl; |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 1206 | struct cname *a; |
| 1207 | struct interface_name *intr; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1208 | #ifdef HAVE_DNSSEC |
Simon Kelley | ee41586 | 2014-02-11 11:07:22 +0000 | [diff] [blame] | 1209 | struct ds_config *ds; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1210 | #endif |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1211 | |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1212 | daemon->metrics[METRIC_DNS_CACHE_INSERTED] = 0; |
| 1213 | daemon->metrics[METRIC_DNS_CACHE_LIVE_FREED] = 0; |
Simon Kelley | 59353a6 | 2004-11-21 19:34:28 +0000 | [diff] [blame] | 1214 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1215 | for (i=0; i<hash_size; i++) |
| 1216 | for (cache = hash_table[i], up = &hash_table[i]; cache; cache = tmp) |
| 1217 | { |
Simon Kelley | 82e3f45 | 2014-01-31 21:05:48 +0000 | [diff] [blame] | 1218 | cache_blockdata_free(cache); |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 1219 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1220 | tmp = cache->hash_next; |
Simon Kelley | 2543906 | 2013-11-25 21:14:51 +0000 | [diff] [blame] | 1221 | if (cache->flags & (F_HOSTS | F_CONFIG)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1222 | { |
| 1223 | *up = cache->hash_next; |
| 1224 | free(cache); |
| 1225 | } |
| 1226 | else if (!(cache->flags & F_DHCP)) |
| 1227 | { |
| 1228 | *up = cache->hash_next; |
| 1229 | if (cache->flags & F_BIGNAME) |
| 1230 | { |
| 1231 | cache->name.bname->next = big_free; |
| 1232 | big_free = cache->name.bname; |
| 1233 | } |
| 1234 | cache->flags = 0; |
| 1235 | } |
| 1236 | else |
| 1237 | up = &cache->hash_next; |
| 1238 | } |
| 1239 | |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 1240 | /* Add CNAMEs to interface_names to the cache */ |
| 1241 | for (a = daemon->cnames; a; a = a->next) |
| 1242 | for (intr = daemon->int_names; intr; intr = intr->next) |
Simon Kelley | b637d78 | 2016-12-13 16:44:11 +0000 | [diff] [blame] | 1243 | if (a->alias[1] != '*' && |
| 1244 | hostname_isequal(a->target, intr->name) && |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1245 | ((cache = whine_malloc(SIZEOF_POINTER_CREC)))) |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 1246 | { |
Simon Kelley | bce6e1b | 2014-01-23 22:02:19 +0000 | [diff] [blame] | 1247 | cache->flags = F_FORWARD | F_NAMEP | F_CNAME | F_IMMORTAL | F_CONFIG; |
Simon Kelley | df3d54f | 2016-02-24 21:03:38 +0000 | [diff] [blame] | 1248 | cache->ttd = a->ttl; |
Simon Kelley | 532066e | 2013-11-26 10:14:47 +0000 | [diff] [blame] | 1249 | cache->name.namep = a->alias; |
| 1250 | cache->addr.cname.target.int_name = intr; |
Simon Kelley | 19c51cf | 2014-03-18 22:38:30 +0000 | [diff] [blame] | 1251 | cache->addr.cname.uid = SRC_INTERFACE; |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 1252 | cache->uid = UID_NONE; |
Simon Kelley | 532066e | 2013-11-26 10:14:47 +0000 | [diff] [blame] | 1253 | cache_hash(cache); |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1254 | make_non_terminals(cache); |
Simon Kelley | 532066e | 2013-11-26 10:14:47 +0000 | [diff] [blame] | 1255 | add_hosts_cname(cache); /* handle chains */ |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 1256 | } |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1257 | |
| 1258 | #ifdef HAVE_DNSSEC |
Simon Kelley | ee41586 | 2014-02-11 11:07:22 +0000 | [diff] [blame] | 1259 | for (ds = daemon->ds; ds; ds = ds->next) |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1260 | if ((cache = whine_malloc(SIZEOF_POINTER_CREC)) && |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1261 | (cache->addr.ds.keydata = blockdata_alloc(ds->digest, ds->digestlen))) |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1262 | { |
Simon Kelley | ee41586 | 2014-02-11 11:07:22 +0000 | [diff] [blame] | 1263 | cache->flags = F_FORWARD | F_IMMORTAL | F_DS | F_CONFIG | F_NAMEP; |
Simon Kelley | df3d54f | 2016-02-24 21:03:38 +0000 | [diff] [blame] | 1264 | cache->ttd = daemon->local_ttl; |
Simon Kelley | ee41586 | 2014-02-11 11:07:22 +0000 | [diff] [blame] | 1265 | cache->name.namep = ds->name; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1266 | cache->addr.ds.keylen = ds->digestlen; |
| 1267 | cache->addr.ds.algo = ds->algo; |
| 1268 | cache->addr.ds.keytag = ds->keytag; |
| 1269 | cache->addr.ds.digest = ds->digest_type; |
Simon Kelley | ee41586 | 2014-02-11 11:07:22 +0000 | [diff] [blame] | 1270 | cache->uid = ds->class; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1271 | cache_hash(cache); |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1272 | make_non_terminals(cache); |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1273 | } |
| 1274 | #endif |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 1275 | |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1276 | /* borrow the packet buffer for a temporary by-address hash */ |
| 1277 | memset(daemon->packet, 0, daemon->packet_buff_sz); |
| 1278 | revhashsz = daemon->packet_buff_sz / sizeof(struct crec *); |
| 1279 | /* we overwrote the buffer... */ |
| 1280 | daemon->srv_save = NULL; |
| 1281 | |
| 1282 | /* Do host_records in config. */ |
| 1283 | for (hr = daemon->host_records; hr; hr = hr->next) |
| 1284 | for (nl = hr->names; nl; nl = nl->next) |
| 1285 | { |
| 1286 | if (hr->addr.s_addr != 0 && |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1287 | (cache = whine_malloc(SIZEOF_POINTER_CREC))) |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1288 | { |
| 1289 | cache->name.namep = nl->name; |
Simon Kelley | df3d54f | 2016-02-24 21:03:38 +0000 | [diff] [blame] | 1290 | cache->ttd = hr->ttl; |
Simon Kelley | bce6e1b | 2014-01-23 22:02:19 +0000 | [diff] [blame] | 1291 | cache->flags = F_HOSTS | F_IMMORTAL | F_FORWARD | F_REVERSE | F_IPV4 | F_NAMEP | F_CONFIG; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1292 | add_hosts_entry(cache, (union all_addr *)&hr->addr, INADDRSZ, SRC_CONFIG, (struct crec **)daemon->packet, revhashsz); |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1293 | } |
Simon Kelley | ee87504 | 2018-10-23 22:10:17 +0100 | [diff] [blame] | 1294 | |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1295 | if (!IN6_IS_ADDR_UNSPECIFIED(&hr->addr6) && |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1296 | (cache = whine_malloc(SIZEOF_POINTER_CREC))) |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1297 | { |
| 1298 | cache->name.namep = nl->name; |
Simon Kelley | df3d54f | 2016-02-24 21:03:38 +0000 | [diff] [blame] | 1299 | cache->ttd = hr->ttl; |
Simon Kelley | bce6e1b | 2014-01-23 22:02:19 +0000 | [diff] [blame] | 1300 | cache->flags = F_HOSTS | F_IMMORTAL | F_FORWARD | F_REVERSE | F_IPV6 | F_NAMEP | F_CONFIG; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1301 | add_hosts_entry(cache, (union all_addr *)&hr->addr6, IN6ADDRSZ, SRC_CONFIG, (struct crec **)daemon->packet, revhashsz); |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1302 | } |
Simon Kelley | e759d42 | 2012-03-16 13:18:57 +0000 | [diff] [blame] | 1303 | } |
| 1304 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1305 | if (option_bool(OPT_NO_HOSTS) && !daemon->addn_hosts) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1306 | { |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1307 | if (daemon->cachesize > 0) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1308 | my_syslog(LOG_INFO, _("cleared cache")); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1309 | } |
Simon Kelley | caeea19 | 2015-02-14 20:08:56 +0000 | [diff] [blame] | 1310 | else |
| 1311 | { |
| 1312 | if (!option_bool(OPT_NO_HOSTS)) |
| 1313 | total_size = read_hostsfile(HOSTSFILE, SRC_HOSTS, total_size, (struct crec **)daemon->packet, revhashsz); |
| 1314 | |
| 1315 | daemon->addn_hosts = expand_filelist(daemon->addn_hosts); |
| 1316 | for (ah = daemon->addn_hosts; ah; ah = ah->next) |
| 1317 | if (!(ah->flags & AH_INACTIVE)) |
| 1318 | total_size = read_hostsfile(ah->fname, ah->index, total_size, (struct crec **)daemon->packet, revhashsz); |
| 1319 | } |
| 1320 | |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1321 | #ifdef HAVE_INOTIFY |
| 1322 | set_dynamic_inotify(AH_HOSTS, total_size, (struct crec **)daemon->packet, revhashsz); |
| 1323 | #endif |
| 1324 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1325 | } |
| 1326 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1327 | #ifdef HAVE_DHCP |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1328 | struct in_addr a_record_from_hosts(char *name, time_t now) |
| 1329 | { |
| 1330 | struct crec *crecp = NULL; |
| 1331 | struct in_addr ret; |
| 1332 | |
| 1333 | while ((crecp = cache_find_by_name(crecp, name, now, F_IPV4))) |
| 1334 | if (crecp->flags & F_HOSTS) |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1335 | return crecp->addr.addr4; |
Simon Kelley | 7de060b | 2011-08-26 17:24:52 +0100 | [diff] [blame] | 1336 | |
| 1337 | my_syslog(MS_DHCP | LOG_WARNING, _("No IPv4 address found for %s"), name); |
| 1338 | |
| 1339 | ret.s_addr = 0; |
| 1340 | return ret; |
| 1341 | } |
| 1342 | |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1343 | void cache_unhash_dhcp(void) |
| 1344 | { |
Simon Kelley | 6b01084 | 2007-02-12 20:32:07 +0000 | [diff] [blame] | 1345 | struct crec *cache, **up; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1346 | int i; |
| 1347 | |
| 1348 | for (i=0; i<hash_size; i++) |
| 1349 | for (cache = hash_table[i], up = &hash_table[i]; cache; cache = cache->hash_next) |
| 1350 | if (cache->flags & F_DHCP) |
Simon Kelley | 6b01084 | 2007-02-12 20:32:07 +0000 | [diff] [blame] | 1351 | { |
| 1352 | *up = cache->hash_next; |
| 1353 | cache->next = dhcp_spare; |
| 1354 | dhcp_spare = cache; |
| 1355 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1356 | else |
| 1357 | up = &cache->hash_next; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1358 | } |
| 1359 | |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1360 | static void add_dhcp_cname(struct crec *target, time_t ttd) |
| 1361 | { |
| 1362 | struct crec *aliasc; |
| 1363 | struct cname *a; |
| 1364 | |
| 1365 | for (a = daemon->cnames; a; a = a->next) |
Simon Kelley | b637d78 | 2016-12-13 16:44:11 +0000 | [diff] [blame] | 1366 | if (a->alias[1] != '*' && |
| 1367 | hostname_isequal(cache_get_name(target), a->target)) |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1368 | { |
| 1369 | if ((aliasc = dhcp_spare)) |
| 1370 | dhcp_spare = dhcp_spare->next; |
| 1371 | else /* need new one */ |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1372 | aliasc = whine_malloc(SIZEOF_POINTER_CREC); |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1373 | |
| 1374 | if (aliasc) |
| 1375 | { |
Simon Kelley | bce6e1b | 2014-01-23 22:02:19 +0000 | [diff] [blame] | 1376 | aliasc->flags = F_FORWARD | F_NAMEP | F_DHCP | F_CNAME | F_CONFIG; |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1377 | if (ttd == 0) |
| 1378 | aliasc->flags |= F_IMMORTAL; |
| 1379 | else |
| 1380 | aliasc->ttd = ttd; |
| 1381 | aliasc->name.namep = a->alias; |
Simon Kelley | d56a604 | 2013-10-11 14:39:03 +0100 | [diff] [blame] | 1382 | aliasc->addr.cname.target.cache = target; |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 1383 | next_uid(target); |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1384 | aliasc->addr.cname.uid = target->uid; |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 1385 | aliasc->uid = UID_NONE; |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1386 | cache_hash(aliasc); |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1387 | make_non_terminals(aliasc); |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1388 | add_dhcp_cname(aliasc, ttd); |
| 1389 | } |
| 1390 | } |
| 1391 | } |
| 1392 | |
Simon Kelley | 4cb1b32 | 2012-02-06 14:30:41 +0000 | [diff] [blame] | 1393 | void cache_add_dhcp_entry(char *host_name, int prot, |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1394 | union all_addr *host_address, time_t ttd) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1395 | { |
Simon Kelley | 12d71ed | 2012-08-30 15:16:41 +0100 | [diff] [blame] | 1396 | struct crec *crec = NULL, *fail_crec = NULL; |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 1397 | unsigned int flags = F_IPV4; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1398 | int in_hosts = 0; |
Simon Kelley | 4cb1b32 | 2012-02-06 14:30:41 +0000 | [diff] [blame] | 1399 | size_t addrlen = sizeof(struct in_addr); |
| 1400 | |
Simon Kelley | 4cb1b32 | 2012-02-06 14:30:41 +0000 | [diff] [blame] | 1401 | if (prot == AF_INET6) |
| 1402 | { |
| 1403 | flags = F_IPV6; |
| 1404 | addrlen = sizeof(struct in6_addr); |
| 1405 | } |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1406 | |
Simon Kelley | 12d71ed | 2012-08-30 15:16:41 +0100 | [diff] [blame] | 1407 | inet_ntop(prot, host_address, daemon->addrbuff, ADDRSTRLEN); |
| 1408 | |
Simon Kelley | 4cb1b32 | 2012-02-06 14:30:41 +0000 | [diff] [blame] | 1409 | while ((crec = cache_find_by_name(crec, host_name, 0, flags | F_CNAME))) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1410 | { |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1411 | /* check all addresses associated with name */ |
Simon Kelley | 2543906 | 2013-11-25 21:14:51 +0000 | [diff] [blame] | 1412 | if (crec->flags & (F_HOSTS | F_CONFIG)) |
Simon Kelley | 1ab84e2 | 2004-01-29 16:48:35 +0000 | [diff] [blame] | 1413 | { |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1414 | if (crec->flags & F_CNAME) |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1415 | my_syslog(MS_DHCP | LOG_WARNING, |
Simon Kelley | 8ef5ada | 2010-06-03 19:42:45 +0100 | [diff] [blame] | 1416 | _("%s is a CNAME, not giving it to the DHCP lease of %s"), |
Simon Kelley | 4cb1b32 | 2012-02-06 14:30:41 +0000 | [diff] [blame] | 1417 | host_name, daemon->addrbuff); |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1418 | else if (memcmp(&crec->addr, host_address, addrlen) == 0) |
Simon Kelley | 12d71ed | 2012-08-30 15:16:41 +0100 | [diff] [blame] | 1419 | in_hosts = 1; |
| 1420 | else |
| 1421 | fail_crec = crec; |
Simon Kelley | 1ab84e2 | 2004-01-29 16:48:35 +0000 | [diff] [blame] | 1422 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1423 | else if (!(crec->flags & F_DHCP)) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1424 | { |
Simon Kelley | 65a01b7 | 2018-12-31 23:56:33 +0000 | [diff] [blame] | 1425 | cache_scan_free(host_name, NULL, C_IN, 0, crec->flags & (flags | F_CNAME | F_FORWARD), NULL, NULL); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1426 | /* scan_free deletes all addresses associated with name */ |
| 1427 | break; |
| 1428 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1429 | } |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1430 | |
Simon Kelley | 12d71ed | 2012-08-30 15:16:41 +0100 | [diff] [blame] | 1431 | /* if in hosts, don't need DHCP record */ |
| 1432 | if (in_hosts) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1433 | return; |
Simon Kelley | 12d71ed | 2012-08-30 15:16:41 +0100 | [diff] [blame] | 1434 | |
| 1435 | /* Name in hosts, address doesn't match */ |
| 1436 | if (fail_crec) |
| 1437 | { |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1438 | inet_ntop(prot, &fail_crec->addr, daemon->namebuff, MAXDNAME); |
Simon Kelley | 12d71ed | 2012-08-30 15:16:41 +0100 | [diff] [blame] | 1439 | my_syslog(MS_DHCP | LOG_WARNING, |
| 1440 | _("not giving name %s to the DHCP lease of %s because " |
| 1441 | "the name exists in %s with address %s"), |
| 1442 | host_name, daemon->addrbuff, |
| 1443 | record_source(fail_crec->uid), daemon->namebuff); |
| 1444 | return; |
| 1445 | } |
| 1446 | |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1447 | if ((crec = cache_find_by_addr(NULL, (union all_addr *)host_address, 0, flags))) |
Simon Kelley | 12d71ed | 2012-08-30 15:16:41 +0100 | [diff] [blame] | 1448 | { |
| 1449 | if (crec->flags & F_NEG) |
| 1450 | { |
| 1451 | flags |= F_REVERSE; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1452 | cache_scan_free(NULL, (union all_addr *)host_address, C_IN, 0, flags, NULL, NULL); |
Simon Kelley | 12d71ed | 2012-08-30 15:16:41 +0100 | [diff] [blame] | 1453 | } |
| 1454 | } |
| 1455 | else |
| 1456 | flags |= F_REVERSE; |
| 1457 | |
| 1458 | if ((crec = dhcp_spare)) |
Simon Kelley | 6b01084 | 2007-02-12 20:32:07 +0000 | [diff] [blame] | 1459 | dhcp_spare = dhcp_spare->next; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1460 | else /* need new one */ |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1461 | crec = whine_malloc(SIZEOF_POINTER_CREC); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1462 | |
| 1463 | if (crec) /* malloc may fail */ |
| 1464 | { |
Simon Kelley | bce6e1b | 2014-01-23 22:02:19 +0000 | [diff] [blame] | 1465 | crec->flags = flags | F_NAMEP | F_DHCP | F_FORWARD; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1466 | if (ttd == 0) |
| 1467 | crec->flags |= F_IMMORTAL; |
| 1468 | else |
| 1469 | crec->ttd = ttd; |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1470 | crec->addr = *host_address; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1471 | crec->name.namep = host_name; |
Simon Kelley | 45d8a24 | 2018-07-17 21:01:14 +0100 | [diff] [blame] | 1472 | crec->uid = UID_NONE; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1473 | cache_hash(crec); |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1474 | make_non_terminals(crec); |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1475 | |
Simon Kelley | 611ebc5 | 2012-07-16 16:23:46 +0100 | [diff] [blame] | 1476 | add_dhcp_cname(crec, ttd); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1477 | } |
| 1478 | } |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1479 | #endif |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1480 | |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1481 | /* Called when we put a local or DHCP name into the cache. |
| 1482 | Creates empty cache entries for subnames (ie, |
| 1483 | for three.two.one, for two.one and one), without |
| 1484 | F_IPV4 or F_IPV6 or F_CNAME set. These convert |
| 1485 | NXDOMAIN answers to NoData ones. */ |
| 1486 | static void make_non_terminals(struct crec *source) |
| 1487 | { |
| 1488 | char *name = cache_get_name(source); |
Simon Kelley | ea6cc33 | 2018-09-18 23:21:17 +0100 | [diff] [blame] | 1489 | struct crec *crecp, *tmp, **up; |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1490 | int type = F_HOSTS | F_CONFIG; |
| 1491 | #ifdef HAVE_DHCP |
| 1492 | if (source->flags & F_DHCP) |
| 1493 | type = F_DHCP; |
| 1494 | #endif |
| 1495 | |
| 1496 | /* First delete any empty entries for our new real name. Note that |
| 1497 | we only delete empty entries deriving from DHCP for a new DHCP-derived |
| 1498 | entry and vice-versa for HOSTS and CONFIG. This ensures that |
| 1499 | non-terminals from DHCP go when we reload DHCP and |
| 1500 | for HOSTS/CONFIG when we re-read. */ |
| 1501 | for (up = hash_bucket(name), crecp = *up; crecp; crecp = tmp) |
| 1502 | { |
| 1503 | tmp = crecp->hash_next; |
| 1504 | |
| 1505 | if (!is_outdated_cname_pointer(crecp) && |
| 1506 | (crecp->flags & F_FORWARD) && |
| 1507 | (crecp->flags & type) && |
Simon Kelley | cbfbd17 | 2018-08-21 18:25:18 +0100 | [diff] [blame] | 1508 | !(crecp->flags & (F_IPV4 | F_IPV6 | F_CNAME | F_DNSKEY | F_DS)) && |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1509 | hostname_isequal(name, cache_get_name(crecp))) |
| 1510 | { |
| 1511 | *up = crecp->hash_next; |
| 1512 | #ifdef HAVE_DHCP |
| 1513 | if (type & F_DHCP) |
| 1514 | { |
| 1515 | crecp->next = dhcp_spare; |
| 1516 | dhcp_spare = crecp; |
| 1517 | } |
| 1518 | else |
| 1519 | #endif |
| 1520 | free(crecp); |
| 1521 | break; |
| 1522 | } |
| 1523 | else |
| 1524 | up = &crecp->hash_next; |
| 1525 | } |
| 1526 | |
| 1527 | while ((name = strchr(name, '.'))) |
| 1528 | { |
| 1529 | name++; |
| 1530 | |
| 1531 | /* Look for one existing, don't need another */ |
| 1532 | for (crecp = *hash_bucket(name); crecp; crecp = crecp->hash_next) |
| 1533 | if (!is_outdated_cname_pointer(crecp) && |
| 1534 | (crecp->flags & F_FORWARD) && |
| 1535 | (crecp->flags & type) && |
| 1536 | hostname_isequal(name, cache_get_name(crecp))) |
| 1537 | break; |
| 1538 | |
| 1539 | if (crecp) |
| 1540 | { |
| 1541 | /* If the new name expires later, transfer that time to |
| 1542 | empty non-terminal entry. */ |
| 1543 | if (!(crecp->flags & F_IMMORTAL)) |
| 1544 | { |
| 1545 | if (source->flags & F_IMMORTAL) |
| 1546 | crecp->flags |= F_IMMORTAL; |
| 1547 | else if (difftime(crecp->ttd, source->ttd) < 0) |
| 1548 | crecp->ttd = source->ttd; |
| 1549 | } |
| 1550 | continue; |
| 1551 | } |
| 1552 | |
| 1553 | #ifdef HAVE_DHCP |
| 1554 | if ((source->flags & F_DHCP) && dhcp_spare) |
| 1555 | { |
| 1556 | crecp = dhcp_spare; |
| 1557 | dhcp_spare = dhcp_spare->next; |
| 1558 | } |
| 1559 | else |
| 1560 | #endif |
Simon Kelley | 3a610a0 | 2018-09-26 16:50:35 +0100 | [diff] [blame] | 1561 | crecp = whine_malloc(SIZEOF_POINTER_CREC); |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1562 | |
Simon Kelley | ea6cc33 | 2018-09-18 23:21:17 +0100 | [diff] [blame] | 1563 | if (crecp) |
| 1564 | { |
Simon Kelley | 48b090c | 2018-09-26 12:53:59 +0100 | [diff] [blame] | 1565 | crecp->flags = (source->flags | F_NAMEP) & ~(F_IPV4 | F_IPV6 | F_CNAME | F_DNSKEY | F_DS | F_REVERSE); |
| 1566 | crecp->ttd = source->ttd; |
Simon Kelley | ea6cc33 | 2018-09-18 23:21:17 +0100 | [diff] [blame] | 1567 | crecp->name.namep = name; |
| 1568 | |
| 1569 | cache_hash(crecp); |
| 1570 | } |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1571 | } |
| 1572 | } |
| 1573 | |
Kevin Darbyshire-Bryant | 7ac9ae1 | 2016-09-09 20:52:08 +0100 | [diff] [blame] | 1574 | #ifndef NO_ID |
Simon Kelley | fec216d | 2014-03-27 20:54:34 +0000 | [diff] [blame] | 1575 | int cache_make_stat(struct txt_record *t) |
| 1576 | { |
| 1577 | static char *buff = NULL; |
| 1578 | static int bufflen = 60; |
| 1579 | int len; |
| 1580 | struct server *serv, *serv1; |
| 1581 | char *p; |
| 1582 | |
| 1583 | if (!buff && !(buff = whine_malloc(60))) |
| 1584 | return 0; |
| 1585 | |
| 1586 | p = buff; |
| 1587 | |
| 1588 | switch (t->stat) |
| 1589 | { |
| 1590 | case TXT_STAT_CACHESIZE: |
| 1591 | sprintf(buff+1, "%d", daemon->cachesize); |
| 1592 | break; |
| 1593 | |
| 1594 | case TXT_STAT_INSERTS: |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1595 | sprintf(buff+1, "%d", daemon->metrics[METRIC_DNS_CACHE_INSERTED]); |
Simon Kelley | fec216d | 2014-03-27 20:54:34 +0000 | [diff] [blame] | 1596 | break; |
| 1597 | |
| 1598 | case TXT_STAT_EVICTIONS: |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1599 | sprintf(buff+1, "%d", daemon->metrics[METRIC_DNS_CACHE_LIVE_FREED]); |
Simon Kelley | fec216d | 2014-03-27 20:54:34 +0000 | [diff] [blame] | 1600 | break; |
| 1601 | |
| 1602 | case TXT_STAT_MISSES: |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1603 | sprintf(buff+1, "%u", daemon->metrics[METRIC_DNS_QUERIES_FORWARDED]); |
Simon Kelley | fec216d | 2014-03-27 20:54:34 +0000 | [diff] [blame] | 1604 | break; |
| 1605 | |
| 1606 | case TXT_STAT_HITS: |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1607 | sprintf(buff+1, "%u", daemon->metrics[METRIC_DNS_LOCAL_ANSWERED]); |
Simon Kelley | fec216d | 2014-03-27 20:54:34 +0000 | [diff] [blame] | 1608 | break; |
| 1609 | |
| 1610 | #ifdef HAVE_AUTH |
| 1611 | case TXT_STAT_AUTH: |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1612 | sprintf(buff+1, "%u", daemon->metrics[METRIC_DNS_AUTH_ANSWERED]); |
Simon Kelley | fec216d | 2014-03-27 20:54:34 +0000 | [diff] [blame] | 1613 | break; |
| 1614 | #endif |
| 1615 | |
| 1616 | case TXT_STAT_SERVERS: |
| 1617 | /* sum counts from different records for same server */ |
| 1618 | for (serv = daemon->servers; serv; serv = serv->next) |
| 1619 | serv->flags &= ~SERV_COUNTED; |
| 1620 | |
| 1621 | for (serv = daemon->servers; serv; serv = serv->next) |
| 1622 | if (!(serv->flags & |
| 1623 | (SERV_NO_ADDR | SERV_LITERAL_ADDRESS | SERV_COUNTED | SERV_USE_RESOLV | SERV_NO_REBIND))) |
| 1624 | { |
| 1625 | char *new, *lenp; |
| 1626 | int port, newlen, bytes_avail, bytes_needed; |
| 1627 | unsigned int queries = 0, failed_queries = 0; |
| 1628 | for (serv1 = serv; serv1; serv1 = serv1->next) |
| 1629 | if (!(serv1->flags & |
| 1630 | (SERV_NO_ADDR | SERV_LITERAL_ADDRESS | SERV_COUNTED | SERV_USE_RESOLV | SERV_NO_REBIND)) && |
| 1631 | sockaddr_isequal(&serv->addr, &serv1->addr)) |
| 1632 | { |
| 1633 | serv1->flags |= SERV_COUNTED; |
| 1634 | queries += serv1->queries; |
| 1635 | failed_queries += serv1->failed_queries; |
| 1636 | } |
| 1637 | port = prettyprint_addr(&serv->addr, daemon->addrbuff); |
| 1638 | lenp = p++; /* length */ |
Simon Kelley | 04b0ac0 | 2015-04-06 17:19:13 +0100 | [diff] [blame] | 1639 | bytes_avail = bufflen - (p - buff ); |
Simon Kelley | fec216d | 2014-03-27 20:54:34 +0000 | [diff] [blame] | 1640 | bytes_needed = snprintf(p, bytes_avail, "%s#%d %u %u", daemon->addrbuff, port, queries, failed_queries); |
| 1641 | if (bytes_needed >= bytes_avail) |
| 1642 | { |
| 1643 | /* expand buffer if necessary */ |
| 1644 | newlen = bytes_needed + 1 + bufflen - bytes_avail; |
| 1645 | if (!(new = whine_malloc(newlen))) |
| 1646 | return 0; |
| 1647 | memcpy(new, buff, bufflen); |
| 1648 | free(buff); |
| 1649 | p = new + (p - buff); |
| 1650 | lenp = p - 1; |
| 1651 | buff = new; |
| 1652 | bufflen = newlen; |
Simon Kelley | 04b0ac0 | 2015-04-06 17:19:13 +0100 | [diff] [blame] | 1653 | bytes_avail = bufflen - (p - buff ); |
Simon Kelley | fec216d | 2014-03-27 20:54:34 +0000 | [diff] [blame] | 1654 | bytes_needed = snprintf(p, bytes_avail, "%s#%d %u %u", daemon->addrbuff, port, queries, failed_queries); |
| 1655 | } |
| 1656 | *lenp = bytes_needed; |
| 1657 | p += bytes_needed; |
| 1658 | } |
| 1659 | t->txt = (unsigned char *)buff; |
| 1660 | t->len = p - buff; |
| 1661 | return 1; |
| 1662 | } |
| 1663 | |
| 1664 | len = strlen(buff+1); |
| 1665 | t->txt = (unsigned char *)buff; |
| 1666 | t->len = len + 1; |
| 1667 | *buff = len; |
| 1668 | return 1; |
| 1669 | } |
Kevin Darbyshire-Bryant | 7ac9ae1 | 2016-09-09 20:52:08 +0100 | [diff] [blame] | 1670 | #endif |
Simon Kelley | 9009d74 | 2008-11-14 20:04:27 +0000 | [diff] [blame] | 1671 | |
Simon Kelley | 394ff49 | 2015-03-29 22:17:14 +0100 | [diff] [blame] | 1672 | /* There can be names in the cache containing control chars, don't |
| 1673 | mess up logging or open security holes. */ |
| 1674 | static char *sanitise(char *name) |
| 1675 | { |
| 1676 | unsigned char *r; |
Simon Kelley | 794fccc | 2015-03-29 22:35:44 +0100 | [diff] [blame] | 1677 | if (name) |
| 1678 | for (r = (unsigned char *)name; *r; r++) |
| 1679 | if (!isprint((int)*r)) |
| 1680 | return "<name unprintable>"; |
Simon Kelley | 394ff49 | 2015-03-29 22:17:14 +0100 | [diff] [blame] | 1681 | |
| 1682 | return name; |
| 1683 | } |
| 1684 | |
| 1685 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1686 | void dump_cache(time_t now) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1687 | { |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1688 | struct server *serv, *serv1; |
| 1689 | |
| 1690 | my_syslog(LOG_INFO, _("time %lu"), (unsigned long)now); |
| 1691 | my_syslog(LOG_INFO, _("cache size %d, %d/%d cache insertions re-used unexpired cache entries."), |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1692 | daemon->cachesize, daemon->metrics[METRIC_DNS_CACHE_LIVE_FREED], daemon->metrics[METRIC_DNS_CACHE_INSERTED]); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1693 | my_syslog(LOG_INFO, _("queries forwarded %u, queries answered locally %u"), |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1694 | daemon->metrics[METRIC_DNS_QUERIES_FORWARDED], daemon->metrics[METRIC_DNS_LOCAL_ANSWERED]); |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1695 | #ifdef HAVE_AUTH |
Julian Kornberger | aba8bbb | 2018-07-21 21:55:08 +0100 | [diff] [blame] | 1696 | my_syslog(LOG_INFO, _("queries for authoritative zones %u"), daemon->metrics[METRIC_DNS_AUTH_ANSWERED]); |
Simon Kelley | b485ed9 | 2013-10-18 22:00:39 +0100 | [diff] [blame] | 1697 | #endif |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 1698 | |
Simon Kelley | c220768 | 2014-01-08 18:04:20 +0000 | [diff] [blame] | 1699 | blockdata_report(); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1700 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1701 | /* sum counts from different records for same server */ |
| 1702 | for (serv = daemon->servers; serv; serv = serv->next) |
| 1703 | serv->flags &= ~SERV_COUNTED; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1704 | |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1705 | for (serv = daemon->servers; serv; serv = serv->next) |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1706 | if (!(serv->flags & |
| 1707 | (SERV_NO_ADDR | SERV_LITERAL_ADDRESS | SERV_COUNTED | SERV_USE_RESOLV | SERV_NO_REBIND))) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1708 | { |
| 1709 | int port; |
| 1710 | unsigned int queries = 0, failed_queries = 0; |
| 1711 | for (serv1 = serv; serv1; serv1 = serv1->next) |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1712 | if (!(serv1->flags & |
| 1713 | (SERV_NO_ADDR | SERV_LITERAL_ADDRESS | SERV_COUNTED | SERV_USE_RESOLV | SERV_NO_REBIND)) && |
| 1714 | sockaddr_isequal(&serv->addr, &serv1->addr)) |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1715 | { |
| 1716 | serv1->flags |= SERV_COUNTED; |
| 1717 | queries += serv1->queries; |
| 1718 | failed_queries += serv1->failed_queries; |
| 1719 | } |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1720 | port = prettyprint_addr(&serv->addr, daemon->addrbuff); |
| 1721 | my_syslog(LOG_INFO, _("server %s#%d: queries sent %u, retried or failed %u"), daemon->addrbuff, port, queries, failed_queries); |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1722 | } |
| 1723 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1724 | if (option_bool(OPT_DEBUG) || option_bool(OPT_LOG)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1725 | { |
| 1726 | struct crec *cache ; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1727 | int i; |
Simon Kelley | e7829ae | 2014-01-22 22:21:51 +0000 | [diff] [blame] | 1728 | my_syslog(LOG_INFO, "Host Address Flags Expires"); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1729 | |
| 1730 | for (i=0; i<hash_size; i++) |
| 1731 | for (cache = hash_table[i]; cache; cache = cache->hash_next) |
| 1732 | { |
Simon Kelley | b6f926f | 2018-08-21 17:46:52 +0100 | [diff] [blame] | 1733 | char *t = " "; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1734 | char *a = daemon->addrbuff, *p = daemon->namebuff, *n = cache_get_name(cache); |
| 1735 | *a = 0; |
Simon Kelley | 2d33bda | 2014-01-24 22:37:25 +0000 | [diff] [blame] | 1736 | if (strlen(n) == 0 && !(cache->flags & F_REVERSE)) |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1737 | n = "<Root>"; |
Simon Kelley | 394ff49 | 2015-03-29 22:17:14 +0100 | [diff] [blame] | 1738 | p += sprintf(p, "%-30.30s ", sanitise(n)); |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1739 | if ((cache->flags & F_CNAME) && !is_outdated_cname_pointer(cache)) |
Simon Kelley | 394ff49 | 2015-03-29 22:17:14 +0100 | [diff] [blame] | 1740 | a = sanitise(cache_get_cname_target(cache)); |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 1741 | else if ((cache->flags & F_SRV) && !(cache->flags & F_NEG)) |
| 1742 | { |
| 1743 | int targetlen = cache->addr.srv.targetlen; |
| 1744 | ssize_t len = sprintf(a, "%u %u %u ", cache->addr.srv.priority, |
| 1745 | cache->addr.srv.weight, cache->addr.srv.srvport); |
| 1746 | |
| 1747 | if (targetlen > (40 - len)) |
| 1748 | targetlen = 40 - len; |
| 1749 | blockdata_retrieve(cache->addr.srv.target, targetlen, a + len); |
| 1750 | a[len + targetlen] = 0; |
| 1751 | } |
Simon Kelley | 7b4ad2e | 2012-04-04 14:05:35 +0100 | [diff] [blame] | 1752 | #ifdef HAVE_DNSSEC |
Simon Kelley | cdbee9a | 2012-04-04 21:55:59 +0100 | [diff] [blame] | 1753 | else if (cache->flags & F_DS) |
| 1754 | { |
Simon Kelley | 93be5b1 | 2015-12-15 12:04:40 +0000 | [diff] [blame] | 1755 | if (!(cache->flags & F_NEG)) |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1756 | sprintf(a, "%5u %3u %3u", cache->addr.ds.keytag, |
| 1757 | cache->addr.ds.algo, cache->addr.ds.digest); |
Simon Kelley | 51ea3ca | 2014-01-22 19:31:38 +0000 | [diff] [blame] | 1758 | } |
| 1759 | else if (cache->flags & F_DNSKEY) |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1760 | sprintf(a, "%5u %3u %3u", cache->addr.key.keytag, |
| 1761 | cache->addr.key.algo, cache->addr.key.flags); |
Simon Kelley | 7b4ad2e | 2012-04-04 14:05:35 +0100 | [diff] [blame] | 1762 | #endif |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1763 | else if (!(cache->flags & F_NEG) || !(cache->flags & F_FORWARD)) |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1764 | { |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1765 | a = daemon->addrbuff; |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1766 | if (cache->flags & F_IPV4) |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1767 | inet_ntop(AF_INET, &cache->addr, a, ADDRSTRLEN); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1768 | else if (cache->flags & F_IPV6) |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1769 | inet_ntop(AF_INET6, &cache->addr, a, ADDRSTRLEN); |
Simon Kelley | 7b4ad2e | 2012-04-04 14:05:35 +0100 | [diff] [blame] | 1770 | } |
| 1771 | |
Simon Kelley | e7829ae | 2014-01-22 22:21:51 +0000 | [diff] [blame] | 1772 | if (cache->flags & F_IPV4) |
| 1773 | t = "4"; |
| 1774 | else if (cache->flags & F_IPV6) |
| 1775 | t = "6"; |
| 1776 | else if (cache->flags & F_CNAME) |
| 1777 | t = "C"; |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 1778 | else if (cache->flags & F_SRV) |
| 1779 | t = "V"; |
Simon Kelley | e7829ae | 2014-01-22 22:21:51 +0000 | [diff] [blame] | 1780 | #ifdef HAVE_DNSSEC |
Simon Kelley | e7829ae | 2014-01-22 22:21:51 +0000 | [diff] [blame] | 1781 | else if (cache->flags & F_DS) |
| 1782 | t = "S"; |
| 1783 | else if (cache->flags & F_DNSKEY) |
| 1784 | t = "K"; |
| 1785 | #endif |
Simon Kelley | 3267804 | 2014-12-17 20:38:20 +0000 | [diff] [blame] | 1786 | p += sprintf(p, "%-40.40s %s%s%s%s%s%s%s%s%s ", a, t, |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1787 | cache->flags & F_FORWARD ? "F" : " ", |
| 1788 | cache->flags & F_REVERSE ? "R" : " ", |
| 1789 | cache->flags & F_IMMORTAL ? "I" : " ", |
| 1790 | cache->flags & F_DHCP ? "D" : " ", |
| 1791 | cache->flags & F_NEG ? "N" : " ", |
| 1792 | cache->flags & F_NXDOMAIN ? "X" : " ", |
Simon Kelley | 7b4ad2e | 2012-04-04 14:05:35 +0100 | [diff] [blame] | 1793 | cache->flags & F_HOSTS ? "H" : " ", |
| 1794 | cache->flags & F_DNSSECOK ? "V" : " "); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1795 | #ifdef HAVE_BROKEN_RTC |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1796 | p += sprintf(p, "%lu", cache->flags & F_IMMORTAL ? 0: (unsigned long)(cache->ttd - now)); |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1797 | #else |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1798 | p += sprintf(p, "%s", cache->flags & F_IMMORTAL ? "\n" : ctime(&(cache->ttd))); |
| 1799 | /* ctime includes trailing \n - eat it */ |
| 1800 | *(p-1) = 0; |
Simon Kelley | 44a2a31 | 2004-03-10 20:04:35 +0000 | [diff] [blame] | 1801 | #endif |
Rosen Penev | cbd29e5 | 2017-06-27 22:29:51 +0100 | [diff] [blame] | 1802 | my_syslog(LOG_INFO, "%s", daemon->namebuff); |
Simon Kelley | f2621c7 | 2007-04-29 19:47:21 +0100 | [diff] [blame] | 1803 | } |
| 1804 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1805 | } |
| 1806 | |
Simon Kelley | 19c51cf | 2014-03-18 22:38:30 +0000 | [diff] [blame] | 1807 | char *record_source(unsigned int index) |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1808 | { |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1809 | struct hostsfile *ah; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1810 | |
Simon Kelley | 19c51cf | 2014-03-18 22:38:30 +0000 | [diff] [blame] | 1811 | if (index == SRC_CONFIG) |
| 1812 | return "config"; |
| 1813 | else if (index == SRC_HOSTS) |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1814 | return HOSTSFILE; |
| 1815 | |
| 1816 | for (ah = daemon->addn_hosts; ah; ah = ah->next) |
| 1817 | if (ah->index == index) |
| 1818 | return ah->fname; |
Simon Kelley | 70d1873 | 2015-01-31 19:59:29 +0000 | [diff] [blame] | 1819 | |
| 1820 | #ifdef HAVE_INOTIFY |
| 1821 | for (ah = daemon->dynamic_dirs; ah; ah = ah->next) |
| 1822 | if (ah->index == index) |
| 1823 | return ah->fname; |
| 1824 | #endif |
| 1825 | |
Simon Kelley | 7622fc0 | 2009-06-04 20:32:05 +0100 | [diff] [blame] | 1826 | return "<unknown>"; |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1827 | } |
Simon Kelley | c1bb850 | 2004-08-11 18:40:17 +0100 | [diff] [blame] | 1828 | |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1829 | char *querystr(char *desc, unsigned short type) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1830 | { |
| 1831 | unsigned int i; |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1832 | int len = 10; /* strlen("type=xxxxx") */ |
| 1833 | const char *types = NULL; |
| 1834 | static char *buff = NULL; |
| 1835 | static int bufflen = 0; |
| 1836 | |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1837 | for (i = 0; i < (sizeof(typestr)/sizeof(typestr[0])); i++) |
| 1838 | if (typestr[i].type == type) |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1839 | { |
| 1840 | types = typestr[i].name; |
| 1841 | len = strlen(types); |
| 1842 | break; |
| 1843 | } |
| 1844 | |
Simon Kelley | b758b67 | 2018-08-23 21:41:23 +0100 | [diff] [blame] | 1845 | if (desc) |
| 1846 | { |
| 1847 | len += 2; /* braces */ |
| 1848 | len += strlen(desc); |
| 1849 | } |
| 1850 | len++; /* terminator */ |
| 1851 | |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1852 | if (!buff || bufflen < len) |
| 1853 | { |
| 1854 | if (buff) |
| 1855 | free(buff); |
| 1856 | else if (len < 20) |
| 1857 | len = 20; |
| 1858 | |
| 1859 | buff = whine_malloc(len); |
| 1860 | bufflen = len; |
| 1861 | } |
| 1862 | |
| 1863 | if (buff) |
| 1864 | { |
Simon Kelley | b758b67 | 2018-08-23 21:41:23 +0100 | [diff] [blame] | 1865 | if (desc) |
| 1866 | { |
| 1867 | if (types) |
| 1868 | sprintf(buff, "%s[%s]", desc, types); |
| 1869 | else |
| 1870 | sprintf(buff, "%s[type=%d]", desc, type); |
| 1871 | } |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1872 | else |
Simon Kelley | b758b67 | 2018-08-23 21:41:23 +0100 | [diff] [blame] | 1873 | { |
| 1874 | if (types) |
| 1875 | sprintf(buff, "<%s>", types); |
| 1876 | else |
| 1877 | sprintf(buff, "type=%d", type); |
| 1878 | } |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1879 | } |
Simon Kelley | b758b67 | 2018-08-23 21:41:23 +0100 | [diff] [blame] | 1880 | |
Simon Kelley | 610e782 | 2014-02-06 14:45:17 +0000 | [diff] [blame] | 1881 | return buff ? buff : ""; |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1882 | } |
| 1883 | |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1884 | void log_query(unsigned int flags, char *name, union all_addr *addr, char *arg) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1885 | { |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1886 | char *source, *dest = daemon->addrbuff; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1887 | char *verb = "is"; |
Simon Kelley | 5e9e0ef | 2006-04-17 14:24:29 +0100 | [diff] [blame] | 1888 | |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1889 | if (!option_bool(OPT_LOG)) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1890 | return; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1891 | |
Simon Kelley | 394ff49 | 2015-03-29 22:17:14 +0100 | [diff] [blame] | 1892 | name = sanitise(name); |
| 1893 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1894 | if (addr) |
| 1895 | { |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1896 | if (flags & F_KEYTAG) |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1897 | sprintf(daemon->addrbuff, arg, addr->log.keytag, addr->log.algo, addr->log.digest); |
Simon Kelley | 07ed585 | 2018-05-04 21:52:22 +0100 | [diff] [blame] | 1898 | else if (flags & F_RCODE) |
| 1899 | { |
Simon Kelley | cc921df | 2019-01-02 22:48:59 +0000 | [diff] [blame] | 1900 | unsigned int rcode = addr->log.rcode; |
Simon Kelley | 07ed585 | 2018-05-04 21:52:22 +0100 | [diff] [blame] | 1901 | |
| 1902 | if (rcode == SERVFAIL) |
| 1903 | dest = "SERVFAIL"; |
| 1904 | else if (rcode == REFUSED) |
| 1905 | dest = "REFUSED"; |
| 1906 | else if (rcode == NOTIMP) |
| 1907 | dest = "not implemented"; |
| 1908 | else |
| 1909 | sprintf(daemon->addrbuff, "%u", rcode); |
| 1910 | } |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1911 | else |
Simon Kelley | ee87504 | 2018-10-23 22:10:17 +0100 | [diff] [blame] | 1912 | inet_ntop(flags & F_IPV4 ? AF_INET : AF_INET6, |
| 1913 | addr, daemon->addrbuff, ADDRSTRLEN); |
| 1914 | |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1915 | } |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1916 | else |
| 1917 | dest = arg; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1918 | |
| 1919 | if (flags & F_REVERSE) |
| 1920 | { |
| 1921 | dest = name; |
Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1922 | name = daemon->addrbuff; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1923 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1924 | |
| 1925 | if (flags & F_NEG) |
| 1926 | { |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1927 | if (flags & F_NXDOMAIN) |
Simon Kelley | 40b695c | 2014-02-03 17:07:51 +0000 | [diff] [blame] | 1928 | dest = "NXDOMAIN"; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1929 | else |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1930 | { |
| 1931 | if (flags & F_IPV4) |
| 1932 | dest = "NODATA-IPv4"; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1933 | else if (flags & F_IPV6) |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1934 | dest = "NODATA-IPv6"; |
Simon Kelley | 824af85 | 2008-02-12 20:43:05 +0000 | [diff] [blame] | 1935 | else |
| 1936 | dest = "NODATA"; |
Simon Kelley | 5aabfc7 | 2007-08-29 11:24:47 +0100 | [diff] [blame] | 1937 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1938 | } |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1939 | else if (flags & F_CNAME) |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1940 | dest = "<CNAME>"; |
Simon Kelley | 5b99eae | 2019-01-06 23:09:50 +0000 | [diff] [blame] | 1941 | else if (flags & F_SRV) |
| 1942 | dest = "<SRV>"; |
Simon Kelley | 28866e9 | 2011-02-14 20:19:14 +0000 | [diff] [blame] | 1943 | else if (flags & F_RRNAME) |
| 1944 | dest = arg; |
Simon Kelley | fd9fa48 | 2004-10-21 20:24:00 +0100 | [diff] [blame] | 1945 | |
Simon Kelley | 1f15b81 | 2009-10-13 17:49:32 +0100 | [diff] [blame] | 1946 | if (flags & F_CONFIG) |
| 1947 | source = "config"; |
| 1948 | else if (flags & F_DHCP) |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1949 | source = "DHCP"; |
| 1950 | else if (flags & F_HOSTS) |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1951 | source = arg; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1952 | else if (flags & F_UPSTREAM) |
| 1953 | source = "reply"; |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1954 | else if (flags & F_SECSTAT) |
| 1955 | source = "validation"; |
Simon Kelley | 4f7b304 | 2012-11-28 21:27:02 +0000 | [diff] [blame] | 1956 | else if (flags & F_AUTH) |
| 1957 | source = "auth"; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1958 | else if (flags & F_SERVER) |
| 1959 | { |
| 1960 | source = "forwarded"; |
| 1961 | verb = "to"; |
| 1962 | } |
| 1963 | else if (flags & F_QUERY) |
| 1964 | { |
Simon Kelley | 1a6bca8 | 2008-07-11 11:11:42 +0100 | [diff] [blame] | 1965 | source = arg; |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1966 | verb = "from"; |
| 1967 | } |
Simon Kelley | 0fc2f31 | 2014-01-08 10:26:58 +0000 | [diff] [blame] | 1968 | else if (flags & F_DNSSEC) |
| 1969 | { |
| 1970 | source = arg; |
| 1971 | verb = "to"; |
| 1972 | } |
Wang Jian | 49752b9 | 2014-03-28 20:52:47 +0000 | [diff] [blame] | 1973 | else if (flags & F_IPSET) |
| 1974 | { |
| 1975 | source = "ipset add"; |
| 1976 | dest = name; |
| 1977 | name = arg; |
| 1978 | verb = daemon->addrbuff; |
| 1979 | } |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1980 | else |
| 1981 | source = "cached"; |
| 1982 | |
Simon Kelley | 3d8df26 | 2005-08-29 12:19:27 +0100 | [diff] [blame] | 1983 | if (strlen(name) == 0) |
| 1984 | name = "."; |
| 1985 | |
Simon Kelley | 25cf5e3 | 2015-01-09 15:53:03 +0000 | [diff] [blame] | 1986 | if (option_bool(OPT_EXTRALOG)) |
| 1987 | { |
Simon Kelley | 9f79ee4 | 2015-01-12 20:18:18 +0000 | [diff] [blame] | 1988 | int port = prettyprint_addr(daemon->log_source_addr, daemon->addrbuff2); |
Simon Kelley | 25cf5e3 | 2015-01-09 15:53:03 +0000 | [diff] [blame] | 1989 | if (flags & F_NOEXTRA) |
Simon Kelley | 9f79ee4 | 2015-01-12 20:18:18 +0000 | [diff] [blame] | 1990 | my_syslog(LOG_INFO, "* %s/%u %s %s %s %s", daemon->addrbuff2, port, source, name, verb, dest); |
Simon Kelley | 25cf5e3 | 2015-01-09 15:53:03 +0000 | [diff] [blame] | 1991 | else |
Simon Kelley | 9f79ee4 | 2015-01-12 20:18:18 +0000 | [diff] [blame] | 1992 | my_syslog(LOG_INFO, "%u %s/%u %s %s %s %s", daemon->log_display_id, daemon->addrbuff2, port, source, name, verb, dest); |
Simon Kelley | 25cf5e3 | 2015-01-09 15:53:03 +0000 | [diff] [blame] | 1993 | } |
| 1994 | else |
| 1995 | my_syslog(LOG_INFO, "%s %s %s %s", source, name, verb, dest); |
Simon Kelley | 9e4abcb | 2004-01-22 19:47:41 +0000 | [diff] [blame] | 1996 | } |
| 1997 | |
Simon Kelley | 98c098b | 2014-01-08 17:31:16 +0000 | [diff] [blame] | 1998 | |