blob: 1b240fae4ce17819dc17fb2f9b6cbfa8b36e605a [file] [log] [blame]
Baptiste Assmann325137d2015-04-13 23:40:55 +02001/*
2 * include/types/dns.h
3 * This file provides structures and types for DNS.
4 *
5 * Copyright (C) 2014 Baptiste Assmann <bedis9@gmail.com>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _TYPES_DNS_H
23#define _TYPES_DNS_H
24
25/*DNS maximum values */
26/*
27 * Maximum issued from RFC:
28 * RFC 1035: https://www.ietf.org/rfc/rfc1035.txt chapter 2.3.4
29 * RFC 2671: http://tools.ietf.org/html/rfc2671
30 */
31#define DNS_MAX_LABEL_SIZE 63
32#define DNS_MAX_NAME_SIZE 255
33#define DNS_MAX_UDP_MESSAGE 4096
34
35/* DNS error messages */
36#define DNS_TOO_LONG_FQDN "hostname too long"
37#define DNS_LABEL_TOO_LONG "one label too long"
38#define DNS_INVALID_CHARACTER "found an invalid character"
39
40/* dns query class */
41#define DNS_RCLASS_IN 1 /* internet class */
42
43/* dns record types (non exhaustive list) */
44#define DNS_RTYPE_A 1 /* IPv4 address */
45#define DNS_RTYPE_CNAME 5 /* canonical name */
46#define DNS_RTYPE_AAAA 28 /* IPv6 address */
47#define DNS_RTYPE_ANY 255 /* all records */
48
49/* dns rcode values */
50#define DNS_RCODE_NO_ERROR 0 /* no error */
51#define DNS_RCODE_NX_DOMAIN 3 /* non existent domain */
52#define DNS_RCODE_REFUSED 5 /* query refused */
53
Baptiste Assmann042d0a12015-09-02 21:52:37 +020054/* dns flags masks */
55#define DNS_FLAG_TRUNCATED 0x0200 /* mask for truncated flag */
56#define DNS_FLAG_REPLYCODE 0x000F /* mask for reply code */
57
Thierry Fournierac88cfe2016-02-17 22:05:30 +010058/* max number of network preference entries are avalaible from the
59 * configuration file.
60 */
61#define SRV_MAX_PREF_NET 5
62
Baptiste Assmann325137d2015-04-13 23:40:55 +020063/* DNS request or response header structure */
64struct dns_header {
Nenad Merdanovic8ab79422016-07-13 14:03:43 +020065 uint16_t id;
66 uint16_t flags;
67 uint16_t qdcount;
68 uint16_t ancount;
69 uint16_t nscount;
70 uint16_t arcount;
71} __attribute__ ((packed));
Baptiste Assmann325137d2015-04-13 23:40:55 +020072
73/* short structure to describe a DNS question */
74struct dns_question {
75 unsigned short qtype; /* question type */
76 unsigned short qclass; /* query class */
77};
78
79/*
80 * resolvers section and parameters. It is linked to the name servers
81 * servers points to it.
82 * current resolution are stored in a FIFO list.
83 */
84struct dns_resolvers {
85 struct list list; /* resolvers list */
86 char *id; /* resolvers unique identifier */
87 struct {
88 const char *file; /* file where the section appears */
89 int line; /* line where the section appears */
90 } conf; /* config information */
91 struct list nameserver_list; /* dns server list */
92 int count_nameservers; /* total number of nameservers in a resolvers section */
93 int resolve_retries; /* number of retries before giving up */
94 struct { /* time to: */
95 int retry; /* wait for a response before retrying */
96 } timeout;
97 struct { /* time to hold current data when */
98 int valid; /* a response is valid */
99 } hold;
100 struct task *t; /* timeout management */
101 struct list curr_resolution; /* current running resolutions */
102 struct eb_root query_ids; /* tree to quickly lookup/retrieve query ids currently in use */
103 /* used by each nameserver, but stored in resolvers since there must */
104 /* be a unique relation between an eb_root and an eb_node (resolution) */
105};
106
107/*
108 * structure describing a name server used during name resolution.
109 * A name server belongs to a resolvers section.
110 */
111struct dns_nameserver {
112 struct list list; /* nameserver chained list */
113 char *id; /* nameserver unique identifier */
114 struct {
115 const char *file; /* file where the section appears */
116 int line; /* line where the section appears */
117 } conf; /* config information */
118 struct dns_resolvers *resolvers;
119 struct dgram_conn *dgram; /* transport layer */
120 struct sockaddr_storage addr; /* IP address */
121 struct { /* numbers relted to this name server: */
122 long int sent; /* - queries sent */
123 long int valid; /* - valid response */
124 long int update; /* - valid response used to update server's IP */
125 long int cname; /* - CNAME response requiring new resolution */
126 long int cname_error; /* - error when resolving CNAMEs */
127 long int any_err; /* - void response (usually because ANY qtype) */
128 long int nx; /* - NX response */
129 long int timeout; /* - queries which reached timeout */
130 long int refused; /* - queries refused */
131 long int other; /* - other type of response */
132 long int invalid; /* - malformed DNS response */
133 long int too_big; /* - too big response */
134 long int outdated; /* - outdated response (server slower than the other ones) */
Baptiste Assmann6cdea932015-09-02 21:56:05 +0200135 long int truncated; /* - truncated response */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200136 } counters;
137};
138
Thierry Fournierada34842016-02-17 21:25:09 +0100139struct dns_options {
140 int family_prio; /* which IP family should the resolver use when both are returned */
Thierry Fournierac88cfe2016-02-17 22:05:30 +0100141 struct {
142 int family;
143 union {
144 struct in_addr in4;
145 struct in6_addr in6;
146 } addr;
147 union {
148 struct in_addr in4;
149 struct in6_addr in6;
150 } mask;
151 } pref_net[SRV_MAX_PREF_NET];
152 int pref_net_nb; /* The number of registered prefered networks. */
Thierry Fournierada34842016-02-17 21:25:09 +0100153};
154
Baptiste Assmann325137d2015-04-13 23:40:55 +0200155/*
156 * resolution structure associated to single server and used to manage name resolution for
157 * this server.
158 * The only link between the resolution and a nameserver is through the query_id.
159 */
160struct dns_resolution {
161 struct list list; /* resolution list */
162 struct dns_resolvers *resolvers; /* resolvers section associated to this resolution */
163 void *requester; /* owner of this name resolution */
164 int (*requester_cb)(struct dns_resolution *, struct dns_nameserver *, unsigned char *, int);
165 /* requester callback for valid response */
166 int (*requester_error_cb)(struct dns_resolution *, int);
167 /* requester callback, for error management */
168 char *hostname_dn; /* server hostname in domain name label format */
169 int hostname_dn_len; /* server domain name label len */
Thierry Fournierada34842016-02-17 21:25:09 +0100170 struct dns_options *opts; /* IP selection options inherited from the configuration file. */
Baptiste Assmann189363e2015-09-03 10:55:20 +0200171 unsigned int last_resolution; /* time of the lastest valid resolution */
172 unsigned int last_sent_packet; /* time of the latest DNS packet sent */
173 unsigned int last_status_change; /* time of the latest DNS resolution status change */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200174 int query_id; /* DNS query ID dedicated for this resolution */
175 struct eb32_node qid; /* ebtree query id */
Andrew Hayworthe6a4a322015-10-19 22:29:51 +0000176 int query_type;
177 /* query type to send. By default DNS_RTYPE_A or DNS_RTYPE_AAAA depending on resolver_family_priority */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200178 int status; /* status of the resolution being processed RSLV_STATUS_* */
179 int step; /* */
180 int try; /* current resolution try */
181 int try_cname; /* number of CNAME requests sent */
182 int nb_responses; /* count number of responses received */
183};
184
185/* last resolution status code */
186enum {
187 RSLV_STATUS_NONE = 0, /* no resolution occured yet */
188 RSLV_STATUS_VALID, /* no error */
189 RSLV_STATUS_INVALID, /* invalid responses */
190 RSLV_STATUS_ERROR, /* error */
191 RSLV_STATUS_NX, /* NXDOMAIN */
192 RSLV_STATUS_REFUSED, /* server refused our query */
193 RSLV_STATUS_TIMEOUT, /* no response from DNS servers */
194 RSLV_STATUS_OTHER, /* other errors */
195};
196
197/* current resolution step */
198enum {
199 RSLV_STEP_NONE = 0, /* nothing happening currently */
200 RSLV_STEP_RUNNING, /* resolution is running */
201};
202
203/* return codes after analyzing a DNS response */
204enum {
205 DNS_RESP_VALID = 0, /* valid response */
206 DNS_RESP_INVALID, /* invalid response (various type of errors can trigger it) */
207 DNS_RESP_ERROR, /* DNS error code */
208 DNS_RESP_NX_DOMAIN, /* resolution unsuccessful */
209 DNS_RESP_REFUSED, /* DNS server refused to answer */
210 DNS_RESP_ANCOUNT_ZERO, /* no answers in the response */
211 DNS_RESP_WRONG_NAME, /* response does not match query name */
212 DNS_RESP_CNAME_ERROR, /* error when resolving a CNAME in an atomic response */
213 DNS_RESP_TIMEOUT, /* DNS server has not answered in time */
Baptiste Assmann0df5d962015-09-02 21:58:32 +0200214 DNS_RESP_TRUNCATED, /* DNS response is truncated */
Baptiste Assmann96972bc2015-09-09 00:46:58 +0200215 DNS_RESP_NO_EXPECTED_RECORD, /* No expected records were found in the response */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200216};
217
218/* return codes after searching an IP in a DNS response buffer, using a family preference */
219enum {
220 DNS_UPD_NO = 1, /* provided IP was found and preference is matched
221 * OR provided IP found and preference is not matched, but no IP
222 * matching preference was found */
223 DNS_UPD_SRVIP_NOT_FOUND, /* provided IP not found
224 * OR provided IP found and preference is not match and an IP
225 * matching preference was found */
226 DNS_UPD_CNAME, /* CNAME without any IP provided in the response */
227 DNS_UPD_NAME_ERROR, /* name in the response did not match the query */
Baptiste Assmann0453a1d2015-09-09 00:51:08 +0200228 DNS_UPD_NO_IP_FOUND, /* no IP could be found in the response */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200229};
230
231#endif /* _TYPES_DNS_H */