]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/unbound/services/authzone.h
file: update to 5.34
[FreeBSD/FreeBSD.git] / contrib / unbound / services / authzone.h
1 /*
2  * services/authzone.h - authoritative zone that is locally hosted.
3  *
4  * Copyright (c) 2017, 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 the functions for an authority zone.  This zone
40  * is queried by the iterator, just like a stub or forward zone, but then
41  * the data is locally held.
42  */
43
44 #ifndef SERVICES_AUTHZONE_H
45 #define SERVICES_AUTHZONE_H
46 #include "util/rbtree.h"
47 #include "util/locks.h"
48 #include "services/mesh.h"
49 struct ub_packed_rrset_key;
50 struct regional;
51 struct config_file;
52 struct config_auth;
53 struct query_info;
54 struct dns_msg;
55 struct edns_data;
56 struct module_env;
57 struct worker;
58 struct comm_point;
59 struct comm_timer;
60 struct comm_reply;
61 struct auth_rrset;
62 struct auth_nextprobe;
63 struct auth_probe;
64 struct auth_transfer;
65 struct auth_master;
66 struct auth_chunk;
67
68 /**
69  * Authoritative zones, shared.
70  */
71 struct auth_zones {
72         /** lock on the authzone trees */
73         lock_rw_type lock;
74         /** rbtree of struct auth_zone */
75         rbtree_type ztree;
76         /** rbtree of struct auth_xfer */
77         rbtree_type xtree;
78         /** do we have downstream enabled */
79         int have_downstream;
80         /** number of queries upstream */
81         size_t num_query_up;
82         /** number of queries downstream */
83         size_t num_query_down;
84 };
85
86 /**
87  * Auth zone.  Authoritative data, that is fetched from instead of sending
88  * packets to the internet.
89  */
90 struct auth_zone {
91         /** rbtree node, key is name and class */
92         rbnode_type node;
93
94         /** zone name, in uncompressed wireformat */
95         uint8_t* name;
96         /** length of zone name */
97         size_t namelen;
98         /** number of labels in zone name */
99         int namelabs;
100         /** the class of this zone, in host byteorder.
101          * uses 'dclass' to not conflict with c++ keyword class. */
102         uint16_t dclass;
103
104         /** lock on the data in the structure
105          * For the node, parent, name, namelen, namelabs, dclass, you
106          * need to also hold the zones_tree lock to change them (or to
107          * delete this zone) */
108         lock_rw_type lock;
109
110         /** auth data for this zone
111          * rbtree of struct auth_data */
112         rbtree_type data;
113
114         /** zonefile name (or NULL for no zonefile) */
115         char* zonefile;
116         /** fallback to the internet on failure or ttl-expiry of auth zone */
117         int fallback_enabled;
118         /** the zone has expired (enabled by the xfer worker), fallback
119          * happens if that option is enabled. */
120         int zone_expired;
121         /** zone is a slave zone (it has masters) */
122         int zone_is_slave;
123         /** for downstream: this zone answers queries towards the downstream
124          * clients */
125         int for_downstream;
126         /** for upstream: this zone answers queries that unbound intends to
127          * send upstream. */
128         int for_upstream;
129         /** zone has been deleted */
130         int zone_deleted;
131         /** deletelist pointer, unused normally except during delete */
132         struct auth_zone* delete_next;
133 };
134
135 /**
136  * Auth data. One domain name, and the RRs to go with it.
137  */
138 struct auth_data {
139         /** rbtree node, key is name only */
140         rbnode_type node;
141         /** domain name */
142         uint8_t* name;
143         /** length of name */
144         size_t namelen;
145         /** number of labels in name */
146         int namelabs;
147         /** the data rrsets, with different types, linked list.
148          * if the list if NULL the node would be an empty non-terminal,
149          * but in this data structure such nodes that represent an empty
150          * non-terminal are not needed; they just don't exist.
151          */
152         struct auth_rrset* rrsets;
153 };
154
155 /**
156  * A auth data RRset
157  */
158 struct auth_rrset {
159         /** next in list */
160         struct auth_rrset* next;
161         /** RR type in host byteorder */
162         uint16_t type;
163         /** RRset data item */
164         struct packed_rrset_data* data;
165 };
166
167 /**
168  * Authoritative zone transfer structure.
169  * Create and destroy needs the auth_zones* biglock.
170  * The structure consists of different tasks.  Each can be unowned (-1) or
171  * owner by a worker (worker-num).  A worker can pick up a task and then do
172  * it.  This means the events (timeouts, sockets) are for that worker.
173  * 
174  * (move this to tasks).
175  * They don't have locks themselves, the worker (that owns it) uses it,
176  * also as part of callbacks, hence it has separate zonename pointers for
177  * lookup in the main zonetree.  If the zone has no transfers, this
178  * structure is not created.
179  */
180 struct auth_xfer {
181         /** rbtree node, key is name and class */
182         rbnode_type node;
183
184         /** lock on this structure, and on the workernum elements of the
185          * tasks.  First hold the tree-lock in auth_zones, find the auth_xfer,
186          * lock this lock.  Then a worker can reassign itself to fill up
187          * one of the tasks. 
188          * Once it has the task assigned to it, the worker can access the
189          * other elements of the task structure without a lock, because that
190          * is necessary for the eventloop and callbacks from that. */
191         lock_basic_type lock;
192
193         /** zone name, in uncompressed wireformat */
194         uint8_t* name;
195         /** length of zone name */
196         size_t namelen;
197         /** number of labels in zone name */
198         int namelabs;
199         /** the class of this zone, in host byteorder.
200          * uses 'dclass' to not conflict with c++ keyword class. */
201         uint16_t dclass;
202
203         /** task to wait for next-probe-timeout,
204          * once timeouted, see if a SOA probe is needed, or already
205          * in progress */
206         struct auth_nextprobe* task_nextprobe;
207
208         /** task for SOA probe.  Check if the zone can be updated */
209         struct auth_probe* task_probe;
210
211         /** Task for transfer.  Transferring and updating the zone.  This
212          * includes trying (potentially) several upstream masters.  Downloading
213          * and storing the zone */
214         struct auth_transfer* task_transfer;
215
216         /** a notify was received, but a zone transfer or probe was already
217          * acted on.
218          * However, the zone transfer could signal a newer serial number.
219          * The serial number of that notify is saved below.  The transfer and
220          * probe tasks should check this once done to see if they need to
221          * restart the transfer task for the newer notify serial.
222          * Hold the lock to access this member (and the serial).
223          */
224         int notify_received;
225         /** true if the notify_received has a serial number */
226         int notify_has_serial;
227         /** serial number of the notify */
228         uint32_t notify_serial;
229         /** the list of masters for checking notifies.  This list is
230          * empty on start, and a copy of the list from the probe_task when
231          * it is done looking them up. */
232         struct auth_master* allow_notify_list;
233
234         /* protected by the lock on the structure, information about
235          * the loaded authority zone. */
236         /** is the zone currently considered expired? after expiry also older
237          * serial numbers are allowed (not just newer) */
238         int zone_expired;
239         /** do we have a zone (if 0, no zone data at all) */
240         int have_zone;
241
242         /** current serial (from SOA), if we have no zone, 0 */
243         uint32_t serial;
244         /** retry time (from SOA), time to wait with next_probe
245          * if no master responds */
246         time_t retry;
247         /** refresh time (from SOA), time to wait with next_probe
248          * if everything is fine */
249         time_t refresh;
250         /** expiry time (from SOA), time until zone data is not considered
251          * valid any more, if no master responds within this time, either
252          * with the current zone or a new zone. */
253         time_t expiry;
254
255         /** zone lease start time (start+expiry is expiration time).
256          * this is renewed every SOA probe and transfer.  On zone load
257          * from zonefile it is also set (with probe set soon to check) */
258         time_t lease_time;
259 };
260
261 /**
262  * The next probe task.
263  * This task consists of waiting for the probetimeout.  It is a task because
264  * it needs an event in the eventtable.  Once the timeout has passed, that
265  * worker can (potentially) become the auth_probe worker, or if another worker
266  * is already doing that, do nothing.  Tasks becomes unowned.
267  * The probe worker, if it detects nothing has to be done picks up this task,
268  * if unowned.
269  */
270 struct auth_nextprobe {
271         /* Worker pointer. NULL means unowned. */
272         struct worker* worker;
273         /* module env for this task */
274         struct module_env* env;
275
276         /** increasing backoff for failures */
277         time_t backoff;
278         /** Timeout for next probe (for SOA) */
279         time_t next_probe;
280         /** timeout callback for next_probe or expiry(if that is sooner).
281          * it is on the worker's event_base */
282         struct comm_timer* timer;
283 };
284
285 /**
286  * The probe task.
287  * Send a SOA UDP query to see if the zone needs to be updated (or similar,
288  * potential, HTTP probe query) and check serial number.
289  * If yes, start the auth_transfer task.  If no, make sure auth_nextprobe
290  * timeout wait task is running.
291  * Needs to be a task, because the UDP query needs an event entry.
292  * This task could also be started by eg. a NOTIFY being received, even though
293  * another worker is performing the nextprobe task (and that worker keeps
294  * waiting uninterrupted).
295  */
296 struct auth_probe {
297         /* Worker pointer. NULL means unowned. */
298         struct worker* worker;
299         /* module env for this task */
300         struct module_env* env;
301
302         /** list of upstream masters for this zone, from config */
303         struct auth_master* masters;
304
305         /** for the hostname lookups, which master is current */
306         struct auth_master* lookup_target;
307         /** are we looking up A or AAAA, first A, then AAAA (if ip6 enabled) */
308         int lookup_aaaa;
309         /** we only want to do lookups for making config work (for notify),
310          * don't proceed with UDP SOA probe queries */
311         int only_lookup;
312
313         /** once notified, or the timeout has been reached. a scan starts. */
314         /** the scan specific target (notify source), or NULL if none */
315         struct auth_master* scan_specific;
316         /** scan tries all the upstream masters. the scan current target. 
317          * or NULL if not working on sequential scan */
318         struct auth_master* scan_target;
319         /** if not NULL, the specific addr for the current master */
320         struct auth_addr* scan_addr;
321
322         /** dns id of packet in flight */
323         uint16_t id;
324         /** the SOA probe udp event.
325          * on the workers event base. */
326         struct comm_point* cp;
327         /** timeout for packets.
328          * on the workers event base. */
329         struct comm_timer* timer;
330         /** timeout in msec */
331         int timeout;
332 };
333
334 /**
335  * The transfer task.
336  * Once done, make sure the nextprobe waiting task is running, whether done
337  * with failure or success.  If failure, use shorter timeout for wait time.
338  */
339 struct auth_transfer {
340         /* Worker pointer. NULL means unowned. */
341         struct worker* worker;
342         /* module env for this task */
343         struct module_env* env;
344
345         /** xfer data that has been transferred, the data is applied
346          * once the transfer has completed correctly */
347         struct auth_chunk* chunks_first;
348         /** last element in chunks list (to append new data at the end) */
349         struct auth_chunk* chunks_last;
350
351         /** list of upstream masters for this zone, from config */
352         struct auth_master* masters;
353
354         /** for the hostname lookups, which master is current */
355         struct auth_master* lookup_target;
356         /** are we looking up A or AAAA, first A, then AAAA (if ip6 enabled) */
357         int lookup_aaaa;
358
359         /** once notified, or the timeout has been reached. a scan starts. */
360         /** the scan specific target (notify source), or NULL if none */
361         struct auth_master* scan_specific;
362         /** scan tries all the upstream masters. the scan current target. 
363          * or NULL if not working on sequential scan */
364         struct auth_master* scan_target;
365         /** what address we are scanning for the master, or NULL if the
366          * master is in IP format itself */
367         struct auth_addr* scan_addr;
368         /** the zone transfer in progress (or NULL if in scan).  It is
369          * from this master */
370         struct auth_master* master;
371
372         /** failed ixfr transfer, retry with axfr (to the current master),
373          * the IXFR was 'REFUSED', 'SERVFAIL', 'NOTIMPL' or the contents of
374          * the IXFR did not apply cleanly (out of sync, delete of nonexistent
375          * data or add of duplicate data).  Flag is cleared once the retry
376          * with axfr is done. */
377         int ixfr_fail;
378         /** we are doing IXFR right now */
379         int on_ixfr;
380         /** did we detect the current AXFR/IXFR serial number yet, 0 not yet,
381          * 1 we saw the first, 2 we saw the second, 3 must be last SOA in xfr*/
382         int got_xfr_serial;
383         /** number of RRs scanned for AXFR/IXFR detection */
384         size_t rr_scan_num;
385         /** we are doing an IXFR but we detected an AXFR contents */
386         int on_ixfr_is_axfr;
387         /** the serial number for the current AXFR/IXFR incoming reply,
388          * for IXFR, the outermost SOA records serial */
389         uint32_t incoming_xfr_serial;
390
391         /** dns id of AXFR query */
392         uint16_t id;
393         /** the transfer (TCP) to the master.
394          * on the workers event base. */
395         struct comm_point* cp;
396 };
397
398 /** list of addresses */
399 struct auth_addr {
400         /** next in list */
401         struct auth_addr* next;
402         /** IP address */
403         struct sockaddr_storage addr;
404         /** addr length */
405         socklen_t addrlen;
406 };
407
408 /** auth zone master upstream, and the config settings for it */
409 struct auth_master {
410         /** next master in list */
411         struct auth_master* next;
412         /** master IP address (and port), or hostname, string */
413         char* host;
414         /** for http, filename */
415         char* file;
416         /** use HTTP for this master */
417         int http;
418         /** use IXFR for this master */
419         int ixfr;
420         /** this is an allow notify member, the master can send notifies
421          * to us, but we don't send SOA probes, or zone transfer from it */
422         int allow_notify;
423         /** use ssl for channel */
424         int ssl;
425         /** the port number (for urls) */
426         int port;
427         /** if the host is a hostname, the list of resolved addrs, if any*/
428         struct auth_addr* list;
429 };
430
431 /** auth zone master zone transfer data chunk */
432 struct auth_chunk {
433         /** next chunk in list */
434         struct auth_chunk* next;
435         /** the data from this chunk, this is what was received.
436          * for an IXFR that means results from comm_net tcp actions,
437          * packets. also for an AXFR. For HTTP a zonefile chunk. */
438         uint8_t* data;
439         /** length of allocated data */
440         size_t len;
441 };
442
443 /**
444  * Create auth zones structure
445  */
446 struct auth_zones* auth_zones_create(void);
447
448 /**
449  * Apply configuration to auth zones.  Reads zonefiles.
450  * @param az: auth zones structure
451  * @param cfg: config to apply.
452  * @param setup: if true, also sets up values in the auth zones structure
453  * @return false on failure.
454  */
455 int auth_zones_apply_cfg(struct auth_zones* az, struct config_file* cfg,
456         int setup);
457
458 /** initial pick up of worker timeouts, ties events to worker event loop
459  * @param az: auth zones structure
460  * @param env: worker env, of first worker that receives the events (if any)
461  *      in its eventloop.
462  */
463 void auth_xfer_pickup_initial(struct auth_zones* az, struct module_env* env);
464
465 /**
466  * Cleanup auth zones.  This removes all events from event bases.
467  * Stops the xfr tasks.  But leaves zone data.
468  * @param az: auth zones structure.
469  */
470 void auth_zones_cleanup(struct auth_zones* az);
471
472 /**
473  * Delete auth zones structure
474  */
475 void auth_zones_delete(struct auth_zones* az);
476
477 /**
478  * Write auth zone data to file, in zonefile format.
479  */
480 int auth_zone_write_file(struct auth_zone* z, const char* fname);
481
482 /**
483  * Use auth zones to lookup the answer to a query.
484  * The query is from the iterator.  And the auth zones attempts to provide
485  * the answer instead of going to the internet.
486  *
487  * @param az: auth zones structure.
488  * @param qinfo: query info to lookup.
489  * @param region: region to use to allocate the reply in.
490  * @param msg: reply is stored here (if one).
491  * @param fallback: if true, fallback to making a query to the internet.
492  * @param dp_nm: name of delegation point to look for.  This zone is used
493  *      to answer the query.
494  *      If the dp_nm is not found, fallback is set to true and false returned.
495  * @param dp_nmlen: length of dp_nm.
496  * @return 0: failure (an error of some sort, like servfail).
497  *         if 0 and fallback is true, fallback to the internet.
498  *         if 0 and fallback is false, like getting servfail.
499  *         If true, an answer is available.
500  */
501 int auth_zones_lookup(struct auth_zones* az, struct query_info* qinfo,
502         struct regional* region, struct dns_msg** msg, int* fallback,
503         uint8_t* dp_nm, size_t dp_nmlen);
504
505 /**
506  * Answer query from auth zone.  Create authoritative answer.
507  * @param az: auth zones structure.
508  * @param env: the module environment.
509  * @param qinfo: query info (parsed).
510  * @param edns: edns info (parsed).
511  * @param buf: buffer with query ID and flags, also for reply.
512  * @param temp: temporary storage region.
513  * @return false if not answered
514  */
515 int auth_zones_answer(struct auth_zones* az, struct module_env* env,
516         struct query_info* qinfo, struct edns_data* edns, struct sldns_buffer* buf,
517         struct regional* temp);
518
519 /** 
520  * Find the auth zone that is above the given qname.
521  * Return NULL when there is no auth_zone above the give name, otherwise
522  * returns the closest auth_zone above the qname that pertains to it.
523  * @param az: auth zones structure.
524  * @param name: query to look up for.
525  * @param name_len: length of name.
526  * @param dclass: class of zone to find.
527  * @return NULL or auth_zone that pertains to the query.
528  */
529 struct auth_zone* auth_zones_find_zone(struct auth_zones* az,
530         uint8_t* name, size_t name_len, uint16_t dclass);
531
532 /** find an auth zone by name (exact match by name or NULL returned) */
533 struct auth_zone* auth_zone_find(struct auth_zones* az, uint8_t* nm,
534         size_t nmlen, uint16_t dclass);
535
536 /** find an xfer zone by name (exact match by name or NULL returned) */
537 struct auth_xfer* auth_xfer_find(struct auth_zones* az, uint8_t* nm,
538         size_t nmlen, uint16_t dclass);
539
540 /** create an auth zone. returns wrlocked zone. caller must have wrlock
541  * on az. returns NULL on malloc failure */
542 struct auth_zone* auth_zone_create(struct auth_zones* az, uint8_t* nm,
543         size_t nmlen, uint16_t dclass);
544
545 /** set auth zone zonefile string. caller must have lock on zone */
546 int auth_zone_set_zonefile(struct auth_zone* z, char* zonefile);
547
548 /** set auth zone fallback. caller must have lock on zone.
549  * fallbackstr is "yes" or "no". false on parse failure. */
550 int auth_zone_set_fallback(struct auth_zone* z, char* fallbackstr);
551
552 /** see if the auth zone for the name can fallback
553  * @param az: auth zones
554  * @param nm: name of delegation point.
555  * @param nmlen: length of nm.
556  * @param dclass: class of zone to look for.
557  * @return true if fallback_enabled is true. false if not.
558  * if the zone does not exist, fallback is true (more lenient)
559  * also true if zone does not do upstream requests.
560  */
561 int auth_zones_can_fallback(struct auth_zones* az, uint8_t* nm, size_t nmlen,
562         uint16_t dclass);
563
564 /** process notify for auth zones.
565  * first checks the access list.  Then processes the notify. This starts
566  * the probe sequence or it notes the serial number (if any)
567  * @param az: auth zones structure.
568  * @param env: module env of the worker that is handling the notify. it will
569  *      pick up the task probe (or transfer), unless already in progress by
570  *      another worker.
571  * @param nm: name of the zone.  Uncompressed. from query.
572  * @param nmlen: length of name.
573  * @param dclass: class of zone.
574  * @param addr: source address of notify
575  * @param addrlen: length of addr.
576  * @param has_serial: if true, the notify has a serial attached.
577  * @param serial: the serial number, if has_serial is true.
578  * @param refused: is set to true on failure to note refused access.
579  * @return fail on failures (refused is false) and when access is
580  *      denied (refused is true).  True when processed.
581  */
582 int auth_zones_notify(struct auth_zones* az, struct module_env* env,
583         uint8_t* nm, size_t nmlen, uint16_t dclass,
584         struct sockaddr_storage* addr, socklen_t addrlen, int has_serial,
585         uint32_t serial, int* refused);
586
587 /** process notify packet and read serial number from SOA.
588  * returns 0 if no soa record in the notify */
589 int auth_zone_parse_notify_serial(struct sldns_buffer* pkt, uint32_t *serial);
590
591 /** read auth zone from zonefile. caller must lock zone. false on failure */
592 int auth_zone_read_zonefile(struct auth_zone* z);
593
594 /** find serial number of zone or false if none (no SOA record) */
595 int auth_zone_get_serial(struct auth_zone* z, uint32_t* serial);
596
597 /** compare auth_zones for sorted rbtree */
598 int auth_zone_cmp(const void* z1, const void* z2);
599
600 /** compare auth_data for sorted rbtree */
601 int auth_data_cmp(const void* z1, const void* z2);
602
603 /** compare auth_xfer for sorted rbtree */
604 int auth_xfer_cmp(const void* z1, const void* z2);
605
606 /** Create auth_xfer structure.
607  * Caller must have wrlock on az. Returns locked xfer zone.
608  * @param az: zones structure.
609  * @param z: zone with name and class
610  * @return xfer zone or NULL
611  */
612 struct auth_xfer* auth_xfer_create(struct auth_zones* az, struct auth_zone* z);
613
614 /**
615  * Set masters in auth xfer structure from config.
616  * @param list: pointer to start of list.  The malloced list is returned here.
617  * @param c: the config items to copy over.
618  * @param with_http: if true, http urls are also included, before the masters.
619  * @return false on failure.
620  */
621 int xfer_set_masters(struct auth_master** list, struct config_auth* c,
622         int with_http);
623
624 /** xfer nextprobe timeout callback, this is part of task_nextprobe */
625 void auth_xfer_timer(void* arg);
626
627 /** callback for commpoint udp replies to task_probe */
628 int auth_xfer_probe_udp_callback(struct comm_point* c, void* arg, int err,
629         struct comm_reply* repinfo);
630 /** callback for task_transfer tcp connections */
631 int auth_xfer_transfer_tcp_callback(struct comm_point* c, void* arg, int err,
632         struct comm_reply* repinfo);
633 /** callback for task_transfer http connections */
634 int auth_xfer_transfer_http_callback(struct comm_point* c, void* arg, int err,
635         struct comm_reply* repinfo);
636 /** xfer probe timeout callback, part of task_probe */
637 void auth_xfer_probe_timer_callback(void* arg);
638 /** mesh callback for task_probe on lookup of host names */
639 void auth_xfer_probe_lookup_callback(void* arg, int rcode,
640         struct sldns_buffer* buf, enum sec_status sec, char* why_bogus);
641 /** mesh callback for task_transfer on lookup of host names */
642 void auth_xfer_transfer_lookup_callback(void* arg, int rcode,
643         struct sldns_buffer* buf, enum sec_status sec, char* why_bogus);
644
645 /*
646  * Compares two 32-bit serial numbers as defined in RFC1982.  Returns
647  * <0 if a < b, 0 if a == b, and >0 if a > b.  The result is undefined
648  * if a != b but neither is greater or smaller (see RFC1982 section
649  * 3.2.).
650  */
651 int compare_serial(uint32_t a, uint32_t b);
652
653 #endif /* SERVICES_AUTHZONE_H */