1 /*
2  * iterator/iter_hints.c - iterative resolver module stub and root hints.
3  *
4  * Copyright (c) 2007, NLnet Labs. All rights reserved.
5  *
6  * This software is open source.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * Redistributions of source code must retain the above copyright notice,
13  * this list of conditions and the following disclaimer.
14  *
15  * Redistributions in binary form must reproduce the above copyright notice,
16  * this list of conditions and the following disclaimer in the documentation
17  * and/or other materials provided with the distribution.
18  *
19  * Neither the name of the NLNET LABS nor the names of its contributors may
20  * be used to endorse or promote products derived from this software without
21  * specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
29  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35 
36 /**
37  * \file
38  *
39  * This file contains functions to assist the iterator module.
40  * Keep track of stub and root hints, and read those from config.
41  */
42 #include "config.h"
43 #include "iterator/iter_hints.h"
44 #include "iterator/iter_delegpt.h"
45 #include "util/log.h"
46 #include "util/config_file.h"
47 #include "util/net_help.h"
48 #include "util/data/dname.h"
49 #include "sldns/rrdef.h"
50 #include "sldns/str2wire.h"
51 #include "sldns/wire2str.h"
52 
53 struct iter_hints*
hints_create(void)54 hints_create(void)
55 {
56 	struct iter_hints* hints = (struct iter_hints*)calloc(1,
57 		sizeof(struct iter_hints));
58 	if(!hints)
59 		return NULL;
60 	return hints;
61 }
62 
hints_stub_free(struct iter_hints_stub * s)63 static void hints_stub_free(struct iter_hints_stub* s)
64 {
65 	if(!s) return;
66 	delegpt_free_mlc(s->dp);
67 	free(s);
68 }
69 
delhintnode(rbnode_type * n,void * ATTR_UNUSED (arg))70 static void delhintnode(rbnode_type* n, void* ATTR_UNUSED(arg))
71 {
72 	struct iter_hints_stub* node = (struct iter_hints_stub*)n;
73 	hints_stub_free(node);
74 }
75 
hints_del_tree(struct iter_hints * hints)76 static void hints_del_tree(struct iter_hints* hints)
77 {
78 	traverse_postorder(&hints->tree, &delhintnode, NULL);
79 }
80 
81 void
hints_delete(struct iter_hints * hints)82 hints_delete(struct iter_hints* hints)
83 {
84 	if(!hints)
85 		return;
86 	hints_del_tree(hints);
87 	free(hints);
88 }
89 
90 /** add hint to delegation hints */
91 static int
ah(struct delegpt * dp,const char * sv,const char * ip)92 ah(struct delegpt* dp, const char* sv, const char* ip)
93 {
94 	struct sockaddr_storage addr;
95 	socklen_t addrlen;
96 	size_t dname_len;
97 	uint8_t* dname = sldns_str2wire_dname(sv, &dname_len);
98 	if(!dname) {
99 		log_err("could not parse %s", sv);
100 		return 0;
101 	}
102 	if(!delegpt_add_ns_mlc(dp, dname, 0) ||
103 	   !extstrtoaddr(ip, &addr, &addrlen) ||
104 	   !delegpt_add_target_mlc(dp, dname, dname_len,
105 		&addr, addrlen, 0, 0)) {
106 		free(dname);
107 		return 0;
108 	}
109 	free(dname);
110 	return 1;
111 }
112 
113 /** obtain compiletime provided root hints */
114 static struct delegpt*
compile_time_root_prime(int do_ip4,int do_ip6)115 compile_time_root_prime(int do_ip4, int do_ip6)
116 {
117 	/* from:
118 	 ;       This file is made available by InterNIC
119 	 ;       under anonymous FTP as
120 	 ;           file                /domain/named.cache
121 	 ;           on server           FTP.INTERNIC.NET
122 	 ;       -OR-                    RS.INTERNIC.NET
123 	 ;
124 	 ;       related version of root zone:   changes-on-20120103
125 	 */
126 	struct delegpt* dp = delegpt_create_mlc((uint8_t*)"\000");
127 	if(!dp)
128 		return NULL;
129 	dp->has_parent_side_NS = 1;
130       if(do_ip4) {
131 	if(!ah(dp, "A.ROOT-SERVERS.NET.", "198.41.0.4"))	goto failed;
132 	if(!ah(dp, "B.ROOT-SERVERS.NET.", "199.9.14.201")) goto failed;
133 	if(!ah(dp, "C.ROOT-SERVERS.NET.", "192.33.4.12"))	goto failed;
134 	if(!ah(dp, "D.ROOT-SERVERS.NET.", "199.7.91.13"))	goto failed;
135 	if(!ah(dp, "E.ROOT-SERVERS.NET.", "192.203.230.10")) goto failed;
136 	if(!ah(dp, "F.ROOT-SERVERS.NET.", "192.5.5.241"))	goto failed;
137 	if(!ah(dp, "G.ROOT-SERVERS.NET.", "192.112.36.4"))	goto failed;
138 	if(!ah(dp, "H.ROOT-SERVERS.NET.", "198.97.190.53"))	goto failed;
139 	if(!ah(dp, "I.ROOT-SERVERS.NET.", "192.36.148.17"))	goto failed;
140 	if(!ah(dp, "J.ROOT-SERVERS.NET.", "192.58.128.30"))	goto failed;
141 	if(!ah(dp, "K.ROOT-SERVERS.NET.", "193.0.14.129"))	goto failed;
142 	if(!ah(dp, "L.ROOT-SERVERS.NET.", "199.7.83.42"))	goto failed;
143 	if(!ah(dp, "M.ROOT-SERVERS.NET.", "202.12.27.33"))	goto failed;
144       }
145       if(do_ip6) {
146 	if(!ah(dp, "A.ROOT-SERVERS.NET.", "2001:503:ba3e::2:30")) goto failed;
147 	if(!ah(dp, "B.ROOT-SERVERS.NET.", "2001:500:200::b")) goto failed;
148 	if(!ah(dp, "C.ROOT-SERVERS.NET.", "2001:500:2::c")) goto failed;
149 	if(!ah(dp, "D.ROOT-SERVERS.NET.", "2001:500:2d::d")) goto failed;
150 	if(!ah(dp, "E.ROOT-SERVERS.NET.", "2001:500:a8::e")) goto failed;
151 	if(!ah(dp, "F.ROOT-SERVERS.NET.", "2001:500:2f::f")) goto failed;
152 	if(!ah(dp, "G.ROOT-SERVERS.NET.", "2001:500:12::d0d")) goto failed;
153 	if(!ah(dp, "H.ROOT-SERVERS.NET.", "2001:500:1::53")) goto failed;
154 	if(!ah(dp, "I.ROOT-SERVERS.NET.", "2001:7fe::53")) goto failed;
155 	if(!ah(dp, "J.ROOT-SERVERS.NET.", "2001:503:c27::2:30")) goto failed;
156 	if(!ah(dp, "K.ROOT-SERVERS.NET.", "2001:7fd::1")) goto failed;
157 	if(!ah(dp, "L.ROOT-SERVERS.NET.", "2001:500:9f::42")) goto failed;
158 	if(!ah(dp, "M.ROOT-SERVERS.NET.", "2001:dc3::35")) goto failed;
159       }
160 	return dp;
161 failed:
162 	delegpt_free_mlc(dp);
163 	return 0;
164 }
165 
166 /** insert new hint info into hint structure */
167 static int
hints_insert(struct iter_hints * hints,uint16_t c,struct delegpt * dp,int noprime)168 hints_insert(struct iter_hints* hints, uint16_t c, struct delegpt* dp,
169 	int noprime)
170 {
171 	struct iter_hints_stub* node = (struct iter_hints_stub*)malloc(
172 		sizeof(struct iter_hints_stub));
173 	if(!node) {
174 		delegpt_free_mlc(dp);
175 		return 0;
176 	}
177 	node->dp = dp;
178 	node->noprime = (uint8_t)noprime;
179 	if(!name_tree_insert(&hints->tree, &node->node, dp->name, dp->namelen,
180 		dp->namelabs, c)) {
181 		char buf[257];
182 		dname_str(dp->name, buf);
183 		log_err("second hints for zone %s ignored.", buf);
184 		delegpt_free_mlc(dp);
185 		free(node);
186 	}
187 	return 1;
188 }
189 
190 /** set stub name */
191 static struct delegpt*
read_stubs_name(struct config_stub * s)192 read_stubs_name(struct config_stub* s)
193 {
194 	struct delegpt* dp;
195 	size_t dname_len;
196 	uint8_t* dname;
197 	if(!s->name) {
198 		log_err("stub zone without a name");
199 		return NULL;
200 	}
201 	dname = sldns_str2wire_dname(s->name, &dname_len);
202 	if(!dname) {
203 		log_err("cannot parse stub zone name %s", s->name);
204 		return NULL;
205 	}
206 	if(!(dp=delegpt_create_mlc(dname))) {
207 		free(dname);
208 		log_err("out of memory");
209 		return NULL;
210 	}
211 	free(dname);
212 	return dp;
213 }
214 
215 /** set stub host names */
216 static int
read_stubs_host(struct config_stub * s,struct delegpt * dp)217 read_stubs_host(struct config_stub* s, struct delegpt* dp)
218 {
219 	struct config_strlist* p;
220 	size_t dname_len;
221 	uint8_t* dname;
222 	for(p = s->hosts; p; p = p->next) {
223 		log_assert(p->str);
224 		dname = sldns_str2wire_dname(p->str, &dname_len);
225 		if(!dname) {
226 			log_err("cannot parse stub %s nameserver name: '%s'",
227 				s->name, p->str);
228 			return 0;
229 		}
230 		if(!delegpt_add_ns_mlc(dp, dname, 0)) {
231 			free(dname);
232 			log_err("out of memory");
233 			return 0;
234 		}
235 		free(dname);
236 	}
237 	return 1;
238 }
239 
240 /** set stub server addresses */
241 static int
read_stubs_addr(struct config_stub * s,struct delegpt * dp)242 read_stubs_addr(struct config_stub* s, struct delegpt* dp)
243 {
244 	struct config_strlist* p;
245 	struct sockaddr_storage addr;
246 	socklen_t addrlen;
247 	char* auth_name;
248 	for(p = s->addrs; p; p = p->next) {
249 		log_assert(p->str);
250 		if(!authextstrtoaddr(p->str, &addr, &addrlen, &auth_name)) {
251 			log_err("cannot parse stub %s ip address: '%s'",
252 				s->name, p->str);
253 			return 0;
254 		}
255 #if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST)
256 		if(auth_name)
257 			log_err("no name verification functionality in "
258 				"ssl library, ignored name for %s", p->str);
259 #endif
260 		if(!delegpt_add_addr_mlc(dp, &addr, addrlen, 0, 0,
261 			auth_name)) {
262 			log_err("out of memory");
263 			return 0;
264 		}
265 	}
266 	return 1;
267 }
268 
269 /** read stubs config */
270 static int
read_stubs(struct iter_hints * hints,struct config_file * cfg)271 read_stubs(struct iter_hints* hints, struct config_file* cfg)
272 {
273 	struct config_stub* s;
274 	struct delegpt* dp;
275 	for(s = cfg->stubs; s; s = s->next) {
276 		if(!(dp=read_stubs_name(s)))
277 			return 0;
278 		if(!read_stubs_host(s, dp) || !read_stubs_addr(s, dp)) {
279 			delegpt_free_mlc(dp);
280 			return 0;
281 		}
282 		/* the flag is turned off for 'stub-first' so that the
283 		 * last resort will ask for parent-side NS record and thus
284 		 * fallback to the internet name servers on a failure */
285 		dp->has_parent_side_NS = (uint8_t)!s->isfirst;
286 		/* Do not cache if set. */
287 		dp->no_cache = s->no_cache;
288 		/* ssl_upstream */
289 		dp->ssl_upstream = (uint8_t)s->ssl_upstream;
290 		/* tcp_upstream */
291 		dp->tcp_upstream = (uint8_t)s->tcp_upstream;
292 		delegpt_log(VERB_QUERY, dp);
293 		if(!hints_insert(hints, LDNS_RR_CLASS_IN, dp, !s->isprime))
294 			return 0;
295 	}
296 	return 1;
297 }
298 
299 /** read root hints from file */
300 static int
read_root_hints(struct iter_hints * hints,char * fname)301 read_root_hints(struct iter_hints* hints, char* fname)
302 {
303 	struct sldns_file_parse_state pstate;
304 	struct delegpt* dp;
305 	uint8_t rr[LDNS_RR_BUF_SIZE];
306 	size_t rr_len, dname_len;
307 	int status;
308 	uint16_t c = LDNS_RR_CLASS_IN;
309 	FILE* f = fopen(fname, "r");
310 	if(!f) {
311 		log_err("could not read root hints %s: %s",
312 			fname, strerror(errno));
313 		return 0;
314 	}
315 	dp = delegpt_create_mlc(NULL);
316 	if(!dp) {
317 		log_err("out of memory reading root hints");
318 		fclose(f);
319 		return 0;
320 	}
321 	verbose(VERB_QUERY, "Reading root hints from %s", fname);
322 	memset(&pstate, 0, sizeof(pstate));
323 	pstate.lineno = 1;
324 	dp->has_parent_side_NS = 1;
325 	while(!feof(f)) {
326 		rr_len = sizeof(rr);
327 		dname_len = 0;
328 		status = sldns_fp2wire_rr_buf(f, rr, &rr_len, &dname_len,
329 			&pstate);
330 		if(status != 0) {
331 			log_err("reading root hints %s %d:%d: %s", fname,
332 				pstate.lineno, LDNS_WIREPARSE_OFFSET(status),
333 				sldns_get_errorstr_parse(status));
334 			goto stop_read;
335 		}
336 		if(rr_len == 0)
337 			continue; /* EMPTY line, TTL or ORIGIN */
338 		if(sldns_wirerr_get_type(rr, rr_len, dname_len)
339 			== LDNS_RR_TYPE_NS) {
340 			if(!delegpt_add_ns_mlc(dp, sldns_wirerr_get_rdata(rr,
341 				rr_len, dname_len), 0)) {
342 				log_err("out of memory reading root hints");
343 				goto stop_read;
344 			}
345 			c = sldns_wirerr_get_class(rr, rr_len, dname_len);
346 			if(!dp->name) {
347 				if(!delegpt_set_name_mlc(dp, rr)) {
348 					log_err("out of memory.");
349 					goto stop_read;
350 				}
351 			}
352 		} else if(sldns_wirerr_get_type(rr, rr_len, dname_len)
353 			== LDNS_RR_TYPE_A && sldns_wirerr_get_rdatalen(rr,
354 			rr_len, dname_len) == INET_SIZE) {
355 			struct sockaddr_in sa;
356 			socklen_t len = (socklen_t)sizeof(sa);
357 			memset(&sa, 0, len);
358 			sa.sin_family = AF_INET;
359 			sa.sin_port = (in_port_t)htons(UNBOUND_DNS_PORT);
360 			memmove(&sa.sin_addr,
361 				sldns_wirerr_get_rdata(rr, rr_len, dname_len),
362 				INET_SIZE);
363 			if(!delegpt_add_target_mlc(dp, rr, dname_len,
364 					(struct sockaddr_storage*)&sa, len,
365 					0, 0)) {
366 				log_err("out of memory reading root hints");
367 				goto stop_read;
368 			}
369 		} else if(sldns_wirerr_get_type(rr, rr_len, dname_len)
370 			== LDNS_RR_TYPE_AAAA && sldns_wirerr_get_rdatalen(rr,
371 			rr_len, dname_len) == INET6_SIZE) {
372 			struct sockaddr_in6 sa;
373 			socklen_t len = (socklen_t)sizeof(sa);
374 			memset(&sa, 0, len);
375 			sa.sin6_family = AF_INET6;
376 			sa.sin6_port = (in_port_t)htons(UNBOUND_DNS_PORT);
377 			memmove(&sa.sin6_addr,
378 				sldns_wirerr_get_rdata(rr, rr_len, dname_len),
379 				INET6_SIZE);
380 			if(!delegpt_add_target_mlc(dp, rr, dname_len,
381 					(struct sockaddr_storage*)&sa, len,
382 					0, 0)) {
383 				log_err("out of memory reading root hints");
384 				goto stop_read;
385 			}
386 		} else {
387 			char buf[17];
388 			sldns_wire2str_type_buf(sldns_wirerr_get_type(rr,
389 				rr_len, dname_len), buf, sizeof(buf));
390 			log_warn("root hints %s:%d skipping type %s",
391 				fname, pstate.lineno, buf);
392 		}
393 	}
394 	fclose(f);
395 	if(!dp->name) {
396 		log_warn("root hints %s: no NS content", fname);
397 		delegpt_free_mlc(dp);
398 		return 1;
399 	}
400 	delegpt_log(VERB_QUERY, dp);
401 	if(!hints_insert(hints, c, dp, 0)) {
402 		return 0;
403 	}
404 	return 1;
405 
406 stop_read:
407 	delegpt_free_mlc(dp);
408 	fclose(f);
409 	return 0;
410 }
411 
412 /** read root hints list */
413 static int
read_root_hints_list(struct iter_hints * hints,struct config_file * cfg)414 read_root_hints_list(struct iter_hints* hints, struct config_file* cfg)
415 {
416 	struct config_strlist* p;
417 	for(p = cfg->root_hints; p; p = p->next) {
418 		log_assert(p->str);
419 		if(p->str && p->str[0]) {
420 			char* f = p->str;
421 			if(cfg->chrootdir && cfg->chrootdir[0] &&
422 				strncmp(p->str, cfg->chrootdir,
423 				strlen(cfg->chrootdir)) == 0)
424 				f += strlen(cfg->chrootdir);
425 			if(!read_root_hints(hints, f))
426 				return 0;
427 		}
428 	}
429 	return 1;
430 }
431 
432 int
hints_apply_cfg(struct iter_hints * hints,struct config_file * cfg)433 hints_apply_cfg(struct iter_hints* hints, struct config_file* cfg)
434 {
435 	hints_del_tree(hints);
436 	name_tree_init(&hints->tree);
437 
438 	/* read root hints */
439 	if(!read_root_hints_list(hints, cfg))
440 		return 0;
441 
442 	/* read stub hints */
443 	if(!read_stubs(hints, cfg))
444 		return 0;
445 
446 	/* use fallback compiletime root hints */
447 	if(!hints_lookup_root(hints, LDNS_RR_CLASS_IN)) {
448 		struct delegpt* dp = compile_time_root_prime(cfg->do_ip4,
449 			cfg->do_ip6);
450 		verbose(VERB_ALGO, "no config, using builtin root hints.");
451 		if(!dp)
452 			return 0;
453 		if(!hints_insert(hints, LDNS_RR_CLASS_IN, dp, 0))
454 			return 0;
455 	}
456 
457 	name_tree_init_parents(&hints->tree);
458 	return 1;
459 }
460 
461 struct delegpt*
hints_lookup_root(struct iter_hints * hints,uint16_t qclass)462 hints_lookup_root(struct iter_hints* hints, uint16_t qclass)
463 {
464 	uint8_t rootlab = 0;
465 	struct iter_hints_stub *stub;
466 	stub = (struct iter_hints_stub*)name_tree_find(&hints->tree,
467 		&rootlab, 1, 1, qclass);
468 	if(!stub)
469 		return NULL;
470 	return stub->dp;
471 }
472 
473 struct iter_hints_stub*
hints_lookup_stub(struct iter_hints * hints,uint8_t * qname,uint16_t qclass,struct delegpt * cache_dp)474 hints_lookup_stub(struct iter_hints* hints, uint8_t* qname,
475 	uint16_t qclass, struct delegpt* cache_dp)
476 {
477 	size_t len;
478 	int labs;
479 	struct iter_hints_stub *r;
480 
481 	/* first lookup the stub */
482 	labs = dname_count_size_labels(qname, &len);
483 	r = (struct iter_hints_stub*)name_tree_lookup(&hints->tree, qname,
484 		len, labs, qclass);
485 	if(!r) return NULL;
486 
487 	/* If there is no cache (root prime situation) */
488 	if(cache_dp == NULL) {
489 		if(r->dp->namelabs != 1)
490 			return r; /* no cache dp, use any non-root stub */
491 		return NULL;
492 	}
493 
494 	/*
495 	 * If the stub is same as the delegation we got
496 	 * And has noprime set, we need to 'prime' to use this stub instead.
497 	 */
498 	if(r->noprime && query_dname_compare(cache_dp->name, r->dp->name)==0)
499 		return r; /* use this stub instead of cached dp */
500 
501 	/*
502 	 * If our cached delegation point is above the hint, we need to prime.
503 	 */
504 	if(dname_strict_subdomain(r->dp->name, r->dp->namelabs,
505 		cache_dp->name, cache_dp->namelabs))
506 		return r; /* need to prime this stub */
507 	return NULL;
508 }
509 
hints_next_root(struct iter_hints * hints,uint16_t * qclass)510 int hints_next_root(struct iter_hints* hints, uint16_t* qclass)
511 {
512 	return name_tree_next_root(&hints->tree, qclass);
513 }
514 
515 size_t
hints_get_mem(struct iter_hints * hints)516 hints_get_mem(struct iter_hints* hints)
517 {
518 	size_t s;
519 	struct iter_hints_stub* p;
520 	if(!hints) return 0;
521 	s = sizeof(*hints);
522 	RBTREE_FOR(p, struct iter_hints_stub*, &hints->tree) {
523 		s += sizeof(*p) + delegpt_get_mem(p->dp);
524 	}
525 	return s;
526 }
527 
528 int
hints_add_stub(struct iter_hints * hints,uint16_t c,struct delegpt * dp,int noprime)529 hints_add_stub(struct iter_hints* hints, uint16_t c, struct delegpt* dp,
530 	int noprime)
531 {
532 	struct iter_hints_stub *z;
533 	if((z=(struct iter_hints_stub*)name_tree_find(&hints->tree,
534 		dp->name, dp->namelen, dp->namelabs, c)) != NULL) {
535 		(void)rbtree_delete(&hints->tree, &z->node);
536 		hints_stub_free(z);
537 	}
538 	if(!hints_insert(hints, c, dp, noprime))
539 		return 0;
540 	name_tree_init_parents(&hints->tree);
541 	return 1;
542 }
543 
544 void
hints_delete_stub(struct iter_hints * hints,uint16_t c,uint8_t * nm)545 hints_delete_stub(struct iter_hints* hints, uint16_t c, uint8_t* nm)
546 {
547 	struct iter_hints_stub *z;
548 	size_t len;
549 	int labs = dname_count_size_labels(nm, &len);
550 	if(!(z=(struct iter_hints_stub*)name_tree_find(&hints->tree,
551 		nm, len, labs, c)))
552 		return; /* nothing to do */
553 	(void)rbtree_delete(&hints->tree, &z->node);
554 	hints_stub_free(z);
555 	name_tree_init_parents(&hints->tree);
556 }
557 
558