summaryrefslogtreecommitdiff
path: root/include/asterisk/dns.h
blob: c193a22aa48208b0a0856dad79b0ddb6c1cbcfcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * Asterisk -- An open source telephony toolkit.
 *
 * Written by Thorsten Lockert <tholo@trollphone.org>
 *
 * Funding provided by Troll Phone Networks AS
 *
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2. See the LICENSE file
 * at the top of the source tree.
 */

/*! \file
 * \brief DNS support for Asterisk
 * \author Thorsten Lockert <tholo@trollphone.org>
 */

#ifndef _ASTERISK_DNS_H
#define _ASTERISK_DNS_H

/*! \brief DNS search return values */
enum ast_dns_search_result {
	AST_DNS_SEARCH_FAILURE = -1,     /*!< DNS search resulted in failure */
	AST_DNS_SEARCH_NO_RECORDS = 0,   /*!< DNS search yielded no results */
	AST_DNS_SEARCH_SUCCESS = 1       /*!< DNS search yielded at least one discovered record */
};

/*!
 * \brief Perform DNS lookup (used by DNS, enum and SRV lookups)
 *
 * \param  context   Void pointer containing data to use in the callback function.
 * \param  dname     Domain name to lookup (host, SRV domain, TXT record name).
 * \param  class     Record Class (see "man res_search").
 * \param  type      Record type (see "man res_search").
 * \param  answer    The full DNS response.
 * \param  len       The length of the full DNS response.
 * \param  callback  Callback function for handling the discovered resource records from
 *                   the DNS search.
 *
 * \retval -1 on search failure
 * \retval  0 on no records found
 * \retval  1 on success
 *
 * \note Asterisk DNS is synchronus at this time. This means that if your DNS
 *       service does not work, Asterisk may lock while waiting for a response.
 */
int ast_search_dns(void *context, const char *dname, int class, int type,
	int (*callback)(void *context, unsigned char *answer, int len, unsigned char *fullanswer));

/*!
 * \brief Extended version of the DNS search function.
 *
 * \details Performs a DNS lookup, (used by DNS, enum and SRV lookups), parses the
 *          results and notifies the observer with the response and discovered records
 *          via invoking the provided callbacks (used by ast_dns_system_resolver).
 *
 * \param  context           Void pointer containing data to use in the handler functions.
 * \param  dname             Domain name to lookup (host, SRV domain, TXT record name).
 * \param  rr_class          Record Class (see "man res_search").
 * \param  rr_type           Record type (see "man res_search").
 * \param  response_handler  Callback function for handling the DNS response. Invoked upon
 *                           completion of the DNS search.
 * \param  record_handler    Callback function for handling the discovered resource
 *                           records from the DNS search. Invoked n times, where n is the
 *                           number of records discovered while parsing the DNS
 *                           response.
 *
 * \retval AST_DNS_SEARCH_FAILURE    on search failure
 * \retval AST_DNS_SEARCH_NO_RECORDS on no records found
 * \retval AST_DNS_SEARCH_SUCCESS    on success
 *
 * \note Asterisk DNS is synchronus at this time. This means that if your DNS
 *       service does not work, Asterisk may lock while waiting for a response.
 */
enum ast_dns_search_result ast_search_dns_ex(void *context, const char *dname, int rr_class, int rr_type,
	int (*response_handler)(void *context, unsigned char *dns_response, int dns_response_len, int rcode),
	int (*record_handler)(void *context, unsigned char *record, int record_len, int ttl));

/*! \brief Retrieve the configured nameservers of the system */
struct ao2_container *ast_dns_get_nameservers(void);

#endif /* _ASTERISK_DNS_H */