blob: 4a306faa7d84b55fd8cecdf06de4092e69035288 [file] [log] [blame]
Emeric Brunc9437992021-02-12 19:42:55 +01001/*
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
Emeric Brun0c4a8a32021-06-11 10:48:45 +020022#include <import/ebistree.h>
23
Emeric Brunc9437992021-02-12 19:42:55 +010024#include <haproxy/action.h>
25#include <haproxy/api.h>
26#include <haproxy/cfgparse.h>
27#include <haproxy/channel.h>
28#include <haproxy/check.h>
29#include <haproxy/cli.h>
30#include <haproxy/dns.h>
31#include <haproxy/errors.h>
32#include <haproxy/fd.h>
Emeric Brunc9437992021-02-12 19:42:55 +010033#include <haproxy/http_rules.h>
34#include <haproxy/log.h>
35#include <haproxy/net_helper.h>
36#include <haproxy/protocol.h>
37#include <haproxy/proxy.h>
38#include <haproxy/resolvers.h>
39#include <haproxy/ring.h>
40#include <haproxy/sample.h>
41#include <haproxy/server.h>
42#include <haproxy/stats.h>
43#include <haproxy/stream_interface.h>
44#include <haproxy/task.h>
45#include <haproxy/tcp_rules.h>
46#include <haproxy/ticks.h>
47#include <haproxy/time.h>
Willy Tarreauca14dd52021-05-08 12:59:47 +020048#include <haproxy/tools.h>
Emeric Brunc9437992021-02-12 19:42:55 +010049#include <haproxy/vars.h>
50
51
52struct list sec_resolvers = LIST_HEAD_INIT(sec_resolvers);
53struct list resolv_srvrq_list = LIST_HEAD_INIT(resolv_srvrq_list);
54
Willy Tarreau20751652021-10-18 16:46:38 +020055static THREAD_LOCAL struct list death_row; /* list of deferred resolutions to kill, local validity only */
Christopher Faulet7a3a5362021-11-02 16:25:05 +010056static THREAD_LOCAL unsigned int recurse = 0; /* counter to track calls to public functions */
Emeric Brunc9437992021-02-12 19:42:55 +010057static THREAD_LOCAL uint64_t resolv_query_id_seed = 0; /* random seed */
58struct resolvers *curr_resolvers = NULL;
59
60DECLARE_STATIC_POOL(resolv_answer_item_pool, "resolv_answer_item", sizeof(struct resolv_answer_item));
61DECLARE_STATIC_POOL(resolv_resolution_pool, "resolv_resolution", sizeof(struct resolv_resolution));
62DECLARE_POOL(resolv_requester_pool, "resolv_requester", sizeof(struct resolv_requester));
63
64static unsigned int resolution_uuid = 1;
65unsigned int resolv_failed_resolutions = 0;
Willy Tarreau20751652021-10-18 16:46:38 +020066static struct task *process_resolvers(struct task *t, void *context, unsigned int state);
67static void resolv_free_resolution(struct resolv_resolution *resolution);
Willy Tarreau33360872021-10-20 14:07:31 +020068static void _resolv_unlink_resolution(struct resolv_requester *requester);
Christopher Faulet7a3a5362021-11-02 16:25:05 +010069static void enter_resolver_code();
70static void leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +010071
72enum {
73 DNS_STAT_ID,
74 DNS_STAT_PID,
75 DNS_STAT_SENT,
76 DNS_STAT_SND_ERROR,
77 DNS_STAT_VALID,
78 DNS_STAT_UPDATE,
79 DNS_STAT_CNAME,
80 DNS_STAT_CNAME_ERROR,
81 DNS_STAT_ANY_ERR,
82 DNS_STAT_NX,
83 DNS_STAT_TIMEOUT,
84 DNS_STAT_REFUSED,
85 DNS_STAT_OTHER,
86 DNS_STAT_INVALID,
87 DNS_STAT_TOO_BIG,
88 DNS_STAT_TRUNCATED,
89 DNS_STAT_OUTDATED,
90 DNS_STAT_END,
91};
92
93static struct name_desc dns_stats[] = {
94 [DNS_STAT_ID] = { .name = "id", .desc = "ID" },
95 [DNS_STAT_PID] = { .name = "pid", .desc = "Parent ID" },
96 [DNS_STAT_SENT] = { .name = "sent", .desc = "Sent" },
97 [DNS_STAT_SND_ERROR] = { .name = "send_error", .desc = "Send error" },
98 [DNS_STAT_VALID] = { .name = "valid", .desc = "Valid" },
99 [DNS_STAT_UPDATE] = { .name = "update", .desc = "Update" },
100 [DNS_STAT_CNAME] = { .name = "cname", .desc = "CNAME" },
101 [DNS_STAT_CNAME_ERROR] = { .name = "cname_error", .desc = "CNAME error" },
102 [DNS_STAT_ANY_ERR] = { .name = "any_err", .desc = "Any errors" },
103 [DNS_STAT_NX] = { .name = "nx", .desc = "NX" },
104 [DNS_STAT_TIMEOUT] = { .name = "timeout", .desc = "Timeout" },
105 [DNS_STAT_REFUSED] = { .name = "refused", .desc = "Refused" },
106 [DNS_STAT_OTHER] = { .name = "other", .desc = "Other" },
107 [DNS_STAT_INVALID] = { .name = "invalid", .desc = "Invalid" },
108 [DNS_STAT_TOO_BIG] = { .name = "too_big", .desc = "Too big" },
109 [DNS_STAT_TRUNCATED] = { .name = "truncated", .desc = "Truncated" },
110 [DNS_STAT_OUTDATED] = { .name = "outdated", .desc = "Outdated" },
111};
112
113static struct dns_counters dns_counters;
114
115static void dns_fill_stats(void *d, struct field *stats)
116{
117 struct dns_counters *counters = d;
118 stats[DNS_STAT_ID] = mkf_str(FO_CONFIG, counters->id);
119 stats[DNS_STAT_PID] = mkf_str(FO_CONFIG, counters->pid);
120 stats[DNS_STAT_SENT] = mkf_u64(FN_GAUGE, counters->sent);
121 stats[DNS_STAT_SND_ERROR] = mkf_u64(FN_GAUGE, counters->snd_error);
122 stats[DNS_STAT_VALID] = mkf_u64(FN_GAUGE, counters->valid);
123 stats[DNS_STAT_UPDATE] = mkf_u64(FN_GAUGE, counters->update);
124 stats[DNS_STAT_CNAME] = mkf_u64(FN_GAUGE, counters->cname);
125 stats[DNS_STAT_CNAME_ERROR] = mkf_u64(FN_GAUGE, counters->cname_error);
126 stats[DNS_STAT_ANY_ERR] = mkf_u64(FN_GAUGE, counters->any_err);
127 stats[DNS_STAT_NX] = mkf_u64(FN_GAUGE, counters->nx);
128 stats[DNS_STAT_TIMEOUT] = mkf_u64(FN_GAUGE, counters->timeout);
129 stats[DNS_STAT_REFUSED] = mkf_u64(FN_GAUGE, counters->refused);
130 stats[DNS_STAT_OTHER] = mkf_u64(FN_GAUGE, counters->other);
131 stats[DNS_STAT_INVALID] = mkf_u64(FN_GAUGE, counters->invalid);
132 stats[DNS_STAT_TOO_BIG] = mkf_u64(FN_GAUGE, counters->too_big);
133 stats[DNS_STAT_TRUNCATED] = mkf_u64(FN_GAUGE, counters->truncated);
134 stats[DNS_STAT_OUTDATED] = mkf_u64(FN_GAUGE, counters->outdated);
135}
136
137static struct stats_module dns_stats_module = {
138 .name = "dns",
139 .domain_flags = STATS_DOMAIN_DNS << STATS_DOMAIN,
140 .fill_stats = dns_fill_stats,
141 .stats = dns_stats,
142 .stats_count = DNS_STAT_END,
143 .counters = &dns_counters,
144 .counters_size = sizeof(dns_counters),
145 .clearable = 0,
146};
147
148INITCALL1(STG_REGISTER, stats_register_module, &dns_stats_module);
149
150/* Returns a pointer to the resolvers matching the id <id>. NULL is returned if
151 * no match is found.
152 */
153struct resolvers *find_resolvers_by_id(const char *id)
154{
155 struct resolvers *res;
156
157 list_for_each_entry(res, &sec_resolvers, list) {
158 if (strcmp(res->id, id) == 0)
159 return res;
160 }
161 return NULL;
162}
163
164/* Compare hostnames in a case-insensitive way .
165 * Returns 0 if they are the same, non-zero otherwise
166 */
167static __inline int resolv_hostname_cmp(const char *name1, const char *name2, int len)
168{
169 int i;
170
171 for (i = 0; i < len; i++)
172 if (tolower((unsigned char)name1[i]) != tolower((unsigned char)name2[i]))
173 return -1;
174 return 0;
175}
176
177/* Returns a pointer on the SRV request matching the name <name> for the proxy
178 * <px>. NULL is returned if no match is found.
179 */
180struct resolv_srvrq *find_srvrq_by_name(const char *name, struct proxy *px)
181{
182 struct resolv_srvrq *srvrq;
183
184 list_for_each_entry(srvrq, &resolv_srvrq_list, list) {
185 if (srvrq->proxy == px && strcmp(srvrq->name, name) == 0)
186 return srvrq;
187 }
188 return NULL;
189}
190
191/* Allocates a new SRVRQ for the given server with the name <fqdn>. It returns
192 * NULL if an error occurred. */
193struct resolv_srvrq *new_resolv_srvrq(struct server *srv, char *fqdn)
194{
195 struct proxy *px = srv->proxy;
196 struct resolv_srvrq *srvrq = NULL;
197 int fqdn_len, hostname_dn_len;
198
199 fqdn_len = strlen(fqdn);
Willy Tarreauc1c765f2021-10-14 07:49:49 +0200200 hostname_dn_len = resolv_str_to_dn_label(fqdn, fqdn_len, trash.area,
Emeric Brunc9437992021-02-12 19:42:55 +0100201 trash.size);
202 if (hostname_dn_len == -1) {
203 ha_alert("config : %s '%s', server '%s': failed to parse FQDN '%s'\n",
204 proxy_type_str(px), px->id, srv->id, fqdn);
205 goto err;
206 }
207
208 if ((srvrq = calloc(1, sizeof(*srvrq))) == NULL) {
209 ha_alert("config : %s '%s', server '%s': out of memory\n",
210 proxy_type_str(px), px->id, srv->id);
211 goto err;
212 }
213 srvrq->obj_type = OBJ_TYPE_SRVRQ;
214 srvrq->proxy = px;
215 srvrq->name = strdup(fqdn);
216 srvrq->hostname_dn = strdup(trash.area);
217 srvrq->hostname_dn_len = hostname_dn_len;
218 if (!srvrq->name || !srvrq->hostname_dn) {
219 ha_alert("config : %s '%s', server '%s': out of memory\n",
220 proxy_type_str(px), px->id, srv->id);
221 goto err;
222 }
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200223 LIST_INIT(&srvrq->attached_servers);
224 srvrq->named_servers = EB_ROOT;
Willy Tarreau2b718102021-04-21 07:32:39 +0200225 LIST_APPEND(&resolv_srvrq_list, &srvrq->list);
Emeric Brunc9437992021-02-12 19:42:55 +0100226 return srvrq;
227
228 err:
229 if (srvrq) {
230 free(srvrq->name);
231 free(srvrq->hostname_dn);
232 free(srvrq);
233 }
234 return NULL;
235}
236
237
Baptiste Assmann6a8d11d2021-03-10 12:22:18 +0100238/* finds and return the SRV answer item associated to a requester (whose type is 'server').
239 *
240 * returns NULL in case of error or not found.
241 */
242struct resolv_answer_item *find_srvrq_answer_record(const struct resolv_requester *requester)
243{
244 struct resolv_resolution *res;
245 struct resolv_answer_item *item;
246 struct server *srv;
247
248 if (!requester)
249 return NULL;
250
251 if ((srv = objt_server(requester->owner)) == NULL)
252 return NULL;
253 /* check if the server is managed by a SRV record */
254 if (srv->srvrq == NULL)
255 return NULL;
256
257 res = srv->srvrq->requester->resolution;
258 /* search an ANSWER record whose target points to the server's hostname and whose port is
259 * the same as server's svc_port */
260 list_for_each_entry(item, &res->response.answer_list, list) {
Willy Tarreau20a02372021-10-14 22:52:04 +0200261 if (resolv_hostname_cmp(srv->hostname_dn, item->data.target, srv->hostname_dn_len) == 0 &&
Baptiste Assmann6a8d11d2021-03-10 12:22:18 +0100262 (srv->svc_port == item->port))
263 return item;
264 }
265
266 return NULL;
267}
268
Emeric Brunc9437992021-02-12 19:42:55 +0100269/* 2 bytes random generator to generate DNS query ID */
270static inline uint16_t resolv_rnd16(void)
271{
272 if (!resolv_query_id_seed)
273 resolv_query_id_seed = now_ms;
274 resolv_query_id_seed ^= resolv_query_id_seed << 13;
275 resolv_query_id_seed ^= resolv_query_id_seed >> 7;
276 resolv_query_id_seed ^= resolv_query_id_seed << 17;
277 return resolv_query_id_seed;
278}
279
280
281static inline int resolv_resolution_timeout(struct resolv_resolution *res)
282{
283 return res->resolvers->timeout.resolve;
284}
285
286/* Updates a resolvers' task timeout for next wake up and queue it */
287static void resolv_update_resolvers_timeout(struct resolvers *resolvers)
288{
289 struct resolv_resolution *res;
290 int next;
291
292 next = tick_add(now_ms, resolvers->timeout.resolve);
293 if (!LIST_ISEMPTY(&resolvers->resolutions.curr)) {
294 res = LIST_NEXT(&resolvers->resolutions.curr, struct resolv_resolution *, list);
295 next = MIN(next, tick_add(res->last_query, resolvers->timeout.retry));
296 }
297
298 list_for_each_entry(res, &resolvers->resolutions.wait, list)
299 next = MIN(next, tick_add(res->last_resolution, resolv_resolution_timeout(res)));
300
301 resolvers->t->expire = next;
302 task_queue(resolvers->t);
303}
304
305/* Forges a DNS query. It needs the following information from the caller:
306 * - <query_id> : the DNS query id corresponding to this query
307 * - <query_type> : DNS_RTYPE_* request DNS record type (A, AAAA, ANY...)
308 * - <hostname_dn> : hostname in domain name format
309 * - <hostname_dn_len> : length of <hostname_dn>
310 *
311 * To store the query, the caller must pass a buffer <buf> and its size
312 * <bufsize>. It returns the number of written bytes in success, -1 if <buf> is
313 * too short.
314 */
315static int resolv_build_query(int query_id, int query_type, unsigned int accepted_payload_size,
316 char *hostname_dn, int hostname_dn_len, char *buf, int bufsize)
317{
318 struct dns_header dns_hdr;
319 struct dns_question qinfo;
320 struct dns_additional_record edns;
321 char *p = buf;
322
323 if (sizeof(dns_hdr) + sizeof(qinfo) + sizeof(edns) + hostname_dn_len >= bufsize)
324 return -1;
325
326 memset(buf, 0, bufsize);
327
328 /* Set dns query headers */
329 dns_hdr.id = (unsigned short) htons(query_id);
330 dns_hdr.flags = htons(0x0100); /* qr=0, opcode=0, aa=0, tc=0, rd=1, ra=0, z=0, rcode=0 */
331 dns_hdr.qdcount = htons(1); /* 1 question */
332 dns_hdr.ancount = 0;
333 dns_hdr.nscount = 0;
334 dns_hdr.arcount = htons(1);
335 memcpy(p, &dns_hdr, sizeof(dns_hdr));
336 p += sizeof(dns_hdr);
337
338 /* Set up query hostname */
339 memcpy(p, hostname_dn, hostname_dn_len);
340 p += hostname_dn_len;
341 *p++ = 0;
342
343 /* Set up query info (type and class) */
344 qinfo.qtype = htons(query_type);
345 qinfo.qclass = htons(DNS_RCLASS_IN);
346 memcpy(p, &qinfo, sizeof(qinfo));
347 p += sizeof(qinfo);
348
349 /* Set the DNS extension */
350 edns.name = 0;
351 edns.type = htons(DNS_RTYPE_OPT);
352 edns.udp_payload_size = htons(accepted_payload_size);
353 edns.extension = 0;
354 edns.data_length = 0;
355 memcpy(p, &edns, sizeof(edns));
356 p += sizeof(edns);
357
358 return (p - buf);
359}
360
361/* Sends a DNS query to resolvers associated to a resolution. It returns 0 on
Emeric Brun9267ed82021-10-29 16:44:49 +0200362 * success or -1 if trash buffer is not large enough to build a valid query.
Emeric Brunc9437992021-02-12 19:42:55 +0100363 */
364static int resolv_send_query(struct resolv_resolution *resolution)
365{
366 struct resolvers *resolvers = resolution->resolvers;
367 struct dns_nameserver *ns;
368 int len;
369
370 /* Update resolution */
371 resolution->nb_queries = 0;
372 resolution->nb_responses = 0;
373 resolution->last_query = now_ms;
374
375 len = resolv_build_query(resolution->query_id, resolution->query_type,
376 resolvers->accepted_payload_size,
377 resolution->hostname_dn, resolution->hostname_dn_len,
378 trash.area, trash.size);
Emeric Brun9267ed82021-10-29 16:44:49 +0200379 if (len < 0) {
380 send_log(NULL, LOG_NOTICE,
381 "can not build the query message for %s, in resolvers %s.\n",
382 resolution->hostname_dn, resolvers->id);
383 return -1;
384 }
Emeric Brunc9437992021-02-12 19:42:55 +0100385
386 list_for_each_entry(ns, &resolvers->nameservers, list) {
Emeric Brun2fa8f072021-10-29 16:28:33 +0200387 if (dns_send_nameserver(ns, trash.area, len) >= 0)
Emeric Brunc9437992021-02-12 19:42:55 +0100388 resolution->nb_queries++;
389 }
390
391 /* Push the resolution at the end of the active list */
Willy Tarreau8c3c5232021-10-19 22:01:36 +0200392 LIST_DEL_INIT(&resolution->list);
Willy Tarreau2b718102021-04-21 07:32:39 +0200393 LIST_APPEND(&resolvers->resolutions.curr, &resolution->list);
Emeric Brunc9437992021-02-12 19:42:55 +0100394 return 0;
395}
396
397/* Prepares and sends a DNS resolution. It returns 1 if the query was sent, 0 if
398 * skipped and -1 if an error occurred.
399 */
400static int
401resolv_run_resolution(struct resolv_resolution *resolution)
402{
403 struct resolvers *resolvers = resolution->resolvers;
404 int query_id, i;
405
406 /* Avoid sending requests for resolutions that don't yet have an
407 * hostname, ie resolutions linked to servers that do not yet have an
408 * fqdn */
409 if (!resolution->hostname_dn)
410 return 0;
411
412 /* Check if a resolution has already been started for this server return
413 * directly to avoid resolution pill up. */
414 if (resolution->step != RSLV_STEP_NONE)
415 return 0;
416
417 /* Generates a new query id. We try at most 100 times to find a free
418 * query id */
419 for (i = 0; i < 100; ++i) {
420 query_id = resolv_rnd16();
421 if (!eb32_lookup(&resolvers->query_ids, query_id))
422 break;
423 query_id = -1;
424 }
425 if (query_id == -1) {
426 send_log(NULL, LOG_NOTICE,
427 "could not generate a query id for %s, in resolvers %s.\n",
428 resolution->hostname_dn, resolvers->id);
429 return -1;
430 }
431
432 /* Update resolution parameters */
433 resolution->query_id = query_id;
434 resolution->qid.key = query_id;
435 resolution->step = RSLV_STEP_RUNNING;
436 resolution->query_type = resolution->prefered_query_type;
437 resolution->try = resolvers->resolve_retries;
438 eb32_insert(&resolvers->query_ids, &resolution->qid);
439
440 /* Send the DNS query */
441 resolution->try -= 1;
442 resolv_send_query(resolution);
443 return 1;
444}
445
446/* Performs a name resolution for the requester <req> */
447void resolv_trigger_resolution(struct resolv_requester *req)
448{
449 struct resolvers *resolvers;
450 struct resolv_resolution *res;
451 int exp;
452
453 if (!req || !req->resolution)
454 return;
455 res = req->resolution;
456 resolvers = res->resolvers;
457
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100458 enter_resolver_code();
459
Emeric Brunc9437992021-02-12 19:42:55 +0100460 /* The resolution must not be triggered yet. Use the cached response, if
461 * valid */
462 exp = tick_add(res->last_resolution, resolvers->hold.valid);
463 if (resolvers->t && (res->status != RSLV_STATUS_VALID ||
464 !tick_isset(res->last_resolution) || tick_is_expired(exp, now_ms)))
465 task_wakeup(resolvers->t, TASK_WOKEN_OTHER);
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100466
467 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +0100468}
469
470
471/* Resets some resolution parameters to initial values and also delete the query
472 * ID from the resolver's tree.
473 */
474static void resolv_reset_resolution(struct resolv_resolution *resolution)
475{
476 /* update resolution status */
477 resolution->step = RSLV_STEP_NONE;
478 resolution->try = 0;
479 resolution->last_resolution = now_ms;
480 resolution->nb_queries = 0;
481 resolution->nb_responses = 0;
482 resolution->query_type = resolution->prefered_query_type;
483
484 /* clean up query id */
485 eb32_delete(&resolution->qid);
486 resolution->query_id = 0;
487 resolution->qid.key = 0;
488}
489
490/* Returns the query id contained in a DNS response */
491static inline unsigned short resolv_response_get_query_id(unsigned char *resp)
492{
493 return resp[0] * 256 + resp[1];
494}
495
496
497/* Analyses, re-builds and copies the name <name> from the DNS response packet
498 * <buffer>. <name> must point to the 'data_len' information or pointer 'c0'
499 * for compressed data. The result is copied into <dest>, ensuring we don't
500 * overflow using <dest_len> Returns the number of bytes the caller can move
501 * forward. If 0 it means an error occurred while parsing the name. <offset> is
502 * the number of bytes the caller could move forward.
503 */
504int resolv_read_name(unsigned char *buffer, unsigned char *bufend,
505 unsigned char *name, char *destination, int dest_len,
506 int *offset, unsigned int depth)
507{
508 int nb_bytes = 0, n = 0;
509 int label_len;
510 unsigned char *reader = name;
511 char *dest = destination;
512
513 while (1) {
514 if (reader >= bufend)
515 goto err;
516
517 /* Name compression is in use */
518 if ((*reader & 0xc0) == 0xc0) {
519 if (reader + 1 >= bufend)
520 goto err;
521
522 /* Must point BEFORE current position */
523 if ((buffer + reader[1]) > reader)
524 goto err;
525
526 if (depth++ > 100)
527 goto err;
528
529 n = resolv_read_name(buffer, bufend, buffer + (*reader & 0x3f)*256 + reader[1],
530 dest, dest_len - nb_bytes, offset, depth);
531 if (n == 0)
532 goto err;
533
534 dest += n;
535 nb_bytes += n;
536 goto out;
537 }
538
539 label_len = *reader;
540 if (label_len == 0)
541 goto out;
542
543 /* Check if:
544 * - we won't read outside the buffer
545 * - there is enough place in the destination
546 */
547 if ((reader + label_len >= bufend) || (nb_bytes + label_len >= dest_len))
548 goto err;
549
550 /* +1 to take label len + label string */
551 label_len++;
552
553 memcpy(dest, reader, label_len);
554
555 dest += label_len;
556 nb_bytes += label_len;
557 reader += label_len;
558 }
559
560 out:
561 /* offset computation:
562 * parse from <name> until finding either NULL or a pointer "c0xx"
563 */
564 reader = name;
565 *offset = 0;
566 while (reader < bufend) {
567 if ((reader[0] & 0xc0) == 0xc0) {
568 *offset += 2;
569 break;
570 }
571 else if (*reader == 0) {
572 *offset += 1;
573 break;
574 }
575 *offset += 1;
576 ++reader;
577 }
578 return nb_bytes;
579
580 err:
581 return 0;
582}
583
Willy Tarreau20751652021-10-18 16:46:38 +0200584/* Reinitialize the list of aborted resolutions before calling certain
585 * functions relying on it. The list must be processed by calling
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100586 * leave_resolver_code() after operations.
Willy Tarreau20751652021-10-18 16:46:38 +0200587 */
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100588static void enter_resolver_code()
Willy Tarreau20751652021-10-18 16:46:38 +0200589{
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100590 if (!recurse)
591 LIST_INIT(&death_row);
592 recurse++;
Willy Tarreau20751652021-10-18 16:46:38 +0200593}
594
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100595/* Add a resolution to the death_row. */
Willy Tarreau20751652021-10-18 16:46:38 +0200596static void abort_resolution(struct resolv_resolution *res)
597{
598 LIST_DEL_INIT(&res->list);
599 LIST_APPEND(&death_row, &res->list);
600}
601
602/* This releases any aborted resolution found in the death row. It is mandatory
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100603 * to call enter_resolver_code() first before the function (or loop) that
Willy Tarreau20751652021-10-18 16:46:38 +0200604 * needs to defer deletions. Note that some of them are in relation via internal
605 * objects and might cause the deletion of other ones from the same list, so we
606 * must absolutely not use a list_for_each_entry_safe() nor any such thing here,
607 * and solely rely on each call to remove the first remaining list element.
608 */
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100609static void leave_resolver_code()
Willy Tarreau20751652021-10-18 16:46:38 +0200610{
611 struct resolv_resolution *res;
612
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100613 recurse--;
614 if (recurse)
615 return;
616
Willy Tarreau20751652021-10-18 16:46:38 +0200617 while (!LIST_ISEMPTY(&death_row)) {
618 res = LIST_NEXT(&death_row, struct resolv_resolution *, list);
619 resolv_free_resolution(res);
620 }
621
622 /* make sure nobody tries to add anything without having initialized it */
623 death_row = (struct list){ };
624}
625
Christopher Faulet5f8ccff2021-06-15 16:08:48 +0200626/* Cleanup fqdn/port and address of a server attached to a SRV resolution. This
627 * happens when an SRV item is purged or when the server status is considered as
628 * obsolete.
629 *
Willy Tarreau20751652021-10-18 16:46:38 +0200630 * Must be called with the DNS lock held, and with the death_row already
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100631 * initialized via enter_resolver_code().
Christopher Faulet5f8ccff2021-06-15 16:08:48 +0200632 */
Willy Tarreau20751652021-10-18 16:46:38 +0200633static void resolv_srvrq_cleanup_srv(struct server *srv)
Christopher Faulet5f8ccff2021-06-15 16:08:48 +0200634{
Willy Tarreau33360872021-10-20 14:07:31 +0200635 _resolv_unlink_resolution(srv->resolv_requester);
Christopher Faulet5f8ccff2021-06-15 16:08:48 +0200636 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
637 srvrq_update_srv_status(srv, 1);
638 ha_free(&srv->hostname);
639 ha_free(&srv->hostname_dn);
640 srv->hostname_dn_len = 0;
641 memset(&srv->addr, 0, sizeof(srv->addr));
642 srv->svc_port = 0;
643 srv->flags |= SRV_F_NO_RESOLUTION;
Christopher Fauleta62d9742021-06-15 16:14:37 +0200644
645 ebpt_delete(&srv->host_dn);
646 ha_free(&srv->host_dn.key);
647
Christopher Faulet5f8ccff2021-06-15 16:08:48 +0200648 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8c3c5232021-10-19 22:01:36 +0200649 LIST_DEL_INIT(&srv->srv_rec_item);
Christopher Faulet5f8ccff2021-06-15 16:08:48 +0200650 LIST_APPEND(&srv->srvrq->attached_servers, &srv->srv_rec_item);
Christopher Faulet2c0f5272021-06-15 16:17:17 +0200651
652 srv->srvrq_check->expire = TICK_ETERNITY;
Christopher Faulet5f8ccff2021-06-15 16:08:48 +0200653}
654
Christopher Faulet2c0f5272021-06-15 16:17:17 +0200655/* Takes care to cleanup a server resolution when it is outdated. This only
656 * happens for a server relying on a SRV record.
657 */
658static struct task *resolv_srvrq_expire_task(struct task *t, void *context, unsigned int state)
659{
660 struct server *srv = context;
661
662 if (!tick_is_expired(t->expire, now_ms))
663 goto end;
664
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100665 enter_resolver_code();
Christopher Faulet152b50c2021-06-18 09:05:49 +0200666 HA_SPIN_LOCK(DNS_LOCK, &srv->srvrq->resolvers->lock);
Willy Tarreau20751652021-10-18 16:46:38 +0200667 resolv_srvrq_cleanup_srv(srv);
Christopher Faulet152b50c2021-06-18 09:05:49 +0200668 HA_SPIN_UNLOCK(DNS_LOCK, &srv->srvrq->resolvers->lock);
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100669 leave_resolver_code();
Christopher Faulet2c0f5272021-06-15 16:17:17 +0200670
671 end:
672 return t;
673}
674
Emeric Brunc9437992021-02-12 19:42:55 +0100675/* Checks for any obsolete record, also identify any SRV request, and try to
Christopher Faulet7a3a5362021-11-02 16:25:05 +0100676 * find a corresponding server.
Willy Tarreau20751652021-10-18 16:46:38 +0200677 */
Emeric Brunc9437992021-02-12 19:42:55 +0100678static void resolv_check_response(struct resolv_resolution *res)
679{
680 struct resolvers *resolvers = res->resolvers;
Christopher Fauletdb31b442021-03-11 18:19:41 +0100681 struct resolv_requester *req;
Emeric Brunc9437992021-02-12 19:42:55 +0100682 struct resolv_answer_item *item, *itemback;
Emeric Brunf9ca5d82021-06-11 10:08:05 +0200683 struct server *srv, *srvback;
Emeric Brunc9437992021-02-12 19:42:55 +0100684 struct resolv_srvrq *srvrq;
685
686 list_for_each_entry_safe(item, itemback, &res->response.answer_list, list) {
687 struct resolv_answer_item *ar_item = item->ar_item;
688
689 /* clean up obsolete Additional record */
Christopher Faulet55c1c402021-03-11 09:36:05 +0100690 if (ar_item && tick_is_lt(tick_add(ar_item->last_seen, resolvers->hold.obsolete), now_ms)) {
Christopher Faulet3e0600f2021-03-10 18:38:37 +0100691 /* Cleaning up the AR item will trigger an extra DNS resolution, except if the SRV
692 * item is also obsolete.
693 */
Emeric Brunc9437992021-02-12 19:42:55 +0100694 pool_free(resolv_answer_item_pool, ar_item);
695 item->ar_item = NULL;
696 }
697
698 /* Remove obsolete items */
Christopher Faulet55c1c402021-03-11 09:36:05 +0100699 if (tick_is_lt(tick_add(item->last_seen, resolvers->hold.obsolete), now_ms)) {
Emeric Brunf9ca5d82021-06-11 10:08:05 +0200700 if (item->type == DNS_RTYPE_A || item->type == DNS_RTYPE_AAAA) {
Emeric Brunc9437992021-02-12 19:42:55 +0100701 /* Remove any associated server */
Emeric Brunf9ca5d82021-06-11 10:08:05 +0200702 list_for_each_entry_safe(srv, srvback, &item->attached_servers, ip_rec_item) {
703 LIST_DEL_INIT(&srv->ip_rec_item);
704 }
705 }
706 else if (item->type == DNS_RTYPE_SRV) {
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200707 /* Remove any associated server */
Christopher Faulet5f8ccff2021-06-15 16:08:48 +0200708 list_for_each_entry_safe(srv, srvback, &item->attached_servers, srv_rec_item)
Willy Tarreau20751652021-10-18 16:46:38 +0200709 resolv_srvrq_cleanup_srv(srv);
Emeric Brunc9437992021-02-12 19:42:55 +0100710 }
711
Willy Tarreau8c3c5232021-10-19 22:01:36 +0200712 LIST_DEL_INIT(&item->list);
Emeric Brunc9437992021-02-12 19:42:55 +0100713 if (item->ar_item) {
714 pool_free(resolv_answer_item_pool, item->ar_item);
715 item->ar_item = NULL;
716 }
717 pool_free(resolv_answer_item_pool, item);
718 continue;
719 }
720
721 if (item->type != DNS_RTYPE_SRV)
722 continue;
723
724 /* Now process SRV records */
Christopher Fauletdb31b442021-03-11 18:19:41 +0100725 list_for_each_entry(req, &res->requesters, list) {
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200726 struct ebpt_node *node;
727 char target[DNS_MAX_NAME_SIZE+1];
728
729 int i;
Emeric Brunc9437992021-02-12 19:42:55 +0100730 if ((srvrq = objt_resolv_srvrq(req->owner)) == NULL)
731 continue;
732
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200733 /* Check if a server already uses that record */
734 srv = NULL;
735 list_for_each_entry(srv, &item->attached_servers, srv_rec_item) {
736 if (srv->srvrq == srvrq) {
737 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
738 goto srv_found;
Emeric Brunc9437992021-02-12 19:42:55 +0100739 }
Emeric Brunc9437992021-02-12 19:42:55 +0100740 }
741
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200742
743 /* If not empty we try to match a server
744 * in server state file tree with the same hostname
745 */
746 if (!eb_is_empty(&srvrq->named_servers)) {
747 srv = NULL;
748
749 /* convert the key to lookup in lower case */
Willy Tarreau20a02372021-10-14 22:52:04 +0200750 for (i = 0 ; item->data.target[i] ; i++)
751 target[i] = tolower(item->data.target[i]);
Christopher Fauletc20d6422021-07-22 14:29:26 +0200752 target[i] = 0;
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200753
754 node = ebis_lookup(&srvrq->named_servers, target);
755 if (node) {
756 srv = ebpt_entry(node, struct server, host_dn);
Emeric Brunc9437992021-02-12 19:42:55 +0100757 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200758
759 /* an entry was found with the same hostname
760 * let check this node if the port matches
761 * and try next node if the hostname
762 * is still the same
763 */
764 while (1) {
765 if (srv->svc_port == item->port) {
766 /* server found, we remove it from tree */
767 ebpt_delete(node);
Christopher Fauleta62d9742021-06-15 16:14:37 +0200768 ha_free(&srv->host_dn.key);
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200769 goto srv_found;
770 }
771
772 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
773
774 node = ebpt_next(node);
775 if (!node)
776 break;
777
778 srv = ebpt_entry(node, struct server, host_dn);
779 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
780
781 if ((item->data_len != srv->hostname_dn_len)
Willy Tarreau20a02372021-10-14 22:52:04 +0200782 || resolv_hostname_cmp(srv->hostname_dn, item->data.target, item->data_len)) {
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200783 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
784 break;
785 }
786 }
Emeric Brunc9437992021-02-12 19:42:55 +0100787 }
788 }
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200789
790 /* Pick the first server listed in srvrq (those ones don't
791 * have hostname and are free to use)
792 */
793 srv = NULL;
794 list_for_each_entry(srv, &srvrq->attached_servers, srv_rec_item) {
795 LIST_DEL_INIT(&srv->srv_rec_item);
796 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
797 goto srv_found;
798 }
799 srv = NULL;
Emeric Brunc9437992021-02-12 19:42:55 +0100800
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200801srv_found:
Emeric Brunc9437992021-02-12 19:42:55 +0100802 /* And update this server, if found (srv is locked here) */
803 if (srv) {
Christopher Faulet3e0600f2021-03-10 18:38:37 +0100804 /* re-enable DNS resolution for this server by default */
805 srv->flags &= ~SRV_F_NO_RESOLUTION;
Christopher Faulet2c0f5272021-06-15 16:17:17 +0200806 srv->srvrq_check->expire = TICK_ETERNITY;
Christopher Faulet3e0600f2021-03-10 18:38:37 +0100807
Emeric Brunc9437992021-02-12 19:42:55 +0100808 /* Check if an Additional Record is associated to this SRV record.
809 * Perform some sanity checks too to ensure the record can be used.
810 * If all fine, we simply pick up the IP address found and associate
Christopher Faulet3e0600f2021-03-10 18:38:37 +0100811 * it to the server. And DNS resolution is disabled for this server.
Emeric Brunc9437992021-02-12 19:42:55 +0100812 */
813 if ((item->ar_item != NULL) &&
814 (item->ar_item->type == DNS_RTYPE_A || item->ar_item->type == DNS_RTYPE_AAAA))
Christopher Faulet3e0600f2021-03-10 18:38:37 +0100815 {
Emeric Brunc9437992021-02-12 19:42:55 +0100816
817 switch (item->ar_item->type) {
818 case DNS_RTYPE_A:
Willy Tarreau20a02372021-10-14 22:52:04 +0200819 srv_update_addr(srv, &item->ar_item->data.in4.sin_addr, AF_INET, "DNS additional record");
Emeric Brunc9437992021-02-12 19:42:55 +0100820 break;
821 case DNS_RTYPE_AAAA:
Willy Tarreau20a02372021-10-14 22:52:04 +0200822 srv_update_addr(srv, &item->ar_item->data.in6.sin6_addr, AF_INET6, "DNS additional record");
Emeric Brunc9437992021-02-12 19:42:55 +0100823 break;
824 }
825
826 srv->flags |= SRV_F_NO_RESOLUTION;
Christopher Faulet3e0600f2021-03-10 18:38:37 +0100827
828 /* Unlink A/AAAA resolution for this server if there is an AR item.
829 * It is usless to perform an extra resolution
830 */
Willy Tarreau33360872021-10-20 14:07:31 +0200831 _resolv_unlink_resolution(srv->resolv_requester);
Emeric Brunc9437992021-02-12 19:42:55 +0100832 }
833
834 if (!srv->hostname_dn) {
835 const char *msg = NULL;
Willy Tarreau2859c162021-10-14 08:00:38 +0200836 char hostname[DNS_MAX_NAME_SIZE+1];
Emeric Brunc9437992021-02-12 19:42:55 +0100837
Willy Tarreau20a02372021-10-14 22:52:04 +0200838 if (resolv_dn_label_to_str(item->data.target, item->data_len,
Willy Tarreau2859c162021-10-14 08:00:38 +0200839 hostname, sizeof(hostname)) == -1) {
Emeric Brunc9437992021-02-12 19:42:55 +0100840 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
841 continue;
842 }
Christopher Faulet69beaa92021-02-16 12:07:47 +0100843 msg = srv_update_fqdn(srv, hostname, "SRV record", 1);
Emeric Brunc9437992021-02-12 19:42:55 +0100844 if (msg)
845 send_log(srv->proxy, LOG_NOTICE, "%s", msg);
846 }
847
Emeric Brun0c4a8a32021-06-11 10:48:45 +0200848 if (!LIST_INLIST(&srv->srv_rec_item))
849 LIST_APPEND(&item->attached_servers, &srv->srv_rec_item);
850
Christopher Faulet3e0600f2021-03-10 18:38:37 +0100851 if (!(srv->flags & SRV_F_NO_RESOLUTION)) {
852 /* If there is no AR item responsible of the FQDN resolution,
853 * trigger a dedicated DNS resolution
854 */
855 if (!srv->resolv_requester || !srv->resolv_requester->resolution)
856 resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1);
857 }
858
Christopher Fauletab177ac2021-03-10 15:34:52 +0100859 /* Update the server status */
Christopher Faulet6b117ae2021-03-11 18:06:23 +0100860 srvrq_update_srv_status(srv, (srv->addr.ss_family != AF_INET && srv->addr.ss_family != AF_INET6));
Emeric Brunc9437992021-02-12 19:42:55 +0100861
862 srv->svc_port = item->port;
863 srv->flags &= ~SRV_F_MAPPORTS;
864
865 if (!srv->resolv_opts.ignore_weight) {
866 char weight[9];
867 int ha_weight;
868
869 /* DNS weight range if from 0 to 65535
870 * HAProxy weight is from 0 to 256
871 * The rule below ensures that weight 0 is well respected
872 * while allowing a "mapping" from DNS weight into HAProxy's one.
873 */
874 ha_weight = (item->weight + 255) / 256;
875
876 snprintf(weight, sizeof(weight), "%d", ha_weight);
877 server_parse_weight_change_request(srv, weight);
878 }
879 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
880 }
881 }
882 }
883}
884
885/* Validates that the buffer DNS response provided in <resp> and finishing
886 * before <bufend> is valid from a DNS protocol point of view.
887 *
888 * The result is stored in <resolution>' response, buf_response,
889 * response_query_records and response_answer_records members.
890 *
891 * This function returns one of the RSLV_RESP_* code to indicate the type of
892 * error found.
893 */
894static int resolv_validate_dns_response(unsigned char *resp, unsigned char *bufend,
895 struct resolv_resolution *resolution, int max_answer_records)
896{
897 unsigned char *reader;
898 char *previous_dname, tmpname[DNS_MAX_NAME_SIZE];
899 int len, flags, offset;
900 int query_record_id;
901 int nb_saved_records;
902 struct resolv_query_item *query;
903 struct resolv_answer_item *answer_record, *tmp_record;
904 struct resolv_response *r_res;
905 int i, found = 0;
906 int cause = RSLV_RESP_ERROR;
907
908 reader = resp;
909 len = 0;
910 previous_dname = NULL;
911 query = NULL;
912 answer_record = NULL;
913
914 /* Initialization of response buffer and structure */
915 r_res = &resolution->response;
916
917 /* query id */
918 if (reader + 2 >= bufend)
919 goto invalid_resp;
920
921 r_res->header.id = reader[0] * 256 + reader[1];
922 reader += 2;
923
924 /* Flags and rcode are stored over 2 bytes
925 * First byte contains:
926 * - response flag (1 bit)
927 * - opcode (4 bits)
928 * - authoritative (1 bit)
929 * - truncated (1 bit)
930 * - recursion desired (1 bit)
931 */
932 if (reader + 2 >= bufend)
933 goto invalid_resp;
934
935 flags = reader[0] * 256 + reader[1];
936
937 if ((flags & DNS_FLAG_REPLYCODE) != DNS_RCODE_NO_ERROR) {
938 if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_NX_DOMAIN) {
939 cause = RSLV_RESP_NX_DOMAIN;
940 goto return_error;
941 }
942 else if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_REFUSED) {
943 cause = RSLV_RESP_REFUSED;
944 goto return_error;
945 }
946 else {
947 cause = RSLV_RESP_ERROR;
948 goto return_error;
949 }
950 }
951
952 /* Move forward 2 bytes for flags */
953 reader += 2;
954
955 /* 2 bytes for question count */
956 if (reader + 2 >= bufend)
957 goto invalid_resp;
958 r_res->header.qdcount = reader[0] * 256 + reader[1];
959 /* (for now) we send one query only, so we expect only one in the
960 * response too */
961 if (r_res->header.qdcount != 1) {
962 cause = RSLV_RESP_QUERY_COUNT_ERROR;
963 goto return_error;
964 }
965
966 if (r_res->header.qdcount > DNS_MAX_QUERY_RECORDS)
967 goto invalid_resp;
968 reader += 2;
969
970 /* 2 bytes for answer count */
971 if (reader + 2 >= bufend)
972 goto invalid_resp;
973 r_res->header.ancount = reader[0] * 256 + reader[1];
974 if (r_res->header.ancount == 0) {
975 cause = RSLV_RESP_ANCOUNT_ZERO;
976 goto return_error;
977 }
978
979 /* Check if too many records are announced */
980 if (r_res->header.ancount > max_answer_records)
981 goto invalid_resp;
982 reader += 2;
983
984 /* 2 bytes authority count */
985 if (reader + 2 >= bufend)
986 goto invalid_resp;
987 r_res->header.nscount = reader[0] * 256 + reader[1];
988 reader += 2;
989
990 /* 2 bytes additional count */
991 if (reader + 2 >= bufend)
992 goto invalid_resp;
993 r_res->header.arcount = reader[0] * 256 + reader[1];
994 reader += 2;
995
996 /* Parsing dns queries */
Willy Tarreau51128f82021-10-19 11:17:33 +0200997 BUG_ON(!LIST_ISEMPTY(&r_res->query_list));
Emeric Brunc9437992021-02-12 19:42:55 +0100998 for (query_record_id = 0; query_record_id < r_res->header.qdcount; query_record_id++) {
999 /* Use next pre-allocated resolv_query_item after ensuring there is
1000 * still one available.
1001 * It's then added to our packet query list. */
1002 if (query_record_id > DNS_MAX_QUERY_RECORDS)
1003 goto invalid_resp;
1004 query = &resolution->response_query_records[query_record_id];
Willy Tarreau2b718102021-04-21 07:32:39 +02001005 LIST_APPEND(&r_res->query_list, &query->list);
Emeric Brunc9437992021-02-12 19:42:55 +01001006
1007 /* Name is a NULL terminated string in our case, since we have
1008 * one query per response and the first one can't be compressed
1009 * (using the 0x0c format) */
1010 offset = 0;
1011 len = resolv_read_name(resp, bufend, reader, query->name, DNS_MAX_NAME_SIZE, &offset, 0);
1012
1013 if (len == 0)
1014 goto invalid_resp;
1015
1016 reader += offset;
1017 previous_dname = query->name;
1018
1019 /* move forward 2 bytes for question type */
1020 if (reader + 2 >= bufend)
1021 goto invalid_resp;
1022 query->type = reader[0] * 256 + reader[1];
1023 reader += 2;
1024
1025 /* move forward 2 bytes for question class */
1026 if (reader + 2 >= bufend)
1027 goto invalid_resp;
1028 query->class = reader[0] * 256 + reader[1];
1029 reader += 2;
1030 }
1031
Willy Tarreau3a8897f2021-10-20 17:29:28 +02001032 /* Let's just make gcc happy. The tests above make it clear that
1033 * qdcount==1 hence that we necessarily enter into the loop at least
1034 * once, but gcc seems to be having difficulties following it and
1035 * warns about the risk of NULL dereference at the next line, even
1036 * if a BUG_ON(!query) is used.
1037 */
1038 ALREADY_CHECKED(query);
1039
Emeric Brunc9437992021-02-12 19:42:55 +01001040 /* TRUNCATED flag must be checked after we could read the query type
Willy Tarreau3a8897f2021-10-20 17:29:28 +02001041 * because a TRUNCATED SRV query type response can still be exploited
1042 */
Emeric Brunc9437992021-02-12 19:42:55 +01001043 if (query->type != DNS_RTYPE_SRV && flags & DNS_FLAG_TRUNCATED) {
1044 cause = RSLV_RESP_TRUNCATED;
1045 goto return_error;
1046 }
1047
1048 /* now parsing response records */
1049 nb_saved_records = 0;
1050 for (i = 0; i < r_res->header.ancount; i++) {
1051 if (reader >= bufend)
1052 goto invalid_resp;
1053
1054 answer_record = pool_alloc(resolv_answer_item_pool);
1055 if (answer_record == NULL)
1056 goto invalid_resp;
1057
1058 /* initialization */
1059 answer_record->ar_item = NULL;
Christopher Faulet55c1c402021-03-11 09:36:05 +01001060 answer_record->last_seen = TICK_ETERNITY;
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001061 LIST_INIT(&answer_record->attached_servers);
Willy Tarreaua2373e82021-10-19 11:29:21 +02001062 LIST_INIT(&answer_record->list);
Emeric Brunc9437992021-02-12 19:42:55 +01001063
1064 offset = 0;
1065 len = resolv_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
1066
1067 if (len == 0)
1068 goto invalid_resp;
1069
1070 /* Check if the current record dname is valid. previous_dname
1071 * points either to queried dname or last CNAME target */
1072 if (query->type != DNS_RTYPE_SRV && resolv_hostname_cmp(previous_dname, tmpname, len) != 0) {
1073 if (i == 0) {
1074 /* First record, means a mismatch issue between
1075 * queried dname and dname found in the first
1076 * record */
1077 goto invalid_resp;
1078 }
1079 else {
1080 /* If not the first record, this means we have a
1081 * CNAME resolution error.
1082 */
1083 cause = RSLV_RESP_CNAME_ERROR;
1084 goto return_error;
1085 }
1086
1087 }
1088
1089 memcpy(answer_record->name, tmpname, len);
1090 answer_record->name[len] = 0;
1091
1092 reader += offset;
1093 if (reader >= bufend)
1094 goto invalid_resp;
1095
1096 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
1097 if (reader + 2 > bufend)
1098 goto invalid_resp;
1099
1100 answer_record->type = reader[0] * 256 + reader[1];
1101 reader += 2;
1102
1103 /* 2 bytes for class (2) */
1104 if (reader + 2 > bufend)
1105 goto invalid_resp;
1106
1107 answer_record->class = reader[0] * 256 + reader[1];
1108 reader += 2;
1109
1110 /* 4 bytes for ttl (4) */
1111 if (reader + 4 > bufend)
1112 goto invalid_resp;
1113
1114 answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
1115 + reader[2] * 256 + reader[3];
1116 reader += 4;
1117
1118 /* Now reading data len */
1119 if (reader + 2 > bufend)
1120 goto invalid_resp;
1121
1122 answer_record->data_len = reader[0] * 256 + reader[1];
1123
1124 /* Move forward 2 bytes for data len */
1125 reader += 2;
1126
1127 if (reader + answer_record->data_len > bufend)
1128 goto invalid_resp;
1129
1130 /* Analyzing record content */
1131 switch (answer_record->type) {
1132 case DNS_RTYPE_A:
1133 /* ipv4 is stored on 4 bytes */
1134 if (answer_record->data_len != 4)
1135 goto invalid_resp;
1136
Willy Tarreau20a02372021-10-14 22:52:04 +02001137 answer_record->data.in4.sin_family = AF_INET;
1138 memcpy(&answer_record->data.in4.sin_addr, reader, answer_record->data_len);
Emeric Brunc9437992021-02-12 19:42:55 +01001139 break;
1140
1141 case DNS_RTYPE_CNAME:
1142 /* Check if this is the last record and update the caller about the status:
1143 * no IP could be found and last record was a CNAME. Could be triggered
1144 * by a wrong query type
1145 *
1146 * + 1 because answer_record_id starts at 0
1147 * while number of answers is an integer and
1148 * starts at 1.
1149 */
1150 if (i + 1 == r_res->header.ancount) {
1151 cause = RSLV_RESP_CNAME_ERROR;
1152 goto return_error;
1153 }
1154
1155 offset = 0;
1156 len = resolv_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
1157 if (len == 0)
1158 goto invalid_resp;
1159
Willy Tarreau20a02372021-10-14 22:52:04 +02001160 memcpy(answer_record->data.target, tmpname, len);
1161 answer_record->data.target[len] = 0;
1162 previous_dname = answer_record->data.target;
Emeric Brunc9437992021-02-12 19:42:55 +01001163 break;
1164
1165
1166 case DNS_RTYPE_SRV:
1167 /* Answer must contain :
1168 * - 2 bytes for the priority
1169 * - 2 bytes for the weight
1170 * - 2 bytes for the port
1171 * - the target hostname
1172 */
1173 if (answer_record->data_len <= 6)
1174 goto invalid_resp;
1175
1176 answer_record->priority = read_n16(reader);
1177 reader += sizeof(uint16_t);
1178 answer_record->weight = read_n16(reader);
1179 reader += sizeof(uint16_t);
1180 answer_record->port = read_n16(reader);
1181 reader += sizeof(uint16_t);
1182 offset = 0;
1183 len = resolv_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
1184 if (len == 0)
1185 goto invalid_resp;
1186
1187 answer_record->data_len = len;
Willy Tarreau20a02372021-10-14 22:52:04 +02001188 memcpy(answer_record->data.target, tmpname, len);
1189 answer_record->data.target[len] = 0;
Emeric Brunc9437992021-02-12 19:42:55 +01001190 if (answer_record->ar_item != NULL) {
1191 pool_free(resolv_answer_item_pool, answer_record->ar_item);
1192 answer_record->ar_item = NULL;
1193 }
1194 break;
1195
1196 case DNS_RTYPE_AAAA:
1197 /* ipv6 is stored on 16 bytes */
1198 if (answer_record->data_len != 16)
1199 goto invalid_resp;
1200
Willy Tarreau20a02372021-10-14 22:52:04 +02001201 answer_record->data.in6.sin6_family = AF_INET6;
1202 memcpy(&answer_record->data.in6.sin6_addr, reader, answer_record->data_len);
Emeric Brunc9437992021-02-12 19:42:55 +01001203 break;
1204
1205 } /* switch (record type) */
1206
1207 /* Increment the counter for number of records saved into our
1208 * local response */
1209 nb_saved_records++;
1210
1211 /* Move forward answer_record->data_len for analyzing next
1212 * record in the response */
1213 reader += ((answer_record->type == DNS_RTYPE_SRV)
1214 ? offset
1215 : answer_record->data_len);
1216
1217 /* Lookup to see if we already had this entry */
1218 found = 0;
1219 list_for_each_entry(tmp_record, &r_res->answer_list, list) {
1220 if (tmp_record->type != answer_record->type)
1221 continue;
1222
1223 switch(tmp_record->type) {
1224 case DNS_RTYPE_A:
Willy Tarreau20a02372021-10-14 22:52:04 +02001225 if (!memcmp(&answer_record->data.in4.sin_addr,
1226 &tmp_record->data.in4.sin_addr,
1227 sizeof(answer_record->data.in4.sin_addr)))
Emeric Brunc9437992021-02-12 19:42:55 +01001228 found = 1;
1229 break;
1230
1231 case DNS_RTYPE_AAAA:
Willy Tarreau20a02372021-10-14 22:52:04 +02001232 if (!memcmp(&answer_record->data.in6.sin6_addr,
1233 &tmp_record->data.in6.sin6_addr,
1234 sizeof(answer_record->data.in6.sin6_addr)))
Emeric Brunc9437992021-02-12 19:42:55 +01001235 found = 1;
1236 break;
1237
1238 case DNS_RTYPE_SRV:
1239 if (answer_record->data_len == tmp_record->data_len &&
Willy Tarreau20a02372021-10-14 22:52:04 +02001240 !resolv_hostname_cmp(answer_record->data.target, tmp_record->data.target, answer_record->data_len) &&
Emeric Brunc9437992021-02-12 19:42:55 +01001241 answer_record->port == tmp_record->port) {
1242 tmp_record->weight = answer_record->weight;
1243 found = 1;
1244 }
1245 break;
1246
1247 default:
1248 break;
1249 }
1250
1251 if (found == 1)
1252 break;
1253 }
1254
1255 if (found == 1) {
Christopher Faulet55c1c402021-03-11 09:36:05 +01001256 tmp_record->last_seen = now_ms;
Emeric Brunc9437992021-02-12 19:42:55 +01001257 pool_free(resolv_answer_item_pool, answer_record);
1258 answer_record = NULL;
1259 }
1260 else {
Christopher Faulet55c1c402021-03-11 09:36:05 +01001261 answer_record->last_seen = now_ms;
Emeric Brunc9437992021-02-12 19:42:55 +01001262 answer_record->ar_item = NULL;
Willy Tarreau2b718102021-04-21 07:32:39 +02001263 LIST_APPEND(&r_res->answer_list, &answer_record->list);
Emeric Brunc9437992021-02-12 19:42:55 +01001264 answer_record = NULL;
1265 }
1266 } /* for i 0 to ancount */
1267
1268 /* Save the number of records we really own */
1269 r_res->header.ancount = nb_saved_records;
1270
1271 /* now parsing additional records for SRV queries only */
1272 if (query->type != DNS_RTYPE_SRV)
1273 goto skip_parsing_additional_records;
1274
1275 /* if we find Authority records, just skip them */
1276 for (i = 0; i < r_res->header.nscount; i++) {
1277 offset = 0;
1278 len = resolv_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE,
1279 &offset, 0);
1280 if (len == 0)
1281 continue;
1282
1283 if (reader + offset + 10 >= bufend)
1284 goto invalid_resp;
1285
1286 reader += offset;
1287 /* skip 2 bytes for class */
1288 reader += 2;
1289 /* skip 2 bytes for type */
1290 reader += 2;
1291 /* skip 4 bytes for ttl */
1292 reader += 4;
1293 /* read data len */
1294 len = reader[0] * 256 + reader[1];
1295 reader += 2;
1296
1297 if (reader + len >= bufend)
1298 goto invalid_resp;
1299
1300 reader += len;
1301 }
1302
1303 nb_saved_records = 0;
1304 for (i = 0; i < r_res->header.arcount; i++) {
1305 if (reader >= bufend)
1306 goto invalid_resp;
1307
1308 answer_record = pool_alloc(resolv_answer_item_pool);
1309 if (answer_record == NULL)
1310 goto invalid_resp;
Christopher Faulet55c1c402021-03-11 09:36:05 +01001311 answer_record->last_seen = TICK_ETERNITY;
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001312 LIST_INIT(&answer_record->attached_servers);
Emeric Brunc9437992021-02-12 19:42:55 +01001313
1314 offset = 0;
1315 len = resolv_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
1316
1317 if (len == 0) {
1318 pool_free(resolv_answer_item_pool, answer_record);
1319 answer_record = NULL;
1320 continue;
1321 }
1322
1323 memcpy(answer_record->name, tmpname, len);
1324 answer_record->name[len] = 0;
1325
1326 reader += offset;
1327 if (reader >= bufend)
1328 goto invalid_resp;
1329
1330 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
1331 if (reader + 2 > bufend)
1332 goto invalid_resp;
1333
1334 answer_record->type = reader[0] * 256 + reader[1];
1335 reader += 2;
1336
1337 /* 2 bytes for class (2) */
1338 if (reader + 2 > bufend)
1339 goto invalid_resp;
1340
1341 answer_record->class = reader[0] * 256 + reader[1];
1342 reader += 2;
1343
1344 /* 4 bytes for ttl (4) */
1345 if (reader + 4 > bufend)
1346 goto invalid_resp;
1347
1348 answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
1349 + reader[2] * 256 + reader[3];
1350 reader += 4;
1351
1352 /* Now reading data len */
1353 if (reader + 2 > bufend)
1354 goto invalid_resp;
1355
1356 answer_record->data_len = reader[0] * 256 + reader[1];
1357
1358 /* Move forward 2 bytes for data len */
1359 reader += 2;
1360
1361 if (reader + answer_record->data_len > bufend)
1362 goto invalid_resp;
1363
1364 /* Analyzing record content */
1365 switch (answer_record->type) {
1366 case DNS_RTYPE_A:
1367 /* ipv4 is stored on 4 bytes */
1368 if (answer_record->data_len != 4)
1369 goto invalid_resp;
1370
Willy Tarreau20a02372021-10-14 22:52:04 +02001371 answer_record->data.in4.sin_family = AF_INET;
1372 memcpy(&answer_record->data.in4.sin_addr, reader, answer_record->data_len);
Emeric Brunc9437992021-02-12 19:42:55 +01001373 break;
1374
1375 case DNS_RTYPE_AAAA:
1376 /* ipv6 is stored on 16 bytes */
1377 if (answer_record->data_len != 16)
1378 goto invalid_resp;
1379
Willy Tarreau20a02372021-10-14 22:52:04 +02001380 answer_record->data.in6.sin6_family = AF_INET6;
1381 memcpy(&answer_record->data.in6.sin6_addr, reader, answer_record->data_len);
Emeric Brunc9437992021-02-12 19:42:55 +01001382 break;
1383
1384 default:
1385 pool_free(resolv_answer_item_pool, answer_record);
1386 answer_record = NULL;
1387 continue;
1388
1389 } /* switch (record type) */
1390
1391 /* Increment the counter for number of records saved into our
1392 * local response */
1393 nb_saved_records++;
1394
1395 /* Move forward answer_record->data_len for analyzing next
1396 * record in the response */
Christopher Faulet77f86062021-03-10 15:19:57 +01001397 reader += answer_record->data_len;
Emeric Brunc9437992021-02-12 19:42:55 +01001398
1399 /* Lookup to see if we already had this entry */
1400 found = 0;
1401 list_for_each_entry(tmp_record, &r_res->answer_list, list) {
Christopher Faulet77f86062021-03-10 15:19:57 +01001402 struct resolv_answer_item *ar_item;
1403
1404 if (tmp_record->type != DNS_RTYPE_SRV || !tmp_record->ar_item)
1405 continue;
1406
1407 ar_item = tmp_record->ar_item;
Christopher Faulete8674c72021-03-12 16:42:45 +01001408 if (ar_item->type != answer_record->type || ar_item->last_seen == now_ms ||
Christopher Faulet77f86062021-03-10 15:19:57 +01001409 len != tmp_record->data_len ||
Willy Tarreau20a02372021-10-14 22:52:04 +02001410 resolv_hostname_cmp(answer_record->name, tmp_record->data.target, tmp_record->data_len))
Emeric Brunc9437992021-02-12 19:42:55 +01001411 continue;
1412
Christopher Faulet77f86062021-03-10 15:19:57 +01001413 switch(ar_item->type) {
Emeric Brunc9437992021-02-12 19:42:55 +01001414 case DNS_RTYPE_A:
Willy Tarreau20a02372021-10-14 22:52:04 +02001415 if (!memcmp(&answer_record->data.in4.sin_addr,
1416 &ar_item->data.in4.sin_addr,
1417 sizeof(answer_record->data.in4.sin_addr)))
Emeric Brunc9437992021-02-12 19:42:55 +01001418 found = 1;
1419 break;
1420
1421 case DNS_RTYPE_AAAA:
Willy Tarreau20a02372021-10-14 22:52:04 +02001422 if (!memcmp(&answer_record->data.in6.sin6_addr,
1423 &ar_item->data.in6.sin6_addr,
1424 sizeof(answer_record->data.in6.sin6_addr)))
Emeric Brunc9437992021-02-12 19:42:55 +01001425 found = 1;
1426 break;
1427
1428 default:
1429 break;
1430 }
1431
1432 if (found == 1)
1433 break;
1434 }
1435
1436 if (found == 1) {
Christopher Faulet55c1c402021-03-11 09:36:05 +01001437 tmp_record->ar_item->last_seen = now_ms;
Emeric Brunc9437992021-02-12 19:42:55 +01001438 pool_free(resolv_answer_item_pool, answer_record);
1439 answer_record = NULL;
1440 }
1441 else {
Christopher Faulet55c1c402021-03-11 09:36:05 +01001442 answer_record->last_seen = now_ms;
Emeric Brunc9437992021-02-12 19:42:55 +01001443 answer_record->ar_item = NULL;
1444
1445 // looking for the SRV record in the response list linked to this additional record
1446 list_for_each_entry(tmp_record, &r_res->answer_list, list) {
1447 if (tmp_record->type == DNS_RTYPE_SRV &&
1448 tmp_record->ar_item == NULL &&
Willy Tarreau20a02372021-10-14 22:52:04 +02001449 !resolv_hostname_cmp(tmp_record->data.target, answer_record->name, tmp_record->data_len)) {
Emeric Brunc9437992021-02-12 19:42:55 +01001450 /* Always use the received additional record to refresh info */
1451 if (tmp_record->ar_item)
1452 pool_free(resolv_answer_item_pool, tmp_record->ar_item);
1453 tmp_record->ar_item = answer_record;
Christopher Faulet9c246a42021-02-23 11:59:19 +01001454 answer_record = NULL;
Emeric Brunc9437992021-02-12 19:42:55 +01001455 break;
1456 }
1457 }
Christopher Faulet9c246a42021-02-23 11:59:19 +01001458 if (answer_record) {
Emeric Brunc9437992021-02-12 19:42:55 +01001459 pool_free(resolv_answer_item_pool, answer_record);
Christopher Faulet9c246a42021-02-23 11:59:19 +01001460 answer_record = NULL;
1461 }
Emeric Brunc9437992021-02-12 19:42:55 +01001462 }
1463 } /* for i 0 to arcount */
1464
1465 skip_parsing_additional_records:
1466
1467 /* Save the number of records we really own */
1468 r_res->header.arcount = nb_saved_records;
Emeric Brunc9437992021-02-12 19:42:55 +01001469 resolv_check_response(resolution);
1470 return RSLV_RESP_VALID;
1471
1472 invalid_resp:
1473 cause = RSLV_RESP_INVALID;
1474
1475 return_error:
Christopher Faulet67f6af52021-12-01 10:18:08 +01001476 if (query)
1477 LIST_DEL_INIT(&query->list);
Emeric Brunc9437992021-02-12 19:42:55 +01001478 pool_free(resolv_answer_item_pool, answer_record);
1479 return cause;
1480}
1481
1482/* Searches dn_name resolution in resp.
1483 * If existing IP not found, return the first IP matching family_priority,
1484 * otherwise, first ip found
1485 * The following tasks are the responsibility of the caller:
1486 * - <r_res> contains an error free DNS response
1487 * For both cases above, resolv_validate_dns_response is required
1488 * returns one of the RSLV_UPD_* code
1489 */
1490int resolv_get_ip_from_response(struct resolv_response *r_res,
1491 struct resolv_options *resolv_opts, void *currentip,
1492 short currentip_sin_family,
1493 void **newip, short *newip_sin_family,
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001494 struct server *owner)
Emeric Brunc9437992021-02-12 19:42:55 +01001495{
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001496 struct resolv_answer_item *record, *found_record = NULL;
Emeric Brunc9437992021-02-12 19:42:55 +01001497 int family_priority;
1498 int currentip_found;
1499 unsigned char *newip4, *newip6;
1500 int currentip_sel;
1501 int j;
1502 int score, max_score;
1503 int allowed_duplicated_ip;
1504
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001505 /* srv is linked to an alive ip record */
1506 if (owner && LIST_INLIST(&owner->ip_rec_item))
1507 return RSLV_UPD_NO;
1508
Emeric Brunc9437992021-02-12 19:42:55 +01001509 family_priority = resolv_opts->family_prio;
1510 allowed_duplicated_ip = resolv_opts->accept_duplicate_ip;
1511 *newip = newip4 = newip6 = NULL;
1512 currentip_found = 0;
1513 *newip_sin_family = AF_UNSPEC;
1514 max_score = -1;
1515
1516 /* Select an IP regarding configuration preference.
1517 * Top priority is the preferred network ip version,
1518 * second priority is the preferred network.
1519 * the last priority is the currently used IP,
1520 *
1521 * For these three priorities, a score is calculated. The
1522 * weight are:
1523 * 8 - preferred ip version.
1524 * 4 - preferred network.
1525 * 2 - if the ip in the record is not affected to any other server in the same backend (duplication)
1526 * 1 - current ip.
1527 * The result with the biggest score is returned.
1528 */
1529
1530 list_for_each_entry(record, &r_res->answer_list, list) {
1531 void *ip;
1532 unsigned char ip_type;
1533
1534 if (record->type == DNS_RTYPE_A) {
Emeric Brunc9437992021-02-12 19:42:55 +01001535 ip_type = AF_INET;
Willy Tarreau20a02372021-10-14 22:52:04 +02001536 ip = &record->data.in4.sin_addr;
Emeric Brunc9437992021-02-12 19:42:55 +01001537 }
1538 else if (record->type == DNS_RTYPE_AAAA) {
1539 ip_type = AF_INET6;
Willy Tarreau20a02372021-10-14 22:52:04 +02001540 ip = &record->data.in6.sin6_addr;
Emeric Brunc9437992021-02-12 19:42:55 +01001541 }
1542 else
1543 continue;
1544 score = 0;
1545
1546 /* Check for preferred ip protocol. */
1547 if (ip_type == family_priority)
1548 score += 8;
1549
1550 /* Check for preferred network. */
1551 for (j = 0; j < resolv_opts->pref_net_nb; j++) {
1552
1553 /* Compare only the same addresses class. */
1554 if (resolv_opts->pref_net[j].family != ip_type)
1555 continue;
1556
1557 if ((ip_type == AF_INET &&
1558 in_net_ipv4(ip,
1559 &resolv_opts->pref_net[j].mask.in4,
1560 &resolv_opts->pref_net[j].addr.in4)) ||
1561 (ip_type == AF_INET6 &&
1562 in_net_ipv6(ip,
1563 &resolv_opts->pref_net[j].mask.in6,
1564 &resolv_opts->pref_net[j].addr.in6))) {
1565 score += 4;
1566 break;
1567 }
1568 }
1569
1570 /* Check if the IP found in the record is already affected to a
1571 * member of a group. If not, the score should be incremented
1572 * by 2. */
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001573 if (owner) {
1574 struct server *srv;
1575 int already_used = 0;
1576
1577 list_for_each_entry(srv, &record->attached_servers, ip_rec_item) {
1578 if (srv == owner)
1579 continue;
1580 if (srv->proxy == owner->proxy) {
1581 already_used = 1;
1582 break;
1583 }
1584 }
1585 if (already_used) {
1586 if (!allowed_duplicated_ip) {
1587 continue;
1588 }
1589 }
1590 else {
1591 score += 2;
Emeric Brunc9437992021-02-12 19:42:55 +01001592 }
1593 } else {
1594 score += 2;
1595 }
1596
1597 /* Check for current ip matching. */
1598 if (ip_type == currentip_sin_family &&
1599 ((currentip_sin_family == AF_INET &&
1600 !memcmp(ip, currentip, 4)) ||
1601 (currentip_sin_family == AF_INET6 &&
1602 !memcmp(ip, currentip, 16)))) {
1603 score++;
1604 currentip_sel = 1;
1605 }
1606 else
1607 currentip_sel = 0;
1608
1609 /* Keep the address if the score is better than the previous
1610 * score. The maximum score is 15, if this value is reached, we
1611 * break the parsing. Implicitly, this score is reached the ip
1612 * selected is the current ip. */
1613 if (score > max_score) {
1614 if (ip_type == AF_INET)
1615 newip4 = ip;
1616 else
1617 newip6 = ip;
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001618 found_record = record;
Emeric Brunc9437992021-02-12 19:42:55 +01001619 currentip_found = currentip_sel;
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001620 if (score == 15) {
1621 /* this was not registered on the current record but it matches
1622 * let's fix it (it may comes from state file */
1623 if (owner)
1624 LIST_APPEND(&found_record->attached_servers, &owner->ip_rec_item);
Emeric Brunc9437992021-02-12 19:42:55 +01001625 return RSLV_UPD_NO;
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001626 }
Emeric Brunc9437992021-02-12 19:42:55 +01001627 max_score = score;
1628 }
1629 } /* list for each record entries */
1630
1631 /* No IP found in the response */
1632 if (!newip4 && !newip6)
1633 return RSLV_UPD_NO_IP_FOUND;
1634
1635 /* Case when the caller looks first for an IPv4 address */
1636 if (family_priority == AF_INET) {
1637 if (newip4) {
1638 *newip = newip4;
1639 *newip_sin_family = AF_INET;
1640 }
1641 else if (newip6) {
1642 *newip = newip6;
1643 *newip_sin_family = AF_INET6;
1644 }
Emeric Brunc9437992021-02-12 19:42:55 +01001645 }
1646 /* Case when the caller looks first for an IPv6 address */
1647 else if (family_priority == AF_INET6) {
1648 if (newip6) {
1649 *newip = newip6;
1650 *newip_sin_family = AF_INET6;
1651 }
1652 else if (newip4) {
1653 *newip = newip4;
1654 *newip_sin_family = AF_INET;
1655 }
Emeric Brunc9437992021-02-12 19:42:55 +01001656 }
1657 /* Case when the caller have no preference (we prefer IPv6) */
1658 else if (family_priority == AF_UNSPEC) {
1659 if (newip6) {
1660 *newip = newip6;
1661 *newip_sin_family = AF_INET6;
1662 }
1663 else if (newip4) {
1664 *newip = newip4;
1665 *newip_sin_family = AF_INET;
1666 }
Emeric Brunc9437992021-02-12 19:42:55 +01001667 }
1668
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001669 /* the ip of this record was chosen for the server */
1670 if (owner && found_record) {
Christopher Faulet2558d5a2021-06-24 15:16:48 +02001671 LIST_DEL_INIT(&owner->ip_rec_item);
Emeric Brunf9ca5d82021-06-11 10:08:05 +02001672 LIST_APPEND(&found_record->attached_servers, &owner->ip_rec_item);
1673 }
1674
Emeric Brunc9437992021-02-12 19:42:55 +01001675 list_for_each_entry(record, &r_res->answer_list, list) {
1676 /* Move the first record to the end of the list, for internal
1677 * round robin */
Willy Tarreau8c3c5232021-10-19 22:01:36 +02001678 LIST_DEL_INIT(&record->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02001679 LIST_APPEND(&r_res->answer_list, &record->list);
Emeric Brunc9437992021-02-12 19:42:55 +01001680 break;
1681 }
Christopher Faulet2558d5a2021-06-24 15:16:48 +02001682
1683 return (currentip_found ? RSLV_UPD_NO : RSLV_UPD_SRVIP_NOT_FOUND);
Emeric Brunc9437992021-02-12 19:42:55 +01001684}
1685
Willy Tarreauca0170b2021-10-14 08:05:25 +02001686/* Turns a domain name label into a string: 3www7haproxy3org into www.haproxy.org
Emeric Brunc9437992021-02-12 19:42:55 +01001687 *
Willy Tarreauca0170b2021-10-14 08:05:25 +02001688 * <dn> contains the input label of <dn_len> bytes long and does not need to be
1689 * null-terminated. <str> must be allocated large enough to contain a full host
1690 * name plus the trailing zero, and the allocated size must be passed in
1691 * <str_len>.
Emeric Brunc9437992021-02-12 19:42:55 +01001692 *
Willy Tarreauca0170b2021-10-14 08:05:25 +02001693 * In case of error, -1 is returned, otherwise, the number of bytes copied in
Emeric Brunc9437992021-02-12 19:42:55 +01001694 * <str> (including the terminating null byte).
1695 */
1696int resolv_dn_label_to_str(const char *dn, int dn_len, char *str, int str_len)
1697{
1698 char *ptr;
1699 int i, sz;
1700
Willy Tarreauca0170b2021-10-14 08:05:25 +02001701 if (str_len < dn_len)
Emeric Brunc9437992021-02-12 19:42:55 +01001702 return -1;
1703
1704 ptr = str;
Willy Tarreauca0170b2021-10-14 08:05:25 +02001705 for (i = 0; i < dn_len; ++i) {
Emeric Brunc9437992021-02-12 19:42:55 +01001706 sz = dn[i];
1707 if (i)
1708 *ptr++ = '.';
1709 memcpy(ptr, dn+i+1, sz);
1710 ptr += sz;
1711 i += sz;
1712 }
1713 *ptr++ = '\0';
1714 return (ptr - str);
1715}
1716
1717/* Turns a string into domain name label: www.haproxy.org into 3www7haproxy3org
1718 *
Willy Tarreauc1c765f2021-10-14 07:49:49 +02001719 * <str> contains the input string that is <str_len> bytes long (trailing zero
1720 * not needed). <dn> buffer must be allocated large enough to contain the
1721 * encoded string and a trailing zero, so it must be at least str_len+2, and
1722 * this allocated buffer size must be passed in <dn_len>.
Emeric Brunc9437992021-02-12 19:42:55 +01001723 *
Willy Tarreauc1c765f2021-10-14 07:49:49 +02001724 * In case of error, -1 is returned, otherwise, the number of bytes copied in
Emeric Brunc9437992021-02-12 19:42:55 +01001725 * <dn> (excluding the terminating null byte).
1726 */
1727int resolv_str_to_dn_label(const char *str, int str_len, char *dn, int dn_len)
1728{
1729 int i, offset;
1730
Willy Tarreauc1c765f2021-10-14 07:49:49 +02001731 if (dn_len < str_len + 2)
Emeric Brunc9437992021-02-12 19:42:55 +01001732 return -1;
1733
1734 /* First byte of dn will be used to store the length of the first
1735 * label */
1736 offset = 0;
1737 for (i = 0; i < str_len; ++i) {
1738 if (str[i] == '.') {
1739 /* 2 or more consecutive dots is invalid */
1740 if (i == offset)
1741 return -1;
1742
1743 /* ignore trailing dot */
Willy Tarreauc1c765f2021-10-14 07:49:49 +02001744 if (i + 1 == str_len) {
Emeric Brunc9437992021-02-12 19:42:55 +01001745 i++;
1746 break;
1747 }
1748
1749 dn[offset] = (i - offset);
1750 offset = i+1;
1751 continue;
1752 }
1753 dn[i+1] = str[i];
1754 }
Willy Tarreauc1c765f2021-10-14 07:49:49 +02001755 dn[offset] = i - offset;
Willy Tarreau68c7b362021-10-15 08:09:25 +02001756 dn[i+1] = '\0';
1757 return i+1;
Emeric Brunc9437992021-02-12 19:42:55 +01001758}
1759
1760/* Validates host name:
1761 * - total size
1762 * - each label size individually
1763 * returns:
1764 * 0 in case of error. If <err> is not NULL, an error message is stored there.
1765 * 1 when no error. <err> is left unaffected.
1766 */
1767int resolv_hostname_validation(const char *string, char **err)
1768{
1769 int i;
1770
1771 if (strlen(string) > DNS_MAX_NAME_SIZE) {
1772 if (err)
1773 *err = DNS_TOO_LONG_FQDN;
1774 return 0;
1775 }
1776
1777 while (*string) {
1778 i = 0;
1779 while (*string && *string != '.' && i < DNS_MAX_LABEL_SIZE) {
1780 if (!(*string == '-' || *string == '_' ||
1781 (*string >= 'a' && *string <= 'z') ||
1782 (*string >= 'A' && *string <= 'Z') ||
1783 (*string >= '0' && *string <= '9'))) {
1784 if (err)
1785 *err = DNS_INVALID_CHARACTER;
1786 return 0;
1787 }
1788 i++;
1789 string++;
1790 }
1791
1792 if (!(*string))
1793 break;
1794
1795 if (*string != '.' && i >= DNS_MAX_LABEL_SIZE) {
1796 if (err)
1797 *err = DNS_LABEL_TOO_LONG;
1798 return 0;
1799 }
1800
1801 string++;
1802 }
1803 return 1;
1804}
1805
1806/* Picks up an available resolution from the different resolution list
1807 * associated to a resolvers section, in this order:
1808 * 1. check in resolutions.curr for the same hostname and query_type
1809 * 2. check in resolutions.wait for the same hostname and query_type
1810 * 3. Get a new resolution from resolution pool
1811 *
1812 * Returns an available resolution, NULL if none found.
1813 */
1814static struct resolv_resolution *resolv_pick_resolution(struct resolvers *resolvers,
1815 char **hostname_dn, int hostname_dn_len,
1816 int query_type)
1817{
1818 struct resolv_resolution *res;
1819
1820 if (!*hostname_dn)
1821 goto from_pool;
1822
1823 /* Search for same hostname and query type in resolutions.curr */
1824 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
1825 if (!res->hostname_dn)
1826 continue;
1827 if ((query_type == res->prefered_query_type) &&
1828 hostname_dn_len == res->hostname_dn_len &&
1829 !resolv_hostname_cmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
1830 return res;
1831 }
1832
1833 /* Search for same hostname and query type in resolutions.wait */
1834 list_for_each_entry(res, &resolvers->resolutions.wait, list) {
1835 if (!res->hostname_dn)
1836 continue;
1837 if ((query_type == res->prefered_query_type) &&
1838 hostname_dn_len == res->hostname_dn_len &&
1839 !resolv_hostname_cmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
1840 return res;
1841 }
1842
1843 from_pool:
1844 /* No resolution could be found, so let's allocate a new one */
Willy Tarreau70490eb2021-03-22 21:08:50 +01001845 res = pool_zalloc(resolv_resolution_pool);
Emeric Brunc9437992021-02-12 19:42:55 +01001846 if (res) {
Willy Tarreau51128f82021-10-19 11:17:33 +02001847 int i;
1848
Emeric Brunc9437992021-02-12 19:42:55 +01001849 res->resolvers = resolvers;
1850 res->uuid = resolution_uuid;
1851 res->status = RSLV_STATUS_NONE;
1852 res->step = RSLV_STEP_NONE;
1853 res->last_valid = now_ms;
1854
1855 LIST_INIT(&res->requesters);
Willy Tarreau51128f82021-10-19 11:17:33 +02001856 LIST_INIT(&res->response.query_list);
Emeric Brunc9437992021-02-12 19:42:55 +01001857 LIST_INIT(&res->response.answer_list);
1858
Willy Tarreau51128f82021-10-19 11:17:33 +02001859 for (i = 0; i < DNS_MAX_QUERY_RECORDS; i++)
1860 LIST_INIT(&res->response_query_records[i].list);
1861
Emeric Brunc9437992021-02-12 19:42:55 +01001862 res->prefered_query_type = query_type;
1863 res->query_type = query_type;
1864 res->hostname_dn = *hostname_dn;
1865 res->hostname_dn_len = hostname_dn_len;
1866
1867 ++resolution_uuid;
1868
1869 /* Move the resolution to the resolvers wait queue */
Willy Tarreau2b718102021-04-21 07:32:39 +02001870 LIST_APPEND(&resolvers->resolutions.wait, &res->list);
Emeric Brunc9437992021-02-12 19:42:55 +01001871 }
1872 return res;
1873}
1874
Willy Tarreauaab75932021-10-19 11:16:11 +02001875/* deletes and frees all answer_items from the resolution's answer_list */
1876static void resolv_purge_resolution_answer_records(struct resolv_resolution *resolution)
Christopher Faulet1dec5c72021-03-10 14:40:39 +01001877{
1878 struct resolv_answer_item *item, *itemback;
1879
1880 list_for_each_entry_safe(item, itemback, &resolution->response.answer_list, list) {
Willy Tarreau8c3c5232021-10-19 22:01:36 +02001881 LIST_DEL_INIT(&item->list);
Christopher Faulet1dec5c72021-03-10 14:40:39 +01001882 pool_free(resolv_answer_item_pool, item->ar_item);
1883 pool_free(resolv_answer_item_pool, item);
1884 }
1885}
1886
Willy Tarreau51128f82021-10-19 11:17:33 +02001887/* deletes all query_items from the resolution's query_list */
1888static void resolv_purge_resolution_query_items(struct resolv_resolution *resolution)
1889{
1890 struct resolv_query_item *item, *itemback;
1891
1892 list_for_each_entry_safe(item, itemback, &resolution->response.query_list, list)
1893 LIST_DEL_INIT(&item->list);
1894}
1895
Emeric Brunc9437992021-02-12 19:42:55 +01001896/* Releases a resolution from its requester(s) and move it back to the pool */
1897static void resolv_free_resolution(struct resolv_resolution *resolution)
1898{
1899 struct resolv_requester *req, *reqback;
Emeric Brunc9437992021-02-12 19:42:55 +01001900
1901 /* clean up configuration */
1902 resolv_reset_resolution(resolution);
1903 resolution->hostname_dn = NULL;
1904 resolution->hostname_dn_len = 0;
1905
1906 list_for_each_entry_safe(req, reqback, &resolution->requesters, list) {
Willy Tarreau8c3c5232021-10-19 22:01:36 +02001907 LIST_DEL_INIT(&req->list);
Emeric Brunc9437992021-02-12 19:42:55 +01001908 req->resolution = NULL;
1909 }
Christopher Faulet1dec5c72021-03-10 14:40:39 +01001910 resolv_purge_resolution_answer_records(resolution);
Willy Tarreau51128f82021-10-19 11:17:33 +02001911 resolv_purge_resolution_query_items(resolution);
1912
Willy Tarreau8c3c5232021-10-19 22:01:36 +02001913 LIST_DEL_INIT(&resolution->list);
Emeric Brunc9437992021-02-12 19:42:55 +01001914 pool_free(resolv_resolution_pool, resolution);
1915}
1916
Willy Tarreau4d7ca912021-10-19 11:59:25 +02001917/* If *<req> is not NULL, returns it, otherwise tries to allocate a requester
1918 * and makes it owned by this obj_type, with the proposed callback and error
1919 * callback. On success, *req is assigned the allocated requester. Returns
1920 * NULL on allocation failure.
1921 */
1922static struct resolv_requester *
1923resolv_get_requester(struct resolv_requester **req, enum obj_type *owner,
1924 int (*cb)(struct resolv_requester *, struct dns_counters *),
1925 int (*err_cb)(struct resolv_requester *, int))
1926{
1927 struct resolv_requester *tmp;
1928
1929 if (*req)
1930 return *req;
1931
1932 tmp = pool_alloc(resolv_requester_pool);
1933 if (!tmp)
1934 goto end;
1935
1936 LIST_INIT(&tmp->list);
1937 tmp->owner = owner;
1938 tmp->resolution = NULL;
1939 tmp->requester_cb = cb;
1940 tmp->requester_error_cb = err_cb;
1941 *req = tmp;
1942 end:
1943 return tmp;
1944}
1945
Emeric Brunc9437992021-02-12 19:42:55 +01001946/* Links a requester (a server or a resolv_srvrq) with a resolution. It returns 0
Christopher Faulet7a3a5362021-11-02 16:25:05 +01001947 * on success, -1 otherwise.
Emeric Brunc9437992021-02-12 19:42:55 +01001948 */
1949int resolv_link_resolution(void *requester, int requester_type, int requester_locked)
1950{
1951 struct resolv_resolution *res = NULL;
1952 struct resolv_requester *req;
1953 struct resolvers *resolvers;
1954 struct server *srv = NULL;
1955 struct resolv_srvrq *srvrq = NULL;
1956 struct stream *stream = NULL;
1957 char **hostname_dn;
1958 int hostname_dn_len, query_type;
1959
Christopher Faulet7a3a5362021-11-02 16:25:05 +01001960 enter_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01001961 switch (requester_type) {
1962 case OBJ_TYPE_SERVER:
1963 srv = (struct server *)requester;
Willy Tarreau4d7ca912021-10-19 11:59:25 +02001964
1965 if (!requester_locked)
1966 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
1967
1968 req = resolv_get_requester(&srv->resolv_requester,
1969 &srv->obj_type,
1970 snr_resolution_cb,
1971 snr_resolution_error_cb);
1972
1973 if (!requester_locked)
1974 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
1975
1976 if (!req)
1977 goto err;
1978
Emeric Brunc9437992021-02-12 19:42:55 +01001979 hostname_dn = &srv->hostname_dn;
1980 hostname_dn_len = srv->hostname_dn_len;
1981 resolvers = srv->resolvers;
1982 query_type = ((srv->resolv_opts.family_prio == AF_INET)
1983 ? DNS_RTYPE_A
1984 : DNS_RTYPE_AAAA);
1985 break;
1986
1987 case OBJ_TYPE_SRVRQ:
1988 srvrq = (struct resolv_srvrq *)requester;
Willy Tarreau4d7ca912021-10-19 11:59:25 +02001989
1990 req = resolv_get_requester(&srvrq->requester,
1991 &srvrq->obj_type,
1992 snr_resolution_cb,
1993 srvrq_resolution_error_cb);
1994 if (!req)
1995 goto err;
1996
Emeric Brunc9437992021-02-12 19:42:55 +01001997 hostname_dn = &srvrq->hostname_dn;
1998 hostname_dn_len = srvrq->hostname_dn_len;
1999 resolvers = srvrq->resolvers;
2000 query_type = DNS_RTYPE_SRV;
2001 break;
2002
2003 case OBJ_TYPE_STREAM:
2004 stream = (struct stream *)requester;
Willy Tarreau4d7ca912021-10-19 11:59:25 +02002005
2006 req = resolv_get_requester(&stream->resolv_ctx.requester,
2007 &stream->obj_type,
2008 act_resolution_cb,
2009 act_resolution_error_cb);
2010 if (!req)
2011 goto err;
2012
Emeric Brunc9437992021-02-12 19:42:55 +01002013 hostname_dn = &stream->resolv_ctx.hostname_dn;
2014 hostname_dn_len = stream->resolv_ctx.hostname_dn_len;
2015 resolvers = stream->resolv_ctx.parent->arg.resolv.resolvers;
2016 query_type = ((stream->resolv_ctx.parent->arg.resolv.opts->family_prio == AF_INET)
2017 ? DNS_RTYPE_A
2018 : DNS_RTYPE_AAAA);
2019 break;
2020 default:
2021 goto err;
2022 }
2023
2024 /* Get a resolution from the resolvers' wait queue or pool */
2025 if ((res = resolv_pick_resolution(resolvers, hostname_dn, hostname_dn_len, query_type)) == NULL)
2026 goto err;
2027
Willy Tarreau4d7ca912021-10-19 11:59:25 +02002028 req->resolution = res;
Emeric Brunc9437992021-02-12 19:42:55 +01002029
Willy Tarreau2b718102021-04-21 07:32:39 +02002030 LIST_APPEND(&res->requesters, &req->list);
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002031 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002032 return 0;
2033
2034 err:
2035 if (res && LIST_ISEMPTY(&res->requesters))
2036 resolv_free_resolution(res);
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002037 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002038 return -1;
2039}
2040
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002041/* This function removes all server/srvrq references on answer items. */
Willy Tarreau33360872021-10-20 14:07:31 +02002042void resolv_detach_from_resolution_answer_items(struct resolv_resolution *res, struct resolv_requester *req)
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002043{
2044 struct resolv_answer_item *item, *itemback;
2045 struct server *srv, *srvback;
2046 struct resolv_srvrq *srvrq;
2047
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002048 enter_resolver_code();
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002049 if ((srv = objt_server(req->owner)) != NULL) {
2050 LIST_DEL_INIT(&srv->ip_rec_item);
2051 }
2052 else if ((srvrq = objt_resolv_srvrq(req->owner)) != NULL) {
2053 list_for_each_entry_safe(item, itemback, &res->response.answer_list, list) {
2054 if (item->type == DNS_RTYPE_SRV) {
2055 list_for_each_entry_safe(srv, srvback, &item->attached_servers, srv_rec_item) {
Christopher Faulet5f8ccff2021-06-15 16:08:48 +02002056 if (srv->srvrq == srvrq)
Willy Tarreau20751652021-10-18 16:46:38 +02002057 resolv_srvrq_cleanup_srv(srv);
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002058 }
2059 }
2060 }
2061 }
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002062 leave_resolver_code();
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002063}
2064
Emeric Brunc9437992021-02-12 19:42:55 +01002065/* Removes a requester from a DNS resolution. It takes takes care of all the
2066 * consequences. It also cleans up some parameters from the requester.
2067 */
Willy Tarreau33360872021-10-20 14:07:31 +02002068static void _resolv_unlink_resolution(struct resolv_requester *requester)
Emeric Brunc9437992021-02-12 19:42:55 +01002069{
2070 struct resolv_resolution *res;
2071 struct resolv_requester *req;
2072
2073 /* Nothing to do */
2074 if (!requester || !requester->resolution)
2075 return;
2076 res = requester->resolution;
2077
2078 /* Clean up the requester */
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002079 LIST_DEL_INIT(&requester->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002080 requester->resolution = NULL;
2081
Christopher Faulete7e0e4b2021-10-29 10:38:15 +02002082 /* remove ref from the resolution answer item list to the requester */
2083 resolv_detach_from_resolution_answer_items(res, requester);
2084
Emeric Brunc9437992021-02-12 19:42:55 +01002085 /* We need to find another requester linked on this resolution */
2086 if (!LIST_ISEMPTY(&res->requesters))
2087 req = LIST_NEXT(&res->requesters, struct resolv_requester *, list);
2088 else {
Willy Tarreau20751652021-10-18 16:46:38 +02002089 abort_resolution(res);
Emeric Brunc9437992021-02-12 19:42:55 +01002090 return;
2091 }
2092
2093 /* Move hostname_dn related pointers to the next requester */
2094 switch (obj_type(req->owner)) {
2095 case OBJ_TYPE_SERVER:
2096 res->hostname_dn = __objt_server(req->owner)->hostname_dn;
2097 res->hostname_dn_len = __objt_server(req->owner)->hostname_dn_len;
2098 break;
2099 case OBJ_TYPE_SRVRQ:
2100 res->hostname_dn = __objt_resolv_srvrq(req->owner)->hostname_dn;
2101 res->hostname_dn_len = __objt_resolv_srvrq(req->owner)->hostname_dn_len;
2102 break;
2103 case OBJ_TYPE_STREAM:
2104 res->hostname_dn = __objt_stream(req->owner)->resolv_ctx.hostname_dn;
2105 res->hostname_dn_len = __objt_stream(req->owner)->resolv_ctx.hostname_dn_len;
2106 break;
2107 default:
2108 res->hostname_dn = NULL;
2109 res->hostname_dn_len = 0;
2110 break;
2111 }
2112}
2113
Willy Tarreau20751652021-10-18 16:46:38 +02002114/* The public version of the function above that deals with the death row. */
Willy Tarreau33360872021-10-20 14:07:31 +02002115void resolv_unlink_resolution(struct resolv_requester *requester)
Willy Tarreau20751652021-10-18 16:46:38 +02002116{
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002117 enter_resolver_code();
Willy Tarreau33360872021-10-20 14:07:31 +02002118 _resolv_unlink_resolution(requester);
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002119 leave_resolver_code();
Willy Tarreau20751652021-10-18 16:46:38 +02002120}
2121
Emeric Brunc9437992021-02-12 19:42:55 +01002122/* Called when a network IO is generated on a name server socket for an incoming
2123 * packet. It performs the following actions:
2124 * - check if the packet requires processing (not outdated resolution)
2125 * - ensure the DNS packet received is valid and call requester's callback
2126 * - call requester's error callback if invalid response
2127 * - check the dn_name in the packet against the one sent
2128 */
2129static int resolv_process_responses(struct dns_nameserver *ns)
2130{
2131 struct dns_counters *tmpcounters;
2132 struct resolvers *resolvers;
2133 struct resolv_resolution *res;
2134 struct resolv_query_item *query;
2135 unsigned char buf[DNS_MAX_UDP_MESSAGE + 1];
2136 unsigned char *bufend;
2137 int buflen, dns_resp;
2138 int max_answer_records;
2139 unsigned short query_id;
2140 struct eb32_node *eb;
2141 struct resolv_requester *req;
Emeric Brun43839d02021-06-10 15:25:25 +02002142 int keep_answer_items;
Emeric Brunc9437992021-02-12 19:42:55 +01002143
2144 resolvers = ns->parent;
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002145 enter_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002146 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2147
2148 /* process all pending input messages */
2149 while (1) {
2150 /* read message received */
2151 memset(buf, '\0', resolvers->accepted_payload_size + 1);
2152 if ((buflen = dns_recv_nameserver(ns, (void *)buf, sizeof(buf))) <= 0) {
2153 break;
2154 }
2155
2156 /* message too big */
2157 if (buflen > resolvers->accepted_payload_size) {
2158 ns->counters->too_big++;
2159 continue;
2160 }
2161
2162 /* initializing variables */
2163 bufend = buf + buflen; /* pointer to mark the end of the buffer */
2164
2165 /* read the query id from the packet (16 bits) */
2166 if (buf + 2 > bufend) {
2167 ns->counters->invalid++;
2168 continue;
2169 }
2170 query_id = resolv_response_get_query_id(buf);
2171
2172 /* search the query_id in the pending resolution tree */
2173 eb = eb32_lookup(&resolvers->query_ids, query_id);
2174 if (eb == NULL) {
2175 /* unknown query id means an outdated response and can be safely ignored */
2176 ns->counters->outdated++;
2177 continue;
2178 }
2179
2180 /* known query id means a resolution in progress */
2181 res = eb32_entry(eb, struct resolv_resolution, qid);
2182 /* number of responses received */
2183 res->nb_responses++;
2184
2185 max_answer_records = (resolvers->accepted_payload_size - DNS_HEADER_SIZE) / DNS_MIN_RECORD_SIZE;
2186 dns_resp = resolv_validate_dns_response(buf, bufend, res, max_answer_records);
2187
2188 switch (dns_resp) {
2189 case RSLV_RESP_VALID:
2190 break;
2191
2192 case RSLV_RESP_INVALID:
2193 case RSLV_RESP_QUERY_COUNT_ERROR:
2194 case RSLV_RESP_WRONG_NAME:
2195 res->status = RSLV_STATUS_INVALID;
2196 ns->counters->invalid++;
2197 break;
2198
2199 case RSLV_RESP_NX_DOMAIN:
2200 res->status = RSLV_STATUS_NX;
2201 ns->counters->nx++;
2202 break;
2203
2204 case RSLV_RESP_REFUSED:
2205 res->status = RSLV_STATUS_REFUSED;
2206 ns->counters->refused++;
2207 break;
2208
2209 case RSLV_RESP_ANCOUNT_ZERO:
2210 res->status = RSLV_STATUS_OTHER;
2211 ns->counters->any_err++;
2212 break;
2213
2214 case RSLV_RESP_CNAME_ERROR:
2215 res->status = RSLV_STATUS_OTHER;
2216 ns->counters->cname_error++;
2217 break;
2218
2219 case RSLV_RESP_TRUNCATED:
2220 res->status = RSLV_STATUS_OTHER;
2221 ns->counters->truncated++;
2222 break;
2223
2224 case RSLV_RESP_NO_EXPECTED_RECORD:
2225 case RSLV_RESP_ERROR:
2226 case RSLV_RESP_INTERNAL:
2227 res->status = RSLV_STATUS_OTHER;
2228 ns->counters->other++;
2229 break;
2230 }
2231
2232 /* Wait all nameservers response to handle errors */
2233 if (dns_resp != RSLV_RESP_VALID && res->nb_responses < res->nb_queries)
2234 continue;
2235
2236 /* Process error codes */
2237 if (dns_resp != RSLV_RESP_VALID) {
2238 if (res->prefered_query_type != res->query_type) {
2239 /* The fallback on the query type was already performed,
2240 * so check the try counter. If it falls to 0, we can
2241 * report an error. Else, wait the next attempt. */
2242 if (!res->try)
2243 goto report_res_error;
2244 }
2245 else {
2246 /* Fallback from A to AAAA or the opposite and re-send
2247 * the resolution immediately. try counter is not
2248 * decremented. */
2249 if (res->prefered_query_type == DNS_RTYPE_A) {
2250 res->query_type = DNS_RTYPE_AAAA;
2251 resolv_send_query(res);
2252 }
2253 else if (res->prefered_query_type == DNS_RTYPE_AAAA) {
2254 res->query_type = DNS_RTYPE_A;
2255 resolv_send_query(res);
2256 }
2257 }
2258 continue;
2259 }
2260
2261 /* Now let's check the query's dname corresponds to the one we
2262 * sent. We can check only the first query of the list. We send
Willy Tarreau51128f82021-10-19 11:17:33 +02002263 * one query at a time so we get one query in the response.
2264 */
2265 if (!LIST_ISEMPTY(&res->response.query_list)) {
2266 query = LIST_NEXT(&res->response.query_list, struct resolv_query_item *, list);
2267 LIST_DEL_INIT(&query->list);
2268 if (resolv_hostname_cmp(query->name, res->hostname_dn, res->hostname_dn_len) != 0) {
2269 dns_resp = RSLV_RESP_WRONG_NAME;
2270 ns->counters->other++;
2271 goto report_res_error;
2272 }
Emeric Brunc9437992021-02-12 19:42:55 +01002273 }
2274
2275 /* So the resolution succeeded */
2276 res->status = RSLV_STATUS_VALID;
2277 res->last_valid = now_ms;
2278 ns->counters->valid++;
2279 goto report_res_success;
2280
2281 report_res_error:
Emeric Brun43839d02021-06-10 15:25:25 +02002282 keep_answer_items = 0;
Emeric Brunc9437992021-02-12 19:42:55 +01002283 list_for_each_entry(req, &res->requesters, list)
Emeric Brun43839d02021-06-10 15:25:25 +02002284 keep_answer_items |= req->requester_error_cb(req, dns_resp);
2285 if (!keep_answer_items)
2286 resolv_purge_resolution_answer_records(res);
Emeric Brunc9437992021-02-12 19:42:55 +01002287 resolv_reset_resolution(res);
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002288 LIST_DEL_INIT(&res->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02002289 LIST_APPEND(&resolvers->resolutions.wait, &res->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002290 continue;
2291
2292 report_res_success:
2293 /* Only the 1rst requester s managed by the server, others are
2294 * from the cache */
2295 tmpcounters = ns->counters;
2296 list_for_each_entry(req, &res->requesters, list) {
2297 struct server *s = objt_server(req->owner);
2298
2299 if (s)
2300 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
2301 req->requester_cb(req, tmpcounters);
2302 if (s)
2303 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2304 tmpcounters = NULL;
2305 }
2306
2307 resolv_reset_resolution(res);
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002308 LIST_DEL_INIT(&res->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02002309 LIST_APPEND(&resolvers->resolutions.wait, &res->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002310 continue;
2311 }
2312 resolv_update_resolvers_timeout(resolvers);
2313 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002314 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002315 return buflen;
2316}
2317
2318/* Processes DNS resolution. First, it checks the active list to detect expired
2319 * resolutions and retry them if possible. Else a timeout is reported. Then, it
2320 * checks the wait list to trigger new resolutions.
2321 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002322static struct task *process_resolvers(struct task *t, void *context, unsigned int state)
Emeric Brunc9437992021-02-12 19:42:55 +01002323{
2324 struct resolvers *resolvers = context;
2325 struct resolv_resolution *res, *resback;
2326 int exp;
2327
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002328 enter_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002329 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2330
Willy Tarreau20751652021-10-18 16:46:38 +02002331 /* Handle all expired resolutions from the active list. Elements that
2332 * need to be removed will in fact be moved to the death_row. Other
2333 * ones will be handled normally.
2334 */
2335
Willy Tarreau20751652021-10-18 16:46:38 +02002336 res = LIST_NEXT(&resolvers->resolutions.curr, struct resolv_resolution *, list);
2337 while (&res->list != &resolvers->resolutions.curr) {
2338 resback = LIST_NEXT(&res->list, struct resolv_resolution *, list);
2339
Christopher Faulet0efc0992021-03-11 18:09:53 +01002340 if (LIST_ISEMPTY(&res->requesters)) {
Willy Tarreau20751652021-10-18 16:46:38 +02002341 abort_resolution(res);
2342 res = resback;
Christopher Faulet0efc0992021-03-11 18:09:53 +01002343 continue;
2344 }
2345
Emeric Brunc9437992021-02-12 19:42:55 +01002346 /* When we find the first resolution in the future, then we can
2347 * stop here */
2348 exp = tick_add(res->last_query, resolvers->timeout.retry);
2349 if (!tick_is_expired(exp, now_ms))
2350 break;
2351
2352 /* If current resolution has been tried too many times and
2353 * finishes in timeout we update its status and remove it from
2354 * the list */
2355 if (!res->try) {
2356 struct resolv_requester *req;
Emeric Brun43839d02021-06-10 15:25:25 +02002357 int keep_answer_items = 0;
Emeric Brunc9437992021-02-12 19:42:55 +01002358
2359 /* Notify the result to the requesters */
2360 if (!res->nb_responses)
2361 res->status = RSLV_STATUS_TIMEOUT;
2362 list_for_each_entry(req, &res->requesters, list)
Emeric Brun43839d02021-06-10 15:25:25 +02002363 keep_answer_items |= req->requester_error_cb(req, res->status);
2364 if (!keep_answer_items)
2365 resolv_purge_resolution_answer_records(res);
Emeric Brunc9437992021-02-12 19:42:55 +01002366
2367 /* Clean up resolution info and remove it from the
2368 * current list */
2369 resolv_reset_resolution(res);
Willy Tarreau20751652021-10-18 16:46:38 +02002370
2371 /* subsequent entries might have been deleted here */
2372 resback = LIST_NEXT(&res->list, struct resolv_resolution *, list);
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002373 LIST_DEL_INIT(&res->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02002374 LIST_APPEND(&resolvers->resolutions.wait, &res->list);
Willy Tarreau20751652021-10-18 16:46:38 +02002375 res = resback;
Emeric Brunc9437992021-02-12 19:42:55 +01002376 }
2377 else {
2378 /* Otherwise resend the DNS query and requeue the resolution */
2379 if (!res->nb_responses || res->prefered_query_type != res->query_type) {
2380 /* No response received (a real timeout) or fallback already done */
2381 res->query_type = res->prefered_query_type;
2382 res->try--;
2383 }
2384 else {
2385 /* Fallback from A to AAAA or the opposite and re-send
2386 * the resolution immediately. try counter is not
2387 * decremented. */
2388 if (res->prefered_query_type == DNS_RTYPE_A)
2389 res->query_type = DNS_RTYPE_AAAA;
2390 else if (res->prefered_query_type == DNS_RTYPE_AAAA)
2391 res->query_type = DNS_RTYPE_A;
2392 else
2393 res->try--;
2394 }
2395 resolv_send_query(res);
Willy Tarreau20751652021-10-18 16:46:38 +02002396 resback = LIST_NEXT(&res->list, struct resolv_resolution *, list);
2397 res = resback;
Emeric Brunc9437992021-02-12 19:42:55 +01002398 }
2399 }
2400
2401 /* Handle all resolutions in the wait list */
2402 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
Christopher Faulet0efc0992021-03-11 18:09:53 +01002403 if (LIST_ISEMPTY(&res->requesters)) {
Willy Tarreau20751652021-10-18 16:46:38 +02002404 abort_resolution(res);
Christopher Faulet0efc0992021-03-11 18:09:53 +01002405 continue;
2406 }
2407
Emeric Brunc9437992021-02-12 19:42:55 +01002408 exp = tick_add(res->last_resolution, resolv_resolution_timeout(res));
2409 if (tick_isset(res->last_resolution) && !tick_is_expired(exp, now_ms))
2410 continue;
2411
2412 if (resolv_run_resolution(res) != 1) {
2413 res->last_resolution = now_ms;
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002414 LIST_DEL_INIT(&res->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02002415 LIST_APPEND(&resolvers->resolutions.wait, &res->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002416 }
2417 }
Emeric Brunc9437992021-02-12 19:42:55 +01002418 resolv_update_resolvers_timeout(resolvers);
2419 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002420
2421 /* now we can purge all queued deletions */
2422 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002423 return t;
2424}
2425
2426/* Release memory allocated by DNS */
2427static void resolvers_deinit(void)
2428{
2429 struct resolvers *resolvers, *resolversback;
2430 struct dns_nameserver *ns, *nsback;
2431 struct resolv_resolution *res, *resback;
2432 struct resolv_requester *req, *reqback;
2433 struct resolv_srvrq *srvrq, *srvrqback;
2434
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002435 enter_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002436 list_for_each_entry_safe(resolvers, resolversback, &sec_resolvers, list) {
2437 list_for_each_entry_safe(ns, nsback, &resolvers->nameservers, list) {
2438 free(ns->id);
2439 free((char *)ns->conf.file);
2440 if (ns->dgram) {
2441 if (ns->dgram->conn.t.sock.fd != -1) {
2442 fd_delete(ns->dgram->conn.t.sock.fd);
2443 close(ns->dgram->conn.t.sock.fd);
2444 }
2445 if (ns->dgram->ring_req)
2446 ring_free(ns->dgram->ring_req);
2447 free(ns->dgram);
2448 }
Emeric Brun56fc5d92021-02-12 20:05:45 +01002449 if (ns->stream) {
2450 if (ns->stream->ring_req)
2451 ring_free(ns->stream->ring_req);
2452 if (ns->stream->task_req)
2453 task_destroy(ns->stream->task_req);
2454 if (ns->stream->task_rsp)
2455 task_destroy(ns->stream->task_rsp);
2456 free(ns->stream);
2457 }
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002458 LIST_DEL_INIT(&ns->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002459 EXTRA_COUNTERS_FREE(ns->extra_counters);
2460 free(ns);
2461 }
2462
2463 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
2464 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002465 LIST_DEL_INIT(&req->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002466 pool_free(resolv_requester_pool, req);
2467 }
Willy Tarreau20751652021-10-18 16:46:38 +02002468 abort_resolution(res);
Emeric Brunc9437992021-02-12 19:42:55 +01002469 }
2470
2471 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
2472 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002473 LIST_DEL_INIT(&req->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002474 pool_free(resolv_requester_pool, req);
2475 }
Willy Tarreau20751652021-10-18 16:46:38 +02002476 abort_resolution(res);
Emeric Brunc9437992021-02-12 19:42:55 +01002477 }
2478
2479 free(resolvers->id);
2480 free((char *)resolvers->conf.file);
2481 task_destroy(resolvers->t);
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002482 LIST_DEL_INIT(&resolvers->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002483 free(resolvers);
2484 }
2485
2486 list_for_each_entry_safe(srvrq, srvrqback, &resolv_srvrq_list, list) {
2487 free(srvrq->name);
2488 free(srvrq->hostname_dn);
Willy Tarreau8c3c5232021-10-19 22:01:36 +02002489 LIST_DEL_INIT(&srvrq->list);
Emeric Brunc9437992021-02-12 19:42:55 +01002490 free(srvrq);
2491 }
Willy Tarreau20751652021-10-18 16:46:38 +02002492
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002493 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002494}
2495
2496/* Finalizes the DNS configuration by allocating required resources and checking
2497 * live parameters.
2498 * Returns 0 on success, ERR_* flags otherwise.
2499 */
2500static int resolvers_finalize_config(void)
2501{
2502 struct resolvers *resolvers;
2503 struct proxy *px;
2504 int err_code = 0;
2505
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002506 enter_resolver_code();
Willy Tarreau20751652021-10-18 16:46:38 +02002507
Emeric Brunc9437992021-02-12 19:42:55 +01002508 /* allocate pool of resolution per resolvers */
2509 list_for_each_entry(resolvers, &sec_resolvers, list) {
2510 struct dns_nameserver *ns;
2511 struct task *t;
2512
2513 /* Check if we can create the socket with nameservers info */
2514 list_for_each_entry(ns, &resolvers->nameservers, list) {
2515 int fd;
2516
2517 if (ns->dgram) {
2518 /* Check nameserver info */
2519 if ((fd = socket(ns->dgram->conn.addr.to.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
2520 ha_alert("config : resolvers '%s': can't create socket for nameserver '%s'.\n",
2521 resolvers->id, ns->id);
2522 err_code |= (ERR_ALERT|ERR_ABORT);
2523 continue;
2524 }
2525 if (connect(fd, (struct sockaddr*)&ns->dgram->conn.addr.to, get_addr_len(&ns->dgram->conn.addr.to)) == -1) {
2526 ha_alert("config : resolvers '%s': can't connect socket for nameserver '%s'.\n",
2527 resolvers->id, ns->id);
2528 close(fd);
2529 err_code |= (ERR_ALERT|ERR_ABORT);
2530 continue;
2531 }
2532 close(fd);
2533 }
2534 }
2535
2536 /* Create the task associated to the resolvers section */
2537 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
2538 ha_alert("config : resolvers '%s' : out of memory.\n", resolvers->id);
2539 err_code |= (ERR_ALERT|ERR_ABORT);
2540 goto err;
2541 }
2542
2543 /* Update task's parameters */
2544 t->process = process_resolvers;
2545 t->context = resolvers;
2546 resolvers->t = t;
2547 task_wakeup(t, TASK_WOKEN_INIT);
2548 }
2549
2550 for (px = proxies_list; px; px = px->next) {
2551 struct server *srv;
2552
2553 for (srv = px->srv; srv; srv = srv->next) {
2554 struct resolvers *resolvers;
2555
2556 if (!srv->resolvers_id)
2557 continue;
2558
2559 if ((resolvers = find_resolvers_by_id(srv->resolvers_id)) == NULL) {
2560 ha_alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n",
2561 proxy_type_str(px), px->id, srv->id, srv->resolvers_id);
2562 err_code |= (ERR_ALERT|ERR_ABORT);
2563 continue;
2564 }
2565 srv->resolvers = resolvers;
Christopher Faulet2c0f5272021-06-15 16:17:17 +02002566 srv->srvrq_check = NULL;
2567 if (srv->srvrq) {
2568 if (!srv->srvrq->resolvers) {
2569 srv->srvrq->resolvers = srv->resolvers;
2570 if (resolv_link_resolution(srv->srvrq, OBJ_TYPE_SRVRQ, 0) == -1) {
2571 ha_alert("config : %s '%s' : unable to set DNS resolution for server '%s'.\n",
2572 proxy_type_str(px), px->id, srv->id);
2573 err_code |= (ERR_ALERT|ERR_ABORT);
2574 continue;
2575 }
2576 }
Emeric Brunc9437992021-02-12 19:42:55 +01002577
Christopher Faulet2c0f5272021-06-15 16:17:17 +02002578 srv->srvrq_check = task_new(MAX_THREADS_MASK);
2579 if (!srv->srvrq_check) {
2580 ha_alert("config: %s '%s' : unable to create SRVRQ task for server '%s'.\n",
Emeric Brunc9437992021-02-12 19:42:55 +01002581 proxy_type_str(px), px->id, srv->id);
2582 err_code |= (ERR_ALERT|ERR_ABORT);
Christopher Faulet2c0f5272021-06-15 16:17:17 +02002583 goto err;
Emeric Brunc9437992021-02-12 19:42:55 +01002584 }
Christopher Faulet2c0f5272021-06-15 16:17:17 +02002585 srv->srvrq_check->process = resolv_srvrq_expire_task;
2586 srv->srvrq_check->context = srv;
2587 srv->srvrq_check->expire = TICK_ETERNITY;
Emeric Brunc9437992021-02-12 19:42:55 +01002588 }
Christopher Faulet2c0f5272021-06-15 16:17:17 +02002589 else if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 0) == -1) {
Emeric Brunc9437992021-02-12 19:42:55 +01002590 ha_alert("config : %s '%s', unable to set DNS resolution for server '%s'.\n",
2591 proxy_type_str(px), px->id, srv->id);
2592 err_code |= (ERR_ALERT|ERR_ABORT);
2593 continue;
2594 }
2595 }
2596 }
2597
2598 if (err_code & (ERR_ALERT|ERR_ABORT))
2599 goto err;
2600
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002601 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002602 return err_code;
2603 err:
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002604 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002605 resolvers_deinit();
2606 return err_code;
2607
2608}
2609
2610static int stats_dump_resolv_to_buffer(struct stream_interface *si,
2611 struct dns_nameserver *ns,
2612 struct field *stats, size_t stats_count,
2613 struct list *stat_modules)
2614{
2615 struct appctx *appctx = __objt_appctx(si->end);
2616 struct channel *rep = si_ic(si);
2617 struct stats_module *mod;
2618 size_t idx = 0;
2619
2620 memset(stats, 0, sizeof(struct field) * stats_count);
2621
2622 list_for_each_entry(mod, stat_modules, list) {
2623 struct counters_node *counters = EXTRA_COUNTERS_GET(ns->extra_counters, mod);
2624
2625 mod->fill_stats(counters, stats + idx);
2626 idx += mod->stats_count;
2627 }
2628
2629 if (!stats_dump_one_line(stats, idx, appctx))
2630 return 0;
2631
2632 if (!stats_putchk(rep, NULL, &trash))
2633 goto full;
2634
2635 return 1;
2636
2637 full:
2638 si_rx_room_rdy(si);
2639 return 0;
2640}
2641
2642/* Uses <appctx.ctx.stats.obj1> as a pointer to the current resolver and <obj2>
2643 * as a pointer to the current nameserver.
2644 */
2645int stats_dump_resolvers(struct stream_interface *si,
2646 struct field *stats, size_t stats_count,
2647 struct list *stat_modules)
2648{
2649 struct appctx *appctx = __objt_appctx(si->end);
2650 struct channel *rep = si_ic(si);
2651 struct resolvers *resolver = appctx->ctx.stats.obj1;
2652 struct dns_nameserver *ns = appctx->ctx.stats.obj2;
2653
2654 if (!resolver)
2655 resolver = LIST_NEXT(&sec_resolvers, struct resolvers *, list);
2656
2657 /* dump resolvers */
2658 list_for_each_entry_from(resolver, &sec_resolvers, list) {
2659 appctx->ctx.stats.obj1 = resolver;
2660
2661 ns = appctx->ctx.stats.obj2 ?
2662 appctx->ctx.stats.obj2 :
2663 LIST_NEXT(&resolver->nameservers, struct dns_nameserver *, list);
2664
2665 list_for_each_entry_from(ns, &resolver->nameservers, list) {
2666 appctx->ctx.stats.obj2 = ns;
2667
2668 if (buffer_almost_full(&rep->buf))
2669 goto full;
2670
2671 if (!stats_dump_resolv_to_buffer(si, ns,
2672 stats, stats_count,
2673 stat_modules)) {
2674 return 0;
2675 }
2676 }
2677
2678 appctx->ctx.stats.obj2 = NULL;
2679 }
2680
2681 return 1;
2682
2683 full:
2684 si_rx_room_blk(si);
2685 return 0;
2686}
2687
2688void resolv_stats_clear_counters(int clrall, struct list *stat_modules)
2689{
2690 struct resolvers *resolvers;
2691 struct dns_nameserver *ns;
2692 struct stats_module *mod;
2693 void *counters;
2694
2695 list_for_each_entry(mod, stat_modules, list) {
2696 if (!mod->clearable && !clrall)
2697 continue;
2698
2699 list_for_each_entry(resolvers, &sec_resolvers, list) {
2700 list_for_each_entry(ns, &resolvers->nameservers, list) {
2701 counters = EXTRA_COUNTERS_GET(ns->extra_counters, mod);
2702 memcpy(counters, mod->counters, mod->counters_size);
2703 }
2704 }
2705 }
2706
2707}
2708
2709int resolv_allocate_counters(struct list *stat_modules)
2710{
2711 struct stats_module *mod;
2712 struct resolvers *resolvers;
2713 struct dns_nameserver *ns;
2714
2715 list_for_each_entry(resolvers, &sec_resolvers, list) {
2716 list_for_each_entry(ns, &resolvers->nameservers, list) {
2717 EXTRA_COUNTERS_REGISTER(&ns->extra_counters, COUNTERS_DNS,
2718 alloc_failed);
2719
2720 list_for_each_entry(mod, stat_modules, list) {
2721 EXTRA_COUNTERS_ADD(mod,
2722 ns->extra_counters,
2723 mod->counters,
2724 mod->counters_size);
2725 }
2726
2727 EXTRA_COUNTERS_ALLOC(ns->extra_counters, alloc_failed);
2728
2729 list_for_each_entry(mod, stat_modules, list) {
2730 memcpy(ns->extra_counters->data + mod->counters_off[ns->extra_counters->type],
2731 mod->counters, mod->counters_size);
2732
2733 /* Store the ns counters pointer */
2734 if (strcmp(mod->name, "dns") == 0) {
2735 ns->counters = (struct dns_counters *)ns->extra_counters->data + mod->counters_off[COUNTERS_DNS];
2736 ns->counters->id = ns->id;
2737 ns->counters->pid = resolvers->id;
2738 }
2739 }
2740 }
2741 }
2742
2743 return 1;
2744
2745alloc_failed:
2746 return 0;
2747}
2748
2749/* if an arg is found, it sets the resolvers section pointer into cli.p0 */
2750static int cli_parse_stat_resolvers(char **args, char *payload, struct appctx *appctx, void *private)
2751{
2752 struct resolvers *presolvers;
2753
2754 if (*args[2]) {
2755 list_for_each_entry(presolvers, &sec_resolvers, list) {
2756 if (strcmp(presolvers->id, args[2]) == 0) {
2757 appctx->ctx.cli.p0 = presolvers;
2758 break;
2759 }
2760 }
2761 if (appctx->ctx.cli.p0 == NULL)
2762 return cli_err(appctx, "Can't find that resolvers section\n");
2763 }
2764 return 0;
2765}
2766
2767/* Dumps counters from all resolvers section and associated name servers. It
2768 * returns 0 if the output buffer is full and it needs to be called again,
2769 * otherwise non-zero. It may limit itself to the resolver pointed to by
2770 * <cli.p0> if it's not null.
2771 */
2772static int cli_io_handler_dump_resolvers_to_buffer(struct appctx *appctx)
2773{
2774 struct stream_interface *si = appctx->owner;
2775 struct resolvers *resolvers;
2776 struct dns_nameserver *ns;
2777
2778 chunk_reset(&trash);
2779
2780 switch (appctx->st2) {
2781 case STAT_ST_INIT:
2782 appctx->st2 = STAT_ST_LIST; /* let's start producing data */
2783 /* fall through */
2784
2785 case STAT_ST_LIST:
2786 if (LIST_ISEMPTY(&sec_resolvers)) {
2787 chunk_appendf(&trash, "No resolvers found\n");
2788 }
2789 else {
2790 list_for_each_entry(resolvers, &sec_resolvers, list) {
2791 if (appctx->ctx.cli.p0 != NULL && appctx->ctx.cli.p0 != resolvers)
2792 continue;
2793
2794 chunk_appendf(&trash, "Resolvers section %s\n", resolvers->id);
2795 list_for_each_entry(ns, &resolvers->nameservers, list) {
2796 chunk_appendf(&trash, " nameserver %s:\n", ns->id);
2797 chunk_appendf(&trash, " sent: %lld\n", ns->counters->sent);
2798 chunk_appendf(&trash, " snd_error: %lld\n", ns->counters->snd_error);
2799 chunk_appendf(&trash, " valid: %lld\n", ns->counters->valid);
2800 chunk_appendf(&trash, " update: %lld\n", ns->counters->update);
2801 chunk_appendf(&trash, " cname: %lld\n", ns->counters->cname);
2802 chunk_appendf(&trash, " cname_error: %lld\n", ns->counters->cname_error);
2803 chunk_appendf(&trash, " any_err: %lld\n", ns->counters->any_err);
2804 chunk_appendf(&trash, " nx: %lld\n", ns->counters->nx);
2805 chunk_appendf(&trash, " timeout: %lld\n", ns->counters->timeout);
2806 chunk_appendf(&trash, " refused: %lld\n", ns->counters->refused);
2807 chunk_appendf(&trash, " other: %lld\n", ns->counters->other);
2808 chunk_appendf(&trash, " invalid: %lld\n", ns->counters->invalid);
2809 chunk_appendf(&trash, " too_big: %lld\n", ns->counters->too_big);
2810 chunk_appendf(&trash, " truncated: %lld\n", ns->counters->truncated);
2811 chunk_appendf(&trash, " outdated: %lld\n", ns->counters->outdated);
2812 }
2813 chunk_appendf(&trash, "\n");
2814 }
2815 }
2816
2817 /* display response */
2818 if (ci_putchk(si_ic(si), &trash) == -1) {
2819 /* let's try again later from this session. We add ourselves into
2820 * this session's users so that it can remove us upon termination.
2821 */
2822 si_rx_room_blk(si);
2823 return 0;
2824 }
2825 /* fall through */
2826
2827 default:
2828 appctx->st2 = STAT_ST_FIN;
2829 return 1;
2830 }
2831}
2832
2833/* register cli keywords */
2834static struct cli_kw_list cli_kws = {{ }, {
Willy Tarreaub205bfd2021-05-07 11:38:37 +02002835 { { "show", "resolvers", NULL }, "show resolvers [id] : dumps counters from all resolvers section and associated name servers",
Emeric Brunc9437992021-02-12 19:42:55 +01002836 cli_parse_stat_resolvers, cli_io_handler_dump_resolvers_to_buffer },
2837 {{},}
2838 }
2839};
2840
2841INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
2842
2843/*
2844 * Prepare <rule> for hostname resolution.
2845 * Returns -1 in case of any allocation failure, 0 if not.
2846 * On error, a global failure counter is also incremented.
2847 */
Willy Tarreaua13a6102021-10-14 08:11:48 +02002848static int action_prepare_for_resolution(struct stream *stream, const char *hostname, int hostname_len)
Emeric Brunc9437992021-02-12 19:42:55 +01002849{
2850 char *hostname_dn;
Willy Tarreaua13a6102021-10-14 08:11:48 +02002851 int hostname_dn_len;
Emeric Brunc9437992021-02-12 19:42:55 +01002852 struct buffer *tmp = get_trash_chunk();
2853
2854 if (!hostname)
2855 return 0;
2856
Emeric Brunc9437992021-02-12 19:42:55 +01002857 hostname_dn = tmp->area;
Willy Tarreauc1c765f2021-10-14 07:49:49 +02002858 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brunc9437992021-02-12 19:42:55 +01002859 hostname_dn, tmp->size);
2860 if (hostname_dn_len == -1)
2861 goto err;
2862
2863
2864 stream->resolv_ctx.hostname_dn = strdup(hostname_dn);
2865 stream->resolv_ctx.hostname_dn_len = hostname_dn_len;
2866 if (!stream->resolv_ctx.hostname_dn)
2867 goto err;
2868
2869 return 0;
2870
2871 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002872 ha_free(&stream->resolv_ctx.hostname_dn);
Emeric Brunc9437992021-02-12 19:42:55 +01002873 resolv_failed_resolutions += 1;
2874 return -1;
2875}
2876
2877
2878/*
2879 * Execute the "do-resolution" action. May be called from {tcp,http}request.
2880 */
2881enum act_return resolv_action_do_resolve(struct act_rule *rule, struct proxy *px,
2882 struct session *sess, struct stream *s, int flags)
2883{
2884 struct resolv_resolution *resolution;
2885 struct sample *smp;
Emeric Brunc9437992021-02-12 19:42:55 +01002886 struct resolv_requester *req;
2887 struct resolvers *resolvers;
2888 struct resolv_resolution *res;
2889 int exp, locked = 0;
2890 enum act_return ret = ACT_RET_CONT;
2891
2892 resolvers = rule->arg.resolv.resolvers;
2893
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002894 enter_resolver_code();
Willy Tarreau20751652021-10-18 16:46:38 +02002895
Emeric Brunc9437992021-02-12 19:42:55 +01002896 /* we have a response to our DNS resolution */
2897 use_cache:
2898 if (s->resolv_ctx.requester && s->resolv_ctx.requester->resolution != NULL) {
2899 resolution = s->resolv_ctx.requester->resolution;
2900 if (!locked) {
2901 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2902 locked = 1;
2903 }
2904
2905 if (resolution->step == RSLV_STEP_RUNNING)
2906 goto yield;
2907 if (resolution->step == RSLV_STEP_NONE) {
2908 /* We update the variable only if we have a valid response. */
2909 if (resolution->status == RSLV_STATUS_VALID) {
2910 struct sample smp;
2911 short ip_sin_family = 0;
2912 void *ip = NULL;
2913
2914 resolv_get_ip_from_response(&resolution->response, rule->arg.resolv.opts, NULL,
2915 0, &ip, &ip_sin_family, NULL);
2916
2917 switch (ip_sin_family) {
2918 case AF_INET:
2919 smp.data.type = SMP_T_IPV4;
2920 memcpy(&smp.data.u.ipv4, ip, 4);
2921 break;
2922 case AF_INET6:
2923 smp.data.type = SMP_T_IPV6;
2924 memcpy(&smp.data.u.ipv6, ip, 16);
2925 break;
2926 default:
2927 ip = NULL;
2928 }
2929
2930 if (ip) {
2931 smp.px = px;
2932 smp.sess = sess;
2933 smp.strm = s;
2934
2935 vars_set_by_name(rule->arg.resolv.varname, strlen(rule->arg.resolv.varname), &smp);
2936 }
2937 }
2938 }
2939
2940 goto release_requester;
2941 }
2942
2943 /* need to configure and start a new DNS resolution */
2944 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.resolv.expr, SMP_T_STR);
2945 if (smp == NULL)
2946 goto end;
2947
Willy Tarreaua13a6102021-10-14 08:11:48 +02002948 if (action_prepare_for_resolution(s, smp->data.u.str.area, smp->data.u.str.data) == -1)
Emeric Brunc9437992021-02-12 19:42:55 +01002949 goto end; /* on error, ignore the action */
2950
2951 s->resolv_ctx.parent = rule;
2952
2953 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2954 locked = 1;
2955
2956 resolv_link_resolution(s, OBJ_TYPE_STREAM, 0);
2957
2958 /* Check if there is a fresh enough response in the cache of our associated resolution */
2959 req = s->resolv_ctx.requester;
2960 if (!req || !req->resolution)
2961 goto release_requester; /* on error, ignore the action */
2962 res = req->resolution;
2963
2964 exp = tick_add(res->last_resolution, resolvers->hold.valid);
2965 if (resolvers->t && res->status == RSLV_STATUS_VALID && tick_isset(res->last_resolution)
2966 && !tick_is_expired(exp, now_ms)) {
2967 goto use_cache;
2968 }
2969
2970 resolv_trigger_resolution(s->resolv_ctx.requester);
2971
2972 yield:
2973 if (flags & ACT_OPT_FINAL)
2974 goto release_requester;
2975 ret = ACT_RET_YIELD;
2976
2977 end:
Christopher Faulet7a3a5362021-11-02 16:25:05 +01002978 leave_resolver_code();
Emeric Brunc9437992021-02-12 19:42:55 +01002979 if (locked)
2980 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
2981 return ret;
2982
2983 release_requester:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002984 ha_free(&s->resolv_ctx.hostname_dn);
Emeric Brunc9437992021-02-12 19:42:55 +01002985 s->resolv_ctx.hostname_dn_len = 0;
2986 if (s->resolv_ctx.requester) {
Willy Tarreau33360872021-10-20 14:07:31 +02002987 _resolv_unlink_resolution(s->resolv_ctx.requester);
Emeric Brunc9437992021-02-12 19:42:55 +01002988 pool_free(resolv_requester_pool, s->resolv_ctx.requester);
2989 s->resolv_ctx.requester = NULL;
2990 }
2991 goto end;
2992}
2993
2994static void release_resolv_action(struct act_rule *rule)
2995{
2996 release_sample_expr(rule->arg.resolv.expr);
2997 free(rule->arg.resolv.varname);
2998 free(rule->arg.resolv.resolvers_id);
2999 free(rule->arg.resolv.opts);
3000}
3001
3002
3003/* parse "do-resolve" action
3004 * This action takes the following arguments:
3005 * do-resolve(<varName>,<resolversSectionName>,<resolvePrefer>) <expr>
3006 *
3007 * - <varName> is the variable name where the result of the DNS resolution will be stored
3008 * (mandatory)
3009 * - <resolversSectionName> is the name of the resolvers section to use to perform the resolution
3010 * (mandatory)
3011 * - <resolvePrefer> can be either 'ipv4' or 'ipv6' and is the IP family we would like to resolve first
3012 * (optional), defaults to ipv6
3013 * - <expr> is an HAProxy expression used to fetch the name to be resolved
3014 */
3015enum act_parse_ret resolv_parse_do_resolve(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
3016{
3017 int cur_arg;
3018 struct sample_expr *expr;
3019 unsigned int where;
3020 const char *beg, *end;
3021
3022 /* orig_arg points to the first argument, but we need to analyse the command itself first */
3023 cur_arg = *orig_arg - 1;
3024
3025 /* locate varName, which is mandatory */
3026 beg = strchr(args[cur_arg], '(');
3027 if (beg == NULL)
3028 goto do_resolve_parse_error;
3029 beg = beg + 1; /* beg should points to the first character after opening parenthesis '(' */
3030 end = strchr(beg, ',');
3031 if (end == NULL)
3032 goto do_resolve_parse_error;
3033 rule->arg.resolv.varname = my_strndup(beg, end - beg);
3034 if (rule->arg.resolv.varname == NULL)
3035 goto do_resolve_parse_error;
3036
3037
3038 /* locate resolversSectionName, which is mandatory.
3039 * Since next parameters are optional, the delimiter may be comma ','
3040 * or closing parenthesis ')'
3041 */
3042 beg = end + 1;
3043 end = strchr(beg, ',');
3044 if (end == NULL)
3045 end = strchr(beg, ')');
3046 if (end == NULL)
3047 goto do_resolve_parse_error;
3048 rule->arg.resolv.resolvers_id = my_strndup(beg, end - beg);
3049 if (rule->arg.resolv.resolvers_id == NULL)
3050 goto do_resolve_parse_error;
3051
3052
3053 rule->arg.resolv.opts = calloc(1, sizeof(*rule->arg.resolv.opts));
3054 if (rule->arg.resolv.opts == NULL)
3055 goto do_resolve_parse_error;
3056
3057 /* Default priority is ipv6 */
3058 rule->arg.resolv.opts->family_prio = AF_INET6;
3059
3060 /* optional arguments accepted for now:
3061 * ipv4 or ipv6
3062 */
3063 while (*end != ')') {
3064 beg = end + 1;
3065 end = strchr(beg, ',');
3066 if (end == NULL)
3067 end = strchr(beg, ')');
3068 if (end == NULL)
3069 goto do_resolve_parse_error;
3070
3071 if (strncmp(beg, "ipv4", end - beg) == 0) {
3072 rule->arg.resolv.opts->family_prio = AF_INET;
3073 }
3074 else if (strncmp(beg, "ipv6", end - beg) == 0) {
3075 rule->arg.resolv.opts->family_prio = AF_INET6;
3076 }
3077 else {
3078 goto do_resolve_parse_error;
3079 }
3080 }
3081
3082 cur_arg = cur_arg + 1;
3083
3084 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args, NULL);
3085 if (!expr)
3086 goto do_resolve_parse_error;
3087
3088
3089 where = 0;
3090 if (px->cap & PR_CAP_FE)
3091 where |= SMP_VAL_FE_HRQ_HDR;
3092 if (px->cap & PR_CAP_BE)
3093 where |= SMP_VAL_BE_HRQ_HDR;
3094
3095 if (!(expr->fetch->val & where)) {
3096 memprintf(err,
3097 "fetch method '%s' extracts information from '%s', none of which is available here",
3098 args[cur_arg-1], sample_src_names(expr->fetch->use));
3099 free(expr);
3100 return ACT_RET_PRS_ERR;
3101 }
3102 rule->arg.resolv.expr = expr;
3103 rule->action = ACT_CUSTOM;
3104 rule->action_ptr = resolv_action_do_resolve;
3105 *orig_arg = cur_arg;
3106
3107 rule->check_ptr = check_action_do_resolve;
3108 rule->release_ptr = release_resolv_action;
3109
3110 return ACT_RET_PRS_OK;
3111
3112 do_resolve_parse_error:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003113 ha_free(&rule->arg.resolv.varname);
3114 ha_free(&rule->arg.resolv.resolvers_id);
Emeric Brunc9437992021-02-12 19:42:55 +01003115 memprintf(err, "Can't parse '%s'. Expects 'do-resolve(<varname>,<resolvers>[,<options>]) <expr>'. Available options are 'ipv4' and 'ipv6'",
3116 args[cur_arg]);
3117 return ACT_RET_PRS_ERR;
3118}
3119
3120static struct action_kw_list http_req_kws = { { }, {
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02003121 { "do-resolve", resolv_parse_do_resolve, KWF_MATCH_PREFIX },
Emeric Brunc9437992021-02-12 19:42:55 +01003122 { /* END */ }
3123}};
3124
3125INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_kws);
3126
3127static struct action_kw_list tcp_req_cont_actions = {ILH, {
Amaury Denoyellee4a617c2021-05-06 15:33:09 +02003128 { "do-resolve", resolv_parse_do_resolve, KWF_MATCH_PREFIX },
Emeric Brunc9437992021-02-12 19:42:55 +01003129 { /* END */ }
3130}};
3131
3132INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_cont_actions);
3133
3134/* Check an "http-request do-resolve" action.
3135 *
3136 * The function returns 1 in success case, otherwise, it returns 0 and err is
3137 * filled.
3138 */
3139int check_action_do_resolve(struct act_rule *rule, struct proxy *px, char **err)
3140{
3141 struct resolvers *resolvers = NULL;
3142
3143 if (rule->arg.resolv.resolvers_id == NULL) {
3144 memprintf(err,"Proxy '%s': %s", px->id, "do-resolve action without resolvers");
3145 return 0;
3146 }
3147
3148 resolvers = find_resolvers_by_id(rule->arg.resolv.resolvers_id);
3149 if (resolvers == NULL) {
3150 memprintf(err,"Can't find resolvers section '%s' for do-resolve action", rule->arg.resolv.resolvers_id);
3151 return 0;
3152 }
3153 rule->arg.resolv.resolvers = resolvers;
3154
3155 return 1;
3156}
3157
3158void resolvers_setup_proxy(struct proxy *px)
3159{
3160 px->last_change = now.tv_sec;
3161 px->cap = PR_CAP_FE | PR_CAP_BE;
3162 px->maxconn = 0;
3163 px->conn_retries = 1;
3164 px->timeout.server = TICK_ETERNITY;
3165 px->timeout.client = TICK_ETERNITY;
3166 px->timeout.connect = TICK_ETERNITY;
3167 px->accept = NULL;
3168 px->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON;
3169 px->bind_proc = 0; /* will be filled by users */
3170}
3171
3172/*
3173 * Parse a <resolvers> section.
3174 * Returns the error code, 0 if OK, or any combination of :
3175 * - ERR_ABORT: must abort ASAP
3176 * - ERR_FATAL: we can continue parsing but not start the service
3177 * - ERR_WARN: a warning has been emitted
3178 * - ERR_ALERT: an alert has been emitted
3179 * Only the two first ones can stop processing, the two others are just
3180 * indicators.
3181 */
3182int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
3183{
3184 const char *err;
3185 int err_code = 0;
3186 char *errmsg = NULL;
3187 struct proxy *p;
3188
3189 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
3190 if (!*args[1]) {
3191 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
3192 err_code |= ERR_ALERT | ERR_ABORT;
3193 goto out;
3194 }
3195
3196 err = invalid_char(args[1]);
3197 if (err) {
3198 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
3199 file, linenum, *err, args[0], args[1]);
3200 err_code |= ERR_ALERT | ERR_ABORT;
3201 goto out;
3202 }
3203
3204 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
3205 /* Error if two resolvers owns the same name */
3206 if (strcmp(curr_resolvers->id, args[1]) == 0) {
3207 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
3208 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
3209 err_code |= ERR_ALERT | ERR_ABORT;
3210 }
3211 }
3212
3213 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
3214 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3215 err_code |= ERR_ALERT | ERR_ABORT;
3216 goto out;
3217 }
3218
3219 /* allocate new proxy to tcp servers */
3220 p = calloc(1, sizeof *p);
3221 if (!p) {
3222 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3223 err_code |= ERR_ALERT | ERR_FATAL;
3224 goto out;
3225 }
3226
3227 init_new_proxy(p);
3228 resolvers_setup_proxy(p);
3229 p->parent = curr_resolvers;
3230 p->id = strdup(args[1]);
3231 p->conf.args.file = p->conf.file = strdup(file);
3232 p->conf.args.line = p->conf.line = linenum;
3233 curr_resolvers->px = p;
3234
3235 /* default values */
Willy Tarreau2b718102021-04-21 07:32:39 +02003236 LIST_APPEND(&sec_resolvers, &curr_resolvers->list);
Emeric Brunc9437992021-02-12 19:42:55 +01003237 curr_resolvers->conf.file = strdup(file);
3238 curr_resolvers->conf.line = linenum;
3239 curr_resolvers->id = strdup(args[1]);
3240 curr_resolvers->query_ids = EB_ROOT;
3241 /* default maximum response size */
3242 curr_resolvers->accepted_payload_size = 512;
3243 /* default hold period for nx, other, refuse and timeout is 30s */
3244 curr_resolvers->hold.nx = 30000;
3245 curr_resolvers->hold.other = 30000;
3246 curr_resolvers->hold.refused = 30000;
3247 curr_resolvers->hold.timeout = 30000;
3248 curr_resolvers->hold.obsolete = 0;
3249 /* default hold period for valid is 10s */
3250 curr_resolvers->hold.valid = 10000;
3251 curr_resolvers->timeout.resolve = 1000;
3252 curr_resolvers->timeout.retry = 1000;
3253 curr_resolvers->resolve_retries = 3;
3254 LIST_INIT(&curr_resolvers->nameservers);
3255 LIST_INIT(&curr_resolvers->resolutions.curr);
3256 LIST_INIT(&curr_resolvers->resolutions.wait);
3257 HA_SPIN_INIT(&curr_resolvers->lock);
3258 }
3259 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
3260 struct dns_nameserver *newnameserver = NULL;
3261 struct sockaddr_storage *sk;
3262 int port1, port2;
Emeric Brunc8f3e452021-04-07 16:04:54 +02003263 struct protocol *proto;
Emeric Brunc9437992021-02-12 19:42:55 +01003264
3265 if (!*args[2]) {
3266 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
3267 file, linenum, args[0]);
3268 err_code |= ERR_ALERT | ERR_FATAL;
3269 goto out;
3270 }
3271
3272 err = invalid_char(args[1]);
3273 if (err) {
3274 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
3275 file, linenum, *err, args[1]);
3276 err_code |= ERR_ALERT | ERR_FATAL;
3277 goto out;
3278 }
3279
3280 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
3281 /* Error if two resolvers owns the same name */
3282 if (strcmp(newnameserver->id, args[1]) == 0) {
3283 ha_alert("Parsing [%s:%d]: nameserver '%s' has same name as another nameserver (declared at %s:%d).\n",
3284 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
3285 err_code |= ERR_ALERT | ERR_FATAL;
3286 }
3287 }
3288
Emeric Brunc8f3e452021-04-07 16:04:54 +02003289 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
3290 &errmsg, NULL, NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_DGRAM | PA_O_STREAM | PA_O_DEFAULT_DGRAM);
Emeric Brunc9437992021-02-12 19:42:55 +01003291 if (!sk) {
3292 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
3293 err_code |= ERR_ALERT | ERR_FATAL;
3294 goto out;
3295 }
3296
3297 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
3298 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3299 err_code |= ERR_ALERT | ERR_ABORT;
3300 goto out;
3301 }
3302
Emeric Brunc8f3e452021-04-07 16:04:54 +02003303 if (proto && proto->ctrl_type == SOCK_STREAM) {
3304 err_code |= parse_server(file, linenum, args, curr_resolvers->px, NULL,
3305 SRV_PARSE_PARSE_ADDR|SRV_PARSE_INITIAL_RESOLVE);
3306 if (err_code & (ERR_FATAL|ERR_ABORT)) {
3307 err_code |= ERR_ABORT;
3308 goto out;
3309 }
3310
3311 if (dns_stream_init(newnameserver, curr_resolvers->px->srv) < 0) {
3312 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3313 err_code |= ERR_ALERT|ERR_ABORT;
3314 goto out;
3315 }
3316 }
3317 else if (dns_dgram_init(newnameserver, sk) < 0) {
Emeric Brunc9437992021-02-12 19:42:55 +01003318 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3319 err_code |= ERR_ALERT | ERR_ABORT;
3320 goto out;
3321 }
3322
3323 if ((newnameserver->conf.file = strdup(file)) == NULL) {
3324 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3325 err_code |= ERR_ALERT | ERR_ABORT;
3326 goto out;
3327 }
3328
3329 if ((newnameserver->id = strdup(args[1])) == NULL) {
3330 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
3331 err_code |= ERR_ALERT | ERR_ABORT;
3332 goto out;
3333 }
3334
3335 newnameserver->parent = curr_resolvers;
3336 newnameserver->process_responses = resolv_process_responses;
3337 newnameserver->conf.line = linenum;
3338 /* the nameservers are linked backward first */
Willy Tarreau2b718102021-04-21 07:32:39 +02003339 LIST_APPEND(&curr_resolvers->nameservers, &newnameserver->list);
Emeric Brunc9437992021-02-12 19:42:55 +01003340 }
3341 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
3342 struct dns_nameserver *newnameserver = NULL;
3343 const char *whitespace = "\r\n\t ";
3344 char *resolv_line = NULL;
3345 int resolv_linenum = 0;
3346 FILE *f = NULL;
3347 char *address = NULL;
3348 struct sockaddr_storage *sk = NULL;
3349 struct protocol *proto;
3350 int duplicate_name = 0;
3351
3352 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
3353 ha_alert("parsing [%s:%d] : out of memory.\n",
3354 file, linenum);
3355 err_code |= ERR_ALERT | ERR_FATAL;
3356 goto resolv_out;
3357 }
3358
3359 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
3360 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
3361 file, linenum);
3362 err_code |= ERR_ALERT | ERR_FATAL;
3363 goto resolv_out;
3364 }
3365
3366 sk = calloc(1, sizeof(*sk));
3367 if (sk == NULL) {
3368 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
3369 resolv_linenum);
3370 err_code |= ERR_ALERT | ERR_FATAL;
3371 goto resolv_out;
3372 }
3373
3374 while (fgets(resolv_line, LINESIZE, f) != NULL) {
3375 resolv_linenum++;
3376 if (strncmp(resolv_line, "nameserver", 10) != 0)
3377 continue;
3378
3379 address = strtok(resolv_line + 10, whitespace);
3380 if (address == resolv_line + 10)
3381 continue;
3382
3383 if (address == NULL) {
3384 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
3385 resolv_linenum);
3386 err_code |= ERR_WARN;
3387 continue;
3388 }
3389
3390 duplicate_name = 0;
3391 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
3392 if (strcmp(newnameserver->id, address) == 0) {
3393 ha_warning("Parsing [/etc/resolv.conf:%d] : generated name for /etc/resolv.conf nameserver '%s' conflicts with another nameserver (declared at %s:%d), it appears to be a duplicate and will be excluded.\n",
3394 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
3395 err_code |= ERR_WARN;
3396 duplicate_name = 1;
3397 }
3398 }
3399
3400 if (duplicate_name)
3401 continue;
3402
3403 memset(sk, 0, sizeof(*sk));
3404 if (!str2ip2(address, sk, 1)) {
3405 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, nameserver will be excluded.\n",
3406 resolv_linenum, address);
3407 err_code |= ERR_WARN;
3408 continue;
3409 }
3410
3411 set_host_port(sk, 53);
3412
3413 proto = protocol_by_family(sk->ss_family);
3414 if (!proto || !proto->connect) {
3415 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
3416 resolv_linenum, address);
3417 err_code |= ERR_WARN;
3418 continue;
3419 }
3420
3421 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
3422 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
3423 err_code |= ERR_ALERT | ERR_FATAL;
3424 goto resolv_out;
3425 }
3426
3427 if (dns_dgram_init(newnameserver, sk) < 0) {
3428 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
3429 err_code |= ERR_ALERT | ERR_FATAL;
3430 free(newnameserver);
3431 goto resolv_out;
3432 }
3433
3434 newnameserver->conf.file = strdup("/etc/resolv.conf");
3435 if (newnameserver->conf.file == NULL) {
3436 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
3437 err_code |= ERR_ALERT | ERR_FATAL;
3438 free(newnameserver);
3439 goto resolv_out;
3440 }
3441
3442 newnameserver->id = strdup(address);
3443 if (newnameserver->id == NULL) {
3444 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
3445 err_code |= ERR_ALERT | ERR_FATAL;
3446 free((char *)newnameserver->conf.file);
3447 free(newnameserver);
3448 goto resolv_out;
3449 }
3450
3451 newnameserver->parent = curr_resolvers;
3452 newnameserver->process_responses = resolv_process_responses;
3453 newnameserver->conf.line = resolv_linenum;
Willy Tarreau2b718102021-04-21 07:32:39 +02003454 LIST_APPEND(&curr_resolvers->nameservers, &newnameserver->list);
Emeric Brunc9437992021-02-12 19:42:55 +01003455 }
3456
3457resolv_out:
3458 free(sk);
3459 free(resolv_line);
3460 if (f != NULL)
3461 fclose(f);
3462 }
3463 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
3464 const char *res;
3465 unsigned int time;
3466
3467 if (!*args[2]) {
3468 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
3469 file, linenum, args[0]);
3470 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
3471 err_code |= ERR_ALERT | ERR_FATAL;
3472 goto out;
3473 }
3474 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
3475 if (res == PARSE_TIME_OVER) {
3476 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
3477 file, linenum, args[1], args[0]);
3478 err_code |= ERR_ALERT | ERR_FATAL;
3479 goto out;
3480 }
3481 else if (res == PARSE_TIME_UNDER) {
3482 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
3483 file, linenum, args[1], args[0]);
3484 err_code |= ERR_ALERT | ERR_FATAL;
3485 goto out;
3486 }
3487 else if (res) {
3488 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
3489 file, linenum, *res, args[0]);
3490 err_code |= ERR_ALERT | ERR_FATAL;
3491 goto out;
3492 }
3493 if (strcmp(args[1], "nx") == 0)
3494 curr_resolvers->hold.nx = time;
3495 else if (strcmp(args[1], "other") == 0)
3496 curr_resolvers->hold.other = time;
3497 else if (strcmp(args[1], "refused") == 0)
3498 curr_resolvers->hold.refused = time;
3499 else if (strcmp(args[1], "timeout") == 0)
3500 curr_resolvers->hold.timeout = time;
3501 else if (strcmp(args[1], "valid") == 0)
3502 curr_resolvers->hold.valid = time;
3503 else if (strcmp(args[1], "obsolete") == 0)
3504 curr_resolvers->hold.obsolete = time;
3505 else {
3506 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
3507 file, linenum, args[0], args[1]);
3508 err_code |= ERR_ALERT | ERR_FATAL;
3509 goto out;
3510 }
3511
3512 }
3513 else if (strcmp(args[0], "accepted_payload_size") == 0) {
3514 int i = 0;
3515
3516 if (!*args[1]) {
3517 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
3518 file, linenum, args[0]);
3519 err_code |= ERR_ALERT | ERR_FATAL;
3520 goto out;
3521 }
3522
3523 i = atoi(args[1]);
3524 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
3525 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
3526 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
3527 err_code |= ERR_ALERT | ERR_FATAL;
3528 goto out;
3529 }
3530
3531 curr_resolvers->accepted_payload_size = i;
3532 }
3533 else if (strcmp(args[0], "resolution_pool_size") == 0) {
3534 ha_alert("parsing [%s:%d] : '%s' directive is not supported anymore (it never appeared in a stable release).\n",
3535 file, linenum, args[0]);
3536 err_code |= ERR_ALERT | ERR_FATAL;
3537 goto out;
3538 }
3539 else if (strcmp(args[0], "resolve_retries") == 0) {
3540 if (!*args[1]) {
3541 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
3542 file, linenum, args[0]);
3543 err_code |= ERR_ALERT | ERR_FATAL;
3544 goto out;
3545 }
3546 curr_resolvers->resolve_retries = atoi(args[1]);
3547 }
3548 else if (strcmp(args[0], "timeout") == 0) {
3549 if (!*args[1]) {
3550 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
3551 file, linenum, args[0]);
3552 err_code |= ERR_ALERT | ERR_FATAL;
3553 goto out;
3554 }
3555 else if (strcmp(args[1], "retry") == 0 ||
3556 strcmp(args[1], "resolve") == 0) {
3557 const char *res;
3558 unsigned int tout;
3559
3560 if (!*args[2]) {
3561 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
3562 file, linenum, args[0], args[1]);
3563 err_code |= ERR_ALERT | ERR_FATAL;
3564 goto out;
3565 }
3566 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
3567 if (res == PARSE_TIME_OVER) {
3568 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
3569 file, linenum, args[2], args[0], args[1]);
3570 err_code |= ERR_ALERT | ERR_FATAL;
3571 goto out;
3572 }
3573 else if (res == PARSE_TIME_UNDER) {
3574 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
3575 file, linenum, args[2], args[0], args[1]);
3576 err_code |= ERR_ALERT | ERR_FATAL;
3577 goto out;
3578 }
3579 else if (res) {
3580 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
3581 file, linenum, *res, args[0], args[1]);
3582 err_code |= ERR_ALERT | ERR_FATAL;
3583 goto out;
3584 }
3585 if (args[1][2] == 't')
3586 curr_resolvers->timeout.retry = tout;
3587 else
3588 curr_resolvers->timeout.resolve = tout;
3589 }
3590 else {
3591 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
3592 file, linenum, args[0], args[1]);
3593 err_code |= ERR_ALERT | ERR_FATAL;
3594 goto out;
3595 }
3596 }
3597 else if (*args[0] != 0) {
3598 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
3599 err_code |= ERR_ALERT | ERR_FATAL;
3600 goto out;
3601 }
3602
3603 out:
3604 free(errmsg);
3605 return err_code;
3606}
Emeric Brun56fc5d92021-02-12 20:05:45 +01003607int cfg_post_parse_resolvers()
3608{
3609 int err_code = 0;
3610 struct server *srv;
3611
3612 if (curr_resolvers) {
3613
3614 /* prepare forward server descriptors */
3615 if (curr_resolvers->px) {
3616 srv = curr_resolvers->px->srv;
3617 while (srv) {
Emeric Brun56fc5d92021-02-12 20:05:45 +01003618 /* init ssl if needed */
3619 if (srv->use_ssl == 1 && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
3620 if (xprt_get(XPRT_SSL)->prepare_srv(srv)) {
3621 ha_alert("unable to prepare SSL for server '%s' in resolvers section '%s'.\n", srv->id, curr_resolvers->id);
3622 err_code |= ERR_ALERT | ERR_FATAL;
3623 break;
3624 }
3625 }
Emeric Brun56fc5d92021-02-12 20:05:45 +01003626 srv = srv->next;
3627 }
3628 }
3629 }
3630 curr_resolvers = NULL;
3631 return err_code;
3632}
Emeric Brunc9437992021-02-12 19:42:55 +01003633
Emeric Brun56fc5d92021-02-12 20:05:45 +01003634REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, cfg_post_parse_resolvers);
Emeric Brunc9437992021-02-12 19:42:55 +01003635REGISTER_POST_DEINIT(resolvers_deinit);
3636REGISTER_CONFIG_POSTPARSER("dns runtime resolver", resolvers_finalize_config);