blob: 333780293adc3c6dbd9f6682e1b05973e92bf146 [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:
Baptiste Assmanncde83032020-08-04 10:54:14 +0200637 update_server_addr(srv, &(((struct sockaddr_in*)&item->ar_item->address)->sin_addr), AF_INET, "DNS additional record");
Baptiste Assmann13a92322019-06-07 09:40:55 +0200638 break;
639 case DNS_RTYPE_AAAA:
Baptiste Assmanncde83032020-08-04 10:54:14 +0200640 update_server_addr(srv, &(((struct sockaddr_in6*)&item->ar_item->address)->sin6_addr), AF_INET6, "DNS additional record");
Baptiste Assmann13a92322019-06-07 09:40:55 +0200641 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
Baptiste Assmann87138c32020-08-04 10:57:21 +0200651 /* now we have an IP address associated to this server, we can update its status */
652 snr_update_srv_status(srv, 0);
653
Christopher Faulet67957bd2017-09-27 11:00:59 +0200654 srv->svc_port = item->port;
655 srv->flags &= ~SRV_F_MAPPORTS;
656 if ((srv->check.state & CHK_ST_CONFIGURED) &&
657 !(srv->flags & SRV_F_CHECKPORT))
658 srv->check.port = item->port;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100659
Daniel Corbettf8716912019-11-17 09:48:56 -0500660 if (!srv->dns_opts.ignore_weight) {
661 /* DNS weight range if from 0 to 65535
662 * HAProxy weight is from 0 to 256
663 * The rule below ensures that weight 0 is well respected
664 * while allowing a "mapping" from DNS weight into HAProxy's one.
665 */
666 ha_weight = (item->weight + 255) / 256;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100667
Daniel Corbettf8716912019-11-17 09:48:56 -0500668 snprintf(weight, sizeof(weight), "%d", ha_weight);
669 server_parse_weight_change_request(srv, weight);
670 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100671 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200672 }
673 }
674 }
675}
676
677/* Validates that the buffer DNS response provided in <resp> and finishing
678 * before <bufend> is valid from a DNS protocol point of view.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200679 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200680 * The result is stored in <resolution>' response, buf_response,
681 * response_query_records and response_answer_records members.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200682 *
683 * This function returns one of the DNS_RESP_* code to indicate the type of
684 * error found.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200685 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200686static int dns_validate_dns_response(unsigned char *resp, unsigned char *bufend,
687 struct dns_resolution *resolution, int max_answer_records)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200688{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200689 unsigned char *reader;
690 char *previous_dname, tmpname[DNS_MAX_NAME_SIZE];
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200691 int len, flags, offset;
692 int dns_query_record_id;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200693 int nb_saved_records;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200694 struct dns_query_item *dns_query;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200695 struct dns_answer_item *dns_answer_record, *tmp_record;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200696 struct dns_response_packet *dns_p;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200697 int i, found = 0;
Willy Tarreau963f7012020-07-22 17:00:45 +0200698 int cause = DNS_RESP_ERROR;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200699
Christopher Faulet67957bd2017-09-27 11:00:59 +0200700 reader = resp;
701 len = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200702 previous_dname = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200703 dns_query = NULL;
Willy Tarreau963f7012020-07-22 17:00:45 +0200704 dns_answer_record = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200705
Christopher Faulet67957bd2017-09-27 11:00:59 +0200706 /* Initialization of response buffer and structure */
Baptiste Assmann729c9012017-05-22 15:13:10 +0200707 dns_p = &resolution->response;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200708
709 /* query id */
710 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200711 goto invalid_resp;
712
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200713 dns_p->header.id = reader[0] * 256 + reader[1];
714 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200715
Christopher Faulet67957bd2017-09-27 11:00:59 +0200716 /* Flags and rcode are stored over 2 bytes
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200717 * First byte contains:
718 * - response flag (1 bit)
719 * - opcode (4 bits)
720 * - authoritative (1 bit)
721 * - truncated (1 bit)
722 * - recursion desired (1 bit)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200723 */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200724 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200725 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200726
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200727 flags = reader[0] * 256 + reader[1];
728
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200729 if ((flags & DNS_FLAG_REPLYCODE) != DNS_RCODE_NO_ERROR) {
Willy Tarreau963f7012020-07-22 17:00:45 +0200730 if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_NX_DOMAIN) {
731 cause = DNS_RESP_NX_DOMAIN;
732 goto return_error;
733 }
734 else if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_REFUSED) {
735 cause = DNS_RESP_REFUSED;
736 goto return_error;
737 }
738 else {
739 cause = DNS_RESP_ERROR;
740 goto return_error;
741 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200742 }
743
Christopher Faulet67957bd2017-09-27 11:00:59 +0200744 /* Move forward 2 bytes for flags */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200745 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200746
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200747 /* 2 bytes for question count */
748 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200749 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200750 dns_p->header.qdcount = reader[0] * 256 + reader[1];
Christopher Faulet67957bd2017-09-27 11:00:59 +0200751 /* (for now) we send one query only, so we expect only one in the
752 * response too */
Willy Tarreau963f7012020-07-22 17:00:45 +0200753 if (dns_p->header.qdcount != 1) {
754 cause = DNS_RESP_QUERY_COUNT_ERROR;
755 goto return_error;
756 }
757
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200758 if (dns_p->header.qdcount > DNS_MAX_QUERY_RECORDS)
Willy Tarreau963f7012020-07-22 17:00:45 +0200759 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200760 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200761
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200762 /* 2 bytes for answer count */
763 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200764 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200765 dns_p->header.ancount = reader[0] * 256 + reader[1];
Willy Tarreau963f7012020-07-22 17:00:45 +0200766 if (dns_p->header.ancount == 0) {
767 cause = DNS_RESP_ANCOUNT_ZERO;
768 goto return_error;
769 }
770
Christopher Faulet67957bd2017-09-27 11:00:59 +0200771 /* Check if too many records are announced */
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200772 if (dns_p->header.ancount > max_answer_records)
Willy Tarreau963f7012020-07-22 17:00:45 +0200773 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200774 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200775
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200776 /* 2 bytes authority count */
777 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200778 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200779 dns_p->header.nscount = reader[0] * 256 + reader[1];
780 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200781
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200782 /* 2 bytes additional count */
783 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200784 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200785 dns_p->header.arcount = reader[0] * 256 + reader[1];
786 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200787
Christopher Faulet67957bd2017-09-27 11:00:59 +0200788 /* Parsing dns queries */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200789 LIST_INIT(&dns_p->query_list);
790 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 +0200791 /* Use next pre-allocated dns_query_item after ensuring there is
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200792 * still one available.
Christopher Faulet67957bd2017-09-27 11:00:59 +0200793 * It's then added to our packet query list. */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200794 if (dns_query_record_id > DNS_MAX_QUERY_RECORDS)
Willy Tarreau963f7012020-07-22 17:00:45 +0200795 goto invalid_resp;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200796 dns_query = &resolution->response_query_records[dns_query_record_id];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200797 LIST_ADDQ(&dns_p->query_list, &dns_query->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200798
Christopher Faulet67957bd2017-09-27 11:00:59 +0200799 /* Name is a NULL terminated string in our case, since we have
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200800 * one query per response and the first one can't be compressed
Christopher Faulet67957bd2017-09-27 11:00:59 +0200801 * (using the 0x0c format) */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200802 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100803 len = dns_read_name(resp, bufend, reader, dns_query->name, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200804
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200805 if (len == 0)
Willy Tarreau963f7012020-07-22 17:00:45 +0200806 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200807
808 reader += offset;
809 previous_dname = dns_query->name;
810
811 /* move forward 2 bytes for question type */
812 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200813 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200814 dns_query->type = reader[0] * 256 + reader[1];
815 reader += 2;
816
817 /* move forward 2 bytes for question class */
818 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200819 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200820 dns_query->class = reader[0] * 256 + reader[1];
821 reader += 2;
822 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200823
Baptiste Assmann251abb92017-08-11 09:58:27 +0200824 /* TRUNCATED flag must be checked after we could read the query type
Christopher Faulet67957bd2017-09-27 11:00:59 +0200825 * because a TRUNCATED SRV query type response can still be exploited */
Willy Tarreau963f7012020-07-22 17:00:45 +0200826 if (dns_query->type != DNS_RTYPE_SRV && flags & DNS_FLAG_TRUNCATED) {
827 cause = DNS_RESP_TRUNCATED;
828 goto return_error;
829 }
Baptiste Assmann251abb92017-08-11 09:58:27 +0200830
Baptiste Assmann325137d2015-04-13 23:40:55 +0200831 /* now parsing response records */
Baptiste Assmann69fce672017-05-04 08:37:45 +0200832 nb_saved_records = 0;
Olivier Houchard8da5f982017-08-04 18:35:36 +0200833 for (i = 0; i < dns_p->header.ancount; i++) {
Baptiste Assmann325137d2015-04-13 23:40:55 +0200834 if (reader >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200835 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200836
Willy Tarreaubafbe012017-11-24 17:34:44 +0100837 dns_answer_record = pool_alloc(dns_answer_item_pool);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200838 if (dns_answer_record == NULL)
Willy Tarreau963f7012020-07-22 17:00:45 +0200839 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200840
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200841 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100842 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200843
Willy Tarreau963f7012020-07-22 17:00:45 +0200844 if (len == 0)
845 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200846
Christopher Faulet67957bd2017-09-27 11:00:59 +0200847 /* Check if the current record dname is valid. previous_dname
848 * points either to queried dname or last CNAME target */
Olivier Houchardb17b8842020-04-01 18:30:27 +0200849 if (dns_query->type != DNS_RTYPE_SRV && dns_hostname_cmp(previous_dname, tmpname, len) != 0) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200850 if (i == 0) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200851 /* First record, means a mismatch issue between
852 * queried dname and dname found in the first
853 * record */
Willy Tarreau963f7012020-07-22 17:00:45 +0200854 goto invalid_resp;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200855 }
856 else {
857 /* If not the first record, this means we have a
Willy Tarreau963f7012020-07-22 17:00:45 +0200858 * CNAME resolution error.
859 */
860 cause = DNS_RESP_CNAME_ERROR;
861 goto return_error;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200862 }
863
Baptiste Assmann325137d2015-04-13 23:40:55 +0200864 }
865
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200866 memcpy(dns_answer_record->name, tmpname, len);
867 dns_answer_record->name[len] = 0;
Baptiste Assmann2359ff12015-08-07 11:24:05 +0200868
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200869 reader += offset;
Willy Tarreau963f7012020-07-22 17:00:45 +0200870 if (reader >= bufend)
871 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200872
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200873 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
Willy Tarreau963f7012020-07-22 17:00:45 +0200874 if (reader + 2 > bufend)
875 goto invalid_resp;
876
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200877 dns_answer_record->type = reader[0] * 256 + reader[1];
878 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200879
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200880 /* 2 bytes for class (2) */
Willy Tarreau963f7012020-07-22 17:00:45 +0200881 if (reader + 2 > bufend)
882 goto invalid_resp;
883
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200884 dns_answer_record->class = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +0200885 reader += 2;
886
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200887 /* 4 bytes for ttl (4) */
Willy Tarreau963f7012020-07-22 17:00:45 +0200888 if (reader + 4 > bufend)
889 goto invalid_resp;
890
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200891 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
892 + reader[2] * 256 + reader[3];
893 reader += 4;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200894
Christopher Faulet67957bd2017-09-27 11:00:59 +0200895 /* Now reading data len */
Willy Tarreau963f7012020-07-22 17:00:45 +0200896 if (reader + 2 > bufend)
897 goto invalid_resp;
898
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200899 dns_answer_record->data_len = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +0200900
Christopher Faulet67957bd2017-09-27 11:00:59 +0200901 /* Move forward 2 bytes for data len */
Baptiste Assmann325137d2015-04-13 23:40:55 +0200902 reader += 2;
903
Willy Tarreau963f7012020-07-22 17:00:45 +0200904 if (reader + dns_answer_record->data_len > bufend)
905 goto invalid_resp;
Remi Gacogneefbbdf72018-12-05 17:56:29 +0100906
Christopher Faulet67957bd2017-09-27 11:00:59 +0200907 /* Analyzing record content */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200908 switch (dns_answer_record->type) {
Baptiste Assmann325137d2015-04-13 23:40:55 +0200909 case DNS_RTYPE_A:
910 /* ipv4 is stored on 4 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +0200911 if (dns_answer_record->data_len != 4)
912 goto invalid_resp;
913
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200914 dns_answer_record->address.sa_family = AF_INET;
915 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
916 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200917 break;
918
919 case DNS_RTYPE_CNAME:
Christopher Faulet67957bd2017-09-27 11:00:59 +0200920 /* Check if this is the last record and update the caller about the status:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200921 * no IP could be found and last record was a CNAME. Could be triggered
922 * by a wrong query type
923 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200924 * + 1 because dns_answer_record_id starts at 0
925 * while number of answers is an integer and
926 * starts at 1.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200927 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200928 if (i + 1 == dns_p->header.ancount) {
Willy Tarreau963f7012020-07-22 17:00:45 +0200929 cause = DNS_RESP_CNAME_ERROR;
930 goto return_error;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200931 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200932
933 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100934 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Willy Tarreau963f7012020-07-22 17:00:45 +0200935 if (len == 0)
936 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200937
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200938 memcpy(dns_answer_record->target, tmpname, len);
939 dns_answer_record->target[len] = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200940 previous_dname = dns_answer_record->target;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200941 break;
942
Olivier Houchard8da5f982017-08-04 18:35:36 +0200943
944 case DNS_RTYPE_SRV:
Christopher Faulet67957bd2017-09-27 11:00:59 +0200945 /* Answer must contain :
Olivier Houchard8da5f982017-08-04 18:35:36 +0200946 * - 2 bytes for the priority
947 * - 2 bytes for the weight
948 * - 2 bytes for the port
949 * - the target hostname
950 */
Willy Tarreau963f7012020-07-22 17:00:45 +0200951 if (dns_answer_record->data_len <= 6)
952 goto invalid_resp;
953
Willy Tarreaud5370e12017-09-19 14:59:52 +0200954 dns_answer_record->priority = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200955 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +0200956 dns_answer_record->weight = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200957 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +0200958 dns_answer_record->port = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +0200959 reader += sizeof(uint16_t);
960 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100961 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Willy Tarreau963f7012020-07-22 17:00:45 +0200962 if (len == 0)
963 goto invalid_resp;
964
Olivier Houchard8da5f982017-08-04 18:35:36 +0200965 dns_answer_record->data_len = len;
966 memcpy(dns_answer_record->target, tmpname, len);
967 dns_answer_record->target[len] = 0;
968 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200969
Baptiste Assmann325137d2015-04-13 23:40:55 +0200970 case DNS_RTYPE_AAAA:
971 /* ipv6 is stored on 16 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +0200972 if (dns_answer_record->data_len != 16)
973 goto invalid_resp;
974
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200975 dns_answer_record->address.sa_family = AF_INET6;
976 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
977 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200978 break;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200979
Baptiste Assmann325137d2015-04-13 23:40:55 +0200980 } /* switch (record type) */
981
Christopher Faulet67957bd2017-09-27 11:00:59 +0200982 /* Increment the counter for number of records saved into our
983 * local response */
984 nb_saved_records++;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200985
Christopher Faulet67957bd2017-09-27 11:00:59 +0200986 /* Move forward dns_answer_record->data_len for analyzing next
987 * record in the response */
988 reader += ((dns_answer_record->type == DNS_RTYPE_SRV)
989 ? offset
990 : dns_answer_record->data_len);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200991
992 /* Lookup to see if we already had this entry */
Olivier Houchard8da5f982017-08-04 18:35:36 +0200993 found = 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200994 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
995 if (tmp_record->type != dns_answer_record->type)
996 continue;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200997
998 switch(tmp_record->type) {
999 case DNS_RTYPE_A:
1000 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
1001 &((struct sockaddr_in *)&tmp_record->address)->sin_addr,
1002 sizeof(in_addr_t)))
1003 found = 1;
1004 break;
1005
1006 case DNS_RTYPE_AAAA:
1007 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
1008 &((struct sockaddr_in6 *)&tmp_record->address)->sin6_addr,
1009 sizeof(struct in6_addr)))
1010 found = 1;
1011 break;
1012
Olivier Houchard8da5f982017-08-04 18:35:36 +02001013 case DNS_RTYPE_SRV:
1014 if (dns_answer_record->data_len == tmp_record->data_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001015 !dns_hostname_cmp(dns_answer_record->target, tmp_record->target, dns_answer_record->data_len) &&
Olivier Houchard8da5f982017-08-04 18:35:36 +02001016 dns_answer_record->port == tmp_record->port) {
1017 tmp_record->weight = dns_answer_record->weight;
1018 found = 1;
1019 }
1020 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001021
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001022 default:
1023 break;
1024 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001025
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001026 if (found == 1)
1027 break;
1028 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001029
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001030 if (found == 1) {
1031 tmp_record->last_seen = now.tv_sec;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001032 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001033 dns_answer_record = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001034 }
1035 else {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001036 dns_answer_record->last_seen = now.tv_sec;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001037 dns_answer_record->ar_item = NULL;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001038 LIST_ADDQ(&dns_p->answer_list, &dns_answer_record->list);
Willy Tarreau963f7012020-07-22 17:00:45 +02001039 dns_answer_record = NULL;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001040 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001041 } /* for i 0 to ancount */
1042
Christopher Faulet67957bd2017-09-27 11:00:59 +02001043 /* Save the number of records we really own */
Baptiste Assmann69fce672017-05-04 08:37:45 +02001044 dns_p->header.ancount = nb_saved_records;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001045
Baptiste Assmann37950c82020-02-19 01:08:51 +01001046 /* now parsing additional records for SRV queries only */
1047 if (dns_query->type != DNS_RTYPE_SRV)
1048 goto skip_parsing_additional_records;
Willy Tarreau963f7012020-07-22 17:00:45 +02001049
Jerome Magnin4002f8d2020-07-26 12:13:12 +02001050 /* if we find Authority records, just skip them */
1051 for (i = 0; i < dns_p->header.nscount; i++) {
1052 offset = 0;
1053 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE,
1054 &offset, 0);
1055 if (len == 0)
1056 continue;
1057
1058 if (reader + offset + 10 >= bufend)
1059 goto invalid_resp;
1060
1061 reader += offset;
1062 /* skip 2 bytes for class */
1063 reader += 2;
1064 /* skip 2 bytes for type */
1065 reader += 2;
1066 /* skip 4 bytes for ttl */
1067 reader += 4;
1068 /* read data len */
1069 len = reader[0] * 256 + reader[1];
1070 reader += 2;
1071
1072 if (reader + len >= bufend)
1073 goto invalid_resp;
1074
1075 reader += len;
1076 }
1077
Baptiste Assmann13a92322019-06-07 09:40:55 +02001078 nb_saved_records = 0;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001079 for (i = 0; i < dns_p->header.arcount; i++) {
1080 if (reader >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +02001081 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001082
1083 dns_answer_record = pool_alloc(dns_answer_item_pool);
1084 if (dns_answer_record == NULL)
Willy Tarreau963f7012020-07-22 17:00:45 +02001085 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001086
1087 offset = 0;
1088 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
1089
1090 if (len == 0) {
1091 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001092 dns_answer_record = NULL;
Baptiste Assmann37950c82020-02-19 01:08:51 +01001093 continue;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001094 }
1095
1096 memcpy(dns_answer_record->name, tmpname, len);
1097 dns_answer_record->name[len] = 0;
1098
1099 reader += offset;
Willy Tarreau963f7012020-07-22 17:00:45 +02001100 if (reader >= bufend)
1101 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001102
1103 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001104 if (reader + 2 > bufend)
1105 goto invalid_resp;
1106
Baptiste Assmann13a92322019-06-07 09:40:55 +02001107 dns_answer_record->type = reader[0] * 256 + reader[1];
1108 reader += 2;
1109
1110 /* 2 bytes for class (2) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001111 if (reader + 2 > bufend)
1112 goto invalid_resp;
1113
Baptiste Assmann13a92322019-06-07 09:40:55 +02001114 dns_answer_record->class = reader[0] * 256 + reader[1];
1115 reader += 2;
1116
1117 /* 4 bytes for ttl (4) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001118 if (reader + 4 > bufend)
1119 goto invalid_resp;
1120
Baptiste Assmann13a92322019-06-07 09:40:55 +02001121 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
1122 + reader[2] * 256 + reader[3];
1123 reader += 4;
1124
1125 /* Now reading data len */
Willy Tarreau963f7012020-07-22 17:00:45 +02001126 if (reader + 2 > bufend)
1127 goto invalid_resp;
1128
Baptiste Assmann13a92322019-06-07 09:40:55 +02001129 dns_answer_record->data_len = reader[0] * 256 + reader[1];
1130
1131 /* Move forward 2 bytes for data len */
1132 reader += 2;
1133
Willy Tarreau963f7012020-07-22 17:00:45 +02001134 if (reader + dns_answer_record->data_len > bufend)
1135 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001136
1137 /* Analyzing record content */
1138 switch (dns_answer_record->type) {
1139 case DNS_RTYPE_A:
1140 /* ipv4 is stored on 4 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +02001141 if (dns_answer_record->data_len != 4)
1142 goto invalid_resp;
1143
Baptiste Assmann13a92322019-06-07 09:40:55 +02001144 dns_answer_record->address.sa_family = AF_INET;
1145 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
1146 reader, dns_answer_record->data_len);
1147 break;
1148
1149 case DNS_RTYPE_AAAA:
1150 /* ipv6 is stored on 16 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +02001151 if (dns_answer_record->data_len != 16)
1152 goto invalid_resp;
1153
Baptiste Assmann13a92322019-06-07 09:40:55 +02001154 dns_answer_record->address.sa_family = AF_INET6;
1155 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
1156 reader, dns_answer_record->data_len);
1157 break;
1158
1159 default:
1160 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001161 dns_answer_record = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001162 continue;
1163
1164 } /* switch (record type) */
1165
1166 /* Increment the counter for number of records saved into our
1167 * local response */
1168 nb_saved_records++;
1169
1170 /* Move forward dns_answer_record->data_len for analyzing next
1171 * record in the response */
1172 reader += ((dns_answer_record->type == DNS_RTYPE_SRV)
1173 ? offset
1174 : dns_answer_record->data_len);
1175
1176 /* Lookup to see if we already had this entry */
1177 found = 0;
1178 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
1179 if (tmp_record->type != dns_answer_record->type)
1180 continue;
1181
1182 switch(tmp_record->type) {
1183 case DNS_RTYPE_A:
1184 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
1185 &((struct sockaddr_in *)&tmp_record->address)->sin_addr,
1186 sizeof(in_addr_t)))
1187 found = 1;
1188 break;
1189
1190 case DNS_RTYPE_AAAA:
1191 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
1192 &((struct sockaddr_in6 *)&tmp_record->address)->sin6_addr,
1193 sizeof(struct in6_addr)))
1194 found = 1;
1195 break;
1196
1197 default:
1198 break;
1199 }
1200
1201 if (found == 1)
1202 break;
1203 }
1204
1205 if (found == 1) {
1206 tmp_record->last_seen = now.tv_sec;
1207 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001208 dns_answer_record = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001209 }
1210 else {
1211 dns_answer_record->last_seen = now.tv_sec;
1212 dns_answer_record->ar_item = NULL;
1213
1214 // looking for the SRV record in the response list linked to this additional record
1215 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
1216 if ( !(
1217 (tmp_record->type == DNS_RTYPE_SRV) &&
1218 (tmp_record->ar_item == NULL) &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001219 (dns_hostname_cmp(tmp_record->target, dns_answer_record->name, tmp_record->data_len) == 0)
Baptiste Assmann13a92322019-06-07 09:40:55 +02001220 )
1221 )
1222 continue;
1223 tmp_record->ar_item = dns_answer_record;
1224 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02001225
1226 LIST_ADDQ(&dns_p->ar_list, &dns_answer_record->list);
Willy Tarreau963f7012020-07-22 17:00:45 +02001227 dns_answer_record = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001228 }
1229 } /* for i 0 to arcount */
1230
Baptiste Assmann37950c82020-02-19 01:08:51 +01001231 skip_parsing_additional_records:
1232
Baptiste Assmann13a92322019-06-07 09:40:55 +02001233 /* Save the number of records we really own */
1234 dns_p->header.arcount = nb_saved_records;
1235
Christopher Faulet67957bd2017-09-27 11:00:59 +02001236 dns_check_dns_response(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001237 return DNS_RESP_VALID;
Willy Tarreau963f7012020-07-22 17:00:45 +02001238
1239 invalid_resp:
1240 cause = DNS_RESP_INVALID;
1241
1242 return_error:
1243 pool_free(dns_answer_item_pool, dns_answer_record);
1244 return cause;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001245}
1246
Christopher Faulet67957bd2017-09-27 11:00:59 +02001247/* Searches dn_name resolution in resp.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001248 * If existing IP not found, return the first IP matching family_priority,
1249 * otherwise, first ip found
1250 * The following tasks are the responsibility of the caller:
Baptiste Assmann3cf7f982016-04-17 22:43:26 +02001251 * - <dns_p> contains an error free DNS response
Baptiste Assmann325137d2015-04-13 23:40:55 +02001252 * For both cases above, dns_validate_dns_response is required
1253 * returns one of the DNS_UPD_* code
1254 */
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02001255int dns_get_ip_from_response(struct dns_response_packet *dns_p,
Baptiste Assmann42746372017-05-03 12:12:02 +02001256 struct dns_options *dns_opts, void *currentip,
Thierry Fournierada34842016-02-17 21:25:09 +01001257 short currentip_sin_family,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02001258 void **newip, short *newip_sin_family,
1259 void *owner)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001260{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001261 struct dns_answer_item *record;
Thierry Fournierada34842016-02-17 21:25:09 +01001262 int family_priority;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001263 int currentip_found;
Baptiste Assmann3cf7f982016-04-17 22:43:26 +02001264 unsigned char *newip4, *newip6;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001265 int currentip_sel;
1266 int j;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001267 int score, max_score;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001268 int allowed_duplicated_ip;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001269
Christopher Faulet67957bd2017-09-27 11:00:59 +02001270 family_priority = dns_opts->family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001271 allowed_duplicated_ip = dns_opts->accept_duplicate_ip;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001272 *newip = newip4 = newip6 = NULL;
1273 currentip_found = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001274 *newip_sin_family = AF_UNSPEC;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001275 max_score = -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001276
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001277 /* Select an IP regarding configuration preference.
Joseph Herlant42cf6392018-11-15 10:33:28 -08001278 * Top priority is the preferred network ip version,
1279 * second priority is the preferred network.
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001280 * the last priority is the currently used IP,
1281 *
1282 * For these three priorities, a score is calculated. The
1283 * weight are:
Joseph Herlant42cf6392018-11-15 10:33:28 -08001284 * 8 - preferred ip version.
1285 * 4 - preferred network.
Baptistefc725902016-12-26 23:21:08 +01001286 * 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 +01001287 * 1 - current ip.
1288 * The result with the biggest score is returned.
1289 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001290
1291 list_for_each_entry(record, &dns_p->answer_list, list) {
1292 void *ip;
1293 unsigned char ip_type;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001294
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001295 if (record->type == DNS_RTYPE_A) {
1296 ip = &(((struct sockaddr_in *)&record->address)->sin_addr);
1297 ip_type = AF_INET;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001298 }
1299 else if (record->type == DNS_RTYPE_AAAA) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001300 ip_type = AF_INET6;
1301 ip = &(((struct sockaddr_in6 *)&record->address)->sin6_addr);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001302 }
1303 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001304 continue;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001305 score = 0;
1306
Joseph Herlant42cf6392018-11-15 10:33:28 -08001307 /* Check for preferred ip protocol. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001308 if (ip_type == family_priority)
Baptistefc725902016-12-26 23:21:08 +01001309 score += 8;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001310
Joseph Herlant42cf6392018-11-15 10:33:28 -08001311 /* Check for preferred network. */
Baptiste Assmann42746372017-05-03 12:12:02 +02001312 for (j = 0; j < dns_opts->pref_net_nb; j++) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001313
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001314 /* Compare only the same addresses class. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001315 if (dns_opts->pref_net[j].family != ip_type)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001316 continue;
1317
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001318 if ((ip_type == AF_INET &&
1319 in_net_ipv4(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001320 &dns_opts->pref_net[j].mask.in4,
1321 &dns_opts->pref_net[j].addr.in4)) ||
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001322 (ip_type == AF_INET6 &&
1323 in_net_ipv6(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001324 &dns_opts->pref_net[j].mask.in6,
1325 &dns_opts->pref_net[j].addr.in6))) {
Baptistefc725902016-12-26 23:21:08 +01001326 score += 4;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001327 break;
1328 }
1329 }
1330
Christopher Faulet67957bd2017-09-27 11:00:59 +02001331 /* Check if the IP found in the record is already affected to a
Baptiste Assmann84221b42018-06-22 13:03:50 +02001332 * member of a group. If not, the score should be incremented
Christopher Faulet67957bd2017-09-27 11:00:59 +02001333 * by 2. */
Baptiste Assmann84221b42018-06-22 13:03:50 +02001334 if (owner && snr_check_ip_callback(owner, ip, &ip_type)) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001335 if (!allowed_duplicated_ip) {
1336 continue;
1337 }
Baptiste Assmann84221b42018-06-22 13:03:50 +02001338 } else {
1339 score += 2;
1340 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001341
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001342 /* Check for current ip matching. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001343 if (ip_type == currentip_sin_family &&
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001344 ((currentip_sin_family == AF_INET &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001345 !memcmp(ip, currentip, 4)) ||
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001346 (currentip_sin_family == AF_INET6 &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001347 !memcmp(ip, currentip, 16)))) {
1348 score++;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001349 currentip_sel = 1;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001350 }
1351 else
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001352 currentip_sel = 0;
1353
1354 /* Keep the address if the score is better than the previous
Christopher Faulet67957bd2017-09-27 11:00:59 +02001355 * score. The maximum score is 15, if this value is reached, we
1356 * break the parsing. Implicitly, this score is reached the ip
1357 * selected is the current ip. */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001358 if (score > max_score) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001359 if (ip_type == AF_INET)
1360 newip4 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001361 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001362 newip6 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001363 currentip_found = currentip_sel;
Baptistefc725902016-12-26 23:21:08 +01001364 if (score == 15)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001365 return DNS_UPD_NO;
1366 max_score = score;
1367 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001368 } /* list for each record entries */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001369
Christopher Faulet67957bd2017-09-27 11:00:59 +02001370 /* No IP found in the response */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001371 if (!newip4 && !newip6)
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001372 return DNS_UPD_NO_IP_FOUND;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001373
Christopher Faulet67957bd2017-09-27 11:00:59 +02001374 /* Case when the caller looks first for an IPv4 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001375 if (family_priority == AF_INET) {
1376 if (newip4) {
1377 *newip = newip4;
1378 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001379 }
1380 else if (newip6) {
1381 *newip = newip6;
1382 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001383 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001384 if (!currentip_found)
1385 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001386 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001387 /* Case when the caller looks first for an IPv6 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001388 else if (family_priority == AF_INET6) {
1389 if (newip6) {
1390 *newip = newip6;
1391 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001392 }
1393 else if (newip4) {
1394 *newip = newip4;
1395 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001396 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001397 if (!currentip_found)
1398 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001399 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001400 /* Case when the caller have no preference (we prefer IPv6) */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001401 else if (family_priority == AF_UNSPEC) {
1402 if (newip6) {
1403 *newip = newip6;
1404 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001405 }
1406 else if (newip4) {
1407 *newip = newip4;
1408 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001409 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001410 if (!currentip_found)
1411 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001412 }
1413
Christopher Faulet67957bd2017-09-27 11:00:59 +02001414 /* No reason why we should change the server's IP address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001415 return DNS_UPD_NO;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001416
Christopher Faulet67957bd2017-09-27 11:00:59 +02001417 not_found:
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001418 list_for_each_entry(record, &dns_p->answer_list, list) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001419 /* Move the first record to the end of the list, for internal
1420 * round robin */
1421 LIST_DEL(&record->list);
1422 LIST_ADDQ(&dns_p->answer_list, &record->list);
1423 break;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001424 }
1425 return DNS_UPD_SRVIP_NOT_FOUND;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001426}
1427
Christopher Faulet67957bd2017-09-27 11:00:59 +02001428/* Turns a domain name label into a string.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001429 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001430 * <dn> must be a null-terminated string. <dn_len> must include the terminating
1431 * null byte. <str> must be allocated and its size must be passed in <str_len>.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001432 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001433 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1434 * <str> (including the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001435 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001436int dns_dn_label_to_str(const char *dn, int dn_len, char *str, int str_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001437{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001438 char *ptr;
1439 int i, sz;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001440
Christopher Faulet67957bd2017-09-27 11:00:59 +02001441 if (str_len < dn_len - 1)
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001442 return -1;
1443
Christopher Faulet67957bd2017-09-27 11:00:59 +02001444 ptr = str;
1445 for (i = 0; i < dn_len-1; ++i) {
1446 sz = dn[i];
1447 if (i)
1448 *ptr++ = '.';
1449 memcpy(ptr, dn+i+1, sz);
1450 ptr += sz;
1451 i += sz;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001452 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001453 *ptr++ = '\0';
1454 return (ptr - str);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001455}
1456
Christopher Faulet67957bd2017-09-27 11:00:59 +02001457/* Turns a string into domain name label: www.haproxy.org into 3www7haproxy3org
1458 *
1459 * <str> must be a null-terminated string. <str_len> must include the
1460 * terminating null byte. <dn> buffer must be allocated and its size must be
1461 * passed in <dn_len>.
1462 *
1463 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1464 * <dn> (excluding the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001465 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001466int dns_str_to_dn_label(const char *str, int str_len, char *dn, int dn_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001467{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001468 int i, offset;
1469
Christopher Faulet67957bd2017-09-27 11:00:59 +02001470 if (dn_len < str_len + 1)
1471 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001472
Christopher Faulet67957bd2017-09-27 11:00:59 +02001473 /* First byte of dn will be used to store the length of the first
1474 * label */
1475 offset = 0;
1476 for (i = 0; i < str_len; ++i) {
1477 if (str[i] == '.') {
1478 /* 2 or more consecutive dots is invalid */
1479 if (i == offset)
1480 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001481
Lukas Tribus81725b82020-02-27 15:47:24 +01001482 /* ignore trailing dot */
1483 if (i + 2 == str_len) {
1484 i++;
1485 break;
1486 }
1487
Christopher Faulet67957bd2017-09-27 11:00:59 +02001488 dn[offset] = (i - offset);
1489 offset = i+1;
1490 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001491 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001492 dn[i+1] = str[i];
Baptiste Assmann325137d2015-04-13 23:40:55 +02001493 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001494 dn[offset] = (i - offset - 1);
1495 dn[i] = '\0';
1496 return i;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001497}
1498
Christopher Faulet67957bd2017-09-27 11:00:59 +02001499/* Validates host name:
Baptiste Assmann325137d2015-04-13 23:40:55 +02001500 * - total size
1501 * - each label size individually
1502 * returns:
1503 * 0 in case of error. If <err> is not NULL, an error message is stored there.
1504 * 1 when no error. <err> is left unaffected.
1505 */
1506int dns_hostname_validation(const char *string, char **err)
1507{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001508 int i;
1509
1510 if (strlen(string) > DNS_MAX_NAME_SIZE) {
1511 if (err)
1512 *err = DNS_TOO_LONG_FQDN;
1513 return 0;
1514 }
1515
William Dauchyaecd5dc2020-01-26 19:52:34 +01001516 while (*string) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001517 i = 0;
William Dauchyaecd5dc2020-01-26 19:52:34 +01001518 while (*string && *string != '.' && i < DNS_MAX_LABEL_SIZE) {
1519 if (!(*string == '-' || *string == '_' ||
1520 (*string >= 'a' && *string <= 'z') ||
1521 (*string >= 'A' && *string <= 'Z') ||
1522 (*string >= '0' && *string <= '9'))) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001523 if (err)
1524 *err = DNS_INVALID_CHARACTER;
1525 return 0;
1526 }
William Dauchyaecd5dc2020-01-26 19:52:34 +01001527 i++;
1528 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001529 }
1530
William Dauchyaecd5dc2020-01-26 19:52:34 +01001531 if (!(*string))
1532 break;
1533
1534 if (*string != '.' && i >= DNS_MAX_LABEL_SIZE) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001535 if (err)
1536 *err = DNS_LABEL_TOO_LONG;
1537 return 0;
1538 }
1539
William Dauchyaecd5dc2020-01-26 19:52:34 +01001540 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001541 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001542 return 1;
1543}
1544
Christopher Faulet67957bd2017-09-27 11:00:59 +02001545/* Picks up an available resolution from the different resolution list
1546 * associated to a resolvers section, in this order:
1547 * 1. check in resolutions.curr for the same hostname and query_type
1548 * 2. check in resolutions.wait for the same hostname and query_type
1549 * 3. Get a new resolution from resolution pool
1550 *
1551 * Returns an available resolution, NULL if none found.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001552 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001553static struct dns_resolution *dns_pick_resolution(struct dns_resolvers *resolvers,
1554 char **hostname_dn, int hostname_dn_len,
1555 int query_type)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001556{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001557 struct dns_resolution *res;
1558
1559 if (!*hostname_dn)
1560 goto from_pool;
1561
1562 /* Search for same hostname and query type in resolutions.curr */
1563 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
1564 if (!res->hostname_dn)
1565 continue;
1566 if ((query_type == res->prefered_query_type) &&
1567 hostname_dn_len == res->hostname_dn_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001568 !dns_hostname_cmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +02001569 return res;
1570 }
1571
1572 /* Search for same hostname and query type in resolutions.wait */
1573 list_for_each_entry(res, &resolvers->resolutions.wait, list) {
1574 if (!res->hostname_dn)
1575 continue;
1576 if ((query_type == res->prefered_query_type) &&
1577 hostname_dn_len == res->hostname_dn_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001578 !dns_hostname_cmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +02001579 return res;
1580 }
1581
1582 from_pool:
1583 /* No resolution could be found, so let's allocate a new one */
Willy Tarreaubafbe012017-11-24 17:34:44 +01001584 res = pool_alloc(dns_resolution_pool);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001585 if (res) {
1586 memset(res, 0, sizeof(*res));
1587 res->resolvers = resolvers;
1588 res->uuid = resolution_uuid;
1589 res->status = RSLV_STATUS_NONE;
1590 res->step = RSLV_STEP_NONE;
1591 res->last_valid = now_ms;
1592
1593 LIST_INIT(&res->requesters);
1594 LIST_INIT(&res->response.answer_list);
Baptiste Assmann13a92322019-06-07 09:40:55 +02001595 LIST_INIT(&res->response.ar_list);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001596
1597 res->prefered_query_type = query_type;
1598 res->query_type = query_type;
1599 res->hostname_dn = *hostname_dn;
1600 res->hostname_dn_len = hostname_dn_len;
1601
1602 ++resolution_uuid;
1603
1604 /* Move the resolution to the resolvers wait queue */
1605 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1606 }
1607 return res;
1608}
1609
1610/* Releases a resolution from its requester(s) and move it back to the pool */
1611static void dns_free_resolution(struct dns_resolution *resolution)
1612{
1613 struct dns_requester *req, *reqback;
Christopher Faulet010ab352020-07-22 15:55:49 +02001614 struct dns_answer_item *item, *itemback;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001615
1616 /* clean up configuration */
1617 dns_reset_resolution(resolution);
1618 resolution->hostname_dn = NULL;
1619 resolution->hostname_dn_len = 0;
1620
1621 list_for_each_entry_safe(req, reqback, &resolution->requesters, list) {
1622 LIST_DEL(&req->list);
1623 req->resolution = NULL;
1624 }
1625
Christopher Faulet010ab352020-07-22 15:55:49 +02001626 list_for_each_entry_safe(item, itemback, &resolution->response.ar_list, list) {
1627 LIST_DEL(&item->list);
1628 pool_free(dns_answer_item_pool, item);
1629 }
1630
1631 list_for_each_entry_safe(item, itemback, &resolution->response.answer_list, list) {
1632 LIST_DEL(&item->list);
1633 pool_free(dns_answer_item_pool, item);
1634 }
1635
Christopher Faulet67957bd2017-09-27 11:00:59 +02001636 LIST_DEL(&resolution->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001637 pool_free(dns_resolution_pool, resolution);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001638}
1639
1640/* Links a requester (a server or a dns_srvrq) with a resolution. It returns 0
1641 * on success, -1 otherwise.
1642 */
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001643int dns_link_resolution(void *requester, int requester_type, int requester_locked)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001644{
1645 struct dns_resolution *res = NULL;
1646 struct dns_requester *req;
1647 struct dns_resolvers *resolvers;
1648 struct server *srv = NULL;
1649 struct dns_srvrq *srvrq = NULL;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001650 struct stream *stream = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001651 char **hostname_dn;
1652 int hostname_dn_len, query_type;
1653
1654 switch (requester_type) {
1655 case OBJ_TYPE_SERVER:
1656 srv = (struct server *)requester;
1657 hostname_dn = &srv->hostname_dn;
1658 hostname_dn_len = srv->hostname_dn_len;
1659 resolvers = srv->resolvers;
1660 query_type = ((srv->dns_opts.family_prio == AF_INET)
1661 ? DNS_RTYPE_A
1662 : DNS_RTYPE_AAAA);
1663 break;
1664
1665 case OBJ_TYPE_SRVRQ:
1666 srvrq = (struct dns_srvrq *)requester;
1667 hostname_dn = &srvrq->hostname_dn;
1668 hostname_dn_len = srvrq->hostname_dn_len;
1669 resolvers = srvrq->resolvers;
1670 query_type = DNS_RTYPE_SRV;
1671 break;
1672
Baptiste Assmann333939c2019-01-21 08:34:50 +01001673 case OBJ_TYPE_STREAM:
1674 stream = (struct stream *)requester;
1675 hostname_dn = &stream->dns_ctx.hostname_dn;
1676 hostname_dn_len = stream->dns_ctx.hostname_dn_len;
1677 resolvers = stream->dns_ctx.parent->arg.dns.resolvers;
Christopher Fauleta4168432020-01-24 18:08:42 +01001678 query_type = ((stream->dns_ctx.parent->arg.dns.dns_opts->family_prio == AF_INET)
Baptiste Assmann333939c2019-01-21 08:34:50 +01001679 ? DNS_RTYPE_A
1680 : DNS_RTYPE_AAAA);
1681 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001682 default:
1683 goto err;
1684 }
1685
1686 /* Get a resolution from the resolvers' wait queue or pool */
1687 if ((res = dns_pick_resolution(resolvers, hostname_dn, hostname_dn_len, query_type)) == NULL)
1688 goto err;
1689
1690 if (srv) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001691 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001692 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001693 if (srv->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001694 if ((req = pool_alloc(dns_requester_pool)) == NULL) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001695 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001696 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001697 goto err;
Willy Tarreau5ec84572017-11-05 10:35:57 +01001698 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001699 req->owner = &srv->obj_type;
1700 srv->dns_requester = req;
1701 }
1702 else
1703 req = srv->dns_requester;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001704 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001705 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001706
1707 req->requester_cb = snr_resolution_cb;
1708 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001709 }
1710 else if (srvrq) {
1711 if (srvrq->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001712 if ((req = pool_alloc(dns_requester_pool)) == NULL)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001713 goto err;
1714 req->owner = &srvrq->obj_type;
1715 srvrq->dns_requester = req;
1716 }
1717 else
1718 req = srvrq->dns_requester;
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001719
1720 req->requester_cb = snr_resolution_cb;
1721 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001722 }
Baptiste Assmann333939c2019-01-21 08:34:50 +01001723 else if (stream) {
1724 if (stream->dns_ctx.dns_requester == NULL) {
1725 if ((req = pool_alloc(dns_requester_pool)) == NULL)
1726 goto err;
1727 req->owner = &stream->obj_type;
1728 stream->dns_ctx.dns_requester = req;
1729 }
1730 else
1731 req = stream->dns_ctx.dns_requester;
1732
1733 req->requester_cb = act_resolution_cb;
1734 req->requester_error_cb = act_resolution_error_cb;
1735 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001736 else
1737 goto err;
1738
1739 req->resolution = res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001740
1741 LIST_ADDQ(&res->requesters, &req->list);
1742 return 0;
1743
1744 err:
1745 if (res && LIST_ISEMPTY(&res->requesters))
1746 dns_free_resolution(res);
1747 return -1;
1748}
1749
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001750/* Removes a requester from a DNS resolution. It takes takes care of all the
Christopher Faulet67957bd2017-09-27 11:00:59 +02001751 * consequences. It also cleans up some parameters from the requester.
1752 */
1753void dns_unlink_resolution(struct dns_requester *requester)
1754{
1755 struct dns_resolution *res;
1756 struct dns_requester *req;
1757
1758 /* Nothing to do */
1759 if (!requester || !requester->resolution)
1760 return;
1761 res = requester->resolution;
1762
1763 /* Clean up the requester */
1764 LIST_DEL(&requester->list);
1765 requester->resolution = NULL;
1766
1767 /* We need to find another requester linked on this resolution */
1768 if (!LIST_ISEMPTY(&res->requesters))
1769 req = LIST_NEXT(&res->requesters, struct dns_requester *, list);
1770 else {
1771 dns_free_resolution(res);
1772 return;
1773 }
1774
1775 /* Move hostname_dn related pointers to the next requester */
1776 switch (obj_type(req->owner)) {
1777 case OBJ_TYPE_SERVER:
Willy Tarreau433c16f2018-09-20 11:15:27 +02001778 res->hostname_dn = __objt_server(req->owner)->hostname_dn;
1779 res->hostname_dn_len = __objt_server(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001780 break;
1781 case OBJ_TYPE_SRVRQ:
Willy Tarreau433c16f2018-09-20 11:15:27 +02001782 res->hostname_dn = __objt_dns_srvrq(req->owner)->hostname_dn;
1783 res->hostname_dn_len = __objt_dns_srvrq(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001784 break;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001785 case OBJ_TYPE_STREAM:
1786 res->hostname_dn = __objt_stream(req->owner)->dns_ctx.hostname_dn;
1787 res->hostname_dn_len = __objt_stream(req->owner)->dns_ctx.hostname_dn_len;
1788 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001789 default:
1790 res->hostname_dn = NULL;
1791 res->hostname_dn_len = 0;
1792 break;
1793 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001794}
1795
Christopher Faulet67957bd2017-09-27 11:00:59 +02001796/* Called when a network IO is generated on a name server socket for an incoming
1797 * packet. It performs the following actions:
1798 * - check if the packet requires processing (not outdated resolution)
1799 * - ensure the DNS packet received is valid and call requester's callback
1800 * - call requester's error callback if invalid response
1801 * - check the dn_name in the packet against the one sent
1802 */
1803static void dns_resolve_recv(struct dgram_conn *dgram)
1804{
1805 struct dns_nameserver *ns, *tmpns;
1806 struct dns_resolvers *resolvers;
1807 struct dns_resolution *res;
1808 struct dns_query_item *query;
1809 unsigned char buf[DNS_MAX_UDP_MESSAGE + 1];
1810 unsigned char *bufend;
1811 int fd, buflen, dns_resp;
1812 int max_answer_records;
1813 unsigned short query_id;
1814 struct eb32_node *eb;
1815 struct dns_requester *req;
1816
1817 fd = dgram->t.sock.fd;
1818
1819 /* check if ready for reading */
1820 if (!fd_recv_ready(fd))
1821 return;
1822
1823 /* no need to go further if we can't retrieve the nameserver */
Willy Tarreau1c759952019-12-10 18:38:09 +01001824 if ((ns = dgram->owner) == NULL) {
1825 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
1826 fd_stop_recv(fd);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001827 return;
Willy Tarreau1c759952019-12-10 18:38:09 +01001828 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001829
1830 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001831 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001832
1833 /* process all pending input messages */
Willy Tarreau1c759952019-12-10 18:38:09 +01001834 while (fd_recv_ready(fd)) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001835 /* read message received */
1836 memset(buf, '\0', resolvers->accepted_payload_size + 1);
1837 if ((buflen = recv(fd, (char*)buf , resolvers->accepted_payload_size + 1, 0)) < 0) {
Willy Tarreau1c759952019-12-10 18:38:09 +01001838 /* FIXME : for now we consider EAGAIN only, but at
1839 * least we purge sticky errors that would cause us to
1840 * be called in loops.
1841 */
1842 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Christopher Faulet67957bd2017-09-27 11:00:59 +02001843 fd_cant_recv(fd);
1844 break;
1845 }
1846
1847 /* message too big */
1848 if (buflen > resolvers->accepted_payload_size) {
1849 ns->counters.too_big++;
1850 continue;
1851 }
1852
1853 /* initializing variables */
1854 bufend = buf + buflen; /* pointer to mark the end of the buffer */
1855
1856 /* read the query id from the packet (16 bits) */
1857 if (buf + 2 > bufend) {
1858 ns->counters.invalid++;
1859 continue;
1860 }
1861 query_id = dns_response_get_query_id(buf);
1862
1863 /* search the query_id in the pending resolution tree */
1864 eb = eb32_lookup(&resolvers->query_ids, query_id);
1865 if (eb == NULL) {
1866 /* unknown query id means an outdated response and can be safely ignored */
1867 ns->counters.outdated++;
1868 continue;
1869 }
1870
William Dauchybe8a3872019-11-27 23:32:41 +01001871 /* known query id means a resolution in progress */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001872 res = eb32_entry(eb, struct dns_resolution, qid);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001873 /* number of responses received */
1874 res->nb_responses++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001875
Christopher Faulet67957bd2017-09-27 11:00:59 +02001876 max_answer_records = (resolvers->accepted_payload_size - DNS_HEADER_SIZE) / DNS_MIN_RECORD_SIZE;
1877 dns_resp = dns_validate_dns_response(buf, bufend, res, max_answer_records);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001878
Christopher Faulet67957bd2017-09-27 11:00:59 +02001879 switch (dns_resp) {
1880 case DNS_RESP_VALID:
1881 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001882
Christopher Faulet67957bd2017-09-27 11:00:59 +02001883 case DNS_RESP_INVALID:
1884 case DNS_RESP_QUERY_COUNT_ERROR:
1885 case DNS_RESP_WRONG_NAME:
1886 res->status = RSLV_STATUS_INVALID;
1887 ns->counters.invalid++;
1888 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001889
Christopher Faulet67957bd2017-09-27 11:00:59 +02001890 case DNS_RESP_NX_DOMAIN:
1891 res->status = RSLV_STATUS_NX;
1892 ns->counters.nx++;
1893 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001894
Christopher Faulet67957bd2017-09-27 11:00:59 +02001895 case DNS_RESP_REFUSED:
1896 res->status = RSLV_STATUS_REFUSED;
1897 ns->counters.refused++;
1898 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001899
Christopher Faulet67957bd2017-09-27 11:00:59 +02001900 case DNS_RESP_ANCOUNT_ZERO:
1901 res->status = RSLV_STATUS_OTHER;
1902 ns->counters.any_err++;
1903 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001904
Christopher Faulet67957bd2017-09-27 11:00:59 +02001905 case DNS_RESP_CNAME_ERROR:
1906 res->status = RSLV_STATUS_OTHER;
1907 ns->counters.cname_error++;
1908 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001909
Christopher Faulet67957bd2017-09-27 11:00:59 +02001910 case DNS_RESP_TRUNCATED:
1911 res->status = RSLV_STATUS_OTHER;
1912 ns->counters.truncated++;
1913 break;
Baptiste Assmanne70bc052017-08-21 16:51:09 +02001914
Christopher Faulet67957bd2017-09-27 11:00:59 +02001915 case DNS_RESP_NO_EXPECTED_RECORD:
1916 case DNS_RESP_ERROR:
1917 case DNS_RESP_INTERNAL:
1918 res->status = RSLV_STATUS_OTHER;
1919 ns->counters.other++;
1920 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001921 }
1922
Christopher Faulet67957bd2017-09-27 11:00:59 +02001923 /* Wait all nameservers response to handle errors */
1924 if (dns_resp != DNS_RESP_VALID && res->nb_responses < resolvers->nb_nameservers)
1925 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001926
Christopher Faulet67957bd2017-09-27 11:00:59 +02001927 /* Process error codes */
1928 if (dns_resp != DNS_RESP_VALID) {
1929 if (res->prefered_query_type != res->query_type) {
1930 /* The fallback on the query type was already performed,
1931 * so check the try counter. If it falls to 0, we can
1932 * report an error. Else, wait the next attempt. */
1933 if (!res->try)
1934 goto report_res_error;
1935 }
1936 else {
1937 /* Fallback from A to AAAA or the opposite and re-send
1938 * the resolution immediately. try counter is not
1939 * decremented. */
1940 if (res->prefered_query_type == DNS_RTYPE_A) {
1941 res->query_type = DNS_RTYPE_AAAA;
1942 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001943 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001944 else if (res->prefered_query_type == DNS_RTYPE_AAAA) {
1945 res->query_type = DNS_RTYPE_A;
1946 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001947 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001948 }
1949 continue;
1950 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02001951
Christopher Faulet67957bd2017-09-27 11:00:59 +02001952 /* Now let's check the query's dname corresponds to the one we
1953 * sent. We can check only the first query of the list. We send
1954 * one query at a time so we get one query in the response */
1955 query = LIST_NEXT(&res->response.query_list, struct dns_query_item *, list);
Olivier Houchardb17b8842020-04-01 18:30:27 +02001956 if (query && dns_hostname_cmp(query->name, res->hostname_dn, res->hostname_dn_len) != 0) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001957 dns_resp = DNS_RESP_WRONG_NAME;
1958 ns->counters.other++;
1959 goto report_res_error;
1960 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001961
Christopher Faulet67957bd2017-09-27 11:00:59 +02001962 /* So the resolution succeeded */
1963 res->status = RSLV_STATUS_VALID;
1964 res->last_valid = now_ms;
1965 ns->counters.valid++;
1966 goto report_res_success;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001967
Christopher Faulet67957bd2017-09-27 11:00:59 +02001968 report_res_error:
1969 list_for_each_entry(req, &res->requesters, list)
1970 req->requester_error_cb(req, dns_resp);
1971 dns_reset_resolution(res);
1972 LIST_DEL(&res->list);
1973 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1974 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001975
Christopher Faulet67957bd2017-09-27 11:00:59 +02001976 report_res_success:
1977 /* Only the 1rst requester s managed by the server, others are
1978 * from the cache */
1979 tmpns = ns;
1980 list_for_each_entry(req, &res->requesters, list) {
Olivier Houchard28381072017-11-06 17:30:28 +01001981 struct server *s = objt_server(req->owner);
1982
1983 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001984 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001985 req->requester_cb(req, tmpns);
Olivier Houchard28381072017-11-06 17:30:28 +01001986 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001987 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001988 tmpns = NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001989 }
Baptiste Assmann42746372017-05-03 12:12:02 +02001990
Christopher Faulet67957bd2017-09-27 11:00:59 +02001991 dns_reset_resolution(res);
1992 LIST_DEL(&res->list);
1993 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1994 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001995 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001996 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001997 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001998}
William Lallemand69e96442016-11-19 00:58:54 +01001999
Christopher Faulet67957bd2017-09-27 11:00:59 +02002000/* Called when a resolvers network socket is ready to send data */
2001static void dns_resolve_send(struct dgram_conn *dgram)
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002002{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002003 struct dns_resolvers *resolvers;
2004 struct dns_nameserver *ns;
2005 struct dns_resolution *res;
2006 int fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002007
Christopher Faulet67957bd2017-09-27 11:00:59 +02002008 fd = dgram->t.sock.fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002009
Christopher Faulet67957bd2017-09-27 11:00:59 +02002010 /* check if ready for sending */
2011 if (!fd_send_ready(fd))
2012 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002013
Christopher Faulet67957bd2017-09-27 11:00:59 +02002014 /* we don't want/need to be waked up any more for sending */
2015 fd_stop_send(fd);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002016
Christopher Faulet67957bd2017-09-27 11:00:59 +02002017 /* no need to go further if we can't retrieve the nameserver */
2018 if ((ns = dgram->owner) == NULL)
2019 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002020
Christopher Faulet67957bd2017-09-27 11:00:59 +02002021 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002022 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02002023
Christopher Faulet67957bd2017-09-27 11:00:59 +02002024 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02002025 int ret, len;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002026
Christopher Faulet67957bd2017-09-27 11:00:59 +02002027 if (res->nb_queries == resolvers->nb_nameservers)
2028 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002029
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02002030 len = dns_build_query(res->query_id, res->query_type,
2031 resolvers->accepted_payload_size,
2032 res->hostname_dn, res->hostname_dn_len,
2033 trash.area, trash.size);
2034 if (len == -1)
Christopher Faulet67957bd2017-09-27 11:00:59 +02002035 goto snd_error;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002036
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02002037 ret = send(fd, trash.area, len, 0);
Willy Tarreau0eae6322019-12-20 11:18:54 +01002038 if (ret != len) {
2039 if (ret == -1 && errno == EAGAIN) {
2040 /* retry once the socket is ready */
2041 fd_cant_send(fd);
2042 continue;
2043 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002044 goto snd_error;
Willy Tarreau0eae6322019-12-20 11:18:54 +01002045 }
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002046
Christopher Faulet67957bd2017-09-27 11:00:59 +02002047 ns->counters.sent++;
2048 res->nb_queries++;
2049 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002050
Christopher Faulet67957bd2017-09-27 11:00:59 +02002051 snd_error:
2052 ns->counters.snd_error++;
2053 res->nb_queries++;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002054 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002055 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002056}
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002057
Christopher Faulet67957bd2017-09-27 11:00:59 +02002058/* Processes DNS resolution. First, it checks the active list to detect expired
2059 * resolutions and retry them if possible. Else a timeout is reported. Then, it
2060 * checks the wait list to trigger new resolutions.
2061 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002062static struct task *dns_process_resolvers(struct task *t, void *context, unsigned short state)
Christopher Faulet67957bd2017-09-27 11:00:59 +02002063{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002064 struct dns_resolvers *resolvers = context;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002065 struct dns_resolution *res, *resback;
2066 int exp;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002067
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002068 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02002069
Christopher Faulet67957bd2017-09-27 11:00:59 +02002070 /* Handle all expired resolutions from the active list */
2071 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
2072 /* When we find the first resolution in the future, then we can
2073 * stop here */
2074 exp = tick_add(res->last_query, resolvers->timeout.retry);
2075 if (!tick_is_expired(exp, now_ms))
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002076 break;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002077
Christopher Faulet67957bd2017-09-27 11:00:59 +02002078 /* If current resolution has been tried too many times and
2079 * finishes in timeout we update its status and remove it from
2080 * the list */
2081 if (!res->try) {
2082 struct dns_requester *req;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002083
Christopher Faulet67957bd2017-09-27 11:00:59 +02002084 /* Notify the result to the requesters */
2085 if (!res->nb_responses)
2086 res->status = RSLV_STATUS_TIMEOUT;
2087 list_for_each_entry(req, &res->requesters, list)
2088 req->requester_error_cb(req, res->status);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002089
Christopher Faulet67957bd2017-09-27 11:00:59 +02002090 /* Clean up resolution info and remove it from the
2091 * current list */
2092 dns_reset_resolution(res);
2093 LIST_DEL(&res->list);
2094 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
William Lallemand69e96442016-11-19 00:58:54 +01002095 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002096 else {
2097 /* Otherwise resend the DNS query and requeue the resolution */
2098 if (!res->nb_responses || res->prefered_query_type != res->query_type) {
2099 /* No response received (a real timeout) or fallback already done */
2100 res->query_type = res->prefered_query_type;
2101 res->try--;
2102 }
2103 else {
2104 /* Fallback from A to AAAA or the opposite and re-send
2105 * the resolution immediately. try counter is not
2106 * decremented. */
2107 if (res->prefered_query_type == DNS_RTYPE_A)
2108 res->query_type = DNS_RTYPE_AAAA;
2109 else if (res->prefered_query_type == DNS_RTYPE_AAAA)
2110 res->query_type = DNS_RTYPE_A;
2111 else
2112 res->try--;
2113 }
2114 dns_send_query(res);
William Lallemand69e96442016-11-19 00:58:54 +01002115 }
2116 }
William Lallemand69e96442016-11-19 00:58:54 +01002117
Christopher Faulet67957bd2017-09-27 11:00:59 +02002118 /* Handle all resolutions in the wait list */
2119 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
2120 exp = tick_add(res->last_resolution, dns_resolution_timeout(res));
2121 if (tick_isset(res->last_resolution) && !tick_is_expired(exp, now_ms))
2122 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002123
Christopher Faulet67957bd2017-09-27 11:00:59 +02002124 if (dns_run_resolution(res) != 1) {
2125 res->last_resolution = now_ms;
2126 LIST_DEL(&res->list);
2127 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002128 }
2129 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002130
Christopher Faulet67957bd2017-09-27 11:00:59 +02002131 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002132 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002133 return t;
2134}
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002135
Christopher Faulet67957bd2017-09-27 11:00:59 +02002136/* proto_udp callback functions for a DNS resolution */
2137struct dgram_data_cb resolve_dgram_cb = {
2138 .recv = dns_resolve_recv,
2139 .send = dns_resolve_send,
2140};
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002141
Christopher Faulet67957bd2017-09-27 11:00:59 +02002142/* Release memory allocated by DNS */
2143static void dns_deinit(void)
2144{
2145 struct dns_resolvers *resolvers, *resolversback;
2146 struct dns_nameserver *ns, *nsback;
2147 struct dns_resolution *res, *resback;
2148 struct dns_requester *req, *reqback;
2149 struct dns_srvrq *srvrq, *srvrqback;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002150
Christopher Faulet67957bd2017-09-27 11:00:59 +02002151 list_for_each_entry_safe(resolvers, resolversback, &dns_resolvers, list) {
2152 list_for_each_entry_safe(ns, nsback, &resolvers->nameservers, list) {
2153 free(ns->id);
2154 free((char *)ns->conf.file);
2155 if (ns->dgram && ns->dgram->t.sock.fd != -1)
2156 fd_delete(ns->dgram->t.sock.fd);
2157 free(ns->dgram);
2158 LIST_DEL(&ns->list);
2159 free(ns);
2160 }
2161
2162 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
2163 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
2164 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01002165 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002166 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002167 dns_free_resolution(res);
2168 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002169
Christopher Faulet67957bd2017-09-27 11:00:59 +02002170 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
2171 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
2172 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01002173 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002174 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002175 dns_free_resolution(res);
2176 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002177
Christopher Faulet67957bd2017-09-27 11:00:59 +02002178 free(resolvers->id);
2179 free((char *)resolvers->conf.file);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002180 task_destroy(resolvers->t);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002181 LIST_DEL(&resolvers->list);
2182 free(resolvers);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002183 }
2184
Christopher Faulet67957bd2017-09-27 11:00:59 +02002185 list_for_each_entry_safe(srvrq, srvrqback, &dns_srvrq_list, list) {
2186 free(srvrq->name);
2187 free(srvrq->hostname_dn);
2188 LIST_DEL(&srvrq->list);
2189 free(srvrq);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002190 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002191}
2192
Christopher Faulet67957bd2017-09-27 11:00:59 +02002193/* Finalizes the DNS configuration by allocating required resources and checking
2194 * live parameters.
2195 * Returns 0 on success, ERR_* flags otherwise.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002196 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002197static int dns_finalize_config(void)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002198{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002199 struct dns_resolvers *resolvers;
2200 struct proxy *px;
2201 int err_code = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002202
Christopher Faulet67957bd2017-09-27 11:00:59 +02002203 /* allocate pool of resolution per resolvers */
2204 list_for_each_entry(resolvers, &dns_resolvers, list) {
2205 struct dns_nameserver *ns;
2206 struct task *t;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002207
Christopher Faulet67957bd2017-09-27 11:00:59 +02002208 /* Check if we can create the socket with nameservers info */
2209 list_for_each_entry(ns, &resolvers->nameservers, list) {
2210 struct dgram_conn *dgram = NULL;
2211 int fd;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002212
Christopher Faulet67957bd2017-09-27 11:00:59 +02002213 /* Check nameserver info */
2214 if ((fd = socket(ns->addr.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002215 ha_alert("config : resolvers '%s': can't create socket for nameserver '%s'.\n",
2216 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002217 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002218 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002219 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002220 if (connect(fd, (struct sockaddr*)&ns->addr, get_addr_len(&ns->addr)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002221 ha_alert("config : resolvers '%s': can't connect socket for nameserver '%s'.\n",
2222 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002223 close(fd);
2224 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002225 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002226 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002227 close(fd);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002228
Christopher Faulet67957bd2017-09-27 11:00:59 +02002229 /* Create dgram structure that will hold the UPD socket
2230 * and attach it on the current nameserver */
2231 if ((dgram = calloc(1, sizeof(*dgram))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002232 ha_alert("config: resolvers '%s' : out of memory.\n",
2233 resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002234 err_code |= (ERR_ALERT|ERR_ABORT);
2235 goto err;
2236 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002237
Christopher Faulet67957bd2017-09-27 11:00:59 +02002238 /* Leave dgram partially initialized, no FD attached for
2239 * now. */
2240 dgram->owner = ns;
2241 dgram->data = &resolve_dgram_cb;
2242 dgram->t.sock.fd = -1;
2243 ns->dgram = dgram;
2244 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002245
Christopher Faulet67957bd2017-09-27 11:00:59 +02002246 /* Create the task associated to the resolvers section */
Emeric Brunc60def82017-09-27 14:59:38 +02002247 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002248 ha_alert("config : resolvers '%s' : out of memory.\n", resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002249 err_code |= (ERR_ALERT|ERR_ABORT);
2250 goto err;
2251 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002252
Christopher Faulet67957bd2017-09-27 11:00:59 +02002253 /* Update task's parameters */
2254 t->process = dns_process_resolvers;
2255 t->context = resolvers;
2256 resolvers->t = t;
2257 task_wakeup(t, TASK_WOKEN_INIT);
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002258 }
2259
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002260 for (px = proxies_list; px; px = px->next) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002261 struct server *srv;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002262
Christopher Faulet67957bd2017-09-27 11:00:59 +02002263 for (srv = px->srv; srv; srv = srv->next) {
2264 struct dns_resolvers *resolvers;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002265
Christopher Faulet67957bd2017-09-27 11:00:59 +02002266 if (!srv->resolvers_id)
2267 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002268
Christopher Faulet67957bd2017-09-27 11:00:59 +02002269 if ((resolvers = find_resolvers_by_id(srv->resolvers_id)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002270 ha_alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n",
2271 proxy_type_str(px), px->id, srv->id, srv->resolvers_id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002272 err_code |= (ERR_ALERT|ERR_ABORT);
2273 continue;
2274 }
2275 srv->resolvers = resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002276
Christopher Faulet67957bd2017-09-27 11:00:59 +02002277 if (srv->srvrq && !srv->srvrq->resolvers) {
2278 srv->srvrq->resolvers = srv->resolvers;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01002279 if (dns_link_resolution(srv->srvrq, OBJ_TYPE_SRVRQ, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002280 ha_alert("config : %s '%s' : unable to set DNS resolution for server '%s'.\n",
2281 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002282 err_code |= (ERR_ALERT|ERR_ABORT);
2283 continue;
2284 }
2285 }
Olivier Houchard55dcdf42017-11-06 15:15:04 +01002286 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002287 ha_alert("config : %s '%s', unable to set DNS resolution for server '%s'.\n",
2288 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002289 err_code |= (ERR_ALERT|ERR_ABORT);
2290 continue;
2291 }
2292 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002293 }
2294
Christopher Faulet67957bd2017-09-27 11:00:59 +02002295 if (err_code & (ERR_ALERT|ERR_ABORT))
2296 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002297
Christopher Faulet67957bd2017-09-27 11:00:59 +02002298 return err_code;
2299 err:
2300 dns_deinit();
2301 return err_code;
2302
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002303}
2304
Christopher Faulet67957bd2017-09-27 11:00:59 +02002305/* if an arg is found, it sets the resolvers section pointer into cli.p0 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002306static int cli_parse_stat_resolvers(char **args, char *payload, struct appctx *appctx, void *private)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002307{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002308 struct dns_resolvers *presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002309
Christopher Faulet67957bd2017-09-27 11:00:59 +02002310 if (*args[2]) {
2311 list_for_each_entry(presolvers, &dns_resolvers, list) {
2312 if (strcmp(presolvers->id, args[2]) == 0) {
2313 appctx->ctx.cli.p0 = presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002314 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002315 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002316 }
Willy Tarreau9d008692019-08-09 11:21:01 +02002317 if (appctx->ctx.cli.p0 == NULL)
2318 return cli_err(appctx, "Can't find that resolvers section\n");
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002319 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002320 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002321}
2322
Christopher Faulet67957bd2017-09-27 11:00:59 +02002323/* Dumps counters from all resolvers section and associated name servers. It
2324 * returns 0 if the output buffer is full and it needs to be called again,
2325 * otherwise non-zero. It may limit itself to the resolver pointed to by
Willy Tarreau777b5602016-12-16 18:06:26 +01002326 * <cli.p0> if it's not null.
William Lallemand69e96442016-11-19 00:58:54 +01002327 */
2328static int cli_io_handler_dump_resolvers_to_buffer(struct appctx *appctx)
2329{
2330 struct stream_interface *si = appctx->owner;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002331 struct dns_resolvers *resolvers;
2332 struct dns_nameserver *ns;
William Lallemand69e96442016-11-19 00:58:54 +01002333
2334 chunk_reset(&trash);
2335
2336 switch (appctx->st2) {
2337 case STAT_ST_INIT:
2338 appctx->st2 = STAT_ST_LIST; /* let's start producing data */
2339 /* fall through */
2340
2341 case STAT_ST_LIST:
2342 if (LIST_ISEMPTY(&dns_resolvers)) {
2343 chunk_appendf(&trash, "No resolvers found\n");
2344 }
2345 else {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002346 list_for_each_entry(resolvers, &dns_resolvers, list) {
2347 if (appctx->ctx.cli.p0 != NULL && appctx->ctx.cli.p0 != resolvers)
William Lallemand69e96442016-11-19 00:58:54 +01002348 continue;
2349
Christopher Faulet67957bd2017-09-27 11:00:59 +02002350 chunk_appendf(&trash, "Resolvers section %s\n", resolvers->id);
2351 list_for_each_entry(ns, &resolvers->nameservers, list) {
2352 chunk_appendf(&trash, " nameserver %s:\n", ns->id);
2353 chunk_appendf(&trash, " sent: %lld\n", ns->counters.sent);
2354 chunk_appendf(&trash, " snd_error: %lld\n", ns->counters.snd_error);
2355 chunk_appendf(&trash, " valid: %lld\n", ns->counters.valid);
2356 chunk_appendf(&trash, " update: %lld\n", ns->counters.update);
2357 chunk_appendf(&trash, " cname: %lld\n", ns->counters.cname);
2358 chunk_appendf(&trash, " cname_error: %lld\n", ns->counters.cname_error);
2359 chunk_appendf(&trash, " any_err: %lld\n", ns->counters.any_err);
2360 chunk_appendf(&trash, " nx: %lld\n", ns->counters.nx);
2361 chunk_appendf(&trash, " timeout: %lld\n", ns->counters.timeout);
2362 chunk_appendf(&trash, " refused: %lld\n", ns->counters.refused);
2363 chunk_appendf(&trash, " other: %lld\n", ns->counters.other);
2364 chunk_appendf(&trash, " invalid: %lld\n", ns->counters.invalid);
2365 chunk_appendf(&trash, " too_big: %lld\n", ns->counters.too_big);
2366 chunk_appendf(&trash, " truncated: %lld\n", ns->counters.truncated);
2367 chunk_appendf(&trash, " outdated: %lld\n", ns->counters.outdated);
William Lallemand69e96442016-11-19 00:58:54 +01002368 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002369 chunk_appendf(&trash, "\n");
William Lallemand69e96442016-11-19 00:58:54 +01002370 }
2371 }
2372
2373 /* display response */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002374 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand69e96442016-11-19 00:58:54 +01002375 /* let's try again later from this session. We add ourselves into
2376 * this session's users so that it can remove us upon termination.
2377 */
Willy Tarreaudb398432018-11-15 11:08:52 +01002378 si_rx_room_blk(si);
William Lallemand69e96442016-11-19 00:58:54 +01002379 return 0;
2380 }
William Lallemand69e96442016-11-19 00:58:54 +01002381 /* fall through */
2382
2383 default:
2384 appctx->st2 = STAT_ST_FIN;
2385 return 1;
2386 }
2387}
2388
2389/* register cli keywords */
Christopher Fauletff88efb2017-10-03 16:00:57 +02002390static struct cli_kw_list cli_kws = {{ }, {
2391 { { "show", "resolvers", NULL }, "show resolvers [id]: dumps counters from all resolvers section and\n"
2392 " associated name servers",
2393 cli_parse_stat_resolvers, cli_io_handler_dump_resolvers_to_buffer },
2394 {{},}
2395 }
2396};
William Lallemand69e96442016-11-19 00:58:54 +01002397
Willy Tarreau0108d902018-11-25 19:14:37 +01002398INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand69e96442016-11-19 00:58:54 +01002399
Baptiste Assmann333939c2019-01-21 08:34:50 +01002400/*
2401 * Prepare <rule> for hostname resolution.
2402 * Returns -1 in case of any allocation failure, 0 if not.
2403 * On error, a global failure counter is also incremented.
2404 */
2405static int action_prepare_for_resolution(struct stream *stream, const char *hostname)
2406{
2407 char *hostname_dn;
2408 int hostname_len, hostname_dn_len;
2409 struct buffer *tmp = get_trash_chunk();
2410
2411 if (!hostname)
2412 return 0;
2413
2414 hostname_len = strlen(hostname);
2415 hostname_dn = tmp->area;
2416 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
2417 hostname_dn, tmp->size);
2418 if (hostname_dn_len == -1)
2419 goto err;
2420
2421
2422 stream->dns_ctx.hostname_dn = strdup(hostname_dn);
2423 stream->dns_ctx.hostname_dn_len = hostname_dn_len;
2424 if (!stream->dns_ctx.hostname_dn)
2425 goto err;
2426
2427 return 0;
2428
2429 err:
2430 free(stream->dns_ctx.hostname_dn); stream->dns_ctx.hostname_dn = NULL;
2431 dns_failed_resolutions += 1;
2432 return -1;
2433}
2434
2435
2436/*
2437 * Execute the "do-resolution" action. May be called from {tcp,http}request.
2438 */
2439enum act_return dns_action_do_resolve(struct act_rule *rule, struct proxy *px,
2440 struct session *sess, struct stream *s, int flags)
2441{
Baptiste Assmann333939c2019-01-21 08:34:50 +01002442 struct dns_resolution *resolution;
Willy Tarreau45726fd2019-07-17 10:38:45 +02002443 struct sample *smp;
2444 char *fqdn;
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002445 struct dns_requester *req;
2446 struct dns_resolvers *resolvers;
2447 struct dns_resolution *res;
Christopher Faulet5098a082020-07-22 11:46:32 +02002448 int exp, locked = 0;
2449 enum act_return ret = ACT_RET_CONT;
2450
2451 resolvers = rule->arg.dns.resolvers;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002452
2453 /* we have a response to our DNS resolution */
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002454 use_cache:
Baptiste Assmann333939c2019-01-21 08:34:50 +01002455 if (s->dns_ctx.dns_requester && s->dns_ctx.dns_requester->resolution != NULL) {
2456 resolution = s->dns_ctx.dns_requester->resolution;
Christopher Faulet5098a082020-07-22 11:46:32 +02002457 if (!locked) {
2458 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2459 locked = 1;
2460 }
2461
Christopher Faulet385101e2020-07-28 10:21:54 +02002462 if (resolution->step == RSLV_STEP_RUNNING)
2463 goto yield;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002464 if (resolution->step == RSLV_STEP_NONE) {
2465 /* We update the variable only if we have a valid response. */
2466 if (resolution->status == RSLV_STATUS_VALID) {
2467 struct sample smp;
2468 short ip_sin_family = 0;
2469 void *ip = NULL;
2470
Christopher Fauleta4168432020-01-24 18:08:42 +01002471 dns_get_ip_from_response(&resolution->response, rule->arg.dns.dns_opts, NULL,
Baptiste Assmann333939c2019-01-21 08:34:50 +01002472 0, &ip, &ip_sin_family, NULL);
2473
2474 switch (ip_sin_family) {
2475 case AF_INET:
2476 smp.data.type = SMP_T_IPV4;
2477 memcpy(&smp.data.u.ipv4, ip, 4);
2478 break;
2479 case AF_INET6:
2480 smp.data.type = SMP_T_IPV6;
2481 memcpy(&smp.data.u.ipv6, ip, 16);
2482 break;
2483 default:
2484 ip = NULL;
2485 }
2486
2487 if (ip) {
2488 smp.px = px;
2489 smp.sess = sess;
2490 smp.strm = s;
2491
2492 vars_set_by_name(rule->arg.dns.varname, strlen(rule->arg.dns.varname), &smp);
2493 }
2494 }
2495 }
2496
Christopher Faulet385101e2020-07-28 10:21:54 +02002497 goto release_requester;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002498 }
2499
2500 /* need to configure and start a new DNS resolution */
Willy Tarreau45726fd2019-07-17 10:38:45 +02002501 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.dns.expr, SMP_T_STR);
2502 if (smp == NULL)
Christopher Faulet5098a082020-07-22 11:46:32 +02002503 goto end;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002504
Willy Tarreau45726fd2019-07-17 10:38:45 +02002505 fqdn = smp->data.u.str.area;
2506 if (action_prepare_for_resolution(s, fqdn) == -1)
Christopher Faulet5098a082020-07-22 11:46:32 +02002507 goto end; /* on error, ignore the action */
Baptiste Assmann333939c2019-01-21 08:34:50 +01002508
Willy Tarreau45726fd2019-07-17 10:38:45 +02002509 s->dns_ctx.parent = rule;
Christopher Faulet5098a082020-07-22 11:46:32 +02002510
2511 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2512 locked = 1;
2513
Willy Tarreau45726fd2019-07-17 10:38:45 +02002514 dns_link_resolution(s, OBJ_TYPE_STREAM, 0);
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002515
2516 /* Check if there is a fresh enough response in the cache of our associated resolution */
2517 req = s->dns_ctx.dns_requester;
Christopher Faulet385101e2020-07-28 10:21:54 +02002518 if (!req || !req->resolution)
2519 goto release_requester; /* on error, ignore the action */
Christopher Faulet5098a082020-07-22 11:46:32 +02002520 res = req->resolution;
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002521
2522 exp = tick_add(res->last_resolution, resolvers->hold.valid);
2523 if (resolvers->t && res->status == RSLV_STATUS_VALID && tick_isset(res->last_resolution)
Christopher Faulet385101e2020-07-28 10:21:54 +02002524 && !tick_is_expired(exp, now_ms)) {
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002525 goto use_cache;
2526 }
2527
Willy Tarreau45726fd2019-07-17 10:38:45 +02002528 dns_trigger_resolution(s->dns_ctx.dns_requester);
Christopher Faulet385101e2020-07-28 10:21:54 +02002529
2530 yield:
2531 if (flags & ACT_OPT_FINAL)
2532 goto release_requester;
Christopher Faulet5098a082020-07-22 11:46:32 +02002533 ret = ACT_RET_YIELD;
2534
2535 end:
2536 if (locked)
2537 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
2538 return ret;
Christopher Faulet385101e2020-07-28 10:21:54 +02002539
2540 release_requester:
2541 free(s->dns_ctx.hostname_dn);
2542 s->dns_ctx.hostname_dn = NULL;
2543 s->dns_ctx.hostname_dn_len = 0;
2544 if (s->dns_ctx.dns_requester) {
2545 dns_unlink_resolution(s->dns_ctx.dns_requester);
2546 pool_free(dns_requester_pool, s->dns_ctx.dns_requester);
2547 s->dns_ctx.dns_requester = NULL;
2548 }
2549 goto end;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002550}
2551
Christopher Faulet3b2bb632020-01-24 18:12:58 +01002552static void release_dns_action(struct act_rule *rule)
2553{
2554 release_sample_expr(rule->arg.dns.expr);
2555 free(rule->arg.dns.varname);
2556 free(rule->arg.dns.resolvers_id);
2557 free(rule->arg.dns.dns_opts);
2558}
2559
Baptiste Assmann333939c2019-01-21 08:34:50 +01002560
2561/* parse "do-resolve" action
2562 * This action takes the following arguments:
2563 * do-resolve(<varName>,<resolversSectionName>,<resolvePrefer>) <expr>
2564 *
2565 * - <varName> is the variable name where the result of the DNS resolution will be stored
2566 * (mandatory)
2567 * - <resolversSectionName> is the name of the resolvers section to use to perform the resolution
2568 * (mandatory)
2569 * - <resolvePrefer> can be either 'ipv4' or 'ipv6' and is the IP family we would like to resolve first
2570 * (optional), defaults to ipv6
2571 * - <expr> is an HAProxy expression used to fetch the name to be resolved
2572 */
2573enum act_parse_ret dns_parse_do_resolve(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
2574{
2575 int cur_arg;
2576 struct sample_expr *expr;
2577 unsigned int where;
2578 const char *beg, *end;
2579
2580 /* orig_arg points to the first argument, but we need to analyse the command itself first */
2581 cur_arg = *orig_arg - 1;
2582
2583 /* locate varName, which is mandatory */
2584 beg = strchr(args[cur_arg], '(');
2585 if (beg == NULL)
2586 goto do_resolve_parse_error;
2587 beg = beg + 1; /* beg should points to the first character after opening parenthesis '(' */
2588 end = strchr(beg, ',');
2589 if (end == NULL)
2590 goto do_resolve_parse_error;
2591 rule->arg.dns.varname = my_strndup(beg, end - beg);
2592 if (rule->arg.dns.varname == NULL)
2593 goto do_resolve_parse_error;
2594
2595
2596 /* locate resolversSectionName, which is mandatory.
2597 * Since next parameters are optional, the delimiter may be comma ','
2598 * or closing parenthesis ')'
2599 */
2600 beg = end + 1;
2601 end = strchr(beg, ',');
2602 if (end == NULL)
2603 end = strchr(beg, ')');
2604 if (end == NULL)
2605 goto do_resolve_parse_error;
2606 rule->arg.dns.resolvers_id = my_strndup(beg, end - beg);
2607 if (rule->arg.dns.resolvers_id == NULL)
2608 goto do_resolve_parse_error;
2609
2610
Christopher Fauleta4168432020-01-24 18:08:42 +01002611 rule->arg.dns.dns_opts = calloc(1, sizeof(*rule->arg.dns.dns_opts));
2612 if (rule->arg.dns.dns_opts == NULL)
2613 goto do_resolve_parse_error;
2614
Baptiste Assmann333939c2019-01-21 08:34:50 +01002615 /* Default priority is ipv6 */
Christopher Fauleta4168432020-01-24 18:08:42 +01002616 rule->arg.dns.dns_opts->family_prio = AF_INET6;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002617
2618 /* optional arguments accepted for now:
2619 * ipv4 or ipv6
2620 */
2621 while (*end != ')') {
2622 beg = end + 1;
2623 end = strchr(beg, ',');
2624 if (end == NULL)
2625 end = strchr(beg, ')');
2626 if (end == NULL)
2627 goto do_resolve_parse_error;
2628
2629 if (strncmp(beg, "ipv4", end - beg) == 0) {
Christopher Fauleta4168432020-01-24 18:08:42 +01002630 rule->arg.dns.dns_opts->family_prio = AF_INET;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002631 }
2632 else if (strncmp(beg, "ipv6", end - beg) == 0) {
Christopher Fauleta4168432020-01-24 18:08:42 +01002633 rule->arg.dns.dns_opts->family_prio = AF_INET6;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002634 }
2635 else {
2636 goto do_resolve_parse_error;
2637 }
2638 }
2639
2640 cur_arg = cur_arg + 1;
2641
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01002642 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 +01002643 if (!expr)
2644 goto do_resolve_parse_error;
2645
2646
2647 where = 0;
2648 if (px->cap & PR_CAP_FE)
2649 where |= SMP_VAL_FE_HRQ_HDR;
2650 if (px->cap & PR_CAP_BE)
2651 where |= SMP_VAL_BE_HRQ_HDR;
2652
2653 if (!(expr->fetch->val & where)) {
2654 memprintf(err,
2655 "fetch method '%s' extracts information from '%s', none of which is available here",
2656 args[cur_arg-1], sample_src_names(expr->fetch->use));
2657 free(expr);
2658 return ACT_RET_PRS_ERR;
2659 }
2660 rule->arg.dns.expr = expr;
2661 rule->action = ACT_CUSTOM;
2662 rule->action_ptr = dns_action_do_resolve;
2663 *orig_arg = cur_arg;
2664
2665 rule->check_ptr = check_action_do_resolve;
Christopher Faulet3b2bb632020-01-24 18:12:58 +01002666 rule->release_ptr = release_dns_action;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002667
2668 return ACT_RET_PRS_OK;
2669
2670 do_resolve_parse_error:
2671 free(rule->arg.dns.varname); rule->arg.dns.varname = NULL;
2672 free(rule->arg.dns.resolvers_id); rule->arg.dns.resolvers_id = NULL;
2673 memprintf(err, "Can't parse '%s'. Expects 'do-resolve(<varname>,<resolvers>[,<options>]) <expr>'. Available options are 'ipv4' and 'ipv6'",
2674 args[cur_arg]);
2675 return ACT_RET_PRS_ERR;
2676}
2677
2678static struct action_kw_list http_req_kws = { { }, {
2679 { "do-resolve", dns_parse_do_resolve, 1 },
2680 { /* END */ }
2681}};
2682
2683INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_kws);
2684
2685static struct action_kw_list tcp_req_cont_actions = {ILH, {
2686 { "do-resolve", dns_parse_do_resolve, 1 },
2687 { /* END */ }
2688}};
2689
2690INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_cont_actions);
2691
2692/* Check an "http-request do-resolve" action.
2693 *
2694 * The function returns 1 in success case, otherwise, it returns 0 and err is
2695 * filled.
2696 */
2697int check_action_do_resolve(struct act_rule *rule, struct proxy *px, char **err)
2698{
2699 struct dns_resolvers *resolvers = NULL;
2700
2701 if (rule->arg.dns.resolvers_id == NULL) {
2702 memprintf(err,"Proxy '%s': %s", px->id, "do-resolve action without resolvers");
2703 return 0;
2704 }
2705
2706 resolvers = find_resolvers_by_id(rule->arg.dns.resolvers_id);
2707 if (resolvers == NULL) {
2708 memprintf(err,"Can't find resolvers section '%s' for do-resolve action", rule->arg.dns.resolvers_id);
2709 return 0;
2710 }
2711 rule->arg.dns.resolvers = resolvers;
2712
2713 return 1;
2714}
2715
Willy Tarreau172f5ce2018-11-26 11:21:50 +01002716REGISTER_POST_DEINIT(dns_deinit);
Willy Tarreaue6552512018-11-26 11:33:13 +01002717REGISTER_CONFIG_POSTPARSER("dns runtime resolver", dns_finalize_config);