module_env Struct Reference

Module environment. More...

#include <module.h>

Data Fields

struct config_filecfg
 config file with config options
 
struct slabhashmsg_cache
 shared message cache
 
struct rrset_cacherrset_cache
 shared rrset cache
 
struct infra_cacheinfra_cache
 shared infrastructure cache (edns, lameness)
 
struct key_cachekey_cache
 shared key cache
 
struct outbound_entry *(* send_query )(struct query_info *qinfo, uint16_t flags, int dnssec, int want_dnssec, int nocaps, int check_ratelimit, struct sockaddr_storage *addr, socklen_t addrlen, uint8_t *zone, size_t zonelen, int tcp_upstream, int ssl_upstream, char *tls_auth_name, struct module_qstate *q, int *was_ratelimited)
 Send serviced DNS query to server. More...
 
void(* detach_subs )(struct module_qstate *qstate)
 Detach-subqueries. More...
 
int(* attach_sub )(struct module_qstate *qstate, struct query_info *qinfo, uint16_t qflags, int prime, int valrec, struct module_qstate **newq)
 Attach subquery. More...
 
int(* add_sub )(struct module_qstate *qstate, struct query_info *qinfo, uint16_t qflags, int prime, int valrec, struct module_qstate **newq, struct mesh_state **sub)
 Add detached query. More...
 
void(* kill_sub )(struct module_qstate *newq)
 Kill newly attached sub. More...
 
int(* detect_cycle )(struct module_qstate *qstate, struct query_info *qinfo, uint16_t flags, int prime, int valrec)
 Detect if adding a dependency for qstate on name,type,class will create a dependency cycle. More...
 
struct regionalscratch
 region for temporary usage. More...
 
struct sldns_bufferscratch_buffer
 buffer for temporary usage. More...
 
struct workerworker
 internal data for daemon - worker thread.
 
struct comm_baseworker_base
 the worker event base
 
struct outside_networkoutnet
 the outside network
 
struct mesh_areamesh
 mesh area with query state dependencies
 
struct alloc_cachealloc
 allocation service
 
struct ub_randstate * rnd
 random table to generate random numbers
 
time_t * now
 time in seconds, converted to integer
 
struct timeval * now_tv
 time in microseconds. More...
 
int need_to_validate
 is validation required for messages, controls client-facing validation status (AD bits) and servfails
 
struct val_anchorsanchors
 trusted key storage; these are the configured keys, if not NULL, otherwise configured by validator. More...
 
struct val_neg_cacheneg_cache
 negative cache, configured by the validator. More...
 
struct comm_timerprobe_timer
 the 5011-probe timer (if any)
 
struct auth_zonesauth_zones
 auth zones
 
struct iter_forwardsfwds
 Mapping of forwarding zones to targets. More...
 
struct iter_hintshints
 iterator forwarder information. More...
 
void * modinfo [MAX_MODULE]
 module specific data. More...
 
struct inplace_cbinplace_cb_lists [inplace_cb_types_total]
 
struct edns_known_optionedns_known_options
 Shared array of known edns options (size MAX_KNOWN_EDNS_OPTS). More...
 
size_t edns_known_options_num
 
struct edns_stringsedns_strings
 EDNS client string information.
 
int unique_mesh
 

Detailed Description

Module environment.

Services and data provided to the module.

Field Documentation

◆ send_query

struct outbound_entry*(* module_env::send_query) (struct query_info *qinfo, uint16_t flags, int dnssec, int want_dnssec, int nocaps, int check_ratelimit, struct sockaddr_storage *addr, socklen_t addrlen, uint8_t *zone, size_t zonelen, int tcp_upstream, int ssl_upstream, char *tls_auth_name, struct module_qstate *q, int *was_ratelimited)

Send serviced DNS query to server.

UDP/TCP and EDNS is handled. operate() should return with wait_reply. Later on a callback will cause operate() to be called with event timeout or reply. The time until a timeout is calculated from roundtrip timing, several UDP retries are attempted.

Parameters
qinfoquery info.
flagshost order flags word, with opcode and CD bit.
dnssecif set, EDNS record will have bits set. If EDNS_DO bit is set, DO bit is set in EDNS records. If BIT_CD is set, CD bit is set in queries with EDNS records.
want_dnssecif set, the validator wants DNSSEC. Without EDNS, the answer is likely to be useless for this domain.
nocapsdo not use caps_for_id, use the qname as given. (ignored if caps_for_id is disabled).
check_ratelimitif set, will check ratelimit before sending out.
addrwhere to.
addrlenlength of addr.
zonedelegation point name.
zonelenlength of zone name.
tcp_upstreamuse TCP for upstream queries.
ssl_upstreamuse SSL for upstream queries.
tls_auth_nameif ssl_upstream, use this name with TLS authentication.
qwhich query state to reactivate upon return.
was_ratelimitedit will signal back if the query failed to pass the ratelimit check.
Returns
: false on failure (memory or socket related). no query was sent. Or returns an outbound entry with qsent and qstate set. This outbound_entry will be used on later module invocations that involve this query (timeout, error or reply).

◆ detach_subs

void(* module_env::detach_subs) (struct module_qstate *qstate)

