blob: d5431a5243d6684d82c8f370d626e095f164ce41 [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
54/* DNS request or response header structure */
55struct dns_header {
56 unsigned short id:16; /* identifier */
57 unsigned char rd :1; /* recursion desired 0: no, 1: yes */
58 unsigned char tc :1; /* truncation 0:no, 1: yes */
59 unsigned char aa :1; /* authoritative answer 0: no, 1: yes */
60 unsigned char opcode :4; /* operation code */
61 unsigned char qr :1; /* query/response 0: query, 1: response */
62 unsigned char rcode :4; /* response code */
63 unsigned char z :1; /* no used */
64 unsigned char ad :1; /* authentic data */
65 unsigned char cd :1; /* checking disabled */
66 unsigned char ra :1; /* recursion available 0: no, 1: yes */
67 unsigned short qdcount :16; /* question count */
68 unsigned short ancount :16; /* answer count */
69 unsigned short nscount :16; /* authority count */
70 unsigned short arcount :16; /* additional count */
71};
72
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) */
135 } counters;
136};
137
138/*
139 * resolution structure associated to single server and used to manage name resolution for
140 * this server.
141 * The only link between the resolution and a nameserver is through the query_id.
142 */
143struct dns_resolution {
144 struct list list; /* resolution list */
145 struct dns_resolvers *resolvers; /* resolvers section associated to this resolution */
146 void *requester; /* owner of this name resolution */
147 int (*requester_cb)(struct dns_resolution *, struct dns_nameserver *, unsigned char *, int);
148 /* requester callback for valid response */
149 int (*requester_error_cb)(struct dns_resolution *, int);
150 /* requester callback, for error management */
151 char *hostname_dn; /* server hostname in domain name label format */
152 int hostname_dn_len; /* server domain name label len */
153 int resolver_family_priority; /* which IP family should the resolver use when both are returned */
154 time_t last_resolution; /* time of the lastest valid resolution */
155 time_t last_sent_packet; /* time of the latest DNS packet sent */
156 time_t last_status_change; /* time of the latest DNS resolution status change */
157 int query_id; /* DNS query ID dedicated for this resolution */
158 struct eb32_node qid; /* ebtree query id */
159 int query_type; /* query type to send. By default DNS_RTYPE_ANY */
160 int status; /* status of the resolution being processed RSLV_STATUS_* */
161 int step; /* */
162 int try; /* current resolution try */
163 int try_cname; /* number of CNAME requests sent */
164 int nb_responses; /* count number of responses received */
165};
166
167/* last resolution status code */
168enum {
169 RSLV_STATUS_NONE = 0, /* no resolution occured yet */
170 RSLV_STATUS_VALID, /* no error */
171 RSLV_STATUS_INVALID, /* invalid responses */
172 RSLV_STATUS_ERROR, /* error */
173 RSLV_STATUS_NX, /* NXDOMAIN */
174 RSLV_STATUS_REFUSED, /* server refused our query */
175 RSLV_STATUS_TIMEOUT, /* no response from DNS servers */
176 RSLV_STATUS_OTHER, /* other errors */
177};
178
179/* current resolution step */
180enum {
181 RSLV_STEP_NONE = 0, /* nothing happening currently */
182 RSLV_STEP_RUNNING, /* resolution is running */
183};
184
185/* return codes after analyzing a DNS response */
186enum {
187 DNS_RESP_VALID = 0, /* valid response */
188 DNS_RESP_INVALID, /* invalid response (various type of errors can trigger it) */
189 DNS_RESP_ERROR, /* DNS error code */
190 DNS_RESP_NX_DOMAIN, /* resolution unsuccessful */
191 DNS_RESP_REFUSED, /* DNS server refused to answer */
192 DNS_RESP_ANCOUNT_ZERO, /* no answers in the response */
193 DNS_RESP_WRONG_NAME, /* response does not match query name */
194 DNS_RESP_CNAME_ERROR, /* error when resolving a CNAME in an atomic response */
195 DNS_RESP_TIMEOUT, /* DNS server has not answered in time */
196};
197
198/* return codes after searching an IP in a DNS response buffer, using a family preference */
199enum {
200 DNS_UPD_NO = 1, /* provided IP was found and preference is matched
201 * OR provided IP found and preference is not matched, but no IP
202 * matching preference was found */
203 DNS_UPD_SRVIP_NOT_FOUND, /* provided IP not found
204 * OR provided IP found and preference is not match and an IP
205 * matching preference was found */
206 DNS_UPD_CNAME, /* CNAME without any IP provided in the response */
207 DNS_UPD_NAME_ERROR, /* name in the response did not match the query */
208};
209
210#endif /* _TYPES_DNS_H */