2013-08-15 11:33:05 -05:00
|
|
|
/**
|
|
|
|
*
|
2013-11-04 17:37:54 -06:00
|
|
|
* /brief type declarations private to the getdns library
|
2013-08-15 11:33:05 -05:00
|
|
|
*
|
2013-11-04 17:37:54 -06: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
|
|
|
*/
|
2013-11-04 17:37:54 -06:00
|
|
|
|
|
|
|
/*
|
2014-02-25 07:12:33 -06:00
|
|
|
* Copyright (c) 2013, NLnet Labs, Verisign, Inc.
|
2013-11-04 17:37:54 -06:00
|
|
|
* All rights reserved.
|
2014-01-21 14:31:22 -06:00
|
|
|
*
|
2013-11-04 17:37:54 -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.
|
2014-02-25 07:23:19 -06:00
|
|
|
* * Neither the names of the copyright holders nor the
|
2013-11-04 17:37:54 -06:00
|
|
|
* 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
|
|
|
*
|
2013-11-04 17:37:54 -06: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-01-22 03:40:12 -06:00
|
|
|
#include <netinet/in.h>
|
2013-08-15 11:33:05 -05:00
|
|
|
#include <ldns/ldns.h>
|
2014-05-19 08:50:34 -05:00
|
|
|
#include "getdns/getdns.h"
|
2014-10-06 16:04:12 -05:00
|
|
|
#include "getdns/getdns_extra.h"
|
2014-10-16 04:28:32 -05:00
|
|
|
#include "util/rbtree.h"
|
|
|
|
|
2014-10-19 15:51:42 -05:00
|
|
|
|
2013-12-08 15:56:34 -06:00
|
|
|
struct getdns_context;
|
2014-10-15 14:00:57 -05:00
|
|
|
struct getdns_upstreams;
|
2014-10-15 16:57:24 -05:00
|
|
|
struct getdns_upstream;
|
2014-10-15 08:12:16 -05:00
|
|
|
|
2013-08-15 11:33:05 -05:00
|
|
|
|
2013-12-03 07:13:10 -06:00
|
|
|
/**
|
|
|
|
* \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"
|
2013-12-12 12:59:53 -06:00
|
|
|
#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"
|
|
|
|
|
2014-10-08 08:42:33 -05:00
|
|
|
#define TIMEOUT_FOREVER ((int64_t)-1)
|
|
|
|
#define ASSERT_UNREACHABLE 0
|
2013-12-12 12:59:53 -06:00
|
|
|
|
2013-12-03 07:13:10 -06:00
|
|
|
/** @}
|
|
|
|
*/
|
|
|
|
|
2013-08-15 11:33:05 -05:00
|
|
|
/* declarations */
|
|
|
|
struct getdns_dns_req;
|
|
|
|
struct getdns_network_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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2014-10-08 18:18:53 -05:00
|
|
|
struct mem_funcs *
|
|
|
|
priv_getdns_context_mf(getdns_context *context);
|
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
typedef enum network_req_state_enum
|
|
|
|
{
|
|
|
|
NET_REQ_NOT_SENT,
|
|
|
|
NET_REQ_IN_FLIGHT,
|
|
|
|
NET_REQ_FINISHED,
|
|
|
|
NET_REQ_CANCELED
|
2013-10-16 17:33:12 -05:00
|
|
|
} network_req_state;
|
|
|
|
|
2013-11-04 17:37:54 -06:00
|
|
|
/**
|
|
|
|
* structure used by validate_extensions() to check extension formats
|
|
|
|
*/
|
2013-11-05 14:03:44 -06:00
|
|
|
typedef struct getdns_extension_format
|
|
|
|
{
|
|
|
|
char *extstring;
|
|
|
|
getdns_data_type exttype;
|
2013-11-04 17:37:54 -06:00
|
|
|
} getdns_extension_format;
|
|
|
|
|
2014-10-17 17:25:41 -05:00
|
|
|
|
|
|
|
/* State for async tcp stub resolving */
|
|
|
|
typedef struct getdns_tcp_state {
|
|
|
|
|
|
|
|
uint8_t *write_buf;
|
|
|
|
size_t write_buf_len;
|
|
|
|
size_t written;
|
|
|
|
|
|
|
|
uint8_t *read_buf;
|
|
|
|
size_t read_buf_len;
|
|
|
|
uint8_t *read_pos;
|
|
|
|
size_t to_read;
|
|
|
|
|
|
|
|
} getdns_tcp_state;
|
|
|
|
|
2013-10-16 17:33:12 -05:00
|
|
|
/**
|
2014-10-17 17:25:41 -05:00
|
|
|
* Request data
|
2013-10-16 17:33:12 -05:00
|
|
|
**/
|
2013-11-05 14:03:44 -06:00
|
|
|
typedef struct getdns_network_req
|
|
|
|
{
|
2014-10-16 04:28:32 -05:00
|
|
|
/* For storage in upstream->netreq_by_query_id */
|
|
|
|
getdns_rbnode_t node;
|
2013-10-16 17:33:12 -05:00
|
|
|
/* the async_id from unbound */
|
2013-11-05 14:03:44 -06:00
|
|
|
int unbound_id;
|
|
|
|
/* state var */
|
|
|
|
network_req_state state;
|
|
|
|
/* owner request (contains name) */
|
|
|
|
struct getdns_dns_req *owner;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* request type */
|
|
|
|
uint16_t request_type;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* request class */
|
|
|
|
uint16_t request_class;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* result */
|
|
|
|
ldns_pkt *result;
|
2014-02-11 15:42:21 -06:00
|
|
|
int secure;
|
|
|
|
int bogus;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2014-10-15 08:12:16 -05:00
|
|
|
/* For stub resolving */
|
2014-10-15 16:57:24 -05:00
|
|
|
struct getdns_upstream *upstream;
|
2014-10-17 17:25:41 -05:00
|
|
|
int fd;
|
|
|
|
getdns_eventloop_event event;
|
|
|
|
getdns_tcp_state tcp;
|
|
|
|
uint16_t query_id;
|
|
|
|
|
2015-02-03 03:46:44 -06:00
|
|
|
int edns_maximum_udp_payload_size;
|
2014-10-23 08:17:54 -05:00
|
|
|
uint16_t max_udp_payload_size;
|
|
|
|
|
2014-10-17 17:25:41 -05:00
|
|
|
/* Network requests scheduled to write after me */
|
2014-10-18 07:32:55 -05:00
|
|
|
struct getdns_network_req *write_queue_tail;
|
2014-10-15 08:12:16 -05:00
|
|
|
|
2015-01-29 05:30:40 -06: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.
|
|
|
|
*/
|
2015-02-03 03:46:44 -06:00
|
|
|
size_t query_len;
|
|
|
|
uint8_t *query;
|
|
|
|
uint8_t *opt; /* offset of OPT RR in query */
|
2015-01-29 05:30:40 -06:00
|
|
|
uint8_t *response;
|
|
|
|
size_t wire_data_sz;
|
|
|
|
uint8_t wire_data[];
|
|
|
|
|
2013-08-15 11:33:05 -05:00
|
|
|
} getdns_network_req;
|
|
|
|
|
2013-11-04 17:37:54 -06:00
|
|
|
/**
|
|
|
|
* dns request - manages a number of network requests and
|
2013-10-16 17:33:12 -05:00
|
|
|
* the initial data passed to getdns_general
|
|
|
|
*/
|
2014-10-23 16:00:30 -05:00
|
|
|
typedef struct getdns_dns_req {
|
|
|
|
/* For storage in context->outbound_requests */
|
|
|
|
getdns_rbnode_t node;
|
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* name */
|
|
|
|
char *name;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* canceled flag */
|
|
|
|
int canceled;
|
2013-10-17 18:45:25 -05:00
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* context that owns the request */
|
2013-12-06 08:54:06 -06:00
|
|
|
struct getdns_context *context;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* request extensions */
|
2015-02-03 03:46:44 -06:00
|
|
|
int dnssec_return_status;
|
|
|
|
int dnssec_return_only_secure;
|
|
|
|
int dnssec_return_validation_chain;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2014-10-13 17:14:25 -05:00
|
|
|
/* event loop */
|
|
|
|
getdns_eventloop *loop;
|
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* callback data */
|
|
|
|
getdns_callback_t user_callback;
|
|
|
|
void *user_pointer;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
/* the transaction id */
|
|
|
|
getdns_transaction_t trans_id;
|
2013-10-16 17:33:12 -05:00
|
|
|
|
2014-10-13 17:14:25 -05:00
|
|
|
/* for scheduling timeouts when using libunbound */
|
2014-10-08 08:42:33 -05:00
|
|
|
getdns_eventloop_event timeout;
|
2014-02-03 16:23:31 -06:00
|
|
|
|
2014-10-06 16:04:12 -05:00
|
|
|
/* mem funcs */
|
|
|
|
struct mem_funcs my_mf;
|
2013-08-15 11:33:05 -05:00
|
|
|
|
2014-10-15 08:12:16 -05:00
|
|
|
/* Stuff for stub resolving */
|
2014-10-15 14:00:57 -05:00
|
|
|
struct getdns_upstreams *upstreams;
|
2014-10-15 08:12:16 -05:00
|
|
|
|
2015-01-29 05:30:40 -06:00
|
|
|
/* 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-12-08 15:56:34 -06:00
|
|
|
|
2013-11-12 10:00:19 -06:00
|
|
|
#define GETDNS_XMALLOC(obj, type, count) \
|
2013-12-08 17:05:18 -06:00
|
|
|
((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) \
|
2013-12-08 17:05:18 -06:00
|
|
|
((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))) \
|
|
|
|
)
|
2013-12-08 15:56:34 -06:00
|
|
|
|
|
|
|
#define GETDNS_FREE(obj, ptr) \
|
2013-12-08 17:05:18 -06:00
|
|
|
((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
|
|
|
|
2014-10-17 17:25:41 -05: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 */
|
|
|
|
|
|
|
|
/* dns request utils */
|
2014-10-13 17:14:25 -05:00
|
|
|
getdns_dns_req *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
|
|
|
|
2013-11-05 14:03:44 -06:00
|
|
|
void dns_req_free(getdns_dns_req * req);
|
2013-08-15 11:42:35 -05:00
|
|
|
|
2013-08-15 11:33:05 -05:00
|
|
|
#endif
|
2013-11-04 17:37:54 -06:00
|
|
|
/* types-internal.h */
|