getdns/src/types-internal.h

384 lines
11 KiB
C
Raw Normal View History

2013-08-15 11:33:05 -05:00
/**
*
* /brief type declarations private to the getdns library
2013-08-15 11:33:05 -05:00
*
* These type declarations are not meant to be used by applications calling
* the public library functions.
2013-08-15 11:33:05 -05:00
*/
/*
2014-02-25 07:12:33 -06:00
* Copyright (c) 2013, NLnet Labs, Verisign, Inc.
* All rights reserved.
2014-01-21 14:31:22 -06:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the names of the copyright holders nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
2013-08-15 11:33:05 -05:00
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL Verisign, Inc. BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2013-08-15 11:33:05 -05:00
*/
#ifndef TYPES_INTERNAL_H_
#define TYPES_INTERNAL_H_
2014-05-19 08:50:34 -05:00
#include "getdns/getdns.h"
#include "getdns/getdns_extra.h"
#include "util/rbtree.h"
2015-09-30 09:05:19 -05:00
/**
* this structure represents a single item in a list or dict
*/
typedef union getdns_union {
void *ptr;
getdns_dict *dict;
getdns_list *list;
getdns_bindata *bindata;
uint32_t n;
} getdns_union;
2015-09-30 09:05:19 -05:00
typedef struct getdns_item {
getdns_data_type dtype;
getdns_union data;
2015-09-30 09:05:19 -05:00
} getdns_item;
struct getdns_context;
2014-10-15 14:00:57 -05:00
struct getdns_upstreams;
struct getdns_upstream;
/**
* \defgroup strings String Constants
* @{
*/
#define GETDNS_STR_IPV4 "IPv4"
#define GETDNS_STR_IPV6 "IPv6"
#define GETDNS_STR_ADDRESS_TYPE "address_type"
#define GETDNS_STR_ADDRESS_DATA "address_data"
#define GETDNS_STR_PORT "port"
#define GETDNS_STR_EXTENSION_RETURN_BOTH_V4_AND_V6 "return_both_v4_and_v6"
#define GETDNS_STR_KEY_STATUS "status"
#define GETDNS_STR_KEY_REPLIES_TREE "replies_tree"
#define GETDNS_STR_KEY_REPLIES_FULL "replies_full"
#define GETDNS_STR_KEY_JUST_ADDRS "just_address_answers"
#define GETDNS_STR_KEY_CANONICAL_NM "canonical_name"
#define GETDNS_STR_KEY_ANSWER_TYPE "answer_type"
#define GETDNS_STR_KEY_INTERM_ALIASES "intermediate_aliases"
#define GETDNS_STR_KEY_NAME "name"
#define GETDNS_STR_KEY_HEADER "header"
#define GETDNS_STR_KEY_QUESTION "question"
#define GETDNS_STR_KEY_ANSWER "answer"
#define GETDNS_STR_KEY_TYPE "type"
#define GETDNS_STR_KEY_CLASS "class"
#define GETDNS_STR_KEY_TTL "ttl"
#define GETDNS_STR_KEY_RDATA "rdata"
#define GETDNS_STR_KEY_V4_ADDR "ipv4_address"
#define GETDNS_STR_KEY_V6_ADDR "ipv6_address"
#define GETDNS_STR_KEY_RDATA_RAW "rdata_raw"
#define GETDNS_STR_KEY_AUTHORITY "authority"
#define GETDNS_STR_KEY_ADDITIONAL "additional"
#define GETDNS_STR_KEY_QTYPE "qtype"
#define GETDNS_STR_KEY_QCLASS "qclass"
#define GETDNS_STR_KEY_QNAME "qname"
#define GETDNS_STR_KEY_QR "qr"
/* header flags */
#define GETDNS_STR_KEY_ID "id"
#define GETDNS_STR_KEY_OPCODE "opcode"
#define GETDNS_STR_KEY_RCODE "rcode"
#define GETDNS_STR_KEY_AA "aa"
#define GETDNS_STR_KEY_TC "tc"
#define GETDNS_STR_KEY_RD "rd"
#define GETDNS_STR_KEY_RA "ra"
#define GETDNS_STR_KEY_AD "ad"
#define GETDNS_STR_KEY_CD "cd"
#define GETDNS_STR_KEY_Z "z"
#define GETDNS_STR_KEY_QDCOUNT "qdcount"
#define GETDNS_STR_KEY_ANCOUNT "ancount"
#define GETDNS_STR_KEY_NSCOUNT "nscount"
#define GETDNS_STR_KEY_ARCOUNT "arcount"
#define TIMEOUT_FOREVER ((int64_t)-1)
#define ASSERT_UNREACHABLE 0
#define GETDNS_TRANSPORTS_MAX 4
#define GETDNS_UPSTREAM_TRANSPORTS 3
/** @}
*/
2013-08-15 11:33:05 -05:00
/* declarations */
struct getdns_dns_req;
struct getdns_network_req;
typedef void (*internal_cb_t)(struct getdns_dns_req *dns_req);
2014-02-20 16:35:27 -06:00
#define MF_PLAIN ((void *)&plain_mem_funcs_user_arg)
extern void *plain_mem_funcs_user_arg;
2014-02-20 16:35:27 -06:00
typedef union {
struct {
void *(*malloc)(size_t);
void *(*realloc)(void *, size_t);
void (*free)(void *);
} pln;
struct {
void *(*malloc)(void *userarg, size_t);
void *(*realloc)(void *userarg, void *, size_t);
void (*free)(void *userarg, void *);
} ext;
} mf_union;
struct mem_funcs {
void *mf_arg;
mf_union mf;
};
struct mem_funcs *
priv_getdns_context_mf(getdns_context *context);
typedef enum network_req_state_enum
{
NET_REQ_NOT_SENT,
NET_REQ_IN_FLIGHT,
NET_REQ_FINISHED,
NET_REQ_CANCELED
} network_req_state;
/**
* structure used by validate_extensions() to check extension formats
*/
typedef struct getdns_extension_format
{
char *extstring;
getdns_data_type exttype;
} getdns_extension_format;
/* State for async tcp stub resolving */
typedef struct getdns_tcp_state {
uint8_t *write_buf;
size_t write_buf_len;
size_t written;
int write_error;
uint8_t *read_buf;
size_t read_buf_len;
uint8_t *read_pos;
size_t to_read;
} getdns_tcp_state;
/**
* Request data
**/
typedef struct getdns_network_req
{
/* For storage in upstream->netreq_by_query_id */
_getdns_rbnode_t node;
/* the async_id from unbound */
int unbound_id;
/* state var */
network_req_state state;
/* owner request (contains name) */
struct getdns_dns_req *owner;
/* request type */
uint16_t request_type;
/* request class */
uint16_t request_class;
2015-06-29 15:23:01 -05:00
/* dnssec status */
int dnssec_status;
/* For stub resolving */
struct getdns_upstream *upstream;
int fd;
2015-06-21 10:55:12 -05:00
getdns_transport_list_t transports[GETDNS_TRANSPORTS_MAX];
size_t transport_count;
size_t transport_current;
2015-09-30 08:03:15 -05:00
getdns_tls_authentication_t tls_auth_min;
getdns_eventloop_event event;
getdns_tcp_state tcp;
uint16_t query_id;
int edns_maximum_udp_payload_size;
uint16_t max_udp_payload_size;
/* Network requests scheduled to write after me */
struct getdns_network_req *write_queue_tail;
2015-10-31 20:24:02 -05:00
/* Some fields to record info for return_call_debugging */
uint64_t debug_start_time;
uint64_t debug_end_time;
size_t debug_tls_auth_status;
size_t debug_udp;
2015-10-31 20:24:02 -05:00
/* When more space is needed for the wire_data response than is
* available in wire_data[], it will be allocated seperately.
* response will then not point to wire_data anymore.
*/
uint8_t *query;
uint8_t *opt; /* offset of OPT RR in query */
/* each network_req has a set of base options that are
* specific to the query, which are static and included when
* the network_req is created. When the query is sent out to
* a given upstream, some additional options are added that
* are specific to the upstream. There can be at most
* GETDNS_MAXIMUM_UPSTREAM_OPTION_SPACE bytes of
* upstream-specific options.
* use _getdns_network_req_clear_upstream_options() and
* _getdns_network_req_add_upstream_option() to fiddle with the
*/
size_t base_query_option_sz;
size_t response_len;
uint8_t *response;
size_t wire_data_sz;
uint8_t wire_data[];
2015-10-31 20:24:02 -05:00
2013-08-15 11:33:05 -05:00
} getdns_network_req;
/**
* dns request - manages a number of network requests and
* the initial data passed to getdns_general
*/
typedef struct getdns_dns_req {
/* For storage in context->outbound_requests */
_getdns_rbnode_t node;
/* name */
2015-06-29 16:32:49 -05:00
uint8_t name[256];
size_t name_len;
/* canceled flag */
int canceled;
2013-10-17 18:45:25 -05:00
/* context that owns the request */
2013-12-06 08:54:06 -06:00
struct getdns_context *context;
/* request extensions */
int dnssec_return_status;
int dnssec_return_only_secure;
int dnssec_return_validation_chain;
2015-10-31 07:04:08 -05:00
#ifdef DNSSEC_ROADBLOCK_AVOIDANCE
int dnssec_roadblock_avoidance;
int avoid_dnssec_roadblocks;
#endif
2015-03-20 15:37:54 -05:00
int edns_cookies;
int edns_client_subnet_private;
uint16_t tls_query_padding_blocksize;
2015-10-31 20:24:02 -05:00
int return_call_debugging;
/* Internally used by return_validation_chain */
int dnssec_ok_checking_disabled;
/* internally scheduled request */
internal_cb_t internal_cb;
/* event loop */
getdns_eventloop *loop;
/* callback data */
getdns_callback_t user_callback;
void *user_pointer;
/* the transaction id */
getdns_transaction_t trans_id;
/* for scheduling timeouts when using libunbound */
getdns_eventloop_event timeout;
2014-02-03 16:23:31 -06:00
/* mem funcs */
struct mem_funcs my_mf;
2013-08-15 11:33:05 -05:00
/* Stuff for stub resolving */
2014-10-15 14:00:57 -05:00
struct getdns_upstreams *upstreams;
/* network requests for this dns request.
* The array is terminated with NULL.
*
* Memory for these netreqs has been allocated by the same malloc
* operation that reserved space for this getdns_dns_req.
* They will thus be freed as part of the desctruction of this struct,
* and do not need to be freed seperately.
*/
getdns_network_req *netreqs[];
2014-02-20 16:35:27 -06:00
} getdns_dns_req;
2013-11-12 10:00:19 -06:00
#define GETDNS_XMALLOC(obj, type, count) \
((obj).mf_arg == MF_PLAIN \
? ((type *)(*(obj).mf.pln.malloc)( (count)*sizeof(type))) \
: ((type *)(*(obj).mf.ext.malloc)((obj).mf_arg, (count)*sizeof(type))) \
)
2013-11-12 10:00:19 -06:00
#define GETDNS_XREALLOC(obj, ptr, type, count) \
((obj).mf_arg == MF_PLAIN \
? ((type *)(*(obj).mf.pln.realloc)( (ptr), (count)*sizeof(type))) \
: ((type *)(*(obj).mf.ext.realloc)( (obj).mf_arg \
, (ptr), (count)*sizeof(type))) \
)
#define GETDNS_FREE(obj, ptr) \
((obj).mf_arg == MF_PLAIN \
? ((*(obj).mf.pln.free)( (ptr))) \
: ((*(obj).mf.ext.free)((obj).mf_arg, (ptr))) \
)
2013-11-12 10:00:19 -06:00
#define GETDNS_NULL_FREE(obj, ptr) \
do { \
if (!(ptr)) \
break; \
if ((obj).mf_arg == MF_PLAIN) \
(*(obj).mf.pln.free)( (ptr)); \
else \
(*(obj).mf.ext.free)((obj).mf_arg, (ptr)); \
(ptr) = NULL; \
} while (0);
2013-11-12 10:00:19 -06:00
#define GETDNS_MALLOC(obj, type) GETDNS_XMALLOC(obj, type, 1)
#define GETDNS_REALLOC(obj, ptr, type) GETDNS_XREALLOC(obj, ptr, type, 1);
2013-08-15 11:33:05 -05:00
/* utility methods */
extern getdns_dict *dnssec_ok_checking_disabled;
extern getdns_dict *dnssec_ok_checking_disabled_roadblock_avoidance;
extern getdns_dict *dnssec_ok_checking_disabled_avoid_roadblocks;
2013-08-15 11:33:05 -05:00
/* dns request utils */
getdns_dns_req *_getdns_dns_req_new(getdns_context *context, getdns_eventloop *loop,
const char *name, uint16_t request_type, getdns_dict *extensions);
2013-08-15 11:33:05 -05:00
void _getdns_dns_req_free(getdns_dns_req * req);
2013-08-15 11:42:35 -05:00
/* network request utils */
getdns_return_t _getdns_network_req_add_upstream_option(getdns_network_req * req,
uint16_t code, uint16_t sz, const void* data);
void _getdns_network_req_clear_upstream_options(getdns_network_req * req);
2013-08-15 11:33:05 -05:00
#endif
/* types-internal.h */