]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/unbound/util/module.h
Upgrade Unbound to 1.6.2. More to follow.
[FreeBSD/FreeBSD.git] / contrib / unbound / util / module.h
1 /*
2  * util/module.h - DNS handling module interface
3  *
4  * Copyright (c) 2007, NLnet Labs. All rights reserved.
5  *
6  * This software is open source.
7  * 
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 
12  * Redistributions of source code must retain the above copyright notice,
13  * this list of conditions and the following disclaimer.
14  * 
15  * Redistributions in binary form must reproduce the above copyright notice,
16  * this list of conditions and the following disclaimer in the documentation
17  * and/or other materials provided with the distribution.
18  * 
19  * Neither the name of the NLNET LABS nor the names of its contributors may
20  * be used to endorse or promote products derived from this software without
21  * specific prior written permission.
22  * 
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
29  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35
36 /**
37  * \file
38  *
39  * This file contains the interface for DNS handling modules.
40  *
41  * The module interface uses the DNS modules as state machines.  The
42  * state machines are activated in sequence to operate on queries.  Once
43  * they are done, the reply is passed back.  In the usual setup the mesh
44  * is the caller of the state machines and once things are done sends replies
45  * and invokes result callbacks.
46  *
47  * The module provides a number of functions, listed in the module_func_block.
48  * The module is inited and destroyed and memory usage queries, for the
49  * module as a whole, for entire-module state (such as a cache).  And per-query
50  * functions are called, operate to move the state machine and cleanup of
51  * the per-query state.
52  *
53  * Most per-query state should simply be allocated in the query region.
54  * This is destroyed at the end of the query.
55  *
56  * The module environment contains services and information and caches
57  * shared by the modules and the rest of the system.  It also contains
58  * function pointers for module-specific tasks (like sending queries).
59  *
60  * *** Example module calls for a normal query
61  *
62  * In this example, the query does not need recursion, all the other data
63  * can be found in the cache.  This makes the example shorter.
64  *
65  * At the start of the program the iterator module is initialised.
66  * The iterator module sets up its global state, such as donotquery lists
67  * and private address trees.
68  *
69  * A query comes in, and a mesh entry is created for it.  The mesh
70  * starts the resolution process.  The validator module is the first
71  * in the list of modules, and it is started on this new query.  The
72  * operate() function is called.  The validator decides it needs not do
73  * anything yet until there is a result and returns wait_module, that
74  * causes the next module in the list to be started.
75  *
76  * The next module is the iterator.  It is started on the passed query and
77  * decides to perform a lookup.  For this simple example, the delegation
78  * point information is available, and all the iterator wants to do is
79  * send a UDP query.  The iterator uses env.send_query() to send the
80  * query.  Then the iterator suspends (returns from the operate call).
81  *
82  * When the UDP reply comes back (and on errors and timeouts), the
83  * operate function is called for the query, on the iterator module,
84  * with the event that there is a reply.  The iterator decides that this
85  * is enough, the work is done.  It returns the value finished from the
86  * operate call, which causes the previous module to be started.
87  *
88  * The previous module, the validator module, is started with the event
89  * that the iterator module is done.  The validator decides to validate
90  * the query.  Once it is done (which could take recursive lookups, but
91  * in this example no recursive lookups are needed), it returns from the
92  * operate function with finished.
93  *
94  * There is no previous module from the validator module, and the mesh
95  * takes this to mean that the query is finally done.  The mesh invokes
96  * callbacks and sends packets to queriers.
97  *
98  * If other modules had been waiting (recursively) on the answer to this
99  * query, then the mesh will tell them about it.  It calls the inform_super
100  * routine on all the waiting modules, and once that is done it calls all of
101  * them with the operate() call.  During inform_super the query that is done
102  * still exists and information can be copied from it (but the module should
103  * not really re-entry codepoints and services).  During the operate call
104  * the modules can use stored state to continue operation with the results.
105  * (network buffers are used to contain the answer packet during the
106  * inform_super phase, but after that the network buffers will be cleared
107  * of their contents so that other tasks can be performed).
108  *
109  * *** Example module calls for recursion
110  *
111  * A module is called in operate, and it decides that it wants to perform
112  * recursion.  That is, it wants the full state-machine-list to operate on
113  * a different query.  It calls env.attach_sub() to create a new query state.
114  * The routine returns the newly created state, and potentially the module
115  * can edit the module-states for the newly created query (i.e. pass along
116  * some information, like delegation points).  The module then suspends,
117  * returns from the operate routine.
118  *
119  * The mesh meanwhile will have the newly created query (or queries) on
120  * a waiting list, and will call operate() on this query (or queries).
121  * It starts again at the start of the module list for them.  The query
122  * (or queries) continue to operate their state machines, until they are
123  * done.  When they are done the mesh calls inform_super on the module that
124  * wanted the recursion.  After that the mesh calls operate() on the module
125  * that wanted to do the recursion, and during this phase the module could,
126  * for example, decide to create more recursions.
127  *
128  * If the module decides it no longer wants the recursive information
129  * it can call detach_subs.  Those queries will still run to completion,
130  * potentially filling the cache with information.  Inform_super is not
131  * called any more.
132  *
133  * The iterator module will fetch items from the cache, so a recursion
134  * attempt may complete very quickly if the item is in cache.  The calling
135  * module has to wait for completion or eventual timeout.  A recursive query
136  * that times out returns a servfail rcode (servfail is also returned for
137  * other errors during the lookup).
138  *
139  * Results are passed in the qstate, the rcode member is used to pass
140  * errors without requiring memory allocation, so that the code can continue
141  * in out-of-memory conditions.  If the rcode member is 0 (NOERROR) then
142  * the dns_msg entry contains a filled out message.  This message may
143  * also contain an rcode that is nonzero, but in this case additional
144  * information (query, additional) can be passed along.
145  *
146  * The rcode and dns_msg are used to pass the result from the the rightmost
147  * module towards the leftmost modules and then towards the user.
148  *
149  * If you want to avoid recursion-cycles where queries need other queries
150  * that need the first one, use detect_cycle() to see if that will happen.
151  *
152  */
153
154 #ifndef UTIL_MODULE_H
155 #define UTIL_MODULE_H
156 #include "util/storage/lruhash.h"
157 #include "util/data/msgreply.h"
158 #include "util/data/msgparse.h"
159 struct sldns_buffer;
160 struct alloc_cache;
161 struct rrset_cache;
162 struct key_cache;
163 struct config_file;
164 struct slabhash;
165 struct query_info;
166 struct edns_data;
167 struct regional;
168 struct worker;
169 struct module_qstate;
170 struct ub_randstate;
171 struct mesh_area;
172 struct mesh_state;
173 struct val_anchors;
174 struct val_neg_cache;
175 struct iter_forwards;
176 struct iter_hints;
177 struct respip_set;
178 struct respip_client_info;
179 struct respip_addr_info;
180
181 /** Maximum number of modules in operation */
182 #define MAX_MODULE 16
183
184 /** Maximum number of known edns options */
185 #define MAX_KNOWN_EDNS_OPTS 256
186
187 enum inplace_cb_list_type {
188         /* Inplace callbacks for when a resolved reply is ready to be sent to the
189          * front.*/
190         inplace_cb_reply = 0,
191         /* Inplace callbacks for when a reply is given from the cache. */
192         inplace_cb_reply_cache,
193         /* Inplace callbacks for when a reply is given with local data
194          * (or Chaos reply). */
195         inplace_cb_reply_local,
196         /* Inplace callbacks for when the reply is servfail. */
197         inplace_cb_reply_servfail,
198         /* Inplace callbacks for when a query is ready to be sent to the back.*/
199         inplace_cb_query,
200         /* Inplace callback for when a reply is received from the back. */
201         inplace_cb_query_response,
202         /* Inplace callback for when EDNS is parsed on a reply received from the
203          * back. */
204         inplace_cb_edns_back_parsed,
205         /* Total number of types. Used for array initialization.
206          * Should always be last. */
207         inplace_cb_types_total
208 };
209
210
211 /** Known edns option. Can be populated during modules' init. */
212 struct edns_known_option {
213         /** type of this edns option */
214         uint16_t opt_code;
215         /** whether the option needs to bypass the cache stage */
216         int bypass_cache_stage;
217         /** whether the option needs mesh aggregation */
218         int no_aggregation;
219 };
220
221 /**
222  * Inplace callback list of registered routines to be called.
223  */
224 struct inplace_cb {
225         /** next in list */
226         struct inplace_cb* next;
227         /** Inplace callback routine */
228         void* cb;
229         void* cb_arg;
230         /** module id */
231         int id;
232 };
233
234 /**
235  * Inplace callback function called before replying.
236  * Called as func(edns, qstate, opt_list_out, qinfo, reply_info, rcode,
237  *                region, python_callback)
238  * Where:
239  *      qinfo: the query info.
240  *      qstate: the module state. NULL when calling before the query reaches the
241  *              mesh states.
242  *      rep: reply_info. Could be NULL.
243  *      rcode: the return code.
244  *      edns: the edns_data of the reply. When qstate is NULL, it is also used as
245  *              the edns input.
246  *      opt_list_out: the edns options list for the reply.
247  *      region: region to store data.
248  *      python_callback: only used for registering a python callback function.
249  */
250 typedef int inplace_cb_reply_func_type(struct query_info* qinfo,
251         struct module_qstate* qstate, struct reply_info* rep, int rcode,
252         struct edns_data* edns, struct edns_option** opt_list_out, 
253         struct regional* region, int id, void* callback);
254
255 /**
256  * Inplace callback function called before sending the query to a nameserver.
257  * Called as func(qinfo, flags, qstate, addr, addrlen, zone, zonelen, region,
258  *                python_callback)
259  * Where:
260  *      qinfo: query info.
261  *      flags: flags of the query.
262  *      qstate: query state.
263  *      addr: to which server to send the query.
264  *      addrlen: length of addr.
265  *      zone: name of the zone of the delegation point. wireformat dname.
266  *              This is the delegation point name for which the server is deemed
267  *              authoritative.
268  *      zonelen: length of zone.
269  *      region: region to store data.
270  *      python_callback: only used for registering a python callback function.
271  */
272 typedef int inplace_cb_query_func_type(struct query_info* qinfo, uint16_t flags,
273         struct module_qstate* qstate, struct sockaddr_storage* addr,
274         socklen_t addrlen, uint8_t* zone, size_t zonelen, struct regional* region,
275         int id, void* callback);
276
277 /**
278  * Inplace callback function called after parsing edns on query reply.
279  * Called as func(qstate, cb_args)
280  * Where:
281  *      qstate: the query state
282  *      id: module id
283  *      cb_args: argument passed when registering callback.
284  */
285 typedef int inplace_cb_edns_back_parsed_func_type(struct module_qstate* qstate, 
286         int id, void* cb_args);
287
288 /**
289  * Inplace callback function called after parsing query response.
290  * Called as func(qstate, id, cb_args)
291  * Where:
292  *      qstate: the query state
293  *      response: query response
294  *      id: module id
295  *      cb_args: argument passed when registering callback.
296  */
297 typedef int inplace_cb_query_response_func_type(struct module_qstate* qstate,
298         struct dns_msg* response, int id, void* cb_args);
299
300 /**
301  * Module environment.
302  * Services and data provided to the module.
303  */
304 struct module_env {
305         /* --- data --- */
306         /** config file with config options */
307         struct config_file* cfg;
308         /** shared message cache */
309         struct slabhash* msg_cache;
310         /** shared rrset cache */
311         struct rrset_cache* rrset_cache;
312         /** shared infrastructure cache (edns, lameness) */
313         struct infra_cache* infra_cache;
314         /** shared key cache */
315         struct key_cache* key_cache;
316
317         /* --- services --- */
318         /** 
319          * Send serviced DNS query to server. UDP/TCP and EDNS is handled.
320          * operate() should return with wait_reply. Later on a callback 
321          * will cause operate() to be called with event timeout or reply.
322          * The time until a timeout is calculated from roundtrip timing,
323          * several UDP retries are attempted.
324          * @param qinfo: query info.
325          * @param flags: host order flags word, with opcode and CD bit.
326          * @param dnssec: if set, EDNS record will have bits set.
327          *      If EDNS_DO bit is set, DO bit is set in EDNS records.
328          *      If BIT_CD is set, CD bit is set in queries with EDNS records.
329          * @param want_dnssec: if set, the validator wants DNSSEC.  Without
330          *      EDNS, the answer is likely to be useless for this domain.
331          * @param nocaps: do not use caps_for_id, use the qname as given.
332          *      (ignored if caps_for_id is disabled).
333          * @param addr: where to.
334          * @param addrlen: length of addr.
335          * @param zone: delegation point name.
336          * @param zonelen: length of zone name.
337          * @param ssl_upstream: use SSL for upstream queries.
338          * @param q: wich query state to reactivate upon return.
339          * @return: false on failure (memory or socket related). no query was
340          *      sent. Or returns an outbound entry with qsent and qstate set.
341          *      This outbound_entry will be used on later module invocations
342          *      that involve this query (timeout, error or reply).
343          */
344         struct outbound_entry* (*send_query)(struct query_info* qinfo,
345                 uint16_t flags, int dnssec, int want_dnssec, int nocaps,
346                 struct sockaddr_storage* addr, socklen_t addrlen,
347                 uint8_t* zone, size_t zonelen, int ssl_upstream,
348                 struct module_qstate* q);
349
350         /**
351          * Detach-subqueries.
352          * Remove all sub-query references from this query state.
353          * Keeps super-references of those sub-queries correct.
354          * Updates stat items in mesh_area structure.
355          * @param qstate: used to find mesh state.
356          */
357         void (*detach_subs)(struct module_qstate* qstate);
358
359         /**
360          * Attach subquery.
361          * Creates it if it does not exist already.
362          * Keeps sub and super references correct.
363          * Updates stat items in mesh_area structure.
364          * Pass if it is priming query or not.
365          * return:
366          * o if error (malloc) happened.
367          * o need to initialise the new state (module init; it is a new state).
368          *   so that the next run of the query with this module is successful.
369          * o no init needed, attachment successful.
370          * 
371          * @param qstate: the state to find mesh state, and that wants to 
372          *      receive the results from the new subquery.
373          * @param qinfo: what to query for (copied).
374          * @param qflags: what flags to use (RD, CD flag or not).
375          * @param prime: if it is a (stub) priming query.
376          * @param valrec: validation lookup recursion, does not need validation
377          * @param newq: If the new subquery needs initialisation, it is 
378          *      returned, otherwise NULL is returned.
379          * @return: false on error, true if success (and init may be needed).
380          */ 
381         int (*attach_sub)(struct module_qstate* qstate, 
382                 struct query_info* qinfo, uint16_t qflags, int prime, 
383                 int valrec, struct module_qstate** newq);
384
385         /**
386          * Kill newly attached sub. If attach_sub returns newq for 
387          * initialisation, but that fails, then this routine will cleanup and
388          * delete the fresly created sub.
389          * @param newq: the new subquery that is no longer needed.
390          *      It is removed.
391          */
392         void (*kill_sub)(struct module_qstate* newq);
393
394         /**
395          * Detect if adding a dependency for qstate on name,type,class will
396          * create a dependency cycle.
397          * @param qstate: given mesh querystate.
398          * @param qinfo: query info for dependency. 
399          * @param flags: query flags of dependency, RD/CD flags.
400          * @param prime: if dependency is a priming query or not.
401          * @param valrec: validation lookup recursion, does not need validation
402          * @return true if the name,type,class exists and the given 
403          *      qstate mesh exists as a dependency of that name. Thus 
404          *      if qstate becomes dependent on name,type,class then a 
405          *      cycle is created.
406          */
407         int (*detect_cycle)(struct module_qstate* qstate, 
408                 struct query_info* qinfo, uint16_t flags, int prime,
409                 int valrec);
410
411         /** region for temporary usage. May be cleared after operate() call. */
412         struct regional* scratch;
413         /** buffer for temporary usage. May be cleared after operate() call. */
414         struct sldns_buffer* scratch_buffer;
415         /** internal data for daemon - worker thread. */
416         struct worker* worker;
417         /** mesh area with query state dependencies */
418         struct mesh_area* mesh;
419         /** allocation service */
420         struct alloc_cache* alloc;
421         /** random table to generate random numbers */
422         struct ub_randstate* rnd;
423         /** time in seconds, converted to integer */
424         time_t* now;
425         /** time in microseconds. Relatively recent. */
426         struct timeval* now_tv;
427         /** is validation required for messages, controls client-facing
428          * validation status (AD bits) and servfails */
429         int need_to_validate;
430         /** trusted key storage; these are the configured keys, if not NULL,
431          * otherwise configured by validator. These are the trust anchors,
432          * and are not primed and ready for validation, but on the bright
433          * side, they are read only memory, thus no locks and fast. */
434         struct val_anchors* anchors;
435         /** negative cache, configured by the validator. if not NULL,
436          * contains NSEC record lookup trees. */
437         struct val_neg_cache* neg_cache;
438         /** the 5011-probe timer (if any) */
439         struct comm_timer* probe_timer;
440         /** Mapping of forwarding zones to targets.
441          * iterator forwarder information. per-thread, created by worker */
442         struct iter_forwards* fwds;
443         /** 
444          * iterator forwarder information. per-thread, created by worker.
445          * The hints -- these aren't stored in the cache because they don't 
446          * expire. The hints are always used to "prime" the cache. Note 
447          * that both root hints and stub zone "hints" are stored in this 
448          * data structure. 
449          */
450         struct iter_hints* hints;
451         /** module specific data. indexed by module id. */
452         void* modinfo[MAX_MODULE];
453
454         /* Shared linked list of inplace callback functions */
455         struct inplace_cb* inplace_cb_lists[inplace_cb_types_total];
456
457         /**
458          * Shared array of known edns options (size MAX_KNOWN_EDNS_OPTS).
459          * Filled by edns literate modules during init.
460          */
461         struct edns_known_option* edns_known_options;
462         /* Number of known edns options */
463         size_t edns_known_options_num;
464
465         /* Make every mesh state unique, do not aggregate mesh states. */
466         int unique_mesh;
467 };
468
469 /**
470  * External visible states of the module state machine 
471  * Modules may also have an internal state.
472  * Modules are supposed to run to completion or until blocked.
473  */
474 enum module_ext_state {
475         /** initial state - new query */
476         module_state_initial = 0,
477         /** waiting for reply to outgoing network query */
478         module_wait_reply,
479         /** module is waiting for another module */
480         module_wait_module,
481         /** module is waiting for another module; that other is restarted */
482         module_restart_next,
483         /** module is waiting for sub-query */
484         module_wait_subquery,
485         /** module could not finish the query */
486         module_error,
487         /** module is finished with query */
488         module_finished
489 };
490
491 /**
492  * Events that happen to modules, that start or wakeup modules.
493  */
494 enum module_ev {
495         /** new query */
496         module_event_new = 0,
497         /** query passed by other module */
498         module_event_pass,
499         /** reply inbound from server */
500         module_event_reply,
501         /** no reply, timeout or other error */
502         module_event_noreply,
503         /** reply is there, but capitalisation check failed */
504         module_event_capsfail,
505         /** next module is done, and its reply is awaiting you */
506         module_event_moddone,
507         /** error */
508         module_event_error
509 };
510
511 /** 
512  * Linked list of sockaddrs 
513  * May be allocated such that only 'len' bytes of addr exist for the structure.
514  */
515 struct sock_list {
516         /** next in list */
517         struct sock_list* next;
518         /** length of addr */
519         socklen_t len;
520         /** sockaddr */
521         struct sockaddr_storage addr;
522 };
523
524 struct respip_action_info;
525
526 /**
527  * Module state, per query.
528  */
529 struct module_qstate {
530         /** which query is being answered: name, type, class */
531         struct query_info qinfo;
532         /** flags uint16 from query */
533         uint16_t query_flags;
534         /** if this is a (stub or root) priming query (with hints) */
535         int is_priming;
536         /** if this is a validation recursion query that does not get
537          * validation itself */
538         int is_valrec;
539
540         /** comm_reply contains server replies */
541         struct comm_reply* reply;
542         /** the reply message, with message for client and calling module */
543         struct dns_msg* return_msg;
544         /** the rcode, in case of error, instead of a reply message */
545         int return_rcode;
546         /** origin of the reply (can be NULL from cache, list for cnames) */
547         struct sock_list* reply_origin;
548         /** IP blacklist for queries */
549         struct sock_list* blacklist;
550         /** region for this query. Cleared when query process finishes. */
551         struct regional* region;
552         /** failure reason information if val-log-level is high */
553         struct config_strlist* errinf;
554
555         /** which module is executing */
556         int curmod;
557         /** module states */
558         enum module_ext_state ext_state[MAX_MODULE];
559         /** module specific data for query. indexed by module id. */
560         void* minfo[MAX_MODULE];
561         /** environment for this query */
562         struct module_env* env;
563         /** mesh related information for this query */
564         struct mesh_state* mesh_info;
565         /** how many seconds before expiry is this prefetched (0 if not) */
566         time_t prefetch_leeway;
567
568         /** incoming edns options from the front end */
569         struct edns_option* edns_opts_front_in;
570         /** outgoing edns options to the back end */
571         struct edns_option* edns_opts_back_out;
572         /** incoming edns options from the back end */
573         struct edns_option* edns_opts_back_in;
574         /** outgoing edns options to the front end */
575         struct edns_option* edns_opts_front_out;
576         /** whether modules should answer from the cache */
577         int no_cache_lookup;
578         /** whether modules should store answer in the cache */
579         int no_cache_store;
580
581         /**
582          * Attributes of clients that share the qstate that may affect IP-based
583          * actions.
584          */
585         struct respip_client_info* client_info;
586
587         /** Extended result of response-ip action processing, mainly
588          *  for logging purposes. */
589         struct respip_action_info* respip_action_info;
590
591         /** whether the reply should be dropped */
592         int is_drop;
593 };
594
595 /** 
596  * Module functionality block
597  */
598 struct module_func_block {
599         /** text string name of module */
600         const char* name;
601
602         /** 
603          * init the module. Called once for the global state.
604          * This is the place to apply settings from the config file.
605          * @param env: module environment.
606          * @param id: module id number.
607          * return: 0 on error
608          */
609         int (*init)(struct module_env* env, int id);
610
611         /**
612          * de-init, delete, the module. Called once for the global state.
613          * @param env: module environment.
614          * @param id: module id number.
615          */
616         void (*deinit)(struct module_env* env, int id);
617
618         /**
619          * accept a new query, or work further on existing query.
620          * Changes the qstate->ext_state to be correct on exit.
621          * @param ev: event that causes the module state machine to 
622          *      (re-)activate.
623          * @param qstate: the query state. 
624          *      Note that this method is not allowed to change the
625          *      query state 'identity', that is query info, qflags,
626          *      and priming status.
627          *      Attach a subquery to get results to a different query.
628          * @param id: module id number that operate() is called on. 
629          * @param outbound: if not NULL this event is due to the reply/timeout
630          *      or error on this outbound query.
631          * @return: if at exit the ext_state is:
632          *      o wait_module: next module is started. (with pass event).
633          *      o error or finished: previous module is resumed.
634          *      o otherwise it waits until that event happens (assumes
635          *        the service routine to make subrequest or send message
636          *        have been called.
637          */
638         void (*operate)(struct module_qstate* qstate, enum module_ev event, 
639                 int id, struct outbound_entry* outbound);
640
641         /**
642          * inform super querystate about the results from this subquerystate.
643          * Is called when the querystate is finished.  The method invoked is
644          * the one from the current module active in the super querystate.
645          * @param qstate: the query state that is finished.
646          *      Examine return_rcode and return_reply in the qstate.
647          * @param id: module id for this module.
648          *      This coincides with the current module for the super qstate.
649          * @param super: the super querystate that needs to be informed.
650          */
651         void (*inform_super)(struct module_qstate* qstate, int id,
652                 struct module_qstate* super);
653
654         /**
655          * clear module specific data
656          */
657         void (*clear)(struct module_qstate* qstate, int id);
658
659         /**
660          * How much memory is the module specific data using. 
661          * @param env: module environment.
662          * @param id: the module id.
663          * @return the number of bytes that are alloced.
664          */
665         size_t (*get_mem)(struct module_env* env, int id);
666 };
667
668 /** 
669  * Debug utility: module external qstate to string 
670  * @param s: the state value.
671  * @return descriptive string.
672  */
673 const char* strextstate(enum module_ext_state s);
674
675 /** 
676  * Debug utility: module event to string 
677  * @param e: the module event value.
678  * @return descriptive string.
679  */
680 const char* strmodulevent(enum module_ev e);
681
682 /**
683  * Initialize the edns known options by allocating the required space.
684  * @param env: the module environment.
685  * @return false on failure (no memory).
686  */
687 int edns_known_options_init(struct module_env* env);
688
689 /**
690  * Free the allocated space for the known edns options.
691  * @param env: the module environment.
692  */
693 void edns_known_options_delete(struct module_env* env);
694
695 /**
696  * Register a known edns option. Overwrite the flags if it is already
697  * registered. Used before creating workers to register known edns options.
698  * @param opt_code: the edns option code.
699  * @param bypass_cache_stage: whether the option interacts with the cache.
700  * @param no_aggregation: whether the option implies more specific
701  *      aggregation.
702  * @param env: the module environment.
703  * @return true on success, false on failure (registering more options than
704  *      allowed or trying to register after the environment is copied to the
705  *      threads.)
706  */
707 int edns_register_option(uint16_t opt_code, int bypass_cache_stage,
708         int no_aggregation, struct module_env* env);
709
710 /**
711  * Register an inplace callback function.
712  * @param cb: pointer to the callback function.
713  * @param type: inplace callback type.
714  * @param cbarg: argument for the callback function, or NULL.
715  * @param env: the module environment.
716  * @param id: module id.
717  * @return true on success, false on failure (out of memory or trying to
718  *      register after the environment is copied to the threads.)
719  */
720 int
721 inplace_cb_register(void* cb, enum inplace_cb_list_type type, void* cbarg,
722         struct module_env* env, int id);
723
724 /**
725  * Delete callback for specified type and module id.
726  * @param env: the module environment.
727  * @param type: inplace callback type.
728  * @param id: module id.
729  */
730 void
731 inplace_cb_delete(struct module_env* env, enum inplace_cb_list_type type,
732         int id);
733
734 /**
735  * Delete all the inplace callback linked lists.
736  * @param env: the module environment.
737  */
738 void inplace_cb_lists_delete(struct module_env* env);
739
740 /**
741  * Check if an edns option is known.
742  * @param opt_code: the edns option code.
743  * @param env: the module environment.
744  * @return pointer to registered option if the edns option is known,
745  *      NULL otherwise.
746  */
747 struct edns_known_option* edns_option_is_known(uint16_t opt_code,
748         struct module_env* env);
749
750 /**
751  * Check if an edns option needs to bypass the reply from cache stage.
752  * @param list: the edns options.
753  * @param env: the module environment.
754  * @return true if an edns option needs to bypass the cache stage,
755  *      false otherwise.
756  */
757 int edns_bypass_cache_stage(struct edns_option* list,
758         struct module_env* env);
759
760 /**
761  * Check if an unique mesh state is required. Might be triggered by EDNS option
762  * or set for the complete env.
763  * @param list: the edns options.
764  * @param env: the module environment.
765  * @return true if an edns option needs a unique mesh state,
766  *      false otherwise.
767  */
768 int unique_mesh_state(struct edns_option* list, struct module_env* env);
769
770 /**
771  * Log the known edns options.
772  * @param level: the desired verbosity level.
773  * @param env: the module environment.
774  */
775 void log_edns_known_options(enum verbosity_value level,
776         struct module_env* env);
777
778 #endif /* UTIL_MODULE_H */