blob: ea1a9f901abdb86716f6dfae151a9339abaf3fc4 [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
Baptiste Assmann325137d2015-04-13 23:40:55 +020058/* DNS request or response header structure */
59struct dns_header {
60 unsigned short id:16; /* identifier */
61 unsigned char rd :1; /* recursion desired 0: no, 1: yes */
62 unsigned char tc :1; /* truncation 0:no, 1: yes */
63 unsigned char aa :1; /* authoritative answer 0: no, 1: yes */
64 unsigned char opcode :4; /* operation code */
65 unsigned char qr :1; /* query/response 0: query, 1: response */
66 unsigned char rcode :4; /* response code */
67 unsigned char z :1; /* no used */
68 unsigned char ad :1; /* authentic data */
69 unsigned char cd :1; /* checking disabled */
70 unsigned char ra :1; /* recursion available 0: no, 1: yes */
71 unsigned short qdcount :16; /* question count */
72 unsigned short ancount :16; /* answer count */
73 unsigned short nscount :16; /* authority count */
74 unsigned short arcount :16; /* additional count */
75};
76
77/* short structure to describe a DNS question */
78struct dns_question {
79 unsigned short qtype; /* question type */
80 unsigned short qclass; /* query class */
81};
82
83/*
84 * resolvers section and parameters. It is linked to the name servers
85 * servers points to it.
86 * current resolution are stored in a FIFO list.
87 */
88struct dns_resolvers {
89 struct list list; /* resolvers list */
90 char *id; /* resolvers unique identifier */
91 struct {
92 const char *file; /* file where the section appears */
93 int line; /* line where the section appears */
94 } conf; /* config information */
95 struct list nameserver_list; /* dns server list */
96 int count_nameservers; /* total number of nameservers in a resolvers section */
97 int resolve_retries; /* number of retries before giving up */
98 struct { /* time to: */
99 int retry; /* wait for a response before retrying */
100 } timeout;
101 struct { /* time to hold current data when */
102 int valid; /* a response is valid */
103 } hold;
104 struct task *t; /* timeout management */
105 struct list curr_resolution; /* current running resolutions */
106 struct eb_root query_ids; /* tree to quickly lookup/retrieve query ids currently in use */
107 /* used by each nameserver, but stored in resolvers since there must */
108 /* be a unique relation between an eb_root and an eb_node (resolution) */
109};
110
111/*
112 * structure describing a name server used during name resolution.
113 * A name server belongs to a resolvers section.
114 */
115struct dns_nameserver {
116 struct list list; /* nameserver chained list */
117 char *id; /* nameserver unique identifier */
118 struct {
119 const char *file; /* file where the section appears */
120 int line; /* line where the section appears */
121 } conf; /* config information */
122 struct dns_resolvers *resolvers;
123 struct dgram_conn *dgram; /* transport layer */
124 struct sockaddr_storage addr; /* IP address */
125 struct { /* numbers relted to this name server: */
126 long int sent; /* - queries sent */
127 long int valid; /* - valid response */
128 long int update; /* - valid response used to update server's IP */
129 long int cname; /* - CNAME response requiring new resolution */
130 long int cname_error; /* - error when resolving CNAMEs */
131 long int any_err; /* - void response (usually because ANY qtype) */
132 long int nx; /* - NX response */
133 long int timeout; /* - queries which reached timeout */
134 long int refused; /* - queries refused */
135 long int other; /* - other type of response */
136 long int invalid; /* - malformed DNS response */
137 long int too_big; /* - too big response */
138 long int outdated; /* - outdated response (server slower than the other ones) */
Baptiste Assmann6cdea932015-09-02 21:56:05 +0200139 long int truncated; /* - truncated response */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200140 } counters;
141};
142
143/*
144 * resolution structure associated to single server and used to manage name resolution for
145 * this server.
146 * The only link between the resolution and a nameserver is through the query_id.
147 */
148struct dns_resolution {
149 struct list list; /* resolution list */
150 struct dns_resolvers *resolvers; /* resolvers section associated to this resolution */
151 void *requester; /* owner of this name resolution */
152 int (*requester_cb)(struct dns_resolution *, struct dns_nameserver *, unsigned char *, int);
153 /* requester callback for valid response */
154 int (*requester_error_cb)(struct dns_resolution *, int);
155 /* requester callback, for error management */
156 char *hostname_dn; /* server hostname in domain name label format */
157 int hostname_dn_len; /* server domain name label len */
158 int resolver_family_priority; /* which IP family should the resolver use when both are returned */
Baptiste Assmann189363e2015-09-03 10:55:20 +0200159 unsigned int last_resolution; /* time of the lastest valid resolution */
160 unsigned int last_sent_packet; /* time of the latest DNS packet sent */
161 unsigned int last_status_change; /* time of the latest DNS resolution status change */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200162 int query_id; /* DNS query ID dedicated for this resolution */
163 struct eb32_node qid; /* ebtree query id */
Andrew Hayworthe6a4a322015-10-19 22:29:51 +0000164 int query_type;
165 /* 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 +0200166 int status; /* status of the resolution being processed RSLV_STATUS_* */
167 int step; /* */
168 int try; /* current resolution try */
169 int try_cname; /* number of CNAME requests sent */
170 int nb_responses; /* count number of responses received */
171};
172
173/* last resolution status code */
174enum {
175 RSLV_STATUS_NONE = 0, /* no resolution occured yet */
176 RSLV_STATUS_VALID, /* no error */
177 RSLV_STATUS_INVALID, /* invalid responses */
178 RSLV_STATUS_ERROR, /* error */
179 RSLV_STATUS_NX, /* NXDOMAIN */
180 RSLV_STATUS_REFUSED, /* server refused our query */
181 RSLV_STATUS_TIMEOUT, /* no response from DNS servers */
182 RSLV_STATUS_OTHER, /* other errors */
183};
184
185/* current resolution step */
186enum {
187 RSLV_STEP_NONE = 0, /* nothing happening currently */
188 RSLV_STEP_RUNNING, /* resolution is running */
189};
190
191/* return codes after analyzing a DNS response */
192enum {
193 DNS_RESP_VALID = 0, /* valid response */
194 DNS_RESP_INVALID, /* invalid response (various type of errors can trigger it) */
195 DNS_RESP_ERROR, /* DNS error code */
196 DNS_RESP_NX_DOMAIN, /* resolution unsuccessful */
197 DNS_RESP_REFUSED, /* DNS server refused to answer */
198 DNS_RESP_ANCOUNT_ZERO, /* no answers in the response */
199 DNS_RESP_WRONG_NAME, /* response does not match query name */
200 DNS_RESP_CNAME_ERROR, /* error when resolving a CNAME in an atomic response */
201 DNS_RESP_TIMEOUT, /* DNS server has not answered in time */
Baptiste Assmann0df5d962015-09-02 21:58:32 +0200202 DNS_RESP_TRUNCATED, /* DNS response is truncated */
Baptiste Assmann96972bc2015-09-09 00:46:58 +0200203 DNS_RESP_NO_EXPECTED_RECORD, /* No expected records were found in the response */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200204};
205
206/* return codes after searching an IP in a DNS response buffer, using a family preference */
207enum {
208 DNS_UPD_NO = 1, /* provided IP was found and preference is matched
209 * OR provided IP found and preference is not matched, but no IP
210 * matching preference was found */
211 DNS_UPD_SRVIP_NOT_FOUND, /* provided IP not found
212 * OR provided IP found and preference is not match and an IP
213 * matching preference was found */
214 DNS_UPD_CNAME, /* CNAME without any IP provided in the response */
215 DNS_UPD_NAME_ERROR, /* name in the response did not match the query */
Baptiste Assmann0453a1d2015-09-09 00:51:08 +0200216 DNS_UPD_NO_IP_FOUND, /* no IP could be found in the response */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200217};
218
219#endif /* _TYPES_DNS_H */