blob: 6a8ab831c392c557d4c67f248ce8d22aa71e061a [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
Willy Tarreau122eba92020-06-04 10:15:32 +020022#include <haproxy/action.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020025#include <haproxy/channel.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau7c18b542020-06-11 09:23:02 +020028#include <haproxy/dgram.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020029#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020030#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/fd.h>
32#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020033#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020034#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020035#include <haproxy/net_helper.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020036#include <haproxy/proxy.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020037#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020038#include <haproxy/server.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020039#include <haproxy/stats-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020040#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020041#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020042#include <haproxy/tcp_rules.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020043#include <haproxy/ticks.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020044#include <haproxy/time.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020045#include <haproxy/vars.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020046
Baptiste Assmann325137d2015-04-13 23:40:55 +020047
Christopher Faulet67957bd2017-09-27 11:00:59 +020048struct list dns_resolvers = LIST_HEAD_INIT(dns_resolvers);
49struct list dns_srvrq_list = LIST_HEAD_INIT(dns_srvrq_list);
Baptiste Assmann325137d2015-04-13 23:40:55 +020050
Tim Duesterhusfcac33d2020-01-18 02:04:12 +010051static THREAD_LOCAL uint64_t dns_query_id_seed = 0; /* random seed */
Willy Tarreau8ceae722018-11-26 11:58:30 +010052
53DECLARE_STATIC_POOL(dns_answer_item_pool, "dns_answer_item", sizeof(struct dns_answer_item));
54DECLARE_STATIC_POOL(dns_resolution_pool, "dns_resolution", sizeof(struct dns_resolution));
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +010055DECLARE_POOL(dns_requester_pool, "dns_requester", sizeof(struct dns_requester));
Willy Tarreau8ceae722018-11-26 11:58:30 +010056
Christopher Faulet67957bd2017-09-27 11:00:59 +020057static unsigned int resolution_uuid = 1;
Baptiste Assmann333939c2019-01-21 08:34:50 +010058unsigned int dns_failed_resolutions = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020059
Christopher Faulet67957bd2017-09-27 11:00:59 +020060/* Returns a pointer to the resolvers matching the id <id>. NULL is returned if
61 * no match is found.
Baptiste Assmann325137d2015-04-13 23:40:55 +020062 */
Christopher Faulet67957bd2017-09-27 11:00:59 +020063struct dns_resolvers *find_resolvers_by_id(const char *id)
Baptiste Assmann201c07f2017-05-22 15:17:15 +020064{
Christopher Faulet67957bd2017-09-27 11:00:59 +020065 struct dns_resolvers *res;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020066
Christopher Faulet67957bd2017-09-27 11:00:59 +020067 list_for_each_entry(res, &dns_resolvers, list) {
68 if (!strcmp(res->id, id))
69 return res;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020070 }
Christopher Faulet67957bd2017-09-27 11:00:59 +020071 return NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020072}
73
Olivier Houchardb17b8842020-04-01 18:30:27 +020074/* Compare hostnames in a case-insensitive way .
75 * Returns 0 if they are the same, non-zero otherwise
76 */
77static __inline int dns_hostname_cmp(const char *name1, const char *name2, int len)
78{
79 int i;
80
81 for (i = 0; i < len; i++)
Willy Tarreauf278eec2020-07-05 21:46:32 +020082 if (tolower((unsigned char)name1[i]) != tolower((unsigned char)name2[i]))
Olivier Houchardb17b8842020-04-01 18:30:27 +020083 return -1;
84 return 0;
85}
86
Christopher Faulet67957bd2017-09-27 11:00:59 +020087/* Returns a pointer on the SRV request matching the name <name> for the proxy
88 * <px>. NULL is returned if no match is found.
Baptiste Assmann201c07f2017-05-22 15:17:15 +020089 */
Christopher Faulet67957bd2017-09-27 11:00:59 +020090struct dns_srvrq *find_srvrq_by_name(const char *name, struct proxy *px)
Baptiste Assmann201c07f2017-05-22 15:17:15 +020091{
Christopher Faulet67957bd2017-09-27 11:00:59 +020092 struct dns_srvrq *srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020093
Christopher Faulet67957bd2017-09-27 11:00:59 +020094 list_for_each_entry(srvrq, &dns_srvrq_list, list) {
95 if (srvrq->proxy == px && !strcmp(srvrq->name, name))
96 return srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020097 }
Christopher Faulet67957bd2017-09-27 11:00:59 +020098 return NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020099}
100
Christopher Faulet67957bd2017-09-27 11:00:59 +0200101/* Allocates a new SRVRQ for the given server with the name <fqdn>. It returns
102 * NULL if an error occurred. */
103struct dns_srvrq *new_dns_srvrq(struct server *srv, char *fqdn)
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200104{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200105 struct proxy *px = srv->proxy;
106 struct dns_srvrq *srvrq = NULL;
107 int fqdn_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200108
Christopher Faulet67957bd2017-09-27 11:00:59 +0200109 fqdn_len = strlen(fqdn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200110 hostname_dn_len = dns_str_to_dn_label(fqdn, fqdn_len + 1, trash.area,
111 trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200112 if (hostname_dn_len == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100113 ha_alert("config : %s '%s', server '%s': failed to parse FQDN '%s'\n",
114 proxy_type_str(px), px->id, srv->id, fqdn);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200115 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200116 }
117
Christopher Faulet67957bd2017-09-27 11:00:59 +0200118 if ((srvrq = calloc(1, sizeof(*srvrq))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100119 ha_alert("config : %s '%s', server '%s': out of memory\n",
120 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200121 goto err;
122 }
123 srvrq->obj_type = OBJ_TYPE_SRVRQ;
124 srvrq->proxy = px;
125 srvrq->name = strdup(fqdn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200126 srvrq->hostname_dn = strdup(trash.area);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200127 srvrq->hostname_dn_len = hostname_dn_len;
128 if (!srvrq->name || !srvrq->hostname_dn) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100129 ha_alert("config : %s '%s', server '%s': out of memory\n",
130 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200131 goto err;
132 }
133 LIST_ADDQ(&dns_srvrq_list, &srvrq->list);
134 return srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200135
Christopher Faulet67957bd2017-09-27 11:00:59 +0200136 err:
137 if (srvrq) {
138 free(srvrq->name);
139 free(srvrq->hostname_dn);
140 free(srvrq);
141 }
142 return NULL;
143}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200144
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200145
Christopher Faulet67957bd2017-09-27 11:00:59 +0200146/* 2 bytes random generator to generate DNS query ID */
147static inline uint16_t dns_rnd16(void)
148{
Christopher Fauletb2812a62017-10-04 16:17:58 +0200149 if (!dns_query_id_seed)
150 dns_query_id_seed = now_ms;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200151 dns_query_id_seed ^= dns_query_id_seed << 13;
152 dns_query_id_seed ^= dns_query_id_seed >> 7;
153 dns_query_id_seed ^= dns_query_id_seed << 17;
154 return dns_query_id_seed;
155}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200156
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200157
Christopher Faulet67957bd2017-09-27 11:00:59 +0200158static inline int dns_resolution_timeout(struct dns_resolution *res)
159{
Baptiste Assmannf50e1ac2019-11-07 11:02:18 +0100160 return res->resolvers->timeout.resolve;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200161}
162
Christopher Faulet67957bd2017-09-27 11:00:59 +0200163/* Updates a resolvers' task timeout for next wake up and queue it */
164static void dns_update_resolvers_timeout(struct dns_resolvers *resolvers)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200165{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200166 struct dns_resolution *res;
167 int next;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200168
Christopher Faulet67957bd2017-09-27 11:00:59 +0200169 next = tick_add(now_ms, resolvers->timeout.resolve);
170 if (!LIST_ISEMPTY(&resolvers->resolutions.curr)) {
171 res = LIST_NEXT(&resolvers->resolutions.curr, struct dns_resolution *, list);
172 next = MIN(next, tick_add(res->last_query, resolvers->timeout.retry));
173 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200174
Christopher Faulet67957bd2017-09-27 11:00:59 +0200175 list_for_each_entry(res, &resolvers->resolutions.wait, list)
176 next = MIN(next, tick_add(res->last_resolution, dns_resolution_timeout(res)));
Baptiste Assmann325137d2015-04-13 23:40:55 +0200177
Christopher Faulet67957bd2017-09-27 11:00:59 +0200178 resolvers->t->expire = next;
179 task_queue(resolvers->t);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200180}
181
Christopher Faulet67957bd2017-09-27 11:00:59 +0200182/* Opens an UDP socket on the namesaver's IP/Port, if required. Returns 0 on
183 * success, -1 otherwise.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200184 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200185static int dns_connect_namesaver(struct dns_nameserver *ns)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200186{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200187 struct dgram_conn *dgram = ns->dgram;
188 int fd;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200189
Christopher Faulet67957bd2017-09-27 11:00:59 +0200190 /* Already connected */
191 if (dgram->t.sock.fd != -1)
192 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200193
Christopher Faulet67957bd2017-09-27 11:00:59 +0200194 /* Create an UDP socket and connect it on the nameserver's IP/Port */
195 if ((fd = socket(ns->addr.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
196 send_log(NULL, LOG_WARNING,
197 "DNS : resolvers '%s': can't create socket for nameserver '%s'.\n",
198 ns->resolvers->id, ns->id);
199 return -1;
200 }
201 if (connect(fd, (struct sockaddr*)&ns->addr, get_addr_len(&ns->addr)) == -1) {
202 send_log(NULL, LOG_WARNING,
203 "DNS : resolvers '%s': can't connect socket for nameserver '%s'.\n",
204 ns->resolvers->id, ns->id);
205 close(fd);
206 return -1;
207 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200208
Christopher Faulet67957bd2017-09-27 11:00:59 +0200209 /* Make the socket non blocking */
210 fcntl(fd, F_SETFL, O_NONBLOCK);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200211
Christopher Faulet67957bd2017-09-27 11:00:59 +0200212 /* Add the fd in the fd list and update its parameters */
213 dgram->t.sock.fd = fd;
Willy Tarreaua9786b62018-01-25 07:22:13 +0100214 fd_insert(fd, dgram, dgram_fd_handler, MAX_THREADS_MASK);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200215 fd_want_recv(fd);
216 return 0;
217}
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200218
Christopher Faulet67957bd2017-09-27 11:00:59 +0200219/* Forges a DNS query. It needs the following information from the caller:
220 * - <query_id> : the DNS query id corresponding to this query
221 * - <query_type> : DNS_RTYPE_* request DNS record type (A, AAAA, ANY...)
222 * - <hostname_dn> : hostname in domain name format
223 * - <hostname_dn_len> : length of <hostname_dn>
224 *
225 * To store the query, the caller must pass a buffer <buf> and its size
226 * <bufsize>. It returns the number of written bytes in success, -1 if <buf> is
227 * too short.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200228 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200229static int dns_build_query(int query_id, int query_type, unsigned int accepted_payload_size,
230 char *hostname_dn, int hostname_dn_len, char *buf, int bufsize)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200231{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200232 struct dns_header dns_hdr;
233 struct dns_question qinfo;
234 struct dns_additional_record edns;
235 char *p = buf;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200236
Christopher Faulet67957bd2017-09-27 11:00:59 +0200237 if (sizeof(dns_hdr) + sizeof(qinfo) + sizeof(edns) + hostname_dn_len >= bufsize)
238 return -1;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200239
Christopher Faulet67957bd2017-09-27 11:00:59 +0200240 memset(buf, 0, bufsize);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200241
Christopher Faulet67957bd2017-09-27 11:00:59 +0200242 /* Set dns query headers */
243 dns_hdr.id = (unsigned short) htons(query_id);
244 dns_hdr.flags = htons(0x0100); /* qr=0, opcode=0, aa=0, tc=0, rd=1, ra=0, z=0, rcode=0 */
245 dns_hdr.qdcount = htons(1); /* 1 question */
246 dns_hdr.ancount = 0;
247 dns_hdr.nscount = 0;
248 dns_hdr.arcount = htons(1);
249 memcpy(p, &dns_hdr, sizeof(dns_hdr));
250 p += sizeof(dns_hdr);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200251
Christopher Faulet67957bd2017-09-27 11:00:59 +0200252 /* Set up query hostname */
253 memcpy(p, hostname_dn, hostname_dn_len);
254 p += hostname_dn_len;
255 *p++ = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200256
Christopher Faulet67957bd2017-09-27 11:00:59 +0200257 /* Set up query info (type and class) */
258 qinfo.qtype = htons(query_type);
259 qinfo.qclass = htons(DNS_RCLASS_IN);
260 memcpy(p, &qinfo, sizeof(qinfo));
261 p += sizeof(qinfo);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200262
Christopher Faulet67957bd2017-09-27 11:00:59 +0200263 /* Set the DNS extension */
264 edns.name = 0;
265 edns.type = htons(DNS_RTYPE_OPT);
266 edns.udp_payload_size = htons(accepted_payload_size);
267 edns.extension = 0;
268 edns.data_length = 0;
269 memcpy(p, &edns, sizeof(edns));
270 p += sizeof(edns);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200271
Christopher Faulet67957bd2017-09-27 11:00:59 +0200272 return (p - buf);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200273}
274
Christopher Faulet67957bd2017-09-27 11:00:59 +0200275/* Sends a DNS query to resolvers associated to a resolution. It returns 0 on
276 * success, -1 otherwise.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200277 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200278static int dns_send_query(struct dns_resolution *resolution)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200279{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200280 struct dns_resolvers *resolvers = resolution->resolvers;
281 struct dns_nameserver *ns;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100282 int len;
283
284 /* Update resolution */
285 resolution->nb_queries = 0;
286 resolution->nb_responses = 0;
287 resolution->last_query = now_ms;
288
289 len = dns_build_query(resolution->query_id, resolution->query_type,
290 resolvers->accepted_payload_size,
291 resolution->hostname_dn, resolution->hostname_dn_len,
292 trash.area, trash.size);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200293
Christopher Faulet67957bd2017-09-27 11:00:59 +0200294 list_for_each_entry(ns, &resolvers->nameservers, list) {
295 int fd = ns->dgram->t.sock.fd;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100296 int ret;
297
Christopher Faulet67957bd2017-09-27 11:00:59 +0200298 if (fd == -1) {
299 if (dns_connect_namesaver(ns) == -1)
300 continue;
301 fd = ns->dgram->t.sock.fd;
302 resolvers->nb_nameservers++;
303 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200304
Willy Tarreau0eae6322019-12-20 11:18:54 +0100305 if (len < 0)
306 goto snd_error;
307
308 ret = send(fd, trash.area, len, 0);
309 if (ret == len) {
310 ns->counters.sent++;
311 resolution->nb_queries++;
312 continue;
313 }
314
315 if (ret == -1 && errno == EAGAIN) {
316 /* retry once the socket is ready */
317 fd_cant_send(fd);
318 continue;
319 }
320
321 snd_error:
322 ns->counters.snd_error++;
323 resolution->nb_queries++;
324 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200325
Christopher Faulet67957bd2017-09-27 11:00:59 +0200326 /* Push the resolution at the end of the active list */
327 LIST_DEL(&resolution->list);
328 LIST_ADDQ(&resolvers->resolutions.curr, &resolution->list);
329 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200330}
331
Christopher Faulet67957bd2017-09-27 11:00:59 +0200332/* Prepares and sends a DNS resolution. It returns 1 if the query was sent, 0 if
333 * skipped and -1 if an error occurred.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200334 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200335static int
336dns_run_resolution(struct dns_resolution *resolution)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200337{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200338 struct dns_resolvers *resolvers = resolution->resolvers;
339 int query_id, i;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200340
Christopher Faulet67957bd2017-09-27 11:00:59 +0200341 /* Avoid sending requests for resolutions that don't yet have an
342 * hostname, ie resolutions linked to servers that do not yet have an
343 * fqdn */
344 if (!resolution->hostname_dn)
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200345 return 0;
346
Christopher Faulet67957bd2017-09-27 11:00:59 +0200347 /* Check if a resolution has already been started for this server return
348 * directly to avoid resolution pill up. */
349 if (resolution->step != RSLV_STEP_NONE)
350 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200351
Christopher Faulet67957bd2017-09-27 11:00:59 +0200352 /* Generates a new query id. We try at most 100 times to find a free
353 * query id */
354 for (i = 0; i < 100; ++i) {
355 query_id = dns_rnd16();
356 if (!eb32_lookup(&resolvers->query_ids, query_id))
Olivier Houchard8da5f982017-08-04 18:35:36 +0200357 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200358 query_id = -1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200359 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200360 if (query_id == -1) {
361 send_log(NULL, LOG_NOTICE,
362 "could not generate a query id for %s, in resolvers %s.\n",
363 resolution->hostname_dn, resolvers->id);
364 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200365 }
366
Christopher Faulet67957bd2017-09-27 11:00:59 +0200367 /* Update resolution parameters */
368 resolution->query_id = query_id;
369 resolution->qid.key = query_id;
370 resolution->step = RSLV_STEP_RUNNING;
371 resolution->query_type = resolution->prefered_query_type;
372 resolution->try = resolvers->resolve_retries;
373 eb32_insert(&resolvers->query_ids, &resolution->qid);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200374
Christopher Faulet67957bd2017-09-27 11:00:59 +0200375 /* Send the DNS query */
376 resolution->try -= 1;
377 dns_send_query(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200378 return 1;
379}
380
Christopher Faulet67957bd2017-09-27 11:00:59 +0200381/* Performs a name resolution for the requester <req> */
382void dns_trigger_resolution(struct dns_requester *req)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200383{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200384 struct dns_resolvers *resolvers;
385 struct dns_resolution *res;
386 int exp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200387
Christopher Faulet67957bd2017-09-27 11:00:59 +0200388 if (!req || !req->resolution)
389 return;
390 res = req->resolution;
391 resolvers = res->resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200392
Christopher Faulet67957bd2017-09-27 11:00:59 +0200393 /* The resolution must not be triggered yet. Use the cached response, if
394 * valid */
395 exp = tick_add(res->last_resolution, resolvers->hold.valid);
Olivier Houchardf3d9e602018-05-22 18:40:07 +0200396 if (resolvers->t && (res->status != RSLV_STATUS_VALID ||
397 !tick_isset(res->last_resolution) || tick_is_expired(exp, now_ms)))
398 task_wakeup(resolvers->t, TASK_WOKEN_OTHER);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200399}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200400
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200401
Christopher Faulet67957bd2017-09-27 11:00:59 +0200402/* Resets some resolution parameters to initial values and also delete the query
403 * ID from the resolver's tree.
404 */
405static void dns_reset_resolution(struct dns_resolution *resolution)
406{
407 /* update resolution status */
408 resolution->step = RSLV_STEP_NONE;
409 resolution->try = 0;
410 resolution->last_resolution = now_ms;
411 resolution->nb_queries = 0;
412 resolution->nb_responses = 0;
413 resolution->query_type = resolution->prefered_query_type;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200414
Christopher Faulet67957bd2017-09-27 11:00:59 +0200415 /* clean up query id */
416 eb32_delete(&resolution->qid);
417 resolution->query_id = 0;
418 resolution->qid.key = 0;
419}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200420
Christopher Faulet67957bd2017-09-27 11:00:59 +0200421/* Returns the query id contained in a DNS response */
422static inline unsigned short dns_response_get_query_id(unsigned char *resp)
423{
424 return resp[0] * 256 + resp[1];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200425}
426
Christopher Faulet67957bd2017-09-27 11:00:59 +0200427
428/* Analyses, re-builds and copies the name <name> from the DNS response packet
429 * <buffer>. <name> must point to the 'data_len' information or pointer 'c0'
430 * for compressed data. The result is copied into <dest>, ensuring we don't
431 * overflow using <dest_len> Returns the number of bytes the caller can move
432 * forward. If 0 it means an error occurred while parsing the name. <offset> is
433 * the number of bytes the caller could move forward.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200434 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200435int dns_read_name(unsigned char *buffer, unsigned char *bufend,
436 unsigned char *name, char *destination, int dest_len,
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100437 int *offset, unsigned int depth)
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200438{
439 int nb_bytes = 0, n = 0;
440 int label_len;
441 unsigned char *reader = name;
442 char *dest = destination;
443
444 while (1) {
Remi Gacogne2d19fbc2018-12-05 17:55:10 +0100445 if (reader >= bufend)
446 goto err;
447
Christopher Faulet67957bd2017-09-27 11:00:59 +0200448 /* Name compression is in use */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200449 if ((*reader & 0xc0) == 0xc0) {
Remi Gacogne2d19fbc2018-12-05 17:55:10 +0100450 if (reader + 1 >= bufend)
451 goto err;
452
Christopher Faulet67957bd2017-09-27 11:00:59 +0200453 /* Must point BEFORE current position */
454 if ((buffer + reader[1]) > reader)
455 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200456
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100457 if (depth++ > 100)
458 goto err;
459
Nikhil Agrawal2fa66c32018-12-20 10:50:59 +0530460 n = dns_read_name(buffer, bufend, buffer + (*reader & 0x3f)*256 + reader[1],
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100461 dest, dest_len - nb_bytes, offset, depth);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200462 if (n == 0)
Christopher Faulet67957bd2017-09-27 11:00:59 +0200463 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200464
Christopher Faulet67957bd2017-09-27 11:00:59 +0200465 dest += n;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200466 nb_bytes += n;
467 goto out;
468 }
469
470 label_len = *reader;
471 if (label_len == 0)
472 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200473
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200474 /* Check if:
475 * - we won't read outside the buffer
476 * - there is enough place in the destination
477 */
478 if ((reader + label_len >= bufend) || (nb_bytes + label_len >= dest_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +0200479 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200480
481 /* +1 to take label len + label string */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200482 label_len++;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200483
484 memcpy(dest, reader, label_len);
485
Christopher Faulet67957bd2017-09-27 11:00:59 +0200486 dest += label_len;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200487 nb_bytes += label_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200488 reader += label_len;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200489 }
490
Christopher Faulet67957bd2017-09-27 11:00:59 +0200491 out:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200492 /* offset computation:
493 * parse from <name> until finding either NULL or a pointer "c0xx"
494 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200495 reader = name;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200496 *offset = 0;
497 while (reader < bufend) {
498 if ((reader[0] & 0xc0) == 0xc0) {
499 *offset += 2;
500 break;
501 }
502 else if (*reader == 0) {
503 *offset += 1;
504 break;
505 }
506 *offset += 1;
507 ++reader;
508 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200509 return nb_bytes;
510
Christopher Faulet67957bd2017-09-27 11:00:59 +0200511 err:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200512 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200513}
514
Christopher Faulet67957bd2017-09-27 11:00:59 +0200515/* Checks for any obsolete record, also identify any SRV request, and try to
516 * find a corresponding server.
517*/
518static void dns_check_dns_response(struct dns_resolution *res)
519{
520 struct dns_resolvers *resolvers = res->resolvers;
521 struct dns_requester *req, *reqback;
522 struct dns_answer_item *item, *itemback;
523 struct server *srv;
524 struct dns_srvrq *srvrq;
525
Baptiste Assmann13a92322019-06-07 09:40:55 +0200526 /* clean up obsolete Additional records */
527 list_for_each_entry_safe(item, itemback, &res->response.ar_list, list) {
528 if ((item->last_seen + resolvers->hold.obsolete / 1000) < now.tv_sec) {
529 LIST_DEL(&item->list);
530 pool_free(dns_answer_item_pool, item);
531 }
532 }
533
Christopher Faulet67957bd2017-09-27 11:00:59 +0200534 list_for_each_entry_safe(item, itemback, &res->response.answer_list, list) {
535
536 /* Remove obsolete items */
537 if ((item->last_seen + resolvers->hold.obsolete / 1000) < now.tv_sec) {
538 if (item->type != DNS_RTYPE_SRV)
539 goto rm_obselete_item;
540
541 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
542 if ((srvrq = objt_dns_srvrq(req->owner)) == NULL)
543 continue;
544
545 /* Remove any associated server */
546 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100547 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200548 if (srv->srvrq == srvrq && srv->svc_port == item->port &&
549 item->data_len == srv->hostname_dn_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +0200550 !dns_hostname_cmp(srv->hostname_dn, item->target, item->data_len)) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200551 snr_update_srv_status(srv, 1);
552 free(srv->hostname);
553 free(srv->hostname_dn);
554 srv->hostname = NULL;
555 srv->hostname_dn = NULL;
556 srv->hostname_dn_len = 0;
557 dns_unlink_resolution(srv->dns_requester);
558 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100559 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200560 }
561 }
562
563 rm_obselete_item:
564 LIST_DEL(&item->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100565 pool_free(dns_answer_item_pool, item);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200566 continue;
567 }
568
569 if (item->type != DNS_RTYPE_SRV)
570 continue;
571
572 /* Now process SRV records */
573 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
574 if ((srvrq = objt_dns_srvrq(req->owner)) == NULL)
575 continue;
576
577 /* Check if a server already uses that hostname */
578 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100579 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200580 if (srv->srvrq == srvrq && srv->svc_port == item->port &&
581 item->data_len == srv->hostname_dn_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +0200582 !dns_hostname_cmp(srv->hostname_dn, item->target, item->data_len) &&
Daniel Corbettf8716912019-11-17 09:48:56 -0500583 !srv->dns_opts.ignore_weight) {
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100584 int ha_weight;
585
Baptiste Assmann25e6fc22019-10-21 15:13:48 +0200586 /* DNS weight range if from 0 to 65535
587 * HAProxy weight is from 0 to 256
588 * The rule below ensures that weight 0 is well respected
589 * while allowing a "mapping" from DNS weight into HAProxy's one.
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100590 */
Baptiste Assmann25e6fc22019-10-21 15:13:48 +0200591 ha_weight = (item->weight + 255) / 256;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100592 if (srv->uweight != ha_weight) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200593 char weight[9];
594
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100595 snprintf(weight, sizeof(weight), "%d", ha_weight);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200596 server_parse_weight_change_request(srv, weight);
597 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100598 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200599 break;
600 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100601 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200602 }
603 if (srv)
604 continue;
605
606 /* If not, try to find a server with undefined hostname */
607 for (srv = srvrq->proxy->srv; srv != NULL; srv = srv->next) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100608 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200609 if (srv->srvrq == srvrq && !srv->hostname_dn)
610 break;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100611 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200612 }
613 /* And update this server, if found */
614 if (srv) {
615 const char *msg = NULL;
616 char weight[9];
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100617 int ha_weight;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200618 char hostname[DNS_MAX_NAME_SIZE];
619
620 if (dns_dn_label_to_str(item->target, item->data_len+1,
Olivier Houchard55dcdf42017-11-06 15:15:04 +0100621 hostname, DNS_MAX_NAME_SIZE) == -1) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100622 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200623 continue;
Olivier Houchard55dcdf42017-11-06 15:15:04 +0100624 }
Baptiste Assmann13a92322019-06-07 09:40:55 +0200625
626 /* Check if an Additional Record is associated to this SRV record.
627 * Perform some sanity checks too to ensure the record can be used.
628 * If all fine, we simply pick up the IP address found and associate
629 * it to the server.
630 */
631 if ((item->ar_item != NULL) &&
632 (item->ar_item->type == DNS_RTYPE_A || item->ar_item->type == DNS_RTYPE_AAAA))
633 {
634
635 switch (item->ar_item->type) {
636 case DNS_RTYPE_A:
637 update_server_addr(srv, &(((struct sockaddr_in*)&item->ar_item->address)->sin_addr), AF_INET, "DNS additional recrd");
638 break;
639 case DNS_RTYPE_AAAA:
640 update_server_addr(srv, &(((struct sockaddr_in6*)&item->ar_item->address)->sin6_addr), AF_INET6, "DNS additional recrd");
641 break;
642 }
643
644 srv->flags |= SRV_F_NO_RESOLUTION;
645 }
646
Olivier Houchardd16bfe62017-10-31 15:21:19 +0100647 msg = update_server_fqdn(srv, hostname, "SRV record", 1);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200648 if (msg)
649 send_log(srv->proxy, LOG_NOTICE, "%s", msg);
650
651 srv->svc_port = item->port;
652 srv->flags &= ~SRV_F_MAPPORTS;
653 if ((srv->check.state & CHK_ST_CONFIGURED) &&
654 !(srv->flags & SRV_F_CHECKPORT))
655 srv->check.port = item->port;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100656
Daniel Corbettf8716912019-11-17 09:48:56 -0500657 if (!srv->dns_opts.ignore_weight) {
658 /* DNS weight range if from 0 to 65535
659 * HAProxy weight is from 0 to 256
660 * The rule below ensures that weight 0 is well respected
661 * while allowing a "mapping" from DNS weight into HAProxy's one.
662 */
663 ha_weight = (item->weight + 255) / 256;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100664
Daniel Corbettf8716912019-11-17 09:48:56 -0500665 snprintf(weight, sizeof(weight), "%d", ha_weight);
666 server_parse_weight_change_request(srv, weight);
667 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100668 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200669 }
670 }
671 }
672}
673
674/* Validates that the buffer DNS response provided in <resp> and finishing
675 * before <bufend> is valid from a DNS protocol point of view.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200676 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200677 * The result is stored in <resolution>' response, buf_response,
678 * response_query_records and response_answer_records members.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200679 *
680 * This function returns one of the DNS_RESP_* code to indicate the type of
681 * error found.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200682 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200683static int dns_validate_dns_response(unsigned char *resp, unsigned char *bufend,
684 struct dns_resolution *resolution, int max_answer_records)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200685{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200686 unsigned char *reader;
687 char *previous_dname, tmpname[DNS_MAX_NAME_SIZE];
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200688 int len, flags, offset;
689 int dns_query_record_id;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200690 int nb_saved_records;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200691 struct dns_query_item *dns_query;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200692 struct dns_answer_item *dns_answer_record, *tmp_record;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200693 struct dns_response_packet *dns_p;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200694 int i, found = 0;
Willy Tarreau963f7012020-07-22 17:00:45 +0200695 int cause = DNS_RESP_ERROR;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200696
Christopher Faulet67957bd2017-09-27 11:00:59 +0200697 reader = resp;
698 len = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200699 previous_dname = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200700 dns_query = NULL;
Willy Tarreau963f7012020-07-22 17:00:45 +0200701 dns_answer_record = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200702
Christopher Faulet67957bd2017-09-27 11:00:59 +0200703 /* Initialization of response buffer and structure */
Baptiste Assmann729c9012017-05-22 15:13:10 +0200704 dns_p = &resolution->response;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200705
706 /* query id */
707 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200708 goto invalid_resp;
709
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200710 dns_p->header.id = reader[0] * 256 + reader[1];
711 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200712
Christopher Faulet67957bd2017-09-27 11:00:59 +0200713 /* Flags and rcode are stored over 2 bytes
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200714 * First byte contains:
715 * - response flag (1 bit)
716 * - opcode (4 bits)
717 * - authoritative (1 bit)
718 * - truncated (1 bit)
719 * - recursion desired (1 bit)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200720 */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200721 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200722 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200723
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200724 flags = reader[0] * 256 + reader[1];
725
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200726 if ((flags & DNS_FLAG_REPLYCODE) != DNS_RCODE_NO_ERROR) {
Willy Tarreau963f7012020-07-22 17:00:45 +0200727 if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_NX_DOMAIN) {
728 cause = DNS_RESP_NX_DOMAIN;
729 goto return_error;
730 }
731 else if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_REFUSED) {
732 cause = DNS_RESP_REFUSED;
733 goto return_error;
734 }
735 else {
736 cause = DNS_RESP_ERROR;
737 goto return_error;
738 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200739 }
740
Christopher Faulet67957bd2017-09-27 11:00:59 +0200741 /* Move forward 2 bytes for flags */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200742 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200743
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200744 /* 2 bytes for question count */
745 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200746 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200747 dns_p->header.qdcount = reader[0] * 256 + reader[1];
Christopher Faulet67957bd2017-09-27 11:00:59 +0200748 /* (for now) we send one query only, so we expect only one in the
749 * response too */
Willy Tarreau963f7012020-07-22 17:00:45 +0200750 if (dns_p->header.qdcount != 1) {
751 cause = DNS_RESP_QUERY_COUNT_ERROR;
752 goto return_error;
753 }
754
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200755 if (dns_p->header.qdcount > DNS_MAX_QUERY_RECORDS)
Willy Tarreau963f7012020-07-22 17:00:45 +0200756 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200757 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200758
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200759 /* 2 bytes for answer count */
760 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200761 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200762 dns_p->header.ancount = reader[0] * 256 + reader[1];
Willy Tarreau963f7012020-07-22 17:00:45 +0200763 if (dns_p->header.ancount == 0) {
764 cause = DNS_RESP_ANCOUNT_ZERO;
765 goto return_error;
766 }
767
Christopher Faulet67957bd2017-09-27 11:00:59 +0200768 /* Check if too many records are announced */
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200769 if (dns_p->header.ancount > max_answer_records)
Willy Tarreau963f7012020-07-22 17:00:45 +0200770 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200771 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200772
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200773 /* 2 bytes authority count */
774 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200775 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200776 dns_p->header.nscount = reader[0] * 256 + reader[1];
777 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200778
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200779 /* 2 bytes additional count */
780 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200781 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200782 dns_p->header.arcount = reader[0] * 256 + reader[1];
783 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200784
Christopher Faulet67957bd2017-09-27 11:00:59 +0200785 /* Parsing dns queries */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200786 LIST_INIT(&dns_p->query_list);
787 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 +0200788 /* Use next pre-allocated dns_query_item after ensuring there is
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200789 * still one available.
Christopher Faulet67957bd2017-09-27 11:00:59 +0200790 * It's then added to our packet query list. */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200791 if (dns_query_record_id > DNS_MAX_QUERY_RECORDS)
Willy Tarreau963f7012020-07-22 17:00:45 +0200792 goto invalid_resp;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200793 dns_query = &resolution->response_query_records[dns_query_record_id];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200794 LIST_ADDQ(&dns_p->query_list, &dns_query->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200795
Christopher Faulet67957bd2017-09-27 11:00:59 +0200796 /* Name is a NULL terminated string in our case, since we have
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200797 * one query per response and the first one can't be compressed
Christopher Faulet67957bd2017-09-27 11:00:59 +0200798 * (using the 0x0c format) */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200799 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100800 len = dns_read_name(resp, bufend, reader, dns_query->name, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200801
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200802 if (len == 0)
Willy Tarreau963f7012020-07-22 17:00:45 +0200803 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200804
805 reader += offset;
806 previous_dname = dns_query->name;
807
808 /* move forward 2 bytes for question type */
809 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200810 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200811 dns_query->type = reader[0] * 256 + reader[1];
812 reader += 2;
813
814 /* move forward 2 bytes for question class */
815 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200816 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200817 dns_query->class = reader[0] * 256 + reader[1];
818 reader += 2;
819 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200820
Baptiste Assmann251abb92017-08-11 09:58:27 +0200821 /* TRUNCATED flag must be checked after we could read the query type
Christopher Faulet67957bd2017-09-27 11:00:59 +0200822 * because a TRUNCATED SRV query type response can still be exploited */
Willy Tarreau963f7012020-07-22 17:00:45 +0200823 if (dns_query->type != DNS_RTYPE_SRV && flags & DNS_FLAG_TRUNCATED) {
824 cause = DNS_RESP_TRUNCATED;
825 goto return_error;
826 }
Baptiste Assmann251abb92017-08-11 09:58:27 +0200827
Baptiste Assmann325137d2015-04-13 23:40:55 +0200828 /* now parsing response records */
Baptiste Assmann69fce672017-05-04 08:37:45 +0200829 nb_saved_records = 0;
Olivier Houchard8da5f982017-08-04 18:35:36 +0200830 for (i = 0; i < dns_p->header.ancount; i++) {
Baptiste Assmann325137d2015-04-13 23:40:55 +0200831 if (reader >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200832 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200833
Willy Tarreaubafbe012017-11-24 17:34:44 +0100834 dns_answer_record = pool_alloc(dns_answer_item_pool);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200835 if (dns_answer_record == NULL)
Willy Tarreau963f7012020-07-22 17:00:45 +0200836 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200837
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200838 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100839 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200840
Willy Tarreau963f7012020-07-22 17:00:45 +0200841 if (len == 0)
842 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200843
Christopher Faulet67957bd2017-09-27 11:00:59 +0200844 /* Check if the current record dname is valid. previous_dname
845 * points either to queried dname or last CNAME target */
Olivier Houchardb17b8842020-04-01 18:30:27 +0200846 if (dns_query->type != DNS_RTYPE_SRV && dns_hostname_cmp(previous_dname, tmpname, len) != 0) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200847 if (i == 0) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200848 /* First record, means a mismatch issue between
849 * queried dname and dname found in the first
850 * record */
Willy Tarreau963f7012020-07-22 17:00:45 +0200851 goto invalid_resp;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200852 }
853 else {
854 /* If not the first record, this means we have a
Willy Tarreau963f7012020-07-22 17:00:45 +0200855 * CNAME resolution error.
856 */
857 cause = DNS_RESP_CNAME_ERROR;
858 goto return_error;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200859 }
860
Baptiste Assmann325137d2015-04-13 23:40:55 +0200861 }
862
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200863 memcpy(dns_answer_record->name, tmpname, len);
864 dns_answer_record->name[len] = 0;
Baptiste Assmann2359ff12015-08-07 11:24:05 +0200865
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200866 reader += offset;
Willy Tarreau963f7012020-07-22 17:00:45 +0200867 if (reader >= bufend)
868 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200869
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200870 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
Willy Tarreau963f7012020-07-22 17:00:45 +0200871 if (reader + 2 > bufend)
872 goto invalid_resp;
873
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200874 dns_answer_record->type = reader[0] * 256 + reader[1];
875 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200876
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200877 /* 2 bytes for class (2) */
Willy Tarreau963f7012020-07-22 17:00:45 +0200878 if (reader + 2 > bufend)
879 goto invalid_resp;
880
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200881 dns_answer_record->class = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +0200882 reader += 2;
883
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200884 /* 4 bytes for ttl (4) */
Willy Tarreau963f7012020-07-22 17:00:45 +0200885 if (reader + 4 > bufend)
886 goto invalid_resp;
887
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200888 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
889 + reader[2] * 256 + reader[3];
890 reader += 4;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200891
Christopher Faulet67957bd2017-09-27 11:00:59 +0200892 /* Now reading data len */
Willy Tarreau963f7012020-07-22 17:00:45 +0200893 if (reader + 2 > bufend)
894 goto invalid_resp;
895
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200896 dns_answer_record->data_len = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +0200897
Christopher Faulet67957bd2017-09-27 11:00:59 +0200898 /* Move forward 2 bytes for data len */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200899 reader += 2;
900
Willy Tarreau963f7012020-07-22 17:00:45 +0200901 if (reader + dns_answer_record->data_len > bufend)
902 goto invalid_resp;
Remi Gacogneefbbdf72018-12-05 17:56:29 +0100903
Christopher Faulet67957bd2017-09-27 11:00:59 +0200904 /* Analyzing record content */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200905 switch (dns_answer_record->type) {
Baptiste Assmann325137d2015-04-13 23:40:55 +0200906 case DNS_RTYPE_A:
907 /* ipv4 is stored on 4 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +0200908 if (dns_answer_record->data_len != 4)
909 goto invalid_resp;
910
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200911 dns_answer_record->address.sa_family = AF_INET;
912 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
913 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200914 break;
915
916 case DNS_RTYPE_CNAME:
Christopher Faulet67957bd2017-09-27 11:00:59 +0200917 /* Check if this is the last record and update the caller about the status:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200918 * no IP could be found and last record was a CNAME. Could be triggered
919 * by a wrong query type
920 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200921 * + 1 because dns_answer_record_id starts at 0
922 * while number of answers is an integer and
923 * starts at 1.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200924 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200925 if (i + 1 == dns_p->header.ancount) {
Willy Tarreau963f7012020-07-22 17:00:45 +0200926 cause = DNS_RESP_CNAME_ERROR;
927 goto return_error;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200928 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200929
930 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100931 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Willy Tarreau963f7012020-07-22 17:00:45 +0200932 if (len == 0)
933 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200934
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200935 memcpy(dns_answer_record->target, tmpname, len);
936 dns_answer_record->target[len] = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200937 previous_dname = dns_answer_record->target;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200938 break;
939
Olivier Houchard8da5f982017-08-04 18:35:36 +0200940
941 case DNS_RTYPE_SRV:
Christopher Faulet67957bd2017-09-27 11:00:59 +0200942 /* Answer must contain :
Olivier Houchard8da5f982017-08-04 18:35:36 +0200943 * - 2 bytes for the priority
944 * - 2 bytes for the weight
945 * - 2 bytes for the port
946 * - the target hostname
947 */
Willy Tarreau963f7012020-07-22 17:00:45 +0200948 if (dns_answer_record->data_len <= 6)
949 goto invalid_resp;
950
Willy Tarreaud5370e12017-09-19 14:59:52 +0200951 dns_answer_record->priority = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200952 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +0200953 dns_answer_record->weight = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200954 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +0200955 dns_answer_record->port = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200956 reader += sizeof(uint16_t);
957 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100958 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Willy Tarreau963f7012020-07-22 17:00:45 +0200959 if (len == 0)
960 goto invalid_resp;
961
Olivier Houchard8da5f982017-08-04 18:35:36 +0200962 dns_answer_record->data_len = len;
963 memcpy(dns_answer_record->target, tmpname, len);
964 dns_answer_record->target[len] = 0;
965 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200966
Baptiste Assmann325137d2015-04-13 23:40:55 +0200967 case DNS_RTYPE_AAAA:
968 /* ipv6 is stored on 16 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +0200969 if (dns_answer_record->data_len != 16)
970 goto invalid_resp;
971
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200972 dns_answer_record->address.sa_family = AF_INET6;
973 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
974 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200975 break;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200976
Baptiste Assmann325137d2015-04-13 23:40:55 +0200977 } /* switch (record type) */
978
Christopher Faulet67957bd2017-09-27 11:00:59 +0200979 /* Increment the counter for number of records saved into our
980 * local response */
981 nb_saved_records++;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200982
Christopher Faulet67957bd2017-09-27 11:00:59 +0200983 /* Move forward dns_answer_record->data_len for analyzing next
984 * record in the response */
985 reader += ((dns_answer_record->type == DNS_RTYPE_SRV)
986 ? offset
987 : dns_answer_record->data_len);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200988
989 /* Lookup to see if we already had this entry */
Olivier Houchard8da5f982017-08-04 18:35:36 +0200990 found = 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200991 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
992 if (tmp_record->type != dns_answer_record->type)
993 continue;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200994
995 switch(tmp_record->type) {
996 case DNS_RTYPE_A:
997 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
998 &((struct sockaddr_in *)&tmp_record->address)->sin_addr,
999 sizeof(in_addr_t)))
1000 found = 1;
1001 break;
1002
1003 case DNS_RTYPE_AAAA:
1004 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
1005 &((struct sockaddr_in6 *)&tmp_record->address)->sin6_addr,
1006 sizeof(struct in6_addr)))
1007 found = 1;
1008 break;
1009
Olivier Houchard8da5f982017-08-04 18:35:36 +02001010 case DNS_RTYPE_SRV:
1011 if (dns_answer_record->data_len == tmp_record->data_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001012 !dns_hostname_cmp(dns_answer_record->target, tmp_record->target, dns_answer_record->data_len) &&
Olivier Houchard8da5f982017-08-04 18:35:36 +02001013 dns_answer_record->port == tmp_record->port) {
1014 tmp_record->weight = dns_answer_record->weight;
1015 found = 1;
1016 }
1017 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001018
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001019 default:
1020 break;
1021 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001022
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001023 if (found == 1)
1024 break;
1025 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001026
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001027 if (found == 1) {
1028 tmp_record->last_seen = now.tv_sec;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001029 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001030 dns_answer_record = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001031 }
1032 else {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001033 dns_answer_record->last_seen = now.tv_sec;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001034 dns_answer_record->ar_item = NULL;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001035 LIST_ADDQ(&dns_p->answer_list, &dns_answer_record->list);
Willy Tarreau963f7012020-07-22 17:00:45 +02001036 dns_answer_record = NULL;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001037 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001038 } /* for i 0 to ancount */
1039
Christopher Faulet67957bd2017-09-27 11:00:59 +02001040 /* Save the number of records we really own */
Baptiste Assmann69fce672017-05-04 08:37:45 +02001041 dns_p->header.ancount = nb_saved_records;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001042
Baptiste Assmann37950c82020-02-19 01:08:51 +01001043 /* now parsing additional records for SRV queries only */
1044 if (dns_query->type != DNS_RTYPE_SRV)
1045 goto skip_parsing_additional_records;
Willy Tarreau963f7012020-07-22 17:00:45 +02001046
Baptiste Assmann13a92322019-06-07 09:40:55 +02001047 nb_saved_records = 0;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001048 for (i = 0; i < dns_p->header.arcount; i++) {
1049 if (reader >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +02001050 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001051
1052 dns_answer_record = pool_alloc(dns_answer_item_pool);
1053 if (dns_answer_record == NULL)
Willy Tarreau963f7012020-07-22 17:00:45 +02001054 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001055
1056 offset = 0;
1057 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
1058
1059 if (len == 0) {
1060 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001061 dns_answer_record = NULL;
Baptiste Assmann37950c82020-02-19 01:08:51 +01001062 continue;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001063 }
1064
1065 memcpy(dns_answer_record->name, tmpname, len);
1066 dns_answer_record->name[len] = 0;
1067
1068 reader += offset;
Willy Tarreau963f7012020-07-22 17:00:45 +02001069 if (reader >= bufend)
1070 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001071
1072 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001073 if (reader + 2 > bufend)
1074 goto invalid_resp;
1075
Baptiste Assmann13a92322019-06-07 09:40:55 +02001076 dns_answer_record->type = reader[0] * 256 + reader[1];
1077 reader += 2;
1078
1079 /* 2 bytes for class (2) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001080 if (reader + 2 > bufend)
1081 goto invalid_resp;
1082
Baptiste Assmann13a92322019-06-07 09:40:55 +02001083 dns_answer_record->class = reader[0] * 256 + reader[1];
1084 reader += 2;
1085
1086 /* 4 bytes for ttl (4) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001087 if (reader + 4 > bufend)
1088 goto invalid_resp;
1089
Baptiste Assmann13a92322019-06-07 09:40:55 +02001090 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
1091 + reader[2] * 256 + reader[3];
1092 reader += 4;
1093
1094 /* Now reading data len */
Willy Tarreau963f7012020-07-22 17:00:45 +02001095 if (reader + 2 > bufend)
1096 goto invalid_resp;
1097
Baptiste Assmann13a92322019-06-07 09:40:55 +02001098 dns_answer_record->data_len = reader[0] * 256 + reader[1];
1099
1100 /* Move forward 2 bytes for data len */
1101 reader += 2;
1102
Willy Tarreau963f7012020-07-22 17:00:45 +02001103 if (reader + dns_answer_record->data_len > bufend)
1104 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001105
1106 /* Analyzing record content */
1107 switch (dns_answer_record->type) {
1108 case DNS_RTYPE_A:
1109 /* ipv4 is stored on 4 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +02001110 if (dns_answer_record->data_len != 4)
1111 goto invalid_resp;
1112
Baptiste Assmann13a92322019-06-07 09:40:55 +02001113 dns_answer_record->address.sa_family = AF_INET;
1114 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
1115 reader, dns_answer_record->data_len);
1116 break;
1117
1118 case DNS_RTYPE_AAAA:
1119 /* ipv6 is stored on 16 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +02001120 if (dns_answer_record->data_len != 16)
1121 goto invalid_resp;
1122
Baptiste Assmann13a92322019-06-07 09:40:55 +02001123 dns_answer_record->address.sa_family = AF_INET6;
1124 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
1125 reader, dns_answer_record->data_len);
1126 break;
1127
1128 default:
1129 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001130 dns_answer_record = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001131 continue;
1132
1133 } /* switch (record type) */
1134
1135 /* Increment the counter for number of records saved into our
1136 * local response */
1137 nb_saved_records++;
1138
1139 /* Move forward dns_answer_record->data_len for analyzing next
1140 * record in the response */
1141 reader += ((dns_answer_record->type == DNS_RTYPE_SRV)
1142 ? offset
1143 : dns_answer_record->data_len);
1144
1145 /* Lookup to see if we already had this entry */
1146 found = 0;
1147 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
1148 if (tmp_record->type != dns_answer_record->type)
1149 continue;
1150
1151 switch(tmp_record->type) {
1152 case DNS_RTYPE_A:
1153 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
1154 &((struct sockaddr_in *)&tmp_record->address)->sin_addr,
1155 sizeof(in_addr_t)))
1156 found = 1;
1157 break;
1158
1159 case DNS_RTYPE_AAAA:
1160 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
1161 &((struct sockaddr_in6 *)&tmp_record->address)->sin6_addr,
1162 sizeof(struct in6_addr)))
1163 found = 1;
1164 break;
1165
1166 default:
1167 break;
1168 }
1169
1170 if (found == 1)
1171 break;
1172 }
1173
1174 if (found == 1) {
1175 tmp_record->last_seen = now.tv_sec;
1176 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001177 dns_answer_record = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001178 }
1179 else {
1180 dns_answer_record->last_seen = now.tv_sec;
1181 dns_answer_record->ar_item = NULL;
1182
1183 // looking for the SRV record in the response list linked to this additional record
1184 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
1185 if ( !(
1186 (tmp_record->type == DNS_RTYPE_SRV) &&
1187 (tmp_record->ar_item == NULL) &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001188 (dns_hostname_cmp(tmp_record->target, dns_answer_record->name, tmp_record->data_len) == 0)
Baptiste Assmann13a92322019-06-07 09:40:55 +02001189 )
1190 )
1191 continue;
1192 tmp_record->ar_item = dns_answer_record;
1193 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02001194
1195 LIST_ADDQ(&dns_p->ar_list, &dns_answer_record->list);
Willy Tarreau963f7012020-07-22 17:00:45 +02001196 dns_answer_record = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001197 }
1198 } /* for i 0 to arcount */
1199
Baptiste Assmann37950c82020-02-19 01:08:51 +01001200 skip_parsing_additional_records:
1201
Baptiste Assmann13a92322019-06-07 09:40:55 +02001202 /* Save the number of records we really own */
1203 dns_p->header.arcount = nb_saved_records;
1204
Christopher Faulet67957bd2017-09-27 11:00:59 +02001205 dns_check_dns_response(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001206 return DNS_RESP_VALID;
Willy Tarreau963f7012020-07-22 17:00:45 +02001207
1208 invalid_resp:
1209 cause = DNS_RESP_INVALID;
1210
1211 return_error:
1212 pool_free(dns_answer_item_pool, dns_answer_record);
1213 return cause;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001214}
1215
Christopher Faulet67957bd2017-09-27 11:00:59 +02001216/* Searches dn_name resolution in resp.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001217 * If existing IP not found, return the first IP matching family_priority,
1218 * otherwise, first ip found
1219 * The following tasks are the responsibility of the caller:
Baptiste Assmann3cf7f982016-04-17 22:43:26 +02001220 * - <dns_p> contains an error free DNS response
Baptiste Assmann325137d2015-04-13 23:40:55 +02001221 * For both cases above, dns_validate_dns_response is required
1222 * returns one of the DNS_UPD_* code
1223 */
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02001224int dns_get_ip_from_response(struct dns_response_packet *dns_p,
Baptiste Assmann42746372017-05-03 12:12:02 +02001225 struct dns_options *dns_opts, void *currentip,
Thierry Fournierada34842016-02-17 21:25:09 +01001226 short currentip_sin_family,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02001227 void **newip, short *newip_sin_family,
1228 void *owner)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001229{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001230 struct dns_answer_item *record;
Thierry Fournierada34842016-02-17 21:25:09 +01001231 int family_priority;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001232 int currentip_found;
Baptiste Assmann3cf7f982016-04-17 22:43:26 +02001233 unsigned char *newip4, *newip6;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001234 int currentip_sel;
1235 int j;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001236 int score, max_score;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001237 int allowed_duplicated_ip;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001238
Christopher Faulet67957bd2017-09-27 11:00:59 +02001239 family_priority = dns_opts->family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001240 allowed_duplicated_ip = dns_opts->accept_duplicate_ip;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001241 *newip = newip4 = newip6 = NULL;
1242 currentip_found = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001243 *newip_sin_family = AF_UNSPEC;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001244 max_score = -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001245
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001246 /* Select an IP regarding configuration preference.
Joseph Herlant42cf6392018-11-15 10:33:28 -08001247 * Top priority is the preferred network ip version,
1248 * second priority is the preferred network.
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001249 * the last priority is the currently used IP,
1250 *
1251 * For these three priorities, a score is calculated. The
1252 * weight are:
Joseph Herlant42cf6392018-11-15 10:33:28 -08001253 * 8 - preferred ip version.
1254 * 4 - preferred network.
Baptistefc725902016-12-26 23:21:08 +01001255 * 2 - if the ip in the record is not affected to any other server in the same backend (duplication)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001256 * 1 - current ip.
1257 * The result with the biggest score is returned.
1258 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001259
1260 list_for_each_entry(record, &dns_p->answer_list, list) {
1261 void *ip;
1262 unsigned char ip_type;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001263
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001264 if (record->type == DNS_RTYPE_A) {
1265 ip = &(((struct sockaddr_in *)&record->address)->sin_addr);
1266 ip_type = AF_INET;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001267 }
1268 else if (record->type == DNS_RTYPE_AAAA) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001269 ip_type = AF_INET6;
1270 ip = &(((struct sockaddr_in6 *)&record->address)->sin6_addr);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001271 }
1272 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001273 continue;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001274 score = 0;
1275
Joseph Herlant42cf6392018-11-15 10:33:28 -08001276 /* Check for preferred ip protocol. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001277 if (ip_type == family_priority)
Baptistefc725902016-12-26 23:21:08 +01001278 score += 8;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001279
Joseph Herlant42cf6392018-11-15 10:33:28 -08001280 /* Check for preferred network. */
Baptiste Assmann42746372017-05-03 12:12:02 +02001281 for (j = 0; j < dns_opts->pref_net_nb; j++) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001282
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001283 /* Compare only the same addresses class. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001284 if (dns_opts->pref_net[j].family != ip_type)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001285 continue;
1286
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001287 if ((ip_type == AF_INET &&
1288 in_net_ipv4(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001289 &dns_opts->pref_net[j].mask.in4,
1290 &dns_opts->pref_net[j].addr.in4)) ||
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001291 (ip_type == AF_INET6 &&
1292 in_net_ipv6(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001293 &dns_opts->pref_net[j].mask.in6,
1294 &dns_opts->pref_net[j].addr.in6))) {
Baptistefc725902016-12-26 23:21:08 +01001295 score += 4;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001296 break;
1297 }
1298 }
1299
Christopher Faulet67957bd2017-09-27 11:00:59 +02001300 /* Check if the IP found in the record is already affected to a
Baptiste Assmann84221b42018-06-22 13:03:50 +02001301 * member of a group. If not, the score should be incremented
Christopher Faulet67957bd2017-09-27 11:00:59 +02001302 * by 2. */
Baptiste Assmann84221b42018-06-22 13:03:50 +02001303 if (owner && snr_check_ip_callback(owner, ip, &ip_type)) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001304 if (!allowed_duplicated_ip) {
1305 continue;
1306 }
Baptiste Assmann84221b42018-06-22 13:03:50 +02001307 } else {
1308 score += 2;
1309 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001310
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001311 /* Check for current ip matching. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001312 if (ip_type == currentip_sin_family &&
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001313 ((currentip_sin_family == AF_INET &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001314 !memcmp(ip, currentip, 4)) ||
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001315 (currentip_sin_family == AF_INET6 &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001316 !memcmp(ip, currentip, 16)))) {
1317 score++;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001318 currentip_sel = 1;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001319 }
1320 else
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001321 currentip_sel = 0;
1322
1323 /* Keep the address if the score is better than the previous
Christopher Faulet67957bd2017-09-27 11:00:59 +02001324 * score. The maximum score is 15, if this value is reached, we
1325 * break the parsing. Implicitly, this score is reached the ip
1326 * selected is the current ip. */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001327 if (score > max_score) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001328 if (ip_type == AF_INET)
1329 newip4 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001330 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001331 newip6 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001332 currentip_found = currentip_sel;
Baptistefc725902016-12-26 23:21:08 +01001333 if (score == 15)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001334 return DNS_UPD_NO;
1335 max_score = score;
1336 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001337 } /* list for each record entries */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001338
Christopher Faulet67957bd2017-09-27 11:00:59 +02001339 /* No IP found in the response */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001340 if (!newip4 && !newip6)
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001341 return DNS_UPD_NO_IP_FOUND;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001342
Christopher Faulet67957bd2017-09-27 11:00:59 +02001343 /* Case when the caller looks first for an IPv4 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001344 if (family_priority == AF_INET) {
1345 if (newip4) {
1346 *newip = newip4;
1347 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001348 }
1349 else if (newip6) {
1350 *newip = newip6;
1351 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001352 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001353 if (!currentip_found)
1354 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001355 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001356 /* Case when the caller looks first for an IPv6 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001357 else if (family_priority == AF_INET6) {
1358 if (newip6) {
1359 *newip = newip6;
1360 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001361 }
1362 else if (newip4) {
1363 *newip = newip4;
1364 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001365 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001366 if (!currentip_found)
1367 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001368 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001369 /* Case when the caller have no preference (we prefer IPv6) */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001370 else if (family_priority == AF_UNSPEC) {
1371 if (newip6) {
1372 *newip = newip6;
1373 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001374 }
1375 else if (newip4) {
1376 *newip = newip4;
1377 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001378 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001379 if (!currentip_found)
1380 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001381 }
1382
Christopher Faulet67957bd2017-09-27 11:00:59 +02001383 /* No reason why we should change the server's IP address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001384 return DNS_UPD_NO;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001385
Christopher Faulet67957bd2017-09-27 11:00:59 +02001386 not_found:
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001387 list_for_each_entry(record, &dns_p->answer_list, list) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001388 /* Move the first record to the end of the list, for internal
1389 * round robin */
1390 LIST_DEL(&record->list);
1391 LIST_ADDQ(&dns_p->answer_list, &record->list);
1392 break;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001393 }
1394 return DNS_UPD_SRVIP_NOT_FOUND;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001395}
1396
Christopher Faulet67957bd2017-09-27 11:00:59 +02001397/* Turns a domain name label into a string.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001398 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001399 * <dn> must be a null-terminated string. <dn_len> must include the terminating
1400 * null byte. <str> must be allocated and its size must be passed in <str_len>.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001401 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001402 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1403 * <str> (including the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001404 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001405int dns_dn_label_to_str(const char *dn, int dn_len, char *str, int str_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001406{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001407 char *ptr;
1408 int i, sz;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001409
Christopher Faulet67957bd2017-09-27 11:00:59 +02001410 if (str_len < dn_len - 1)
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001411 return -1;
1412
Christopher Faulet67957bd2017-09-27 11:00:59 +02001413 ptr = str;
1414 for (i = 0; i < dn_len-1; ++i) {
1415 sz = dn[i];
1416 if (i)
1417 *ptr++ = '.';
1418 memcpy(ptr, dn+i+1, sz);
1419 ptr += sz;
1420 i += sz;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001421 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001422 *ptr++ = '\0';
1423 return (ptr - str);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001424}
1425
Christopher Faulet67957bd2017-09-27 11:00:59 +02001426/* Turns a string into domain name label: www.haproxy.org into 3www7haproxy3org
1427 *
1428 * <str> must be a null-terminated string. <str_len> must include the
1429 * terminating null byte. <dn> buffer must be allocated and its size must be
1430 * passed in <dn_len>.
1431 *
1432 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1433 * <dn> (excluding the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001434 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001435int dns_str_to_dn_label(const char *str, int str_len, char *dn, int dn_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001436{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001437 int i, offset;
1438
Christopher Faulet67957bd2017-09-27 11:00:59 +02001439 if (dn_len < str_len + 1)
1440 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001441
Christopher Faulet67957bd2017-09-27 11:00:59 +02001442 /* First byte of dn will be used to store the length of the first
1443 * label */
1444 offset = 0;
1445 for (i = 0; i < str_len; ++i) {
1446 if (str[i] == '.') {
1447 /* 2 or more consecutive dots is invalid */
1448 if (i == offset)
1449 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001450
Lukas Tribus81725b82020-02-27 15:47:24 +01001451 /* ignore trailing dot */
1452 if (i + 2 == str_len) {
1453 i++;
1454 break;
1455 }
1456
Christopher Faulet67957bd2017-09-27 11:00:59 +02001457 dn[offset] = (i - offset);
1458 offset = i+1;
1459 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001460 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001461 dn[i+1] = str[i];
Baptiste Assmann325137d2015-04-13 23:40:55 +02001462 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001463 dn[offset] = (i - offset - 1);
1464 dn[i] = '\0';
1465 return i;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001466}
1467
Christopher Faulet67957bd2017-09-27 11:00:59 +02001468/* Validates host name:
Baptiste Assmann325137d2015-04-13 23:40:55 +02001469 * - total size
1470 * - each label size individually
1471 * returns:
1472 * 0 in case of error. If <err> is not NULL, an error message is stored there.
1473 * 1 when no error. <err> is left unaffected.
1474 */
1475int dns_hostname_validation(const char *string, char **err)
1476{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001477 int i;
1478
1479 if (strlen(string) > DNS_MAX_NAME_SIZE) {
1480 if (err)
1481 *err = DNS_TOO_LONG_FQDN;
1482 return 0;
1483 }
1484
William Dauchyaecd5dc2020-01-26 19:52:34 +01001485 while (*string) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001486 i = 0;
William Dauchyaecd5dc2020-01-26 19:52:34 +01001487 while (*string && *string != '.' && i < DNS_MAX_LABEL_SIZE) {
1488 if (!(*string == '-' || *string == '_' ||
1489 (*string >= 'a' && *string <= 'z') ||
1490 (*string >= 'A' && *string <= 'Z') ||
1491 (*string >= '0' && *string <= '9'))) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001492 if (err)
1493 *err = DNS_INVALID_CHARACTER;
1494 return 0;
1495 }
William Dauchyaecd5dc2020-01-26 19:52:34 +01001496 i++;
1497 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001498 }
1499
William Dauchyaecd5dc2020-01-26 19:52:34 +01001500 if (!(*string))
1501 break;
1502
1503 if (*string != '.' && i >= DNS_MAX_LABEL_SIZE) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001504 if (err)
1505 *err = DNS_LABEL_TOO_LONG;
1506 return 0;
1507 }
1508
William Dauchyaecd5dc2020-01-26 19:52:34 +01001509 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001510 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001511 return 1;
1512}
1513
Christopher Faulet67957bd2017-09-27 11:00:59 +02001514/* Picks up an available resolution from the different resolution list
1515 * associated to a resolvers section, in this order:
1516 * 1. check in resolutions.curr for the same hostname and query_type
1517 * 2. check in resolutions.wait for the same hostname and query_type
1518 * 3. Get a new resolution from resolution pool
1519 *
1520 * Returns an available resolution, NULL if none found.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001521 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001522static struct dns_resolution *dns_pick_resolution(struct dns_resolvers *resolvers,
1523 char **hostname_dn, int hostname_dn_len,
1524 int query_type)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001525{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001526 struct dns_resolution *res;
1527
1528 if (!*hostname_dn)
1529 goto from_pool;
1530
1531 /* Search for same hostname and query type in resolutions.curr */
1532 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
1533 if (!res->hostname_dn)
1534 continue;
1535 if ((query_type == res->prefered_query_type) &&
1536 hostname_dn_len == res->hostname_dn_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001537 !dns_hostname_cmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +02001538 return res;
1539 }
1540
1541 /* Search for same hostname and query type in resolutions.wait */
1542 list_for_each_entry(res, &resolvers->resolutions.wait, list) {
1543 if (!res->hostname_dn)
1544 continue;
1545 if ((query_type == res->prefered_query_type) &&
1546 hostname_dn_len == res->hostname_dn_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001547 !dns_hostname_cmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +02001548 return res;
1549 }
1550
1551 from_pool:
1552 /* No resolution could be found, so let's allocate a new one */
Willy Tarreaubafbe012017-11-24 17:34:44 +01001553 res = pool_alloc(dns_resolution_pool);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001554 if (res) {
1555 memset(res, 0, sizeof(*res));
1556 res->resolvers = resolvers;
1557 res->uuid = resolution_uuid;
1558 res->status = RSLV_STATUS_NONE;
1559 res->step = RSLV_STEP_NONE;
1560 res->last_valid = now_ms;
1561
1562 LIST_INIT(&res->requesters);
1563 LIST_INIT(&res->response.answer_list);
Baptiste Assmann13a92322019-06-07 09:40:55 +02001564 LIST_INIT(&res->response.ar_list);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001565
1566 res->prefered_query_type = query_type;
1567 res->query_type = query_type;
1568 res->hostname_dn = *hostname_dn;
1569 res->hostname_dn_len = hostname_dn_len;
1570
1571 ++resolution_uuid;
1572
1573 /* Move the resolution to the resolvers wait queue */
1574 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1575 }
1576 return res;
1577}
1578
1579/* Releases a resolution from its requester(s) and move it back to the pool */
1580static void dns_free_resolution(struct dns_resolution *resolution)
1581{
1582 struct dns_requester *req, *reqback;
Christopher Faulet010ab352020-07-22 15:55:49 +02001583 struct dns_answer_item *item, *itemback;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001584
1585 /* clean up configuration */
1586 dns_reset_resolution(resolution);
1587 resolution->hostname_dn = NULL;
1588 resolution->hostname_dn_len = 0;
1589
1590 list_for_each_entry_safe(req, reqback, &resolution->requesters, list) {
1591 LIST_DEL(&req->list);
1592 req->resolution = NULL;
1593 }
1594
Christopher Faulet010ab352020-07-22 15:55:49 +02001595 list_for_each_entry_safe(item, itemback, &resolution->response.ar_list, list) {
1596 LIST_DEL(&item->list);
1597 pool_free(dns_answer_item_pool, item);
1598 }
1599
1600 list_for_each_entry_safe(item, itemback, &resolution->response.answer_list, list) {
1601 LIST_DEL(&item->list);
1602 pool_free(dns_answer_item_pool, item);
1603 }
1604
Christopher Faulet67957bd2017-09-27 11:00:59 +02001605 LIST_DEL(&resolution->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001606 pool_free(dns_resolution_pool, resolution);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001607}
1608
1609/* Links a requester (a server or a dns_srvrq) with a resolution. It returns 0
1610 * on success, -1 otherwise.
1611 */
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001612int dns_link_resolution(void *requester, int requester_type, int requester_locked)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001613{
1614 struct dns_resolution *res = NULL;
1615 struct dns_requester *req;
1616 struct dns_resolvers *resolvers;
1617 struct server *srv = NULL;
1618 struct dns_srvrq *srvrq = NULL;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001619 struct stream *stream = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001620 char **hostname_dn;
1621 int hostname_dn_len, query_type;
1622
1623 switch (requester_type) {
1624 case OBJ_TYPE_SERVER:
1625 srv = (struct server *)requester;
1626 hostname_dn = &srv->hostname_dn;
1627 hostname_dn_len = srv->hostname_dn_len;
1628 resolvers = srv->resolvers;
1629 query_type = ((srv->dns_opts.family_prio == AF_INET)
1630 ? DNS_RTYPE_A
1631 : DNS_RTYPE_AAAA);
1632 break;
1633
1634 case OBJ_TYPE_SRVRQ:
1635 srvrq = (struct dns_srvrq *)requester;
1636 hostname_dn = &srvrq->hostname_dn;
1637 hostname_dn_len = srvrq->hostname_dn_len;
1638 resolvers = srvrq->resolvers;
1639 query_type = DNS_RTYPE_SRV;
1640 break;
1641
Baptiste Assmann333939c2019-01-21 08:34:50 +01001642 case OBJ_TYPE_STREAM:
1643 stream = (struct stream *)requester;
1644 hostname_dn = &stream->dns_ctx.hostname_dn;
1645 hostname_dn_len = stream->dns_ctx.hostname_dn_len;
1646 resolvers = stream->dns_ctx.parent->arg.dns.resolvers;
Christopher Fauleta4168432020-01-24 18:08:42 +01001647 query_type = ((stream->dns_ctx.parent->arg.dns.dns_opts->family_prio == AF_INET)
Baptiste Assmann333939c2019-01-21 08:34:50 +01001648 ? DNS_RTYPE_A
1649 : DNS_RTYPE_AAAA);
1650 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001651 default:
1652 goto err;
1653 }
1654
1655 /* Get a resolution from the resolvers' wait queue or pool */
1656 if ((res = dns_pick_resolution(resolvers, hostname_dn, hostname_dn_len, query_type)) == NULL)
1657 goto err;
1658
1659 if (srv) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001660 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001661 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001662 if (srv->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001663 if ((req = pool_alloc(dns_requester_pool)) == NULL) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001664 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001665 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001666 goto err;
Willy Tarreau5ec84572017-11-05 10:35:57 +01001667 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001668 req->owner = &srv->obj_type;
1669 srv->dns_requester = req;
1670 }
1671 else
1672 req = srv->dns_requester;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001673 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001674 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001675
1676 req->requester_cb = snr_resolution_cb;
1677 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001678 }
1679 else if (srvrq) {
1680 if (srvrq->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001681 if ((req = pool_alloc(dns_requester_pool)) == NULL)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001682 goto err;
1683 req->owner = &srvrq->obj_type;
1684 srvrq->dns_requester = req;
1685 }
1686 else
1687 req = srvrq->dns_requester;
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001688
1689 req->requester_cb = snr_resolution_cb;
1690 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001691 }
Baptiste Assmann333939c2019-01-21 08:34:50 +01001692 else if (stream) {
1693 if (stream->dns_ctx.dns_requester == NULL) {
1694 if ((req = pool_alloc(dns_requester_pool)) == NULL)
1695 goto err;
1696 req->owner = &stream->obj_type;
1697 stream->dns_ctx.dns_requester = req;
1698 }
1699 else
1700 req = stream->dns_ctx.dns_requester;
1701
1702 req->requester_cb = act_resolution_cb;
1703 req->requester_error_cb = act_resolution_error_cb;
1704 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001705 else
1706 goto err;
1707
1708 req->resolution = res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001709
1710 LIST_ADDQ(&res->requesters, &req->list);
1711 return 0;
1712
1713 err:
1714 if (res && LIST_ISEMPTY(&res->requesters))
1715 dns_free_resolution(res);
1716 return -1;
1717}
1718
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001719/* Removes a requester from a DNS resolution. It takes takes care of all the
Christopher Faulet67957bd2017-09-27 11:00:59 +02001720 * consequences. It also cleans up some parameters from the requester.
1721 */
1722void dns_unlink_resolution(struct dns_requester *requester)
1723{
1724 struct dns_resolution *res;
1725 struct dns_requester *req;
1726
1727 /* Nothing to do */
1728 if (!requester || !requester->resolution)
1729 return;
1730 res = requester->resolution;
1731
1732 /* Clean up the requester */
1733 LIST_DEL(&requester->list);
1734 requester->resolution = NULL;
1735
1736 /* We need to find another requester linked on this resolution */
1737 if (!LIST_ISEMPTY(&res->requesters))
1738 req = LIST_NEXT(&res->requesters, struct dns_requester *, list);
1739 else {
1740 dns_free_resolution(res);
1741 return;
1742 }
1743
1744 /* Move hostname_dn related pointers to the next requester */
1745 switch (obj_type(req->owner)) {
1746 case OBJ_TYPE_SERVER:
Willy Tarreau433c16f2018-09-20 11:15:27 +02001747 res->hostname_dn = __objt_server(req->owner)->hostname_dn;
1748 res->hostname_dn_len = __objt_server(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001749 break;
1750 case OBJ_TYPE_SRVRQ:
Willy Tarreau433c16f2018-09-20 11:15:27 +02001751 res->hostname_dn = __objt_dns_srvrq(req->owner)->hostname_dn;
1752 res->hostname_dn_len = __objt_dns_srvrq(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001753 break;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001754 case OBJ_TYPE_STREAM:
1755 res->hostname_dn = __objt_stream(req->owner)->dns_ctx.hostname_dn;
1756 res->hostname_dn_len = __objt_stream(req->owner)->dns_ctx.hostname_dn_len;
1757 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001758 default:
1759 res->hostname_dn = NULL;
1760 res->hostname_dn_len = 0;
1761 break;
1762 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001763}
1764
Christopher Faulet67957bd2017-09-27 11:00:59 +02001765/* Called when a network IO is generated on a name server socket for an incoming
1766 * packet. It performs the following actions:
1767 * - check if the packet requires processing (not outdated resolution)
1768 * - ensure the DNS packet received is valid and call requester's callback
1769 * - call requester's error callback if invalid response
1770 * - check the dn_name in the packet against the one sent
1771 */
1772static void dns_resolve_recv(struct dgram_conn *dgram)
1773{
1774 struct dns_nameserver *ns, *tmpns;
1775 struct dns_resolvers *resolvers;
1776 struct dns_resolution *res;
1777 struct dns_query_item *query;
1778 unsigned char buf[DNS_MAX_UDP_MESSAGE + 1];
1779 unsigned char *bufend;
1780 int fd, buflen, dns_resp;
1781 int max_answer_records;
1782 unsigned short query_id;
1783 struct eb32_node *eb;
1784 struct dns_requester *req;
1785
1786 fd = dgram->t.sock.fd;
1787
1788 /* check if ready for reading */
1789 if (!fd_recv_ready(fd))
1790 return;
1791
1792 /* no need to go further if we can't retrieve the nameserver */
Willy Tarreau1c759952019-12-10 18:38:09 +01001793 if ((ns = dgram->owner) == NULL) {
1794 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
1795 fd_stop_recv(fd);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001796 return;
Willy Tarreau1c759952019-12-10 18:38:09 +01001797 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001798
1799 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001800 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001801
1802 /* process all pending input messages */
Willy Tarreau1c759952019-12-10 18:38:09 +01001803 while (fd_recv_ready(fd)) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001804 /* read message received */
1805 memset(buf, '\0', resolvers->accepted_payload_size + 1);
1806 if ((buflen = recv(fd, (char*)buf , resolvers->accepted_payload_size + 1, 0)) < 0) {
Willy Tarreau1c759952019-12-10 18:38:09 +01001807 /* FIXME : for now we consider EAGAIN only, but at
1808 * least we purge sticky errors that would cause us to
1809 * be called in loops.
1810 */
1811 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Christopher Faulet67957bd2017-09-27 11:00:59 +02001812 fd_cant_recv(fd);
1813 break;
1814 }
1815
1816 /* message too big */
1817 if (buflen > resolvers->accepted_payload_size) {
1818 ns->counters.too_big++;
1819 continue;
1820 }
1821
1822 /* initializing variables */
1823 bufend = buf + buflen; /* pointer to mark the end of the buffer */
1824
1825 /* read the query id from the packet (16 bits) */
1826 if (buf + 2 > bufend) {
1827 ns->counters.invalid++;
1828 continue;
1829 }
1830 query_id = dns_response_get_query_id(buf);
1831
1832 /* search the query_id in the pending resolution tree */
1833 eb = eb32_lookup(&resolvers->query_ids, query_id);
1834 if (eb == NULL) {
1835 /* unknown query id means an outdated response and can be safely ignored */
1836 ns->counters.outdated++;
1837 continue;
1838 }
1839
William Dauchybe8a3872019-11-27 23:32:41 +01001840 /* known query id means a resolution in progress */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001841 res = eb32_entry(eb, struct dns_resolution, qid);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001842 /* number of responses received */
1843 res->nb_responses++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001844
Christopher Faulet67957bd2017-09-27 11:00:59 +02001845 max_answer_records = (resolvers->accepted_payload_size - DNS_HEADER_SIZE) / DNS_MIN_RECORD_SIZE;
1846 dns_resp = dns_validate_dns_response(buf, bufend, res, max_answer_records);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001847
Christopher Faulet67957bd2017-09-27 11:00:59 +02001848 switch (dns_resp) {
1849 case DNS_RESP_VALID:
1850 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001851
Christopher Faulet67957bd2017-09-27 11:00:59 +02001852 case DNS_RESP_INVALID:
1853 case DNS_RESP_QUERY_COUNT_ERROR:
1854 case DNS_RESP_WRONG_NAME:
1855 res->status = RSLV_STATUS_INVALID;
1856 ns->counters.invalid++;
1857 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001858
Christopher Faulet67957bd2017-09-27 11:00:59 +02001859 case DNS_RESP_NX_DOMAIN:
1860 res->status = RSLV_STATUS_NX;
1861 ns->counters.nx++;
1862 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001863
Christopher Faulet67957bd2017-09-27 11:00:59 +02001864 case DNS_RESP_REFUSED:
1865 res->status = RSLV_STATUS_REFUSED;
1866 ns->counters.refused++;
1867 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001868
Christopher Faulet67957bd2017-09-27 11:00:59 +02001869 case DNS_RESP_ANCOUNT_ZERO:
1870 res->status = RSLV_STATUS_OTHER;
1871 ns->counters.any_err++;
1872 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001873
Christopher Faulet67957bd2017-09-27 11:00:59 +02001874 case DNS_RESP_CNAME_ERROR:
1875 res->status = RSLV_STATUS_OTHER;
1876 ns->counters.cname_error++;
1877 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001878
Christopher Faulet67957bd2017-09-27 11:00:59 +02001879 case DNS_RESP_TRUNCATED:
1880 res->status = RSLV_STATUS_OTHER;
1881 ns->counters.truncated++;
1882 break;
Baptiste Assmanne70bc052017-08-21 16:51:09 +02001883
Christopher Faulet67957bd2017-09-27 11:00:59 +02001884 case DNS_RESP_NO_EXPECTED_RECORD:
1885 case DNS_RESP_ERROR:
1886 case DNS_RESP_INTERNAL:
1887 res->status = RSLV_STATUS_OTHER;
1888 ns->counters.other++;
1889 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001890 }
1891
Christopher Faulet67957bd2017-09-27 11:00:59 +02001892 /* Wait all nameservers response to handle errors */
1893 if (dns_resp != DNS_RESP_VALID && res->nb_responses < resolvers->nb_nameservers)
1894 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001895
Christopher Faulet67957bd2017-09-27 11:00:59 +02001896 /* Process error codes */
1897 if (dns_resp != DNS_RESP_VALID) {
1898 if (res->prefered_query_type != res->query_type) {
1899 /* The fallback on the query type was already performed,
1900 * so check the try counter. If it falls to 0, we can
1901 * report an error. Else, wait the next attempt. */
1902 if (!res->try)
1903 goto report_res_error;
1904 }
1905 else {
1906 /* Fallback from A to AAAA or the opposite and re-send
1907 * the resolution immediately. try counter is not
1908 * decremented. */
1909 if (res->prefered_query_type == DNS_RTYPE_A) {
1910 res->query_type = DNS_RTYPE_AAAA;
1911 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001912 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001913 else if (res->prefered_query_type == DNS_RTYPE_AAAA) {
1914 res->query_type = DNS_RTYPE_A;
1915 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001916 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001917 }
1918 continue;
1919 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02001920
Christopher Faulet67957bd2017-09-27 11:00:59 +02001921 /* Now let's check the query's dname corresponds to the one we
1922 * sent. We can check only the first query of the list. We send
1923 * one query at a time so we get one query in the response */
1924 query = LIST_NEXT(&res->response.query_list, struct dns_query_item *, list);
Olivier Houchardb17b8842020-04-01 18:30:27 +02001925 if (query && dns_hostname_cmp(query->name, res->hostname_dn, res->hostname_dn_len) != 0) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001926 dns_resp = DNS_RESP_WRONG_NAME;
1927 ns->counters.other++;
1928 goto report_res_error;
1929 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001930
Christopher Faulet67957bd2017-09-27 11:00:59 +02001931 /* So the resolution succeeded */
1932 res->status = RSLV_STATUS_VALID;
1933 res->last_valid = now_ms;
1934 ns->counters.valid++;
1935 goto report_res_success;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001936
Christopher Faulet67957bd2017-09-27 11:00:59 +02001937 report_res_error:
1938 list_for_each_entry(req, &res->requesters, list)
1939 req->requester_error_cb(req, dns_resp);
1940 dns_reset_resolution(res);
1941 LIST_DEL(&res->list);
1942 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1943 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001944
Christopher Faulet67957bd2017-09-27 11:00:59 +02001945 report_res_success:
1946 /* Only the 1rst requester s managed by the server, others are
1947 * from the cache */
1948 tmpns = ns;
1949 list_for_each_entry(req, &res->requesters, list) {
Olivier Houchard28381072017-11-06 17:30:28 +01001950 struct server *s = objt_server(req->owner);
1951
1952 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001953 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001954 req->requester_cb(req, tmpns);
Olivier Houchard28381072017-11-06 17:30:28 +01001955 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001956 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001957 tmpns = NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001958 }
Baptiste Assmann42746372017-05-03 12:12:02 +02001959
Christopher Faulet67957bd2017-09-27 11:00:59 +02001960 dns_reset_resolution(res);
1961 LIST_DEL(&res->list);
1962 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1963 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001964 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001965 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001966 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001967}
William Lallemand69e96442016-11-19 00:58:54 +01001968
Christopher Faulet67957bd2017-09-27 11:00:59 +02001969/* Called when a resolvers network socket is ready to send data */
1970static void dns_resolve_send(struct dgram_conn *dgram)
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001971{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001972 struct dns_resolvers *resolvers;
1973 struct dns_nameserver *ns;
1974 struct dns_resolution *res;
1975 int fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001976
Christopher Faulet67957bd2017-09-27 11:00:59 +02001977 fd = dgram->t.sock.fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001978
Christopher Faulet67957bd2017-09-27 11:00:59 +02001979 /* check if ready for sending */
1980 if (!fd_send_ready(fd))
1981 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001982
Christopher Faulet67957bd2017-09-27 11:00:59 +02001983 /* we don't want/need to be waked up any more for sending */
1984 fd_stop_send(fd);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001985
Christopher Faulet67957bd2017-09-27 11:00:59 +02001986 /* no need to go further if we can't retrieve the nameserver */
1987 if ((ns = dgram->owner) == NULL)
1988 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001989
Christopher Faulet67957bd2017-09-27 11:00:59 +02001990 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001991 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02001992
Christopher Faulet67957bd2017-09-27 11:00:59 +02001993 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02001994 int ret, len;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001995
Christopher Faulet67957bd2017-09-27 11:00:59 +02001996 if (res->nb_queries == resolvers->nb_nameservers)
1997 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02001998
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02001999 len = dns_build_query(res->query_id, res->query_type,
2000 resolvers->accepted_payload_size,
2001 res->hostname_dn, res->hostname_dn_len,
2002 trash.area, trash.size);
2003 if (len == -1)
Christopher Faulet67957bd2017-09-27 11:00:59 +02002004 goto snd_error;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002005
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02002006 ret = send(fd, trash.area, len, 0);
Willy Tarreau0eae6322019-12-20 11:18:54 +01002007 if (ret != len) {
2008 if (ret == -1 && errno == EAGAIN) {
2009 /* retry once the socket is ready */
2010 fd_cant_send(fd);
2011 continue;
2012 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002013 goto snd_error;
Willy Tarreau0eae6322019-12-20 11:18:54 +01002014 }
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002015
Christopher Faulet67957bd2017-09-27 11:00:59 +02002016 ns->counters.sent++;
2017 res->nb_queries++;
2018 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002019
Christopher Faulet67957bd2017-09-27 11:00:59 +02002020 snd_error:
2021 ns->counters.snd_error++;
2022 res->nb_queries++;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002023 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002024 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002025}
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002026
Christopher Faulet67957bd2017-09-27 11:00:59 +02002027/* Processes DNS resolution. First, it checks the active list to detect expired
2028 * resolutions and retry them if possible. Else a timeout is reported. Then, it
2029 * checks the wait list to trigger new resolutions.
2030 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002031static struct task *dns_process_resolvers(struct task *t, void *context, unsigned short state)
Christopher Faulet67957bd2017-09-27 11:00:59 +02002032{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002033 struct dns_resolvers *resolvers = context;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002034 struct dns_resolution *res, *resback;
2035 int exp;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002036
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002037 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02002038
Christopher Faulet67957bd2017-09-27 11:00:59 +02002039 /* Handle all expired resolutions from the active list */
2040 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
2041 /* When we find the first resolution in the future, then we can
2042 * stop here */
2043 exp = tick_add(res->last_query, resolvers->timeout.retry);
2044 if (!tick_is_expired(exp, now_ms))
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002045 break;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002046
Christopher Faulet67957bd2017-09-27 11:00:59 +02002047 /* If current resolution has been tried too many times and
2048 * finishes in timeout we update its status and remove it from
2049 * the list */
2050 if (!res->try) {
2051 struct dns_requester *req;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002052
Christopher Faulet67957bd2017-09-27 11:00:59 +02002053 /* Notify the result to the requesters */
2054 if (!res->nb_responses)
2055 res->status = RSLV_STATUS_TIMEOUT;
2056 list_for_each_entry(req, &res->requesters, list)
2057 req->requester_error_cb(req, res->status);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002058
Christopher Faulet67957bd2017-09-27 11:00:59 +02002059 /* Clean up resolution info and remove it from the
2060 * current list */
2061 dns_reset_resolution(res);
2062 LIST_DEL(&res->list);
2063 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
William Lallemand69e96442016-11-19 00:58:54 +01002064 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002065 else {
2066 /* Otherwise resend the DNS query and requeue the resolution */
2067 if (!res->nb_responses || res->prefered_query_type != res->query_type) {
2068 /* No response received (a real timeout) or fallback already done */
2069 res->query_type = res->prefered_query_type;
2070 res->try--;
2071 }
2072 else {
2073 /* Fallback from A to AAAA or the opposite and re-send
2074 * the resolution immediately. try counter is not
2075 * decremented. */
2076 if (res->prefered_query_type == DNS_RTYPE_A)
2077 res->query_type = DNS_RTYPE_AAAA;
2078 else if (res->prefered_query_type == DNS_RTYPE_AAAA)
2079 res->query_type = DNS_RTYPE_A;
2080 else
2081 res->try--;
2082 }
2083 dns_send_query(res);
William Lallemand69e96442016-11-19 00:58:54 +01002084 }
2085 }
William Lallemand69e96442016-11-19 00:58:54 +01002086
Christopher Faulet67957bd2017-09-27 11:00:59 +02002087 /* Handle all resolutions in the wait list */
2088 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
2089 exp = tick_add(res->last_resolution, dns_resolution_timeout(res));
2090 if (tick_isset(res->last_resolution) && !tick_is_expired(exp, now_ms))
2091 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002092
Christopher Faulet67957bd2017-09-27 11:00:59 +02002093 if (dns_run_resolution(res) != 1) {
2094 res->last_resolution = now_ms;
2095 LIST_DEL(&res->list);
2096 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002097 }
2098 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002099
Christopher Faulet67957bd2017-09-27 11:00:59 +02002100 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002101 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002102 return t;
2103}
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002104
Christopher Faulet67957bd2017-09-27 11:00:59 +02002105/* proto_udp callback functions for a DNS resolution */
2106struct dgram_data_cb resolve_dgram_cb = {
2107 .recv = dns_resolve_recv,
2108 .send = dns_resolve_send,
2109};
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002110
Christopher Faulet67957bd2017-09-27 11:00:59 +02002111/* Release memory allocated by DNS */
2112static void dns_deinit(void)
2113{
2114 struct dns_resolvers *resolvers, *resolversback;
2115 struct dns_nameserver *ns, *nsback;
2116 struct dns_resolution *res, *resback;
2117 struct dns_requester *req, *reqback;
2118 struct dns_srvrq *srvrq, *srvrqback;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002119
Christopher Faulet67957bd2017-09-27 11:00:59 +02002120 list_for_each_entry_safe(resolvers, resolversback, &dns_resolvers, list) {
2121 list_for_each_entry_safe(ns, nsback, &resolvers->nameservers, list) {
2122 free(ns->id);
2123 free((char *)ns->conf.file);
2124 if (ns->dgram && ns->dgram->t.sock.fd != -1)
2125 fd_delete(ns->dgram->t.sock.fd);
2126 free(ns->dgram);
2127 LIST_DEL(&ns->list);
2128 free(ns);
2129 }
2130
2131 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
2132 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
2133 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01002134 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002135 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002136 dns_free_resolution(res);
2137 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002138
Christopher Faulet67957bd2017-09-27 11:00:59 +02002139 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
2140 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
2141 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01002142 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002143 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002144 dns_free_resolution(res);
2145 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002146
Christopher Faulet67957bd2017-09-27 11:00:59 +02002147 free(resolvers->id);
2148 free((char *)resolvers->conf.file);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002149 task_destroy(resolvers->t);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002150 LIST_DEL(&resolvers->list);
2151 free(resolvers);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002152 }
2153
Christopher Faulet67957bd2017-09-27 11:00:59 +02002154 list_for_each_entry_safe(srvrq, srvrqback, &dns_srvrq_list, list) {
2155 free(srvrq->name);
2156 free(srvrq->hostname_dn);
2157 LIST_DEL(&srvrq->list);
2158 free(srvrq);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002159 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002160}
2161
Christopher Faulet67957bd2017-09-27 11:00:59 +02002162/* Finalizes the DNS configuration by allocating required resources and checking
2163 * live parameters.
2164 * Returns 0 on success, ERR_* flags otherwise.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002165 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002166static int dns_finalize_config(void)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002167{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002168 struct dns_resolvers *resolvers;
2169 struct proxy *px;
2170 int err_code = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002171
Christopher Faulet67957bd2017-09-27 11:00:59 +02002172 /* allocate pool of resolution per resolvers */
2173 list_for_each_entry(resolvers, &dns_resolvers, list) {
2174 struct dns_nameserver *ns;
2175 struct task *t;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002176
Christopher Faulet67957bd2017-09-27 11:00:59 +02002177 /* Check if we can create the socket with nameservers info */
2178 list_for_each_entry(ns, &resolvers->nameservers, list) {
2179 struct dgram_conn *dgram = NULL;
2180 int fd;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002181
Christopher Faulet67957bd2017-09-27 11:00:59 +02002182 /* Check nameserver info */
2183 if ((fd = socket(ns->addr.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002184 ha_alert("config : resolvers '%s': can't create socket for nameserver '%s'.\n",
2185 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002186 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002187 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002188 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002189 if (connect(fd, (struct sockaddr*)&ns->addr, get_addr_len(&ns->addr)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002190 ha_alert("config : resolvers '%s': can't connect socket for nameserver '%s'.\n",
2191 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002192 close(fd);
2193 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002194 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002195 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002196 close(fd);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002197
Christopher Faulet67957bd2017-09-27 11:00:59 +02002198 /* Create dgram structure that will hold the UPD socket
2199 * and attach it on the current nameserver */
2200 if ((dgram = calloc(1, sizeof(*dgram))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002201 ha_alert("config: resolvers '%s' : out of memory.\n",
2202 resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002203 err_code |= (ERR_ALERT|ERR_ABORT);
2204 goto err;
2205 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002206
Christopher Faulet67957bd2017-09-27 11:00:59 +02002207 /* Leave dgram partially initialized, no FD attached for
2208 * now. */
2209 dgram->owner = ns;
2210 dgram->data = &resolve_dgram_cb;
2211 dgram->t.sock.fd = -1;
2212 ns->dgram = dgram;
2213 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002214
Christopher Faulet67957bd2017-09-27 11:00:59 +02002215 /* Create the task associated to the resolvers section */
Emeric Brunc60def82017-09-27 14:59:38 +02002216 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002217 ha_alert("config : resolvers '%s' : out of memory.\n", resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002218 err_code |= (ERR_ALERT|ERR_ABORT);
2219 goto err;
2220 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002221
Christopher Faulet67957bd2017-09-27 11:00:59 +02002222 /* Update task's parameters */
2223 t->process = dns_process_resolvers;
2224 t->context = resolvers;
2225 resolvers->t = t;
2226 task_wakeup(t, TASK_WOKEN_INIT);
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002227 }
2228
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002229 for (px = proxies_list; px; px = px->next) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002230 struct server *srv;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002231
Christopher Faulet67957bd2017-09-27 11:00:59 +02002232 for (srv = px->srv; srv; srv = srv->next) {
2233 struct dns_resolvers *resolvers;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002234
Christopher Faulet67957bd2017-09-27 11:00:59 +02002235 if (!srv->resolvers_id)
2236 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002237
Christopher Faulet67957bd2017-09-27 11:00:59 +02002238 if ((resolvers = find_resolvers_by_id(srv->resolvers_id)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002239 ha_alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n",
2240 proxy_type_str(px), px->id, srv->id, srv->resolvers_id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002241 err_code |= (ERR_ALERT|ERR_ABORT);
2242 continue;
2243 }
2244 srv->resolvers = resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002245
Christopher Faulet67957bd2017-09-27 11:00:59 +02002246 if (srv->srvrq && !srv->srvrq->resolvers) {
2247 srv->srvrq->resolvers = srv->resolvers;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01002248 if (dns_link_resolution(srv->srvrq, OBJ_TYPE_SRVRQ, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002249 ha_alert("config : %s '%s' : unable to set DNS resolution for server '%s'.\n",
2250 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002251 err_code |= (ERR_ALERT|ERR_ABORT);
2252 continue;
2253 }
2254 }
Olivier Houchard55dcdf42017-11-06 15:15:04 +01002255 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002256 ha_alert("config : %s '%s', unable to set DNS resolution for server '%s'.\n",
2257 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002258 err_code |= (ERR_ALERT|ERR_ABORT);
2259 continue;
2260 }
2261 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002262 }
2263
Christopher Faulet67957bd2017-09-27 11:00:59 +02002264 if (err_code & (ERR_ALERT|ERR_ABORT))
2265 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002266
Christopher Faulet67957bd2017-09-27 11:00:59 +02002267 return err_code;
2268 err:
2269 dns_deinit();
2270 return err_code;
2271
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002272}
2273
Christopher Faulet67957bd2017-09-27 11:00:59 +02002274/* if an arg is found, it sets the resolvers section pointer into cli.p0 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002275static int cli_parse_stat_resolvers(char **args, char *payload, struct appctx *appctx, void *private)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002276{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002277 struct dns_resolvers *presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002278
Christopher Faulet67957bd2017-09-27 11:00:59 +02002279 if (*args[2]) {
2280 list_for_each_entry(presolvers, &dns_resolvers, list) {
2281 if (strcmp(presolvers->id, args[2]) == 0) {
2282 appctx->ctx.cli.p0 = presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002283 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002284 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002285 }
Willy Tarreau9d008692019-08-09 11:21:01 +02002286 if (appctx->ctx.cli.p0 == NULL)
2287 return cli_err(appctx, "Can't find that resolvers section\n");
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002288 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002289 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002290}
2291
Christopher Faulet67957bd2017-09-27 11:00:59 +02002292/* Dumps counters from all resolvers section and associated name servers. It
2293 * returns 0 if the output buffer is full and it needs to be called again,
2294 * otherwise non-zero. It may limit itself to the resolver pointed to by
Willy Tarreau777b5602016-12-16 18:06:26 +01002295 * <cli.p0> if it's not null.
William Lallemand69e96442016-11-19 00:58:54 +01002296 */
2297static int cli_io_handler_dump_resolvers_to_buffer(struct appctx *appctx)
2298{
2299 struct stream_interface *si = appctx->owner;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002300 struct dns_resolvers *resolvers;
2301 struct dns_nameserver *ns;
William Lallemand69e96442016-11-19 00:58:54 +01002302
2303 chunk_reset(&trash);
2304
2305 switch (appctx->st2) {
2306 case STAT_ST_INIT:
2307 appctx->st2 = STAT_ST_LIST; /* let's start producing data */
2308 /* fall through */
2309
2310 case STAT_ST_LIST:
2311 if (LIST_ISEMPTY(&dns_resolvers)) {
2312 chunk_appendf(&trash, "No resolvers found\n");
2313 }
2314 else {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002315 list_for_each_entry(resolvers, &dns_resolvers, list) {
2316 if (appctx->ctx.cli.p0 != NULL && appctx->ctx.cli.p0 != resolvers)
William Lallemand69e96442016-11-19 00:58:54 +01002317 continue;
2318
Christopher Faulet67957bd2017-09-27 11:00:59 +02002319 chunk_appendf(&trash, "Resolvers section %s\n", resolvers->id);
2320 list_for_each_entry(ns, &resolvers->nameservers, list) {
2321 chunk_appendf(&trash, " nameserver %s:\n", ns->id);
2322 chunk_appendf(&trash, " sent: %lld\n", ns->counters.sent);
2323 chunk_appendf(&trash, " snd_error: %lld\n", ns->counters.snd_error);
2324 chunk_appendf(&trash, " valid: %lld\n", ns->counters.valid);
2325 chunk_appendf(&trash, " update: %lld\n", ns->counters.update);
2326 chunk_appendf(&trash, " cname: %lld\n", ns->counters.cname);
2327 chunk_appendf(&trash, " cname_error: %lld\n", ns->counters.cname_error);
2328 chunk_appendf(&trash, " any_err: %lld\n", ns->counters.any_err);
2329 chunk_appendf(&trash, " nx: %lld\n", ns->counters.nx);
2330 chunk_appendf(&trash, " timeout: %lld\n", ns->counters.timeout);
2331 chunk_appendf(&trash, " refused: %lld\n", ns->counters.refused);
2332 chunk_appendf(&trash, " other: %lld\n", ns->counters.other);
2333 chunk_appendf(&trash, " invalid: %lld\n", ns->counters.invalid);
2334 chunk_appendf(&trash, " too_big: %lld\n", ns->counters.too_big);
2335 chunk_appendf(&trash, " truncated: %lld\n", ns->counters.truncated);
2336 chunk_appendf(&trash, " outdated: %lld\n", ns->counters.outdated);
William Lallemand69e96442016-11-19 00:58:54 +01002337 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002338 chunk_appendf(&trash, "\n");
William Lallemand69e96442016-11-19 00:58:54 +01002339 }
2340 }
2341
2342 /* display response */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002343 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand69e96442016-11-19 00:58:54 +01002344 /* let's try again later from this session. We add ourselves into
2345 * this session's users so that it can remove us upon termination.
2346 */
Willy Tarreaudb398432018-11-15 11:08:52 +01002347 si_rx_room_blk(si);
William Lallemand69e96442016-11-19 00:58:54 +01002348 return 0;
2349 }
William Lallemand69e96442016-11-19 00:58:54 +01002350 /* fall through */
2351
2352 default:
2353 appctx->st2 = STAT_ST_FIN;
2354 return 1;
2355 }
2356}
2357
2358/* register cli keywords */
Christopher Fauletff88efb2017-10-03 16:00:57 +02002359static struct cli_kw_list cli_kws = {{ }, {
2360 { { "show", "resolvers", NULL }, "show resolvers [id]: dumps counters from all resolvers section and\n"
2361 " associated name servers",
2362 cli_parse_stat_resolvers, cli_io_handler_dump_resolvers_to_buffer },
2363 {{},}
2364 }
2365};
William Lallemand69e96442016-11-19 00:58:54 +01002366
Willy Tarreau0108d902018-11-25 19:14:37 +01002367INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand69e96442016-11-19 00:58:54 +01002368
Baptiste Assmann333939c2019-01-21 08:34:50 +01002369/*
2370 * Prepare <rule> for hostname resolution.
2371 * Returns -1 in case of any allocation failure, 0 if not.
2372 * On error, a global failure counter is also incremented.
2373 */
2374static int action_prepare_for_resolution(struct stream *stream, const char *hostname)
2375{
2376 char *hostname_dn;
2377 int hostname_len, hostname_dn_len;
2378 struct buffer *tmp = get_trash_chunk();
2379
2380 if (!hostname)
2381 return 0;
2382
2383 hostname_len = strlen(hostname);
2384 hostname_dn = tmp->area;
2385 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
2386 hostname_dn, tmp->size);
2387 if (hostname_dn_len == -1)
2388 goto err;
2389
2390
2391 stream->dns_ctx.hostname_dn = strdup(hostname_dn);
2392 stream->dns_ctx.hostname_dn_len = hostname_dn_len;
2393 if (!stream->dns_ctx.hostname_dn)
2394 goto err;
2395
2396 return 0;
2397
2398 err:
2399 free(stream->dns_ctx.hostname_dn); stream->dns_ctx.hostname_dn = NULL;
2400 dns_failed_resolutions += 1;
2401 return -1;
2402}
2403
2404
2405/*
2406 * Execute the "do-resolution" action. May be called from {tcp,http}request.
2407 */
2408enum act_return dns_action_do_resolve(struct act_rule *rule, struct proxy *px,
2409 struct session *sess, struct stream *s, int flags)
2410{
Baptiste Assmann333939c2019-01-21 08:34:50 +01002411 struct dns_resolution *resolution;
Willy Tarreau45726fd2019-07-17 10:38:45 +02002412 struct sample *smp;
2413 char *fqdn;
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002414 struct dns_requester *req;
2415 struct dns_resolvers *resolvers;
2416 struct dns_resolution *res;
Christopher Faulet5098a082020-07-22 11:46:32 +02002417 int exp, locked = 0;
2418 enum act_return ret = ACT_RET_CONT;
2419
2420 resolvers = rule->arg.dns.resolvers;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002421
2422 /* we have a response to our DNS resolution */
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002423 use_cache:
Baptiste Assmann333939c2019-01-21 08:34:50 +01002424 if (s->dns_ctx.dns_requester && s->dns_ctx.dns_requester->resolution != NULL) {
2425 resolution = s->dns_ctx.dns_requester->resolution;
Christopher Faulet5098a082020-07-22 11:46:32 +02002426 if (!locked) {
2427 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2428 locked = 1;
2429 }
2430
Baptiste Assmann4c52e4b2019-10-01 15:32:40 +02002431 if (resolution->step == RSLV_STEP_RUNNING) {
Christopher Faulet5098a082020-07-22 11:46:32 +02002432 ret = ACT_RET_YIELD;
2433 goto end;
Baptiste Assmann4c52e4b2019-10-01 15:32:40 +02002434 }
Baptiste Assmann333939c2019-01-21 08:34:50 +01002435 if (resolution->step == RSLV_STEP_NONE) {
2436 /* We update the variable only if we have a valid response. */
2437 if (resolution->status == RSLV_STATUS_VALID) {
2438 struct sample smp;
2439 short ip_sin_family = 0;
2440 void *ip = NULL;
2441
Christopher Fauleta4168432020-01-24 18:08:42 +01002442 dns_get_ip_from_response(&resolution->response, rule->arg.dns.dns_opts, NULL,
Baptiste Assmann333939c2019-01-21 08:34:50 +01002443 0, &ip, &ip_sin_family, NULL);
2444
2445 switch (ip_sin_family) {
2446 case AF_INET:
2447 smp.data.type = SMP_T_IPV4;
2448 memcpy(&smp.data.u.ipv4, ip, 4);
2449 break;
2450 case AF_INET6:
2451 smp.data.type = SMP_T_IPV6;
2452 memcpy(&smp.data.u.ipv6, ip, 16);
2453 break;
2454 default:
2455 ip = NULL;
2456 }
2457
2458 if (ip) {
2459 smp.px = px;
2460 smp.sess = sess;
2461 smp.strm = s;
2462
2463 vars_set_by_name(rule->arg.dns.varname, strlen(rule->arg.dns.varname), &smp);
2464 }
2465 }
2466 }
2467
2468 free(s->dns_ctx.hostname_dn); s->dns_ctx.hostname_dn = NULL;
2469 s->dns_ctx.hostname_dn_len = 0;
2470 dns_unlink_resolution(s->dns_ctx.dns_requester);
2471
2472 pool_free(dns_requester_pool, s->dns_ctx.dns_requester);
2473 s->dns_ctx.dns_requester = NULL;
2474
Christopher Faulet5098a082020-07-22 11:46:32 +02002475 goto end;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002476 }
2477
2478 /* need to configure and start a new DNS resolution */
Willy Tarreau45726fd2019-07-17 10:38:45 +02002479 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.dns.expr, SMP_T_STR);
2480 if (smp == NULL)
Christopher Faulet5098a082020-07-22 11:46:32 +02002481 goto end;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002482
Willy Tarreau45726fd2019-07-17 10:38:45 +02002483 fqdn = smp->data.u.str.area;
2484 if (action_prepare_for_resolution(s, fqdn) == -1)
Christopher Faulet5098a082020-07-22 11:46:32 +02002485 goto end; /* on error, ignore the action */
Baptiste Assmann333939c2019-01-21 08:34:50 +01002486
Willy Tarreau45726fd2019-07-17 10:38:45 +02002487 s->dns_ctx.parent = rule;
Christopher Faulet5098a082020-07-22 11:46:32 +02002488
2489 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2490 locked = 1;
2491
Willy Tarreau45726fd2019-07-17 10:38:45 +02002492 dns_link_resolution(s, OBJ_TYPE_STREAM, 0);
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002493
2494 /* Check if there is a fresh enough response in the cache of our associated resolution */
2495 req = s->dns_ctx.dns_requester;
2496 if (!req || !req->resolution) {
2497 dns_trigger_resolution(s->dns_ctx.dns_requester);
Christopher Faulet5098a082020-07-22 11:46:32 +02002498 ret = ACT_RET_YIELD;
2499 goto end;
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002500 }
Christopher Faulet5098a082020-07-22 11:46:32 +02002501 res = req->resolution;
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002502
2503 exp = tick_add(res->last_resolution, resolvers->hold.valid);
2504 if (resolvers->t && res->status == RSLV_STATUS_VALID && tick_isset(res->last_resolution)
2505 && !tick_is_expired(exp, now_ms)) {
2506 goto use_cache;
2507 }
2508
Willy Tarreau45726fd2019-07-17 10:38:45 +02002509 dns_trigger_resolution(s->dns_ctx.dns_requester);
Christopher Faulet5098a082020-07-22 11:46:32 +02002510 ret = ACT_RET_YIELD;
2511
2512 end:
2513 if (locked)
2514 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
2515 return ret;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002516}
2517
Christopher Faulet3b2bb632020-01-24 18:12:58 +01002518static void release_dns_action(struct act_rule *rule)
2519{
2520 release_sample_expr(rule->arg.dns.expr);
2521 free(rule->arg.dns.varname);
2522 free(rule->arg.dns.resolvers_id);
2523 free(rule->arg.dns.dns_opts);
2524}
2525
Baptiste Assmann333939c2019-01-21 08:34:50 +01002526
2527/* parse "do-resolve" action
2528 * This action takes the following arguments:
2529 * do-resolve(<varName>,<resolversSectionName>,<resolvePrefer>) <expr>
2530 *
2531 * - <varName> is the variable name where the result of the DNS resolution will be stored
2532 * (mandatory)
2533 * - <resolversSectionName> is the name of the resolvers section to use to perform the resolution
2534 * (mandatory)
2535 * - <resolvePrefer> can be either 'ipv4' or 'ipv6' and is the IP family we would like to resolve first
2536 * (optional), defaults to ipv6
2537 * - <expr> is an HAProxy expression used to fetch the name to be resolved
2538 */
2539enum act_parse_ret dns_parse_do_resolve(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
2540{
2541 int cur_arg;
2542 struct sample_expr *expr;
2543 unsigned int where;
2544 const char *beg, *end;
2545
2546 /* orig_arg points to the first argument, but we need to analyse the command itself first */
2547 cur_arg = *orig_arg - 1;
2548
2549 /* locate varName, which is mandatory */
2550 beg = strchr(args[cur_arg], '(');
2551 if (beg == NULL)
2552 goto do_resolve_parse_error;
2553 beg = beg + 1; /* beg should points to the first character after opening parenthesis '(' */
2554 end = strchr(beg, ',');
2555 if (end == NULL)
2556 goto do_resolve_parse_error;
2557 rule->arg.dns.varname = my_strndup(beg, end - beg);
2558 if (rule->arg.dns.varname == NULL)
2559 goto do_resolve_parse_error;
2560
2561
2562 /* locate resolversSectionName, which is mandatory.
2563 * Since next parameters are optional, the delimiter may be comma ','
2564 * or closing parenthesis ')'
2565 */
2566 beg = end + 1;
2567 end = strchr(beg, ',');
2568 if (end == NULL)
2569 end = strchr(beg, ')');
2570 if (end == NULL)
2571 goto do_resolve_parse_error;
2572 rule->arg.dns.resolvers_id = my_strndup(beg, end - beg);
2573 if (rule->arg.dns.resolvers_id == NULL)
2574 goto do_resolve_parse_error;
2575
2576
Christopher Fauleta4168432020-01-24 18:08:42 +01002577 rule->arg.dns.dns_opts = calloc(1, sizeof(*rule->arg.dns.dns_opts));
2578 if (rule->arg.dns.dns_opts == NULL)
2579 goto do_resolve_parse_error;
2580
Baptiste Assmann333939c2019-01-21 08:34:50 +01002581 /* Default priority is ipv6 */
Christopher Fauleta4168432020-01-24 18:08:42 +01002582 rule->arg.dns.dns_opts->family_prio = AF_INET6;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002583
2584 /* optional arguments accepted for now:
2585 * ipv4 or ipv6
2586 */
2587 while (*end != ')') {
2588 beg = end + 1;
2589 end = strchr(beg, ',');
2590 if (end == NULL)
2591 end = strchr(beg, ')');
2592 if (end == NULL)
2593 goto do_resolve_parse_error;
2594
2595 if (strncmp(beg, "ipv4", end - beg) == 0) {
Christopher Fauleta4168432020-01-24 18:08:42 +01002596 rule->arg.dns.dns_opts->family_prio = AF_INET;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002597 }
2598 else if (strncmp(beg, "ipv6", end - beg) == 0) {
Christopher Fauleta4168432020-01-24 18:08:42 +01002599 rule->arg.dns.dns_opts->family_prio = AF_INET6;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002600 }
2601 else {
2602 goto do_resolve_parse_error;
2603 }
2604 }
2605
2606 cur_arg = cur_arg + 1;
2607
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01002608 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args, NULL);
Baptiste Assmann333939c2019-01-21 08:34:50 +01002609 if (!expr)
2610 goto do_resolve_parse_error;
2611
2612
2613 where = 0;
2614 if (px->cap & PR_CAP_FE)
2615 where |= SMP_VAL_FE_HRQ_HDR;
2616 if (px->cap & PR_CAP_BE)
2617 where |= SMP_VAL_BE_HRQ_HDR;
2618
2619 if (!(expr->fetch->val & where)) {
2620 memprintf(err,
2621 "fetch method '%s' extracts information from '%s', none of which is available here",
2622 args[cur_arg-1], sample_src_names(expr->fetch->use));
2623 free(expr);
2624 return ACT_RET_PRS_ERR;
2625 }
2626 rule->arg.dns.expr = expr;
2627 rule->action = ACT_CUSTOM;
2628 rule->action_ptr = dns_action_do_resolve;
2629 *orig_arg = cur_arg;
2630
2631 rule->check_ptr = check_action_do_resolve;
Christopher Faulet3b2bb632020-01-24 18:12:58 +01002632 rule->release_ptr = release_dns_action;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002633
2634 return ACT_RET_PRS_OK;
2635
2636 do_resolve_parse_error:
2637 free(rule->arg.dns.varname); rule->arg.dns.varname = NULL;
2638 free(rule->arg.dns.resolvers_id); rule->arg.dns.resolvers_id = NULL;
2639 memprintf(err, "Can't parse '%s'. Expects 'do-resolve(<varname>,<resolvers>[,<options>]) <expr>'. Available options are 'ipv4' and 'ipv6'",
2640 args[cur_arg]);
2641 return ACT_RET_PRS_ERR;
2642}
2643
2644static struct action_kw_list http_req_kws = { { }, {
2645 { "do-resolve", dns_parse_do_resolve, 1 },
2646 { /* END */ }
2647}};
2648
2649INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_kws);
2650
2651static struct action_kw_list tcp_req_cont_actions = {ILH, {
2652 { "do-resolve", dns_parse_do_resolve, 1 },
2653 { /* END */ }
2654}};
2655
2656INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_cont_actions);
2657
2658/* Check an "http-request do-resolve" action.
2659 *
2660 * The function returns 1 in success case, otherwise, it returns 0 and err is
2661 * filled.
2662 */
2663int check_action_do_resolve(struct act_rule *rule, struct proxy *px, char **err)
2664{
2665 struct dns_resolvers *resolvers = NULL;
2666
2667 if (rule->arg.dns.resolvers_id == NULL) {
2668 memprintf(err,"Proxy '%s': %s", px->id, "do-resolve action without resolvers");
2669 return 0;
2670 }
2671
2672 resolvers = find_resolvers_by_id(rule->arg.dns.resolvers_id);
2673 if (resolvers == NULL) {
2674 memprintf(err,"Can't find resolvers section '%s' for do-resolve action", rule->arg.dns.resolvers_id);
2675 return 0;
2676 }
2677 rule->arg.dns.resolvers = resolvers;
2678
2679 return 1;
2680}
2681
Willy Tarreau172f5ce2018-11-26 11:21:50 +01002682REGISTER_POST_DEINIT(dns_deinit);
Willy Tarreaue6552512018-11-26 11:33:13 +01002683REGISTER_CONFIG_POSTPARSER("dns runtime resolver", dns_finalize_config);