blob: 282fa923fbab02d6588c244776e59f341c53edd8 [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>
Baptiste Assmann333939c2019-01-21 08:34:50 +010042#include <proto/proto_http.h>
43#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 Duesterhus7e91ef92020-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 Assmann3697f032019-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;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200275
Christopher Faulet67957bd2017-09-27 11:00:59 +0200276 list_for_each_entry(ns, &resolvers->nameservers, list) {
277 int fd = ns->dgram->t.sock.fd;
278 if (fd == -1) {
279 if (dns_connect_namesaver(ns) == -1)
280 continue;
281 fd = ns->dgram->t.sock.fd;
282 resolvers->nb_nameservers++;
283 }
284 fd_want_send(fd);
285 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200286
Christopher Faulet67957bd2017-09-27 11:00:59 +0200287 /* Update resolution */
288 resolution->nb_queries = 0;
289 resolution->nb_responses = 0;
290 resolution->last_query = now_ms;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200291
Christopher Faulet67957bd2017-09-27 11:00:59 +0200292 /* Push the resolution at the end of the active list */
293 LIST_DEL(&resolution->list);
294 LIST_ADDQ(&resolvers->resolutions.curr, &resolution->list);
295 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200296}
297
Christopher Faulet67957bd2017-09-27 11:00:59 +0200298/* Prepares and sends a DNS resolution. It returns 1 if the query was sent, 0 if
299 * skipped and -1 if an error occurred.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200300 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200301static int
302dns_run_resolution(struct dns_resolution *resolution)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200303{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200304 struct dns_resolvers *resolvers = resolution->resolvers;
305 int query_id, i;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200306
Christopher Faulet67957bd2017-09-27 11:00:59 +0200307 /* Avoid sending requests for resolutions that don't yet have an
308 * hostname, ie resolutions linked to servers that do not yet have an
309 * fqdn */
310 if (!resolution->hostname_dn)
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200311 return 0;
312
Christopher Faulet67957bd2017-09-27 11:00:59 +0200313 /* Check if a resolution has already been started for this server return
314 * directly to avoid resolution pill up. */
315 if (resolution->step != RSLV_STEP_NONE)
316 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200317
Christopher Faulet67957bd2017-09-27 11:00:59 +0200318 /* Generates a new query id. We try at most 100 times to find a free
319 * query id */
320 for (i = 0; i < 100; ++i) {
321 query_id = dns_rnd16();
322 if (!eb32_lookup(&resolvers->query_ids, query_id))
Olivier Houchard8da5f982017-08-04 18:35:36 +0200323 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200324 query_id = -1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200325 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200326 if (query_id == -1) {
327 send_log(NULL, LOG_NOTICE,
328 "could not generate a query id for %s, in resolvers %s.\n",
329 resolution->hostname_dn, resolvers->id);
330 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200331 }
332
Christopher Faulet67957bd2017-09-27 11:00:59 +0200333 /* Update resolution parameters */
334 resolution->query_id = query_id;
335 resolution->qid.key = query_id;
336 resolution->step = RSLV_STEP_RUNNING;
337 resolution->query_type = resolution->prefered_query_type;
338 resolution->try = resolvers->resolve_retries;
339 eb32_insert(&resolvers->query_ids, &resolution->qid);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200340
Christopher Faulet67957bd2017-09-27 11:00:59 +0200341 /* Send the DNS query */
342 resolution->try -= 1;
343 dns_send_query(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200344 return 1;
345}
346
Christopher Faulet67957bd2017-09-27 11:00:59 +0200347/* Performs a name resolution for the requester <req> */
348void dns_trigger_resolution(struct dns_requester *req)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200349{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200350 struct dns_resolvers *resolvers;
351 struct dns_resolution *res;
352 int exp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200353
Christopher Faulet67957bd2017-09-27 11:00:59 +0200354 if (!req || !req->resolution)
355 return;
356 res = req->resolution;
357 resolvers = res->resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200358
Christopher Faulet67957bd2017-09-27 11:00:59 +0200359 /* The resolution must not be triggered yet. Use the cached response, if
360 * valid */
361 exp = tick_add(res->last_resolution, resolvers->hold.valid);
Olivier Houchardf3d9e602018-05-22 18:40:07 +0200362 if (resolvers->t && (res->status != RSLV_STATUS_VALID ||
363 !tick_isset(res->last_resolution) || tick_is_expired(exp, now_ms)))
364 task_wakeup(resolvers->t, TASK_WOKEN_OTHER);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200365}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200366
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200367
Christopher Faulet67957bd2017-09-27 11:00:59 +0200368/* Resets some resolution parameters to initial values and also delete the query
369 * ID from the resolver's tree.
370 */
371static void dns_reset_resolution(struct dns_resolution *resolution)
372{
373 /* update resolution status */
374 resolution->step = RSLV_STEP_NONE;
375 resolution->try = 0;
376 resolution->last_resolution = now_ms;
377 resolution->nb_queries = 0;
378 resolution->nb_responses = 0;
379 resolution->query_type = resolution->prefered_query_type;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200380
Christopher Faulet67957bd2017-09-27 11:00:59 +0200381 /* clean up query id */
382 eb32_delete(&resolution->qid);
383 resolution->query_id = 0;
384 resolution->qid.key = 0;
385}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200386
Christopher Faulet67957bd2017-09-27 11:00:59 +0200387/* Returns the query id contained in a DNS response */
388static inline unsigned short dns_response_get_query_id(unsigned char *resp)
389{
390 return resp[0] * 256 + resp[1];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200391}
392
Christopher Faulet67957bd2017-09-27 11:00:59 +0200393
394/* Analyses, re-builds and copies the name <name> from the DNS response packet
395 * <buffer>. <name> must point to the 'data_len' information or pointer 'c0'
396 * for compressed data. The result is copied into <dest>, ensuring we don't
397 * overflow using <dest_len> Returns the number of bytes the caller can move
398 * forward. If 0 it means an error occurred while parsing the name. <offset> is
399 * the number of bytes the caller could move forward.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200400 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200401int dns_read_name(unsigned char *buffer, unsigned char *bufend,
402 unsigned char *name, char *destination, int dest_len,
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100403 int *offset, unsigned int depth)
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200404{
405 int nb_bytes = 0, n = 0;
406 int label_len;
407 unsigned char *reader = name;
408 char *dest = destination;
409
410 while (1) {
Remi Gacogne2d19fbc2018-12-05 17:55:10 +0100411 if (reader >= bufend)
412 goto err;
413
Christopher Faulet67957bd2017-09-27 11:00:59 +0200414 /* Name compression is in use */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200415 if ((*reader & 0xc0) == 0xc0) {
Remi Gacogne2d19fbc2018-12-05 17:55:10 +0100416 if (reader + 1 >= bufend)
417 goto err;
418
Christopher Faulet67957bd2017-09-27 11:00:59 +0200419 /* Must point BEFORE current position */
420 if ((buffer + reader[1]) > reader)
421 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200422
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100423 if (depth++ > 100)
424 goto err;
425
Nikhil Agrawal2fa66c32018-12-20 10:50:59 +0530426 n = dns_read_name(buffer, bufend, buffer + (*reader & 0x3f)*256 + reader[1],
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100427 dest, dest_len - nb_bytes, offset, depth);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200428 if (n == 0)
Christopher Faulet67957bd2017-09-27 11:00:59 +0200429 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200430
Christopher Faulet67957bd2017-09-27 11:00:59 +0200431 dest += n;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200432 nb_bytes += n;
433 goto out;
434 }
435
436 label_len = *reader;
437 if (label_len == 0)
438 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200439
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200440 /* Check if:
441 * - we won't read outside the buffer
442 * - there is enough place in the destination
443 */
444 if ((reader + label_len >= bufend) || (nb_bytes + label_len >= dest_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +0200445 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200446
447 /* +1 to take label len + label string */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200448 label_len++;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200449
450 memcpy(dest, reader, label_len);
451
Christopher Faulet67957bd2017-09-27 11:00:59 +0200452 dest += label_len;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200453 nb_bytes += label_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200454 reader += label_len;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200455 }
456
Christopher Faulet67957bd2017-09-27 11:00:59 +0200457 out:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200458 /* offset computation:
459 * parse from <name> until finding either NULL or a pointer "c0xx"
460 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200461 reader = name;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200462 *offset = 0;
463 while (reader < bufend) {
464 if ((reader[0] & 0xc0) == 0xc0) {
465 *offset += 2;
466 break;
467 }
468 else if (*reader == 0) {
469 *offset += 1;
470 break;
471 }
472 *offset += 1;
473 ++reader;
474 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200475 return nb_bytes;
476
Christopher Faulet67957bd2017-09-27 11:00:59 +0200477 err:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200478 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200479}
480
Christopher Faulet67957bd2017-09-27 11:00:59 +0200481/* Checks for any obsolete record, also identify any SRV request, and try to
482 * find a corresponding server.
483*/
484static void dns_check_dns_response(struct dns_resolution *res)
485{
486 struct dns_resolvers *resolvers = res->resolvers;
487 struct dns_requester *req, *reqback;
488 struct dns_answer_item *item, *itemback;
489 struct server *srv;
490 struct dns_srvrq *srvrq;
491
492 list_for_each_entry_safe(item, itemback, &res->response.answer_list, list) {
493
494 /* Remove obsolete items */
495 if ((item->last_seen + resolvers->hold.obsolete / 1000) < now.tv_sec) {
496 if (item->type != DNS_RTYPE_SRV)
497 goto rm_obselete_item;
498
499 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
500 if ((srvrq = objt_dns_srvrq(req->owner)) == NULL)
501 continue;
502
503 /* Remove any associated server */
504 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100505 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200506 if (srv->srvrq == srvrq && srv->svc_port == item->port &&
507 item->data_len == srv->hostname_dn_len &&
508 !memcmp(srv->hostname_dn, item->target, item->data_len)) {
509 snr_update_srv_status(srv, 1);
510 free(srv->hostname);
511 free(srv->hostname_dn);
512 srv->hostname = NULL;
513 srv->hostname_dn = NULL;
514 srv->hostname_dn_len = 0;
515 dns_unlink_resolution(srv->dns_requester);
516 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100517 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200518 }
519 }
520
521 rm_obselete_item:
522 LIST_DEL(&item->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100523 pool_free(dns_answer_item_pool, item);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200524 continue;
525 }
526
527 if (item->type != DNS_RTYPE_SRV)
528 continue;
529
530 /* Now process SRV records */
531 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
532 if ((srvrq = objt_dns_srvrq(req->owner)) == NULL)
533 continue;
534
535 /* Check if a server already uses that hostname */
536 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100537 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200538 if (srv->srvrq == srvrq && srv->svc_port == item->port &&
539 item->data_len == srv->hostname_dn_len &&
540 !memcmp(srv->hostname_dn, item->target, item->data_len)) {
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100541 int ha_weight;
542
Baptiste Assmannba0244b2019-10-21 15:13:48 +0200543 /* DNS weight range if from 0 to 65535
544 * HAProxy weight is from 0 to 256
545 * The rule below ensures that weight 0 is well respected
546 * while allowing a "mapping" from DNS weight into HAProxy's one.
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100547 */
Baptiste Assmannba0244b2019-10-21 15:13:48 +0200548 ha_weight = (item->weight + 255) / 256;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100549 if (srv->uweight != ha_weight) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200550 char weight[9];
551
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100552 snprintf(weight, sizeof(weight), "%d", ha_weight);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200553 server_parse_weight_change_request(srv, weight);
554 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100555 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200556 break;
557 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100558 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200559 }
560 if (srv)
561 continue;
562
563 /* If not, try to find a server with undefined hostname */
564 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100565 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200566 if (srv->srvrq == srvrq && !srv->hostname_dn)
567 break;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100568 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200569 }
570 /* And update this server, if found */
571 if (srv) {
572 const char *msg = NULL;
573 char weight[9];
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100574 int ha_weight;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200575 char hostname[DNS_MAX_NAME_SIZE];
576
577 if (dns_dn_label_to_str(item->target, item->data_len+1,
Olivier Houchard55dcdf42017-11-06 15:15:04 +0100578 hostname, DNS_MAX_NAME_SIZE) == -1) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100579 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200580 continue;
Olivier Houchard55dcdf42017-11-06 15:15:04 +0100581 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +0100582 msg = update_server_fqdn(srv, hostname, "SRV record", 1);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200583 if (msg)
584 send_log(srv->proxy, LOG_NOTICE, "%s", msg);
585
586 srv->svc_port = item->port;
587 srv->flags &= ~SRV_F_MAPPORTS;
588 if ((srv->check.state & CHK_ST_CONFIGURED) &&
589 !(srv->flags & SRV_F_CHECKPORT))
590 srv->check.port = item->port;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100591
Baptiste Assmannba0244b2019-10-21 15:13:48 +0200592 /* DNS weight range if from 0 to 65535
593 * HAProxy weight is from 0 to 256
594 * The rule below ensures that weight 0 is well respected
595 * while allowing a "mapping" from DNS weight into HAProxy's one.
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100596 */
Baptiste Assmannba0244b2019-10-21 15:13:48 +0200597 ha_weight = (item->weight + 255) / 256;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100598
599 snprintf(weight, sizeof(weight), "%d", ha_weight);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200600 server_parse_weight_change_request(srv, weight);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100601 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200602 }
603 }
604 }
605}
606
607/* Validates that the buffer DNS response provided in <resp> and finishing
608 * before <bufend> is valid from a DNS protocol point of view.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200609 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200610 * The result is stored in <resolution>' response, buf_response,
611 * response_query_records and response_answer_records members.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200612 *
613 * This function returns one of the DNS_RESP_* code to indicate the type of
614 * error found.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200615 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200616static int dns_validate_dns_response(unsigned char *resp, unsigned char *bufend,
617 struct dns_resolution *resolution, int max_answer_records)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200618{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200619 unsigned char *reader;
620 char *previous_dname, tmpname[DNS_MAX_NAME_SIZE];
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200621 int len, flags, offset;
622 int dns_query_record_id;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200623 int nb_saved_records;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200624 struct dns_query_item *dns_query;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200625 struct dns_answer_item *dns_answer_record, *tmp_record;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200626 struct dns_response_packet *dns_p;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200627 int i, found = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200628
Christopher Faulet67957bd2017-09-27 11:00:59 +0200629 reader = resp;
630 len = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200631 previous_dname = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200632 dns_query = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200633
Christopher Faulet67957bd2017-09-27 11:00:59 +0200634 /* Initialization of response buffer and structure */
Baptiste Assmann729c9012017-05-22 15:13:10 +0200635 dns_p = &resolution->response;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200636
637 /* query id */
638 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200639 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200640 dns_p->header.id = reader[0] * 256 + reader[1];
641 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200642
Christopher Faulet67957bd2017-09-27 11:00:59 +0200643 /* Flags and rcode are stored over 2 bytes
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200644 * First byte contains:
645 * - response flag (1 bit)
646 * - opcode (4 bits)
647 * - authoritative (1 bit)
648 * - truncated (1 bit)
649 * - recursion desired (1 bit)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200650 */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200651 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200652 return DNS_RESP_INVALID;
653
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200654 flags = reader[0] * 256 + reader[1];
655
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200656 if ((flags & DNS_FLAG_REPLYCODE) != DNS_RCODE_NO_ERROR) {
657 if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_NX_DOMAIN)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200658 return DNS_RESP_NX_DOMAIN;
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200659 else if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_REFUSED)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200660 return DNS_RESP_REFUSED;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200661 return DNS_RESP_ERROR;
662 }
663
Christopher Faulet67957bd2017-09-27 11:00:59 +0200664 /* Move forward 2 bytes for flags */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200665 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200666
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200667 /* 2 bytes for question count */
668 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200669 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200670 dns_p->header.qdcount = reader[0] * 256 + reader[1];
Christopher Faulet67957bd2017-09-27 11:00:59 +0200671 /* (for now) we send one query only, so we expect only one in the
672 * response too */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200673 if (dns_p->header.qdcount != 1)
674 return DNS_RESP_QUERY_COUNT_ERROR;
675 if (dns_p->header.qdcount > DNS_MAX_QUERY_RECORDS)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200676 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200677 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200678
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200679 /* 2 bytes for answer count */
680 if (reader + 2 >= bufend)
681 return DNS_RESP_INVALID;
682 dns_p->header.ancount = reader[0] * 256 + reader[1];
683 if (dns_p->header.ancount == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200684 return DNS_RESP_ANCOUNT_ZERO;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200685 /* Check if too many records are announced */
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200686 if (dns_p->header.ancount > max_answer_records)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200687 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200688 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200689
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200690 /* 2 bytes authority count */
691 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200692 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200693 dns_p->header.nscount = reader[0] * 256 + reader[1];
694 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200695
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200696 /* 2 bytes additional count */
697 if (reader + 2 >= bufend)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200698 return DNS_RESP_INVALID;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200699 dns_p->header.arcount = reader[0] * 256 + reader[1];
700 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200701
Christopher Faulet67957bd2017-09-27 11:00:59 +0200702 /* Parsing dns queries */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200703 LIST_INIT(&dns_p->query_list);
704 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 +0200705 /* Use next pre-allocated dns_query_item after ensuring there is
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200706 * still one available.
Christopher Faulet67957bd2017-09-27 11:00:59 +0200707 * It's then added to our packet query list. */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200708 if (dns_query_record_id > DNS_MAX_QUERY_RECORDS)
709 return DNS_RESP_INVALID;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200710 dns_query = &resolution->response_query_records[dns_query_record_id];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200711 LIST_ADDQ(&dns_p->query_list, &dns_query->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200712
Christopher Faulet67957bd2017-09-27 11:00:59 +0200713 /* Name is a NULL terminated string in our case, since we have
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200714 * one query per response and the first one can't be compressed
Christopher Faulet67957bd2017-09-27 11:00:59 +0200715 * (using the 0x0c format) */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200716 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100717 len = dns_read_name(resp, bufend, reader, dns_query->name, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200718
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200719 if (len == 0)
720 return DNS_RESP_INVALID;
721
722 reader += offset;
723 previous_dname = dns_query->name;
724
725 /* move forward 2 bytes for question type */
726 if (reader + 2 >= bufend)
727 return DNS_RESP_INVALID;
728 dns_query->type = reader[0] * 256 + reader[1];
729 reader += 2;
730
731 /* move forward 2 bytes for question class */
732 if (reader + 2 >= bufend)
733 return DNS_RESP_INVALID;
734 dns_query->class = reader[0] * 256 + reader[1];
735 reader += 2;
736 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200737
Baptiste Assmann251abb92017-08-11 09:58:27 +0200738 /* TRUNCATED flag must be checked after we could read the query type
Christopher Faulet67957bd2017-09-27 11:00:59 +0200739 * because a TRUNCATED SRV query type response can still be exploited */
Baptiste Assmann251abb92017-08-11 09:58:27 +0200740 if (dns_query->type != DNS_RTYPE_SRV && flags & DNS_FLAG_TRUNCATED)
741 return DNS_RESP_TRUNCATED;
742
Baptiste Assmann325137d2015-04-13 23:40:55 +0200743 /* now parsing response records */
Baptiste Assmann69fce672017-05-04 08:37:45 +0200744 nb_saved_records = 0;
Olivier Houchard8da5f982017-08-04 18:35:36 +0200745 for (i = 0; i < dns_p->header.ancount; i++) {
Baptiste Assmann325137d2015-04-13 23:40:55 +0200746 if (reader >= bufend)
747 return DNS_RESP_INVALID;
748
Willy Tarreaubafbe012017-11-24 17:34:44 +0100749 dns_answer_record = pool_alloc(dns_answer_item_pool);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200750 if (dns_answer_record == NULL)
751 return (DNS_RESP_INVALID);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200752
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200753 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100754 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200755
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200756 if (len == 0) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100757 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200758 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200759 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200760
Christopher Faulet67957bd2017-09-27 11:00:59 +0200761 /* Check if the current record dname is valid. previous_dname
762 * points either to queried dname or last CNAME target */
Baptiste Assmannddc8ce62017-08-11 10:31:22 +0200763 if (dns_query->type != DNS_RTYPE_SRV && memcmp(previous_dname, tmpname, len) != 0) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100764 pool_free(dns_answer_item_pool, dns_answer_record);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200765 if (i == 0) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200766 /* First record, means a mismatch issue between
767 * queried dname and dname found in the first
768 * record */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200769 return DNS_RESP_INVALID;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200770 }
771 else {
772 /* If not the first record, this means we have a
773 * CNAME resolution error */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200774 return DNS_RESP_CNAME_ERROR;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200775 }
776
Baptiste Assmann325137d2015-04-13 23:40:55 +0200777 }
778
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200779 memcpy(dns_answer_record->name, tmpname, len);
780 dns_answer_record->name[len] = 0;
Baptiste Assmann2359ff12015-08-07 11:24:05 +0200781
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200782 reader += offset;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200783 if (reader >= bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100784 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200785 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200786 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200787
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200788 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200789 if (reader + 2 > bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100790 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200791 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200792 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200793 dns_answer_record->type = reader[0] * 256 + reader[1];
794 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200795
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200796 /* 2 bytes for class (2) */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200797 if (reader + 2 > bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100798 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200799 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200800 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200801 dns_answer_record->class = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +0200802 reader += 2;
803
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200804 /* 4 bytes for ttl (4) */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200805 if (reader + 4 > bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100806 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200807 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200808 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200809 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
810 + reader[2] * 256 + reader[3];
811 reader += 4;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200812
Christopher Faulet67957bd2017-09-27 11:00:59 +0200813 /* Now reading data len */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200814 if (reader + 2 > bufend) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100815 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200816 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200817 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200818 dns_answer_record->data_len = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +0200819
Christopher Faulet67957bd2017-09-27 11:00:59 +0200820 /* Move forward 2 bytes for data len */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200821 reader += 2;
822
Jérôme Magnin8d4e7dc2018-12-20 16:47:31 +0100823 if (reader + dns_answer_record->data_len > bufend) {
Remi Gacogneefbbdf72018-12-05 17:56:29 +0100824 pool_free(dns_answer_item_pool, dns_answer_record);
825 return DNS_RESP_INVALID;
826 }
827
Christopher Faulet67957bd2017-09-27 11:00:59 +0200828 /* Analyzing record content */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200829 switch (dns_answer_record->type) {
Baptiste Assmann325137d2015-04-13 23:40:55 +0200830 case DNS_RTYPE_A:
831 /* ipv4 is stored on 4 bytes */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200832 if (dns_answer_record->data_len != 4) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100833 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200834 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200835 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200836 dns_answer_record->address.sa_family = AF_INET;
837 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
838 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200839 break;
840
841 case DNS_RTYPE_CNAME:
Christopher Faulet67957bd2017-09-27 11:00:59 +0200842 /* Check if this is the last record and update the caller about the status:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200843 * no IP could be found and last record was a CNAME. Could be triggered
844 * by a wrong query type
845 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200846 * + 1 because dns_answer_record_id starts at 0
847 * while number of answers is an integer and
848 * starts at 1.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200849 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200850 if (i + 1 == dns_p->header.ancount) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100851 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200852 return DNS_RESP_CNAME_ERROR;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200853 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200854
855 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100856 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200857 if (len == 0) {
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
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200862 memcpy(dns_answer_record->target, tmpname, len);
863 dns_answer_record->target[len] = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200864 previous_dname = dns_answer_record->target;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200865 break;
866
Olivier Houchard8da5f982017-08-04 18:35:36 +0200867
868 case DNS_RTYPE_SRV:
Christopher Faulet67957bd2017-09-27 11:00:59 +0200869 /* Answer must contain :
Olivier Houchard8da5f982017-08-04 18:35:36 +0200870 * - 2 bytes for the priority
871 * - 2 bytes for the weight
872 * - 2 bytes for the port
873 * - the target hostname
874 */
875 if (dns_answer_record->data_len <= 6) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100876 pool_free(dns_answer_item_pool, dns_answer_record);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200877 return DNS_RESP_INVALID;
878 }
Willy Tarreaud5370e12017-09-19 14:59:52 +0200879 dns_answer_record->priority = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200880 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +0200881 dns_answer_record->weight = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200882 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +0200883 dns_answer_record->port = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200884 reader += sizeof(uint16_t);
885 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100886 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200887 if (len == 0) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100888 pool_free(dns_answer_item_pool, dns_answer_record);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200889 return DNS_RESP_INVALID;
890 }
Olivier Houchard8da5f982017-08-04 18:35:36 +0200891 dns_answer_record->data_len = len;
892 memcpy(dns_answer_record->target, tmpname, len);
893 dns_answer_record->target[len] = 0;
894 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200895
Baptiste Assmann325137d2015-04-13 23:40:55 +0200896 case DNS_RTYPE_AAAA:
897 /* ipv6 is stored on 16 bytes */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200898 if (dns_answer_record->data_len != 16) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100899 pool_free(dns_answer_item_pool, dns_answer_record);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200900 return DNS_RESP_INVALID;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200901 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200902 dns_answer_record->address.sa_family = AF_INET6;
903 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
904 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200905 break;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200906
Baptiste Assmann325137d2015-04-13 23:40:55 +0200907 } /* switch (record type) */
908
Christopher Faulet67957bd2017-09-27 11:00:59 +0200909 /* Increment the counter for number of records saved into our
910 * local response */
911 nb_saved_records++;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200912
Christopher Faulet67957bd2017-09-27 11:00:59 +0200913 /* Move forward dns_answer_record->data_len for analyzing next
914 * record in the response */
915 reader += ((dns_answer_record->type == DNS_RTYPE_SRV)
916 ? offset
917 : dns_answer_record->data_len);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200918
919 /* Lookup to see if we already had this entry */
Olivier Houchard8da5f982017-08-04 18:35:36 +0200920 found = 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200921 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
922 if (tmp_record->type != dns_answer_record->type)
923 continue;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200924
925 switch(tmp_record->type) {
926 case DNS_RTYPE_A:
927 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
928 &((struct sockaddr_in *)&tmp_record->address)->sin_addr,
929 sizeof(in_addr_t)))
930 found = 1;
931 break;
932
933 case DNS_RTYPE_AAAA:
934 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
935 &((struct sockaddr_in6 *)&tmp_record->address)->sin6_addr,
936 sizeof(struct in6_addr)))
937 found = 1;
938 break;
939
Olivier Houchard8da5f982017-08-04 18:35:36 +0200940 case DNS_RTYPE_SRV:
941 if (dns_answer_record->data_len == tmp_record->data_len &&
Christopher Faulet67957bd2017-09-27 11:00:59 +0200942 !memcmp(dns_answer_record->target, tmp_record->target, dns_answer_record->data_len) &&
Olivier Houchard8da5f982017-08-04 18:35:36 +0200943 dns_answer_record->port == tmp_record->port) {
944 tmp_record->weight = dns_answer_record->weight;
945 found = 1;
946 }
947 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200948
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200949 default:
950 break;
951 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200952
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200953 if (found == 1)
954 break;
955 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200956
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200957 if (found == 1) {
958 tmp_record->last_seen = now.tv_sec;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100959 pool_free(dns_answer_item_pool, dns_answer_record);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200960 }
961 else {
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200962 dns_answer_record->last_seen = now.tv_sec;
963 LIST_ADDQ(&dns_p->answer_list, &dns_answer_record->list);
964 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200965 } /* for i 0 to ancount */
966
Christopher Faulet67957bd2017-09-27 11:00:59 +0200967 /* Save the number of records we really own */
Baptiste Assmann69fce672017-05-04 08:37:45 +0200968 dns_p->header.ancount = nb_saved_records;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200969 dns_check_dns_response(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200970 return DNS_RESP_VALID;
971}
972
Christopher Faulet67957bd2017-09-27 11:00:59 +0200973/* Searches dn_name resolution in resp.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200974 * If existing IP not found, return the first IP matching family_priority,
975 * otherwise, first ip found
976 * The following tasks are the responsibility of the caller:
Baptiste Assmann3cf7f982016-04-17 22:43:26 +0200977 * - <dns_p> contains an error free DNS response
Baptiste Assmann325137d2015-04-13 23:40:55 +0200978 * For both cases above, dns_validate_dns_response is required
979 * returns one of the DNS_UPD_* code
980 */
Baptiste Assmannfb7091e2017-05-03 15:43:12 +0200981int dns_get_ip_from_response(struct dns_response_packet *dns_p,
Baptiste Assmann42746372017-05-03 12:12:02 +0200982 struct dns_options *dns_opts, void *currentip,
Thierry Fournierada34842016-02-17 21:25:09 +0100983 short currentip_sin_family,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +0200984 void **newip, short *newip_sin_family,
985 void *owner)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200986{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200987 struct dns_answer_item *record;
Thierry Fournierada34842016-02-17 21:25:09 +0100988 int family_priority;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200989 int currentip_found;
Baptiste Assmann3cf7f982016-04-17 22:43:26 +0200990 unsigned char *newip4, *newip6;
Thierry Fournierac88cfe2016-02-17 22:05:30 +0100991 int currentip_sel;
992 int j;
Thierry Fournierac88cfe2016-02-17 22:05:30 +0100993 int score, max_score;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +0200994 int allowed_duplicated_ip;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200995
Christopher Faulet67957bd2017-09-27 11:00:59 +0200996 family_priority = dns_opts->family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +0200997 allowed_duplicated_ip = dns_opts->accept_duplicate_ip;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200998 *newip = newip4 = newip6 = NULL;
999 currentip_found = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001000 *newip_sin_family = AF_UNSPEC;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001001 max_score = -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001002
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001003 /* Select an IP regarding configuration preference.
Joseph Herlant42cf6392018-11-15 10:33:28 -08001004 * Top priority is the preferred network ip version,
1005 * second priority is the preferred network.
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001006 * the last priority is the currently used IP,
1007 *
1008 * For these three priorities, a score is calculated. The
1009 * weight are:
Joseph Herlant42cf6392018-11-15 10:33:28 -08001010 * 8 - preferred ip version.
1011 * 4 - preferred network.
Baptistefc725902016-12-26 23:21:08 +01001012 * 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 +01001013 * 1 - current ip.
1014 * The result with the biggest score is returned.
1015 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001016
1017 list_for_each_entry(record, &dns_p->answer_list, list) {
1018 void *ip;
1019 unsigned char ip_type;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001020
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001021 if (record->type == DNS_RTYPE_A) {
1022 ip = &(((struct sockaddr_in *)&record->address)->sin_addr);
1023 ip_type = AF_INET;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001024 }
1025 else if (record->type == DNS_RTYPE_AAAA) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001026 ip_type = AF_INET6;
1027 ip = &(((struct sockaddr_in6 *)&record->address)->sin6_addr);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001028 }
1029 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001030 continue;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001031 score = 0;
1032
Joseph Herlant42cf6392018-11-15 10:33:28 -08001033 /* Check for preferred ip protocol. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001034 if (ip_type == family_priority)
Baptistefc725902016-12-26 23:21:08 +01001035 score += 8;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001036
Joseph Herlant42cf6392018-11-15 10:33:28 -08001037 /* Check for preferred network. */
Baptiste Assmann42746372017-05-03 12:12:02 +02001038 for (j = 0; j < dns_opts->pref_net_nb; j++) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001039
1040 /* Compare only the same adresses class. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001041 if (dns_opts->pref_net[j].family != ip_type)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001042 continue;
1043
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001044 if ((ip_type == AF_INET &&
1045 in_net_ipv4(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001046 &dns_opts->pref_net[j].mask.in4,
1047 &dns_opts->pref_net[j].addr.in4)) ||
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001048 (ip_type == AF_INET6 &&
1049 in_net_ipv6(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001050 &dns_opts->pref_net[j].mask.in6,
1051 &dns_opts->pref_net[j].addr.in6))) {
Baptistefc725902016-12-26 23:21:08 +01001052 score += 4;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001053 break;
1054 }
1055 }
1056
Christopher Faulet67957bd2017-09-27 11:00:59 +02001057 /* Check if the IP found in the record is already affected to a
Baptiste Assmann84221b42018-06-22 13:03:50 +02001058 * member of a group. If not, the score should be incremented
Christopher Faulet67957bd2017-09-27 11:00:59 +02001059 * by 2. */
Baptiste Assmann84221b42018-06-22 13:03:50 +02001060 if (owner && snr_check_ip_callback(owner, ip, &ip_type)) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001061 if (!allowed_duplicated_ip) {
1062 continue;
1063 }
Baptiste Assmann84221b42018-06-22 13:03:50 +02001064 } else {
1065 score += 2;
1066 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001067
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001068 /* Check for current ip matching. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001069 if (ip_type == currentip_sin_family &&
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001070 ((currentip_sin_family == AF_INET &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001071 !memcmp(ip, currentip, 4)) ||
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001072 (currentip_sin_family == AF_INET6 &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001073 !memcmp(ip, currentip, 16)))) {
1074 score++;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001075 currentip_sel = 1;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001076 }
1077 else
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001078 currentip_sel = 0;
1079
1080 /* Keep the address if the score is better than the previous
Christopher Faulet67957bd2017-09-27 11:00:59 +02001081 * score. The maximum score is 15, if this value is reached, we
1082 * break the parsing. Implicitly, this score is reached the ip
1083 * selected is the current ip. */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001084 if (score > max_score) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001085 if (ip_type == AF_INET)
1086 newip4 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001087 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001088 newip6 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001089 currentip_found = currentip_sel;
Baptistefc725902016-12-26 23:21:08 +01001090 if (score == 15)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001091 return DNS_UPD_NO;
1092 max_score = score;
1093 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001094 } /* list for each record entries */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001095
Christopher Faulet67957bd2017-09-27 11:00:59 +02001096 /* No IP found in the response */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001097 if (!newip4 && !newip6)
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001098 return DNS_UPD_NO_IP_FOUND;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001099
Christopher Faulet67957bd2017-09-27 11:00:59 +02001100 /* Case when the caller looks first for an IPv4 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001101 if (family_priority == AF_INET) {
1102 if (newip4) {
1103 *newip = newip4;
1104 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001105 }
1106 else if (newip6) {
1107 *newip = newip6;
1108 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001109 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001110 if (!currentip_found)
1111 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001112 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001113 /* Case when the caller looks first for an IPv6 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001114 else if (family_priority == AF_INET6) {
1115 if (newip6) {
1116 *newip = newip6;
1117 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001118 }
1119 else if (newip4) {
1120 *newip = newip4;
1121 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001122 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001123 if (!currentip_found)
1124 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001125 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001126 /* Case when the caller have no preference (we prefer IPv6) */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001127 else if (family_priority == AF_UNSPEC) {
1128 if (newip6) {
1129 *newip = newip6;
1130 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001131 }
1132 else if (newip4) {
1133 *newip = newip4;
1134 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001135 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001136 if (!currentip_found)
1137 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001138 }
1139
Christopher Faulet67957bd2017-09-27 11:00:59 +02001140 /* No reason why we should change the server's IP address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001141 return DNS_UPD_NO;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001142
Christopher Faulet67957bd2017-09-27 11:00:59 +02001143 not_found:
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001144 list_for_each_entry(record, &dns_p->answer_list, list) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001145 /* Move the first record to the end of the list, for internal
1146 * round robin */
1147 LIST_DEL(&record->list);
1148 LIST_ADDQ(&dns_p->answer_list, &record->list);
1149 break;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001150 }
1151 return DNS_UPD_SRVIP_NOT_FOUND;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001152}
1153
Christopher Faulet67957bd2017-09-27 11:00:59 +02001154/* Turns a domain name label into a string.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001155 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001156 * <dn> must be a null-terminated string. <dn_len> must include the terminating
1157 * null byte. <str> must be allocated and its size must be passed in <str_len>.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001158 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001159 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1160 * <str> (including the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001161 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001162int dns_dn_label_to_str(const char *dn, int dn_len, char *str, int str_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001163{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001164 char *ptr;
1165 int i, sz;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001166
Christopher Faulet67957bd2017-09-27 11:00:59 +02001167 if (str_len < dn_len - 1)
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001168 return -1;
1169
Christopher Faulet67957bd2017-09-27 11:00:59 +02001170 ptr = str;
1171 for (i = 0; i < dn_len-1; ++i) {
1172 sz = dn[i];
1173 if (i)
1174 *ptr++ = '.';
1175 memcpy(ptr, dn+i+1, sz);
1176 ptr += sz;
1177 i += sz;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001178 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001179 *ptr++ = '\0';
1180 return (ptr - str);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001181}
1182
Christopher Faulet67957bd2017-09-27 11:00:59 +02001183/* Turns a string into domain name label: www.haproxy.org into 3www7haproxy3org
1184 *
1185 * <str> must be a null-terminated string. <str_len> must include the
1186 * terminating null byte. <dn> buffer must be allocated and its size must be
1187 * passed in <dn_len>.
1188 *
1189 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1190 * <dn> (excluding the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001191 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001192int dns_str_to_dn_label(const char *str, int str_len, char *dn, int dn_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001193{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001194 int i, offset;
1195
Christopher Faulet67957bd2017-09-27 11:00:59 +02001196 if (dn_len < str_len + 1)
1197 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001198
Christopher Faulet67957bd2017-09-27 11:00:59 +02001199 /* First byte of dn will be used to store the length of the first
1200 * label */
1201 offset = 0;
1202 for (i = 0; i < str_len; ++i) {
1203 if (str[i] == '.') {
1204 /* 2 or more consecutive dots is invalid */
1205 if (i == offset)
1206 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001207
Lukas Tribus76d4ff02020-02-27 15:47:24 +01001208 /* ignore trailing dot */
1209 if (i + 2 == str_len) {
1210 i++;
1211 break;
1212 }
1213
Christopher Faulet67957bd2017-09-27 11:00:59 +02001214 dn[offset] = (i - offset);
1215 offset = i+1;
1216 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001217 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001218 dn[i+1] = str[i];
Baptiste Assmann325137d2015-04-13 23:40:55 +02001219 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001220 dn[offset] = (i - offset - 1);
1221 dn[i] = '\0';
1222 return i;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001223}
1224
Christopher Faulet67957bd2017-09-27 11:00:59 +02001225/* Validates host name:
Baptiste Assmann325137d2015-04-13 23:40:55 +02001226 * - total size
1227 * - each label size individually
1228 * returns:
1229 * 0 in case of error. If <err> is not NULL, an error message is stored there.
1230 * 1 when no error. <err> is left unaffected.
1231 */
1232int dns_hostname_validation(const char *string, char **err)
1233{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001234 int i;
1235
1236 if (strlen(string) > DNS_MAX_NAME_SIZE) {
1237 if (err)
1238 *err = DNS_TOO_LONG_FQDN;
1239 return 0;
1240 }
1241
William Dauchy5d2ca062020-01-26 19:52:34 +01001242 while (*string) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001243 i = 0;
William Dauchy5d2ca062020-01-26 19:52:34 +01001244 while (*string && *string != '.' && i < DNS_MAX_LABEL_SIZE) {
1245 if (!(*string == '-' || *string == '_' ||
1246 (*string >= 'a' && *string <= 'z') ||
1247 (*string >= 'A' && *string <= 'Z') ||
1248 (*string >= '0' && *string <= '9'))) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001249 if (err)
1250 *err = DNS_INVALID_CHARACTER;
1251 return 0;
1252 }
William Dauchy5d2ca062020-01-26 19:52:34 +01001253 i++;
1254 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001255 }
1256
William Dauchy5d2ca062020-01-26 19:52:34 +01001257 if (!(*string))
1258 break;
1259
1260 if (*string != '.' && i >= DNS_MAX_LABEL_SIZE) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001261 if (err)
1262 *err = DNS_LABEL_TOO_LONG;
1263 return 0;
1264 }
1265
William Dauchy5d2ca062020-01-26 19:52:34 +01001266 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001267 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001268 return 1;
1269}
1270
Christopher Faulet67957bd2017-09-27 11:00:59 +02001271/* Picks up an available resolution from the different resolution list
1272 * associated to a resolvers section, in this order:
1273 * 1. check in resolutions.curr for the same hostname and query_type
1274 * 2. check in resolutions.wait for the same hostname and query_type
1275 * 3. Get a new resolution from resolution pool
1276 *
1277 * Returns an available resolution, NULL if none found.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001278 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001279static struct dns_resolution *dns_pick_resolution(struct dns_resolvers *resolvers,
1280 char **hostname_dn, int hostname_dn_len,
1281 int query_type)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001282{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001283 struct dns_resolution *res;
1284
1285 if (!*hostname_dn)
1286 goto from_pool;
1287
1288 /* Search for same hostname and query type in resolutions.curr */
1289 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
1290 if (!res->hostname_dn)
1291 continue;
1292 if ((query_type == res->prefered_query_type) &&
1293 hostname_dn_len == res->hostname_dn_len &&
1294 !memcmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
1295 return res;
1296 }
1297
1298 /* Search for same hostname and query type in resolutions.wait */
1299 list_for_each_entry(res, &resolvers->resolutions.wait, list) {
1300 if (!res->hostname_dn)
1301 continue;
1302 if ((query_type == res->prefered_query_type) &&
1303 hostname_dn_len == res->hostname_dn_len &&
1304 !memcmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
1305 return res;
1306 }
1307
1308 from_pool:
1309 /* No resolution could be found, so let's allocate a new one */
Willy Tarreaubafbe012017-11-24 17:34:44 +01001310 res = pool_alloc(dns_resolution_pool);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001311 if (res) {
1312 memset(res, 0, sizeof(*res));
1313 res->resolvers = resolvers;
1314 res->uuid = resolution_uuid;
1315 res->status = RSLV_STATUS_NONE;
1316 res->step = RSLV_STEP_NONE;
1317 res->last_valid = now_ms;
1318
1319 LIST_INIT(&res->requesters);
1320 LIST_INIT(&res->response.answer_list);
1321
1322 res->prefered_query_type = query_type;
1323 res->query_type = query_type;
1324 res->hostname_dn = *hostname_dn;
1325 res->hostname_dn_len = hostname_dn_len;
1326
1327 ++resolution_uuid;
1328
1329 /* Move the resolution to the resolvers wait queue */
1330 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1331 }
1332 return res;
1333}
1334
1335/* Releases a resolution from its requester(s) and move it back to the pool */
1336static void dns_free_resolution(struct dns_resolution *resolution)
1337{
1338 struct dns_requester *req, *reqback;
1339
1340 /* clean up configuration */
1341 dns_reset_resolution(resolution);
1342 resolution->hostname_dn = NULL;
1343 resolution->hostname_dn_len = 0;
1344
1345 list_for_each_entry_safe(req, reqback, &resolution->requesters, list) {
1346 LIST_DEL(&req->list);
1347 req->resolution = NULL;
1348 }
1349
1350 LIST_DEL(&resolution->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001351 pool_free(dns_resolution_pool, resolution);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001352}
1353
1354/* Links a requester (a server or a dns_srvrq) with a resolution. It returns 0
1355 * on success, -1 otherwise.
1356 */
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001357int dns_link_resolution(void *requester, int requester_type, int requester_locked)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001358{
1359 struct dns_resolution *res = NULL;
1360 struct dns_requester *req;
1361 struct dns_resolvers *resolvers;
1362 struct server *srv = NULL;
1363 struct dns_srvrq *srvrq = NULL;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001364 struct stream *stream = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001365 char **hostname_dn;
1366 int hostname_dn_len, query_type;
1367
1368 switch (requester_type) {
1369 case OBJ_TYPE_SERVER:
1370 srv = (struct server *)requester;
1371 hostname_dn = &srv->hostname_dn;
1372 hostname_dn_len = srv->hostname_dn_len;
1373 resolvers = srv->resolvers;
1374 query_type = ((srv->dns_opts.family_prio == AF_INET)
1375 ? DNS_RTYPE_A
1376 : DNS_RTYPE_AAAA);
1377 break;
1378
1379 case OBJ_TYPE_SRVRQ:
1380 srvrq = (struct dns_srvrq *)requester;
1381 hostname_dn = &srvrq->hostname_dn;
1382 hostname_dn_len = srvrq->hostname_dn_len;
1383 resolvers = srvrq->resolvers;
1384 query_type = DNS_RTYPE_SRV;
1385 break;
1386
Baptiste Assmann333939c2019-01-21 08:34:50 +01001387 case OBJ_TYPE_STREAM:
1388 stream = (struct stream *)requester;
1389 hostname_dn = &stream->dns_ctx.hostname_dn;
1390 hostname_dn_len = stream->dns_ctx.hostname_dn_len;
1391 resolvers = stream->dns_ctx.parent->arg.dns.resolvers;
1392 query_type = ((stream->dns_ctx.parent->arg.dns.dns_opts.family_prio == AF_INET)
1393 ? DNS_RTYPE_A
1394 : DNS_RTYPE_AAAA);
1395 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001396 default:
1397 goto err;
1398 }
1399
1400 /* Get a resolution from the resolvers' wait queue or pool */
1401 if ((res = dns_pick_resolution(resolvers, hostname_dn, hostname_dn_len, query_type)) == NULL)
1402 goto err;
1403
1404 if (srv) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001405 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001406 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001407 if (srv->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001408 if ((req = pool_alloc(dns_requester_pool)) == NULL) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001409 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001410 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001411 goto err;
Willy Tarreau5ec84572017-11-05 10:35:57 +01001412 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001413 req->owner = &srv->obj_type;
1414 srv->dns_requester = req;
1415 }
1416 else
1417 req = srv->dns_requester;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001418 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001419 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001420
1421 req->requester_cb = snr_resolution_cb;
1422 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001423 }
1424 else if (srvrq) {
1425 if (srvrq->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001426 if ((req = pool_alloc(dns_requester_pool)) == NULL)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001427 goto err;
1428 req->owner = &srvrq->obj_type;
1429 srvrq->dns_requester = req;
1430 }
1431 else
1432 req = srvrq->dns_requester;
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001433
1434 req->requester_cb = snr_resolution_cb;
1435 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001436 }
Baptiste Assmann333939c2019-01-21 08:34:50 +01001437 else if (stream) {
1438 if (stream->dns_ctx.dns_requester == NULL) {
1439 if ((req = pool_alloc(dns_requester_pool)) == NULL)
1440 goto err;
1441 req->owner = &stream->obj_type;
1442 stream->dns_ctx.dns_requester = req;
1443 }
1444 else
1445 req = stream->dns_ctx.dns_requester;
1446
1447 req->requester_cb = act_resolution_cb;
1448 req->requester_error_cb = act_resolution_error_cb;
1449 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001450 else
1451 goto err;
1452
1453 req->resolution = res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001454
1455 LIST_ADDQ(&res->requesters, &req->list);
1456 return 0;
1457
1458 err:
1459 if (res && LIST_ISEMPTY(&res->requesters))
1460 dns_free_resolution(res);
1461 return -1;
1462}
1463
1464/* Removes a requester from a DNS resoltion. It takes takes care of all the
1465 * consequences. It also cleans up some parameters from the requester.
1466 */
1467void dns_unlink_resolution(struct dns_requester *requester)
1468{
1469 struct dns_resolution *res;
1470 struct dns_requester *req;
1471
1472 /* Nothing to do */
1473 if (!requester || !requester->resolution)
1474 return;
1475 res = requester->resolution;
1476
1477 /* Clean up the requester */
1478 LIST_DEL(&requester->list);
1479 requester->resolution = NULL;
1480
1481 /* We need to find another requester linked on this resolution */
1482 if (!LIST_ISEMPTY(&res->requesters))
1483 req = LIST_NEXT(&res->requesters, struct dns_requester *, list);
1484 else {
1485 dns_free_resolution(res);
1486 return;
1487 }
1488
1489 /* Move hostname_dn related pointers to the next requester */
1490 switch (obj_type(req->owner)) {
1491 case OBJ_TYPE_SERVER:
Willy Tarreau433c16f2018-09-20 11:15:27 +02001492 res->hostname_dn = __objt_server(req->owner)->hostname_dn;
1493 res->hostname_dn_len = __objt_server(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001494 break;
1495 case OBJ_TYPE_SRVRQ:
Willy Tarreau433c16f2018-09-20 11:15:27 +02001496 res->hostname_dn = __objt_dns_srvrq(req->owner)->hostname_dn;
1497 res->hostname_dn_len = __objt_dns_srvrq(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001498 break;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001499 case OBJ_TYPE_STREAM:
1500 res->hostname_dn = __objt_stream(req->owner)->dns_ctx.hostname_dn;
1501 res->hostname_dn_len = __objt_stream(req->owner)->dns_ctx.hostname_dn_len;
1502 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001503 default:
1504 res->hostname_dn = NULL;
1505 res->hostname_dn_len = 0;
1506 break;
1507 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001508}
1509
Christopher Faulet67957bd2017-09-27 11:00:59 +02001510/* Called when a network IO is generated on a name server socket for an incoming
1511 * packet. It performs the following actions:
1512 * - check if the packet requires processing (not outdated resolution)
1513 * - ensure the DNS packet received is valid and call requester's callback
1514 * - call requester's error callback if invalid response
1515 * - check the dn_name in the packet against the one sent
1516 */
1517static void dns_resolve_recv(struct dgram_conn *dgram)
1518{
1519 struct dns_nameserver *ns, *tmpns;
1520 struct dns_resolvers *resolvers;
1521 struct dns_resolution *res;
1522 struct dns_query_item *query;
1523 unsigned char buf[DNS_MAX_UDP_MESSAGE + 1];
1524 unsigned char *bufend;
1525 int fd, buflen, dns_resp;
1526 int max_answer_records;
1527 unsigned short query_id;
1528 struct eb32_node *eb;
1529 struct dns_requester *req;
1530
1531 fd = dgram->t.sock.fd;
1532
1533 /* check if ready for reading */
1534 if (!fd_recv_ready(fd))
1535 return;
1536
1537 /* no need to go further if we can't retrieve the nameserver */
Willy Tarreau1899dbf2019-12-10 18:38:09 +01001538 if ((ns = dgram->owner) == NULL) {
1539 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
1540 fd_stop_recv(fd);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001541 return;
Willy Tarreau1899dbf2019-12-10 18:38:09 +01001542 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001543
1544 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001545 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001546
1547 /* process all pending input messages */
Willy Tarreau1899dbf2019-12-10 18:38:09 +01001548 while (fd_recv_ready(fd)) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001549 /* read message received */
1550 memset(buf, '\0', resolvers->accepted_payload_size + 1);
1551 if ((buflen = recv(fd, (char*)buf , resolvers->accepted_payload_size + 1, 0)) < 0) {
Willy Tarreau1899dbf2019-12-10 18:38:09 +01001552 /* FIXME : for now we consider EAGAIN only, but at
1553 * least we purge sticky errors that would cause us to
1554 * be called in loops.
1555 */
1556 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Christopher Faulet67957bd2017-09-27 11:00:59 +02001557 fd_cant_recv(fd);
1558 break;
1559 }
1560
1561 /* message too big */
1562 if (buflen > resolvers->accepted_payload_size) {
1563 ns->counters.too_big++;
1564 continue;
1565 }
1566
1567 /* initializing variables */
1568 bufend = buf + buflen; /* pointer to mark the end of the buffer */
1569
1570 /* read the query id from the packet (16 bits) */
1571 if (buf + 2 > bufend) {
1572 ns->counters.invalid++;
1573 continue;
1574 }
1575 query_id = dns_response_get_query_id(buf);
1576
1577 /* search the query_id in the pending resolution tree */
1578 eb = eb32_lookup(&resolvers->query_ids, query_id);
1579 if (eb == NULL) {
1580 /* unknown query id means an outdated response and can be safely ignored */
1581 ns->counters.outdated++;
1582 continue;
1583 }
1584
1585 /* known query id means a resolution in prgress */
1586 res = eb32_entry(eb, struct dns_resolution, qid);
1587 if (!res) {
1588 ns->counters.outdated++;
1589 continue;
1590 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001591
Christopher Faulet67957bd2017-09-27 11:00:59 +02001592 /* number of responses received */
1593 res->nb_responses++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001594
Christopher Faulet67957bd2017-09-27 11:00:59 +02001595 max_answer_records = (resolvers->accepted_payload_size - DNS_HEADER_SIZE) / DNS_MIN_RECORD_SIZE;
1596 dns_resp = dns_validate_dns_response(buf, bufend, res, max_answer_records);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001597
Christopher Faulet67957bd2017-09-27 11:00:59 +02001598 switch (dns_resp) {
1599 case DNS_RESP_VALID:
1600 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001601
Christopher Faulet67957bd2017-09-27 11:00:59 +02001602 case DNS_RESP_INVALID:
1603 case DNS_RESP_QUERY_COUNT_ERROR:
1604 case DNS_RESP_WRONG_NAME:
1605 res->status = RSLV_STATUS_INVALID;
1606 ns->counters.invalid++;
1607 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001608
Christopher Faulet67957bd2017-09-27 11:00:59 +02001609 case DNS_RESP_NX_DOMAIN:
1610 res->status = RSLV_STATUS_NX;
1611 ns->counters.nx++;
1612 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001613
Christopher Faulet67957bd2017-09-27 11:00:59 +02001614 case DNS_RESP_REFUSED:
1615 res->status = RSLV_STATUS_REFUSED;
1616 ns->counters.refused++;
1617 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001618
Christopher Faulet67957bd2017-09-27 11:00:59 +02001619 case DNS_RESP_ANCOUNT_ZERO:
1620 res->status = RSLV_STATUS_OTHER;
1621 ns->counters.any_err++;
1622 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001623
Christopher Faulet67957bd2017-09-27 11:00:59 +02001624 case DNS_RESP_CNAME_ERROR:
1625 res->status = RSLV_STATUS_OTHER;
1626 ns->counters.cname_error++;
1627 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001628
Christopher Faulet67957bd2017-09-27 11:00:59 +02001629 case DNS_RESP_TRUNCATED:
1630 res->status = RSLV_STATUS_OTHER;
1631 ns->counters.truncated++;
1632 break;
Baptiste Assmanne70bc052017-08-21 16:51:09 +02001633
Christopher Faulet67957bd2017-09-27 11:00:59 +02001634 case DNS_RESP_NO_EXPECTED_RECORD:
1635 case DNS_RESP_ERROR:
1636 case DNS_RESP_INTERNAL:
1637 res->status = RSLV_STATUS_OTHER;
1638 ns->counters.other++;
1639 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001640 }
1641
Christopher Faulet67957bd2017-09-27 11:00:59 +02001642 /* Wait all nameservers response to handle errors */
1643 if (dns_resp != DNS_RESP_VALID && res->nb_responses < resolvers->nb_nameservers)
1644 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001645
Christopher Faulet67957bd2017-09-27 11:00:59 +02001646 /* Process error codes */
1647 if (dns_resp != DNS_RESP_VALID) {
1648 if (res->prefered_query_type != res->query_type) {
1649 /* The fallback on the query type was already performed,
1650 * so check the try counter. If it falls to 0, we can
1651 * report an error. Else, wait the next attempt. */
1652 if (!res->try)
1653 goto report_res_error;
1654 }
1655 else {
1656 /* Fallback from A to AAAA or the opposite and re-send
1657 * the resolution immediately. try counter is not
1658 * decremented. */
1659 if (res->prefered_query_type == DNS_RTYPE_A) {
1660 res->query_type = DNS_RTYPE_AAAA;
1661 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001662 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001663 else if (res->prefered_query_type == DNS_RTYPE_AAAA) {
1664 res->query_type = DNS_RTYPE_A;
1665 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001666 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001667 }
1668 continue;
1669 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02001670
Christopher Faulet67957bd2017-09-27 11:00:59 +02001671 /* Now let's check the query's dname corresponds to the one we
1672 * sent. We can check only the first query of the list. We send
1673 * one query at a time so we get one query in the response */
1674 query = LIST_NEXT(&res->response.query_list, struct dns_query_item *, list);
1675 if (query && memcmp(query->name, res->hostname_dn, res->hostname_dn_len) != 0) {
1676 dns_resp = DNS_RESP_WRONG_NAME;
1677 ns->counters.other++;
1678 goto report_res_error;
1679 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001680
Christopher Faulet67957bd2017-09-27 11:00:59 +02001681 /* So the resolution succeeded */
1682 res->status = RSLV_STATUS_VALID;
1683 res->last_valid = now_ms;
1684 ns->counters.valid++;
1685 goto report_res_success;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001686
Christopher Faulet67957bd2017-09-27 11:00:59 +02001687 report_res_error:
1688 list_for_each_entry(req, &res->requesters, list)
1689 req->requester_error_cb(req, dns_resp);
1690 dns_reset_resolution(res);
1691 LIST_DEL(&res->list);
1692 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1693 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001694
Christopher Faulet67957bd2017-09-27 11:00:59 +02001695 report_res_success:
1696 /* Only the 1rst requester s managed by the server, others are
1697 * from the cache */
1698 tmpns = ns;
1699 list_for_each_entry(req, &res->requesters, list) {
Olivier Houchard28381072017-11-06 17:30:28 +01001700 struct server *s = objt_server(req->owner);
1701
1702 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001703 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001704 req->requester_cb(req, tmpns);
Olivier Houchard28381072017-11-06 17:30:28 +01001705 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001706 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001707 tmpns = NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001708 }
Baptiste Assmann42746372017-05-03 12:12:02 +02001709
Christopher Faulet67957bd2017-09-27 11:00:59 +02001710 dns_reset_resolution(res);
1711 LIST_DEL(&res->list);
1712 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1713 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001714 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001715 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001716 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001717}
William Lallemand69e96442016-11-19 00:58:54 +01001718
Christopher Faulet67957bd2017-09-27 11:00:59 +02001719/* Called when a resolvers network socket is ready to send data */
1720static void dns_resolve_send(struct dgram_conn *dgram)
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001721{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001722 struct dns_resolvers *resolvers;
1723 struct dns_nameserver *ns;
1724 struct dns_resolution *res;
1725 int fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001726
Christopher Faulet67957bd2017-09-27 11:00:59 +02001727 fd = dgram->t.sock.fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001728
Christopher Faulet67957bd2017-09-27 11:00:59 +02001729 /* check if ready for sending */
1730 if (!fd_send_ready(fd))
1731 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001732
Christopher Faulet67957bd2017-09-27 11:00:59 +02001733 /* we don't want/need to be waked up any more for sending */
1734 fd_stop_send(fd);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001735
Christopher Faulet67957bd2017-09-27 11:00:59 +02001736 /* no need to go further if we can't retrieve the nameserver */
1737 if ((ns = dgram->owner) == NULL)
1738 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001739
Christopher Faulet67957bd2017-09-27 11:00:59 +02001740 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001741 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02001742
Christopher Faulet67957bd2017-09-27 11:00:59 +02001743 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02001744 int ret, len;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001745
Christopher Faulet67957bd2017-09-27 11:00:59 +02001746 if (res->nb_queries == resolvers->nb_nameservers)
1747 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001748
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02001749 len = dns_build_query(res->query_id, res->query_type,
1750 resolvers->accepted_payload_size,
1751 res->hostname_dn, res->hostname_dn_len,
1752 trash.area, trash.size);
1753 if (len == -1)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001754 goto snd_error;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001755
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02001756 ret = send(fd, trash.area, len, 0);
1757 if (ret != len)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001758 goto snd_error;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001759
Christopher Faulet67957bd2017-09-27 11:00:59 +02001760 ns->counters.sent++;
1761 res->nb_queries++;
1762 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001763
Christopher Faulet67957bd2017-09-27 11:00:59 +02001764 snd_error:
1765 ns->counters.snd_error++;
1766 res->nb_queries++;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001767 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001768 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001769}
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001770
Christopher Faulet67957bd2017-09-27 11:00:59 +02001771/* Processes DNS resolution. First, it checks the active list to detect expired
1772 * resolutions and retry them if possible. Else a timeout is reported. Then, it
1773 * checks the wait list to trigger new resolutions.
1774 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001775static struct task *dns_process_resolvers(struct task *t, void *context, unsigned short state)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001776{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001777 struct dns_resolvers *resolvers = context;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001778 struct dns_resolution *res, *resback;
1779 int exp;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001780
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001781 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02001782
Christopher Faulet67957bd2017-09-27 11:00:59 +02001783 /* Handle all expired resolutions from the active list */
1784 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
1785 /* When we find the first resolution in the future, then we can
1786 * stop here */
1787 exp = tick_add(res->last_query, resolvers->timeout.retry);
1788 if (!tick_is_expired(exp, now_ms))
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001789 break;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001790
Christopher Faulet67957bd2017-09-27 11:00:59 +02001791 /* If current resolution has been tried too many times and
1792 * finishes in timeout we update its status and remove it from
1793 * the list */
1794 if (!res->try) {
1795 struct dns_requester *req;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001796
Christopher Faulet67957bd2017-09-27 11:00:59 +02001797 /* Notify the result to the requesters */
1798 if (!res->nb_responses)
1799 res->status = RSLV_STATUS_TIMEOUT;
1800 list_for_each_entry(req, &res->requesters, list)
1801 req->requester_error_cb(req, res->status);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001802
Christopher Faulet67957bd2017-09-27 11:00:59 +02001803 /* Clean up resolution info and remove it from the
1804 * current list */
1805 dns_reset_resolution(res);
1806 LIST_DEL(&res->list);
1807 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
William Lallemand69e96442016-11-19 00:58:54 +01001808 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001809 else {
1810 /* Otherwise resend the DNS query and requeue the resolution */
1811 if (!res->nb_responses || res->prefered_query_type != res->query_type) {
1812 /* No response received (a real timeout) or fallback already done */
1813 res->query_type = res->prefered_query_type;
1814 res->try--;
1815 }
1816 else {
1817 /* Fallback from A to AAAA or the opposite and re-send
1818 * the resolution immediately. try counter is not
1819 * decremented. */
1820 if (res->prefered_query_type == DNS_RTYPE_A)
1821 res->query_type = DNS_RTYPE_AAAA;
1822 else if (res->prefered_query_type == DNS_RTYPE_AAAA)
1823 res->query_type = DNS_RTYPE_A;
1824 else
1825 res->try--;
1826 }
1827 dns_send_query(res);
William Lallemand69e96442016-11-19 00:58:54 +01001828 }
1829 }
William Lallemand69e96442016-11-19 00:58:54 +01001830
Christopher Faulet67957bd2017-09-27 11:00:59 +02001831 /* Handle all resolutions in the wait list */
1832 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
1833 exp = tick_add(res->last_resolution, dns_resolution_timeout(res));
1834 if (tick_isset(res->last_resolution) && !tick_is_expired(exp, now_ms))
1835 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001836
Christopher Faulet67957bd2017-09-27 11:00:59 +02001837 if (dns_run_resolution(res) != 1) {
1838 res->last_resolution = now_ms;
1839 LIST_DEL(&res->list);
1840 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001841 }
1842 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001843
Christopher Faulet67957bd2017-09-27 11:00:59 +02001844 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001845 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001846 return t;
1847}
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001848
Christopher Faulet67957bd2017-09-27 11:00:59 +02001849/* proto_udp callback functions for a DNS resolution */
1850struct dgram_data_cb resolve_dgram_cb = {
1851 .recv = dns_resolve_recv,
1852 .send = dns_resolve_send,
1853};
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001854
Christopher Faulet67957bd2017-09-27 11:00:59 +02001855/* Release memory allocated by DNS */
1856static void dns_deinit(void)
1857{
1858 struct dns_resolvers *resolvers, *resolversback;
1859 struct dns_nameserver *ns, *nsback;
1860 struct dns_resolution *res, *resback;
1861 struct dns_requester *req, *reqback;
1862 struct dns_srvrq *srvrq, *srvrqback;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001863
Christopher Faulet67957bd2017-09-27 11:00:59 +02001864 list_for_each_entry_safe(resolvers, resolversback, &dns_resolvers, list) {
1865 list_for_each_entry_safe(ns, nsback, &resolvers->nameservers, list) {
1866 free(ns->id);
1867 free((char *)ns->conf.file);
1868 if (ns->dgram && ns->dgram->t.sock.fd != -1)
1869 fd_delete(ns->dgram->t.sock.fd);
1870 free(ns->dgram);
1871 LIST_DEL(&ns->list);
1872 free(ns);
1873 }
1874
1875 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
1876 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
1877 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001878 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001879 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001880 dns_free_resolution(res);
1881 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02001882
Christopher Faulet67957bd2017-09-27 11:00:59 +02001883 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
1884 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
1885 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001886 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001887 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001888 dns_free_resolution(res);
1889 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02001890
Christopher Faulet67957bd2017-09-27 11:00:59 +02001891 free(resolvers->id);
1892 free((char *)resolvers->conf.file);
Olivier Houchard3f795f72019-04-17 22:51:06 +02001893 task_destroy(resolvers->t);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001894 LIST_DEL(&resolvers->list);
1895 free(resolvers);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001896 }
1897
Christopher Faulet67957bd2017-09-27 11:00:59 +02001898 list_for_each_entry_safe(srvrq, srvrqback, &dns_srvrq_list, list) {
1899 free(srvrq->name);
1900 free(srvrq->hostname_dn);
1901 LIST_DEL(&srvrq->list);
1902 free(srvrq);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001903 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001904}
1905
Christopher Faulet67957bd2017-09-27 11:00:59 +02001906/* Finalizes the DNS configuration by allocating required resources and checking
1907 * live parameters.
1908 * Returns 0 on success, ERR_* flags otherwise.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001909 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001910static int dns_finalize_config(void)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001911{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001912 struct dns_resolvers *resolvers;
1913 struct proxy *px;
1914 int err_code = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001915
Christopher Faulet67957bd2017-09-27 11:00:59 +02001916 /* allocate pool of resolution per resolvers */
1917 list_for_each_entry(resolvers, &dns_resolvers, list) {
1918 struct dns_nameserver *ns;
1919 struct task *t;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001920
Christopher Faulet67957bd2017-09-27 11:00:59 +02001921 /* Check if we can create the socket with nameservers info */
1922 list_for_each_entry(ns, &resolvers->nameservers, list) {
1923 struct dgram_conn *dgram = NULL;
1924 int fd;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001925
Christopher Faulet67957bd2017-09-27 11:00:59 +02001926 /* Check nameserver info */
1927 if ((fd = socket(ns->addr.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001928 ha_alert("config : resolvers '%s': can't create socket for nameserver '%s'.\n",
1929 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001930 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001931 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001932 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001933 if (connect(fd, (struct sockaddr*)&ns->addr, get_addr_len(&ns->addr)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001934 ha_alert("config : resolvers '%s': can't connect socket for nameserver '%s'.\n",
1935 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001936 close(fd);
1937 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001938 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001939 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001940 close(fd);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001941
Christopher Faulet67957bd2017-09-27 11:00:59 +02001942 /* Create dgram structure that will hold the UPD socket
1943 * and attach it on the current nameserver */
1944 if ((dgram = calloc(1, sizeof(*dgram))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001945 ha_alert("config: resolvers '%s' : out of memory.\n",
1946 resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001947 err_code |= (ERR_ALERT|ERR_ABORT);
1948 goto err;
1949 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001950
Christopher Faulet67957bd2017-09-27 11:00:59 +02001951 /* Leave dgram partially initialized, no FD attached for
1952 * now. */
1953 dgram->owner = ns;
1954 dgram->data = &resolve_dgram_cb;
1955 dgram->t.sock.fd = -1;
1956 ns->dgram = dgram;
1957 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001958
Christopher Faulet67957bd2017-09-27 11:00:59 +02001959 /* Create the task associated to the resolvers section */
Emeric Brunc60def82017-09-27 14:59:38 +02001960 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001961 ha_alert("config : resolvers '%s' : out of memory.\n", resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001962 err_code |= (ERR_ALERT|ERR_ABORT);
1963 goto err;
1964 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001965
Christopher Faulet67957bd2017-09-27 11:00:59 +02001966 /* Update task's parameters */
1967 t->process = dns_process_resolvers;
1968 t->context = resolvers;
1969 resolvers->t = t;
1970 task_wakeup(t, TASK_WOKEN_INIT);
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001971 }
1972
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001973 for (px = proxies_list; px; px = px->next) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001974 struct server *srv;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001975
Christopher Faulet67957bd2017-09-27 11:00:59 +02001976 for (srv = px->srv; srv; srv = srv->next) {
1977 struct dns_resolvers *resolvers;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001978
Christopher Faulet67957bd2017-09-27 11:00:59 +02001979 if (!srv->resolvers_id)
1980 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001981
Christopher Faulet67957bd2017-09-27 11:00:59 +02001982 if ((resolvers = find_resolvers_by_id(srv->resolvers_id)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001983 ha_alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n",
1984 proxy_type_str(px), px->id, srv->id, srv->resolvers_id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001985 err_code |= (ERR_ALERT|ERR_ABORT);
1986 continue;
1987 }
1988 srv->resolvers = resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001989
Christopher Faulet67957bd2017-09-27 11:00:59 +02001990 if (srv->srvrq && !srv->srvrq->resolvers) {
1991 srv->srvrq->resolvers = srv->resolvers;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001992 if (dns_link_resolution(srv->srvrq, OBJ_TYPE_SRVRQ, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001993 ha_alert("config : %s '%s' : unable to set DNS resolution for server '%s'.\n",
1994 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001995 err_code |= (ERR_ALERT|ERR_ABORT);
1996 continue;
1997 }
1998 }
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001999 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002000 ha_alert("config : %s '%s', unable to set DNS resolution for server '%s'.\n",
2001 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002002 err_code |= (ERR_ALERT|ERR_ABORT);
2003 continue;
2004 }
2005 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002006 }
2007
Christopher Faulet67957bd2017-09-27 11:00:59 +02002008 if (err_code & (ERR_ALERT|ERR_ABORT))
2009 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002010
Christopher Faulet67957bd2017-09-27 11:00:59 +02002011 return err_code;
2012 err:
2013 dns_deinit();
2014 return err_code;
2015
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002016}
2017
Christopher Faulet67957bd2017-09-27 11:00:59 +02002018/* if an arg is found, it sets the resolvers section pointer into cli.p0 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002019static int cli_parse_stat_resolvers(char **args, char *payload, struct appctx *appctx, void *private)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002020{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002021 struct dns_resolvers *presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002022
Christopher Faulet67957bd2017-09-27 11:00:59 +02002023 if (*args[2]) {
2024 list_for_each_entry(presolvers, &dns_resolvers, list) {
2025 if (strcmp(presolvers->id, args[2]) == 0) {
2026 appctx->ctx.cli.p0 = presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002027 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002028 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002029 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002030 if (appctx->ctx.cli.p0 == NULL) {
2031 appctx->ctx.cli.severity = LOG_ERR;
2032 appctx->ctx.cli.msg = "Can't find that resolvers section\n";
2033 appctx->st0 = CLI_ST_PRINT;
2034 return 1;
2035 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002036 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002037 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002038}
2039
Christopher Faulet67957bd2017-09-27 11:00:59 +02002040/* Dumps counters from all resolvers section and associated name servers. It
2041 * returns 0 if the output buffer is full and it needs to be called again,
2042 * otherwise non-zero. It may limit itself to the resolver pointed to by
Willy Tarreau777b5602016-12-16 18:06:26 +01002043 * <cli.p0> if it's not null.
William Lallemand69e96442016-11-19 00:58:54 +01002044 */
2045static int cli_io_handler_dump_resolvers_to_buffer(struct appctx *appctx)
2046{
2047 struct stream_interface *si = appctx->owner;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002048 struct dns_resolvers *resolvers;
2049 struct dns_nameserver *ns;
William Lallemand69e96442016-11-19 00:58:54 +01002050
2051 chunk_reset(&trash);
2052
2053 switch (appctx->st2) {
2054 case STAT_ST_INIT:
2055 appctx->st2 = STAT_ST_LIST; /* let's start producing data */
2056 /* fall through */
2057
2058 case STAT_ST_LIST:
2059 if (LIST_ISEMPTY(&dns_resolvers)) {
2060 chunk_appendf(&trash, "No resolvers found\n");
2061 }
2062 else {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002063 list_for_each_entry(resolvers, &dns_resolvers, list) {
2064 if (appctx->ctx.cli.p0 != NULL && appctx->ctx.cli.p0 != resolvers)
William Lallemand69e96442016-11-19 00:58:54 +01002065 continue;
2066
Christopher Faulet67957bd2017-09-27 11:00:59 +02002067 chunk_appendf(&trash, "Resolvers section %s\n", resolvers->id);
2068 list_for_each_entry(ns, &resolvers->nameservers, list) {
2069 chunk_appendf(&trash, " nameserver %s:\n", ns->id);
2070 chunk_appendf(&trash, " sent: %lld\n", ns->counters.sent);
2071 chunk_appendf(&trash, " snd_error: %lld\n", ns->counters.snd_error);
2072 chunk_appendf(&trash, " valid: %lld\n", ns->counters.valid);
2073 chunk_appendf(&trash, " update: %lld\n", ns->counters.update);
2074 chunk_appendf(&trash, " cname: %lld\n", ns->counters.cname);
2075 chunk_appendf(&trash, " cname_error: %lld\n", ns->counters.cname_error);
2076 chunk_appendf(&trash, " any_err: %lld\n", ns->counters.any_err);
2077 chunk_appendf(&trash, " nx: %lld\n", ns->counters.nx);
2078 chunk_appendf(&trash, " timeout: %lld\n", ns->counters.timeout);
2079 chunk_appendf(&trash, " refused: %lld\n", ns->counters.refused);
2080 chunk_appendf(&trash, " other: %lld\n", ns->counters.other);
2081 chunk_appendf(&trash, " invalid: %lld\n", ns->counters.invalid);
2082 chunk_appendf(&trash, " too_big: %lld\n", ns->counters.too_big);
2083 chunk_appendf(&trash, " truncated: %lld\n", ns->counters.truncated);
2084 chunk_appendf(&trash, " outdated: %lld\n", ns->counters.outdated);
William Lallemand69e96442016-11-19 00:58:54 +01002085 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002086 chunk_appendf(&trash, "\n");
William Lallemand69e96442016-11-19 00:58:54 +01002087 }
2088 }
2089
2090 /* display response */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002091 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand69e96442016-11-19 00:58:54 +01002092 /* let's try again later from this session. We add ourselves into
2093 * this session's users so that it can remove us upon termination.
2094 */
Willy Tarreaudb398432018-11-15 11:08:52 +01002095 si_rx_room_blk(si);
William Lallemand69e96442016-11-19 00:58:54 +01002096 return 0;
2097 }
William Lallemand69e96442016-11-19 00:58:54 +01002098 /* fall through */
2099
2100 default:
2101 appctx->st2 = STAT_ST_FIN;
2102 return 1;
2103 }
2104}
2105
2106/* register cli keywords */
Christopher Fauletff88efb2017-10-03 16:00:57 +02002107static struct cli_kw_list cli_kws = {{ }, {
2108 { { "show", "resolvers", NULL }, "show resolvers [id]: dumps counters from all resolvers section and\n"
2109 " associated name servers",
2110 cli_parse_stat_resolvers, cli_io_handler_dump_resolvers_to_buffer },
2111 {{},}
2112 }
2113};
William Lallemand69e96442016-11-19 00:58:54 +01002114
Willy Tarreau0108d902018-11-25 19:14:37 +01002115INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand69e96442016-11-19 00:58:54 +01002116
Baptiste Assmann333939c2019-01-21 08:34:50 +01002117/*
2118 * Prepare <rule> for hostname resolution.
2119 * Returns -1 in case of any allocation failure, 0 if not.
2120 * On error, a global failure counter is also incremented.
2121 */
2122static int action_prepare_for_resolution(struct stream *stream, const char *hostname)
2123{
2124 char *hostname_dn;
2125 int hostname_len, hostname_dn_len;
2126 struct buffer *tmp = get_trash_chunk();
2127
2128 if (!hostname)
2129 return 0;
2130
2131 hostname_len = strlen(hostname);
2132 hostname_dn = tmp->area;
2133 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
2134 hostname_dn, tmp->size);
2135 if (hostname_dn_len == -1)
2136 goto err;
2137
2138
2139 stream->dns_ctx.hostname_dn = strdup(hostname_dn);
2140 stream->dns_ctx.hostname_dn_len = hostname_dn_len;
2141 if (!stream->dns_ctx.hostname_dn)
2142 goto err;
2143
2144 return 0;
2145
2146 err:
2147 free(stream->dns_ctx.hostname_dn); stream->dns_ctx.hostname_dn = NULL;
2148 dns_failed_resolutions += 1;
2149 return -1;
2150}
2151
2152
2153/*
2154 * Execute the "do-resolution" action. May be called from {tcp,http}request.
2155 */
2156enum act_return dns_action_do_resolve(struct act_rule *rule, struct proxy *px,
2157 struct session *sess, struct stream *s, int flags)
2158{
Baptiste Assmann333939c2019-01-21 08:34:50 +01002159 struct dns_resolution *resolution;
Willy Tarreau85835ee2019-07-17 10:38:45 +02002160 struct sample *smp;
2161 char *fqdn;
Baptiste Assmann44af0d02019-10-30 16:06:53 +01002162 struct dns_requester *req;
2163 struct dns_resolvers *resolvers;
2164 struct dns_resolution *res;
2165 int exp;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002166
2167 /* we have a response to our DNS resolution */
Baptiste Assmann44af0d02019-10-30 16:06:53 +01002168 use_cache:
Baptiste Assmann333939c2019-01-21 08:34:50 +01002169 if (s->dns_ctx.dns_requester && s->dns_ctx.dns_requester->resolution != NULL) {
2170 resolution = s->dns_ctx.dns_requester->resolution;
Baptiste Assmann82c6aa52019-10-01 15:32:40 +02002171 if (resolution->step == RSLV_STEP_RUNNING) {
2172 return ACT_RET_YIELD;
2173 }
Baptiste Assmann333939c2019-01-21 08:34:50 +01002174 if (resolution->step == RSLV_STEP_NONE) {
2175 /* We update the variable only if we have a valid response. */
2176 if (resolution->status == RSLV_STATUS_VALID) {
2177 struct sample smp;
2178 short ip_sin_family = 0;
2179 void *ip = NULL;
2180
2181 dns_get_ip_from_response(&resolution->response, &rule->arg.dns.dns_opts, NULL,
2182 0, &ip, &ip_sin_family, NULL);
2183
2184 switch (ip_sin_family) {
2185 case AF_INET:
2186 smp.data.type = SMP_T_IPV4;
2187 memcpy(&smp.data.u.ipv4, ip, 4);
2188 break;
2189 case AF_INET6:
2190 smp.data.type = SMP_T_IPV6;
2191 memcpy(&smp.data.u.ipv6, ip, 16);
2192 break;
2193 default:
2194 ip = NULL;
2195 }
2196
2197 if (ip) {
2198 smp.px = px;
2199 smp.sess = sess;
2200 smp.strm = s;
2201
2202 vars_set_by_name(rule->arg.dns.varname, strlen(rule->arg.dns.varname), &smp);
2203 }
2204 }
2205 }
2206
2207 free(s->dns_ctx.hostname_dn); s->dns_ctx.hostname_dn = NULL;
2208 s->dns_ctx.hostname_dn_len = 0;
2209 dns_unlink_resolution(s->dns_ctx.dns_requester);
2210
2211 pool_free(dns_requester_pool, s->dns_ctx.dns_requester);
2212 s->dns_ctx.dns_requester = NULL;
2213
2214 return ACT_RET_CONT;
2215 }
2216
2217 /* need to configure and start a new DNS resolution */
Willy Tarreau85835ee2019-07-17 10:38:45 +02002218 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.dns.expr, SMP_T_STR);
2219 if (smp == NULL)
2220 return ACT_RET_CONT;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002221
Willy Tarreau85835ee2019-07-17 10:38:45 +02002222 fqdn = smp->data.u.str.area;
2223 if (action_prepare_for_resolution(s, fqdn) == -1)
2224 return ACT_RET_ERR;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002225
Willy Tarreau85835ee2019-07-17 10:38:45 +02002226 s->dns_ctx.parent = rule;
2227 dns_link_resolution(s, OBJ_TYPE_STREAM, 0);
Baptiste Assmann44af0d02019-10-30 16:06:53 +01002228
2229 /* Check if there is a fresh enough response in the cache of our associated resolution */
2230 req = s->dns_ctx.dns_requester;
2231 if (!req || !req->resolution) {
2232 dns_trigger_resolution(s->dns_ctx.dns_requester);
2233 return ACT_RET_YIELD;
2234 }
2235 res = req->resolution;
2236 resolvers = res->resolvers;
2237
2238 exp = tick_add(res->last_resolution, resolvers->hold.valid);
2239 if (resolvers->t && res->status == RSLV_STATUS_VALID && tick_isset(res->last_resolution)
2240 && !tick_is_expired(exp, now_ms)) {
2241 goto use_cache;
2242 }
2243
Willy Tarreau85835ee2019-07-17 10:38:45 +02002244 dns_trigger_resolution(s->dns_ctx.dns_requester);
Baptiste Assmann333939c2019-01-21 08:34:50 +01002245 return ACT_RET_YIELD;
2246}
2247
2248
2249/* parse "do-resolve" action
2250 * This action takes the following arguments:
2251 * do-resolve(<varName>,<resolversSectionName>,<resolvePrefer>) <expr>
2252 *
2253 * - <varName> is the variable name where the result of the DNS resolution will be stored
2254 * (mandatory)
2255 * - <resolversSectionName> is the name of the resolvers section to use to perform the resolution
2256 * (mandatory)
2257 * - <resolvePrefer> can be either 'ipv4' or 'ipv6' and is the IP family we would like to resolve first
2258 * (optional), defaults to ipv6
2259 * - <expr> is an HAProxy expression used to fetch the name to be resolved
2260 */
2261enum act_parse_ret dns_parse_do_resolve(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
2262{
2263 int cur_arg;
2264 struct sample_expr *expr;
2265 unsigned int where;
2266 const char *beg, *end;
2267
2268 /* orig_arg points to the first argument, but we need to analyse the command itself first */
2269 cur_arg = *orig_arg - 1;
2270
2271 /* locate varName, which is mandatory */
2272 beg = strchr(args[cur_arg], '(');
2273 if (beg == NULL)
2274 goto do_resolve_parse_error;
2275 beg = beg + 1; /* beg should points to the first character after opening parenthesis '(' */
2276 end = strchr(beg, ',');
2277 if (end == NULL)
2278 goto do_resolve_parse_error;
2279 rule->arg.dns.varname = my_strndup(beg, end - beg);
2280 if (rule->arg.dns.varname == NULL)
2281 goto do_resolve_parse_error;
2282
2283
2284 /* locate resolversSectionName, which is mandatory.
2285 * Since next parameters are optional, the delimiter may be comma ','
2286 * or closing parenthesis ')'
2287 */
2288 beg = end + 1;
2289 end = strchr(beg, ',');
2290 if (end == NULL)
2291 end = strchr(beg, ')');
2292 if (end == NULL)
2293 goto do_resolve_parse_error;
2294 rule->arg.dns.resolvers_id = my_strndup(beg, end - beg);
2295 if (rule->arg.dns.resolvers_id == NULL)
2296 goto do_resolve_parse_error;
2297
2298
2299 /* Default priority is ipv6 */
2300 rule->arg.dns.dns_opts.family_prio = AF_INET6;
2301
2302 /* optional arguments accepted for now:
2303 * ipv4 or ipv6
2304 */
2305 while (*end != ')') {
2306 beg = end + 1;
2307 end = strchr(beg, ',');
2308 if (end == NULL)
2309 end = strchr(beg, ')');
2310 if (end == NULL)
2311 goto do_resolve_parse_error;
2312
2313 if (strncmp(beg, "ipv4", end - beg) == 0) {
2314 rule->arg.dns.dns_opts.family_prio = AF_INET;
2315 }
2316 else if (strncmp(beg, "ipv6", end - beg) == 0) {
2317 rule->arg.dns.dns_opts.family_prio = AF_INET6;
2318 }
2319 else {
2320 goto do_resolve_parse_error;
2321 }
2322 }
2323
2324 cur_arg = cur_arg + 1;
2325
2326 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
2327 if (!expr)
2328 goto do_resolve_parse_error;
2329
2330
2331 where = 0;
2332 if (px->cap & PR_CAP_FE)
2333 where |= SMP_VAL_FE_HRQ_HDR;
2334 if (px->cap & PR_CAP_BE)
2335 where |= SMP_VAL_BE_HRQ_HDR;
2336
2337 if (!(expr->fetch->val & where)) {
2338 memprintf(err,
2339 "fetch method '%s' extracts information from '%s', none of which is available here",
2340 args[cur_arg-1], sample_src_names(expr->fetch->use));
2341 free(expr);
2342 return ACT_RET_PRS_ERR;
2343 }
2344 rule->arg.dns.expr = expr;
2345 rule->action = ACT_CUSTOM;
2346 rule->action_ptr = dns_action_do_resolve;
2347 *orig_arg = cur_arg;
2348
2349 rule->check_ptr = check_action_do_resolve;
2350
2351 return ACT_RET_PRS_OK;
2352
2353 do_resolve_parse_error:
2354 free(rule->arg.dns.varname); rule->arg.dns.varname = NULL;
2355 free(rule->arg.dns.resolvers_id); rule->arg.dns.resolvers_id = NULL;
2356 memprintf(err, "Can't parse '%s'. Expects 'do-resolve(<varname>,<resolvers>[,<options>]) <expr>'. Available options are 'ipv4' and 'ipv6'",
2357 args[cur_arg]);
2358 return ACT_RET_PRS_ERR;
2359}
2360
2361static struct action_kw_list http_req_kws = { { }, {
2362 { "do-resolve", dns_parse_do_resolve, 1 },
2363 { /* END */ }
2364}};
2365
2366INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_kws);
2367
2368static struct action_kw_list tcp_req_cont_actions = {ILH, {
2369 { "do-resolve", dns_parse_do_resolve, 1 },
2370 { /* END */ }
2371}};
2372
2373INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_cont_actions);
2374
2375/* Check an "http-request do-resolve" action.
2376 *
2377 * The function returns 1 in success case, otherwise, it returns 0 and err is
2378 * filled.
2379 */
2380int check_action_do_resolve(struct act_rule *rule, struct proxy *px, char **err)
2381{
2382 struct dns_resolvers *resolvers = NULL;
2383
2384 if (rule->arg.dns.resolvers_id == NULL) {
2385 memprintf(err,"Proxy '%s': %s", px->id, "do-resolve action without resolvers");
2386 return 0;
2387 }
2388
2389 resolvers = find_resolvers_by_id(rule->arg.dns.resolvers_id);
2390 if (resolvers == NULL) {
2391 memprintf(err,"Can't find resolvers section '%s' for do-resolve action", rule->arg.dns.resolvers_id);
2392 return 0;
2393 }
2394 rule->arg.dns.resolvers = resolvers;
2395
2396 return 1;
2397}
2398
Willy Tarreau172f5ce2018-11-26 11:21:50 +01002399REGISTER_POST_DEINIT(dns_deinit);
Willy Tarreaue6552512018-11-26 11:33:13 +01002400REGISTER_CONFIG_POSTPARSER("dns runtime resolver", dns_finalize_config);