Detach-subqueries.

Remove all sub-query references from this query state. Keeps super-references of those sub-queries correct. Updates stat items in mesh_area structure.

Parameters
qstateused to find mesh state.

Referenced by processInitRequest3().

◆ attach_sub

int(* module_env::attach_sub) (struct module_qstate *qstate, struct query_info *qinfo, uint16_t qflags, int prime, int valrec, struct module_qstate **newq)

Attach subquery.

Creates it if it does not exist already. Keeps sub and super references correct. Updates stat items in mesh_area structure. Pass if it is priming query or not. return: o if error (malloc) happened. o need to initialise the new state (module init; it is a new state). so that the next run of the query with this module is successful. o no init needed, attachment successful.

Parameters
qstatethe state to find mesh state, and that wants to receive the results from the new subquery.
qinfowhat to query for (copied).
qflagswhat flags to use (RD, CD flag or not).
primeif it is a (stub) priming query.
valrecvalidation lookup recursion, does not need validation
newqIf the new subquery needs initialisation, it is returned, otherwise NULL is returned.
Returns
: false on error, true if success (and init may be needed).

Referenced by generate_request(), and generate_sub_request().

◆ add_sub

int(* module_env::add_sub) (struct module_qstate *qstate, struct query_info *qinfo, uint16_t qflags, int prime, int valrec, struct module_qstate **newq, struct mesh_state **sub)

Add detached query.

Creates it if it does not exist already. Does not make super/sub references. Performs a cycle detection - for double check - and fails if there is one. Updates stat items in mesh_area structure. Pass if it is priming query or not. return: o if error (malloc) happened. o need to initialise the new state (module init; it is a new state). so that the next run of the query with this module is successful. o no init needed, attachment successful. o added subquery, created if it did not exist already.

Parameters
qstatethe state to find mesh state, and that wants to receive the results from the new subquery.
qinfowhat to query for (copied).
qflagswhat flags to use (RD / CD flag or not).
primeif it is a (stub) priming query.
valrecif it is a validation recursion query (lookup of key, DS).
newqIf the new subquery needs initialisation, it is returned, otherwise NULL is returned.
subThe added mesh state, created if it did not exist already.
Returns
: false on error, true if success (and init may be needed).

Referenced by generate_request(), and generate_sub_request().

◆ kill_sub

void(* module_env::kill_sub) (struct module_qstate *newq)

Kill newly attached sub.

If attach_sub returns newq for initialisation, but that fails, then this routine will cleanup and delete the freshly created sub.

Parameters
newqthe new subquery that is no longer needed. It is removed.

Referenced by generate_ns_check(), generate_sub_request(), and prime_root().

◆ detect_cycle

int(* module_env::detect_cycle) (struct module_qstate *qstate, struct query_info *qinfo, uint16_t flags, int prime, int valrec)

Detect if adding a dependency for qstate on name,type,class will create a dependency cycle.

Parameters
qstategiven mesh querystate.
qinfoquery info for dependency.
flagsquery flags of dependency, RD/CD flags.
primeif dependency is a priming query or not.
valrecvalidation lookup recursion, does not need validation
Returns
true if the name,type,class exists and the given qstate mesh exists as a dependency of that name. Thus if qstate becomes dependent on name,type,class then a cycle is created.

Referenced by causes_cycle(), and generate_request().

◆ scratch

◆ scratch_buffer

◆ now_tv

struct timeval* module_env::now_tv

◆ anchors

struct val_anchors* module_env::anchors

trusted key storage; these are the configured keys, if not NULL, otherwise configured by validator.

These are the trust anchors, and are not primed and ready for validation, but on the bright side, they are read only memory, thus no locks and fast.

Referenced by auth_zone_verify_zonemd(), do_insecure_add(), do_insecure_remove(), do_list_forwards(), iter_indicates_dnssec(), iter_qname_indicates_dnssec(), process_prime_response(), reset_worker_timer(), set_next_probe(), todo_probe(), val_apply_cfg(), val_deinit(), and val_init().

◆ neg_cache

struct val_neg_cache* module_env::neg_cache

negative cache, configured by the validator.

if not NULL, contains NSEC record lookup trees.

Referenced by val_apply_cfg(), val_deinit(), and val_find_DS().

◆ fwds

struct iter_forwards* module_env::fwds

◆ hints

struct iter_hints* module_env::hints

iterator forwarder information.

per-thread, created by worker. The hints – these aren't stored in the cache because they don't expire. The hints are always used to "prime" the cache. Note that both root hints and stub zone "hints" are stored in this data structure.

Referenced by can_have_last_resort(), iter_stub_fwd_no_cache(), libworker_delete_env(), libworker_setup(), prime_root(), prime_stub(), processCollectClass(), and worker_delete().

◆ modinfo

◆ edns_known_options

struct edns_known_option* module_env::edns_known_options

Shared array of known edns options (size MAX_KNOWN_EDNS_OPTS).

Filled by edns literate modules during init.

Referenced by edns_bypass_cache_stage(), edns_known_options_delete(), edns_known_options_init(), edns_option_is_known(), edns_register_option(), and unique_mesh_state().


The documentation for this struct was generated from the following file: