blob: 3e52e1731b0ac35e256235468446c0364134dc36 [file] [log] [blame]
Baptiste Assmann325137d2015-04-13 23:40:55 +02001/*
2 * Name server resolution
3 *
4 * Copyright 2014 Baptiste Assmann <bedis9@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
18#include <unistd.h>
19
20#include <sys/types.h>
21
Baptiste Assmann044fd5b2018-08-10 10:56:38 +020022#include <common/cfgparse.h>
Christopher Faulet67957bd2017-09-27 11:00:59 +020023#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010024#include <common/initcall.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020025#include <common/time.h>
26#include <common/ticks.h>
Olivier Houchard8da5f982017-08-04 18:35:36 +020027#include <common/net_helper.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020028
Baptiste Assmann333939c2019-01-21 08:34:50 +010029#include <types/action.h>
William Lallemand69e96442016-11-19 00:58:54 +010030#include <types/applet.h>
31#include <types/cli.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020032#include <types/global.h>
33#include <types/dns.h>
William Lallemand69e96442016-11-19 00:58:54 +010034#include <types/stats.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020035
Baptiste Assmann333939c2019-01-21 08:34:50 +010036#include <proto/action.h>
William Lallemand69e96442016-11-19 00:58:54 +010037#include <proto/channel.h>
38#include <proto/cli.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020039#include <proto/checks.h>
40#include <proto/dns.h>
41#include <proto/fd.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020042#include <proto/http_ana.h>
Baptiste Assmann333939c2019-01-21 08:34:50 +010043#include <proto/http_rules.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020044#include <proto/log.h>
Baptiste Assmann333939c2019-01-21 08:34:50 +010045#include <proto/sample.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020046#include <proto/server.h>
47#include <proto/task.h>
48#include <proto/proto_udp.h>
Christopher Faulet67957bd2017-09-27 11:00:59 +020049#include <proto/proxy.h>
William Lallemand69e96442016-11-19 00:58:54 +010050#include <proto/stream_interface.h>
Baptiste Assmann333939c2019-01-21 08:34:50 +010051#include <proto/tcp_rules.h>
52#include <proto/vars.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020053
Christopher Faulet67957bd2017-09-27 11:00:59 +020054struct list dns_resolvers = LIST_HEAD_INIT(dns_resolvers);
55struct list dns_srvrq_list = LIST_HEAD_INIT(dns_srvrq_list);
Baptiste Assmann325137d2015-04-13 23:40:55 +020056
Tim Duesterhusfcac33d2020-01-18 02:04:12 +010057static THREAD_LOCAL uint64_t dns_query_id_seed = 0; /* random seed */
Willy Tarreau8ceae722018-11-26 11:58:30 +010058
59DECLARE_STATIC_POOL(dns_answer_item_pool, "dns_answer_item", sizeof(struct dns_answer_item));
60DECLARE_STATIC_POOL(dns_resolution_pool, "dns_resolution", sizeof(struct dns_resolution));
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +010061DECLARE_POOL(dns_requester_pool, "dns_requester", sizeof(struct dns_requester));
Willy Tarreau8ceae722018-11-26 11:58:30 +010062
Christopher Faulet67957bd2017-09-27 11:00:59 +020063static unsigned int resolution_uuid = 1;
Baptiste Assmann333939c2019-01-21 08:34:50 +010064unsigned int dns_failed_resolutions = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020065
Christopher Faulet67957bd2017-09-27 11:00:59 +020066/* Returns a pointer to the resolvers matching the id <id>. NULL is returned if
67 * no match is found.
Baptiste Assmann325137d2015-04-13 23:40:55 +020068 */
Christopher Faulet67957bd2017-09-27 11:00:59 +020069struct dns_resolvers *find_resolvers_by_id(const char *id)
Baptiste Assmann201c07f2017-05-22 15:17:15 +020070{
Christopher Faulet67957bd2017-09-27 11:00:59 +020071 struct dns_resolvers *res;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020072
Christopher Faulet67957bd2017-09-27 11:00:59 +020073 list_for_each_entry(res, &dns_resolvers, list) {
74 if (!strcmp(res->id, id))
75 return res;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020076 }
Christopher Faulet67957bd2017-09-27 11:00:59 +020077 return NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020078}
79
Christopher Faulet67957bd2017-09-27 11:00:59 +020080/* Returns a pointer on the SRV request matching the name <name> for the proxy
81 * <px>. NULL is returned if no match is found.
Baptiste Assmann201c07f2017-05-22 15:17:15 +020082 */
Christopher Faulet67957bd2017-09-27 11:00:59 +020083struct dns_srvrq *find_srvrq_by_name(const char *name, struct proxy *px)
Baptiste Assmann201c07f2017-05-22 15:17:15 +020084{
Christopher Faulet67957bd2017-09-27 11:00:59 +020085 struct dns_srvrq *srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020086
Christopher Faulet67957bd2017-09-27 11:00:59 +020087 list_for_each_entry(srvrq, &dns_srvrq_list, list) {
88 if (srvrq->proxy == px && !strcmp(srvrq->name, name))
89 return srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020090 }
Christopher Faulet67957bd2017-09-27 11:00:59 +020091 return NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020092}
93
Christopher Faulet67957bd2017-09-27 11:00:59 +020094/* Allocates a new SRVRQ for the given server with the name <fqdn>. It returns
95 * NULL if an error occurred. */
96struct dns_srvrq *new_dns_srvrq(struct server *srv, char *fqdn)
Baptiste Assmann201c07f2017-05-22 15:17:15 +020097{
Christopher Faulet67957bd2017-09-27 11:00:59 +020098 struct proxy *px = srv->proxy;
99 struct dns_srvrq *srvrq = NULL;
100 int fqdn_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200101
Christopher Faulet67957bd2017-09-27 11:00:59 +0200102 fqdn_len = strlen(fqdn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200103 hostname_dn_len = dns_str_to_dn_label(fqdn, fqdn_len + 1, trash.area,
104 trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200105 if (hostname_dn_len == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100106 ha_alert("config : %s '%s', server '%s': failed to parse FQDN '%s'\n",
107 proxy_type_str(px), px->id, srv->id, fqdn);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200108 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200109 }
110
Christopher Faulet67957bd2017-09-27 11:00:59 +0200111 if ((srvrq = calloc(1, sizeof(*srvrq))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100112 ha_alert("config : %s '%s', server '%s': out of memory\n",
113 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200114 goto err;
115 }
116 srvrq->obj_type = OBJ_TYPE_SRVRQ;
117 srvrq->proxy = px;
118 srvrq->name = strdup(fqdn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200119 srvrq->hostname_dn = strdup(trash.area);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200120 srvrq->hostname_dn_len = hostname_dn_len;
121 if (!srvrq->name || !srvrq->hostname_dn) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100122 ha_alert("config : %s '%s', server '%s': out of memory\n",
123 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200124 goto err;
125 }
126 LIST_ADDQ(&dns_srvrq_list, &srvrq->list);
127 return srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200128
Christopher Faulet67957bd2017-09-27 11:00:59 +0200129 err:
130 if (srvrq) {
131 free(srvrq->name);
132 free(srvrq->hostname_dn);
133 free(srvrq);
134 }
135 return NULL;
136}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200137
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200138
Christopher Faulet67957bd2017-09-27 11:00:59 +0200139/* 2 bytes random generator to generate DNS query ID */
140static inline uint16_t dns_rnd16(void)
141{
Christopher Fauletb2812a62017-10-04 16:17:58 +0200142 if (!dns_query_id_seed)
143 dns_query_id_seed = now_ms;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200144 dns_query_id_seed ^= dns_query_id_seed << 13;
145 dns_query_id_seed ^= dns_query_id_seed >> 7;
146 dns_query_id_seed ^= dns_query_id_seed << 17;
147 return dns_query_id_seed;
148}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200149
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200150
Christopher Faulet67957bd2017-09-27 11:00:59 +0200151static inline int dns_resolution_timeout(struct dns_resolution *res)
152{
Baptiste Assmannf50e1ac2019-11-07 11:02:18 +0100153 return res->resolvers->timeout.resolve;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200154}
155
Christopher Faulet67957bd2017-09-27 11:00:59 +0200156/* Updates a resolvers' task timeout for next wake up and queue it */
157static void dns_update_resolvers_timeout(struct dns_resolvers *resolvers)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200158{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200159 struct dns_resolution *res;
160 int next;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200161
Christopher Faulet67957bd2017-09-27 11:00:59 +0200162 next = tick_add(now_ms, resolvers->timeout.resolve);
163 if (!LIST_ISEMPTY(&resolvers->resolutions.curr)) {
164 res = LIST_NEXT(&resolvers->resolutions.curr, struct dns_resolution *, list);
165 next = MIN(next, tick_add(res->last_query, resolvers->timeout.retry));
166 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200167
Christopher Faulet67957bd2017-09-27 11:00:59 +0200168 list_for_each_entry(res, &resolvers->resolutions.wait, list)
169 next = MIN(next, tick_add(res->last_resolution, dns_resolution_timeout(res)));
Baptiste Assmann325137d2015-04-13 23:40:55 +0200170
Christopher Faulet67957bd2017-09-27 11:00:59 +0200171 resolvers->t->expire = next;
172 task_queue(resolvers->t);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200173}
174
Christopher Faulet67957bd2017-09-27 11:00:59 +0200175/* Opens an UDP socket on the namesaver's IP/Port, if required. Returns 0 on
176 * success, -1 otherwise.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200177 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200178static int dns_connect_namesaver(struct dns_nameserver *ns)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200179{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200180 struct dgram_conn *dgram = ns->dgram;
181 int fd;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200182
Christopher Faulet67957bd2017-09-27 11:00:59 +0200183 /* Already connected */
184 if (dgram->t.sock.fd != -1)
185 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200186
Christopher Faulet67957bd2017-09-27 11:00:59 +0200187 /* Create an UDP socket and connect it on the nameserver's IP/Port */
188 if ((fd = socket(ns->addr.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
189 send_log(NULL, LOG_WARNING,
190 "DNS : resolvers '%s': can't create socket for nameserver '%s'.\n",
191 ns->resolvers->id, ns->id);
192 return -1;
193 }
194 if (connect(fd, (struct sockaddr*)&ns->addr, get_addr_len(&ns->addr)) == -1) {
195 send_log(NULL, LOG_WARNING,
196 "DNS : resolvers '%s': can't connect socket for nameserver '%s'.\n",
197 ns->resolvers->id, ns->id);
198 close(fd);
199 return -1;
200 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200201
Christopher Faulet67957bd2017-09-27 11:00:59 +0200202 /* Make the socket non blocking */
203 fcntl(fd, F_SETFL, O_NONBLOCK);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200204
Christopher Faulet67957bd2017-09-27 11:00:59 +0200205 /* Add the fd in the fd list and update its parameters */
206 dgram->t.sock.fd = fd;
Willy Tarreaua9786b62018-01-25 07:22:13 +0100207 fd_insert(fd, dgram, dgram_fd_handler, MAX_THREADS_MASK);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200208 fd_want_recv(fd);
209 return 0;
210}
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200211
Christopher Faulet67957bd2017-09-27 11:00:59 +0200212/* Forges a DNS query. It needs the following information from the caller:
213 * - <query_id> : the DNS query id corresponding to this query
214 * - <query_type> : DNS_RTYPE_* request DNS record type (A, AAAA, ANY...)
215 * - <hostname_dn> : hostname in domain name format
216 * - <hostname_dn_len> : length of <hostname_dn>
217 *
218 * To store the query, the caller must pass a buffer <buf> and its size
219 * <bufsize>. It returns the number of written bytes in success, -1 if <buf> is
220 * too short.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200221 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200222static int dns_build_query(int query_id, int query_type, unsigned int accepted_payload_size,
223 char *hostname_dn, int hostname_dn_len, char *buf, int bufsize)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200224{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200225 struct dns_header dns_hdr;
226 struct dns_question qinfo;
227 struct dns_additional_record edns;
228 char *p = buf;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200229
Christopher Faulet67957bd2017-09-27 11:00:59 +0200230 if (sizeof(dns_hdr) + sizeof(qinfo) + sizeof(edns) + hostname_dn_len >= bufsize)
231 return -1;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200232
Christopher Faulet67957bd2017-09-27 11:00:59 +0200233 memset(buf, 0, bufsize);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200234
Christopher Faulet67957bd2017-09-27 11:00:59 +0200235 /* Set dns query headers */
236 dns_hdr.id = (unsigned short) htons(query_id);
237 dns_hdr.flags = htons(0x0100); /* qr=0, opcode=0, aa=0, tc=0, rd=1, ra=0, z=0, rcode=0 */
238 dns_hdr.qdcount = htons(1); /* 1 question */
239 dns_hdr.ancount = 0;
240 dns_hdr.nscount = 0;
241 dns_hdr.arcount = htons(1);
242 memcpy(p, &dns_hdr, sizeof(dns_hdr));
243 p += sizeof(dns_hdr);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200244
Christopher Faulet67957bd2017-09-27 11:00:59 +0200245 /* Set up query hostname */
246 memcpy(p, hostname_dn, hostname_dn_len);
247 p += hostname_dn_len;
248 *p++ = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200249
Christopher Faulet67957bd2017-09-27 11:00:59 +0200250 /* Set up query info (type and class) */
251 qinfo.qtype = htons(query_type);
252 qinfo.qclass = htons(DNS_RCLASS_IN);
253 memcpy(p, &qinfo, sizeof(qinfo));
254 p += sizeof(qinfo);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200255
Christopher Faulet67957bd2017-09-27 11:00:59 +0200256 /* Set the DNS extension */
257 edns.name = 0;
258 edns.type = htons(DNS_RTYPE_OPT);
259 edns.udp_payload_size = htons(accepted_payload_size);
260 edns.extension = 0;
261 edns.data_length = 0;
262 memcpy(p, &edns, sizeof(edns));
263 p += sizeof(edns);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200264
Christopher Faulet67957bd2017-09-27 11:00:59 +0200265 return (p - buf);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200266}
267
Christopher Faulet67957bd2017-09-27 11:00:59 +0200268/* Sends a DNS query to resolvers associated to a resolution. It returns 0 on
269 * success, -1 otherwise.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200270 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200271static int dns_send_query(struct dns_resolution *resolution)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200272{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200273 struct dns_resolvers *resolvers = resolution->resolvers;
274 struct dns_nameserver *ns;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100275 int len;
276
277 /* Update resolution */
278 resolution->nb_queries = 0;
279 resolution->nb_responses = 0;
280 resolution->last_query = now_ms;
281
282 len = dns_build_query(resolution->query_id, resolution->query_type,
283 resolvers->accepted_payload_size,
284 resolution->hostname_dn, resolution->hostname_dn_len,
285 trash.area, trash.size);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200286
Christopher Faulet67957bd2017-09-27 11:00:59 +0200287 list_for_each_entry(ns, &resolvers->nameservers, list) {
288 int fd = ns->dgram->t.sock.fd;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100289 int ret;
290
Christopher Faulet67957bd2017-09-27 11:00:59 +0200291 if (fd == -1) {
292 if (dns_connect_namesaver(ns) == -1)
293 continue;
294 fd = ns->dgram->t.sock.fd;
295 resolvers->nb_nameservers++;
296 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200297
Willy Tarreau0eae6322019-12-20 11:18:54 +0100298 if (len < 0)
299 goto snd_error;
300
301 ret = send(fd, trash.area, len, 0);
302 if (ret == len) {
303 ns->counters.sent++;
304 resolution->nb_queries++;
305 continue;
306 }
307
308 if (ret == -1 && errno == EAGAIN) {
309 /* retry once the socket is ready */
310 fd_cant_send(fd);
311 continue;
312 }
313
314 snd_error:
315 ns->counters.snd_error++;
316 resolution->nb_queries++;
317 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200318
Christopher Faulet67957bd2017-09-27 11:00:59 +0200319 /* Push the resolution at the end of the active list */
320 LIST_DEL(&resolution->list);
321 LIST_ADDQ(&resolvers->resolutions.curr, &resolution->list);
322 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200323}
324
Christopher Faulet67957bd2017-09-27 11:00:59 +0200325/* Prepares and sends a DNS resolution. It returns 1 if the query was sent, 0 if
326 * skipped and -1 if an error occurred.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200327 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200328static int
329dns_run_resolution(struct dns_resolution *resolution)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200330{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200331 struct dns_resolvers *resolvers = resolution->resolvers;
332 int query_id, i;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200333
Christopher Faulet67957bd2017-09-27 11:00:59 +0200334 /* Avoid sending requests for resolutions that don't yet have an
335 * hostname, ie resolutions linked to servers that do not yet have an
336 * fqdn */
337 if (!resolution->hostname_dn)
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200338 return 0;
339
Christopher Faulet67957bd2017-09-27 11:00:59 +0200340 /* Check if a resolution has already been started for this server return
341 * directly to avoid resolution pill up. */
342 if (resolution->step != RSLV_STEP_NONE)
343 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200344
Christopher Faulet67957bd2017-09-27 11:00:59 +0200345 /* Generates a new query id. We try at most 100 times to find a free
346 * query id */
347 for (i = 0; i < 100; ++i) {
348 query_id = dns_rnd16();
349 if (!eb32_lookup(&resolvers->query_ids, query_id))
Olivier Houchard8da5f982017-08-04 18:35:36 +0200350 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200351 query_id = -1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200352 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200353 if (query_id == -1) {
354 send_log(NULL, LOG_NOTICE,
355 "could not generate a query id for %s, in resolvers %s.\n",
356 resolution->hostname_dn, resolvers->id);
357 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200358 }
359
Christopher Faulet67957bd2017-09-27 11:00:59 +0200360 /* Update resolution parameters */
361 resolution->query_id = query_id;
362 resolution->qid.key = query_id;
363 resolution->step = RSLV_STEP_RUNNING;
364 resolution->query_type = resolution->prefered_query_type;
365 resolution->try = resolvers->resolve_retries;
366 eb32_insert(&resolvers->query_ids, &resolution->qid);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200367
Christopher Faulet67957bd2017-09-27 11:00:59 +0200368 /* Send the DNS query */
369 resolution->try -= 1;
370 dns_send_query(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200371 return 1;
372}
373
Christopher Faulet67957bd2017-09-27 11:00:59 +0200374/* Performs a name resolution for the requester <req> */
375void dns_trigger_resolution(struct dns_requester *req)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200376{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200377 struct dns_resolvers *resolvers;
378 struct dns_resolution *res;
379 int exp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200380
Christopher Faulet67957bd2017-09-27 11:00:59 +0200381 if (!req || !req->resolution)
382 return;
383 res = req->resolution;
384 resolvers = res->resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200385
Christopher Faulet67957bd2017-09-27 11:00:59 +0200386 /* The resolution must not be triggered yet. Use the cached response, if
387 * valid */
388 exp = tick_add(res->last_resolution, resolvers->hold.valid);
Olivier Houchardf3d9e602018-05-22 18:40:07 +0200389 if (resolvers->t && (res->status != RSLV_STATUS_VALID ||
390 !tick_isset(res->last_resolution) || tick_is_expired(exp, now_ms)))
391 task_wakeup(resolvers->t, TASK_WOKEN_OTHER);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200392}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200393
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200394
Christopher Faulet67957bd2017-09-27 11:00:59 +0200395/* Resets some resolution parameters to initial values and also delete the query
396 * ID from the resolver's tree.
397 */
398static void dns_reset_resolution(struct dns_resolution *resolution)
399{
400 /* update resolution status */
401 resolution->step = RSLV_STEP_NONE;
402 resolution->try = 0;
403 resolution->last_resolution = now_ms;
404 resolution->nb_queries = 0;
405 resolution->nb_responses = 0;
406 resolution->query_type = resolution->prefered_query_type;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200407
Christopher Faulet67957bd2017-09-27 11:00:59 +0200408 /* clean up query id */
409 eb32_delete(&resolution->qid);
410 resolution->query_id = 0;
411 resolution->qid.key = 0;
412}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200413
Christopher Faulet67957bd2017-09-27 11:00:59 +0200414/* Returns the query id contained in a DNS response */
415static inline unsigned short dns_response_get_query_id(unsigned char *resp)
416{
417 return resp[0] * 256 + resp[1];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200418}
419
Christopher Faulet67957bd2017-09-27 11:00:59 +0200420
421/* Analyses, re-builds and copies the name <name> from the DNS response packet
422 * <buffer>. <name> must point to the 'data_len' information or pointer 'c0'
423 * for compressed data. The result is copied into <dest>, ensuring we don't
424 * overflow using <dest_len> Returns the number of bytes the caller can move
425 * forward. If 0 it means an error occurred while parsing the name. <offset> is
426 * the number of bytes the caller could move forward.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200427 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200428int dns_read_name(unsigned char *buffer, unsigned char *bufend,
429 unsigned char *name, char *destination, int dest_len,
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100430 int *offset, unsigned int depth)
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200431{
432 int nb_bytes = 0, n = 0;
433 int label_len;
434 unsigned char *reader = name;
435 char *dest = destination;
436
437 while (1) {
Remi Gacogne2d19fbc2018-12-05 17:55:10 +0100438 if (reader >= bufend)
439 goto err;
440
Christopher Faulet67957bd2017-09-27 11:00:59 +0200441 /* Name compression is in use */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200442 if ((*reader & 0xc0) == 0xc0) {
Remi Gacogne2d19fbc2018-12-05 17:55:10 +0100443 if (reader + 1 >= bufend)
444 goto err;
445
Christopher Faulet67957bd2017-09-27 11:00:59 +0200446 /* Must point BEFORE current position */
447 if ((buffer + reader[1]) > reader)
448 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200449
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100450 if (depth++ > 100)
451 goto err;
452
Nikhil Agrawal2fa66c32018-12-20 10:50:59 +0530453 n = dns_read_name(buffer, bufend, buffer + (*reader & 0x3f)*256 + reader[1],
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100454 dest, dest_len - nb_bytes, offset, depth);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200455 if (n == 0)
Christopher Faulet67957bd2017-09-27 11:00:59 +0200456 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200457
Christopher Faulet67957bd2017-09-27 11:00:59 +0200458 dest += n;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200459 nb_bytes += n;
460 goto out;
461 }
462
463 label_len = *reader;
464 if (label_len == 0)
465 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200466
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200467 /* Check if:
468 * - we won't read outside the buffer
469 * - there is enough place in the destination
470 */
471 if ((reader + label_len >= bufend) || (nb_bytes + label_len >= dest_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +0200472 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200473
474 /* +1 to take label len + label string */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200475 label_len++;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200476
477 memcpy(dest, reader, label_len);
478
Christopher Faulet67957bd2017-09-27 11:00:59 +0200479 dest += label_len;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200480 nb_bytes += label_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200481 reader += label_len;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200482 }
483
Christopher Faulet67957bd2017-09-27 11:00:59 +0200484 out:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200485 /* offset computation:
486 * parse from <name> until finding either NULL or a pointer "c0xx"
487 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200488 reader = name;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200489 *offset = 0;
490 while (reader < bufend) {
491 if ((reader[0] & 0xc0) == 0xc0) {
492 *offset += 2;
493 break;
494 }
495 else if (*reader == 0) {
496 *offset += 1;
497 break;
498 }
499 *offset += 1;
500 ++reader;
501 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200502 return nb_bytes;
503
Christopher Faulet67957bd2017-09-27 11:00:59 +0200504 err:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200505 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200506}
507
Christopher Faulet67957bd2017-09-27 11:00:59 +0200508/* Checks for any obsolete record, also identify any SRV request, and try to
509 * find a corresponding server.
510*/
511static void dns_check_dns_response(struct dns_resolution *res)
512{
513 struct dns_resolvers *resolvers = res->resolvers;
514 struct dns_requester *req, *reqback;
515 struct dns_answer_item *item, *itemback;
516 struct server *srv;
517 struct dns_srvrq *srvrq;
518
Baptiste Assmann13a92322019-06-07 09:40:55 +0200519 /* clean up obsolete Additional records */
520 list_for_each_entry_safe(item, itemback, &res->response.ar_list, list) {
521 if ((item->last_seen + resolvers->hold.obsolete / 1000) < now.tv_sec) {
522 LIST_DEL(&item->list);
523 pool_free(dns_answer_item_pool, item);
524 }
525 }
526
Christopher Faulet67957bd2017-09-27 11:00:59 +0200527 list_for_each_entry_safe(item, itemback, &res->response.answer_list, list) {
528
529 /* Remove obsolete items */
530 if ((item->last_seen + resolvers->hold.obsolete / 1000) < now.tv_sec) {
531 if (item->type != DNS_RTYPE_SRV)
532 goto rm_obselete_item;
533
534 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
535 if ((srvrq = objt_dns_srvrq(req->owner)) == NULL)
536 continue;
537
538 /* Remove any associated server */
539 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100540 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200541 if (srv->srvrq == srvrq && srv->svc_port == item->port &&
542 item->data_len == srv->hostname_dn_len &&
543 !memcmp(srv->hostname_dn, item->target, item->data_len)) {
544 snr_update_srv_status(srv, 1);
545 free(srv->hostname);
546 free(srv->hostname_dn);
547 srv->hostname = NULL;
548 srv->hostname_dn = NULL;
549 srv->hostname_dn_len = 0;
550 dns_unlink_resolution(srv->dns_requester);
551 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100552 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200553 }
554 }
555
556 rm_obselete_item:
557 LIST_DEL(&item->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100558 pool_free(dns_answer_item_pool, item);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200559 continue;
560 }
561
562 if (item->type != DNS_RTYPE_SRV)
563 continue;
564
565 /* Now process SRV records */
566 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
567 if ((srvrq = objt_dns_srvrq(req->owner)) == NULL)
568 continue;
569
570 /* Check if a server already uses that hostname */
571 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100572 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200573 if (srv->srvrq == srvrq && srv->svc_port == item->port &&
574 item->data_len == srv->hostname_dn_len &&
Daniel Corbettf8716912019-11-17 09:48:56 -0500575 !memcmp(srv->hostname_dn, item->target, item->data_len) &&
576 !srv->dns_opts.ignore_weight) {
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100577 int ha_weight;
578
Baptiste Assmann25e6fc22019-10-21 15:13:48 +0200579 /* DNS weight range if from 0 to 65535
580 * HAProxy weight is from 0 to 256
581 * The rule below ensures that weight 0 is well respected
582 * while allowing a "mapping" from DNS weight into HAProxy's one.
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100583 */
Baptiste Assmann25e6fc22019-10-21 15:13:48 +0200584 ha_weight = (item->weight + 255) / 256;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100585 if (srv->uweight != ha_weight) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200586 char weight[9];
587
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100588 snprintf(weight, sizeof(weight), "%d", ha_weight);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200589 server_parse_weight_change_request(srv, weight);
590 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100591 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200592 break;
593 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100594 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200595 }
596 if (srv)
597 continue;
598
599 /* If not, try to find a server with undefined hostname */
600 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100601 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200602 if (srv->srvrq == srvrq && !srv->hostname_dn)
603 break;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100604 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200605 }
606 /* And update this server, if found */
607 if (srv) {
608 const char *msg = NULL;
609 char weight[9];
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100610 int ha_weight;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200611 char hostname[DNS_MAX_NAME_SIZE];
612
613 if (dns_dn_label_to_str(item->target, item->data_len+1,
Olivier Houchard55dcdf42017-11-06 15:15:04 +0100614 hostname, DNS_MAX_NAME_SIZE) == -1) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100615 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200616 continue;
Olivier Houchard55dcdf42017-11-06 15:15:04 +0100617 }
Baptiste Assmann13a92322019-06-07 09:40:55 +0200618
619 /* Check if an Additional Record is associated to this SRV record.
620 * Perform some sanity checks too to ensure the record can be used.
621 * If all fine, we simply pick up the IP address found and associate
622 * it to the server.
623 */
624 if ((item->ar_item != NULL) &&
625 (item->ar_item->type == DNS_RTYPE_A || item->ar_item->type == DNS_RTYPE_AAAA))
626 {
627
628 switch (item->ar_item->type) {
629 case DNS_RTYPE_A:
630 update_server_addr(srv, &(((struct sockaddr_in*)&item->ar_item->address)->sin_addr), AF_INET, "DNS additional recrd");
631 break;
632 case DNS_RTYPE_AAAA:
633 update_server_addr(srv, &(((struct sockaddr_in6*)&item->ar_item->address)->sin6_addr), AF_INET6, "DNS additional recrd");
634 break;
635 }
636
637 srv->flags |= SRV_F_NO_RESOLUTION;
638 }
639
Olivier Houchardd16bfe62017-10-31 15:21:19 +0100640 msg = update_server_fqdn(srv, hostname, "SRV record", 1);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200641 if (msg)
642 send_log(srv->proxy, LOG_NOTICE, "%s", msg);
643
644 srv->svc_port = item->port;
645 srv->flags &= ~SRV_F_MAPPORTS;
646 if ((srv->check.state & CHK_ST_CONFIGURED) &&
647 !(srv->flags & SRV_F_CHECKPORT))
648 srv->check.port = item->port;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100649
Daniel Corbettf8716912019-11-17 09:48:56 -0500650 if (!srv->dns_opts.ignore_weight) {
651 /* DNS weight range if from 0 to 65535
652 * HAProxy weight is from 0 to 256
653 * The rule below ensures that weight 0 is well respected
654 * while allowing a "mapping" from DNS weight into HAProxy's one.
655 */
656 ha_weight = (item->weight + 255) / 256;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100657
Daniel Corbettf8716912019-11-17 09:48:56 -0500658 snprintf(weight, sizeof(weight), "%d", ha_weight);
659 server_parse_weight_change_request(srv, weight);
660 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100661 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200662 }
663 }
664 }
665}
666
667/* Validates that the buffer DNS response provided in <resp> and finishing
668 * before <bufend> is valid from a DNS protocol point of view.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200669 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200670 * The result is stored in <resolution>' response, buf_response,
671 * response_query_records and response_answer_records members.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200672 *
673 * This function returns one of the DNS_RESP_* code to indicate the type of
674 * error found.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200675 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200676static int dns_validate_dns_response(unsigned char *resp, unsigned char *bufend,
677 struct dns_resolution *resolution, int max_answer_records)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200678{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200679 unsigned char *reader;
680 char *previous_dname, tmpname[DNS_MAX_NAME_SIZE];
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200681 int len, flags, offset;
682 int dns_query_record_id;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200683 int nb_saved_records;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200684 struct dns_query_item *dns_query;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200685 struct dns_answer_item *dns_answer_record, *tmp_record;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200686 struct dns_response_packet *dns_p;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200687 int i, found = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200688
Christopher Faulet67957bd2017-09-27 11:00:59 +0200689 reader = resp;
690 len = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200691 previous_dname = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200692 dns_query = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200693
Christopher Faulet67957bd2017-09-27 11:00:59 +0200694 /* Initialization of response buffer and structure */
Baptiste Assmann729c9012017-05-22 15:13:10 +0200695 dns_p = &resolution->response;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200696
697 /* query id */
698 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200699 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200700 dns_p->header.id = reader[0] * 256 + reader[1];
701 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200702
Christopher Faulet67957bd2017-09-27 11:00:59 +0200703 /* Flags and rcode are stored over 2 bytes
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200704 * First byte contains:
705 * - response flag (1 bit)
706 * - opcode (4 bits)
707 * - authoritative (1 bit)
708 * - truncated (1 bit)
709 * - recursion desired (1 bit)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200710 */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200711 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200712 return DNS_RESP_INVALID;
713
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200714 flags = reader[0] * 256 + reader[1];
715
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200716 if ((flags & DNS_FLAG_REPLYCODE) != DNS_RCODE_NO_ERROR) {
717 if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_NX_DOMAIN)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200718 return DNS_RESP_NX_DOMAIN;
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200719 else if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_REFUSED)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200720 return DNS_RESP_REFUSED;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200721 return DNS_RESP_ERROR;
722 }
723
Christopher Faulet67957bd2017-09-27 11:00:59 +0200724 /* Move forward 2 bytes for flags */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200725 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200726
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200727 /* 2 bytes for question count */
728 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200729 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200730 dns_p->header.qdcount = reader[0] * 256 + reader[1];
Christopher Faulet67957bd2017-09-27 11:00:59 +0200731 /* (for now) we send one query only, so we expect only one in the
732 * response too */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200733 if (dns_p->header.qdcount != 1)
734 return DNS_RESP_QUERY_COUNT_ERROR;
735 if (dns_p->header.qdcount > DNS_MAX_QUERY_RECORDS)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200736 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200737 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200738
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200739 /* 2 bytes for answer count */
740 if (reader + 2 >= bufend)
741 return DNS_RESP_INVALID;
742 dns_p->header.ancount = reader[0] * 256 + reader[1];
743 if (dns_p->header.ancount == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200744 return DNS_RESP_ANCOUNT_ZERO;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200745 /* Check if too many records are announced */
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200746 if (dns_p->header.ancount > max_answer_records)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200747 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200748 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200749
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200750 /* 2 bytes authority count */
751 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200752 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200753 dns_p->header.nscount = reader[0] * 256 + reader[1];
754 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200755
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200756 /* 2 bytes additional count */
757 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200758 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200759 dns_p->header.arcount = reader[0] * 256 + reader[1];
760 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200761
Christopher Faulet67957bd2017-09-27 11:00:59 +0200762 /* Parsing dns queries */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200763 LIST_INIT(&dns_p->query_list);
764 for (dns_query_record_id = 0; dns_query_record_id < dns_p->header.qdcount; dns_query_record_id++) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200765 /* Use next pre-allocated dns_query_item after ensuring there is
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200766 * still one available.
Christopher Faulet67957bd2017-09-27 11:00:59 +0200767 * It's then added to our packet query list. */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200768 if (dns_query_record_id > DNS_MAX_QUERY_RECORDS)
769 return DNS_RESP_INVALID;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200770 dns_query = &resolution->response_query_records[dns_query_record_id];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200771 LIST_ADDQ(&dns_p->query_list, &dns_query->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200772
Christopher Faulet67957bd2017-09-27 11:00:59 +0200773 /* Name is a NULL terminated string in our case, since we have
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200774 * one query per response and the first one can't be compressed
Christopher Faulet67957bd2017-09-27 11:00:59 +0200775 * (using the 0x0c format) */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200776 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100777 len = dns_read_name(resp, bufend, reader, dns_query->name, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200778
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200779 if (len == 0)
780 return DNS_RESP_INVALID;
781
782 reader += offset;
783 previous_dname = dns_query->name;
784
785 /* move forward 2 bytes for question type */
786 if (reader + 2 >= bufend)
787 return DNS_RESP_INVALID;
788 dns_query->type = reader[0] * 256 + reader[1];
789 reader += 2;
790
791 /* move forward 2 bytes for question class */
792 if (reader + 2 >= bufend)
793 return DNS_RESP_INVALID;
794 dns_query->class = reader[0] * 256 + reader[1];
795 reader += 2;
796 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200797
Baptiste Assmann251abb92017-08-11 09:58:27 +0200798 /* TRUNCATED flag must be checked after we could read the query type
Christopher Faulet67957bd2017-09-27 11:00:59 +0200799 * because a TRUNCATED SRV query type response can still be exploited */
Baptiste Assmann251abb92017-08-11 09:58:27 +0200800 if (dns_query->type != DNS_RTYPE_SRV && flags & DNS_FLAG_TRUNCATED)
801 return DNS_RESP_TRUNCATED;
802
Baptiste Assmann325137d2015-04-13 23:40:55 +0200803 /* now parsing response records */
Baptiste Assmann69fce672017-05-04 08:37:45 +0200804 nb_saved_records = 0;
Olivier Houchard8da5f982017-08-04 18:35:36 +0200805 for (i = 0; i < dns_p->header.ancount; i++) {
Baptiste Assmann325137d2015-04-13 23:40:55 +0200806 if (reader >= bufend)
807 return DNS_RESP_INVALID;
808
Willy Tarreaubafbe012017-11-24 17:34:44 +0100809 dns_answer_record = pool_alloc(dns_answer_item_pool);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200810 if (dns_answer_record == NULL)
811 return (DNS_RESP_INVALID);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200812
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200813 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100814 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200815
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200816 if (len == 0) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100817 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200818 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200819 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200820
Christopher Faulet67957bd2017-09-27 11:00:59 +0200821 /* Check if the current record dname is valid. previous_dname
822 * points either to queried dname or last CNAME target */
Baptiste Assmannddc8ce62017-08-11 10:31:22 +0200823 if (dns_query->type != DNS_RTYPE_SRV && memcmp(previous_dname, tmpname, len) != 0) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100824 pool_free(dns_answer_item_pool, dns_answer_record);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200825 if (i == 0) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200826 /* First record, means a mismatch issue between
827 * queried dname and dname found in the first
828 * record */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200829 return DNS_RESP_INVALID;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200830 }
831 else {
832 /* If not the first record, this means we have a
833 * CNAME resolution error */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200834 return DNS_RESP_CNAME_ERROR;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200835 }
836
Baptiste Assmann325137d2015-04-13 23:40:55 +0200837 }
838
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200839 memcpy(dns_answer_record->name, tmpname, len);
840 dns_answer_record->name[len] = 0;
Baptiste Assmann2359ff12015-08-07 11:24:05 +0200841
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200842 reader += offset;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200843 if (reader >= bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100844 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200845 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200846 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200847
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200848 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200849 if (reader + 2 > bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100850 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200851 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200852 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200853 dns_answer_record->type = reader[0] * 256 + reader[1];
854 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200855
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200856 /* 2 bytes for class (2) */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200857 if (reader + 2 > bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100858 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200859 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200860 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200861 dns_answer_record->class = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +0200862 reader += 2;
863
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200864 /* 4 bytes for ttl (4) */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200865 if (reader + 4 > bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100866 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200867 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200868 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200869 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
870 + reader[2] * 256 + reader[3];
871 reader += 4;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200872
Christopher Faulet67957bd2017-09-27 11:00:59 +0200873 /* Now reading data len */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200874 if (reader + 2 > bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100875 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200876 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200877 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200878 dns_answer_record->data_len = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +0200879
Christopher Faulet67957bd2017-09-27 11:00:59 +0200880 /* Move forward 2 bytes for data len */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200881 reader += 2;
882
Jérôme Magnin8d4e7dc2018-12-20 16:47:31 +0100883 if (reader + dns_answer_record->data_len > bufend) {
Remi Gacogneefbbdf72018-12-05 17:56:29 +0100884 pool_free(dns_answer_item_pool, dns_answer_record);
885 return DNS_RESP_INVALID;
886 }
887
Christopher Faulet67957bd2017-09-27 11:00:59 +0200888 /* Analyzing record content */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200889 switch (dns_answer_record->type) {
Baptiste Assmann325137d2015-04-13 23:40:55 +0200890 case DNS_RTYPE_A:
891 /* ipv4 is stored on 4 bytes */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200892 if (dns_answer_record->data_len != 4) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100893 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200894 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200895 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200896 dns_answer_record->address.sa_family = AF_INET;
897 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
898 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200899 break;
900
901 case DNS_RTYPE_CNAME:
Christopher Faulet67957bd2017-09-27 11:00:59 +0200902 /* Check if this is the last record and update the caller about the status:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200903 * no IP could be found and last record was a CNAME. Could be triggered
904 * by a wrong query type
905 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200906 * + 1 because dns_answer_record_id starts at 0
907 * while number of answers is an integer and
908 * starts at 1.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200909 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200910 if (i + 1 == dns_p->header.ancount) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100911 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200912 return DNS_RESP_CNAME_ERROR;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200913 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200914
915 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100916 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200917 if (len == 0) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100918 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200919 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200920 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200921
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200922 memcpy(dns_answer_record->target, tmpname, len);
923 dns_answer_record->target[len] = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200924 previous_dname = dns_answer_record->target;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200925 break;
926
Olivier Houchard8da5f982017-08-04 18:35:36 +0200927
928 case DNS_RTYPE_SRV:
Christopher Faulet67957bd2017-09-27 11:00:59 +0200929 /* Answer must contain :
Olivier Houchard8da5f982017-08-04 18:35:36 +0200930 * - 2 bytes for the priority
931 * - 2 bytes for the weight
932 * - 2 bytes for the port
933 * - the target hostname
934 */
935 if (dns_answer_record->data_len <= 6) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100936 pool_free(dns_answer_item_pool, dns_answer_record);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200937 return DNS_RESP_INVALID;
938 }
Willy Tarreaud5370e12017-09-19 14:59:52 +0200939 dns_answer_record->priority = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200940 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +0200941 dns_answer_record->weight = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200942 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +0200943 dns_answer_record->port = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200944 reader += sizeof(uint16_t);
945 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100946 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200947 if (len == 0) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100948 pool_free(dns_answer_item_pool, dns_answer_record);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200949 return DNS_RESP_INVALID;
950 }
Olivier Houchard8da5f982017-08-04 18:35:36 +0200951 dns_answer_record->data_len = len;
952 memcpy(dns_answer_record->target, tmpname, len);
953 dns_answer_record->target[len] = 0;
954 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200955
Baptiste Assmann325137d2015-04-13 23:40:55 +0200956 case DNS_RTYPE_AAAA:
957 /* ipv6 is stored on 16 bytes */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200958 if (dns_answer_record->data_len != 16) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100959 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200960 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200961 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200962 dns_answer_record->address.sa_family = AF_INET6;
963 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
964 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200965 break;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200966
Baptiste Assmann325137d2015-04-13 23:40:55 +0200967 } /* switch (record type) */
968
Christopher Faulet67957bd2017-09-27 11:00:59 +0200969 /* Increment the counter for number of records saved into our
970 * local response */
971 nb_saved_records++;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200972
Christopher Faulet67957bd2017-09-27 11:00:59 +0200973 /* Move forward dns_answer_record->data_len for analyzing next
974 * record in the response */
975 reader += ((dns_answer_record->type == DNS_RTYPE_SRV)
976 ? offset
977 : dns_answer_record->data_len);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200978
979 /* Lookup to see if we already had this entry */
Olivier Houchard8da5f982017-08-04 18:35:36 +0200980 found = 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200981 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
982 if (tmp_record->type != dns_answer_record->type)
983 continue;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200984
985 switch(tmp_record->type) {
986 case DNS_RTYPE_A:
987 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
988 &((struct sockaddr_in *)&tmp_record->address)->sin_addr,
989 sizeof(in_addr_t)))
990 found = 1;
991 break;
992
993 case DNS_RTYPE_AAAA:
994 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
995 &((struct sockaddr_in6 *)&tmp_record->address)->sin6_addr,
996 sizeof(struct in6_addr)))
997 found = 1;
998 break;
999
Olivier Houchard8da5f982017-08-04 18:35:36 +02001000 case DNS_RTYPE_SRV:
1001 if (dns_answer_record->data_len == tmp_record->data_len &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001002 !memcmp(dns_answer_record->target, tmp_record->target, dns_answer_record->data_len) &&
Olivier Houchard8da5f982017-08-04 18:35:36 +02001003 dns_answer_record->port == tmp_record->port) {
1004 tmp_record->weight = dns_answer_record->weight;
1005 found = 1;
1006 }
1007 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001008
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001009 default:
1010 break;
1011 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001012
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001013 if (found == 1)
1014 break;
1015 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001016
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001017 if (found == 1) {
1018 tmp_record->last_seen = now.tv_sec;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001019 pool_free(dns_answer_item_pool, dns_answer_record);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001020 }
1021 else {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001022 dns_answer_record->last_seen = now.tv_sec;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001023 dns_answer_record->ar_item = NULL;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001024 LIST_ADDQ(&dns_p->answer_list, &dns_answer_record->list);
1025 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001026 } /* for i 0 to ancount */
1027
Christopher Faulet67957bd2017-09-27 11:00:59 +02001028 /* Save the number of records we really own */
Baptiste Assmann69fce672017-05-04 08:37:45 +02001029 dns_p->header.ancount = nb_saved_records;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001030
1031 /* now parsing additional records */
1032 nb_saved_records = 0;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001033 for (i = 0; i < dns_p->header.arcount; i++) {
1034 if (reader >= bufend)
1035 return DNS_RESP_INVALID;
1036
1037 dns_answer_record = pool_alloc(dns_answer_item_pool);
1038 if (dns_answer_record == NULL)
1039 return (DNS_RESP_INVALID);
1040
1041 offset = 0;
1042 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
1043
1044 if (len == 0) {
1045 pool_free(dns_answer_item_pool, dns_answer_record);
1046 return DNS_RESP_INVALID;
1047 }
1048
1049 /* Check if the current record dname is valid. previous_dname
1050 * points either to queried dname or last CNAME target */
1051 if (dns_query->type != DNS_RTYPE_SRV && memcmp(previous_dname, tmpname, len) != 0) {
1052 pool_free(dns_answer_item_pool, dns_answer_record);
1053 if (i == 0) {
1054 /* First record, means a mismatch issue between
1055 * queried dname and dname found in the first
1056 * record */
1057 return DNS_RESP_INVALID;
1058 }
1059 else {
1060 /* If not the first record, this means we have a
1061 * CNAME resolution error */
1062 return DNS_RESP_CNAME_ERROR;
1063 }
1064
1065 }
1066
1067 memcpy(dns_answer_record->name, tmpname, len);
1068 dns_answer_record->name[len] = 0;
1069
1070 reader += offset;
1071 if (reader >= bufend) {
1072 pool_free(dns_answer_item_pool, dns_answer_record);
1073 return DNS_RESP_INVALID;
1074 }
1075
1076 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
1077 if (reader + 2 > bufend) {
1078 pool_free(dns_answer_item_pool, dns_answer_record);
1079 return DNS_RESP_INVALID;
1080 }
1081 dns_answer_record->type = reader[0] * 256 + reader[1];
1082 reader += 2;
1083
1084 /* 2 bytes for class (2) */
1085 if (reader + 2 > bufend) {
1086 pool_free(dns_answer_item_pool, dns_answer_record);
1087 return DNS_RESP_INVALID;
1088 }
1089 dns_answer_record->class = reader[0] * 256 + reader[1];
1090 reader += 2;
1091
1092 /* 4 bytes for ttl (4) */
1093 if (reader + 4 > bufend) {
1094 pool_free(dns_answer_item_pool, dns_answer_record);
1095 return DNS_RESP_INVALID;
1096 }
1097 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
1098 + reader[2] * 256 + reader[3];
1099 reader += 4;
1100
1101 /* Now reading data len */
1102 if (reader + 2 > bufend) {
1103 pool_free(dns_answer_item_pool, dns_answer_record);
1104 return DNS_RESP_INVALID;
1105 }
1106 dns_answer_record->data_len = reader[0] * 256 + reader[1];
1107
1108 /* Move forward 2 bytes for data len */
1109 reader += 2;
1110
1111 if (reader + dns_answer_record->data_len > bufend) {
1112 pool_free(dns_answer_item_pool, dns_answer_record);
1113 return DNS_RESP_INVALID;
1114 }
1115
1116 /* Analyzing record content */
1117 switch (dns_answer_record->type) {
1118 case DNS_RTYPE_A:
1119 /* ipv4 is stored on 4 bytes */
1120 if (dns_answer_record->data_len != 4) {
1121 pool_free(dns_answer_item_pool, dns_answer_record);
1122 return DNS_RESP_INVALID;
1123 }
1124 dns_answer_record->address.sa_family = AF_INET;
1125 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
1126 reader, dns_answer_record->data_len);
1127 break;
1128
1129 case DNS_RTYPE_AAAA:
1130 /* ipv6 is stored on 16 bytes */
1131 if (dns_answer_record->data_len != 16) {
1132 pool_free(dns_answer_item_pool, dns_answer_record);
1133 return DNS_RESP_INVALID;
1134 }
1135 dns_answer_record->address.sa_family = AF_INET6;
1136 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
1137 reader, dns_answer_record->data_len);
1138 break;
1139
1140 default:
1141 pool_free(dns_answer_item_pool, dns_answer_record);
1142 continue;
1143
1144 } /* switch (record type) */
1145
1146 /* Increment the counter for number of records saved into our
1147 * local response */
1148 nb_saved_records++;
1149
1150 /* Move forward dns_answer_record->data_len for analyzing next
1151 * record in the response */
1152 reader += ((dns_answer_record->type == DNS_RTYPE_SRV)
1153 ? offset
1154 : dns_answer_record->data_len);
1155
1156 /* Lookup to see if we already had this entry */
1157 found = 0;
1158 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
1159 if (tmp_record->type != dns_answer_record->type)
1160 continue;
1161
1162 switch(tmp_record->type) {
1163 case DNS_RTYPE_A:
1164 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
1165 &((struct sockaddr_in *)&tmp_record->address)->sin_addr,
1166 sizeof(in_addr_t)))
1167 found = 1;
1168 break;
1169
1170 case DNS_RTYPE_AAAA:
1171 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
1172 &((struct sockaddr_in6 *)&tmp_record->address)->sin6_addr,
1173 sizeof(struct in6_addr)))
1174 found = 1;
1175 break;
1176
1177 default:
1178 break;
1179 }
1180
1181 if (found == 1)
1182 break;
1183 }
1184
1185 if (found == 1) {
1186 tmp_record->last_seen = now.tv_sec;
1187 pool_free(dns_answer_item_pool, dns_answer_record);
1188 }
1189 else {
1190 dns_answer_record->last_seen = now.tv_sec;
1191 dns_answer_record->ar_item = NULL;
1192
1193 // looking for the SRV record in the response list linked to this additional record
1194 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
1195 if ( !(
1196 (tmp_record->type == DNS_RTYPE_SRV) &&
1197 (tmp_record->ar_item == NULL) &&
1198 (memcmp(tmp_record->target, dns_answer_record->name, tmp_record->data_len) == 0)
1199 )
1200 )
1201 continue;
1202 tmp_record->ar_item = dns_answer_record;
1203 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02001204
1205 LIST_ADDQ(&dns_p->ar_list, &dns_answer_record->list);
1206 }
1207 } /* for i 0 to arcount */
1208
1209 /* Save the number of records we really own */
1210 dns_p->header.arcount = nb_saved_records;
1211
Christopher Faulet67957bd2017-09-27 11:00:59 +02001212 dns_check_dns_response(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001213 return DNS_RESP_VALID;
1214}
1215
Christopher Faulet67957bd2017-09-27 11:00:59 +02001216/* Searches dn_name resolution in resp.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001217 * If existing IP not found, return the first IP matching family_priority,
1218 * otherwise, first ip found
1219 * The following tasks are the responsibility of the caller:
Baptiste Assmann3cf7f982016-04-17 22:43:26 +02001220 * - <dns_p> contains an error free DNS response
Baptiste Assmann325137d2015-04-13 23:40:55 +02001221 * For both cases above, dns_validate_dns_response is required
1222 * returns one of the DNS_UPD_* code
1223 */
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02001224int dns_get_ip_from_response(struct dns_response_packet *dns_p,
Baptiste Assmann42746372017-05-03 12:12:02 +02001225 struct dns_options *dns_opts, void *currentip,
Thierry Fournierada34842016-02-17 21:25:09 +01001226 short currentip_sin_family,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02001227 void **newip, short *newip_sin_family,
1228 void *owner)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001229{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001230 struct dns_answer_item *record;
Thierry Fournierada34842016-02-17 21:25:09 +01001231 int family_priority;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001232 int currentip_found;
Baptiste Assmann3cf7f982016-04-17 22:43:26 +02001233 unsigned char *newip4, *newip6;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001234 int currentip_sel;
1235 int j;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001236 int score, max_score;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001237 int allowed_duplicated_ip;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001238
Christopher Faulet67957bd2017-09-27 11:00:59 +02001239 family_priority = dns_opts->family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001240 allowed_duplicated_ip = dns_opts->accept_duplicate_ip;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001241 *newip = newip4 = newip6 = NULL;
1242 currentip_found = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001243 *newip_sin_family = AF_UNSPEC;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001244 max_score = -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001245
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001246 /* Select an IP regarding configuration preference.
Joseph Herlant42cf6392018-11-15 10:33:28 -08001247 * Top priority is the preferred network ip version,
1248 * second priority is the preferred network.
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001249 * the last priority is the currently used IP,
1250 *
1251 * For these three priorities, a score is calculated. The
1252 * weight are:
Joseph Herlant42cf6392018-11-15 10:33:28 -08001253 * 8 - preferred ip version.
1254 * 4 - preferred network.
Baptistefc725902016-12-26 23:21:08 +01001255 * 2 - if the ip in the record is not affected to any other server in the same backend (duplication)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001256 * 1 - current ip.
1257 * The result with the biggest score is returned.
1258 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001259
1260 list_for_each_entry(record, &dns_p->answer_list, list) {
1261 void *ip;
1262 unsigned char ip_type;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001263
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001264 if (record->type == DNS_RTYPE_A) {
1265 ip = &(((struct sockaddr_in *)&record->address)->sin_addr);
1266 ip_type = AF_INET;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001267 }
1268 else if (record->type == DNS_RTYPE_AAAA) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001269 ip_type = AF_INET6;
1270 ip = &(((struct sockaddr_in6 *)&record->address)->sin6_addr);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001271 }
1272 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001273 continue;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001274 score = 0;
1275
Joseph Herlant42cf6392018-11-15 10:33:28 -08001276 /* Check for preferred ip protocol. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001277 if (ip_type == family_priority)
Baptistefc725902016-12-26 23:21:08 +01001278 score += 8;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001279
Joseph Herlant42cf6392018-11-15 10:33:28 -08001280 /* Check for preferred network. */
Baptiste Assmann42746372017-05-03 12:12:02 +02001281 for (j = 0; j < dns_opts->pref_net_nb; j++) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001282
1283 /* Compare only the same adresses class. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001284 if (dns_opts->pref_net[j].family != ip_type)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001285 continue;
1286
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001287 if ((ip_type == AF_INET &&
1288 in_net_ipv4(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001289 &dns_opts->pref_net[j].mask.in4,
1290 &dns_opts->pref_net[j].addr.in4)) ||
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001291 (ip_type == AF_INET6 &&
1292 in_net_ipv6(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001293 &dns_opts->pref_net[j].mask.in6,
1294 &dns_opts->pref_net[j].addr.in6))) {
Baptistefc725902016-12-26 23:21:08 +01001295 score += 4;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001296 break;
1297 }
1298 }
1299
Christopher Faulet67957bd2017-09-27 11:00:59 +02001300 /* Check if the IP found in the record is already affected to a
Baptiste Assmann84221b42018-06-22 13:03:50 +02001301 * member of a group. If not, the score should be incremented
Christopher Faulet67957bd2017-09-27 11:00:59 +02001302 * by 2. */
Baptiste Assmann84221b42018-06-22 13:03:50 +02001303 if (owner && snr_check_ip_callback(owner, ip, &ip_type)) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001304 if (!allowed_duplicated_ip) {
1305 continue;
1306 }
Baptiste Assmann84221b42018-06-22 13:03:50 +02001307 } else {
1308 score += 2;
1309 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001310
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001311 /* Check for current ip matching. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001312 if (ip_type == currentip_sin_family &&
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001313 ((currentip_sin_family == AF_INET &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001314 !memcmp(ip, currentip, 4)) ||
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001315 (currentip_sin_family == AF_INET6 &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001316 !memcmp(ip, currentip, 16)))) {
1317 score++;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001318 currentip_sel = 1;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001319 }
1320 else
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001321 currentip_sel = 0;
1322
1323 /* Keep the address if the score is better than the previous
Christopher Faulet67957bd2017-09-27 11:00:59 +02001324 * score. The maximum score is 15, if this value is reached, we
1325 * break the parsing. Implicitly, this score is reached the ip
1326 * selected is the current ip. */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001327 if (score > max_score) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001328 if (ip_type == AF_INET)
1329 newip4 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001330 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001331 newip6 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001332 currentip_found = currentip_sel;
Baptistefc725902016-12-26 23:21:08 +01001333 if (score == 15)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001334 return DNS_UPD_NO;
1335 max_score = score;
1336 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001337 } /* list for each record entries */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001338
Christopher Faulet67957bd2017-09-27 11:00:59 +02001339 /* No IP found in the response */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001340 if (!newip4 && !newip6)
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001341 return DNS_UPD_NO_IP_FOUND;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001342
Christopher Faulet67957bd2017-09-27 11:00:59 +02001343 /* Case when the caller looks first for an IPv4 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001344 if (family_priority == AF_INET) {
1345 if (newip4) {
1346 *newip = newip4;
1347 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001348 }
1349 else if (newip6) {
1350 *newip = newip6;
1351 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001352 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001353 if (!currentip_found)
1354 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001355 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001356 /* Case when the caller looks first for an IPv6 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001357 else if (family_priority == AF_INET6) {
1358 if (newip6) {
1359 *newip = newip6;
1360 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001361 }
1362 else if (newip4) {
1363 *newip = newip4;
1364 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001365 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001366 if (!currentip_found)
1367 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001368 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001369 /* Case when the caller have no preference (we prefer IPv6) */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001370 else if (family_priority == AF_UNSPEC) {
1371 if (newip6) {
1372 *newip = newip6;
1373 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001374 }
1375 else if (newip4) {
1376 *newip = newip4;
1377 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001378 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001379 if (!currentip_found)
1380 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001381 }
1382
Christopher Faulet67957bd2017-09-27 11:00:59 +02001383 /* No reason why we should change the server's IP address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001384 return DNS_UPD_NO;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001385
Christopher Faulet67957bd2017-09-27 11:00:59 +02001386 not_found:
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001387 list_for_each_entry(record, &dns_p->answer_list, list) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001388 /* Move the first record to the end of the list, for internal
1389 * round robin */
1390 LIST_DEL(&record->list);
1391 LIST_ADDQ(&dns_p->answer_list, &record->list);
1392 break;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001393 }
1394 return DNS_UPD_SRVIP_NOT_FOUND;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001395}
1396
Christopher Faulet67957bd2017-09-27 11:00:59 +02001397/* Turns a domain name label into a string.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001398 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001399 * <dn> must be a null-terminated string. <dn_len> must include the terminating
1400 * null byte. <str> must be allocated and its size must be passed in <str_len>.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001401 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001402 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1403 * <str> (including the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001404 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001405int dns_dn_label_to_str(const char *dn, int dn_len, char *str, int str_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001406{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001407 char *ptr;
1408 int i, sz;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001409
Christopher Faulet67957bd2017-09-27 11:00:59 +02001410 if (str_len < dn_len - 1)
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001411 return -1;
1412
Christopher Faulet67957bd2017-09-27 11:00:59 +02001413 ptr = str;
1414 for (i = 0; i < dn_len-1; ++i) {
1415 sz = dn[i];
1416 if (i)
1417 *ptr++ = '.';
1418 memcpy(ptr, dn+i+1, sz);
1419 ptr += sz;
1420 i += sz;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001421 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001422 *ptr++ = '\0';
1423 return (ptr - str);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001424}
1425
Christopher Faulet67957bd2017-09-27 11:00:59 +02001426/* Turns a string into domain name label: www.haproxy.org into 3www7haproxy3org
1427 *
1428 * <str> must be a null-terminated string. <str_len> must include the
1429 * terminating null byte. <dn> buffer must be allocated and its size must be
1430 * passed in <dn_len>.
1431 *
1432 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1433 * <dn> (excluding the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001434 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001435int dns_str_to_dn_label(const char *str, int str_len, char *dn, int dn_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001436{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001437 int i, offset;
1438
Christopher Faulet67957bd2017-09-27 11:00:59 +02001439 if (dn_len < str_len + 1)
1440 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001441
Christopher Faulet67957bd2017-09-27 11:00:59 +02001442 /* First byte of dn will be used to store the length of the first
1443 * label */
1444 offset = 0;
1445 for (i = 0; i < str_len; ++i) {
1446 if (str[i] == '.') {
1447 /* 2 or more consecutive dots is invalid */
1448 if (i == offset)
1449 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001450
Lukas Tribus81725b82020-02-27 15:47:24 +01001451 /* ignore trailing dot */
1452 if (i + 2 == str_len) {
1453 i++;
1454 break;
1455 }
1456
Christopher Faulet67957bd2017-09-27 11:00:59 +02001457 dn[offset] = (i - offset);
1458 offset = i+1;
1459 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001460 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001461 dn[i+1] = str[i];
Baptiste Assmann325137d2015-04-13 23:40:55 +02001462 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001463 dn[offset] = (i - offset - 1);
1464 dn[i] = '\0';
1465 return i;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001466}
1467
Christopher Faulet67957bd2017-09-27 11:00:59 +02001468/* Validates host name:
Baptiste Assmann325137d2015-04-13 23:40:55 +02001469 * - total size
1470 * - each label size individually
1471 * returns:
1472 * 0 in case of error. If <err> is not NULL, an error message is stored there.
1473 * 1 when no error. <err> is left unaffected.
1474 */
1475int dns_hostname_validation(const char *string, char **err)
1476{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001477 int i;
1478
1479 if (strlen(string) > DNS_MAX_NAME_SIZE) {
1480 if (err)
1481 *err = DNS_TOO_LONG_FQDN;
1482 return 0;
1483 }
1484
William Dauchyaecd5dc2020-01-26 19:52:34 +01001485 while (*string) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001486 i = 0;
William Dauchyaecd5dc2020-01-26 19:52:34 +01001487 while (*string && *string != '.' && i < DNS_MAX_LABEL_SIZE) {
1488 if (!(*string == '-' || *string == '_' ||
1489 (*string >= 'a' && *string <= 'z') ||
1490 (*string >= 'A' && *string <= 'Z') ||
1491 (*string >= '0' && *string <= '9'))) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001492 if (err)
1493 *err = DNS_INVALID_CHARACTER;
1494 return 0;
1495 }
William Dauchyaecd5dc2020-01-26 19:52:34 +01001496 i++;
1497 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001498 }
1499
William Dauchyaecd5dc2020-01-26 19:52:34 +01001500 if (!(*string))
1501 break;
1502
1503 if (*string != '.' && i >= DNS_MAX_LABEL_SIZE) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001504 if (err)
1505 *err = DNS_LABEL_TOO_LONG;
1506 return 0;
1507 }
1508
William Dauchyaecd5dc2020-01-26 19:52:34 +01001509 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001510 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001511 return 1;
1512}
1513
Christopher Faulet67957bd2017-09-27 11:00:59 +02001514/* Picks up an available resolution from the different resolution list
1515 * associated to a resolvers section, in this order:
1516 * 1. check in resolutions.curr for the same hostname and query_type
1517 * 2. check in resolutions.wait for the same hostname and query_type
1518 * 3. Get a new resolution from resolution pool
1519 *
1520 * Returns an available resolution, NULL if none found.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001521 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001522static struct dns_resolution *dns_pick_resolution(struct dns_resolvers *resolvers,
1523 char **hostname_dn, int hostname_dn_len,
1524 int query_type)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001525{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001526 struct dns_resolution *res;
1527
1528 if (!*hostname_dn)
1529 goto from_pool;
1530
1531 /* Search for same hostname and query type in resolutions.curr */
1532 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
1533 if (!res->hostname_dn)
1534 continue;
1535 if ((query_type == res->prefered_query_type) &&
1536 hostname_dn_len == res->hostname_dn_len &&
1537 !memcmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
1538 return res;
1539 }
1540
1541 /* Search for same hostname and query type in resolutions.wait */
1542 list_for_each_entry(res, &resolvers->resolutions.wait, list) {
1543 if (!res->hostname_dn)
1544 continue;
1545 if ((query_type == res->prefered_query_type) &&
1546 hostname_dn_len == res->hostname_dn_len &&
1547 !memcmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
1548 return res;
1549 }
1550
1551 from_pool:
1552 /* No resolution could be found, so let's allocate a new one */
Willy Tarreaubafbe012017-11-24 17:34:44 +01001553 res = pool_alloc(dns_resolution_pool);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001554 if (res) {
1555 memset(res, 0, sizeof(*res));
1556 res->resolvers = resolvers;
1557 res->uuid = resolution_uuid;
1558 res->status = RSLV_STATUS_NONE;
1559 res->step = RSLV_STEP_NONE;
1560 res->last_valid = now_ms;
1561
1562 LIST_INIT(&res->requesters);
1563 LIST_INIT(&res->response.answer_list);
Baptiste Assmann13a92322019-06-07 09:40:55 +02001564 LIST_INIT(&res->response.ar_list);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001565
1566 res->prefered_query_type = query_type;
1567 res->query_type = query_type;
1568 res->hostname_dn = *hostname_dn;
1569 res->hostname_dn_len = hostname_dn_len;
1570
1571 ++resolution_uuid;
1572
1573 /* Move the resolution to the resolvers wait queue */
1574 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1575 }
1576 return res;
1577}
1578
1579/* Releases a resolution from its requester(s) and move it back to the pool */
1580static void dns_free_resolution(struct dns_resolution *resolution)
1581{
1582 struct dns_requester *req, *reqback;
1583
1584 /* clean up configuration */
1585 dns_reset_resolution(resolution);
1586 resolution->hostname_dn = NULL;
1587 resolution->hostname_dn_len = 0;
1588
1589 list_for_each_entry_safe(req, reqback, &resolution->requesters, list) {
1590 LIST_DEL(&req->list);
1591 req->resolution = NULL;
1592 }
1593
1594 LIST_DEL(&resolution->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001595 pool_free(dns_resolution_pool, resolution);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001596}
1597
1598/* Links a requester (a server or a dns_srvrq) with a resolution. It returns 0
1599 * on success, -1 otherwise.
1600 */
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001601int dns_link_resolution(void *requester, int requester_type, int requester_locked)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001602{
1603 struct dns_resolution *res = NULL;
1604 struct dns_requester *req;
1605 struct dns_resolvers *resolvers;
1606 struct server *srv = NULL;
1607 struct dns_srvrq *srvrq = NULL;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001608 struct stream *stream = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001609 char **hostname_dn;
1610 int hostname_dn_len, query_type;
1611
1612 switch (requester_type) {
1613 case OBJ_TYPE_SERVER:
1614 srv = (struct server *)requester;
1615 hostname_dn = &srv->hostname_dn;
1616 hostname_dn_len = srv->hostname_dn_len;
1617 resolvers = srv->resolvers;
1618 query_type = ((srv->dns_opts.family_prio == AF_INET)
1619 ? DNS_RTYPE_A
1620 : DNS_RTYPE_AAAA);
1621 break;
1622
1623 case OBJ_TYPE_SRVRQ:
1624 srvrq = (struct dns_srvrq *)requester;
1625 hostname_dn = &srvrq->hostname_dn;
1626 hostname_dn_len = srvrq->hostname_dn_len;
1627 resolvers = srvrq->resolvers;
1628 query_type = DNS_RTYPE_SRV;
1629 break;
1630
Baptiste Assmann333939c2019-01-21 08:34:50 +01001631 case OBJ_TYPE_STREAM:
1632 stream = (struct stream *)requester;
1633 hostname_dn = &stream->dns_ctx.hostname_dn;
1634 hostname_dn_len = stream->dns_ctx.hostname_dn_len;
1635 resolvers = stream->dns_ctx.parent->arg.dns.resolvers;
Christopher Fauleta4168432020-01-24 18:08:42 +01001636 query_type = ((stream->dns_ctx.parent->arg.dns.dns_opts->family_prio == AF_INET)
Baptiste Assmann333939c2019-01-21 08:34:50 +01001637 ? DNS_RTYPE_A
1638 : DNS_RTYPE_AAAA);
1639 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001640 default:
1641 goto err;
1642 }
1643
1644 /* Get a resolution from the resolvers' wait queue or pool */
1645 if ((res = dns_pick_resolution(resolvers, hostname_dn, hostname_dn_len, query_type)) == NULL)
1646 goto err;
1647
1648 if (srv) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001649 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001650 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001651 if (srv->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001652 if ((req = pool_alloc(dns_requester_pool)) == NULL) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001653 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001654 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001655 goto err;
Willy Tarreau5ec84572017-11-05 10:35:57 +01001656 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001657 req->owner = &srv->obj_type;
1658 srv->dns_requester = req;
1659 }
1660 else
1661 req = srv->dns_requester;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001662 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001663 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001664
1665 req->requester_cb = snr_resolution_cb;
1666 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001667 }
1668 else if (srvrq) {
1669 if (srvrq->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001670 if ((req = pool_alloc(dns_requester_pool)) == NULL)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001671 goto err;
1672 req->owner = &srvrq->obj_type;
1673 srvrq->dns_requester = req;
1674 }
1675 else
1676 req = srvrq->dns_requester;
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001677
1678 req->requester_cb = snr_resolution_cb;
1679 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001680 }
Baptiste Assmann333939c2019-01-21 08:34:50 +01001681 else if (stream) {
1682 if (stream->dns_ctx.dns_requester == NULL) {
1683 if ((req = pool_alloc(dns_requester_pool)) == NULL)
1684 goto err;
1685 req->owner = &stream->obj_type;
1686 stream->dns_ctx.dns_requester = req;
1687 }
1688 else
1689 req = stream->dns_ctx.dns_requester;
1690
1691 req->requester_cb = act_resolution_cb;
1692 req->requester_error_cb = act_resolution_error_cb;
1693 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001694 else
1695 goto err;
1696
1697 req->resolution = res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001698
1699 LIST_ADDQ(&res->requesters, &req->list);
1700 return 0;
1701
1702 err:
1703 if (res && LIST_ISEMPTY(&res->requesters))
1704 dns_free_resolution(res);
1705 return -1;
1706}
1707
1708/* Removes a requester from a DNS resoltion. It takes takes care of all the
1709 * consequences. It also cleans up some parameters from the requester.
1710 */
1711void dns_unlink_resolution(struct dns_requester *requester)
1712{
1713 struct dns_resolution *res;
1714 struct dns_requester *req;
1715
1716 /* Nothing to do */
1717 if (!requester || !requester->resolution)
1718 return;
1719 res = requester->resolution;
1720
1721 /* Clean up the requester */
1722 LIST_DEL(&requester->list);
1723 requester->resolution = NULL;
1724
1725 /* We need to find another requester linked on this resolution */
1726 if (!LIST_ISEMPTY(&res->requesters))
1727 req = LIST_NEXT(&res->requesters, struct dns_requester *, list);
1728 else {
1729 dns_free_resolution(res);
1730 return;
1731 }
1732
1733 /* Move hostname_dn related pointers to the next requester */
1734 switch (obj_type(req->owner)) {
1735 case OBJ_TYPE_SERVER:
Willy Tarreau433c16f2018-09-20 11:15:27 +02001736 res->hostname_dn = __objt_server(req->owner)->hostname_dn;
1737 res->hostname_dn_len = __objt_server(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001738 break;
1739 case OBJ_TYPE_SRVRQ:
Willy Tarreau433c16f2018-09-20 11:15:27 +02001740 res->hostname_dn = __objt_dns_srvrq(req->owner)->hostname_dn;
1741 res->hostname_dn_len = __objt_dns_srvrq(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001742 break;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001743 case OBJ_TYPE_STREAM:
1744 res->hostname_dn = __objt_stream(req->owner)->dns_ctx.hostname_dn;
1745 res->hostname_dn_len = __objt_stream(req->owner)->dns_ctx.hostname_dn_len;
1746 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001747 default:
1748 res->hostname_dn = NULL;
1749 res->hostname_dn_len = 0;
1750 break;
1751 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001752}
1753
Christopher Faulet67957bd2017-09-27 11:00:59 +02001754/* Called when a network IO is generated on a name server socket for an incoming
1755 * packet. It performs the following actions:
1756 * - check if the packet requires processing (not outdated resolution)
1757 * - ensure the DNS packet received is valid and call requester's callback
1758 * - call requester's error callback if invalid response
1759 * - check the dn_name in the packet against the one sent
1760 */
1761static void dns_resolve_recv(struct dgram_conn *dgram)
1762{
1763 struct dns_nameserver *ns, *tmpns;
1764 struct dns_resolvers *resolvers;
1765 struct dns_resolution *res;
1766 struct dns_query_item *query;
1767 unsigned char buf[DNS_MAX_UDP_MESSAGE + 1];
1768 unsigned char *bufend;
1769 int fd, buflen, dns_resp;
1770 int max_answer_records;
1771 unsigned short query_id;
1772 struct eb32_node *eb;
1773 struct dns_requester *req;
1774
1775 fd = dgram->t.sock.fd;
1776
1777 /* check if ready for reading */
1778 if (!fd_recv_ready(fd))
1779 return;
1780
1781 /* no need to go further if we can't retrieve the nameserver */
Willy Tarreau1c759952019-12-10 18:38:09 +01001782 if ((ns = dgram->owner) == NULL) {
1783 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
1784 fd_stop_recv(fd);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001785 return;
Willy Tarreau1c759952019-12-10 18:38:09 +01001786 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001787
1788 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001789 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001790
1791 /* process all pending input messages */
Willy Tarreau1c759952019-12-10 18:38:09 +01001792 while (fd_recv_ready(fd)) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001793 /* read message received */
1794 memset(buf, '\0', resolvers->accepted_payload_size + 1);
1795 if ((buflen = recv(fd, (char*)buf , resolvers->accepted_payload_size + 1, 0)) < 0) {
Willy Tarreau1c759952019-12-10 18:38:09 +01001796 /* FIXME : for now we consider EAGAIN only, but at
1797 * least we purge sticky errors that would cause us to
1798 * be called in loops.
1799 */
1800 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Christopher Faulet67957bd2017-09-27 11:00:59 +02001801 fd_cant_recv(fd);
1802 break;
1803 }
1804
1805 /* message too big */
1806 if (buflen > resolvers->accepted_payload_size) {
1807 ns->counters.too_big++;
1808 continue;
1809 }
1810
1811 /* initializing variables */
1812 bufend = buf + buflen; /* pointer to mark the end of the buffer */
1813
1814 /* read the query id from the packet (16 bits) */
1815 if (buf + 2 > bufend) {
1816 ns->counters.invalid++;
1817 continue;
1818 }
1819 query_id = dns_response_get_query_id(buf);
1820
1821 /* search the query_id in the pending resolution tree */
1822 eb = eb32_lookup(&resolvers->query_ids, query_id);
1823 if (eb == NULL) {
1824 /* unknown query id means an outdated response and can be safely ignored */
1825 ns->counters.outdated++;
1826 continue;
1827 }
1828
William Dauchybe8a3872019-11-27 23:32:41 +01001829 /* known query id means a resolution in progress */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001830 res = eb32_entry(eb, struct dns_resolution, qid);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001831 /* number of responses received */
1832 res->nb_responses++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001833
Christopher Faulet67957bd2017-09-27 11:00:59 +02001834 max_answer_records = (resolvers->accepted_payload_size - DNS_HEADER_SIZE) / DNS_MIN_RECORD_SIZE;
1835 dns_resp = dns_validate_dns_response(buf, bufend, res, max_answer_records);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001836
Christopher Faulet67957bd2017-09-27 11:00:59 +02001837 switch (dns_resp) {
1838 case DNS_RESP_VALID:
1839 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001840
Christopher Faulet67957bd2017-09-27 11:00:59 +02001841 case DNS_RESP_INVALID:
1842 case DNS_RESP_QUERY_COUNT_ERROR:
1843 case DNS_RESP_WRONG_NAME:
1844 res->status = RSLV_STATUS_INVALID;
1845 ns->counters.invalid++;
1846 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001847
Christopher Faulet67957bd2017-09-27 11:00:59 +02001848 case DNS_RESP_NX_DOMAIN:
1849 res->status = RSLV_STATUS_NX;
1850 ns->counters.nx++;
1851 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001852
Christopher Faulet67957bd2017-09-27 11:00:59 +02001853 case DNS_RESP_REFUSED:
1854 res->status = RSLV_STATUS_REFUSED;
1855 ns->counters.refused++;
1856 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001857
Christopher Faulet67957bd2017-09-27 11:00:59 +02001858 case DNS_RESP_ANCOUNT_ZERO:
1859 res->status = RSLV_STATUS_OTHER;
1860 ns->counters.any_err++;
1861 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001862
Christopher Faulet67957bd2017-09-27 11:00:59 +02001863 case DNS_RESP_CNAME_ERROR:
1864 res->status = RSLV_STATUS_OTHER;
1865 ns->counters.cname_error++;
1866 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001867
Christopher Faulet67957bd2017-09-27 11:00:59 +02001868 case DNS_RESP_TRUNCATED:
1869 res->status = RSLV_STATUS_OTHER;
1870 ns->counters.truncated++;
1871 break;
Baptiste Assmanne70bc052017-08-21 16:51:09 +02001872
Christopher Faulet67957bd2017-09-27 11:00:59 +02001873 case DNS_RESP_NO_EXPECTED_RECORD:
1874 case DNS_RESP_ERROR:
1875 case DNS_RESP_INTERNAL:
1876 res->status = RSLV_STATUS_OTHER;
1877 ns->counters.other++;
1878 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001879 }
1880
Christopher Faulet67957bd2017-09-27 11:00:59 +02001881 /* Wait all nameservers response to handle errors */
1882 if (dns_resp != DNS_RESP_VALID && res->nb_responses < resolvers->nb_nameservers)
1883 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001884
Christopher Faulet67957bd2017-09-27 11:00:59 +02001885 /* Process error codes */
1886 if (dns_resp != DNS_RESP_VALID) {
1887 if (res->prefered_query_type != res->query_type) {
1888 /* The fallback on the query type was already performed,
1889 * so check the try counter. If it falls to 0, we can
1890 * report an error. Else, wait the next attempt. */
1891 if (!res->try)
1892 goto report_res_error;
1893 }
1894 else {
1895 /* Fallback from A to AAAA or the opposite and re-send
1896 * the resolution immediately. try counter is not
1897 * decremented. */
1898 if (res->prefered_query_type == DNS_RTYPE_A) {
1899 res->query_type = DNS_RTYPE_AAAA;
1900 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001901 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001902 else if (res->prefered_query_type == DNS_RTYPE_AAAA) {
1903 res->query_type = DNS_RTYPE_A;
1904 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001905 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001906 }
1907 continue;
1908 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02001909
Christopher Faulet67957bd2017-09-27 11:00:59 +02001910 /* Now let's check the query's dname corresponds to the one we
1911 * sent. We can check only the first query of the list. We send
1912 * one query at a time so we get one query in the response */
1913 query = LIST_NEXT(&res->response.query_list, struct dns_query_item *, list);
1914 if (query && memcmp(query->name, res->hostname_dn, res->hostname_dn_len) != 0) {
1915 dns_resp = DNS_RESP_WRONG_NAME;
1916 ns->counters.other++;
1917 goto report_res_error;
1918 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001919
Christopher Faulet67957bd2017-09-27 11:00:59 +02001920 /* So the resolution succeeded */
1921 res->status = RSLV_STATUS_VALID;
1922 res->last_valid = now_ms;
1923 ns->counters.valid++;
1924 goto report_res_success;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001925
Christopher Faulet67957bd2017-09-27 11:00:59 +02001926 report_res_error:
1927 list_for_each_entry(req, &res->requesters, list)
1928 req->requester_error_cb(req, dns_resp);
1929 dns_reset_resolution(res);
1930 LIST_DEL(&res->list);
1931 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1932 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001933
Christopher Faulet67957bd2017-09-27 11:00:59 +02001934 report_res_success:
1935 /* Only the 1rst requester s managed by the server, others are
1936 * from the cache */
1937 tmpns = ns;
1938 list_for_each_entry(req, &res->requesters, list) {
Olivier Houchard28381072017-11-06 17:30:28 +01001939 struct server *s = objt_server(req->owner);
1940
1941 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001942 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001943 req->requester_cb(req, tmpns);
Olivier Houchard28381072017-11-06 17:30:28 +01001944 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001945 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001946 tmpns = NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001947 }
Baptiste Assmann42746372017-05-03 12:12:02 +02001948
Christopher Faulet67957bd2017-09-27 11:00:59 +02001949 dns_reset_resolution(res);
1950 LIST_DEL(&res->list);
1951 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1952 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001953 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001954 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001955 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001956}
William Lallemand69e96442016-11-19 00:58:54 +01001957
Christopher Faulet67957bd2017-09-27 11:00:59 +02001958/* Called when a resolvers network socket is ready to send data */
1959static void dns_resolve_send(struct dgram_conn *dgram)
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001960{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001961 struct dns_resolvers *resolvers;
1962 struct dns_nameserver *ns;
1963 struct dns_resolution *res;
1964 int fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001965
Christopher Faulet67957bd2017-09-27 11:00:59 +02001966 fd = dgram->t.sock.fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001967
Christopher Faulet67957bd2017-09-27 11:00:59 +02001968 /* check if ready for sending */
1969 if (!fd_send_ready(fd))
1970 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001971
Christopher Faulet67957bd2017-09-27 11:00:59 +02001972 /* we don't want/need to be waked up any more for sending */
1973 fd_stop_send(fd);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001974
Christopher Faulet67957bd2017-09-27 11:00:59 +02001975 /* no need to go further if we can't retrieve the nameserver */
1976 if ((ns = dgram->owner) == NULL)
1977 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001978
Christopher Faulet67957bd2017-09-27 11:00:59 +02001979 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001980 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02001981
Christopher Faulet67957bd2017-09-27 11:00:59 +02001982 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02001983 int ret, len;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001984
Christopher Faulet67957bd2017-09-27 11:00:59 +02001985 if (res->nb_queries == resolvers->nb_nameservers)
1986 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001987
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02001988 len = dns_build_query(res->query_id, res->query_type,
1989 resolvers->accepted_payload_size,
1990 res->hostname_dn, res->hostname_dn_len,
1991 trash.area, trash.size);
1992 if (len == -1)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001993 goto snd_error;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001994
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02001995 ret = send(fd, trash.area, len, 0);
Willy Tarreau0eae6322019-12-20 11:18:54 +01001996 if (ret != len) {
1997 if (ret == -1 && errno == EAGAIN) {
1998 /* retry once the socket is ready */
1999 fd_cant_send(fd);
2000 continue;
2001 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002002 goto snd_error;
Willy Tarreau0eae6322019-12-20 11:18:54 +01002003 }
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002004
Christopher Faulet67957bd2017-09-27 11:00:59 +02002005 ns->counters.sent++;
2006 res->nb_queries++;
2007 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002008
Christopher Faulet67957bd2017-09-27 11:00:59 +02002009 snd_error:
2010 ns->counters.snd_error++;
2011 res->nb_queries++;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002012 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002013 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002014}
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002015
Christopher Faulet67957bd2017-09-27 11:00:59 +02002016/* Processes DNS resolution. First, it checks the active list to detect expired
2017 * resolutions and retry them if possible. Else a timeout is reported. Then, it
2018 * checks the wait list to trigger new resolutions.
2019 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002020static struct task *dns_process_resolvers(struct task *t, void *context, unsigned short state)
Christopher Faulet67957bd2017-09-27 11:00:59 +02002021{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002022 struct dns_resolvers *resolvers = context;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002023 struct dns_resolution *res, *resback;
2024 int exp;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002025
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002026 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02002027
Christopher Faulet67957bd2017-09-27 11:00:59 +02002028 /* Handle all expired resolutions from the active list */
2029 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
2030 /* When we find the first resolution in the future, then we can
2031 * stop here */
2032 exp = tick_add(res->last_query, resolvers->timeout.retry);
2033 if (!tick_is_expired(exp, now_ms))
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002034 break;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002035
Christopher Faulet67957bd2017-09-27 11:00:59 +02002036 /* If current resolution has been tried too many times and
2037 * finishes in timeout we update its status and remove it from
2038 * the list */
2039 if (!res->try) {
2040 struct dns_requester *req;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002041
Christopher Faulet67957bd2017-09-27 11:00:59 +02002042 /* Notify the result to the requesters */
2043 if (!res->nb_responses)
2044 res->status = RSLV_STATUS_TIMEOUT;
2045 list_for_each_entry(req, &res->requesters, list)
2046 req->requester_error_cb(req, res->status);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002047
Christopher Faulet67957bd2017-09-27 11:00:59 +02002048 /* Clean up resolution info and remove it from the
2049 * current list */
2050 dns_reset_resolution(res);
2051 LIST_DEL(&res->list);
2052 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
William Lallemand69e96442016-11-19 00:58:54 +01002053 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002054 else {
2055 /* Otherwise resend the DNS query and requeue the resolution */
2056 if (!res->nb_responses || res->prefered_query_type != res->query_type) {
2057 /* No response received (a real timeout) or fallback already done */
2058 res->query_type = res->prefered_query_type;
2059 res->try--;
2060 }
2061 else {
2062 /* Fallback from A to AAAA or the opposite and re-send
2063 * the resolution immediately. try counter is not
2064 * decremented. */
2065 if (res->prefered_query_type == DNS_RTYPE_A)
2066 res->query_type = DNS_RTYPE_AAAA;
2067 else if (res->prefered_query_type == DNS_RTYPE_AAAA)
2068 res->query_type = DNS_RTYPE_A;
2069 else
2070 res->try--;
2071 }
2072 dns_send_query(res);
William Lallemand69e96442016-11-19 00:58:54 +01002073 }
2074 }
William Lallemand69e96442016-11-19 00:58:54 +01002075
Christopher Faulet67957bd2017-09-27 11:00:59 +02002076 /* Handle all resolutions in the wait list */
2077 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
2078 exp = tick_add(res->last_resolution, dns_resolution_timeout(res));
2079 if (tick_isset(res->last_resolution) && !tick_is_expired(exp, now_ms))
2080 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002081
Christopher Faulet67957bd2017-09-27 11:00:59 +02002082 if (dns_run_resolution(res) != 1) {
2083 res->last_resolution = now_ms;
2084 LIST_DEL(&res->list);
2085 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002086 }
2087 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002088
Christopher Faulet67957bd2017-09-27 11:00:59 +02002089 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002090 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002091 return t;
2092}
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002093
Christopher Faulet67957bd2017-09-27 11:00:59 +02002094/* proto_udp callback functions for a DNS resolution */
2095struct dgram_data_cb resolve_dgram_cb = {
2096 .recv = dns_resolve_recv,
2097 .send = dns_resolve_send,
2098};
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002099
Christopher Faulet67957bd2017-09-27 11:00:59 +02002100/* Release memory allocated by DNS */
2101static void dns_deinit(void)
2102{
2103 struct dns_resolvers *resolvers, *resolversback;
2104 struct dns_nameserver *ns, *nsback;
2105 struct dns_resolution *res, *resback;
2106 struct dns_requester *req, *reqback;
2107 struct dns_srvrq *srvrq, *srvrqback;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002108
Christopher Faulet67957bd2017-09-27 11:00:59 +02002109 list_for_each_entry_safe(resolvers, resolversback, &dns_resolvers, list) {
2110 list_for_each_entry_safe(ns, nsback, &resolvers->nameservers, list) {
2111 free(ns->id);
2112 free((char *)ns->conf.file);
2113 if (ns->dgram && ns->dgram->t.sock.fd != -1)
2114 fd_delete(ns->dgram->t.sock.fd);
2115 free(ns->dgram);
2116 LIST_DEL(&ns->list);
2117 free(ns);
2118 }
2119
2120 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
2121 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
2122 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01002123 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002124 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002125 dns_free_resolution(res);
2126 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002127
Christopher Faulet67957bd2017-09-27 11:00:59 +02002128 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
2129 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
2130 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01002131 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002132 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002133 dns_free_resolution(res);
2134 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002135
Christopher Faulet67957bd2017-09-27 11:00:59 +02002136 free(resolvers->id);
2137 free((char *)resolvers->conf.file);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002138 task_destroy(resolvers->t);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002139 LIST_DEL(&resolvers->list);
2140 free(resolvers);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002141 }
2142
Christopher Faulet67957bd2017-09-27 11:00:59 +02002143 list_for_each_entry_safe(srvrq, srvrqback, &dns_srvrq_list, list) {
2144 free(srvrq->name);
2145 free(srvrq->hostname_dn);
2146 LIST_DEL(&srvrq->list);
2147 free(srvrq);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002148 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002149}
2150
Christopher Faulet67957bd2017-09-27 11:00:59 +02002151/* Finalizes the DNS configuration by allocating required resources and checking
2152 * live parameters.
2153 * Returns 0 on success, ERR_* flags otherwise.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002154 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002155static int dns_finalize_config(void)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002156{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002157 struct dns_resolvers *resolvers;
2158 struct proxy *px;
2159 int err_code = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002160
Christopher Faulet67957bd2017-09-27 11:00:59 +02002161 /* allocate pool of resolution per resolvers */
2162 list_for_each_entry(resolvers, &dns_resolvers, list) {
2163 struct dns_nameserver *ns;
2164 struct task *t;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002165
Christopher Faulet67957bd2017-09-27 11:00:59 +02002166 /* Check if we can create the socket with nameservers info */
2167 list_for_each_entry(ns, &resolvers->nameservers, list) {
2168 struct dgram_conn *dgram = NULL;
2169 int fd;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002170
Christopher Faulet67957bd2017-09-27 11:00:59 +02002171 /* Check nameserver info */
2172 if ((fd = socket(ns->addr.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002173 ha_alert("config : resolvers '%s': can't create socket for nameserver '%s'.\n",
2174 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002175 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002176 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002177 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002178 if (connect(fd, (struct sockaddr*)&ns->addr, get_addr_len(&ns->addr)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002179 ha_alert("config : resolvers '%s': can't connect socket for nameserver '%s'.\n",
2180 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002181 close(fd);
2182 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002183 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002184 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002185 close(fd);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002186
Christopher Faulet67957bd2017-09-27 11:00:59 +02002187 /* Create dgram structure that will hold the UPD socket
2188 * and attach it on the current nameserver */
2189 if ((dgram = calloc(1, sizeof(*dgram))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002190 ha_alert("config: resolvers '%s' : out of memory.\n",
2191 resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002192 err_code |= (ERR_ALERT|ERR_ABORT);
2193 goto err;
2194 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002195
Christopher Faulet67957bd2017-09-27 11:00:59 +02002196 /* Leave dgram partially initialized, no FD attached for
2197 * now. */
2198 dgram->owner = ns;
2199 dgram->data = &resolve_dgram_cb;
2200 dgram->t.sock.fd = -1;
2201 ns->dgram = dgram;
2202 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002203
Christopher Faulet67957bd2017-09-27 11:00:59 +02002204 /* Create the task associated to the resolvers section */
Emeric Brunc60def82017-09-27 14:59:38 +02002205 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002206 ha_alert("config : resolvers '%s' : out of memory.\n", resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002207 err_code |= (ERR_ALERT|ERR_ABORT);
2208 goto err;
2209 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002210
Christopher Faulet67957bd2017-09-27 11:00:59 +02002211 /* Update task's parameters */
2212 t->process = dns_process_resolvers;
2213 t->context = resolvers;
2214 resolvers->t = t;
2215 task_wakeup(t, TASK_WOKEN_INIT);
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002216 }
2217
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002218 for (px = proxies_list; px; px = px->next) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002219 struct server *srv;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002220
Christopher Faulet67957bd2017-09-27 11:00:59 +02002221 for (srv = px->srv; srv; srv = srv->next) {
2222 struct dns_resolvers *resolvers;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002223
Christopher Faulet67957bd2017-09-27 11:00:59 +02002224 if (!srv->resolvers_id)
2225 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002226
Christopher Faulet67957bd2017-09-27 11:00:59 +02002227 if ((resolvers = find_resolvers_by_id(srv->resolvers_id)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002228 ha_alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n",
2229 proxy_type_str(px), px->id, srv->id, srv->resolvers_id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002230 err_code |= (ERR_ALERT|ERR_ABORT);
2231 continue;
2232 }
2233 srv->resolvers = resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002234
Christopher Faulet67957bd2017-09-27 11:00:59 +02002235 if (srv->srvrq && !srv->srvrq->resolvers) {
2236 srv->srvrq->resolvers = srv->resolvers;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01002237 if (dns_link_resolution(srv->srvrq, OBJ_TYPE_SRVRQ, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002238 ha_alert("config : %s '%s' : unable to set DNS resolution for server '%s'.\n",
2239 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002240 err_code |= (ERR_ALERT|ERR_ABORT);
2241 continue;
2242 }
2243 }
Olivier Houchard55dcdf42017-11-06 15:15:04 +01002244 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002245 ha_alert("config : %s '%s', unable to set DNS resolution for server '%s'.\n",
2246 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002247 err_code |= (ERR_ALERT|ERR_ABORT);
2248 continue;
2249 }
2250 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002251 }
2252
Christopher Faulet67957bd2017-09-27 11:00:59 +02002253 if (err_code & (ERR_ALERT|ERR_ABORT))
2254 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002255
Christopher Faulet67957bd2017-09-27 11:00:59 +02002256 return err_code;
2257 err:
2258 dns_deinit();
2259 return err_code;
2260
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002261}
2262
Christopher Faulet67957bd2017-09-27 11:00:59 +02002263/* if an arg is found, it sets the resolvers section pointer into cli.p0 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002264static int cli_parse_stat_resolvers(char **args, char *payload, struct appctx *appctx, void *private)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002265{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002266 struct dns_resolvers *presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002267
Christopher Faulet67957bd2017-09-27 11:00:59 +02002268 if (*args[2]) {
2269 list_for_each_entry(presolvers, &dns_resolvers, list) {
2270 if (strcmp(presolvers->id, args[2]) == 0) {
2271 appctx->ctx.cli.p0 = presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002272 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002273 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002274 }
Willy Tarreau9d008692019-08-09 11:21:01 +02002275 if (appctx->ctx.cli.p0 == NULL)
2276 return cli_err(appctx, "Can't find that resolvers section\n");
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002277 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002278 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002279}
2280
Christopher Faulet67957bd2017-09-27 11:00:59 +02002281/* Dumps counters from all resolvers section and associated name servers. It
2282 * returns 0 if the output buffer is full and it needs to be called again,
2283 * otherwise non-zero. It may limit itself to the resolver pointed to by
Willy Tarreau777b5602016-12-16 18:06:26 +01002284 * <cli.p0> if it's not null.
William Lallemand69e96442016-11-19 00:58:54 +01002285 */
2286static int cli_io_handler_dump_resolvers_to_buffer(struct appctx *appctx)
2287{
2288 struct stream_interface *si = appctx->owner;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002289 struct dns_resolvers *resolvers;
2290 struct dns_nameserver *ns;
William Lallemand69e96442016-11-19 00:58:54 +01002291
2292 chunk_reset(&trash);
2293
2294 switch (appctx->st2) {
2295 case STAT_ST_INIT:
2296 appctx->st2 = STAT_ST_LIST; /* let's start producing data */
2297 /* fall through */
2298
2299 case STAT_ST_LIST:
2300 if (LIST_ISEMPTY(&dns_resolvers)) {
2301 chunk_appendf(&trash, "No resolvers found\n");
2302 }
2303 else {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002304 list_for_each_entry(resolvers, &dns_resolvers, list) {
2305 if (appctx->ctx.cli.p0 != NULL && appctx->ctx.cli.p0 != resolvers)
William Lallemand69e96442016-11-19 00:58:54 +01002306 continue;
2307
Christopher Faulet67957bd2017-09-27 11:00:59 +02002308 chunk_appendf(&trash, "Resolvers section %s\n", resolvers->id);
2309 list_for_each_entry(ns, &resolvers->nameservers, list) {
2310 chunk_appendf(&trash, " nameserver %s:\n", ns->id);
2311 chunk_appendf(&trash, " sent: %lld\n", ns->counters.sent);
2312 chunk_appendf(&trash, " snd_error: %lld\n", ns->counters.snd_error);
2313 chunk_appendf(&trash, " valid: %lld\n", ns->counters.valid);
2314 chunk_appendf(&trash, " update: %lld\n", ns->counters.update);
2315 chunk_appendf(&trash, " cname: %lld\n", ns->counters.cname);
2316 chunk_appendf(&trash, " cname_error: %lld\n", ns->counters.cname_error);
2317 chunk_appendf(&trash, " any_err: %lld\n", ns->counters.any_err);
2318 chunk_appendf(&trash, " nx: %lld\n", ns->counters.nx);
2319 chunk_appendf(&trash, " timeout: %lld\n", ns->counters.timeout);
2320 chunk_appendf(&trash, " refused: %lld\n", ns->counters.refused);
2321 chunk_appendf(&trash, " other: %lld\n", ns->counters.other);
2322 chunk_appendf(&trash, " invalid: %lld\n", ns->counters.invalid);
2323 chunk_appendf(&trash, " too_big: %lld\n", ns->counters.too_big);
2324 chunk_appendf(&trash, " truncated: %lld\n", ns->counters.truncated);
2325 chunk_appendf(&trash, " outdated: %lld\n", ns->counters.outdated);
William Lallemand69e96442016-11-19 00:58:54 +01002326 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002327 chunk_appendf(&trash, "\n");
William Lallemand69e96442016-11-19 00:58:54 +01002328 }
2329 }
2330
2331 /* display response */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002332 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand69e96442016-11-19 00:58:54 +01002333 /* let's try again later from this session. We add ourselves into
2334 * this session's users so that it can remove us upon termination.
2335 */
Willy Tarreaudb398432018-11-15 11:08:52 +01002336 si_rx_room_blk(si);
William Lallemand69e96442016-11-19 00:58:54 +01002337 return 0;
2338 }
William Lallemand69e96442016-11-19 00:58:54 +01002339 /* fall through */
2340
2341 default:
2342 appctx->st2 = STAT_ST_FIN;
2343 return 1;
2344 }
2345}
2346
2347/* register cli keywords */
Christopher Fauletff88efb2017-10-03 16:00:57 +02002348static struct cli_kw_list cli_kws = {{ }, {
2349 { { "show", "resolvers", NULL }, "show resolvers [id]: dumps counters from all resolvers section and\n"
2350 " associated name servers",
2351 cli_parse_stat_resolvers, cli_io_handler_dump_resolvers_to_buffer },
2352 {{},}
2353 }
2354};
William Lallemand69e96442016-11-19 00:58:54 +01002355
Willy Tarreau0108d902018-11-25 19:14:37 +01002356INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand69e96442016-11-19 00:58:54 +01002357
Baptiste Assmann333939c2019-01-21 08:34:50 +01002358/*
2359 * Prepare <rule> for hostname resolution.
2360 * Returns -1 in case of any allocation failure, 0 if not.
2361 * On error, a global failure counter is also incremented.
2362 */
2363static int action_prepare_for_resolution(struct stream *stream, const char *hostname)
2364{
2365 char *hostname_dn;
2366 int hostname_len, hostname_dn_len;
2367 struct buffer *tmp = get_trash_chunk();
2368
2369 if (!hostname)
2370 return 0;
2371
2372 hostname_len = strlen(hostname);
2373 hostname_dn = tmp->area;
2374 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
2375 hostname_dn, tmp->size);
2376 if (hostname_dn_len == -1)
2377 goto err;
2378
2379
2380 stream->dns_ctx.hostname_dn = strdup(hostname_dn);
2381 stream->dns_ctx.hostname_dn_len = hostname_dn_len;
2382 if (!stream->dns_ctx.hostname_dn)
2383 goto err;
2384
2385 return 0;
2386
2387 err:
2388 free(stream->dns_ctx.hostname_dn); stream->dns_ctx.hostname_dn = NULL;
2389 dns_failed_resolutions += 1;
2390 return -1;
2391}
2392
2393
2394/*
2395 * Execute the "do-resolution" action. May be called from {tcp,http}request.
2396 */
2397enum act_return dns_action_do_resolve(struct act_rule *rule, struct proxy *px,
2398 struct session *sess, struct stream *s, int flags)
2399{
Baptiste Assmann333939c2019-01-21 08:34:50 +01002400 struct dns_resolution *resolution;
Willy Tarreau45726fd2019-07-17 10:38:45 +02002401 struct sample *smp;
2402 char *fqdn;
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002403 struct dns_requester *req;
2404 struct dns_resolvers *resolvers;
2405 struct dns_resolution *res;
2406 int exp;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002407
2408 /* we have a response to our DNS resolution */
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002409 use_cache:
Baptiste Assmann333939c2019-01-21 08:34:50 +01002410 if (s->dns_ctx.dns_requester && s->dns_ctx.dns_requester->resolution != NULL) {
2411 resolution = s->dns_ctx.dns_requester->resolution;
Baptiste Assmann4c52e4b2019-10-01 15:32:40 +02002412 if (resolution->step == RSLV_STEP_RUNNING) {
2413 return ACT_RET_YIELD;
2414 }
Baptiste Assmann333939c2019-01-21 08:34:50 +01002415 if (resolution->step == RSLV_STEP_NONE) {
2416 /* We update the variable only if we have a valid response. */
2417 if (resolution->status == RSLV_STATUS_VALID) {
2418 struct sample smp;
2419 short ip_sin_family = 0;
2420 void *ip = NULL;
2421
Christopher Fauleta4168432020-01-24 18:08:42 +01002422 dns_get_ip_from_response(&resolution->response, rule->arg.dns.dns_opts, NULL,
Baptiste Assmann333939c2019-01-21 08:34:50 +01002423 0, &ip, &ip_sin_family, NULL);
2424
2425 switch (ip_sin_family) {
2426 case AF_INET:
2427 smp.data.type = SMP_T_IPV4;
2428 memcpy(&smp.data.u.ipv4, ip, 4);
2429 break;
2430 case AF_INET6:
2431 smp.data.type = SMP_T_IPV6;
2432 memcpy(&smp.data.u.ipv6, ip, 16);
2433 break;
2434 default:
2435 ip = NULL;
2436 }
2437
2438 if (ip) {
2439 smp.px = px;
2440 smp.sess = sess;
2441 smp.strm = s;
2442
2443 vars_set_by_name(rule->arg.dns.varname, strlen(rule->arg.dns.varname), &smp);
2444 }
2445 }
2446 }
2447
2448 free(s->dns_ctx.hostname_dn); s->dns_ctx.hostname_dn = NULL;
2449 s->dns_ctx.hostname_dn_len = 0;
2450 dns_unlink_resolution(s->dns_ctx.dns_requester);
2451
2452 pool_free(dns_requester_pool, s->dns_ctx.dns_requester);
2453 s->dns_ctx.dns_requester = NULL;
2454
2455 return ACT_RET_CONT;
2456 }
2457
2458 /* need to configure and start a new DNS resolution */
Willy Tarreau45726fd2019-07-17 10:38:45 +02002459 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.dns.expr, SMP_T_STR);
2460 if (smp == NULL)
2461 return ACT_RET_CONT;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002462
Willy Tarreau45726fd2019-07-17 10:38:45 +02002463 fqdn = smp->data.u.str.area;
2464 if (action_prepare_for_resolution(s, fqdn) == -1)
Christopher Faulet13403762019-12-13 09:01:57 +01002465 return ACT_RET_CONT; /* on error, ignore the action */
Baptiste Assmann333939c2019-01-21 08:34:50 +01002466
Willy Tarreau45726fd2019-07-17 10:38:45 +02002467 s->dns_ctx.parent = rule;
2468 dns_link_resolution(s, OBJ_TYPE_STREAM, 0);
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002469
2470 /* Check if there is a fresh enough response in the cache of our associated resolution */
2471 req = s->dns_ctx.dns_requester;
2472 if (!req || !req->resolution) {
2473 dns_trigger_resolution(s->dns_ctx.dns_requester);
2474 return ACT_RET_YIELD;
2475 }
2476 res = req->resolution;
2477 resolvers = res->resolvers;
2478
2479 exp = tick_add(res->last_resolution, resolvers->hold.valid);
2480 if (resolvers->t && res->status == RSLV_STATUS_VALID && tick_isset(res->last_resolution)
2481 && !tick_is_expired(exp, now_ms)) {
2482 goto use_cache;
2483 }
2484
Willy Tarreau45726fd2019-07-17 10:38:45 +02002485 dns_trigger_resolution(s->dns_ctx.dns_requester);
Baptiste Assmann333939c2019-01-21 08:34:50 +01002486 return ACT_RET_YIELD;
2487}
2488
Christopher Faulet3b2bb632020-01-24 18:12:58 +01002489static void release_dns_action(struct act_rule *rule)
2490{
2491 release_sample_expr(rule->arg.dns.expr);
2492 free(rule->arg.dns.varname);
2493 free(rule->arg.dns.resolvers_id);
2494 free(rule->arg.dns.dns_opts);
2495}
2496
Baptiste Assmann333939c2019-01-21 08:34:50 +01002497
2498/* parse "do-resolve" action
2499 * This action takes the following arguments:
2500 * do-resolve(<varName>,<resolversSectionName>,<resolvePrefer>) <expr>
2501 *
2502 * - <varName> is the variable name where the result of the DNS resolution will be stored
2503 * (mandatory)
2504 * - <resolversSectionName> is the name of the resolvers section to use to perform the resolution
2505 * (mandatory)
2506 * - <resolvePrefer> can be either 'ipv4' or 'ipv6' and is the IP family we would like to resolve first
2507 * (optional), defaults to ipv6
2508 * - <expr> is an HAProxy expression used to fetch the name to be resolved
2509 */
2510enum act_parse_ret dns_parse_do_resolve(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
2511{
2512 int cur_arg;
2513 struct sample_expr *expr;
2514 unsigned int where;
2515 const char *beg, *end;
2516
2517 /* orig_arg points to the first argument, but we need to analyse the command itself first */
2518 cur_arg = *orig_arg - 1;
2519
2520 /* locate varName, which is mandatory */
2521 beg = strchr(args[cur_arg], '(');
2522 if (beg == NULL)
2523 goto do_resolve_parse_error;
2524 beg = beg + 1; /* beg should points to the first character after opening parenthesis '(' */
2525 end = strchr(beg, ',');
2526 if (end == NULL)
2527 goto do_resolve_parse_error;
2528 rule->arg.dns.varname = my_strndup(beg, end - beg);
2529 if (rule->arg.dns.varname == NULL)
2530 goto do_resolve_parse_error;
2531
2532
2533 /* locate resolversSectionName, which is mandatory.
2534 * Since next parameters are optional, the delimiter may be comma ','
2535 * or closing parenthesis ')'
2536 */
2537 beg = end + 1;
2538 end = strchr(beg, ',');
2539 if (end == NULL)
2540 end = strchr(beg, ')');
2541 if (end == NULL)
2542 goto do_resolve_parse_error;
2543 rule->arg.dns.resolvers_id = my_strndup(beg, end - beg);
2544 if (rule->arg.dns.resolvers_id == NULL)
2545 goto do_resolve_parse_error;
2546
2547
Christopher Fauleta4168432020-01-24 18:08:42 +01002548 rule->arg.dns.dns_opts = calloc(1, sizeof(*rule->arg.dns.dns_opts));
2549 if (rule->arg.dns.dns_opts == NULL)
2550 goto do_resolve_parse_error;
2551
Baptiste Assmann333939c2019-01-21 08:34:50 +01002552 /* Default priority is ipv6 */
Christopher Fauleta4168432020-01-24 18:08:42 +01002553 rule->arg.dns.dns_opts->family_prio = AF_INET6;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002554
2555 /* optional arguments accepted for now:
2556 * ipv4 or ipv6
2557 */
2558 while (*end != ')') {
2559 beg = end + 1;
2560 end = strchr(beg, ',');
2561 if (end == NULL)
2562 end = strchr(beg, ')');
2563 if (end == NULL)
2564 goto do_resolve_parse_error;
2565
2566 if (strncmp(beg, "ipv4", end - beg) == 0) {
Christopher Fauleta4168432020-01-24 18:08:42 +01002567 rule->arg.dns.dns_opts->family_prio = AF_INET;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002568 }
2569 else if (strncmp(beg, "ipv6", end - beg) == 0) {
Christopher Fauleta4168432020-01-24 18:08:42 +01002570 rule->arg.dns.dns_opts->family_prio = AF_INET6;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002571 }
2572 else {
2573 goto do_resolve_parse_error;
2574 }
2575 }
2576
2577 cur_arg = cur_arg + 1;
2578
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01002579 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args, NULL);
Baptiste Assmann333939c2019-01-21 08:34:50 +01002580 if (!expr)
2581 goto do_resolve_parse_error;
2582
2583
2584 where = 0;
2585 if (px->cap & PR_CAP_FE)
2586 where |= SMP_VAL_FE_HRQ_HDR;
2587 if (px->cap & PR_CAP_BE)
2588 where |= SMP_VAL_BE_HRQ_HDR;
2589
2590 if (!(expr->fetch->val & where)) {
2591 memprintf(err,
2592 "fetch method '%s' extracts information from '%s', none of which is available here",
2593 args[cur_arg-1], sample_src_names(expr->fetch->use));
2594 free(expr);
2595 return ACT_RET_PRS_ERR;
2596 }
2597 rule->arg.dns.expr = expr;
2598 rule->action = ACT_CUSTOM;
2599 rule->action_ptr = dns_action_do_resolve;
2600 *orig_arg = cur_arg;
2601
2602 rule->check_ptr = check_action_do_resolve;
Christopher Faulet3b2bb632020-01-24 18:12:58 +01002603 rule->release_ptr = release_dns_action;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002604
2605 return ACT_RET_PRS_OK;
2606
2607 do_resolve_parse_error:
2608 free(rule->arg.dns.varname); rule->arg.dns.varname = NULL;
2609 free(rule->arg.dns.resolvers_id); rule->arg.dns.resolvers_id = NULL;
2610 memprintf(err, "Can't parse '%s'. Expects 'do-resolve(<varname>,<resolvers>[,<options>]) <expr>'. Available options are 'ipv4' and 'ipv6'",
2611 args[cur_arg]);
2612 return ACT_RET_PRS_ERR;
2613}
2614
2615static struct action_kw_list http_req_kws = { { }, {
2616 { "do-resolve", dns_parse_do_resolve, 1 },
2617 { /* END */ }
2618}};
2619
2620INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_kws);
2621
2622static struct action_kw_list tcp_req_cont_actions = {ILH, {
2623 { "do-resolve", dns_parse_do_resolve, 1 },
2624 { /* END */ }
2625}};
2626
2627INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_cont_actions);
2628
2629/* Check an "http-request do-resolve" action.
2630 *
2631 * The function returns 1 in success case, otherwise, it returns 0 and err is
2632 * filled.
2633 */
2634int check_action_do_resolve(struct act_rule *rule, struct proxy *px, char **err)
2635{
2636 struct dns_resolvers *resolvers = NULL;
2637
2638 if (rule->arg.dns.resolvers_id == NULL) {
2639 memprintf(err,"Proxy '%s': %s", px->id, "do-resolve action without resolvers");
2640 return 0;
2641 }
2642
2643 resolvers = find_resolvers_by_id(rule->arg.dns.resolvers_id);
2644 if (resolvers == NULL) {
2645 memprintf(err,"Can't find resolvers section '%s' for do-resolve action", rule->arg.dns.resolvers_id);
2646 return 0;
2647 }
2648 rule->arg.dns.resolvers = resolvers;
2649
2650 return 1;
2651}
2652
Willy Tarreau172f5ce2018-11-26 11:21:50 +01002653REGISTER_POST_DEINIT(dns_deinit);
Willy Tarreaue6552512018-11-26 11:33:13 +01002654REGISTER_CONFIG_POSTPARSER("dns runtime resolver", dns_finalize_config);