xref: /freebsd/contrib/unbound/validator/autotrust.c (revision f0cfa1b168014f56c02b83e5f28412cc5f78d117)
1 /*
2  * validator/autotrust.c - RFC5011 trust anchor management for unbound.
3  *
4  * Copyright (c) 2009, 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  * Contains autotrust implementation. The implementation was taken from
40  * the autotrust daemon (BSD licensed), written by Matthijs Mekking.
41  * It was modified to fit into unbound. The state table process is the same.
42  */
43 #include "config.h"
44 #include "validator/autotrust.h"
45 #include "validator/val_anchor.h"
46 #include "validator/val_utils.h"
47 #include "validator/val_sigcrypt.h"
48 #include "util/data/dname.h"
49 #include "util/data/packed_rrset.h"
50 #include "util/log.h"
51 #include "util/module.h"
52 #include "util/net_help.h"
53 #include "util/config_file.h"
54 #include "util/regional.h"
55 #include "util/random.h"
56 #include "util/data/msgparse.h"
57 #include "services/mesh.h"
58 #include "services/cache/rrset.h"
59 #include "validator/val_kcache.h"
60 #include "sldns/sbuffer.h"
61 #include "sldns/wire2str.h"
62 #include "sldns/str2wire.h"
63 #include "sldns/keyraw.h"
64 #include "sldns/rrdef.h"
65 #include <stdarg.h>
66 #include <ctype.h>
67 
68 /** number of times a key must be seen before it can become valid */
69 #define MIN_PENDINGCOUNT 2
70 
71 /** Event: Revoked */
72 static void do_revoked(struct module_env* env, struct autr_ta* anchor, int* c);
73 
74 struct autr_global_data* autr_global_create(void)
75 {
76 	struct autr_global_data* global;
77 	global = (struct autr_global_data*)malloc(sizeof(*global));
78 	if(!global)
79 		return NULL;
80 	rbtree_init(&global->probe, &probetree_cmp);
81 	return global;
82 }
83 
84 void autr_global_delete(struct autr_global_data* global)
85 {
86 	if(!global)
87 		return;
88 	/* elements deleted by parent */
89 	memset(global, 0, sizeof(*global));
90 	free(global);
91 }
92 
93 int probetree_cmp(const void* x, const void* y)
94 {
95 	struct trust_anchor* a = (struct trust_anchor*)x;
96 	struct trust_anchor* b = (struct trust_anchor*)y;
97 	log_assert(a->autr && b->autr);
98 	if(a->autr->next_probe_time < b->autr->next_probe_time)
99 		return -1;
100 	if(a->autr->next_probe_time > b->autr->next_probe_time)
101 		return 1;
102 	/* time is equal, sort on trust point identity */
103 	return anchor_cmp(x, y);
104 }
105 
106 size_t
107 autr_get_num_anchors(struct val_anchors* anchors)
108 {
109 	size_t res = 0;
110 	if(!anchors)
111 		return 0;
112 	lock_basic_lock(&anchors->lock);
113 	if(anchors->autr)
114 		res = anchors->autr->probe.count;
115 	lock_basic_unlock(&anchors->lock);
116 	return res;
117 }
118 
119 /** Position in string */
120 static int
121 position_in_string(char *str, const char* sub)
122 {
123 	char* pos = strstr(str, sub);
124 	if(pos)
125 		return (int)(pos-str)+(int)strlen(sub);
126 	return -1;
127 }
128 
129 /** Debug routine to print pretty key information */
130 static void
131 verbose_key(struct autr_ta* ta, enum verbosity_value level,
132 	const char* format, ...) ATTR_FORMAT(printf, 3, 4);
133 
134 /**
135  * Implementation of debug pretty key print
136  * @param ta: trust anchor key with DNSKEY data.
137  * @param level: verbosity level to print at.
138  * @param format: printf style format string.
139  */
140 static void
141 verbose_key(struct autr_ta* ta, enum verbosity_value level,
142 	const char* format, ...)
143 {
144 	va_list args;
145 	va_start(args, format);
146 	if(verbosity >= level) {
147 		char* str = sldns_wire2str_dname(ta->rr, ta->dname_len);
148 		int keytag = (int)sldns_calc_keytag_raw(sldns_wirerr_get_rdata(
149 			ta->rr, ta->rr_len, ta->dname_len),
150 			sldns_wirerr_get_rdatalen(ta->rr, ta->rr_len,
151 			ta->dname_len));
152 		char msg[MAXSYSLOGMSGLEN];
153 		vsnprintf(msg, sizeof(msg), format, args);
154 		verbose(level, "%s key %d %s", str?str:"??", keytag, msg);
155 		free(str);
156 	}
157 	va_end(args);
158 }
159 
160 /**
161  * Parse comments
162  * @param str: to parse
163  * @param ta: trust key autotrust metadata
164  * @return false on failure.
165  */
166 static int
167 parse_comments(char* str, struct autr_ta* ta)
168 {
169         int len = (int)strlen(str), pos = 0, timestamp = 0;
170         char* comment = (char*) malloc(sizeof(char)*len+1);
171         char* comments = comment;
172 	if(!comment) {
173 		log_err("malloc failure in parse");
174                 return 0;
175 	}
176 	/* skip over whitespace and data at start of line */
177         while (*str != '\0' && *str != ';')
178                 str++;
179         if (*str == ';')
180                 str++;
181         /* copy comments */
182         while (*str != '\0')
183         {
184                 *comments = *str;
185                 comments++;
186                 str++;
187         }
188         *comments = '\0';
189 
190         comments = comment;
191 
192         /* read state */
193         pos = position_in_string(comments, "state=");
194         if (pos >= (int) strlen(comments))
195         {
196 		log_err("parse error");
197                 free(comment);
198                 return 0;
199         }
200         if (pos <= 0)
201                 ta->s = AUTR_STATE_VALID;
202         else
203         {
204                 int s = (int) comments[pos] - '0';
205                 switch(s)
206                 {
207                         case AUTR_STATE_START:
208                         case AUTR_STATE_ADDPEND:
209                         case AUTR_STATE_VALID:
210                         case AUTR_STATE_MISSING:
211                         case AUTR_STATE_REVOKED:
212                         case AUTR_STATE_REMOVED:
213                                 ta->s = s;
214                                 break;
215                         default:
216 				verbose_key(ta, VERB_OPS, "has undefined "
217 					"state, considered NewKey");
218                                 ta->s = AUTR_STATE_START;
219                                 break;
220                 }
221         }
222         /* read pending count */
223         pos = position_in_string(comments, "count=");
224         if (pos >= (int) strlen(comments))
225         {
226 		log_err("parse error");
227                 free(comment);
228                 return 0;
229         }
230         if (pos <= 0)
231                 ta->pending_count = 0;
232         else
233         {
234                 comments += pos;
235                 ta->pending_count = (uint8_t)atoi(comments);
236         }
237 
238         /* read last change */
239         pos = position_in_string(comments, "lastchange=");
240         if (pos >= (int) strlen(comments))
241         {
242 		log_err("parse error");
243                 free(comment);
244                 return 0;
245         }
246         if (pos >= 0)
247         {
248                 comments += pos;
249                 timestamp = atoi(comments);
250         }
251         if (pos < 0 || !timestamp)
252 		ta->last_change = 0;
253         else
254                 ta->last_change = (time_t)timestamp;
255 
256         free(comment);
257         return 1;
258 }
259 
260 /** Check if a line contains data (besides comments) */
261 static int
262 str_contains_data(char* str, char comment)
263 {
264         while (*str != '\0') {
265                 if (*str == comment || *str == '\n')
266                         return 0;
267                 if (*str != ' ' && *str != '\t')
268                         return 1;
269                 str++;
270         }
271         return 0;
272 }
273 
274 /** Get DNSKEY flags
275  * rdata without rdatalen in front of it. */
276 static int
277 dnskey_flags(uint16_t t, uint8_t* rdata, size_t len)
278 {
279 	uint16_t f;
280 	if(t != LDNS_RR_TYPE_DNSKEY)
281 		return 0;
282 	if(len < 2)
283 		return 0;
284 	memmove(&f, rdata, 2);
285 	f = ntohs(f);
286 	return (int)f;
287 }
288 
289 /** Check if KSK DNSKEY.
290  * pass rdata without rdatalen in front of it */
291 static int
292 rr_is_dnskey_sep(uint16_t t, uint8_t* rdata, size_t len)
293 {
294 	return (dnskey_flags(t, rdata, len)&DNSKEY_BIT_SEP);
295 }
296 
297 /** Check if TA is KSK DNSKEY */
298 static int
299 ta_is_dnskey_sep(struct autr_ta* ta)
300 {
301 	return (dnskey_flags(
302 		sldns_wirerr_get_type(ta->rr, ta->rr_len, ta->dname_len),
303 		sldns_wirerr_get_rdata(ta->rr, ta->rr_len, ta->dname_len),
304 		sldns_wirerr_get_rdatalen(ta->rr, ta->rr_len, ta->dname_len)
305 		) & DNSKEY_BIT_SEP);
306 }
307 
308 /** Check if REVOKED DNSKEY
309  * pass rdata without rdatalen in front of it */
310 static int
311 rr_is_dnskey_revoked(uint16_t t, uint8_t* rdata, size_t len)
312 {
313 	return (dnskey_flags(t, rdata, len)&LDNS_KEY_REVOKE_KEY);
314 }
315 
316 /** create ta */
317 static struct autr_ta*
318 autr_ta_create(uint8_t* rr, size_t rr_len, size_t dname_len)
319 {
320 	struct autr_ta* ta = (struct autr_ta*)calloc(1, sizeof(*ta));
321 	if(!ta) {
322 		free(rr);
323 		return NULL;
324 	}
325 	ta->rr = rr;
326 	ta->rr_len = rr_len;
327 	ta->dname_len = dname_len;
328 	return ta;
329 }
330 
331 /** create tp */
332 static struct trust_anchor*
333 autr_tp_create(struct val_anchors* anchors, uint8_t* own, size_t own_len,
334 	uint16_t dc)
335 {
336 	struct trust_anchor* tp = (struct trust_anchor*)calloc(1, sizeof(*tp));
337 	if(!tp) return NULL;
338 	tp->name = memdup(own, own_len);
339 	if(!tp->name) {
340 		free(tp);
341 		return NULL;
342 	}
343 	tp->namelen = own_len;
344 	tp->namelabs = dname_count_labels(tp->name);
345 	tp->node.key = tp;
346 	tp->dclass = dc;
347 	tp->autr = (struct autr_point_data*)calloc(1, sizeof(*tp->autr));
348 	if(!tp->autr) {
349 		free(tp->name);
350 		free(tp);
351 		return NULL;
352 	}
353 	tp->autr->pnode.key = tp;
354 
355 	lock_basic_lock(&anchors->lock);
356 	if(!rbtree_insert(anchors->tree, &tp->node)) {
357 		lock_basic_unlock(&anchors->lock);
358 		log_err("trust anchor presented twice");
359 		free(tp->name);
360 		free(tp->autr);
361 		free(tp);
362 		return NULL;
363 	}
364 	if(!rbtree_insert(&anchors->autr->probe, &tp->autr->pnode)) {
365 		(void)rbtree_delete(anchors->tree, tp);
366 		lock_basic_unlock(&anchors->lock);
367 		log_err("trust anchor in probetree twice");
368 		free(tp->name);
369 		free(tp->autr);
370 		free(tp);
371 		return NULL;
372 	}
373 	lock_basic_unlock(&anchors->lock);
374 	lock_basic_init(&tp->lock);
375 	lock_protect(&tp->lock, tp, sizeof(*tp));
376 	lock_protect(&tp->lock, tp->autr, sizeof(*tp->autr));
377 	return tp;
378 }
379 
380 /** delete assembled rrsets */
381 static void
382 autr_rrset_delete(struct ub_packed_rrset_key* r)
383 {
384 	if(r) {
385 		free(r->rk.dname);
386 		free(r->entry.data);
387 		free(r);
388 	}
389 }
390 
391 void autr_point_delete(struct trust_anchor* tp)
392 {
393 	if(!tp)
394 		return;
395 	lock_unprotect(&tp->lock, tp);
396 	lock_unprotect(&tp->lock, tp->autr);
397 	lock_basic_destroy(&tp->lock);
398 	autr_rrset_delete(tp->ds_rrset);
399 	autr_rrset_delete(tp->dnskey_rrset);
400 	if(tp->autr) {
401 		struct autr_ta* p = tp->autr->keys, *np;
402 		while(p) {
403 			np = p->next;
404 			free(p->rr);
405 			free(p);
406 			p = np;
407 		}
408 		free(tp->autr->file);
409 		free(tp->autr);
410 	}
411 	free(tp->name);
412 	free(tp);
413 }
414 
415 /** find or add a new trust point for autotrust */
416 static struct trust_anchor*
417 find_add_tp(struct val_anchors* anchors, uint8_t* rr, size_t rr_len,
418 	size_t dname_len)
419 {
420 	struct trust_anchor* tp;
421 	tp = anchor_find(anchors, rr, dname_count_labels(rr), dname_len,
422 		sldns_wirerr_get_class(rr, rr_len, dname_len));
423 	if(tp) {
424 		if(!tp->autr) {
425 			log_err("anchor cannot be with and without autotrust");
426 			lock_basic_unlock(&tp->lock);
427 			return NULL;
428 		}
429 		return tp;
430 	}
431 	tp = autr_tp_create(anchors, rr, dname_len, sldns_wirerr_get_class(rr,
432 		rr_len, dname_len));
433 	if(!tp)
434 		return NULL;
435 	lock_basic_lock(&tp->lock);
436 	return tp;
437 }
438 
439 /** Add trust anchor from RR */
440 static struct autr_ta*
441 add_trustanchor_frm_rr(struct val_anchors* anchors, uint8_t* rr, size_t rr_len,
442         size_t dname_len, struct trust_anchor** tp)
443 {
444 	struct autr_ta* ta = autr_ta_create(rr, rr_len, dname_len);
445 	if(!ta)
446 		return NULL;
447 	*tp = find_add_tp(anchors, rr, rr_len, dname_len);
448 	if(!*tp) {
449 		free(ta->rr);
450 		free(ta);
451 		return NULL;
452 	}
453 	/* add ta to tp */
454 	ta->next = (*tp)->autr->keys;
455 	(*tp)->autr->keys = ta;
456 	lock_basic_unlock(&(*tp)->lock);
457 	return ta;
458 }
459 
460 /**
461  * Add new trust anchor from a string in file.
462  * @param anchors: all anchors
463  * @param str: string with anchor and comments, if any comments.
464  * @param tp: trust point returned.
465  * @param origin: what to use for @
466  * @param origin_len: length of origin
467  * @param prev: previous rr name
468  * @param prev_len: length of prev
469  * @param skip: if true, the result is NULL, but not an error, skip it.
470  * @return new key in trust point.
471  */
472 static struct autr_ta*
473 add_trustanchor_frm_str(struct val_anchors* anchors, char* str,
474 	struct trust_anchor** tp, uint8_t* origin, size_t origin_len,
475 	uint8_t** prev, size_t* prev_len, int* skip)
476 {
477 	uint8_t rr[LDNS_RR_BUF_SIZE];
478 	size_t rr_len = sizeof(rr), dname_len;
479 	uint8_t* drr;
480 	int lstatus;
481         if (!str_contains_data(str, ';')) {
482 		*skip = 1;
483                 return NULL; /* empty line */
484 	}
485 	if(0 != (lstatus = sldns_str2wire_rr_buf(str, rr, &rr_len, &dname_len,
486 		0, origin, origin_len, *prev, *prev_len)))
487 	{
488 		log_err("ldns error while converting string to RR at%d: %s: %s",
489 			LDNS_WIREPARSE_OFFSET(lstatus),
490 			sldns_get_errorstr_parse(lstatus), str);
491 		return NULL;
492 	}
493 	free(*prev);
494 	*prev = memdup(rr, dname_len);
495 	*prev_len = dname_len;
496 	if(!*prev) {
497 		log_err("malloc failure in add_trustanchor");
498 		return NULL;
499 	}
500 	if(sldns_wirerr_get_type(rr, rr_len, dname_len)!=LDNS_RR_TYPE_DNSKEY &&
501 		sldns_wirerr_get_type(rr, rr_len, dname_len)!=LDNS_RR_TYPE_DS) {
502 		*skip = 1;
503 		return NULL; /* only DS and DNSKEY allowed */
504 	}
505 	drr = memdup(rr, rr_len);
506 	if(!drr) {
507 		log_err("malloc failure in add trustanchor");
508 		return NULL;
509 	}
510 	return add_trustanchor_frm_rr(anchors, drr, rr_len, dname_len, tp);
511 }
512 
513 /**
514  * Load single anchor
515  * @param anchors: all points.
516  * @param str: comments line
517  * @param fname: filename
518  * @param origin: the $ORIGIN.
519  * @param origin_len: length of origin
520  * @param prev: passed to ldns.
521  * @param prev_len: length of prev
522  * @param skip: if true, the result is NULL, but not an error, skip it.
523  * @return false on failure, otherwise the tp read.
524  */
525 static struct trust_anchor*
526 load_trustanchor(struct val_anchors* anchors, char* str, const char* fname,
527 	uint8_t* origin, size_t origin_len, uint8_t** prev, size_t* prev_len,
528 	int* skip)
529 {
530 	struct autr_ta* ta = NULL;
531 	struct trust_anchor* tp = NULL;
532 
533 	ta = add_trustanchor_frm_str(anchors, str, &tp, origin, origin_len,
534 		prev, prev_len, skip);
535 	if(!ta)
536 		return NULL;
537 	lock_basic_lock(&tp->lock);
538 	if(!parse_comments(str, ta)) {
539 		lock_basic_unlock(&tp->lock);
540 		return NULL;
541 	}
542 	if(!tp->autr->file) {
543 		tp->autr->file = strdup(fname);
544 		if(!tp->autr->file) {
545 			lock_basic_unlock(&tp->lock);
546 			log_err("malloc failure");
547 			return NULL;
548 		}
549 	}
550 	lock_basic_unlock(&tp->lock);
551         return tp;
552 }
553 
554 /** iterator for DSes from keylist. return true if a next element exists */
555 static int
556 assemble_iterate_ds(struct autr_ta** list, uint8_t** rr, size_t* rr_len,
557 	size_t* dname_len)
558 {
559 	while(*list) {
560 		if(sldns_wirerr_get_type((*list)->rr, (*list)->rr_len,
561 			(*list)->dname_len) == LDNS_RR_TYPE_DS) {
562 			*rr = (*list)->rr;
563 			*rr_len = (*list)->rr_len;
564 			*dname_len = (*list)->dname_len;
565 			*list = (*list)->next;
566 			return 1;
567 		}
568 		*list = (*list)->next;
569 	}
570 	return 0;
571 }
572 
573 /** iterator for DNSKEYs from keylist. return true if a next element exists */
574 static int
575 assemble_iterate_dnskey(struct autr_ta** list, uint8_t** rr, size_t* rr_len,
576 	size_t* dname_len)
577 {
578 	while(*list) {
579 		if(sldns_wirerr_get_type((*list)->rr, (*list)->rr_len,
580 		   (*list)->dname_len) != LDNS_RR_TYPE_DS &&
581 			((*list)->s == AUTR_STATE_VALID ||
582 			 (*list)->s == AUTR_STATE_MISSING)) {
583 			*rr = (*list)->rr;
584 			*rr_len = (*list)->rr_len;
585 			*dname_len = (*list)->dname_len;
586 			*list = (*list)->next;
587 			return 1;
588 		}
589 		*list = (*list)->next;
590 	}
591 	return 0;
592 }
593 
594 /** see if iterator-list has any elements in it, or it is empty */
595 static int
596 assemble_iterate_hasfirst(int iter(struct autr_ta**, uint8_t**, size_t*,
597 	size_t*), struct autr_ta* list)
598 {
599 	uint8_t* rr = NULL;
600 	size_t rr_len = 0, dname_len = 0;
601 	return iter(&list, &rr, &rr_len, &dname_len);
602 }
603 
604 /** number of elements in iterator list */
605 static size_t
606 assemble_iterate_count(int iter(struct autr_ta**, uint8_t**, size_t*,
607 	size_t*), struct autr_ta* list)
608 {
609 	uint8_t* rr = NULL;
610 	size_t i = 0, rr_len = 0, dname_len = 0;
611 	while(iter(&list, &rr, &rr_len, &dname_len)) {
612 		i++;
613 	}
614 	return i;
615 }
616 
617 /**
618  * Create a ub_packed_rrset_key allocated on the heap.
619  * It therefore does not have the correct ID value, and cannot be used
620  * inside the cache.  It can be used in storage outside of the cache.
621  * Keys for the cache have to be obtained from alloc.h .
622  * @param iter: iterator over the elements in the list.  It filters elements.
623  * @param list: the list.
624  * @return key allocated or NULL on failure.
625  */
626 static struct ub_packed_rrset_key*
627 ub_packed_rrset_heap_key(int iter(struct autr_ta**, uint8_t**, size_t*,
628 	size_t*), struct autr_ta* list)
629 {
630 	uint8_t* rr = NULL;
631 	size_t rr_len = 0, dname_len = 0;
632 	struct ub_packed_rrset_key* k;
633 	if(!iter(&list, &rr, &rr_len, &dname_len))
634 		return NULL;
635 	k = (struct ub_packed_rrset_key*)calloc(1, sizeof(*k));
636 	if(!k)
637 		return NULL;
638 	k->rk.type = htons(sldns_wirerr_get_type(rr, rr_len, dname_len));
639 	k->rk.rrset_class = htons(sldns_wirerr_get_class(rr, rr_len, dname_len));
640 	k->rk.dname_len = dname_len;
641 	k->rk.dname = memdup(rr, dname_len);
642 	if(!k->rk.dname) {
643 		free(k);
644 		return NULL;
645 	}
646 	return k;
647 }
648 
649 /**
650  * Create packed_rrset data on the heap.
651  * @param iter: iterator over the elements in the list.  It filters elements.
652  * @param list: the list.
653  * @return data allocated or NULL on failure.
654  */
655 static struct packed_rrset_data*
656 packed_rrset_heap_data(int iter(struct autr_ta**, uint8_t**, size_t*,
657 	size_t*), struct autr_ta* list)
658 {
659 	uint8_t* rr = NULL;
660 	size_t rr_len = 0, dname_len = 0;
661 	struct packed_rrset_data* data;
662 	size_t count=0, rrsig_count=0, len=0, i, total;
663 	uint8_t* nextrdata;
664 	struct autr_ta* list_i;
665 	time_t ttl = 0;
666 
667 	list_i = list;
668 	while(iter(&list_i, &rr, &rr_len, &dname_len)) {
669 		if(sldns_wirerr_get_type(rr, rr_len, dname_len) ==
670 			LDNS_RR_TYPE_RRSIG)
671 			rrsig_count++;
672 		else	count++;
673 		/* sizeof the rdlength + rdatalen */
674 		len += 2 + sldns_wirerr_get_rdatalen(rr, rr_len, dname_len);
675 		ttl = (time_t)sldns_wirerr_get_ttl(rr, rr_len, dname_len);
676 	}
677 	if(count == 0 && rrsig_count == 0)
678 		return NULL;
679 
680 	/* allocate */
681 	total = count + rrsig_count;
682 	len += sizeof(*data) + total*(sizeof(size_t) + sizeof(time_t) +
683 		sizeof(uint8_t*));
684 	data = (struct packed_rrset_data*)calloc(1, len);
685 	if(!data)
686 		return NULL;
687 
688 	/* fill it */
689 	data->ttl = ttl;
690 	data->count = count;
691 	data->rrsig_count = rrsig_count;
692 	data->rr_len = (size_t*)((uint8_t*)data +
693 		sizeof(struct packed_rrset_data));
694 	data->rr_data = (uint8_t**)&(data->rr_len[total]);
695 	data->rr_ttl = (time_t*)&(data->rr_data[total]);
696 	nextrdata = (uint8_t*)&(data->rr_ttl[total]);
697 
698 	/* fill out len, ttl, fields */
699 	list_i = list;
700 	i = 0;
701 	while(iter(&list_i, &rr, &rr_len, &dname_len)) {
702 		data->rr_ttl[i] = (time_t)sldns_wirerr_get_ttl(rr, rr_len,
703 			dname_len);
704 		if(data->rr_ttl[i] < data->ttl)
705 			data->ttl = data->rr_ttl[i];
706 		data->rr_len[i] = 2 /* the rdlength */ +
707 			sldns_wirerr_get_rdatalen(rr, rr_len, dname_len);
708 		i++;
709 	}
710 
711 	/* fixup rest of ptrs */
712 	for(i=0; i<total; i++) {
713 		data->rr_data[i] = nextrdata;
714 		nextrdata += data->rr_len[i];
715 	}
716 
717 	/* copy data in there */
718 	list_i = list;
719 	i = 0;
720 	while(iter(&list_i, &rr, &rr_len, &dname_len)) {
721 		memmove(data->rr_data[i],
722 			sldns_wirerr_get_rdatawl(rr, rr_len, dname_len),
723 			data->rr_len[i]);
724 		i++;
725 	}
726 
727 	if(data->rrsig_count && data->count == 0) {
728 		data->count = data->rrsig_count; /* rrset type is RRSIG */
729 		data->rrsig_count = 0;
730 	}
731 	return data;
732 }
733 
734 /**
735  * Assemble the trust anchors into DS and DNSKEY packed rrsets.
736  * Uses only VALID and MISSING DNSKEYs.
737  * Read the sldns_rrs and builds packed rrsets
738  * @param tp: the trust point. Must be locked.
739  * @return false on malloc failure.
740  */
741 static int
742 autr_assemble(struct trust_anchor* tp)
743 {
744 	struct ub_packed_rrset_key* ubds=NULL, *ubdnskey=NULL;
745 
746 	/* make packed rrset keys - malloced with no ID number, they
747 	 * are not in the cache */
748 	/* make packed rrset data (if there is a key) */
749 	if(assemble_iterate_hasfirst(assemble_iterate_ds, tp->autr->keys)) {
750 		ubds = ub_packed_rrset_heap_key(
751 			assemble_iterate_ds, tp->autr->keys);
752 		if(!ubds)
753 			goto error_cleanup;
754 		ubds->entry.data = packed_rrset_heap_data(
755 			assemble_iterate_ds, tp->autr->keys);
756 		if(!ubds->entry.data)
757 			goto error_cleanup;
758 	}
759 
760 	/* make packed DNSKEY data */
761 	if(assemble_iterate_hasfirst(assemble_iterate_dnskey, tp->autr->keys)) {
762 		ubdnskey = ub_packed_rrset_heap_key(
763 			assemble_iterate_dnskey, tp->autr->keys);
764 		if(!ubdnskey)
765 			goto error_cleanup;
766 		ubdnskey->entry.data = packed_rrset_heap_data(
767 			assemble_iterate_dnskey, tp->autr->keys);
768 		if(!ubdnskey->entry.data) {
769 		error_cleanup:
770 			autr_rrset_delete(ubds);
771 			autr_rrset_delete(ubdnskey);
772 			return 0;
773 		}
774 	}
775 
776 	/* we have prepared the new keys so nothing can go wrong any more.
777 	 * And we are sure we cannot be left without trustanchor after
778 	 * any errors. Put in the new keys and remove old ones. */
779 
780 	/* free the old data */
781 	autr_rrset_delete(tp->ds_rrset);
782 	autr_rrset_delete(tp->dnskey_rrset);
783 
784 	/* assign the data to replace the old */
785 	tp->ds_rrset = ubds;
786 	tp->dnskey_rrset = ubdnskey;
787 	tp->numDS = assemble_iterate_count(assemble_iterate_ds,
788 		tp->autr->keys);
789 	tp->numDNSKEY = assemble_iterate_count(assemble_iterate_dnskey,
790 		tp->autr->keys);
791 	return 1;
792 }
793 
794 /** parse integer */
795 static unsigned int
796 parse_int(char* line, int* ret)
797 {
798 	char *e;
799 	unsigned int x = (unsigned int)strtol(line, &e, 10);
800 	if(line == e) {
801 		*ret = -1; /* parse error */
802 		return 0;
803 	}
804 	*ret = 1; /* matched */
805 	return x;
806 }
807 
808 /** parse id sequence for anchor */
809 static struct trust_anchor*
810 parse_id(struct val_anchors* anchors, char* line)
811 {
812 	struct trust_anchor *tp;
813 	int r;
814 	uint16_t dclass;
815 	uint8_t* dname;
816 	size_t dname_len;
817 	/* read the owner name */
818 	char* next = strchr(line, ' ');
819 	if(!next)
820 		return NULL;
821 	next[0] = 0;
822 	dname = sldns_str2wire_dname(line, &dname_len);
823 	if(!dname)
824 		return NULL;
825 
826 	/* read the class */
827 	dclass = parse_int(next+1, &r);
828 	if(r == -1) {
829 		free(dname);
830 		return NULL;
831 	}
832 
833 	/* find the trust point */
834 	tp = autr_tp_create(anchors, dname, dname_len, dclass);
835 	free(dname);
836 	return tp;
837 }
838 
839 /**
840  * Parse variable from trustanchor header
841  * @param line: to parse
842  * @param anchors: the anchor is added to this, if "id:" is seen.
843  * @param anchor: the anchor as result value or previously returned anchor
844  * 	value to read the variable lines into.
845  * @return: 0 no match, -1 failed syntax error, +1 success line read.
846  * 	+2 revoked trust anchor file.
847  */
848 static int
849 parse_var_line(char* line, struct val_anchors* anchors,
850 	struct trust_anchor** anchor)
851 {
852 	struct trust_anchor* tp = *anchor;
853 	int r = 0;
854 	if(strncmp(line, ";;id: ", 6) == 0) {
855 		*anchor = parse_id(anchors, line+6);
856 		if(!*anchor) return -1;
857 		else return 1;
858 	} else if(strncmp(line, ";;REVOKED", 9) == 0) {
859 		if(tp) {
860 			log_err("REVOKED statement must be at start of file");
861 			return -1;
862 		}
863 		return 2;
864 	} else if(strncmp(line, ";;last_queried: ", 16) == 0) {
865 		if(!tp) return -1;
866 		lock_basic_lock(&tp->lock);
867 		tp->autr->last_queried = (time_t)parse_int(line+16, &r);
868 		lock_basic_unlock(&tp->lock);
869 	} else if(strncmp(line, ";;last_success: ", 16) == 0) {
870 		if(!tp) return -1;
871 		lock_basic_lock(&tp->lock);
872 		tp->autr->last_success = (time_t)parse_int(line+16, &r);
873 		lock_basic_unlock(&tp->lock);
874 	} else if(strncmp(line, ";;next_probe_time: ", 19) == 0) {
875 		if(!tp) return -1;
876 		lock_basic_lock(&anchors->lock);
877 		lock_basic_lock(&tp->lock);
878 		(void)rbtree_delete(&anchors->autr->probe, tp);
879 		tp->autr->next_probe_time = (time_t)parse_int(line+19, &r);
880 		(void)rbtree_insert(&anchors->autr->probe, &tp->autr->pnode);
881 		lock_basic_unlock(&tp->lock);
882 		lock_basic_unlock(&anchors->lock);
883 	} else if(strncmp(line, ";;query_failed: ", 16) == 0) {
884 		if(!tp) return -1;
885 		lock_basic_lock(&tp->lock);
886 		tp->autr->query_failed = (uint8_t)parse_int(line+16, &r);
887 		lock_basic_unlock(&tp->lock);
888 	} else if(strncmp(line, ";;query_interval: ", 18) == 0) {
889 		if(!tp) return -1;
890 		lock_basic_lock(&tp->lock);
891 		tp->autr->query_interval = (time_t)parse_int(line+18, &r);
892 		lock_basic_unlock(&tp->lock);
893 	} else if(strncmp(line, ";;retry_time: ", 14) == 0) {
894 		if(!tp) return -1;
895 		lock_basic_lock(&tp->lock);
896 		tp->autr->retry_time = (time_t)parse_int(line+14, &r);
897 		lock_basic_unlock(&tp->lock);
898 	}
899 	return r;
900 }
901 
902 /** handle origin lines */
903 static int
904 handle_origin(char* line, uint8_t** origin, size_t* origin_len)
905 {
906 	size_t len = 0;
907 	while(isspace((unsigned char)*line))
908 		line++;
909 	if(strncmp(line, "$ORIGIN", 7) != 0)
910 		return 0;
911 	free(*origin);
912 	line += 7;
913 	while(isspace((unsigned char)*line))
914 		line++;
915 	*origin = sldns_str2wire_dname(line, &len);
916 	*origin_len = len;
917 	if(!*origin)
918 		log_warn("malloc failure or parse error in $ORIGIN");
919 	return 1;
920 }
921 
922 /** Read one line and put multiline RRs onto one line string */
923 static int
924 read_multiline(char* buf, size_t len, FILE* in, int* linenr)
925 {
926 	char* pos = buf;
927 	size_t left = len;
928 	int depth = 0;
929 	buf[len-1] = 0;
930 	while(left > 0 && fgets(pos, (int)left, in) != NULL) {
931 		size_t i, poslen = strlen(pos);
932 		(*linenr)++;
933 
934 		/* check what the new depth is after the line */
935 		/* this routine cannot handle braces inside quotes,
936 		   say for TXT records, but this routine only has to read keys */
937 		for(i=0; i<poslen; i++) {
938 			if(pos[i] == '(') {
939 				depth++;
940 			} else if(pos[i] == ')') {
941 				if(depth == 0) {
942 					log_err("mismatch: too many ')'");
943 					return -1;
944 				}
945 				depth--;
946 			} else if(pos[i] == ';') {
947 				break;
948 			}
949 		}
950 
951 		/* normal oneline or last line: keeps newline and comments */
952 		if(depth == 0) {
953 			return 1;
954 		}
955 
956 		/* more lines expected, snip off comments and newline */
957 		if(poslen>0)
958 			pos[poslen-1] = 0; /* strip newline */
959 		if(strchr(pos, ';'))
960 			strchr(pos, ';')[0] = 0; /* strip comments */
961 
962 		/* move to paste other lines behind this one */
963 		poslen = strlen(pos);
964 		pos += poslen;
965 		left -= poslen;
966 		/* the newline is changed into a space */
967 		if(left <= 2 /* space and eos */) {
968 			log_err("line too long");
969 			return -1;
970 		}
971 		pos[0] = ' ';
972 		pos[1] = 0;
973 		pos += 1;
974 		left -= 1;
975 	}
976 	if(depth != 0) {
977 		log_err("mismatch: too many '('");
978 		return -1;
979 	}
980 	if(pos != buf)
981 		return 1;
982 	return 0;
983 }
984 
985 int autr_read_file(struct val_anchors* anchors, const char* nm)
986 {
987         /* the file descriptor */
988         FILE* fd;
989         /* keep track of line numbers */
990         int line_nr = 0;
991         /* single line */
992         char line[10240];
993 	/* trust point being read */
994 	struct trust_anchor *tp = NULL, *tp2;
995 	int r;
996 	/* for $ORIGIN parsing */
997 	uint8_t *origin=NULL, *prev=NULL;
998 	size_t origin_len=0, prev_len=0;
999 
1000         if (!(fd = fopen(nm, "r"))) {
1001                 log_err("unable to open %s for reading: %s",
1002 			nm, strerror(errno));
1003                 return 0;
1004         }
1005         verbose(VERB_ALGO, "reading autotrust anchor file %s", nm);
1006         while ( (r=read_multiline(line, sizeof(line), fd, &line_nr)) != 0) {
1007 		if(r == -1 || (r = parse_var_line(line, anchors, &tp)) == -1) {
1008 			log_err("could not parse auto-trust-anchor-file "
1009 				"%s line %d", nm, line_nr);
1010 			fclose(fd);
1011 			free(origin);
1012 			free(prev);
1013 			return 0;
1014 		} else if(r == 1) {
1015 			continue;
1016 		} else if(r == 2) {
1017 			log_warn("trust anchor %s has been revoked", nm);
1018 			fclose(fd);
1019 			free(origin);
1020 			free(prev);
1021 			return 1;
1022 		}
1023         	if (!str_contains_data(line, ';'))
1024                 	continue; /* empty lines allowed */
1025  		if(handle_origin(line, &origin, &origin_len))
1026 			continue;
1027 		r = 0;
1028                 if(!(tp2=load_trustanchor(anchors, line, nm, origin,
1029 			origin_len, &prev, &prev_len, &r))) {
1030 			if(!r) log_err("failed to load trust anchor from %s "
1031 				"at line %i, skipping", nm, line_nr);
1032                         /* try to do the rest */
1033 			continue;
1034                 }
1035 		if(tp && tp != tp2) {
1036 			log_err("file %s has mismatching data inside: "
1037 				"the file may only contain keys for one name, "
1038 				"remove keys for other domain names", nm);
1039         		fclose(fd);
1040 			free(origin);
1041 			free(prev);
1042 			return 0;
1043 		}
1044 		tp = tp2;
1045         }
1046         fclose(fd);
1047 	free(origin);
1048 	free(prev);
1049 	if(!tp) {
1050 		log_err("failed to read %s", nm);
1051 		return 0;
1052 	}
1053 
1054 	/* now assemble the data into DNSKEY and DS packed rrsets */
1055 	lock_basic_lock(&tp->lock);
1056 	if(!autr_assemble(tp)) {
1057 		lock_basic_unlock(&tp->lock);
1058 		log_err("malloc failure assembling %s", nm);
1059 		return 0;
1060 	}
1061 	lock_basic_unlock(&tp->lock);
1062 	return 1;
1063 }
1064 
1065 /** string for a trustanchor state */
1066 static const char*
1067 trustanchor_state2str(autr_state_t s)
1068 {
1069         switch (s) {
1070                 case AUTR_STATE_START:       return "  START  ";
1071                 case AUTR_STATE_ADDPEND:     return " ADDPEND ";
1072                 case AUTR_STATE_VALID:       return "  VALID  ";
1073                 case AUTR_STATE_MISSING:     return " MISSING ";
1074                 case AUTR_STATE_REVOKED:     return " REVOKED ";
1075                 case AUTR_STATE_REMOVED:     return " REMOVED ";
1076         }
1077         return " UNKNOWN ";
1078 }
1079 
1080 /** print ID to file */
1081 static int
1082 print_id(FILE* out, char* fname, uint8_t* nm, size_t nmlen, uint16_t dclass)
1083 {
1084 	char* s = sldns_wire2str_dname(nm, nmlen);
1085 	if(!s) {
1086 		log_err("malloc failure in write to %s", fname);
1087 		return 0;
1088 	}
1089 	if(fprintf(out, ";;id: %s %d\n", s, (int)dclass) < 0) {
1090 		log_err("could not write to %s: %s", fname, strerror(errno));
1091 		free(s);
1092 		return 0;
1093 	}
1094 	free(s);
1095 	return 1;
1096 }
1097 
1098 static int
1099 autr_write_contents(FILE* out, char* fn, struct trust_anchor* tp)
1100 {
1101 	char tmi[32];
1102 	struct autr_ta* ta;
1103 	char* str;
1104 
1105 	/* write pretty header */
1106 	if(fprintf(out, "; autotrust trust anchor file\n") < 0) {
1107 		log_err("could not write to %s: %s", fn, strerror(errno));
1108 		return 0;
1109 	}
1110 	if(tp->autr->revoked) {
1111 		if(fprintf(out, ";;REVOKED\n") < 0 ||
1112 		   fprintf(out, "; The zone has all keys revoked, and is\n"
1113 			"; considered as if it has no trust anchors.\n"
1114 			"; the remainder of the file is the last probe.\n"
1115 			"; to restart the trust anchor, overwrite this file.\n"
1116 			"; with one containing valid DNSKEYs or DSes.\n") < 0) {
1117 		   log_err("could not write to %s: %s", fn, strerror(errno));
1118 		   return 0;
1119 		}
1120 	}
1121 	if(!print_id(out, fn, tp->name, tp->namelen, tp->dclass)) {
1122 		return 0;
1123 	}
1124 	if(fprintf(out, ";;last_queried: %u ;;%s",
1125 		(unsigned int)tp->autr->last_queried,
1126 		ctime_r(&(tp->autr->last_queried), tmi)) < 0 ||
1127 	   fprintf(out, ";;last_success: %u ;;%s",
1128 		(unsigned int)tp->autr->last_success,
1129 		ctime_r(&(tp->autr->last_success), tmi)) < 0 ||
1130 	   fprintf(out, ";;next_probe_time: %u ;;%s",
1131 		(unsigned int)tp->autr->next_probe_time,
1132 		ctime_r(&(tp->autr->next_probe_time), tmi)) < 0 ||
1133 	   fprintf(out, ";;query_failed: %d\n", (int)tp->autr->query_failed)<0
1134 	   || fprintf(out, ";;query_interval: %d\n",
1135 	   (int)tp->autr->query_interval) < 0 ||
1136 	   fprintf(out, ";;retry_time: %d\n", (int)tp->autr->retry_time) < 0) {
1137 		log_err("could not write to %s: %s", fn, strerror(errno));
1138 		return 0;
1139 	}
1140 
1141 	/* write anchors */
1142 	for(ta=tp->autr->keys; ta; ta=ta->next) {
1143 		/* by default do not store START and REMOVED keys */
1144 		if(ta->s == AUTR_STATE_START)
1145 			continue;
1146 		if(ta->s == AUTR_STATE_REMOVED)
1147 			continue;
1148 		/* only store keys */
1149 		if(sldns_wirerr_get_type(ta->rr, ta->rr_len, ta->dname_len)
1150 			!= LDNS_RR_TYPE_DNSKEY)
1151 			continue;
1152 		str = sldns_wire2str_rr(ta->rr, ta->rr_len);
1153 		if(!str || !str[0]) {
1154 			free(str);
1155 			log_err("malloc failure writing %s", fn);
1156 			return 0;
1157 		}
1158 		str[strlen(str)-1] = 0; /* remove newline */
1159 		if(fprintf(out, "%s ;;state=%d [%s] ;;count=%d "
1160 			";;lastchange=%u ;;%s", str, (int)ta->s,
1161 			trustanchor_state2str(ta->s), (int)ta->pending_count,
1162 			(unsigned int)ta->last_change,
1163 			ctime_r(&(ta->last_change), tmi)) < 0) {
1164 		   log_err("could not write to %s: %s", fn, strerror(errno));
1165 		   free(str);
1166 		   return 0;
1167 		}
1168 		free(str);
1169 	}
1170 	return 1;
1171 }
1172 
1173 void autr_write_file(struct module_env* env, struct trust_anchor* tp)
1174 {
1175 	FILE* out;
1176 	char* fname = tp->autr->file;
1177 	char tempf[2048];
1178 	log_assert(tp->autr);
1179 	if(!env) {
1180 		log_err("autr_write_file: Module environment is NULL.");
1181 		return;
1182 	}
1183 	/* unique name with pid number and thread number */
1184 	snprintf(tempf, sizeof(tempf), "%s.%d-%d", fname, (int)getpid(),
1185 		env->worker?*(int*)env->worker:0);
1186 	verbose(VERB_ALGO, "autotrust: write to disk: %s", tempf);
1187 	out = fopen(tempf, "w");
1188 	if(!out) {
1189 		fatal_exit("could not open autotrust file for writing, %s: %s",
1190 			tempf, strerror(errno));
1191 		return;
1192 	}
1193 	if(!autr_write_contents(out, tempf, tp)) {
1194 		/* failed to write contents (completely) */
1195 		fclose(out);
1196 		unlink(tempf);
1197 		fatal_exit("could not completely write: %s", fname);
1198 		return;
1199 	}
1200 	if(fflush(out) != 0)
1201 		log_err("could not fflush(%s): %s", fname, strerror(errno));
1202 #ifdef HAVE_FSYNC
1203 	if(fsync(fileno(out)) != 0)
1204 		log_err("could not fsync(%s): %s", fname, strerror(errno));
1205 #else
1206 	FlushFileBuffers((HANDLE)_get_osfhandle(_fileno(out)));
1207 #endif
1208 	if(fclose(out) != 0) {
1209 		fatal_exit("could not complete write: %s: %s",
1210 			fname, strerror(errno));
1211 		unlink(tempf);
1212 		return;
1213 	}
1214 	/* success; overwrite actual file */
1215 	verbose(VERB_ALGO, "autotrust: replaced %s", fname);
1216 #ifdef UB_ON_WINDOWS
1217 	(void)unlink(fname); /* windows does not replace file with rename() */
1218 #endif
1219 	if(rename(tempf, fname) < 0) {
1220 		fatal_exit("rename(%s to %s): %s", tempf, fname, strerror(errno));
1221 	}
1222 }
1223 
1224 /**
1225  * Verify if dnskey works for trust point
1226  * @param env: environment (with time) for verification
1227  * @param ve: validator environment (with options) for verification.
1228  * @param tp: trust point to verify with
1229  * @param rrset: DNSKEY rrset to verify.
1230  * @return false on failure, true if verification successful.
1231  */
1232 static int
1233 verify_dnskey(struct module_env* env, struct val_env* ve,
1234         struct trust_anchor* tp, struct ub_packed_rrset_key* rrset)
1235 {
1236 	char* reason = NULL;
1237 	uint8_t sigalg[ALGO_NEEDS_MAX+1];
1238 	int downprot = env->cfg->harden_algo_downgrade;
1239 	enum sec_status sec = val_verify_DNSKEY_with_TA(env, ve, rrset,
1240 		tp->ds_rrset, tp->dnskey_rrset, downprot?sigalg:NULL, &reason);
1241 	/* sigalg is ignored, it returns algorithms signalled to exist, but
1242 	 * in 5011 there are no other rrsets to check.  if downprot is
1243 	 * enabled, then it checks that the DNSKEY is signed with all
1244 	 * algorithms available in the trust store. */
1245 	verbose(VERB_ALGO, "autotrust: validate DNSKEY with anchor: %s",
1246 		sec_status_to_string(sec));
1247 	return sec == sec_status_secure;
1248 }
1249 
1250 static int32_t
1251 rrsig_get_expiry(uint8_t* d, size_t len)
1252 {
1253 	/* rrsig: 2(rdlen), 2(type) 1(alg) 1(v) 4(origttl), then 4(expi), (4)incep) */
1254 	if(len < 2+8+4)
1255 		return 0;
1256 	return sldns_read_uint32(d+2+8);
1257 }
1258 
1259 /** Find minimum expiration interval from signatures */
1260 static time_t
1261 min_expiry(struct module_env* env, struct packed_rrset_data* dd)
1262 {
1263 	size_t i;
1264 	int32_t t, r = 15 * 24 * 3600; /* 15 days max */
1265 	for(i=dd->count; i<dd->count+dd->rrsig_count; i++) {
1266 		t = rrsig_get_expiry(dd->rr_data[i], dd->rr_len[i]);
1267 		if((int32_t)t - (int32_t)*env->now > 0) {
1268 			t -= (int32_t)*env->now;
1269 			if(t < r)
1270 				r = t;
1271 		}
1272 	}
1273 	return (time_t)r;
1274 }
1275 
1276 /** Is rr self-signed revoked key */
1277 static int
1278 rr_is_selfsigned_revoked(struct module_env* env, struct val_env* ve,
1279 	struct ub_packed_rrset_key* dnskey_rrset, size_t i)
1280 {
1281 	enum sec_status sec;
1282 	char* reason = NULL;
1283 	verbose(VERB_ALGO, "seen REVOKE flag, check self-signed, rr %d",
1284 		(int)i);
1285 	/* no algorithm downgrade protection necessary, if it is selfsigned
1286 	 * revoked it can be removed. */
1287 	sec = dnskey_verify_rrset(env, ve, dnskey_rrset, dnskey_rrset, i,
1288 		&reason);
1289 	return (sec == sec_status_secure);
1290 }
1291 
1292 /** Set fetched value */
1293 static void
1294 seen_trustanchor(struct autr_ta* ta, uint8_t seen)
1295 {
1296 	ta->fetched = seen;
1297 	if(ta->pending_count < 250) /* no numerical overflow, please */
1298 		ta->pending_count++;
1299 }
1300 
1301 /** set revoked value */
1302 static void
1303 seen_revoked_trustanchor(struct autr_ta* ta, uint8_t revoked)
1304 {
1305 	ta->revoked = revoked;
1306 }
1307 
1308 /** revoke a trust anchor */
1309 static void
1310 revoke_dnskey(struct autr_ta* ta, int off)
1311 {
1312 	uint16_t flags;
1313 	uint8_t* data;
1314 	if(sldns_wirerr_get_type(ta->rr, ta->rr_len, ta->dname_len) !=
1315 		LDNS_RR_TYPE_DNSKEY)
1316 		return;
1317 	if(sldns_wirerr_get_rdatalen(ta->rr, ta->rr_len, ta->dname_len) < 2)
1318 		return;
1319 	data = sldns_wirerr_get_rdata(ta->rr, ta->rr_len, ta->dname_len);
1320 	flags = sldns_read_uint16(data);
1321 	if (off && (flags&LDNS_KEY_REVOKE_KEY))
1322 		flags ^= LDNS_KEY_REVOKE_KEY; /* flip */
1323 	else
1324 		flags |= LDNS_KEY_REVOKE_KEY;
1325 	sldns_write_uint16(data, flags);
1326 }
1327 
1328 /** Compare two RRs skipping the REVOKED bit. Pass rdata(no len) */
1329 static int
1330 dnskey_compare_skip_revbit(uint8_t* a, size_t a_len, uint8_t* b, size_t b_len)
1331 {
1332 	size_t i;
1333 	if(a_len != b_len)
1334 		return -1;
1335 	/* compare RRs RDATA byte for byte. */
1336 	for(i = 0; i < a_len; i++)
1337 	{
1338 		uint8_t rdf1, rdf2;
1339 		rdf1 = a[i];
1340 		rdf2 = b[i];
1341 		if(i==1) {
1342 			/* this is the second part of the flags field */
1343 			rdf1 |= LDNS_KEY_REVOKE_KEY;
1344 			rdf2 |= LDNS_KEY_REVOKE_KEY;
1345 		}
1346 		if (rdf1 < rdf2)	return -1;
1347 		else if (rdf1 > rdf2)	return 1;
1348         }
1349 	return 0;
1350 }
1351 
1352 
1353 /** compare trust anchor with rdata, 0 if equal. Pass rdata(no len) */
1354 static int
1355 ta_compare(struct autr_ta* a, uint16_t t, uint8_t* b, size_t b_len)
1356 {
1357 	if(!a) return -1;
1358 	else if(!b) return -1;
1359 	else if(sldns_wirerr_get_type(a->rr, a->rr_len, a->dname_len) != t)
1360 		return (int)sldns_wirerr_get_type(a->rr, a->rr_len,
1361 			a->dname_len) - (int)t;
1362 	else if(t == LDNS_RR_TYPE_DNSKEY) {
1363 		return dnskey_compare_skip_revbit(
1364 			sldns_wirerr_get_rdata(a->rr, a->rr_len, a->dname_len),
1365 			sldns_wirerr_get_rdatalen(a->rr, a->rr_len,
1366 			a->dname_len), b, b_len);
1367 	}
1368 	else if(t == LDNS_RR_TYPE_DS) {
1369 		if(sldns_wirerr_get_rdatalen(a->rr, a->rr_len, a->dname_len) !=
1370 			b_len)
1371 			return -1;
1372 		return memcmp(sldns_wirerr_get_rdata(a->rr,
1373 			a->rr_len, a->dname_len), b, b_len);
1374 	}
1375 	return -1;
1376 }
1377 
1378 /**
1379  * Find key
1380  * @param tp: to search in
1381  * @param t: rr type of the rdata.
1382  * @param rdata: to look for  (no rdatalen in it)
1383  * @param rdata_len: length of rdata
1384  * @param result: returns NULL or the ta key looked for.
1385  * @return false on malloc failure during search. if true examine result.
1386  */
1387 static int
1388 find_key(struct trust_anchor* tp, uint16_t t, uint8_t* rdata, size_t rdata_len,
1389 	struct autr_ta** result)
1390 {
1391 	struct autr_ta* ta;
1392 	if(!tp || !rdata) {
1393 		*result = NULL;
1394 		return 0;
1395 	}
1396 	for(ta=tp->autr->keys; ta; ta=ta->next) {
1397 		if(ta_compare(ta, t, rdata, rdata_len) == 0) {
1398 			*result = ta;
1399 			return 1;
1400 		}
1401 	}
1402 	*result = NULL;
1403 	return 1;
1404 }
1405 
1406 /** add key and clone RR and tp already locked. rdata without rdlen. */
1407 static struct autr_ta*
1408 add_key(struct trust_anchor* tp, uint32_t ttl, uint8_t* rdata, size_t rdata_len)
1409 {
1410 	struct autr_ta* ta;
1411 	uint8_t* rr;
1412 	size_t rr_len, dname_len;
1413 	uint16_t rrtype = htons(LDNS_RR_TYPE_DNSKEY);
1414 	uint16_t rrclass = htons(LDNS_RR_CLASS_IN);
1415 	uint16_t rdlen = htons(rdata_len);
1416 	dname_len = tp->namelen;
1417 	ttl = htonl(ttl);
1418 	rr_len = dname_len + 10 /* type,class,ttl,rdatalen */ + rdata_len;
1419 	rr = (uint8_t*)malloc(rr_len);
1420 	if(!rr) return NULL;
1421 	memmove(rr, tp->name, tp->namelen);
1422 	memmove(rr+dname_len, &rrtype, 2);
1423 	memmove(rr+dname_len+2, &rrclass, 2);
1424 	memmove(rr+dname_len+4, &ttl, 4);
1425 	memmove(rr+dname_len+8, &rdlen, 2);
1426 	memmove(rr+dname_len+10, rdata, rdata_len);
1427 	ta = autr_ta_create(rr, rr_len, dname_len);
1428 	if(!ta) {
1429 		/* rr freed in autr_ta_create */
1430 		return NULL;
1431 	}
1432 	/* link in, tp already locked */
1433 	ta->next = tp->autr->keys;
1434 	tp->autr->keys = ta;
1435 	return ta;
1436 }
1437 
1438 /** get TTL from DNSKEY rrset */
1439 static time_t
1440 key_ttl(struct ub_packed_rrset_key* k)
1441 {
1442 	struct packed_rrset_data* d = (struct packed_rrset_data*)k->entry.data;
1443 	return d->ttl;
1444 }
1445 
1446 /** update the time values for the trustpoint */
1447 static void
1448 set_tp_times(struct trust_anchor* tp, time_t rrsig_exp_interval,
1449 	time_t origttl, int* changed)
1450 {
1451 	time_t x, qi = tp->autr->query_interval, rt = tp->autr->retry_time;
1452 
1453 	/* x = MIN(15days, ttl/2, expire/2) */
1454 	x = 15 * 24 * 3600;
1455 	if(origttl/2 < x)
1456 		x = origttl/2;
1457 	if(rrsig_exp_interval/2 < x)
1458 		x = rrsig_exp_interval/2;
1459 	/* MAX(1hr, x) */
1460 	if(!autr_permit_small_holddown) {
1461 		if(x < 3600)
1462 			tp->autr->query_interval = 3600;
1463 		else	tp->autr->query_interval = x;
1464 	}	else    tp->autr->query_interval = x;
1465 
1466 	/* x= MIN(1day, ttl/10, expire/10) */
1467 	x = 24 * 3600;
1468 	if(origttl/10 < x)
1469 		x = origttl/10;
1470 	if(rrsig_exp_interval/10 < x)
1471 		x = rrsig_exp_interval/10;
1472 	/* MAX(1hr, x) */
1473 	if(!autr_permit_small_holddown) {
1474 		if(x < 3600)
1475 			tp->autr->retry_time = 3600;
1476 		else	tp->autr->retry_time = x;
1477 	}	else    tp->autr->retry_time = x;
1478 
1479 	if(qi != tp->autr->query_interval || rt != tp->autr->retry_time) {
1480 		*changed = 1;
1481 		verbose(VERB_ALGO, "orig_ttl is %d", (int)origttl);
1482 		verbose(VERB_ALGO, "rrsig_exp_interval is %d",
1483 			(int)rrsig_exp_interval);
1484 		verbose(VERB_ALGO, "query_interval: %d, retry_time: %d",
1485 			(int)tp->autr->query_interval,
1486 			(int)tp->autr->retry_time);
1487 	}
1488 }
1489 
1490 /** init events to zero */
1491 static void
1492 init_events(struct trust_anchor* tp)
1493 {
1494 	struct autr_ta* ta;
1495 	for(ta=tp->autr->keys; ta; ta=ta->next) {
1496 		ta->fetched = 0;
1497 	}
1498 }
1499 
1500 /** check for revoked keys without trusting any other information */
1501 static void
1502 check_contains_revoked(struct module_env* env, struct val_env* ve,
1503 	struct trust_anchor* tp, struct ub_packed_rrset_key* dnskey_rrset,
1504 	int* changed)
1505 {
1506 	struct packed_rrset_data* dd = (struct packed_rrset_data*)
1507 		dnskey_rrset->entry.data;
1508 	size_t i;
1509 	log_assert(ntohs(dnskey_rrset->rk.type) == LDNS_RR_TYPE_DNSKEY);
1510 	for(i=0; i<dd->count; i++) {
1511 		struct autr_ta* ta = NULL;
1512 		if(!rr_is_dnskey_sep(ntohs(dnskey_rrset->rk.type),
1513 			dd->rr_data[i]+2, dd->rr_len[i]-2) ||
1514 			!rr_is_dnskey_revoked(ntohs(dnskey_rrset->rk.type),
1515 			dd->rr_data[i]+2, dd->rr_len[i]-2))
1516 			continue; /* not a revoked KSK */
1517 		if(!find_key(tp, ntohs(dnskey_rrset->rk.type),
1518 			dd->rr_data[i]+2, dd->rr_len[i]-2, &ta)) {
1519 			log_err("malloc failure");
1520 			continue; /* malloc fail in compare*/
1521 		}
1522 		if(!ta)
1523 			continue; /* key not found */
1524 		if(rr_is_selfsigned_revoked(env, ve, dnskey_rrset, i)) {
1525 			/* checked if there is an rrsig signed by this key. */
1526 			/* same keytag, but stored can be revoked already, so
1527 			 * compare keytags, with +0 or +128(REVOKE flag) */
1528 			log_assert(dnskey_calc_keytag(dnskey_rrset, i)-128 ==
1529 				sldns_calc_keytag_raw(sldns_wirerr_get_rdata(
1530 				ta->rr, ta->rr_len, ta->dname_len),
1531 				sldns_wirerr_get_rdatalen(ta->rr, ta->rr_len,
1532 				ta->dname_len)) ||
1533 				dnskey_calc_keytag(dnskey_rrset, i) ==
1534 				sldns_calc_keytag_raw(sldns_wirerr_get_rdata(
1535 				ta->rr, ta->rr_len, ta->dname_len),
1536 				sldns_wirerr_get_rdatalen(ta->rr, ta->rr_len,
1537 				ta->dname_len))); /* checks conversion*/
1538 			verbose_key(ta, VERB_ALGO, "is self-signed revoked");
1539 			if(!ta->revoked)
1540 				*changed = 1;
1541 			seen_revoked_trustanchor(ta, 1);
1542 			do_revoked(env, ta, changed);
1543 		}
1544 	}
1545 }
1546 
1547 /** See if a DNSKEY is verified by one of the DSes */
1548 static int
1549 key_matches_a_ds(struct module_env* env, struct val_env* ve,
1550 	struct ub_packed_rrset_key* dnskey_rrset, size_t key_idx,
1551 	struct ub_packed_rrset_key* ds_rrset)
1552 {
1553 	struct packed_rrset_data* dd = (struct packed_rrset_data*)
1554 	                ds_rrset->entry.data;
1555 	size_t ds_idx, num = dd->count;
1556 	int d = val_favorite_ds_algo(ds_rrset);
1557 	char* reason = "";
1558 	for(ds_idx=0; ds_idx<num; ds_idx++) {
1559 		if(!ds_digest_algo_is_supported(ds_rrset, ds_idx) ||
1560 			!ds_key_algo_is_supported(ds_rrset, ds_idx) ||
1561 			ds_get_digest_algo(ds_rrset, ds_idx) != d)
1562 			continue;
1563 		if(ds_get_key_algo(ds_rrset, ds_idx)
1564 		   != dnskey_get_algo(dnskey_rrset, key_idx)
1565 		   || dnskey_calc_keytag(dnskey_rrset, key_idx)
1566 		   != ds_get_keytag(ds_rrset, ds_idx)) {
1567 			continue;
1568 		}
1569 		if(!ds_digest_match_dnskey(env, dnskey_rrset, key_idx,
1570 			ds_rrset, ds_idx)) {
1571 			verbose(VERB_ALGO, "DS match attempt failed");
1572 			continue;
1573 		}
1574 		/* match of hash is sufficient for bootstrap of trust point */
1575 		(void)reason;
1576 		(void)ve;
1577 		return 1;
1578 		/* no need to check RRSIG, DS hash already matched with source
1579 		if(dnskey_verify_rrset(env, ve, dnskey_rrset,
1580 			dnskey_rrset, key_idx, &reason) == sec_status_secure) {
1581 			return 1;
1582 		} else {
1583 			verbose(VERB_ALGO, "DS match failed because the key "
1584 				"does not verify the keyset: %s", reason);
1585 		}
1586 		*/
1587 	}
1588 	return 0;
1589 }
1590 
1591 /** Set update events */
1592 static int
1593 update_events(struct module_env* env, struct val_env* ve,
1594 	struct trust_anchor* tp, struct ub_packed_rrset_key* dnskey_rrset,
1595 	int* changed)
1596 {
1597 	struct packed_rrset_data* dd = (struct packed_rrset_data*)
1598 		dnskey_rrset->entry.data;
1599 	size_t i;
1600 	log_assert(ntohs(dnskey_rrset->rk.type) == LDNS_RR_TYPE_DNSKEY);
1601 	init_events(tp);
1602 	for(i=0; i<dd->count; i++) {
1603 		struct autr_ta* ta = NULL;
1604 		if(!rr_is_dnskey_sep(ntohs(dnskey_rrset->rk.type),
1605 			dd->rr_data[i]+2, dd->rr_len[i]-2))
1606 			continue;
1607 		if(rr_is_dnskey_revoked(ntohs(dnskey_rrset->rk.type),
1608 			dd->rr_data[i]+2, dd->rr_len[i]-2)) {
1609 			/* self-signed revoked keys already detected before,
1610 			 * other revoked keys are not 'added' again */
1611 			continue;
1612 		}
1613 		/* is a key of this type supported?. Note rr_list and
1614 		 * packed_rrset are in the same order. */
1615 		if(!dnskey_algo_is_supported(dnskey_rrset, i)) {
1616 			/* skip unknown algorithm key, it is useless to us */
1617 			log_nametypeclass(VERB_DETAIL, "trust point has "
1618 				"unsupported algorithm at",
1619 				tp->name, LDNS_RR_TYPE_DNSKEY, tp->dclass);
1620 			continue;
1621 		}
1622 
1623 		/* is it new? if revocation bit set, find the unrevoked key */
1624 		if(!find_key(tp, ntohs(dnskey_rrset->rk.type),
1625 			dd->rr_data[i]+2, dd->rr_len[i]-2, &ta)) {
1626 			return 0;
1627 		}
1628 		if(!ta) {
1629 			ta = add_key(tp, (uint32_t)dd->rr_ttl[i],
1630 				dd->rr_data[i]+2, dd->rr_len[i]-2);
1631 			*changed = 1;
1632 			/* first time seen, do we have DSes? if match: VALID */
1633 			if(ta && tp->ds_rrset && key_matches_a_ds(env, ve,
1634 				dnskey_rrset, i, tp->ds_rrset)) {
1635 				verbose_key(ta, VERB_ALGO, "verified by DS");
1636 				ta->s = AUTR_STATE_VALID;
1637 			}
1638 		}
1639 		if(!ta) {
1640 			return 0;
1641 		}
1642 		seen_trustanchor(ta, 1);
1643 		verbose_key(ta, VERB_ALGO, "in DNS response");
1644 	}
1645 	set_tp_times(tp, min_expiry(env, dd), key_ttl(dnskey_rrset), changed);
1646 	return 1;
1647 }
1648 
1649 /**
1650  * Check if the holddown time has already exceeded
1651  * setting: add-holddown: add holddown timer
1652  * setting: del-holddown: del holddown timer
1653  * @param env: environment with current time
1654  * @param ta: trust anchor to check for.
1655  * @param holddown: the timer value
1656  * @return number of seconds the holddown has passed.
1657  */
1658 static time_t
1659 check_holddown(struct module_env* env, struct autr_ta* ta,
1660 	unsigned int holddown)
1661 {
1662         time_t elapsed;
1663 	if(*env->now < ta->last_change) {
1664 		log_warn("time goes backwards. delaying key holddown");
1665 		return 0;
1666 	}
1667 	elapsed = *env->now - ta->last_change;
1668         if (elapsed > (time_t)holddown) {
1669                 return elapsed-(time_t)holddown;
1670         }
1671 	verbose_key(ta, VERB_ALGO, "holddown time " ARG_LL "d seconds to go",
1672 		(long long) ((time_t)holddown-elapsed));
1673         return 0;
1674 }
1675 
1676 
1677 /** Set last_change to now */
1678 static void
1679 reset_holddown(struct module_env* env, struct autr_ta* ta, int* changed)
1680 {
1681 	ta->last_change = *env->now;
1682 	*changed = 1;
1683 }
1684 
1685 /** Set the state for this trust anchor */
1686 static void
1687 set_trustanchor_state(struct module_env* env, struct autr_ta* ta, int* changed,
1688 	autr_state_t s)
1689 {
1690 	verbose_key(ta, VERB_ALGO, "update: %s to %s",
1691 		trustanchor_state2str(ta->s), trustanchor_state2str(s));
1692 	ta->s = s;
1693 	reset_holddown(env, ta, changed);
1694 }
1695 
1696 
1697 /** Event: NewKey */
1698 static void
1699 do_newkey(struct module_env* env, struct autr_ta* anchor, int* c)
1700 {
1701 	if (anchor->s == AUTR_STATE_START)
1702 		set_trustanchor_state(env, anchor, c, AUTR_STATE_ADDPEND);
1703 }
1704 
1705 /** Event: AddTime */
1706 static void
1707 do_addtime(struct module_env* env, struct autr_ta* anchor, int* c)
1708 {
1709 	/* This not according to RFC, this is 30 days, but the RFC demands
1710 	 * MAX(30days, TTL expire time of first DNSKEY set with this key),
1711 	 * The value may be too small if a very large TTL was used. */
1712 	time_t exceeded = check_holddown(env, anchor, env->cfg->add_holddown);
1713 	if (exceeded && anchor->s == AUTR_STATE_ADDPEND) {
1714 		verbose_key(anchor, VERB_ALGO, "add-holddown time exceeded "
1715 			ARG_LL "d seconds ago, and pending-count %d",
1716 			(long long)exceeded, anchor->pending_count);
1717 		if(anchor->pending_count >= MIN_PENDINGCOUNT) {
1718 			set_trustanchor_state(env, anchor, c, AUTR_STATE_VALID);
1719 			anchor->pending_count = 0;
1720 			return;
1721 		}
1722 		verbose_key(anchor, VERB_ALGO, "add-holddown time sanity check "
1723 			"failed (pending count: %d)", anchor->pending_count);
1724 	}
1725 }
1726 
1727 /** Event: RemTime */
1728 static void
1729 do_remtime(struct module_env* env, struct autr_ta* anchor, int* c)
1730 {
1731 	time_t exceeded = check_holddown(env, anchor, env->cfg->del_holddown);
1732 	if(exceeded && anchor->s == AUTR_STATE_REVOKED) {
1733 		verbose_key(anchor, VERB_ALGO, "del-holddown time exceeded "
1734 			ARG_LL "d seconds ago", (long long)exceeded);
1735 		set_trustanchor_state(env, anchor, c, AUTR_STATE_REMOVED);
1736 	}
1737 }
1738 
1739 /** Event: KeyRem */
1740 static void
1741 do_keyrem(struct module_env* env, struct autr_ta* anchor, int* c)
1742 {
1743 	if(anchor->s == AUTR_STATE_ADDPEND) {
1744 		set_trustanchor_state(env, anchor, c, AUTR_STATE_START);
1745 		anchor->pending_count = 0;
1746 	} else if(anchor->s == AUTR_STATE_VALID)
1747 		set_trustanchor_state(env, anchor, c, AUTR_STATE_MISSING);
1748 }
1749 
1750 /** Event: KeyPres */
1751 static void
1752 do_keypres(struct module_env* env, struct autr_ta* anchor, int* c)
1753 {
1754 	if(anchor->s == AUTR_STATE_MISSING)
1755 		set_trustanchor_state(env, anchor, c, AUTR_STATE_VALID);
1756 }
1757 
1758 /* Event: Revoked */
1759 static void
1760 do_revoked(struct module_env* env, struct autr_ta* anchor, int* c)
1761 {
1762 	if(anchor->s == AUTR_STATE_VALID || anchor->s == AUTR_STATE_MISSING) {
1763                 set_trustanchor_state(env, anchor, c, AUTR_STATE_REVOKED);
1764 		verbose_key(anchor, VERB_ALGO, "old id, prior to revocation");
1765                 revoke_dnskey(anchor, 0);
1766 		verbose_key(anchor, VERB_ALGO, "new id, after revocation");
1767 	}
1768 }
1769 
1770 /** Do statestable transition matrix for anchor */
1771 static void
1772 anchor_state_update(struct module_env* env, struct autr_ta* anchor, int* c)
1773 {
1774 	log_assert(anchor);
1775 	switch(anchor->s) {
1776 	/* START */
1777 	case AUTR_STATE_START:
1778 		/* NewKey: ADDPEND */
1779 		if (anchor->fetched)
1780 			do_newkey(env, anchor, c);
1781 		break;
1782 	/* ADDPEND */
1783 	case AUTR_STATE_ADDPEND:
1784 		/* KeyRem: START */
1785 		if (!anchor->fetched)
1786 			do_keyrem(env, anchor, c);
1787 		/* AddTime: VALID */
1788 		else	do_addtime(env, anchor, c);
1789 		break;
1790 	/* VALID */
1791 	case AUTR_STATE_VALID:
1792 		/* RevBit: REVOKED */
1793 		if (anchor->revoked)
1794 			do_revoked(env, anchor, c);
1795 		/* KeyRem: MISSING */
1796 		else if (!anchor->fetched)
1797 			do_keyrem(env, anchor, c);
1798 		else if(!anchor->last_change) {
1799 			verbose_key(anchor, VERB_ALGO, "first seen");
1800 			reset_holddown(env, anchor, c);
1801 		}
1802 		break;
1803 	/* MISSING */
1804 	case AUTR_STATE_MISSING:
1805 		/* RevBit: REVOKED */
1806 		if (anchor->revoked)
1807 			do_revoked(env, anchor, c);
1808 		/* KeyPres */
1809 		else if (anchor->fetched)
1810 			do_keypres(env, anchor, c);
1811 		break;
1812 	/* REVOKED */
1813 	case AUTR_STATE_REVOKED:
1814 		if (anchor->fetched)
1815 			reset_holddown(env, anchor, c);
1816 		/* RemTime: REMOVED */
1817 		else	do_remtime(env, anchor, c);
1818 		break;
1819 	/* REMOVED */
1820 	case AUTR_STATE_REMOVED:
1821 	default:
1822 		break;
1823 	}
1824 }
1825 
1826 /** if ZSK init then trust KSKs */
1827 static int
1828 init_zsk_to_ksk(struct module_env* env, struct trust_anchor* tp, int* changed)
1829 {
1830 	/* search for VALID ZSKs */
1831 	struct autr_ta* anchor;
1832 	int validzsk = 0;
1833 	int validksk = 0;
1834 	for(anchor = tp->autr->keys; anchor; anchor = anchor->next) {
1835 		/* last_change test makes sure it was manually configured */
1836 		if(sldns_wirerr_get_type(anchor->rr, anchor->rr_len,
1837 			anchor->dname_len) == LDNS_RR_TYPE_DNSKEY &&
1838 			anchor->last_change == 0 &&
1839 			!ta_is_dnskey_sep(anchor) &&
1840 			anchor->s == AUTR_STATE_VALID)
1841                         validzsk++;
1842 	}
1843 	if(validzsk == 0)
1844 		return 0;
1845 	for(anchor = tp->autr->keys; anchor; anchor = anchor->next) {
1846                 if (ta_is_dnskey_sep(anchor) &&
1847 			anchor->s == AUTR_STATE_ADDPEND) {
1848 			verbose_key(anchor, VERB_ALGO, "trust KSK from "
1849 				"ZSK(config)");
1850 			set_trustanchor_state(env, anchor, changed,
1851 				AUTR_STATE_VALID);
1852 			validksk++;
1853 		}
1854 	}
1855 	return validksk;
1856 }
1857 
1858 /** Remove missing trustanchors so the list does not grow forever */
1859 static void
1860 remove_missing_trustanchors(struct module_env* env, struct trust_anchor* tp,
1861 	int* changed)
1862 {
1863 	struct autr_ta* anchor;
1864 	time_t exceeded;
1865 	int valid = 0;
1866 	/* see if we have anchors that are valid */
1867 	for(anchor = tp->autr->keys; anchor; anchor = anchor->next) {
1868 		/* Only do KSKs */
1869                 if (!ta_is_dnskey_sep(anchor))
1870                         continue;
1871                 if (anchor->s == AUTR_STATE_VALID)
1872                         valid++;
1873 	}
1874 	/* if there are no SEP Valid anchors, see if we started out with
1875 	 * a ZSK (last-change=0) anchor, which is VALID and there are KSKs
1876 	 * now that can be made valid.  Do this immediately because there
1877 	 * is no guarantee that the ZSKs get announced long enough.  Usually
1878 	 * this is immediately after init with a ZSK trusted, unless the domain
1879 	 * was not advertising any KSKs at all.  In which case we perfectly
1880 	 * track the zero number of KSKs. */
1881 	if(valid == 0) {
1882 		valid = init_zsk_to_ksk(env, tp, changed);
1883 		if(valid == 0)
1884 			return;
1885 	}
1886 
1887 	for(anchor = tp->autr->keys; anchor; anchor = anchor->next) {
1888 		/* ignore ZSKs if newly added */
1889 		if(anchor->s == AUTR_STATE_START)
1890 			continue;
1891 		/* remove ZSKs if a KSK is present */
1892                 if (!ta_is_dnskey_sep(anchor)) {
1893 			if(valid > 0) {
1894 				verbose_key(anchor, VERB_ALGO, "remove ZSK "
1895 					"[%d key(s) VALID]", valid);
1896 				set_trustanchor_state(env, anchor, changed,
1897 					AUTR_STATE_REMOVED);
1898 			}
1899                         continue;
1900 		}
1901                 /* Only do MISSING keys */
1902                 if (anchor->s != AUTR_STATE_MISSING)
1903                         continue;
1904 		if(env->cfg->keep_missing == 0)
1905 			continue; /* keep forever */
1906 
1907 		exceeded = check_holddown(env, anchor, env->cfg->keep_missing);
1908 		/* If keep_missing has exceeded and we still have more than
1909 		 * one valid KSK: remove missing trust anchor */
1910                 if (exceeded && valid > 0) {
1911 			verbose_key(anchor, VERB_ALGO, "keep-missing time "
1912 				"exceeded " ARG_LL "d seconds ago, [%d key(s) VALID]",
1913 				(long long)exceeded, valid);
1914 			set_trustanchor_state(env, anchor, changed,
1915 				AUTR_STATE_REMOVED);
1916 		}
1917 	}
1918 }
1919 
1920 /** Do the statetable from RFC5011 transition matrix */
1921 static int
1922 do_statetable(struct module_env* env, struct trust_anchor* tp, int* changed)
1923 {
1924 	struct autr_ta* anchor;
1925 	for(anchor = tp->autr->keys; anchor; anchor = anchor->next) {
1926 		/* Only do KSKs */
1927 		if(!ta_is_dnskey_sep(anchor))
1928 			continue;
1929 		anchor_state_update(env, anchor, changed);
1930 	}
1931 	remove_missing_trustanchors(env, tp, changed);
1932 	return 1;
1933 }
1934 
1935 /** See if time alone makes ADDPEND to VALID transition */
1936 static void
1937 autr_holddown_exceed(struct module_env* env, struct trust_anchor* tp, int* c)
1938 {
1939 	struct autr_ta* anchor;
1940 	for(anchor = tp->autr->keys; anchor; anchor = anchor->next) {
1941 		if(ta_is_dnskey_sep(anchor) &&
1942 			anchor->s == AUTR_STATE_ADDPEND)
1943 			do_addtime(env, anchor, c);
1944 	}
1945 }
1946 
1947 /** cleanup key list */
1948 static void
1949 autr_cleanup_keys(struct trust_anchor* tp)
1950 {
1951 	struct autr_ta* p, **prevp;
1952 	prevp = &tp->autr->keys;
1953 	p = tp->autr->keys;
1954 	while(p) {
1955 		/* do we want to remove this key? */
1956 		if(p->s == AUTR_STATE_START || p->s == AUTR_STATE_REMOVED ||
1957 			sldns_wirerr_get_type(p->rr, p->rr_len, p->dname_len)
1958 			!= LDNS_RR_TYPE_DNSKEY) {
1959 			struct autr_ta* np = p->next;
1960 			/* remove */
1961 			free(p->rr);
1962 			free(p);
1963 			/* snip and go to next item */
1964 			*prevp = np;
1965 			p = np;
1966 			continue;
1967 		}
1968 		/* remove pending counts if no longer pending */
1969 		if(p->s != AUTR_STATE_ADDPEND)
1970 			p->pending_count = 0;
1971 		prevp = &p->next;
1972 		p = p->next;
1973 	}
1974 }
1975 
1976 /** calculate next probe time */
1977 static time_t
1978 calc_next_probe(struct module_env* env, time_t wait)
1979 {
1980 	/* make it random, 90-100% */
1981 	time_t rnd, rest;
1982 	if(!autr_permit_small_holddown) {
1983 		if(wait < 3600)
1984 			wait = 3600;
1985 	} else {
1986 		if(wait == 0) wait = 1;
1987 	}
1988 	rnd = wait/10;
1989 	rest = wait-rnd;
1990 	rnd = (time_t)ub_random_max(env->rnd, (long int)rnd);
1991 	return (time_t)(*env->now + rest + rnd);
1992 }
1993 
1994 /** what is first probe time (anchors must be locked) */
1995 static time_t
1996 wait_probe_time(struct val_anchors* anchors)
1997 {
1998 	rbnode_t* t = rbtree_first(&anchors->autr->probe);
1999 	if(t != RBTREE_NULL)
2000 		return ((struct trust_anchor*)t->key)->autr->next_probe_time;
2001 	return 0;
2002 }
2003 
2004 /** reset worker timer */
2005 static void
2006 reset_worker_timer(struct module_env* env)
2007 {
2008 	struct timeval tv;
2009 #ifndef S_SPLINT_S
2010 	time_t next = (time_t)wait_probe_time(env->anchors);
2011 	/* in case this is libunbound, no timer */
2012 	if(!env->probe_timer)
2013 		return;
2014 	if(next > *env->now)
2015 		tv.tv_sec = (time_t)(next - *env->now);
2016 	else	tv.tv_sec = 0;
2017 #endif
2018 	tv.tv_usec = 0;
2019 	comm_timer_set(env->probe_timer, &tv);
2020 	verbose(VERB_ALGO, "scheduled next probe in " ARG_LL "d sec", (long long)tv.tv_sec);
2021 }
2022 
2023 /** set next probe for trust anchor */
2024 static int
2025 set_next_probe(struct module_env* env, struct trust_anchor* tp,
2026 	struct ub_packed_rrset_key* dnskey_rrset)
2027 {
2028 	struct trust_anchor key, *tp2;
2029 	time_t mold, mnew;
2030 	/* use memory allocated in rrset for temporary name storage */
2031 	key.node.key = &key;
2032 	key.name = dnskey_rrset->rk.dname;
2033 	key.namelen = dnskey_rrset->rk.dname_len;
2034 	key.namelabs = dname_count_labels(key.name);
2035 	key.dclass = tp->dclass;
2036 	lock_basic_unlock(&tp->lock);
2037 
2038 	/* fetch tp again and lock anchors, so that we can modify the trees */
2039 	lock_basic_lock(&env->anchors->lock);
2040 	tp2 = (struct trust_anchor*)rbtree_search(env->anchors->tree, &key);
2041 	if(!tp2) {
2042 		verbose(VERB_ALGO, "trustpoint was deleted in set_next_probe");
2043 		lock_basic_unlock(&env->anchors->lock);
2044 		return 0;
2045 	}
2046 	log_assert(tp == tp2);
2047 	lock_basic_lock(&tp->lock);
2048 
2049 	/* schedule */
2050 	mold = wait_probe_time(env->anchors);
2051 	(void)rbtree_delete(&env->anchors->autr->probe, tp);
2052 	tp->autr->next_probe_time = calc_next_probe(env,
2053 		tp->autr->query_interval);
2054 	(void)rbtree_insert(&env->anchors->autr->probe, &tp->autr->pnode);
2055 	mnew = wait_probe_time(env->anchors);
2056 
2057 	lock_basic_unlock(&env->anchors->lock);
2058 	verbose(VERB_ALGO, "next probe set in %d seconds",
2059 		(int)tp->autr->next_probe_time - (int)*env->now);
2060 	if(mold != mnew) {
2061 		reset_worker_timer(env);
2062 	}
2063 	return 1;
2064 }
2065 
2066 /** Revoke and Delete a trust point */
2067 static void
2068 autr_tp_remove(struct module_env* env, struct trust_anchor* tp,
2069 	struct ub_packed_rrset_key* dnskey_rrset)
2070 {
2071 	struct trust_anchor* del_tp;
2072 	struct trust_anchor key;
2073 	struct autr_point_data pd;
2074 	time_t mold, mnew;
2075 
2076 	log_nametypeclass(VERB_OPS, "trust point was revoked",
2077 		tp->name, LDNS_RR_TYPE_DNSKEY, tp->dclass);
2078 	tp->autr->revoked = 1;
2079 
2080 	/* use space allocated for dnskey_rrset to save name of anchor */
2081 	memset(&key, 0, sizeof(key));
2082 	memset(&pd, 0, sizeof(pd));
2083 	key.autr = &pd;
2084 	key.node.key = &key;
2085 	pd.pnode.key = &key;
2086 	pd.next_probe_time = tp->autr->next_probe_time;
2087 	key.name = dnskey_rrset->rk.dname;
2088 	key.namelen = tp->namelen;
2089 	key.namelabs = tp->namelabs;
2090 	key.dclass = tp->dclass;
2091 
2092 	/* unlock */
2093 	lock_basic_unlock(&tp->lock);
2094 
2095 	/* take from tree. It could be deleted by someone else,hence (void). */
2096 	lock_basic_lock(&env->anchors->lock);
2097 	del_tp = (struct trust_anchor*)rbtree_delete(env->anchors->tree, &key);
2098 	mold = wait_probe_time(env->anchors);
2099 	(void)rbtree_delete(&env->anchors->autr->probe, &key);
2100 	mnew = wait_probe_time(env->anchors);
2101 	anchors_init_parents_locked(env->anchors);
2102 	lock_basic_unlock(&env->anchors->lock);
2103 
2104 	/* if !del_tp then the trust point is no longer present in the tree,
2105 	 * it was deleted by someone else, who will write the zonefile and
2106 	 * clean up the structure */
2107 	if(del_tp) {
2108 		/* save on disk */
2109 		del_tp->autr->next_probe_time = 0; /* no more probing for it */
2110 		autr_write_file(env, del_tp);
2111 
2112 		/* delete */
2113 		autr_point_delete(del_tp);
2114 	}
2115 	if(mold != mnew) {
2116 		reset_worker_timer(env);
2117 	}
2118 }
2119 
2120 int autr_process_prime(struct module_env* env, struct val_env* ve,
2121 	struct trust_anchor* tp, struct ub_packed_rrset_key* dnskey_rrset)
2122 {
2123 	int changed = 0;
2124 	log_assert(tp && tp->autr);
2125 	/* autotrust update trust anchors */
2126 	/* the tp is locked, and stays locked unless it is deleted */
2127 
2128 	/* we could just catch the anchor here while another thread
2129 	 * is busy deleting it. Just unlock and let the other do its job */
2130 	if(tp->autr->revoked) {
2131 		log_nametypeclass(VERB_ALGO, "autotrust not processed, "
2132 			"trust point revoked", tp->name,
2133 			LDNS_RR_TYPE_DNSKEY, tp->dclass);
2134 		lock_basic_unlock(&tp->lock);
2135 		return 0; /* it is revoked */
2136 	}
2137 
2138 	/* query_dnskeys(): */
2139 	tp->autr->last_queried = *env->now;
2140 
2141 	log_nametypeclass(VERB_ALGO, "autotrust process for",
2142 		tp->name, LDNS_RR_TYPE_DNSKEY, tp->dclass);
2143 	/* see if time alone makes some keys valid */
2144 	autr_holddown_exceed(env, tp, &changed);
2145 	if(changed) {
2146 		verbose(VERB_ALGO, "autotrust: morekeys, reassemble");
2147 		if(!autr_assemble(tp)) {
2148 			log_err("malloc failure assembling autotrust keys");
2149 			return 1; /* unchanged */
2150 		}
2151 	}
2152 	/* did we get any data? */
2153 	if(!dnskey_rrset) {
2154 		verbose(VERB_ALGO, "autotrust: no dnskey rrset");
2155 		/* no update of query_failed, because then we would have
2156 		 * to write to disk. But we cannot because we maybe are
2157 		 * still 'initialising' with DS records, that we cannot write
2158 		 * in the full format (which only contains KSKs). */
2159 		return 1; /* trust point exists */
2160 	}
2161 	/* check for revoked keys to remove immediately */
2162 	check_contains_revoked(env, ve, tp, dnskey_rrset, &changed);
2163 	if(changed) {
2164 		verbose(VERB_ALGO, "autotrust: revokedkeys, reassemble");
2165 		if(!autr_assemble(tp)) {
2166 			log_err("malloc failure assembling autotrust keys");
2167 			return 1; /* unchanged */
2168 		}
2169 		if(!tp->ds_rrset && !tp->dnskey_rrset) {
2170 			/* no more keys, all are revoked */
2171 			/* this is a success for this probe attempt */
2172 			tp->autr->last_success = *env->now;
2173 			autr_tp_remove(env, tp, dnskey_rrset);
2174 			return 0; /* trust point removed */
2175 		}
2176 	}
2177 	/* verify the dnskey rrset and see if it is valid. */
2178 	if(!verify_dnskey(env, ve, tp, dnskey_rrset)) {
2179 		verbose(VERB_ALGO, "autotrust: dnskey did not verify.");
2180 		/* only increase failure count if this is not the first prime,
2181 		 * this means there was a previous successful probe */
2182 		if(tp->autr->last_success) {
2183 			tp->autr->query_failed += 1;
2184 			autr_write_file(env, tp);
2185 		}
2186 		return 1; /* trust point exists */
2187 	}
2188 
2189 	tp->autr->last_success = *env->now;
2190 	tp->autr->query_failed = 0;
2191 
2192 	/* Add new trust anchors to the data structure
2193 	 * - note which trust anchors are seen this probe.
2194 	 * Set trustpoint query_interval and retry_time.
2195 	 * - find minimum rrsig expiration interval
2196 	 */
2197 	if(!update_events(env, ve, tp, dnskey_rrset, &changed)) {
2198 		log_err("malloc failure in autotrust update_events. "
2199 			"trust point unchanged.");
2200 		return 1; /* trust point unchanged, so exists */
2201 	}
2202 
2203 	/* - for every SEP key do the 5011 statetable.
2204 	 * - remove missing trustanchors (if veryold and we have new anchors).
2205 	 */
2206 	if(!do_statetable(env, tp, &changed)) {
2207 		log_err("malloc failure in autotrust do_statetable. "
2208 			"trust point unchanged.");
2209 		return 1; /* trust point unchanged, so exists */
2210 	}
2211 
2212 	autr_cleanup_keys(tp);
2213 	if(!set_next_probe(env, tp, dnskey_rrset))
2214 		return 0; /* trust point does not exist */
2215 	autr_write_file(env, tp);
2216 	if(changed) {
2217 		verbose(VERB_ALGO, "autotrust: changed, reassemble");
2218 		if(!autr_assemble(tp)) {
2219 			log_err("malloc failure assembling autotrust keys");
2220 			return 1; /* unchanged */
2221 		}
2222 		if(!tp->ds_rrset && !tp->dnskey_rrset) {
2223 			/* no more keys, all are revoked */
2224 			autr_tp_remove(env, tp, dnskey_rrset);
2225 			return 0; /* trust point removed */
2226 		}
2227 	} else verbose(VERB_ALGO, "autotrust: no changes");
2228 
2229 	return 1; /* trust point exists */
2230 }
2231 
2232 /** debug print a trust anchor key */
2233 static void
2234 autr_debug_print_ta(struct autr_ta* ta)
2235 {
2236 	char buf[32];
2237 	char* str = sldns_wire2str_rr(ta->rr, ta->rr_len);
2238 	if(!str) {
2239 		log_info("out of memory in debug_print_ta");
2240 		return;
2241 	}
2242 	if(str && str[0]) str[strlen(str)-1]=0; /* remove newline */
2243 	ctime_r(&ta->last_change, buf);
2244 	if(buf[0]) buf[strlen(buf)-1]=0; /* remove newline */
2245 	log_info("[%s] %s ;;state:%d ;;pending_count:%d%s%s last:%s",
2246 		trustanchor_state2str(ta->s), str, ta->s, ta->pending_count,
2247 		ta->fetched?" fetched":"", ta->revoked?" revoked":"", buf);
2248 	free(str);
2249 }
2250 
2251 /** debug print a trust point */
2252 static void
2253 autr_debug_print_tp(struct trust_anchor* tp)
2254 {
2255 	struct autr_ta* ta;
2256 	char buf[257];
2257 	if(!tp->autr)
2258 		return;
2259 	dname_str(tp->name, buf);
2260 	log_info("trust point %s : %d", buf, (int)tp->dclass);
2261 	log_info("assembled %d DS and %d DNSKEYs",
2262 		(int)tp->numDS, (int)tp->numDNSKEY);
2263 	if(tp->ds_rrset) {
2264 		log_packed_rrset(0, "DS:", tp->ds_rrset);
2265 	}
2266 	if(tp->dnskey_rrset) {
2267 		log_packed_rrset(0, "DNSKEY:", tp->dnskey_rrset);
2268 	}
2269 	log_info("file %s", tp->autr->file);
2270 	ctime_r(&tp->autr->last_queried, buf);
2271 	if(buf[0]) buf[strlen(buf)-1]=0; /* remove newline */
2272 	log_info("last_queried: %u %s", (unsigned)tp->autr->last_queried, buf);
2273 	ctime_r(&tp->autr->last_success, buf);
2274 	if(buf[0]) buf[strlen(buf)-1]=0; /* remove newline */
2275 	log_info("last_success: %u %s", (unsigned)tp->autr->last_success, buf);
2276 	ctime_r(&tp->autr->next_probe_time, buf);
2277 	if(buf[0]) buf[strlen(buf)-1]=0; /* remove newline */
2278 	log_info("next_probe_time: %u %s", (unsigned)tp->autr->next_probe_time,
2279 		buf);
2280 	log_info("query_interval: %u", (unsigned)tp->autr->query_interval);
2281 	log_info("retry_time: %u", (unsigned)tp->autr->retry_time);
2282 	log_info("query_failed: %u", (unsigned)tp->autr->query_failed);
2283 
2284 	for(ta=tp->autr->keys; ta; ta=ta->next) {
2285 		autr_debug_print_ta(ta);
2286 	}
2287 }
2288 
2289 void
2290 autr_debug_print(struct val_anchors* anchors)
2291 {
2292 	struct trust_anchor* tp;
2293 	lock_basic_lock(&anchors->lock);
2294 	RBTREE_FOR(tp, struct trust_anchor*, anchors->tree) {
2295 		lock_basic_lock(&tp->lock);
2296 		autr_debug_print_tp(tp);
2297 		lock_basic_unlock(&tp->lock);
2298 	}
2299 	lock_basic_unlock(&anchors->lock);
2300 }
2301 
2302 void probe_answer_cb(void* arg, int ATTR_UNUSED(rcode),
2303 	sldns_buffer* ATTR_UNUSED(buf), enum sec_status ATTR_UNUSED(sec),
2304 	char* ATTR_UNUSED(why_bogus))
2305 {
2306 	/* retry was set before the query was done,
2307 	 * re-querytime is set when query succeeded, but that may not
2308 	 * have reset this timer because the query could have been
2309 	 * handled by another thread. In that case, this callback would
2310 	 * get called after the original timeout is done.
2311 	 * By not resetting the timer, it may probe more often, but not
2312 	 * less often.
2313 	 * Unless the new lookup resulted in smaller TTLs and thus smaller
2314 	 * timeout values. In that case one old TTL could be mistakenly done.
2315 	 */
2316 	struct module_env* env = (struct module_env*)arg;
2317 	verbose(VERB_ALGO, "autotrust probe answer cb");
2318 	reset_worker_timer(env);
2319 }
2320 
2321 /** probe a trust anchor DNSKEY and unlocks tp */
2322 static void
2323 probe_anchor(struct module_env* env, struct trust_anchor* tp)
2324 {
2325 	struct query_info qinfo;
2326 	uint16_t qflags = BIT_RD;
2327 	struct edns_data edns;
2328 	sldns_buffer* buf = env->scratch_buffer;
2329 	qinfo.qname = regional_alloc_init(env->scratch, tp->name, tp->namelen);
2330 	if(!qinfo.qname) {
2331 		log_err("out of memory making 5011 probe");
2332 		return;
2333 	}
2334 	qinfo.qname_len = tp->namelen;
2335 	qinfo.qtype = LDNS_RR_TYPE_DNSKEY;
2336 	qinfo.qclass = tp->dclass;
2337 	log_query_info(VERB_ALGO, "autotrust probe", &qinfo);
2338 	verbose(VERB_ALGO, "retry probe set in %d seconds",
2339 		(int)tp->autr->next_probe_time - (int)*env->now);
2340 	edns.edns_present = 1;
2341 	edns.ext_rcode = 0;
2342 	edns.edns_version = 0;
2343 	edns.bits = EDNS_DO;
2344 	edns.opt_list = NULL;
2345 	if(sldns_buffer_capacity(buf) < 65535)
2346 		edns.udp_size = (uint16_t)sldns_buffer_capacity(buf);
2347 	else	edns.udp_size = 65535;
2348 
2349 	/* can't hold the lock while mesh_run is processing */
2350 	lock_basic_unlock(&tp->lock);
2351 
2352 	/* delete the DNSKEY from rrset and key cache so an active probe
2353 	 * is done. First the rrset so another thread does not use it
2354 	 * to recreate the key entry in a race condition. */
2355 	rrset_cache_remove(env->rrset_cache, qinfo.qname, qinfo.qname_len,
2356 		qinfo.qtype, qinfo.qclass, 0);
2357 	key_cache_remove(env->key_cache, qinfo.qname, qinfo.qname_len,
2358 		qinfo.qclass);
2359 
2360 	if(!mesh_new_callback(env->mesh, &qinfo, qflags, &edns, buf, 0,
2361 		&probe_answer_cb, env)) {
2362 		log_err("out of memory making 5011 probe");
2363 	}
2364 }
2365 
2366 /** fetch first to-probe trust-anchor and lock it and set retrytime */
2367 static struct trust_anchor*
2368 todo_probe(struct module_env* env, time_t* next)
2369 {
2370 	struct trust_anchor* tp;
2371 	rbnode_t* el;
2372 	/* get first one */
2373 	lock_basic_lock(&env->anchors->lock);
2374 	if( (el=rbtree_first(&env->anchors->autr->probe)) == RBTREE_NULL) {
2375 		/* in case of revoked anchors */
2376 		lock_basic_unlock(&env->anchors->lock);
2377 		/* signal that there are no anchors to probe */
2378 		*next = 0;
2379 		return NULL;
2380 	}
2381 	tp = (struct trust_anchor*)el->key;
2382 	lock_basic_lock(&tp->lock);
2383 
2384 	/* is it eligible? */
2385 	if((time_t)tp->autr->next_probe_time > *env->now) {
2386 		/* no more to probe */
2387 		*next = (time_t)tp->autr->next_probe_time - *env->now;
2388 		lock_basic_unlock(&tp->lock);
2389 		lock_basic_unlock(&env->anchors->lock);
2390 		return NULL;
2391 	}
2392 
2393 	/* reset its next probe time */
2394 	(void)rbtree_delete(&env->anchors->autr->probe, tp);
2395 	tp->autr->next_probe_time = calc_next_probe(env, tp->autr->retry_time);
2396 	(void)rbtree_insert(&env->anchors->autr->probe, &tp->autr->pnode);
2397 	lock_basic_unlock(&env->anchors->lock);
2398 
2399 	return tp;
2400 }
2401 
2402 time_t
2403 autr_probe_timer(struct module_env* env)
2404 {
2405 	struct trust_anchor* tp;
2406 	time_t next_probe = 3600;
2407 	int num = 0;
2408 	if(autr_permit_small_holddown) next_probe = 1;
2409 	verbose(VERB_ALGO, "autotrust probe timer callback");
2410 	/* while there are still anchors to probe */
2411 	while( (tp = todo_probe(env, &next_probe)) ) {
2412 		/* make a probe for this anchor */
2413 		probe_anchor(env, tp);
2414 		num++;
2415 	}
2416 	regional_free_all(env->scratch);
2417 	if(next_probe == 0)
2418 		return 0; /* no trust points to probe */
2419 	verbose(VERB_ALGO, "autotrust probe timer %d callbacks done", num);
2420 	return next_probe;
2421 }
2422