blob: eb58cf38eb130181acc78842577138051f3991e3 [file] [log] [blame]
Baptiste Assmann325137d2015-04-13 23:40:55 +02001/*
2 * Name server resolution
3 *
4 * Copyright 2014 Baptiste Assmann <bedis9@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
18#include <unistd.h>
19
20#include <sys/types.h>
21
Emeric Brun32131d42021-06-11 10:48:45 +020022#include <import/ebistree.h>
23
Willy Tarreau122eba92020-06-04 10:15:32 +020024#include <haproxy/action.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020025#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020026#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020027#include <haproxy/channel.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020028#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020029#include <haproxy/cli.h>
Willy Tarreau7c18b542020-06-11 09:23:02 +020030#include <haproxy/dgram.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020031#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020032#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020033#include <haproxy/fd.h>
34#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020035#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020036#include <haproxy/log.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020037#include <haproxy/net_helper.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020038#include <haproxy/proxy.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +020041#include <haproxy/stats.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020042#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020043#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020044#include <haproxy/tcp_rules.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020045#include <haproxy/ticks.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020046#include <haproxy/time.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020047#include <haproxy/vars.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020048
Baptiste Assmann325137d2015-04-13 23:40:55 +020049
Christopher Faulet67957bd2017-09-27 11:00:59 +020050struct list dns_resolvers = LIST_HEAD_INIT(dns_resolvers);
51struct list dns_srvrq_list = LIST_HEAD_INIT(dns_srvrq_list);
Baptiste Assmann325137d2015-04-13 23:40:55 +020052
Tim Duesterhusfcac33d2020-01-18 02:04:12 +010053static THREAD_LOCAL uint64_t dns_query_id_seed = 0; /* random seed */
Willy Tarreau8ceae722018-11-26 11:58:30 +010054
55DECLARE_STATIC_POOL(dns_answer_item_pool, "dns_answer_item", sizeof(struct dns_answer_item));
56DECLARE_STATIC_POOL(dns_resolution_pool, "dns_resolution", sizeof(struct dns_resolution));
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +010057DECLARE_POOL(dns_requester_pool, "dns_requester", sizeof(struct dns_requester));
Willy Tarreau8ceae722018-11-26 11:58:30 +010058
Christopher Faulet67957bd2017-09-27 11:00:59 +020059static unsigned int resolution_uuid = 1;
Baptiste Assmann333939c2019-01-21 08:34:50 +010060unsigned int dns_failed_resolutions = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +020061
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +020062enum {
63 DNS_STAT_ID,
64 DNS_STAT_SND_ERROR,
65 DNS_STAT_VALID,
66 DNS_STAT_UPDATE,
67 DNS_STAT_CNAME,
68 DNS_STAT_CNAME_ERROR,
69 DNS_STAT_ANY_ERR,
70 DNS_STAT_NX,
71 DNS_STAT_TIMEOUT,
72 DNS_STAT_REFUSED,
73 DNS_STAT_OTHER,
74 DNS_STAT_INVALID,
75 DNS_STAT_TOO_BIG,
76 DNS_STAT_TRUNCATED,
77 DNS_STAT_OUTDATED,
78 DNS_STAT_END,
79};
80
81static struct name_desc dns_stats[] = {
82 [DNS_STAT_ID] = { .name = "id", .desc = "ID" },
83 [DNS_STAT_SND_ERROR] = { .name = "send_error", .desc = "Send error" },
84 [DNS_STAT_VALID] = { .name = "valid", .desc = "Valid" },
85 [DNS_STAT_UPDATE] = { .name = "update", .desc = "Update" },
86 [DNS_STAT_CNAME] = { .name = "cname", .desc = "CNAME" },
87 [DNS_STAT_CNAME_ERROR] = { .name = "cname_error", .desc = "CNAME error" },
88 [DNS_STAT_ANY_ERR] = { .name = "any_err", .desc = "Any errors" },
89 [DNS_STAT_NX] = { .name = "nx", .desc = "NX" },
90 [DNS_STAT_TIMEOUT] = { .name = "timeout", .desc = "Timeout" },
91 [DNS_STAT_REFUSED] = { .name = "refused", .desc = "Refused" },
92 [DNS_STAT_OTHER] = { .name = "other", .desc = "Other" },
93 [DNS_STAT_INVALID] = { .name = "invalid", .desc = "Invalid" },
94 [DNS_STAT_TOO_BIG] = { .name = "too_big", .desc = "Too big" },
95 [DNS_STAT_TRUNCATED] = { .name = "truncated", .desc = "Truncated" },
96 [DNS_STAT_OUTDATED] = { .name = "outdated", .desc = "Outdated" },
97};
98
99static struct dns_counters dns_counters;
100
101static void dns_fill_stats(void *d, struct field *stats)
102{
103 struct dns_counters *counters = d;
104 stats[DNS_STAT_ID] = mkf_str(FO_CONFIG, counters->id);
105 stats[DNS_STAT_SND_ERROR] = mkf_u64(FN_GAUGE, counters->snd_error);
106 stats[DNS_STAT_VALID] = mkf_u64(FN_GAUGE, counters->valid);
107 stats[DNS_STAT_UPDATE] = mkf_u64(FN_GAUGE, counters->update);
108 stats[DNS_STAT_CNAME] = mkf_u64(FN_GAUGE, counters->cname);
109 stats[DNS_STAT_CNAME_ERROR] = mkf_u64(FN_GAUGE, counters->cname_error);
110 stats[DNS_STAT_ANY_ERR] = mkf_u64(FN_GAUGE, counters->any_err);
111 stats[DNS_STAT_NX] = mkf_u64(FN_GAUGE, counters->nx);
112 stats[DNS_STAT_TIMEOUT] = mkf_u64(FN_GAUGE, counters->timeout);
113 stats[DNS_STAT_REFUSED] = mkf_u64(FN_GAUGE, counters->refused);
114 stats[DNS_STAT_OTHER] = mkf_u64(FN_GAUGE, counters->other);
115 stats[DNS_STAT_INVALID] = mkf_u64(FN_GAUGE, counters->invalid);
116 stats[DNS_STAT_TOO_BIG] = mkf_u64(FN_GAUGE, counters->too_big);
117 stats[DNS_STAT_TRUNCATED] = mkf_u64(FN_GAUGE, counters->truncated);
118 stats[DNS_STAT_OUTDATED] = mkf_u64(FN_GAUGE, counters->outdated);
119}
120
121static struct stats_module dns_stats_module = {
122 .name = "dns",
123 .domain_flags = STATS_DOMAIN_DNS << STATS_DOMAIN,
124 .fill_stats = dns_fill_stats,
125 .stats = dns_stats,
126 .stats_count = DNS_STAT_END,
127 .counters = &dns_counters,
128 .counters_size = sizeof(dns_counters),
129 .clearable = 0,
130};
131
132INITCALL1(STG_REGISTER, stats_register_module, &dns_stats_module);
133
Christopher Faulet67957bd2017-09-27 11:00:59 +0200134/* Returns a pointer to the resolvers matching the id <id>. NULL is returned if
135 * no match is found.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200136 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200137struct dns_resolvers *find_resolvers_by_id(const char *id)
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200138{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200139 struct dns_resolvers *res;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200140
Christopher Faulet67957bd2017-09-27 11:00:59 +0200141 list_for_each_entry(res, &dns_resolvers, list) {
142 if (!strcmp(res->id, id))
143 return res;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200144 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200145 return NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200146}
147
Olivier Houchardb17b8842020-04-01 18:30:27 +0200148/* Compare hostnames in a case-insensitive way .
149 * Returns 0 if they are the same, non-zero otherwise
150 */
151static __inline int dns_hostname_cmp(const char *name1, const char *name2, int len)
152{
153 int i;
154
155 for (i = 0; i < len; i++)
Willy Tarreauf278eec2020-07-05 21:46:32 +0200156 if (tolower((unsigned char)name1[i]) != tolower((unsigned char)name2[i]))
Olivier Houchardb17b8842020-04-01 18:30:27 +0200157 return -1;
158 return 0;
159}
160
Christopher Faulet67957bd2017-09-27 11:00:59 +0200161/* Returns a pointer on the SRV request matching the name <name> for the proxy
162 * <px>. NULL is returned if no match is found.
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200163 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200164struct dns_srvrq *find_srvrq_by_name(const char *name, struct proxy *px)
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200165{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200166 struct dns_srvrq *srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200167
Christopher Faulet67957bd2017-09-27 11:00:59 +0200168 list_for_each_entry(srvrq, &dns_srvrq_list, list) {
169 if (srvrq->proxy == px && !strcmp(srvrq->name, name))
170 return srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200171 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200172 return NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200173}
174
Christopher Faulet67957bd2017-09-27 11:00:59 +0200175/* Allocates a new SRVRQ for the given server with the name <fqdn>. It returns
176 * NULL if an error occurred. */
177struct dns_srvrq *new_dns_srvrq(struct server *srv, char *fqdn)
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200178{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200179 struct proxy *px = srv->proxy;
180 struct dns_srvrq *srvrq = NULL;
181 int fqdn_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200182
Christopher Faulet67957bd2017-09-27 11:00:59 +0200183 fqdn_len = strlen(fqdn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200184 hostname_dn_len = dns_str_to_dn_label(fqdn, fqdn_len + 1, trash.area,
185 trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200186 if (hostname_dn_len == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100187 ha_alert("config : %s '%s', server '%s': failed to parse FQDN '%s'\n",
188 proxy_type_str(px), px->id, srv->id, fqdn);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200189 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200190 }
191
Christopher Faulet67957bd2017-09-27 11:00:59 +0200192 if ((srvrq = calloc(1, sizeof(*srvrq))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100193 ha_alert("config : %s '%s', server '%s': out of memory\n",
194 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200195 goto err;
196 }
197 srvrq->obj_type = OBJ_TYPE_SRVRQ;
198 srvrq->proxy = px;
199 srvrq->name = strdup(fqdn);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200200 srvrq->hostname_dn = strdup(trash.area);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200201 srvrq->hostname_dn_len = hostname_dn_len;
202 if (!srvrq->name || !srvrq->hostname_dn) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100203 ha_alert("config : %s '%s', server '%s': out of memory\n",
204 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200205 goto err;
206 }
Emeric Brun32131d42021-06-11 10:48:45 +0200207 LIST_INIT(&srvrq->attached_servers);
208 srvrq->named_servers = EB_ROOT;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200209 LIST_ADDQ(&dns_srvrq_list, &srvrq->list);
210 return srvrq;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200211
Christopher Faulet67957bd2017-09-27 11:00:59 +0200212 err:
213 if (srvrq) {
214 free(srvrq->name);
215 free(srvrq->hostname_dn);
216 free(srvrq);
217 }
218 return NULL;
219}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200220
Baptiste Assmann99348c32021-03-10 12:22:18 +0100221/* finds and return the SRV answer item associated to a requester (whose type is 'server').
222 *
223 * returns NULL in case of error or not found.
224 */
225struct dns_answer_item *find_srvrq_answer_record(const struct dns_requester *requester)
226{
227 struct dns_resolution *res;
228 struct dns_answer_item *item;
229 struct server *srv;
230
231 if (!requester)
232 return NULL;
233
234 if ((srv = objt_server(requester->owner)) == NULL)
235 return NULL;
236 /* check if the server is managed by a SRV record */
237 if (srv->srvrq == NULL)
238 return NULL;
239
240 res = srv->srvrq->dns_requester->resolution;
241 /* search an ANSWER record whose target points to the server's hostname and whose port is
242 * the same as server's svc_port */
243 list_for_each_entry(item, &res->response.answer_list, list) {
244 if (dns_hostname_cmp(srv->hostname_dn, item->target, srv->hostname_dn_len) == 0 &&
245 (srv->svc_port == item->port))
246 return item;
247 }
248
249 return NULL;
250}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200251
Christopher Faulet67957bd2017-09-27 11:00:59 +0200252/* 2 bytes random generator to generate DNS query ID */
253static inline uint16_t dns_rnd16(void)
254{
Christopher Fauletb2812a62017-10-04 16:17:58 +0200255 if (!dns_query_id_seed)
256 dns_query_id_seed = now_ms;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200257 dns_query_id_seed ^= dns_query_id_seed << 13;
258 dns_query_id_seed ^= dns_query_id_seed >> 7;
259 dns_query_id_seed ^= dns_query_id_seed << 17;
260 return dns_query_id_seed;
261}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200262
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200263
Christopher Faulet67957bd2017-09-27 11:00:59 +0200264static inline int dns_resolution_timeout(struct dns_resolution *res)
265{
Baptiste Assmannf50e1ac2019-11-07 11:02:18 +0100266 return res->resolvers->timeout.resolve;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200267}
268
Christopher Faulet67957bd2017-09-27 11:00:59 +0200269/* Updates a resolvers' task timeout for next wake up and queue it */
270static void dns_update_resolvers_timeout(struct dns_resolvers *resolvers)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200271{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200272 struct dns_resolution *res;
273 int next;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200274
Christopher Faulet67957bd2017-09-27 11:00:59 +0200275 next = tick_add(now_ms, resolvers->timeout.resolve);
276 if (!LIST_ISEMPTY(&resolvers->resolutions.curr)) {
277 res = LIST_NEXT(&resolvers->resolutions.curr, struct dns_resolution *, list);
278 next = MIN(next, tick_add(res->last_query, resolvers->timeout.retry));
279 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200280
Christopher Faulet67957bd2017-09-27 11:00:59 +0200281 list_for_each_entry(res, &resolvers->resolutions.wait, list)
282 next = MIN(next, tick_add(res->last_resolution, dns_resolution_timeout(res)));
Baptiste Assmann325137d2015-04-13 23:40:55 +0200283
Christopher Faulet67957bd2017-09-27 11:00:59 +0200284 resolvers->t->expire = next;
285 task_queue(resolvers->t);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200286}
287
Christopher Faulet67957bd2017-09-27 11:00:59 +0200288/* Opens an UDP socket on the namesaver's IP/Port, if required. Returns 0 on
289 * success, -1 otherwise.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200290 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200291static int dns_connect_namesaver(struct dns_nameserver *ns)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200292{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200293 struct dgram_conn *dgram = ns->dgram;
294 int fd;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200295
Christopher Faulet67957bd2017-09-27 11:00:59 +0200296 /* Already connected */
297 if (dgram->t.sock.fd != -1)
298 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200299
Christopher Faulet67957bd2017-09-27 11:00:59 +0200300 /* Create an UDP socket and connect it on the nameserver's IP/Port */
301 if ((fd = socket(ns->addr.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
302 send_log(NULL, LOG_WARNING,
303 "DNS : resolvers '%s': can't create socket for nameserver '%s'.\n",
304 ns->resolvers->id, ns->id);
305 return -1;
306 }
307 if (connect(fd, (struct sockaddr*)&ns->addr, get_addr_len(&ns->addr)) == -1) {
308 send_log(NULL, LOG_WARNING,
309 "DNS : resolvers '%s': can't connect socket for nameserver '%s'.\n",
310 ns->resolvers->id, ns->id);
311 close(fd);
312 return -1;
313 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200314
Christopher Faulet67957bd2017-09-27 11:00:59 +0200315 /* Make the socket non blocking */
316 fcntl(fd, F_SETFL, O_NONBLOCK);
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200317
Christopher Faulet67957bd2017-09-27 11:00:59 +0200318 /* Add the fd in the fd list and update its parameters */
319 dgram->t.sock.fd = fd;
Willy Tarreaua9786b62018-01-25 07:22:13 +0100320 fd_insert(fd, dgram, dgram_fd_handler, MAX_THREADS_MASK);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200321 fd_want_recv(fd);
322 return 0;
323}
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200324
Christopher Faulet67957bd2017-09-27 11:00:59 +0200325/* Forges a DNS query. It needs the following information from the caller:
326 * - <query_id> : the DNS query id corresponding to this query
327 * - <query_type> : DNS_RTYPE_* request DNS record type (A, AAAA, ANY...)
328 * - <hostname_dn> : hostname in domain name format
329 * - <hostname_dn_len> : length of <hostname_dn>
330 *
331 * To store the query, the caller must pass a buffer <buf> and its size
332 * <bufsize>. It returns the number of written bytes in success, -1 if <buf> is
333 * too short.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200334 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200335static int dns_build_query(int query_id, int query_type, unsigned int accepted_payload_size,
336 char *hostname_dn, int hostname_dn_len, char *buf, int bufsize)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200337{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200338 struct dns_header dns_hdr;
339 struct dns_question qinfo;
340 struct dns_additional_record edns;
341 char *p = buf;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200342
Christopher Faulet67957bd2017-09-27 11:00:59 +0200343 if (sizeof(dns_hdr) + sizeof(qinfo) + sizeof(edns) + hostname_dn_len >= bufsize)
344 return -1;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200345
Christopher Faulet67957bd2017-09-27 11:00:59 +0200346 memset(buf, 0, bufsize);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +0200347
Christopher Faulet67957bd2017-09-27 11:00:59 +0200348 /* Set dns query headers */
349 dns_hdr.id = (unsigned short) htons(query_id);
350 dns_hdr.flags = htons(0x0100); /* qr=0, opcode=0, aa=0, tc=0, rd=1, ra=0, z=0, rcode=0 */
351 dns_hdr.qdcount = htons(1); /* 1 question */
352 dns_hdr.ancount = 0;
353 dns_hdr.nscount = 0;
354 dns_hdr.arcount = htons(1);
355 memcpy(p, &dns_hdr, sizeof(dns_hdr));
356 p += sizeof(dns_hdr);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200357
Christopher Faulet67957bd2017-09-27 11:00:59 +0200358 /* Set up query hostname */
359 memcpy(p, hostname_dn, hostname_dn_len);
360 p += hostname_dn_len;
361 *p++ = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200362
Christopher Faulet67957bd2017-09-27 11:00:59 +0200363 /* Set up query info (type and class) */
364 qinfo.qtype = htons(query_type);
365 qinfo.qclass = htons(DNS_RCLASS_IN);
366 memcpy(p, &qinfo, sizeof(qinfo));
367 p += sizeof(qinfo);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200368
Christopher Faulet67957bd2017-09-27 11:00:59 +0200369 /* Set the DNS extension */
370 edns.name = 0;
371 edns.type = htons(DNS_RTYPE_OPT);
372 edns.udp_payload_size = htons(accepted_payload_size);
373 edns.extension = 0;
374 edns.data_length = 0;
375 memcpy(p, &edns, sizeof(edns));
376 p += sizeof(edns);
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200377
Christopher Faulet67957bd2017-09-27 11:00:59 +0200378 return (p - buf);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200379}
380
Christopher Faulet67957bd2017-09-27 11:00:59 +0200381/* Sends a DNS query to resolvers associated to a resolution. It returns 0 on
382 * success, -1 otherwise.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200383 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200384static int dns_send_query(struct dns_resolution *resolution)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200385{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200386 struct dns_resolvers *resolvers = resolution->resolvers;
387 struct dns_nameserver *ns;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100388 int len;
389
390 /* Update resolution */
391 resolution->nb_queries = 0;
392 resolution->nb_responses = 0;
393 resolution->last_query = now_ms;
394
395 len = dns_build_query(resolution->query_id, resolution->query_type,
396 resolvers->accepted_payload_size,
397 resolution->hostname_dn, resolution->hostname_dn_len,
398 trash.area, trash.size);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200399
Christopher Faulet67957bd2017-09-27 11:00:59 +0200400 list_for_each_entry(ns, &resolvers->nameservers, list) {
401 int fd = ns->dgram->t.sock.fd;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100402 int ret;
403
Christopher Faulet67957bd2017-09-27 11:00:59 +0200404 if (fd == -1) {
405 if (dns_connect_namesaver(ns) == -1)
406 continue;
407 fd = ns->dgram->t.sock.fd;
408 resolvers->nb_nameservers++;
409 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200410
Willy Tarreau0eae6322019-12-20 11:18:54 +0100411 if (len < 0)
412 goto snd_error;
413
414 ret = send(fd, trash.area, len, 0);
415 if (ret == len) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +0200416 ns->counters->sent++;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100417 resolution->nb_queries++;
418 continue;
419 }
Emeric Brun751872e2021-05-04 18:16:53 +0200420 else if (ret == -1) {
421 if (errno == EAGAIN) {
422 /* retry once the socket is ready */
423 fd_cant_send(fd);
424 continue;
425 }
Willy Tarreau0eae6322019-12-20 11:18:54 +0100426
Emeric Brun751872e2021-05-04 18:16:53 +0200427 /* purge the fd and set sock.fd to -1
428 * to create a new one during next
429 * send_query attempt to the same
430 * nameserver
431 */
432 fd_delete(fd);
433 ns->dgram->t.sock.fd = -1;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100434 }
435
436 snd_error:
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +0200437 ns->counters->snd_error++;
Willy Tarreau0eae6322019-12-20 11:18:54 +0100438 resolution->nb_queries++;
439 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200440
Christopher Faulet67957bd2017-09-27 11:00:59 +0200441 /* Push the resolution at the end of the active list */
442 LIST_DEL(&resolution->list);
443 LIST_ADDQ(&resolvers->resolutions.curr, &resolution->list);
444 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200445}
446
Christopher Faulet67957bd2017-09-27 11:00:59 +0200447/* Prepares and sends a DNS resolution. It returns 1 if the query was sent, 0 if
448 * skipped and -1 if an error occurred.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200449 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200450static int
451dns_run_resolution(struct dns_resolution *resolution)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200452{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200453 struct dns_resolvers *resolvers = resolution->resolvers;
454 int query_id, i;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200455
Christopher Faulet67957bd2017-09-27 11:00:59 +0200456 /* Avoid sending requests for resolutions that don't yet have an
457 * hostname, ie resolutions linked to servers that do not yet have an
458 * fqdn */
459 if (!resolution->hostname_dn)
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200460 return 0;
461
Christopher Faulet67957bd2017-09-27 11:00:59 +0200462 /* Check if a resolution has already been started for this server return
463 * directly to avoid resolution pill up. */
464 if (resolution->step != RSLV_STEP_NONE)
465 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200466
Christopher Faulet67957bd2017-09-27 11:00:59 +0200467 /* Generates a new query id. We try at most 100 times to find a free
468 * query id */
469 for (i = 0; i < 100; ++i) {
470 query_id = dns_rnd16();
471 if (!eb32_lookup(&resolvers->query_ids, query_id))
Olivier Houchard8da5f982017-08-04 18:35:36 +0200472 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200473 query_id = -1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200474 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200475 if (query_id == -1) {
476 send_log(NULL, LOG_NOTICE,
477 "could not generate a query id for %s, in resolvers %s.\n",
478 resolution->hostname_dn, resolvers->id);
479 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200480 }
481
Christopher Faulet67957bd2017-09-27 11:00:59 +0200482 /* Update resolution parameters */
483 resolution->query_id = query_id;
484 resolution->qid.key = query_id;
485 resolution->step = RSLV_STEP_RUNNING;
486 resolution->query_type = resolution->prefered_query_type;
487 resolution->try = resolvers->resolve_retries;
488 eb32_insert(&resolvers->query_ids, &resolution->qid);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200489
Christopher Faulet67957bd2017-09-27 11:00:59 +0200490 /* Send the DNS query */
491 resolution->try -= 1;
492 dns_send_query(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200493 return 1;
494}
495
Christopher Faulet67957bd2017-09-27 11:00:59 +0200496/* Performs a name resolution for the requester <req> */
497void dns_trigger_resolution(struct dns_requester *req)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200498{
Christopher Faulet67957bd2017-09-27 11:00:59 +0200499 struct dns_resolvers *resolvers;
500 struct dns_resolution *res;
501 int exp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200502
Christopher Faulet67957bd2017-09-27 11:00:59 +0200503 if (!req || !req->resolution)
504 return;
505 res = req->resolution;
506 resolvers = res->resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200507
Christopher Faulet67957bd2017-09-27 11:00:59 +0200508 /* The resolution must not be triggered yet. Use the cached response, if
509 * valid */
510 exp = tick_add(res->last_resolution, resolvers->hold.valid);
Olivier Houchardf3d9e602018-05-22 18:40:07 +0200511 if (resolvers->t && (res->status != RSLV_STATUS_VALID ||
512 !tick_isset(res->last_resolution) || tick_is_expired(exp, now_ms)))
513 task_wakeup(resolvers->t, TASK_WOKEN_OTHER);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200514}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200515
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200516
Christopher Faulet67957bd2017-09-27 11:00:59 +0200517/* Resets some resolution parameters to initial values and also delete the query
518 * ID from the resolver's tree.
519 */
520static void dns_reset_resolution(struct dns_resolution *resolution)
521{
522 /* update resolution status */
523 resolution->step = RSLV_STEP_NONE;
524 resolution->try = 0;
525 resolution->last_resolution = now_ms;
526 resolution->nb_queries = 0;
527 resolution->nb_responses = 0;
528 resolution->query_type = resolution->prefered_query_type;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200529
Christopher Faulet67957bd2017-09-27 11:00:59 +0200530 /* clean up query id */
531 eb32_delete(&resolution->qid);
532 resolution->query_id = 0;
533 resolution->qid.key = 0;
534}
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200535
Christopher Faulet67957bd2017-09-27 11:00:59 +0200536/* Returns the query id contained in a DNS response */
537static inline unsigned short dns_response_get_query_id(unsigned char *resp)
538{
539 return resp[0] * 256 + resp[1];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200540}
541
Christopher Faulet67957bd2017-09-27 11:00:59 +0200542
543/* Analyses, re-builds and copies the name <name> from the DNS response packet
544 * <buffer>. <name> must point to the 'data_len' information or pointer 'c0'
545 * for compressed data. The result is copied into <dest>, ensuring we don't
546 * overflow using <dest_len> Returns the number of bytes the caller can move
547 * forward. If 0 it means an error occurred while parsing the name. <offset> is
548 * the number of bytes the caller could move forward.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200549 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200550int dns_read_name(unsigned char *buffer, unsigned char *bufend,
551 unsigned char *name, char *destination, int dest_len,
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100552 int *offset, unsigned int depth)
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200553{
554 int nb_bytes = 0, n = 0;
555 int label_len;
556 unsigned char *reader = name;
557 char *dest = destination;
558
559 while (1) {
Remi Gacogne2d19fbc2018-12-05 17:55:10 +0100560 if (reader >= bufend)
561 goto err;
562
Christopher Faulet67957bd2017-09-27 11:00:59 +0200563 /* Name compression is in use */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200564 if ((*reader & 0xc0) == 0xc0) {
Remi Gacogne2d19fbc2018-12-05 17:55:10 +0100565 if (reader + 1 >= bufend)
566 goto err;
567
Christopher Faulet67957bd2017-09-27 11:00:59 +0200568 /* Must point BEFORE current position */
569 if ((buffer + reader[1]) > reader)
570 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200571
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100572 if (depth++ > 100)
573 goto err;
574
Nikhil Agrawal2fa66c32018-12-20 10:50:59 +0530575 n = dns_read_name(buffer, bufend, buffer + (*reader & 0x3f)*256 + reader[1],
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100576 dest, dest_len - nb_bytes, offset, depth);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200577 if (n == 0)
Christopher Faulet67957bd2017-09-27 11:00:59 +0200578 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200579
Christopher Faulet67957bd2017-09-27 11:00:59 +0200580 dest += n;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200581 nb_bytes += n;
582 goto out;
583 }
584
585 label_len = *reader;
586 if (label_len == 0)
587 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200588
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200589 /* Check if:
590 * - we won't read outside the buffer
591 * - there is enough place in the destination
592 */
593 if ((reader + label_len >= bufend) || (nb_bytes + label_len >= dest_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +0200594 goto err;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200595
596 /* +1 to take label len + label string */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200597 label_len++;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200598
599 memcpy(dest, reader, label_len);
600
Christopher Faulet67957bd2017-09-27 11:00:59 +0200601 dest += label_len;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200602 nb_bytes += label_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200603 reader += label_len;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200604 }
605
Christopher Faulet67957bd2017-09-27 11:00:59 +0200606 out:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200607 /* offset computation:
608 * parse from <name> until finding either NULL or a pointer "c0xx"
609 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200610 reader = name;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200611 *offset = 0;
612 while (reader < bufend) {
613 if ((reader[0] & 0xc0) == 0xc0) {
614 *offset += 2;
615 break;
616 }
617 else if (*reader == 0) {
618 *offset += 1;
619 break;
620 }
621 *offset += 1;
622 ++reader;
623 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200624 return nb_bytes;
625
Christopher Faulet67957bd2017-09-27 11:00:59 +0200626 err:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200627 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200628}
629
Christopher Faulet67957bd2017-09-27 11:00:59 +0200630/* Checks for any obsolete record, also identify any SRV request, and try to
631 * find a corresponding server.
632*/
633static void dns_check_dns_response(struct dns_resolution *res)
634{
635 struct dns_resolvers *resolvers = res->resolvers;
636 struct dns_requester *req, *reqback;
637 struct dns_answer_item *item, *itemback;
Emeric Brunca8e3552021-06-11 10:08:05 +0200638 struct server *srv, *srvback;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200639 struct dns_srvrq *srvrq;
640
641 list_for_each_entry_safe(item, itemback, &res->response.answer_list, list) {
Christopher Faulet5a891752020-09-08 10:06:01 +0200642 struct dns_answer_item *ar_item = item->ar_item;
643
644 /* clean up obsolete Additional record */
Christopher Faulet8b6d5b02021-03-11 09:36:05 +0100645 if (ar_item && tick_is_lt(tick_add(ar_item->last_seen, resolvers->hold.obsolete), now_ms)) {
Christopher Faulet02cf7b72021-03-10 18:38:37 +0100646 /* Cleaning up the AR item will trigger an extra DNS resolution, except if the SRV
647 * item is also obsolete.
648 */
Christopher Faulet5a891752020-09-08 10:06:01 +0200649 pool_free(dns_answer_item_pool, ar_item);
650 item->ar_item = NULL;
651 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200652
653 /* Remove obsolete items */
Christopher Faulet8b6d5b02021-03-11 09:36:05 +0100654 if (tick_is_lt(tick_add(item->last_seen, resolvers->hold.obsolete), now_ms)) {
Emeric Brunca8e3552021-06-11 10:08:05 +0200655 if (item->type == DNS_RTYPE_A || item->type == DNS_RTYPE_AAAA) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200656 /* Remove any associated server */
Emeric Brunca8e3552021-06-11 10:08:05 +0200657 list_for_each_entry_safe(srv, srvback, &item->attached_servers, ip_rec_item) {
658 LIST_DEL_INIT(&srv->ip_rec_item);
659 }
660 }
661 else if (item->type == DNS_RTYPE_SRV) {
Emeric Brun32131d42021-06-11 10:48:45 +0200662 /* Remove any associated server */
663 list_for_each_entry_safe(srv, srvback, &item->attached_servers, srv_rec_item) {
664 dns_unlink_resolution(srv->dns_requester, 0);
665 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
666 srvrq_update_srv_status(srv, 1);
667 free(srv->hostname);
668 free(srv->hostname_dn);
669 srv->hostname = NULL;
670 srv->hostname_dn = NULL;
671 srv->hostname_dn_len = 0;
672 memset(&srv->addr, 0, sizeof(srv->addr));
673 srv->svc_port = 0;
674 srv->flags |= SRV_F_NO_RESOLUTION;
675 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
676 LIST_DEL(&srv->srv_rec_item);
677 LIST_ADDQ(&srv->srvrq->attached_servers, &srv->srv_rec_item);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200678 }
679 }
680
Christopher Faulet67957bd2017-09-27 11:00:59 +0200681 LIST_DEL(&item->list);
Christopher Faulet5a891752020-09-08 10:06:01 +0200682 if (item->ar_item) {
683 pool_free(dns_answer_item_pool, item->ar_item);
684 item->ar_item = NULL;
685 }
Willy Tarreaubafbe012017-11-24 17:34:44 +0100686 pool_free(dns_answer_item_pool, item);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200687 continue;
688 }
689
690 if (item->type != DNS_RTYPE_SRV)
691 continue;
692
693 /* Now process SRV records */
694 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
Emeric Brun32131d42021-06-11 10:48:45 +0200695 struct ebpt_node *node;
696 char target[DNS_MAX_NAME_SIZE+1];
697
698 int i;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200699 if ((srvrq = objt_dns_srvrq(req->owner)) == NULL)
700 continue;
701
Emeric Brun32131d42021-06-11 10:48:45 +0200702 /* Check if a server already uses that record */
703 srv = NULL;
704 list_for_each_entry(srv, &item->attached_servers, srv_rec_item) {
705 if (srv->srvrq == srvrq) {
706 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
707 goto srv_found;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200708 }
709 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200710
Emeric Brun32131d42021-06-11 10:48:45 +0200711
712 /* If not empty we try to match a server
713 * in server state file tree with the same hostname
714 */
715 if (!eb_is_empty(&srvrq->named_servers)) {
716 srv = NULL;
717
718 /* convert the key to lookup in lower case */
719 for (i = 0 ; item->target[i] ; i++)
720 target[i] = tolower(item->target[i]);
721
722 node = ebis_lookup(&srvrq->named_servers, target);
723 if (node) {
724 srv = ebpt_entry(node, struct server, host_dn);
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +0200725 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun32131d42021-06-11 10:48:45 +0200726
727 /* an entry was found with the same hostname
728 * let check this node if the port matches
729 * and try next node if the hostname
730 * is still the same
731 */
732 while (1) {
733 if (srv->svc_port == item->port) {
734 /* server found, we remove it from tree */
735 ebpt_delete(node);
736 free(srv->host_dn.key);
737 goto srv_found;
738 }
739
740 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
741
742 node = ebpt_next(node);
743 if (!node)
744 break;
745
746 srv = ebpt_entry(node, struct server, host_dn);
747 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
748
749 if ((item->data_len != srv->hostname_dn_len)
750 || dns_hostname_cmp(srv->hostname_dn, item->target, item->data_len)) {
751 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
752 break;
753 }
754 }
Olivier Houchard55dcdf42017-11-06 15:15:04 +0100755 }
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +0200756 }
Emeric Brun32131d42021-06-11 10:48:45 +0200757
758 /* Pick the first server listed in srvrq (those ones don't
759 * have hostname and are free to use)
760 */
761 srv = NULL;
762 list_for_each_entry(srv, &srvrq->attached_servers, srv_rec_item) {
763 LIST_DEL_INIT(&srv->srv_rec_item);
764 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
765 goto srv_found;
766 }
767 srv = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +0200768
Emeric Brun32131d42021-06-11 10:48:45 +0200769srv_found:
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +0200770 /* And update this server, if found (srv is locked here) */
771 if (srv) {
Christopher Faulet02cf7b72021-03-10 18:38:37 +0100772 /* re-enable DNS resolution for this server by default */
773 srv->flags &= ~SRV_F_NO_RESOLUTION;
774
Baptiste Assmann13a92322019-06-07 09:40:55 +0200775 /* Check if an Additional Record is associated to this SRV record.
776 * Perform some sanity checks too to ensure the record can be used.
777 * If all fine, we simply pick up the IP address found and associate
Christopher Faulet02cf7b72021-03-10 18:38:37 +0100778 * it to the server. And DNS resolution is disabled for this server.
Baptiste Assmann13a92322019-06-07 09:40:55 +0200779 */
780 if ((item->ar_item != NULL) &&
781 (item->ar_item->type == DNS_RTYPE_A || item->ar_item->type == DNS_RTYPE_AAAA))
Christopher Faulet02cf7b72021-03-10 18:38:37 +0100782 {
Baptiste Assmann13a92322019-06-07 09:40:55 +0200783
784 switch (item->ar_item->type) {
785 case DNS_RTYPE_A:
Baptiste Assmanncde83032020-08-04 10:54:14 +0200786 update_server_addr(srv, &(((struct sockaddr_in*)&item->ar_item->address)->sin_addr), AF_INET, "DNS additional record");
Baptiste Assmann13a92322019-06-07 09:40:55 +0200787 break;
788 case DNS_RTYPE_AAAA:
Baptiste Assmanncde83032020-08-04 10:54:14 +0200789 update_server_addr(srv, &(((struct sockaddr_in6*)&item->ar_item->address)->sin6_addr), AF_INET6, "DNS additional record");
Baptiste Assmann13a92322019-06-07 09:40:55 +0200790 break;
791 }
792
793 srv->flags |= SRV_F_NO_RESOLUTION;
Christopher Faulet02cf7b72021-03-10 18:38:37 +0100794
795 /* Unlink A/AAAA resolution for this server if there is an AR item.
796 * It is usless to perform an extra resolution
797 */
Christopher Faulet119ec522021-03-11 18:09:53 +0100798 dns_unlink_resolution(srv->dns_requester, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +0200799 }
800
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +0200801 if (!srv->hostname_dn) {
802 const char *msg = NULL;
803 char hostname[DNS_MAX_NAME_SIZE];
804
805 if (dns_dn_label_to_str(item->target, item->data_len+1,
806 hostname, DNS_MAX_NAME_SIZE) == -1) {
807 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
808 continue;
809 }
810 msg = update_server_fqdn(srv, hostname, "SRV record", 1);
811 if (msg)
812 send_log(srv->proxy, LOG_NOTICE, "%s", msg);
813 }
Christopher Faulet67957bd2017-09-27 11:00:59 +0200814
Emeric Brun32131d42021-06-11 10:48:45 +0200815 if (!LIST_ADDED(&srv->srv_rec_item))
816 LIST_ADDQ(&item->attached_servers, &srv->srv_rec_item);
817
Christopher Faulet02cf7b72021-03-10 18:38:37 +0100818 if (!(srv->flags & SRV_F_NO_RESOLUTION)) {
819 /* If there is no AR item responsible of the FQDN resolution,
820 * trigger a dedicated DNS resolution
821 */
822 if (!srv->dns_requester || !srv->dns_requester->resolution)
823 dns_link_resolution(srv, OBJ_TYPE_SERVER, 1);
824 }
825
Christopher Faulet1ec90772021-03-10 15:34:52 +0100826 /* Update the server status */
Christopher Faulet07cb0e12021-03-11 18:06:23 +0100827 srvrq_update_srv_status(srv, (srv->addr.ss_family != AF_INET && srv->addr.ss_family != AF_INET6));
Baptiste Assmann87138c32020-08-04 10:57:21 +0200828
Christopher Faulet67957bd2017-09-27 11:00:59 +0200829 srv->svc_port = item->port;
830 srv->flags &= ~SRV_F_MAPPORTS;
831 if ((srv->check.state & CHK_ST_CONFIGURED) &&
832 !(srv->flags & SRV_F_CHECKPORT))
833 srv->check.port = item->port;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100834
Daniel Corbettf8716912019-11-17 09:48:56 -0500835 if (!srv->dns_opts.ignore_weight) {
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +0200836 char weight[9];
837 int ha_weight;
838
Daniel Corbettf8716912019-11-17 09:48:56 -0500839 /* DNS weight range if from 0 to 65535
840 * HAProxy weight is from 0 to 256
841 * The rule below ensures that weight 0 is well respected
842 * while allowing a "mapping" from DNS weight into HAProxy's one.
843 */
844 ha_weight = (item->weight + 255) / 256;
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100845
Daniel Corbettf8716912019-11-17 09:48:56 -0500846 snprintf(weight, sizeof(weight), "%d", ha_weight);
847 server_parse_weight_change_request(srv, weight);
848 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100849 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +0200850 }
851 }
852 }
853}
854
855/* Validates that the buffer DNS response provided in <resp> and finishing
856 * before <bufend> is valid from a DNS protocol point of view.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200857 *
Christopher Faulet67957bd2017-09-27 11:00:59 +0200858 * The result is stored in <resolution>' response, buf_response,
859 * response_query_records and response_answer_records members.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200860 *
861 * This function returns one of the DNS_RESP_* code to indicate the type of
862 * error found.
Baptiste Assmann325137d2015-04-13 23:40:55 +0200863 */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200864static int dns_validate_dns_response(unsigned char *resp, unsigned char *bufend,
865 struct dns_resolution *resolution, int max_answer_records)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200866{
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200867 unsigned char *reader;
868 char *previous_dname, tmpname[DNS_MAX_NAME_SIZE];
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200869 int len, flags, offset;
870 int dns_query_record_id;
Baptiste Assmann69fce672017-05-04 08:37:45 +0200871 int nb_saved_records;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200872 struct dns_query_item *dns_query;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200873 struct dns_answer_item *dns_answer_record, *tmp_record;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200874 struct dns_response_packet *dns_p;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200875 int i, found = 0;
Willy Tarreau963f7012020-07-22 17:00:45 +0200876 int cause = DNS_RESP_ERROR;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200877
Christopher Faulet67957bd2017-09-27 11:00:59 +0200878 reader = resp;
879 len = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200880 previous_dname = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200881 dns_query = NULL;
Willy Tarreau963f7012020-07-22 17:00:45 +0200882 dns_answer_record = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200883
Christopher Faulet67957bd2017-09-27 11:00:59 +0200884 /* Initialization of response buffer and structure */
Baptiste Assmann729c9012017-05-22 15:13:10 +0200885 dns_p = &resolution->response;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200886
887 /* query id */
888 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200889 goto invalid_resp;
890
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200891 dns_p->header.id = reader[0] * 256 + reader[1];
892 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200893
Christopher Faulet67957bd2017-09-27 11:00:59 +0200894 /* Flags and rcode are stored over 2 bytes
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200895 * First byte contains:
896 * - response flag (1 bit)
897 * - opcode (4 bits)
898 * - authoritative (1 bit)
899 * - truncated (1 bit)
900 * - recursion desired (1 bit)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200901 */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200902 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200903 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200904
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200905 flags = reader[0] * 256 + reader[1];
906
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200907 if ((flags & DNS_FLAG_REPLYCODE) != DNS_RCODE_NO_ERROR) {
Willy Tarreau963f7012020-07-22 17:00:45 +0200908 if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_NX_DOMAIN) {
909 cause = DNS_RESP_NX_DOMAIN;
910 goto return_error;
911 }
912 else if ((flags & DNS_FLAG_REPLYCODE) == DNS_RCODE_REFUSED) {
913 cause = DNS_RESP_REFUSED;
914 goto return_error;
915 }
916 else {
917 cause = DNS_RESP_ERROR;
918 goto return_error;
919 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200920 }
921
Christopher Faulet67957bd2017-09-27 11:00:59 +0200922 /* Move forward 2 bytes for flags */
Baptiste Assmann3440f0d2015-09-02 22:08:38 +0200923 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200924
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200925 /* 2 bytes for question count */
926 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200927 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200928 dns_p->header.qdcount = reader[0] * 256 + reader[1];
Christopher Faulet67957bd2017-09-27 11:00:59 +0200929 /* (for now) we send one query only, so we expect only one in the
930 * response too */
Willy Tarreau963f7012020-07-22 17:00:45 +0200931 if (dns_p->header.qdcount != 1) {
932 cause = DNS_RESP_QUERY_COUNT_ERROR;
933 goto return_error;
934 }
935
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200936 if (dns_p->header.qdcount > DNS_MAX_QUERY_RECORDS)
Willy Tarreau963f7012020-07-22 17:00:45 +0200937 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200938 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200939
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200940 /* 2 bytes for answer count */
941 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200942 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200943 dns_p->header.ancount = reader[0] * 256 + reader[1];
Willy Tarreau963f7012020-07-22 17:00:45 +0200944 if (dns_p->header.ancount == 0) {
945 cause = DNS_RESP_ANCOUNT_ZERO;
946 goto return_error;
947 }
948
Christopher Faulet67957bd2017-09-27 11:00:59 +0200949 /* Check if too many records are announced */
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200950 if (dns_p->header.ancount > max_answer_records)
Willy Tarreau963f7012020-07-22 17:00:45 +0200951 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200952 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200953
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200954 /* 2 bytes authority count */
955 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200956 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200957 dns_p->header.nscount = reader[0] * 256 + reader[1];
958 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200959
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200960 /* 2 bytes additional count */
961 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200962 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200963 dns_p->header.arcount = reader[0] * 256 + reader[1];
964 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200965
Christopher Faulet67957bd2017-09-27 11:00:59 +0200966 /* Parsing dns queries */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200967 LIST_INIT(&dns_p->query_list);
968 for (dns_query_record_id = 0; dns_query_record_id < dns_p->header.qdcount; dns_query_record_id++) {
Christopher Faulet67957bd2017-09-27 11:00:59 +0200969 /* Use next pre-allocated dns_query_item after ensuring there is
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200970 * still one available.
Christopher Faulet67957bd2017-09-27 11:00:59 +0200971 * It's then added to our packet query list. */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200972 if (dns_query_record_id > DNS_MAX_QUERY_RECORDS)
Willy Tarreau963f7012020-07-22 17:00:45 +0200973 goto invalid_resp;
Baptiste Assmann729c9012017-05-22 15:13:10 +0200974 dns_query = &resolution->response_query_records[dns_query_record_id];
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200975 LIST_ADDQ(&dns_p->query_list, &dns_query->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200976
Christopher Faulet67957bd2017-09-27 11:00:59 +0200977 /* Name is a NULL terminated string in our case, since we have
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200978 * one query per response and the first one can't be compressed
Christopher Faulet67957bd2017-09-27 11:00:59 +0200979 * (using the 0x0c format) */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200980 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +0100981 len = dns_read_name(resp, bufend, reader, dns_query->name, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200982
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200983 if (len == 0)
Willy Tarreau963f7012020-07-22 17:00:45 +0200984 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200985
986 reader += offset;
987 previous_dname = dns_query->name;
988
989 /* move forward 2 bytes for question type */
990 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200991 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200992 dns_query->type = reader[0] * 256 + reader[1];
993 reader += 2;
994
995 /* move forward 2 bytes for question class */
996 if (reader + 2 >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +0200997 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200998 dns_query->class = reader[0] * 256 + reader[1];
999 reader += 2;
1000 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001001
Baptiste Assmann251abb92017-08-11 09:58:27 +02001002 /* TRUNCATED flag must be checked after we could read the query type
Christopher Faulet67957bd2017-09-27 11:00:59 +02001003 * because a TRUNCATED SRV query type response can still be exploited */
Willy Tarreau963f7012020-07-22 17:00:45 +02001004 if (dns_query->type != DNS_RTYPE_SRV && flags & DNS_FLAG_TRUNCATED) {
1005 cause = DNS_RESP_TRUNCATED;
1006 goto return_error;
1007 }
Baptiste Assmann251abb92017-08-11 09:58:27 +02001008
Baptiste Assmann325137d2015-04-13 23:40:55 +02001009 /* now parsing response records */
Baptiste Assmann69fce672017-05-04 08:37:45 +02001010 nb_saved_records = 0;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001011 for (i = 0; i < dns_p->header.ancount; i++) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001012 if (reader >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +02001013 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001014
Willy Tarreaubafbe012017-11-24 17:34:44 +01001015 dns_answer_record = pool_alloc(dns_answer_item_pool);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001016 if (dns_answer_record == NULL)
Willy Tarreau963f7012020-07-22 17:00:45 +02001017 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001018
Baptiste Assmann155bc682021-01-15 17:01:24 +01001019 /* initialization */
1020 dns_answer_record->ar_item = NULL;
Christopher Faulet8b6d5b02021-03-11 09:36:05 +01001021 dns_answer_record->last_seen = TICK_ETERNITY;
Emeric Brunca8e3552021-06-11 10:08:05 +02001022 LIST_INIT(&dns_answer_record->attached_servers);
Baptiste Assmann155bc682021-01-15 17:01:24 +01001023
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001024 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +01001025 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001026
Willy Tarreau963f7012020-07-22 17:00:45 +02001027 if (len == 0)
1028 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001029
Christopher Faulet67957bd2017-09-27 11:00:59 +02001030 /* Check if the current record dname is valid. previous_dname
1031 * points either to queried dname or last CNAME target */
Olivier Houchardb17b8842020-04-01 18:30:27 +02001032 if (dns_query->type != DNS_RTYPE_SRV && dns_hostname_cmp(previous_dname, tmpname, len) != 0) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001033 if (i == 0) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001034 /* First record, means a mismatch issue between
1035 * queried dname and dname found in the first
1036 * record */
Willy Tarreau963f7012020-07-22 17:00:45 +02001037 goto invalid_resp;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001038 }
1039 else {
1040 /* If not the first record, this means we have a
Willy Tarreau963f7012020-07-22 17:00:45 +02001041 * CNAME resolution error.
1042 */
1043 cause = DNS_RESP_CNAME_ERROR;
1044 goto return_error;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001045 }
1046
Baptiste Assmann325137d2015-04-13 23:40:55 +02001047 }
1048
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001049 memcpy(dns_answer_record->name, tmpname, len);
1050 dns_answer_record->name[len] = 0;
Baptiste Assmann2359ff12015-08-07 11:24:05 +02001051
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001052 reader += offset;
Willy Tarreau963f7012020-07-22 17:00:45 +02001053 if (reader >= bufend)
1054 goto invalid_resp;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001055
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001056 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001057 if (reader + 2 > bufend)
1058 goto invalid_resp;
1059
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001060 dns_answer_record->type = reader[0] * 256 + reader[1];
1061 reader += 2;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001062
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001063 /* 2 bytes for class (2) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001064 if (reader + 2 > bufend)
1065 goto invalid_resp;
1066
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001067 dns_answer_record->class = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +02001068 reader += 2;
1069
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001070 /* 4 bytes for ttl (4) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001071 if (reader + 4 > bufend)
1072 goto invalid_resp;
1073
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001074 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
1075 + reader[2] * 256 + reader[3];
1076 reader += 4;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001077
Christopher Faulet67957bd2017-09-27 11:00:59 +02001078 /* Now reading data len */
Willy Tarreau963f7012020-07-22 17:00:45 +02001079 if (reader + 2 > bufend)
1080 goto invalid_resp;
1081
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001082 dns_answer_record->data_len = reader[0] * 256 + reader[1];
Baptiste Assmann325137d2015-04-13 23:40:55 +02001083
Christopher Faulet67957bd2017-09-27 11:00:59 +02001084 /* Move forward 2 bytes for data len */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001085 reader += 2;
1086
Willy Tarreau963f7012020-07-22 17:00:45 +02001087 if (reader + dns_answer_record->data_len > bufend)
1088 goto invalid_resp;
Remi Gacogneefbbdf72018-12-05 17:56:29 +01001089
Christopher Faulet67957bd2017-09-27 11:00:59 +02001090 /* Analyzing record content */
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001091 switch (dns_answer_record->type) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001092 case DNS_RTYPE_A:
1093 /* ipv4 is stored on 4 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +02001094 if (dns_answer_record->data_len != 4)
1095 goto invalid_resp;
1096
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001097 dns_answer_record->address.sa_family = AF_INET;
1098 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
1099 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001100 break;
1101
1102 case DNS_RTYPE_CNAME:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001103 /* Check if this is the last record and update the caller about the status:
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001104 * no IP could be found and last record was a CNAME. Could be triggered
1105 * by a wrong query type
1106 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001107 * + 1 because dns_answer_record_id starts at 0
1108 * while number of answers is an integer and
1109 * starts at 1.
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001110 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001111 if (i + 1 == dns_p->header.ancount) {
Willy Tarreau963f7012020-07-22 17:00:45 +02001112 cause = DNS_RESP_CNAME_ERROR;
1113 goto return_error;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001114 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001115
1116 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +01001117 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Willy Tarreau963f7012020-07-22 17:00:45 +02001118 if (len == 0)
1119 goto invalid_resp;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001120
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001121 memcpy(dns_answer_record->target, tmpname, len);
1122 dns_answer_record->target[len] = 0;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001123 previous_dname = dns_answer_record->target;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001124 break;
1125
Olivier Houchard8da5f982017-08-04 18:35:36 +02001126
1127 case DNS_RTYPE_SRV:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001128 /* Answer must contain :
Olivier Houchard8da5f982017-08-04 18:35:36 +02001129 * - 2 bytes for the priority
1130 * - 2 bytes for the weight
1131 * - 2 bytes for the port
1132 * - the target hostname
1133 */
Willy Tarreau963f7012020-07-22 17:00:45 +02001134 if (dns_answer_record->data_len <= 6)
1135 goto invalid_resp;
1136
Willy Tarreaud5370e12017-09-19 14:59:52 +02001137 dns_answer_record->priority = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001138 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +02001139 dns_answer_record->weight = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001140 reader += sizeof(uint16_t);
Willy Tarreaud5370e12017-09-19 14:59:52 +02001141 dns_answer_record->port = read_n16(reader);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001142 reader += sizeof(uint16_t);
1143 offset = 0;
Remi Gacogne58df5ae2018-12-05 17:52:54 +01001144 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
Willy Tarreau963f7012020-07-22 17:00:45 +02001145 if (len == 0)
1146 goto invalid_resp;
1147
Olivier Houchard8da5f982017-08-04 18:35:36 +02001148 dns_answer_record->data_len = len;
1149 memcpy(dns_answer_record->target, tmpname, len);
1150 dns_answer_record->target[len] = 0;
Baptiste Assmann155bc682021-01-15 17:01:24 +01001151 if (dns_answer_record->ar_item != NULL) {
1152 pool_free(dns_answer_item_pool, dns_answer_record->ar_item);
1153 dns_answer_record->ar_item = NULL;
1154 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02001155 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001156
Baptiste Assmann325137d2015-04-13 23:40:55 +02001157 case DNS_RTYPE_AAAA:
1158 /* ipv6 is stored on 16 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +02001159 if (dns_answer_record->data_len != 16)
1160 goto invalid_resp;
1161
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001162 dns_answer_record->address.sa_family = AF_INET6;
1163 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
1164 reader, dns_answer_record->data_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001165 break;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001166
Baptiste Assmann325137d2015-04-13 23:40:55 +02001167 } /* switch (record type) */
1168
Christopher Faulet67957bd2017-09-27 11:00:59 +02001169 /* Increment the counter for number of records saved into our
1170 * local response */
1171 nb_saved_records++;
Baptiste Assmann69fce672017-05-04 08:37:45 +02001172
Christopher Faulet67957bd2017-09-27 11:00:59 +02001173 /* Move forward dns_answer_record->data_len for analyzing next
1174 * record in the response */
1175 reader += ((dns_answer_record->type == DNS_RTYPE_SRV)
1176 ? offset
1177 : dns_answer_record->data_len);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001178
1179 /* Lookup to see if we already had this entry */
Olivier Houchard8da5f982017-08-04 18:35:36 +02001180 found = 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001181 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
1182 if (tmp_record->type != dns_answer_record->type)
1183 continue;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001184
1185 switch(tmp_record->type) {
1186 case DNS_RTYPE_A:
1187 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
1188 &((struct sockaddr_in *)&tmp_record->address)->sin_addr,
1189 sizeof(in_addr_t)))
1190 found = 1;
1191 break;
1192
1193 case DNS_RTYPE_AAAA:
1194 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
1195 &((struct sockaddr_in6 *)&tmp_record->address)->sin6_addr,
1196 sizeof(struct in6_addr)))
1197 found = 1;
1198 break;
1199
Olivier Houchard8da5f982017-08-04 18:35:36 +02001200 case DNS_RTYPE_SRV:
1201 if (dns_answer_record->data_len == tmp_record->data_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001202 !dns_hostname_cmp(dns_answer_record->target, tmp_record->target, dns_answer_record->data_len) &&
Olivier Houchard8da5f982017-08-04 18:35:36 +02001203 dns_answer_record->port == tmp_record->port) {
1204 tmp_record->weight = dns_answer_record->weight;
1205 found = 1;
1206 }
1207 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001208
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001209 default:
1210 break;
1211 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001212
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001213 if (found == 1)
1214 break;
1215 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001216
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001217 if (found == 1) {
Christopher Faulet8b6d5b02021-03-11 09:36:05 +01001218 tmp_record->last_seen = now_ms;
Willy Tarreaubafbe012017-11-24 17:34:44 +01001219 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001220 dns_answer_record = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001221 }
1222 else {
Christopher Faulet8b6d5b02021-03-11 09:36:05 +01001223 dns_answer_record->last_seen = now_ms;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001224 dns_answer_record->ar_item = NULL;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001225 LIST_ADDQ(&dns_p->answer_list, &dns_answer_record->list);
Willy Tarreau963f7012020-07-22 17:00:45 +02001226 dns_answer_record = NULL;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001227 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001228 } /* for i 0 to ancount */
1229
Christopher Faulet67957bd2017-09-27 11:00:59 +02001230 /* Save the number of records we really own */
Baptiste Assmann69fce672017-05-04 08:37:45 +02001231 dns_p->header.ancount = nb_saved_records;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001232
Baptiste Assmann37950c82020-02-19 01:08:51 +01001233 /* now parsing additional records for SRV queries only */
1234 if (dns_query->type != DNS_RTYPE_SRV)
1235 goto skip_parsing_additional_records;
Willy Tarreau963f7012020-07-22 17:00:45 +02001236
Jerome Magnin4002f8d2020-07-26 12:13:12 +02001237 /* if we find Authority records, just skip them */
1238 for (i = 0; i < dns_p->header.nscount; i++) {
1239 offset = 0;
1240 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE,
1241 &offset, 0);
1242 if (len == 0)
1243 continue;
1244
1245 if (reader + offset + 10 >= bufend)
1246 goto invalid_resp;
1247
1248 reader += offset;
1249 /* skip 2 bytes for class */
1250 reader += 2;
1251 /* skip 2 bytes for type */
1252 reader += 2;
1253 /* skip 4 bytes for ttl */
1254 reader += 4;
1255 /* read data len */
1256 len = reader[0] * 256 + reader[1];
1257 reader += 2;
1258
1259 if (reader + len >= bufend)
1260 goto invalid_resp;
1261
1262 reader += len;
1263 }
1264
Baptiste Assmann13a92322019-06-07 09:40:55 +02001265 nb_saved_records = 0;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001266 for (i = 0; i < dns_p->header.arcount; i++) {
1267 if (reader >= bufend)
Willy Tarreau963f7012020-07-22 17:00:45 +02001268 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001269
1270 dns_answer_record = pool_alloc(dns_answer_item_pool);
1271 if (dns_answer_record == NULL)
Willy Tarreau963f7012020-07-22 17:00:45 +02001272 goto invalid_resp;
Christopher Faulet8b6d5b02021-03-11 09:36:05 +01001273 dns_answer_record->last_seen = TICK_ETERNITY;
Emeric Brunca8e3552021-06-11 10:08:05 +02001274 LIST_INIT(&dns_answer_record->attached_servers);
Baptiste Assmann13a92322019-06-07 09:40:55 +02001275
1276 offset = 0;
1277 len = dns_read_name(resp, bufend, reader, tmpname, DNS_MAX_NAME_SIZE, &offset, 0);
1278
1279 if (len == 0) {
1280 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001281 dns_answer_record = NULL;
Baptiste Assmann37950c82020-02-19 01:08:51 +01001282 continue;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001283 }
1284
1285 memcpy(dns_answer_record->name, tmpname, len);
1286 dns_answer_record->name[len] = 0;
1287
1288 reader += offset;
Willy Tarreau963f7012020-07-22 17:00:45 +02001289 if (reader >= bufend)
1290 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001291
1292 /* 2 bytes for record type (A, AAAA, CNAME, etc...) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001293 if (reader + 2 > bufend)
1294 goto invalid_resp;
1295
Baptiste Assmann13a92322019-06-07 09:40:55 +02001296 dns_answer_record->type = reader[0] * 256 + reader[1];
1297 reader += 2;
1298
1299 /* 2 bytes for class (2) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001300 if (reader + 2 > bufend)
1301 goto invalid_resp;
1302
Baptiste Assmann13a92322019-06-07 09:40:55 +02001303 dns_answer_record->class = reader[0] * 256 + reader[1];
1304 reader += 2;
1305
1306 /* 4 bytes for ttl (4) */
Willy Tarreau963f7012020-07-22 17:00:45 +02001307 if (reader + 4 > bufend)
1308 goto invalid_resp;
1309
Baptiste Assmann13a92322019-06-07 09:40:55 +02001310 dns_answer_record->ttl = reader[0] * 16777216 + reader[1] * 65536
1311 + reader[2] * 256 + reader[3];
1312 reader += 4;
1313
1314 /* Now reading data len */
Willy Tarreau963f7012020-07-22 17:00:45 +02001315 if (reader + 2 > bufend)
1316 goto invalid_resp;
1317
Baptiste Assmann13a92322019-06-07 09:40:55 +02001318 dns_answer_record->data_len = reader[0] * 256 + reader[1];
1319
1320 /* Move forward 2 bytes for data len */
1321 reader += 2;
1322
Willy Tarreau963f7012020-07-22 17:00:45 +02001323 if (reader + dns_answer_record->data_len > bufend)
1324 goto invalid_resp;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001325
1326 /* Analyzing record content */
1327 switch (dns_answer_record->type) {
1328 case DNS_RTYPE_A:
1329 /* ipv4 is stored on 4 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +02001330 if (dns_answer_record->data_len != 4)
1331 goto invalid_resp;
1332
Baptiste Assmann13a92322019-06-07 09:40:55 +02001333 dns_answer_record->address.sa_family = AF_INET;
1334 memcpy(&(((struct sockaddr_in *)&dns_answer_record->address)->sin_addr),
1335 reader, dns_answer_record->data_len);
1336 break;
1337
1338 case DNS_RTYPE_AAAA:
1339 /* ipv6 is stored on 16 bytes */
Willy Tarreau963f7012020-07-22 17:00:45 +02001340 if (dns_answer_record->data_len != 16)
1341 goto invalid_resp;
1342
Baptiste Assmann13a92322019-06-07 09:40:55 +02001343 dns_answer_record->address.sa_family = AF_INET6;
1344 memcpy(&(((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr),
1345 reader, dns_answer_record->data_len);
1346 break;
1347
1348 default:
1349 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001350 dns_answer_record = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001351 continue;
1352
1353 } /* switch (record type) */
1354
1355 /* Increment the counter for number of records saved into our
1356 * local response */
1357 nb_saved_records++;
1358
1359 /* Move forward dns_answer_record->data_len for analyzing next
1360 * record in the response */
Christopher Fauletb8e92812021-03-10 15:19:57 +01001361 reader += dns_answer_record->data_len;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001362
1363 /* Lookup to see if we already had this entry */
1364 found = 0;
1365 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
Christopher Fauletb8e92812021-03-10 15:19:57 +01001366 struct dns_answer_item *ar_item;
1367
1368 if (tmp_record->type != DNS_RTYPE_SRV || !tmp_record->ar_item)
1369 continue;
1370
1371 ar_item = tmp_record->ar_item;
Christopher Faulet27c8d7a2021-03-12 16:42:45 +01001372 if (ar_item->type != dns_answer_record->type || ar_item->last_seen == now_ms ||
Christopher Fauletb8e92812021-03-10 15:19:57 +01001373 len != tmp_record->data_len ||
1374 dns_hostname_cmp(dns_answer_record->name, tmp_record->target, tmp_record->data_len))
Baptiste Assmann13a92322019-06-07 09:40:55 +02001375 continue;
1376
Christopher Fauletb8e92812021-03-10 15:19:57 +01001377 switch(ar_item->type) {
Baptiste Assmann13a92322019-06-07 09:40:55 +02001378 case DNS_RTYPE_A:
1379 if (!memcmp(&((struct sockaddr_in *)&dns_answer_record->address)->sin_addr,
Christopher Fauletb8e92812021-03-10 15:19:57 +01001380 &((struct sockaddr_in *)&ar_item->address)->sin_addr,
Baptiste Assmann13a92322019-06-07 09:40:55 +02001381 sizeof(in_addr_t)))
1382 found = 1;
1383 break;
1384
1385 case DNS_RTYPE_AAAA:
1386 if (!memcmp(&((struct sockaddr_in6 *)&dns_answer_record->address)->sin6_addr,
Christopher Fauletb8e92812021-03-10 15:19:57 +01001387 &((struct sockaddr_in6 *)&ar_item->address)->sin6_addr,
Baptiste Assmann13a92322019-06-07 09:40:55 +02001388 sizeof(struct in6_addr)))
1389 found = 1;
1390 break;
1391
1392 default:
1393 break;
1394 }
1395
1396 if (found == 1)
1397 break;
1398 }
1399
1400 if (found == 1) {
Christopher Faulet8b6d5b02021-03-11 09:36:05 +01001401 tmp_record->ar_item->last_seen = now_ms;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001402 pool_free(dns_answer_item_pool, dns_answer_record);
Willy Tarreau963f7012020-07-22 17:00:45 +02001403 dns_answer_record = NULL;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001404 }
1405 else {
Christopher Faulet8b6d5b02021-03-11 09:36:05 +01001406 dns_answer_record->last_seen = now_ms;
Baptiste Assmann13a92322019-06-07 09:40:55 +02001407 dns_answer_record->ar_item = NULL;
1408
1409 // looking for the SRV record in the response list linked to this additional record
1410 list_for_each_entry(tmp_record, &dns_p->answer_list, list) {
Christopher Faulet5a891752020-09-08 10:06:01 +02001411 if (tmp_record->type == DNS_RTYPE_SRV &&
Baptiste Assmann155bc682021-01-15 17:01:24 +01001412 tmp_record->ar_item == NULL &&
Christopher Faulet5a891752020-09-08 10:06:01 +02001413 !dns_hostname_cmp(tmp_record->target, dns_answer_record->name, tmp_record->data_len)) {
1414 /* Always use the received additional record to refresh info */
Christopher Faulet5a891752020-09-08 10:06:01 +02001415 tmp_record->ar_item = dns_answer_record;
Christopher Fauletd67f8bb2021-02-23 11:59:19 +01001416 dns_answer_record = NULL;
Christopher Faulet5a891752020-09-08 10:06:01 +02001417 break;
1418 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02001419 }
Christopher Fauletd67f8bb2021-02-23 11:59:19 +01001420 if (dns_answer_record) {
Christopher Faulet5a891752020-09-08 10:06:01 +02001421 pool_free(dns_answer_item_pool, dns_answer_record);
Christopher Fauletd67f8bb2021-02-23 11:59:19 +01001422 dns_answer_record = NULL;
1423 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02001424 }
1425 } /* for i 0 to arcount */
1426
Baptiste Assmann37950c82020-02-19 01:08:51 +01001427 skip_parsing_additional_records:
1428
Baptiste Assmann13a92322019-06-07 09:40:55 +02001429 /* Save the number of records we really own */
1430 dns_p->header.arcount = nb_saved_records;
1431
Christopher Faulet67957bd2017-09-27 11:00:59 +02001432 dns_check_dns_response(resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001433 return DNS_RESP_VALID;
Willy Tarreau963f7012020-07-22 17:00:45 +02001434
1435 invalid_resp:
1436 cause = DNS_RESP_INVALID;
1437
1438 return_error:
1439 pool_free(dns_answer_item_pool, dns_answer_record);
1440 return cause;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001441}
1442
Christopher Faulet67957bd2017-09-27 11:00:59 +02001443/* Searches dn_name resolution in resp.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001444 * If existing IP not found, return the first IP matching family_priority,
1445 * otherwise, first ip found
1446 * The following tasks are the responsibility of the caller:
Baptiste Assmann3cf7f982016-04-17 22:43:26 +02001447 * - <dns_p> contains an error free DNS response
Baptiste Assmann325137d2015-04-13 23:40:55 +02001448 * For both cases above, dns_validate_dns_response is required
1449 * returns one of the DNS_UPD_* code
1450 */
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02001451int dns_get_ip_from_response(struct dns_response_packet *dns_p,
Baptiste Assmann42746372017-05-03 12:12:02 +02001452 struct dns_options *dns_opts, void *currentip,
Thierry Fournierada34842016-02-17 21:25:09 +01001453 short currentip_sin_family,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02001454 void **newip, short *newip_sin_family,
Emeric Brunca8e3552021-06-11 10:08:05 +02001455 struct server *owner)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001456{
Emeric Brunca8e3552021-06-11 10:08:05 +02001457 struct dns_answer_item *record, *found_record = NULL;
Thierry Fournierada34842016-02-17 21:25:09 +01001458 int family_priority;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001459 int currentip_found;
Baptiste Assmann3cf7f982016-04-17 22:43:26 +02001460 unsigned char *newip4, *newip6;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001461 int currentip_sel;
1462 int j;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001463 int score, max_score;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001464 int allowed_duplicated_ip;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001465
Emeric Brunca8e3552021-06-11 10:08:05 +02001466 /* srv is linked to an alive ip record */
1467 if (owner && LIST_ADDED(&owner->ip_rec_item))
1468 return DNS_UPD_NO;
1469
Christopher Faulet67957bd2017-09-27 11:00:59 +02001470 family_priority = dns_opts->family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001471 allowed_duplicated_ip = dns_opts->accept_duplicate_ip;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001472 *newip = newip4 = newip6 = NULL;
1473 currentip_found = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001474 *newip_sin_family = AF_UNSPEC;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001475 max_score = -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001476
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001477 /* Select an IP regarding configuration preference.
Joseph Herlant42cf6392018-11-15 10:33:28 -08001478 * Top priority is the preferred network ip version,
1479 * second priority is the preferred network.
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001480 * the last priority is the currently used IP,
1481 *
1482 * For these three priorities, a score is calculated. The
1483 * weight are:
Joseph Herlant42cf6392018-11-15 10:33:28 -08001484 * 8 - preferred ip version.
1485 * 4 - preferred network.
Baptistefc725902016-12-26 23:21:08 +01001486 * 2 - if the ip in the record is not affected to any other server in the same backend (duplication)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001487 * 1 - current ip.
1488 * The result with the biggest score is returned.
1489 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001490
1491 list_for_each_entry(record, &dns_p->answer_list, list) {
1492 void *ip;
1493 unsigned char ip_type;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001494
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001495 if (record->type == DNS_RTYPE_A) {
1496 ip = &(((struct sockaddr_in *)&record->address)->sin_addr);
1497 ip_type = AF_INET;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001498 }
1499 else if (record->type == DNS_RTYPE_AAAA) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001500 ip_type = AF_INET6;
1501 ip = &(((struct sockaddr_in6 *)&record->address)->sin6_addr);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001502 }
1503 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001504 continue;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001505 score = 0;
1506
Joseph Herlant42cf6392018-11-15 10:33:28 -08001507 /* Check for preferred ip protocol. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001508 if (ip_type == family_priority)
Baptistefc725902016-12-26 23:21:08 +01001509 score += 8;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001510
Joseph Herlant42cf6392018-11-15 10:33:28 -08001511 /* Check for preferred network. */
Baptiste Assmann42746372017-05-03 12:12:02 +02001512 for (j = 0; j < dns_opts->pref_net_nb; j++) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001513
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001514 /* Compare only the same addresses class. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001515 if (dns_opts->pref_net[j].family != ip_type)
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001516 continue;
1517
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001518 if ((ip_type == AF_INET &&
1519 in_net_ipv4(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001520 &dns_opts->pref_net[j].mask.in4,
1521 &dns_opts->pref_net[j].addr.in4)) ||
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001522 (ip_type == AF_INET6 &&
1523 in_net_ipv6(ip,
Baptiste Assmann42746372017-05-03 12:12:02 +02001524 &dns_opts->pref_net[j].mask.in6,
1525 &dns_opts->pref_net[j].addr.in6))) {
Baptistefc725902016-12-26 23:21:08 +01001526 score += 4;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001527 break;
1528 }
1529 }
1530
Christopher Faulet67957bd2017-09-27 11:00:59 +02001531 /* Check if the IP found in the record is already affected to a
Baptiste Assmann84221b42018-06-22 13:03:50 +02001532 * member of a group. If not, the score should be incremented
Christopher Faulet67957bd2017-09-27 11:00:59 +02001533 * by 2. */
Emeric Brunca8e3552021-06-11 10:08:05 +02001534 if (owner) {
1535 struct server *srv;
1536 int already_used = 0;
1537
1538 list_for_each_entry(srv, &record->attached_servers, ip_rec_item) {
1539 if (srv == owner)
1540 continue;
1541 if (srv->proxy == owner->proxy) {
1542 already_used = 1;
1543 break;
1544 }
1545 }
1546 if (already_used) {
1547 if (!allowed_duplicated_ip) {
1548 continue;
1549 }
1550 }
1551 else {
1552 score += 2;
1553 }
Baptiste Assmann84221b42018-06-22 13:03:50 +02001554 } else {
1555 score += 2;
1556 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001557
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001558 /* Check for current ip matching. */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001559 if (ip_type == currentip_sin_family &&
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001560 ((currentip_sin_family == AF_INET &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001561 !memcmp(ip, currentip, 4)) ||
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001562 (currentip_sin_family == AF_INET6 &&
Christopher Faulet67957bd2017-09-27 11:00:59 +02001563 !memcmp(ip, currentip, 16)))) {
1564 score++;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001565 currentip_sel = 1;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001566 }
1567 else
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001568 currentip_sel = 0;
1569
1570 /* Keep the address if the score is better than the previous
Christopher Faulet67957bd2017-09-27 11:00:59 +02001571 * score. The maximum score is 15, if this value is reached, we
1572 * break the parsing. Implicitly, this score is reached the ip
1573 * selected is the current ip. */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001574 if (score > max_score) {
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001575 if (ip_type == AF_INET)
1576 newip4 = ip;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001577 else
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001578 newip6 = ip;
Emeric Brunca8e3552021-06-11 10:08:05 +02001579 found_record = record;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001580 currentip_found = currentip_sel;
Emeric Brunca8e3552021-06-11 10:08:05 +02001581 if (score == 15) {
1582 /* this was not registered on the current record but it matches
1583 * let's fix it (it may comes from state file */
1584 if (owner)
1585 LIST_ADDQ(&found_record->attached_servers, &owner->ip_rec_item);
1586 return DNS_UPD_NO;
1587 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001588 max_score = score;
1589 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001590 } /* list for each record entries */
Thierry Fournierac88cfe2016-02-17 22:05:30 +01001591
Christopher Faulet67957bd2017-09-27 11:00:59 +02001592 /* No IP found in the response */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001593 if (!newip4 && !newip6)
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001594 return DNS_UPD_NO_IP_FOUND;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02001595
Christopher Faulet67957bd2017-09-27 11:00:59 +02001596 /* Case when the caller looks first for an IPv4 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001597 if (family_priority == AF_INET) {
1598 if (newip4) {
1599 *newip = newip4;
1600 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001601 }
1602 else if (newip6) {
1603 *newip = newip6;
1604 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001605 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001606 if (!currentip_found)
1607 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001608 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001609 /* Case when the caller looks first for an IPv6 address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001610 else if (family_priority == AF_INET6) {
1611 if (newip6) {
1612 *newip = newip6;
1613 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001614 }
1615 else if (newip4) {
1616 *newip = newip4;
1617 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001618 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001619 if (!currentip_found)
1620 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001621 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001622 /* Case when the caller have no preference (we prefer IPv6) */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001623 else if (family_priority == AF_UNSPEC) {
1624 if (newip6) {
1625 *newip = newip6;
1626 *newip_sin_family = AF_INET6;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001627 }
1628 else if (newip4) {
1629 *newip = newip4;
1630 *newip_sin_family = AF_INET;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001631 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001632 if (!currentip_found)
1633 goto not_found;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001634 }
1635
Christopher Faulet67957bd2017-09-27 11:00:59 +02001636 /* No reason why we should change the server's IP address */
Baptiste Assmann325137d2015-04-13 23:40:55 +02001637 return DNS_UPD_NO;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001638
Christopher Faulet67957bd2017-09-27 11:00:59 +02001639 not_found:
Emeric Brunca8e3552021-06-11 10:08:05 +02001640
1641 /* the ip of this record was chosen for the server */
1642 if (owner && found_record) {
1643 LIST_ADDQ(&found_record->attached_servers, &owner->ip_rec_item);
1644 }
1645
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001646 list_for_each_entry(record, &dns_p->answer_list, list) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02001647 /* Move the first record to the end of the list, for internal
1648 * round robin */
1649 LIST_DEL(&record->list);
1650 LIST_ADDQ(&dns_p->answer_list, &record->list);
1651 break;
Baptiste Assmann8ea0bcc2017-05-04 08:24:11 +02001652 }
1653 return DNS_UPD_SRVIP_NOT_FOUND;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001654}
1655
Christopher Faulet67957bd2017-09-27 11:00:59 +02001656/* Turns a domain name label into a string.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001657 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001658 * <dn> must be a null-terminated string. <dn_len> must include the terminating
1659 * null byte. <str> must be allocated and its size must be passed in <str_len>.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001660 *
Christopher Faulet67957bd2017-09-27 11:00:59 +02001661 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1662 * <str> (including the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001663 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001664int dns_dn_label_to_str(const char *dn, int dn_len, char *str, int str_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001665{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001666 char *ptr;
1667 int i, sz;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001668
Christopher Faulet67957bd2017-09-27 11:00:59 +02001669 if (str_len < dn_len - 1)
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001670 return -1;
1671
Christopher Faulet67957bd2017-09-27 11:00:59 +02001672 ptr = str;
1673 for (i = 0; i < dn_len-1; ++i) {
1674 sz = dn[i];
1675 if (i)
1676 *ptr++ = '.';
1677 memcpy(ptr, dn+i+1, sz);
1678 ptr += sz;
1679 i += sz;
Olivier Houchard8da5f982017-08-04 18:35:36 +02001680 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001681 *ptr++ = '\0';
1682 return (ptr - str);
Olivier Houchard8da5f982017-08-04 18:35:36 +02001683}
1684
Christopher Faulet67957bd2017-09-27 11:00:59 +02001685/* Turns a string into domain name label: www.haproxy.org into 3www7haproxy3org
1686 *
1687 * <str> must be a null-terminated string. <str_len> must include the
1688 * terminating null byte. <dn> buffer must be allocated and its size must be
1689 * passed in <dn_len>.
1690 *
1691 * In case of error, -1 is returned, otherwise, the number of bytes copied in
1692 * <dn> (excluding the terminating null byte).
Baptiste Assmann325137d2015-04-13 23:40:55 +02001693 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001694int dns_str_to_dn_label(const char *str, int str_len, char *dn, int dn_len)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001695{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001696 int i, offset;
1697
Christopher Faulet67957bd2017-09-27 11:00:59 +02001698 if (dn_len < str_len + 1)
1699 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001700
Christopher Faulet67957bd2017-09-27 11:00:59 +02001701 /* First byte of dn will be used to store the length of the first
1702 * label */
1703 offset = 0;
1704 for (i = 0; i < str_len; ++i) {
1705 if (str[i] == '.') {
1706 /* 2 or more consecutive dots is invalid */
1707 if (i == offset)
1708 return -1;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001709
Lukas Tribus81725b82020-02-27 15:47:24 +01001710 /* ignore trailing dot */
1711 if (i + 2 == str_len) {
1712 i++;
1713 break;
1714 }
1715
Christopher Faulet67957bd2017-09-27 11:00:59 +02001716 dn[offset] = (i - offset);
1717 offset = i+1;
1718 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001719 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001720 dn[i+1] = str[i];
Baptiste Assmann325137d2015-04-13 23:40:55 +02001721 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001722 dn[offset] = (i - offset - 1);
1723 dn[i] = '\0';
1724 return i;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001725}
1726
Christopher Faulet67957bd2017-09-27 11:00:59 +02001727/* Validates host name:
Baptiste Assmann325137d2015-04-13 23:40:55 +02001728 * - total size
1729 * - each label size individually
1730 * returns:
1731 * 0 in case of error. If <err> is not NULL, an error message is stored there.
1732 * 1 when no error. <err> is left unaffected.
1733 */
1734int dns_hostname_validation(const char *string, char **err)
1735{
Baptiste Assmann325137d2015-04-13 23:40:55 +02001736 int i;
1737
1738 if (strlen(string) > DNS_MAX_NAME_SIZE) {
1739 if (err)
1740 *err = DNS_TOO_LONG_FQDN;
1741 return 0;
1742 }
1743
William Dauchyaecd5dc2020-01-26 19:52:34 +01001744 while (*string) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001745 i = 0;
William Dauchyaecd5dc2020-01-26 19:52:34 +01001746 while (*string && *string != '.' && i < DNS_MAX_LABEL_SIZE) {
1747 if (!(*string == '-' || *string == '_' ||
1748 (*string >= 'a' && *string <= 'z') ||
1749 (*string >= 'A' && *string <= 'Z') ||
1750 (*string >= '0' && *string <= '9'))) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001751 if (err)
1752 *err = DNS_INVALID_CHARACTER;
1753 return 0;
1754 }
William Dauchyaecd5dc2020-01-26 19:52:34 +01001755 i++;
1756 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001757 }
1758
William Dauchyaecd5dc2020-01-26 19:52:34 +01001759 if (!(*string))
1760 break;
1761
1762 if (*string != '.' && i >= DNS_MAX_LABEL_SIZE) {
Baptiste Assmann325137d2015-04-13 23:40:55 +02001763 if (err)
1764 *err = DNS_LABEL_TOO_LONG;
1765 return 0;
1766 }
1767
William Dauchyaecd5dc2020-01-26 19:52:34 +01001768 string++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001769 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001770 return 1;
1771}
1772
Christopher Faulet67957bd2017-09-27 11:00:59 +02001773/* Picks up an available resolution from the different resolution list
1774 * associated to a resolvers section, in this order:
1775 * 1. check in resolutions.curr for the same hostname and query_type
1776 * 2. check in resolutions.wait for the same hostname and query_type
1777 * 3. Get a new resolution from resolution pool
1778 *
1779 * Returns an available resolution, NULL if none found.
Baptiste Assmann325137d2015-04-13 23:40:55 +02001780 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001781static struct dns_resolution *dns_pick_resolution(struct dns_resolvers *resolvers,
1782 char **hostname_dn, int hostname_dn_len,
1783 int query_type)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001784{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001785 struct dns_resolution *res;
1786
1787 if (!*hostname_dn)
1788 goto from_pool;
1789
1790 /* Search for same hostname and query type in resolutions.curr */
1791 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
1792 if (!res->hostname_dn)
1793 continue;
1794 if ((query_type == res->prefered_query_type) &&
1795 hostname_dn_len == res->hostname_dn_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001796 !dns_hostname_cmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +02001797 return res;
1798 }
1799
1800 /* Search for same hostname and query type in resolutions.wait */
1801 list_for_each_entry(res, &resolvers->resolutions.wait, list) {
1802 if (!res->hostname_dn)
1803 continue;
1804 if ((query_type == res->prefered_query_type) &&
1805 hostname_dn_len == res->hostname_dn_len &&
Olivier Houchardb17b8842020-04-01 18:30:27 +02001806 !dns_hostname_cmp(*hostname_dn, res->hostname_dn, hostname_dn_len))
Christopher Faulet67957bd2017-09-27 11:00:59 +02001807 return res;
1808 }
1809
1810 from_pool:
1811 /* No resolution could be found, so let's allocate a new one */
Willy Tarreaubafbe012017-11-24 17:34:44 +01001812 res = pool_alloc(dns_resolution_pool);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001813 if (res) {
1814 memset(res, 0, sizeof(*res));
1815 res->resolvers = resolvers;
1816 res->uuid = resolution_uuid;
1817 res->status = RSLV_STATUS_NONE;
1818 res->step = RSLV_STEP_NONE;
1819 res->last_valid = now_ms;
1820
1821 LIST_INIT(&res->requesters);
1822 LIST_INIT(&res->response.answer_list);
1823
1824 res->prefered_query_type = query_type;
1825 res->query_type = query_type;
1826 res->hostname_dn = *hostname_dn;
1827 res->hostname_dn_len = hostname_dn_len;
1828
1829 ++resolution_uuid;
1830
1831 /* Move the resolution to the resolvers wait queue */
1832 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
1833 }
1834 return res;
1835}
1836
Christopher Faulet656b4272021-03-10 14:40:39 +01001837void dns_purge_resolution_answer_records(struct dns_resolution *resolution)
1838{
1839 struct dns_answer_item *item, *itemback;
1840
1841 list_for_each_entry_safe(item, itemback, &resolution->response.answer_list, list) {
1842 LIST_DEL(&item->list);
1843 pool_free(dns_answer_item_pool, item->ar_item);
1844 pool_free(dns_answer_item_pool, item);
1845 }
1846}
1847
Christopher Faulet67957bd2017-09-27 11:00:59 +02001848/* Releases a resolution from its requester(s) and move it back to the pool */
1849static void dns_free_resolution(struct dns_resolution *resolution)
1850{
1851 struct dns_requester *req, *reqback;
1852
1853 /* clean up configuration */
1854 dns_reset_resolution(resolution);
1855 resolution->hostname_dn = NULL;
1856 resolution->hostname_dn_len = 0;
1857
1858 list_for_each_entry_safe(req, reqback, &resolution->requesters, list) {
1859 LIST_DEL(&req->list);
1860 req->resolution = NULL;
1861 }
Christopher Faulet656b4272021-03-10 14:40:39 +01001862 dns_purge_resolution_answer_records(resolution);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001863 LIST_DEL(&resolution->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001864 pool_free(dns_resolution_pool, resolution);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001865}
1866
1867/* Links a requester (a server or a dns_srvrq) with a resolution. It returns 0
1868 * on success, -1 otherwise.
1869 */
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001870int dns_link_resolution(void *requester, int requester_type, int requester_locked)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001871{
1872 struct dns_resolution *res = NULL;
1873 struct dns_requester *req;
1874 struct dns_resolvers *resolvers;
1875 struct server *srv = NULL;
1876 struct dns_srvrq *srvrq = NULL;
Baptiste Assmann333939c2019-01-21 08:34:50 +01001877 struct stream *stream = NULL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001878 char **hostname_dn;
1879 int hostname_dn_len, query_type;
1880
1881 switch (requester_type) {
1882 case OBJ_TYPE_SERVER:
1883 srv = (struct server *)requester;
1884 hostname_dn = &srv->hostname_dn;
1885 hostname_dn_len = srv->hostname_dn_len;
1886 resolvers = srv->resolvers;
1887 query_type = ((srv->dns_opts.family_prio == AF_INET)
1888 ? DNS_RTYPE_A
1889 : DNS_RTYPE_AAAA);
1890 break;
1891
1892 case OBJ_TYPE_SRVRQ:
1893 srvrq = (struct dns_srvrq *)requester;
1894 hostname_dn = &srvrq->hostname_dn;
1895 hostname_dn_len = srvrq->hostname_dn_len;
1896 resolvers = srvrq->resolvers;
1897 query_type = DNS_RTYPE_SRV;
1898 break;
1899
Baptiste Assmann333939c2019-01-21 08:34:50 +01001900 case OBJ_TYPE_STREAM:
1901 stream = (struct stream *)requester;
1902 hostname_dn = &stream->dns_ctx.hostname_dn;
1903 hostname_dn_len = stream->dns_ctx.hostname_dn_len;
1904 resolvers = stream->dns_ctx.parent->arg.dns.resolvers;
Christopher Fauleta4168432020-01-24 18:08:42 +01001905 query_type = ((stream->dns_ctx.parent->arg.dns.dns_opts->family_prio == AF_INET)
Baptiste Assmann333939c2019-01-21 08:34:50 +01001906 ? DNS_RTYPE_A
1907 : DNS_RTYPE_AAAA);
1908 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001909 default:
1910 goto err;
1911 }
1912
1913 /* Get a resolution from the resolvers' wait queue or pool */
1914 if ((res = dns_pick_resolution(resolvers, hostname_dn, hostname_dn_len, query_type)) == NULL)
1915 goto err;
1916
1917 if (srv) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001918 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001919 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001920 if (srv->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001921 if ((req = pool_alloc(dns_requester_pool)) == NULL) {
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001922 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001923 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001924 goto err;
Willy Tarreau5ec84572017-11-05 10:35:57 +01001925 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001926 req->owner = &srv->obj_type;
1927 srv->dns_requester = req;
1928 }
1929 else
1930 req = srv->dns_requester;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01001931 if (!requester_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001932 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001933
1934 req->requester_cb = snr_resolution_cb;
1935 req->requester_error_cb = snr_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001936 }
1937 else if (srvrq) {
1938 if (srvrq->dns_requester == NULL) {
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01001939 if ((req = pool_alloc(dns_requester_pool)) == NULL)
Christopher Faulet67957bd2017-09-27 11:00:59 +02001940 goto err;
1941 req->owner = &srvrq->obj_type;
1942 srvrq->dns_requester = req;
1943 }
1944 else
1945 req = srvrq->dns_requester;
Baptiste Assmanndb4c8522018-01-30 08:08:04 +01001946
1947 req->requester_cb = snr_resolution_cb;
Baptiste Assmann826060e2020-11-19 22:38:33 +01001948 req->requester_error_cb = srvrq_resolution_error_cb;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001949 }
Baptiste Assmann333939c2019-01-21 08:34:50 +01001950 else if (stream) {
1951 if (stream->dns_ctx.dns_requester == NULL) {
1952 if ((req = pool_alloc(dns_requester_pool)) == NULL)
1953 goto err;
1954 req->owner = &stream->obj_type;
1955 stream->dns_ctx.dns_requester = req;
1956 }
1957 else
1958 req = stream->dns_ctx.dns_requester;
1959
1960 req->requester_cb = act_resolution_cb;
1961 req->requester_error_cb = act_resolution_error_cb;
1962 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001963 else
1964 goto err;
1965
1966 req->resolution = res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001967
1968 LIST_ADDQ(&res->requesters, &req->list);
1969 return 0;
1970
1971 err:
1972 if (res && LIST_ISEMPTY(&res->requesters))
1973 dns_free_resolution(res);
1974 return -1;
1975}
1976
Emeric Brun32131d42021-06-11 10:48:45 +02001977/* This function removes all server/srvrq references on answer items
1978 * if <safe> is set to 1, in case of srvrq, sub server resquesters unlink
1979 * is called using safe == 1 to make it usable into callbacks
1980 */
1981void dns_detach_from_resolution_answer_items(struct dns_resolution *res, struct dns_requester *req, int safe)
1982{
1983 struct dns_answer_item *item, *itemback;
1984 struct server *srv, *srvback;
1985 struct dns_srvrq *srvrq;
1986
1987 if ((srv = objt_server(req->owner)) != NULL) {
1988 LIST_DEL_INIT(&srv->ip_rec_item);
1989 }
1990 else if ((srvrq = objt_dns_srvrq(req->owner)) != NULL) {
1991 list_for_each_entry_safe(item, itemback, &res->response.answer_list, list) {
1992 if (item->type == DNS_RTYPE_SRV) {
1993 list_for_each_entry_safe(srv, srvback, &item->attached_servers, srv_rec_item) {
1994 if (srv->srvrq == srvrq) {
1995 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
1996 dns_unlink_resolution(srv->dns_requester, safe);
1997 srvrq_update_srv_status(srv, 1);
1998 free(srv->hostname);
1999 free(srv->hostname_dn);
2000 srv->hostname = NULL;
2001 srv->hostname_dn = NULL;
2002 srv->hostname_dn_len = 0;
2003 memset(&srv->addr, 0, sizeof(srv->addr));
2004 srv->svc_port = 0;
2005 srv->flags |= SRV_F_NO_RESOLUTION;
2006 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2007 LIST_DEL(&srv->srv_rec_item);
2008 LIST_ADDQ(&srvrq->attached_servers, &srv->srv_rec_item);
2009 }
2010 }
2011 }
2012 }
2013 }
2014}
2015
2016
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002017/* Removes a requester from a DNS resolution. It takes takes care of all the
Christopher Faulet67957bd2017-09-27 11:00:59 +02002018 * consequences. It also cleans up some parameters from the requester.
Christopher Faulet119ec522021-03-11 18:09:53 +01002019 * if <safe> is set to 1, the corresponding resolution is not released.
Christopher Faulet67957bd2017-09-27 11:00:59 +02002020 */
Christopher Faulet119ec522021-03-11 18:09:53 +01002021void dns_unlink_resolution(struct dns_requester *requester, int safe)
Christopher Faulet67957bd2017-09-27 11:00:59 +02002022{
2023 struct dns_resolution *res;
2024 struct dns_requester *req;
2025
2026 /* Nothing to do */
2027 if (!requester || !requester->resolution)
2028 return;
2029 res = requester->resolution;
2030
Emeric Brunca8e3552021-06-11 10:08:05 +02002031 /* remove ref from the resolution answer item list to the requester */
Emeric Brun32131d42021-06-11 10:48:45 +02002032 dns_detach_from_resolution_answer_items(res, requester, safe);
Emeric Brunca8e3552021-06-11 10:08:05 +02002033
Christopher Faulet67957bd2017-09-27 11:00:59 +02002034 /* Clean up the requester */
2035 LIST_DEL(&requester->list);
2036 requester->resolution = NULL;
2037
2038 /* We need to find another requester linked on this resolution */
2039 if (!LIST_ISEMPTY(&res->requesters))
2040 req = LIST_NEXT(&res->requesters, struct dns_requester *, list);
2041 else {
Christopher Faulet119ec522021-03-11 18:09:53 +01002042 if (safe) {
2043 /* Don't release it yet. */
2044 dns_reset_resolution(res);
2045 res->hostname_dn = NULL;
2046 res->hostname_dn_len = 0;
2047 dns_purge_resolution_answer_records(res);
2048 return;
2049 }
2050
Christopher Faulet67957bd2017-09-27 11:00:59 +02002051 dns_free_resolution(res);
2052 return;
2053 }
2054
2055 /* Move hostname_dn related pointers to the next requester */
2056 switch (obj_type(req->owner)) {
2057 case OBJ_TYPE_SERVER:
Willy Tarreau433c16f2018-09-20 11:15:27 +02002058 res->hostname_dn = __objt_server(req->owner)->hostname_dn;
2059 res->hostname_dn_len = __objt_server(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002060 break;
2061 case OBJ_TYPE_SRVRQ:
Willy Tarreau433c16f2018-09-20 11:15:27 +02002062 res->hostname_dn = __objt_dns_srvrq(req->owner)->hostname_dn;
2063 res->hostname_dn_len = __objt_dns_srvrq(req->owner)->hostname_dn_len;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002064 break;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002065 case OBJ_TYPE_STREAM:
2066 res->hostname_dn = __objt_stream(req->owner)->dns_ctx.hostname_dn;
2067 res->hostname_dn_len = __objt_stream(req->owner)->dns_ctx.hostname_dn_len;
2068 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002069 default:
2070 res->hostname_dn = NULL;
2071 res->hostname_dn_len = 0;
2072 break;
2073 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02002074}
2075
Christopher Faulet67957bd2017-09-27 11:00:59 +02002076/* Called when a network IO is generated on a name server socket for an incoming
2077 * packet. It performs the following actions:
2078 * - check if the packet requires processing (not outdated resolution)
2079 * - ensure the DNS packet received is valid and call requester's callback
2080 * - call requester's error callback if invalid response
2081 * - check the dn_name in the packet against the one sent
2082 */
2083static void dns_resolve_recv(struct dgram_conn *dgram)
2084{
2085 struct dns_nameserver *ns, *tmpns;
2086 struct dns_resolvers *resolvers;
2087 struct dns_resolution *res;
2088 struct dns_query_item *query;
2089 unsigned char buf[DNS_MAX_UDP_MESSAGE + 1];
2090 unsigned char *bufend;
2091 int fd, buflen, dns_resp;
2092 int max_answer_records;
2093 unsigned short query_id;
2094 struct eb32_node *eb;
2095 struct dns_requester *req;
Emeric Bruna8b60f22021-06-10 15:25:25 +02002096 int keep_answer_items;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002097
2098 fd = dgram->t.sock.fd;
2099
2100 /* check if ready for reading */
2101 if (!fd_recv_ready(fd))
2102 return;
2103
2104 /* no need to go further if we can't retrieve the nameserver */
Willy Tarreau1c759952019-12-10 18:38:09 +01002105 if ((ns = dgram->owner) == NULL) {
2106 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
2107 fd_stop_recv(fd);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002108 return;
Willy Tarreau1c759952019-12-10 18:38:09 +01002109 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002110
2111 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002112 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002113
2114 /* process all pending input messages */
Willy Tarreau1c759952019-12-10 18:38:09 +01002115 while (fd_recv_ready(fd)) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002116 /* read message received */
2117 memset(buf, '\0', resolvers->accepted_payload_size + 1);
2118 if ((buflen = recv(fd, (char*)buf , resolvers->accepted_payload_size + 1, 0)) < 0) {
Willy Tarreau1c759952019-12-10 18:38:09 +01002119 /* FIXME : for now we consider EAGAIN only, but at
2120 * least we purge sticky errors that would cause us to
2121 * be called in loops.
2122 */
2123 _HA_ATOMIC_AND(&fdtab[fd].ev, ~(FD_POLL_HUP|FD_POLL_ERR));
Christopher Faulet67957bd2017-09-27 11:00:59 +02002124 fd_cant_recv(fd);
2125 break;
2126 }
2127
2128 /* message too big */
2129 if (buflen > resolvers->accepted_payload_size) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002130 ns->counters->too_big++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002131 continue;
2132 }
2133
2134 /* initializing variables */
2135 bufend = buf + buflen; /* pointer to mark the end of the buffer */
2136
2137 /* read the query id from the packet (16 bits) */
2138 if (buf + 2 > bufend) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002139 ns->counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002140 continue;
2141 }
2142 query_id = dns_response_get_query_id(buf);
2143
2144 /* search the query_id in the pending resolution tree */
2145 eb = eb32_lookup(&resolvers->query_ids, query_id);
2146 if (eb == NULL) {
2147 /* unknown query id means an outdated response and can be safely ignored */
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002148 ns->counters->outdated++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002149 continue;
2150 }
2151
William Dauchybe8a3872019-11-27 23:32:41 +01002152 /* known query id means a resolution in progress */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002153 res = eb32_entry(eb, struct dns_resolution, qid);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002154 /* number of responses received */
2155 res->nb_responses++;
Baptiste Assmann325137d2015-04-13 23:40:55 +02002156
Christopher Faulet67957bd2017-09-27 11:00:59 +02002157 max_answer_records = (resolvers->accepted_payload_size - DNS_HEADER_SIZE) / DNS_MIN_RECORD_SIZE;
2158 dns_resp = dns_validate_dns_response(buf, bufend, res, max_answer_records);
Baptiste Assmann325137d2015-04-13 23:40:55 +02002159
Christopher Faulet67957bd2017-09-27 11:00:59 +02002160 switch (dns_resp) {
2161 case DNS_RESP_VALID:
2162 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002163
Christopher Faulet67957bd2017-09-27 11:00:59 +02002164 case DNS_RESP_INVALID:
2165 case DNS_RESP_QUERY_COUNT_ERROR:
2166 case DNS_RESP_WRONG_NAME:
2167 res->status = RSLV_STATUS_INVALID;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002168 ns->counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002169 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02002170
Christopher Faulet67957bd2017-09-27 11:00:59 +02002171 case DNS_RESP_NX_DOMAIN:
2172 res->status = RSLV_STATUS_NX;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002173 ns->counters->nx++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002174 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002175
Christopher Faulet67957bd2017-09-27 11:00:59 +02002176 case DNS_RESP_REFUSED:
2177 res->status = RSLV_STATUS_REFUSED;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002178 ns->counters->refused++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002179 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02002180
Christopher Faulet67957bd2017-09-27 11:00:59 +02002181 case DNS_RESP_ANCOUNT_ZERO:
2182 res->status = RSLV_STATUS_OTHER;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002183 ns->counters->any_err++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002184 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002185
Christopher Faulet67957bd2017-09-27 11:00:59 +02002186 case DNS_RESP_CNAME_ERROR:
2187 res->status = RSLV_STATUS_OTHER;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002188 ns->counters->cname_error++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002189 break;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002190
Christopher Faulet67957bd2017-09-27 11:00:59 +02002191 case DNS_RESP_TRUNCATED:
2192 res->status = RSLV_STATUS_OTHER;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002193 ns->counters->truncated++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002194 break;
Baptiste Assmanne70bc052017-08-21 16:51:09 +02002195
Christopher Faulet67957bd2017-09-27 11:00:59 +02002196 case DNS_RESP_NO_EXPECTED_RECORD:
2197 case DNS_RESP_ERROR:
2198 case DNS_RESP_INTERNAL:
2199 res->status = RSLV_STATUS_OTHER;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002200 ns->counters->other++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002201 break;
Baptiste Assmann325137d2015-04-13 23:40:55 +02002202 }
2203
Christopher Faulet67957bd2017-09-27 11:00:59 +02002204 /* Wait all nameservers response to handle errors */
2205 if (dns_resp != DNS_RESP_VALID && res->nb_responses < resolvers->nb_nameservers)
2206 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002207
Christopher Faulet67957bd2017-09-27 11:00:59 +02002208 /* Process error codes */
2209 if (dns_resp != DNS_RESP_VALID) {
2210 if (res->prefered_query_type != res->query_type) {
2211 /* The fallback on the query type was already performed,
2212 * so check the try counter. If it falls to 0, we can
2213 * report an error. Else, wait the next attempt. */
2214 if (!res->try)
2215 goto report_res_error;
2216 }
2217 else {
2218 /* Fallback from A to AAAA or the opposite and re-send
2219 * the resolution immediately. try counter is not
2220 * decremented. */
2221 if (res->prefered_query_type == DNS_RTYPE_A) {
2222 res->query_type = DNS_RTYPE_AAAA;
2223 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002224 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002225 else if (res->prefered_query_type == DNS_RTYPE_AAAA) {
2226 res->query_type = DNS_RTYPE_A;
2227 dns_send_query(res);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002228 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002229 }
2230 continue;
2231 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002232
Christopher Faulet67957bd2017-09-27 11:00:59 +02002233 /* Now let's check the query's dname corresponds to the one we
2234 * sent. We can check only the first query of the list. We send
2235 * one query at a time so we get one query in the response */
2236 query = LIST_NEXT(&res->response.query_list, struct dns_query_item *, list);
Olivier Houchardb17b8842020-04-01 18:30:27 +02002237 if (query && dns_hostname_cmp(query->name, res->hostname_dn, res->hostname_dn_len) != 0) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002238 dns_resp = DNS_RESP_WRONG_NAME;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002239 ns->counters->other++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002240 goto report_res_error;
2241 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002242
Christopher Faulet67957bd2017-09-27 11:00:59 +02002243 /* So the resolution succeeded */
2244 res->status = RSLV_STATUS_VALID;
2245 res->last_valid = now_ms;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002246 ns->counters->valid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002247 goto report_res_success;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002248
Christopher Faulet67957bd2017-09-27 11:00:59 +02002249 report_res_error:
Emeric Bruna8b60f22021-06-10 15:25:25 +02002250 keep_answer_items = 0;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002251 list_for_each_entry(req, &res->requesters, list)
Emeric Bruna8b60f22021-06-10 15:25:25 +02002252 keep_answer_items |= req->requester_error_cb(req, dns_resp);
2253 if (!keep_answer_items)
2254 dns_purge_resolution_answer_records(res);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002255 dns_reset_resolution(res);
2256 LIST_DEL(&res->list);
2257 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
2258 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002259
Christopher Faulet67957bd2017-09-27 11:00:59 +02002260 report_res_success:
2261 /* Only the 1rst requester s managed by the server, others are
2262 * from the cache */
2263 tmpns = ns;
2264 list_for_each_entry(req, &res->requesters, list) {
Olivier Houchard28381072017-11-06 17:30:28 +01002265 struct server *s = objt_server(req->owner);
2266
2267 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002268 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002269 req->requester_cb(req, tmpns);
Olivier Houchard28381072017-11-06 17:30:28 +01002270 if (s)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002271 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002272 tmpns = NULL;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002273 }
Baptiste Assmann42746372017-05-03 12:12:02 +02002274
Christopher Faulet67957bd2017-09-27 11:00:59 +02002275 dns_reset_resolution(res);
2276 LIST_DEL(&res->list);
2277 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
2278 continue;
Baptiste Assmann325137d2015-04-13 23:40:55 +02002279 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02002280 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002281 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +02002282}
William Lallemand69e96442016-11-19 00:58:54 +01002283
Christopher Faulet67957bd2017-09-27 11:00:59 +02002284/* Called when a resolvers network socket is ready to send data */
2285static void dns_resolve_send(struct dgram_conn *dgram)
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002286{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002287 struct dns_resolvers *resolvers;
2288 struct dns_nameserver *ns;
2289 struct dns_resolution *res;
2290 int fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002291
Christopher Faulet67957bd2017-09-27 11:00:59 +02002292 fd = dgram->t.sock.fd;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002293
Christopher Faulet67957bd2017-09-27 11:00:59 +02002294 /* check if ready for sending */
2295 if (!fd_send_ready(fd))
2296 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002297
Christopher Faulet67957bd2017-09-27 11:00:59 +02002298 /* we don't want/need to be waked up any more for sending */
2299 fd_stop_send(fd);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002300
Christopher Faulet67957bd2017-09-27 11:00:59 +02002301 /* no need to go further if we can't retrieve the nameserver */
2302 if ((ns = dgram->owner) == NULL)
2303 return;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002304
Christopher Faulet67957bd2017-09-27 11:00:59 +02002305 resolvers = ns->resolvers;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002306 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02002307
Christopher Faulet67957bd2017-09-27 11:00:59 +02002308 list_for_each_entry(res, &resolvers->resolutions.curr, list) {
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02002309 int ret, len;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002310
Christopher Faulet67957bd2017-09-27 11:00:59 +02002311 if (res->nb_queries == resolvers->nb_nameservers)
2312 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002313
Emeric Brun079c6092021-06-17 18:23:04 +02002314 /* if fd was detected broken by previous send */
2315 if (fd == -1)
2316 goto snd_error;
2317
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02002318 len = dns_build_query(res->query_id, res->query_type,
2319 resolvers->accepted_payload_size,
2320 res->hostname_dn, res->hostname_dn_len,
2321 trash.area, trash.size);
2322 if (len == -1)
Christopher Faulet67957bd2017-09-27 11:00:59 +02002323 goto snd_error;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002324
Willy Tarreauf6ee9dc2018-08-22 04:52:02 +02002325 ret = send(fd, trash.area, len, 0);
Willy Tarreau0eae6322019-12-20 11:18:54 +01002326 if (ret != len) {
Emeric Brun751872e2021-05-04 18:16:53 +02002327 if (ret == -1) {
2328 if (errno == EAGAIN) {
2329 /* retry once the socket is ready */
2330 fd_cant_send(fd);
2331 continue;
2332 }
2333
2334 /* purge the fd and set sock.fd to -1
2335 * to create a new one during next
2336 * send_query attempt to the same
2337 * nameserver
2338 */
2339 fd_delete(fd);
Emeric Brun079c6092021-06-17 18:23:04 +02002340 fd = dgram->t.sock.fd = -1;
Willy Tarreau0eae6322019-12-20 11:18:54 +01002341 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002342 goto snd_error;
Willy Tarreau0eae6322019-12-20 11:18:54 +01002343 }
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002344
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002345 ns->counters->sent++;
2346
Christopher Faulet67957bd2017-09-27 11:00:59 +02002347 res->nb_queries++;
2348 continue;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002349
Christopher Faulet67957bd2017-09-27 11:00:59 +02002350 snd_error:
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002351 ns->counters->snd_error++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002352 res->nb_queries++;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002353 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002354 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002355}
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002356
Christopher Faulet67957bd2017-09-27 11:00:59 +02002357/* Processes DNS resolution. First, it checks the active list to detect expired
2358 * resolutions and retry them if possible. Else a timeout is reported. Then, it
2359 * checks the wait list to trigger new resolutions.
2360 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002361static struct task *dns_process_resolvers(struct task *t, void *context, unsigned short state)
Christopher Faulet67957bd2017-09-27 11:00:59 +02002362{
Olivier Houchard9f6af332018-05-25 14:04:04 +02002363 struct dns_resolvers *resolvers = context;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002364 struct dns_resolution *res, *resback;
2365 int exp;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002366
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002367 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02002368
Christopher Faulet67957bd2017-09-27 11:00:59 +02002369 /* Handle all expired resolutions from the active list */
2370 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
Christopher Faulet119ec522021-03-11 18:09:53 +01002371 if (LIST_ISEMPTY(&res->requesters)) {
2372 dns_free_resolution(res);
2373 continue;
2374 }
2375
Christopher Faulet67957bd2017-09-27 11:00:59 +02002376 /* When we find the first resolution in the future, then we can
2377 * stop here */
2378 exp = tick_add(res->last_query, resolvers->timeout.retry);
2379 if (!tick_is_expired(exp, now_ms))
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002380 break;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002381
Christopher Faulet67957bd2017-09-27 11:00:59 +02002382 /* If current resolution has been tried too many times and
2383 * finishes in timeout we update its status and remove it from
2384 * the list */
2385 if (!res->try) {
2386 struct dns_requester *req;
Emeric Bruna8b60f22021-06-10 15:25:25 +02002387 int keep_answer_items = 0;
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002388
Christopher Faulet67957bd2017-09-27 11:00:59 +02002389 /* Notify the result to the requesters */
2390 if (!res->nb_responses)
2391 res->status = RSLV_STATUS_TIMEOUT;
2392 list_for_each_entry(req, &res->requesters, list)
Emeric Bruna8b60f22021-06-10 15:25:25 +02002393 keep_answer_items |= req->requester_error_cb(req, res->status);
2394 if (!keep_answer_items)
2395 dns_purge_resolution_answer_records(res);
Baptiste Assmannfa4a6632017-05-04 09:05:00 +02002396
Christopher Faulet67957bd2017-09-27 11:00:59 +02002397 /* Clean up resolution info and remove it from the
2398 * current list */
2399 dns_reset_resolution(res);
2400 LIST_DEL(&res->list);
2401 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
William Lallemand69e96442016-11-19 00:58:54 +01002402 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002403 else {
2404 /* Otherwise resend the DNS query and requeue the resolution */
2405 if (!res->nb_responses || res->prefered_query_type != res->query_type) {
2406 /* No response received (a real timeout) or fallback already done */
2407 res->query_type = res->prefered_query_type;
2408 res->try--;
2409 }
2410 else {
2411 /* Fallback from A to AAAA or the opposite and re-send
2412 * the resolution immediately. try counter is not
2413 * decremented. */
2414 if (res->prefered_query_type == DNS_RTYPE_A)
2415 res->query_type = DNS_RTYPE_AAAA;
2416 else if (res->prefered_query_type == DNS_RTYPE_AAAA)
2417 res->query_type = DNS_RTYPE_A;
2418 else
2419 res->try--;
2420 }
2421 dns_send_query(res);
William Lallemand69e96442016-11-19 00:58:54 +01002422 }
2423 }
William Lallemand69e96442016-11-19 00:58:54 +01002424
Christopher Faulet67957bd2017-09-27 11:00:59 +02002425 /* Handle all resolutions in the wait list */
2426 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
Christopher Faulet119ec522021-03-11 18:09:53 +01002427 if (LIST_ISEMPTY(&res->requesters)) {
2428 dns_free_resolution(res);
2429 continue;
2430 }
2431
Christopher Faulet67957bd2017-09-27 11:00:59 +02002432 exp = tick_add(res->last_resolution, dns_resolution_timeout(res));
2433 if (tick_isset(res->last_resolution) && !tick_is_expired(exp, now_ms))
2434 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002435
Christopher Faulet67957bd2017-09-27 11:00:59 +02002436 if (dns_run_resolution(res) != 1) {
2437 res->last_resolution = now_ms;
2438 LIST_DEL(&res->list);
2439 LIST_ADDQ(&resolvers->resolutions.wait, &res->list);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002440 }
2441 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002442
Christopher Faulet67957bd2017-09-27 11:00:59 +02002443 dns_update_resolvers_timeout(resolvers);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002444 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002445 return t;
2446}
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002447
Christopher Faulet67957bd2017-09-27 11:00:59 +02002448/* proto_udp callback functions for a DNS resolution */
2449struct dgram_data_cb resolve_dgram_cb = {
2450 .recv = dns_resolve_recv,
2451 .send = dns_resolve_send,
2452};
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002453
Christopher Faulet67957bd2017-09-27 11:00:59 +02002454/* Release memory allocated by DNS */
2455static void dns_deinit(void)
2456{
2457 struct dns_resolvers *resolvers, *resolversback;
2458 struct dns_nameserver *ns, *nsback;
2459 struct dns_resolution *res, *resback;
2460 struct dns_requester *req, *reqback;
2461 struct dns_srvrq *srvrq, *srvrqback;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002462
Christopher Faulet67957bd2017-09-27 11:00:59 +02002463 list_for_each_entry_safe(resolvers, resolversback, &dns_resolvers, list) {
2464 list_for_each_entry_safe(ns, nsback, &resolvers->nameservers, list) {
2465 free(ns->id);
2466 free((char *)ns->conf.file);
2467 if (ns->dgram && ns->dgram->t.sock.fd != -1)
2468 fd_delete(ns->dgram->t.sock.fd);
2469 free(ns->dgram);
2470 LIST_DEL(&ns->list);
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002471 EXTRA_COUNTERS_FREE(ns->extra_counters);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002472 free(ns);
2473 }
2474
2475 list_for_each_entry_safe(res, resback, &resolvers->resolutions.curr, list) {
2476 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
2477 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01002478 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002479 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002480 dns_free_resolution(res);
2481 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002482
Christopher Faulet67957bd2017-09-27 11:00:59 +02002483 list_for_each_entry_safe(res, resback, &resolvers->resolutions.wait, list) {
2484 list_for_each_entry_safe(req, reqback, &res->requesters, list) {
2485 LIST_DEL(&req->list);
Baptiste Assmanndfd35fd2019-01-21 08:18:09 +01002486 pool_free(dns_requester_pool, req);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002487 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002488 dns_free_resolution(res);
2489 }
Olivier Houchard8da5f982017-08-04 18:35:36 +02002490
Christopher Faulet67957bd2017-09-27 11:00:59 +02002491 free(resolvers->id);
2492 free((char *)resolvers->conf.file);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002493 task_destroy(resolvers->t);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002494 LIST_DEL(&resolvers->list);
2495 free(resolvers);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002496 }
2497
Christopher Faulet67957bd2017-09-27 11:00:59 +02002498 list_for_each_entry_safe(srvrq, srvrqback, &dns_srvrq_list, list) {
2499 free(srvrq->name);
2500 free(srvrq->hostname_dn);
2501 LIST_DEL(&srvrq->list);
2502 free(srvrq);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002503 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002504}
2505
Christopher Faulet67957bd2017-09-27 11:00:59 +02002506/* Finalizes the DNS configuration by allocating required resources and checking
2507 * live parameters.
2508 * Returns 0 on success, ERR_* flags otherwise.
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002509 */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002510static int dns_finalize_config(void)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002511{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002512 struct dns_resolvers *resolvers;
2513 struct proxy *px;
2514 int err_code = 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002515
Christopher Faulet67957bd2017-09-27 11:00:59 +02002516 /* allocate pool of resolution per resolvers */
2517 list_for_each_entry(resolvers, &dns_resolvers, list) {
2518 struct dns_nameserver *ns;
2519 struct task *t;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002520
Christopher Faulet67957bd2017-09-27 11:00:59 +02002521 /* Check if we can create the socket with nameservers info */
2522 list_for_each_entry(ns, &resolvers->nameservers, list) {
2523 struct dgram_conn *dgram = NULL;
2524 int fd;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002525
Christopher Faulet67957bd2017-09-27 11:00:59 +02002526 /* Check nameserver info */
2527 if ((fd = socket(ns->addr.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002528 ha_alert("config : resolvers '%s': can't create socket for nameserver '%s'.\n",
2529 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002530 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002531 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002532 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002533 if (connect(fd, (struct sockaddr*)&ns->addr, get_addr_len(&ns->addr)) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002534 ha_alert("config : resolvers '%s': can't connect socket for nameserver '%s'.\n",
2535 resolvers->id, ns->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002536 close(fd);
2537 err_code |= (ERR_ALERT|ERR_ABORT);
Olivier Houchard8da5f982017-08-04 18:35:36 +02002538 continue;
Olivier Houchard8da5f982017-08-04 18:35:36 +02002539 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002540 close(fd);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002541
Christopher Faulet67957bd2017-09-27 11:00:59 +02002542 /* Create dgram structure that will hold the UPD socket
2543 * and attach it on the current nameserver */
2544 if ((dgram = calloc(1, sizeof(*dgram))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002545 ha_alert("config: resolvers '%s' : out of memory.\n",
2546 resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002547 err_code |= (ERR_ALERT|ERR_ABORT);
2548 goto err;
2549 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002550
Christopher Faulet67957bd2017-09-27 11:00:59 +02002551 /* Leave dgram partially initialized, no FD attached for
2552 * now. */
2553 dgram->owner = ns;
2554 dgram->data = &resolve_dgram_cb;
2555 dgram->t.sock.fd = -1;
2556 ns->dgram = dgram;
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002557
2558 /* Store the ns counters pointer */
2559 if (ns->extra_counters) {
2560 ns->counters = EXTRA_COUNTERS_GET(ns->extra_counters, &dns_stats_module);
2561 ns->counters->id = ns->id;
2562 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002563 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002564
Christopher Faulet67957bd2017-09-27 11:00:59 +02002565 /* Create the task associated to the resolvers section */
Emeric Brunc60def82017-09-27 14:59:38 +02002566 if ((t = task_new(MAX_THREADS_MASK)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002567 ha_alert("config : resolvers '%s' : out of memory.\n", resolvers->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002568 err_code |= (ERR_ALERT|ERR_ABORT);
2569 goto err;
2570 }
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002571
Christopher Faulet67957bd2017-09-27 11:00:59 +02002572 /* Update task's parameters */
2573 t->process = dns_process_resolvers;
2574 t->context = resolvers;
2575 resolvers->t = t;
2576 task_wakeup(t, TASK_WOKEN_INIT);
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002577 }
2578
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002579 for (px = proxies_list; px; px = px->next) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002580 struct server *srv;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002581
Christopher Faulet67957bd2017-09-27 11:00:59 +02002582 for (srv = px->srv; srv; srv = srv->next) {
2583 struct dns_resolvers *resolvers;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002584
Christopher Faulet67957bd2017-09-27 11:00:59 +02002585 if (!srv->resolvers_id)
2586 continue;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002587
Christopher Faulet67957bd2017-09-27 11:00:59 +02002588 if ((resolvers = find_resolvers_by_id(srv->resolvers_id)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002589 ha_alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n",
2590 proxy_type_str(px), px->id, srv->id, srv->resolvers_id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002591 err_code |= (ERR_ALERT|ERR_ABORT);
2592 continue;
2593 }
2594 srv->resolvers = resolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002595
Christopher Faulet67957bd2017-09-27 11:00:59 +02002596 if (srv->srvrq && !srv->srvrq->resolvers) {
2597 srv->srvrq->resolvers = srv->resolvers;
Olivier Houchard55dcdf42017-11-06 15:15:04 +01002598 if (dns_link_resolution(srv->srvrq, OBJ_TYPE_SRVRQ, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002599 ha_alert("config : %s '%s' : unable to set DNS resolution for server '%s'.\n",
2600 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002601 err_code |= (ERR_ALERT|ERR_ABORT);
2602 continue;
2603 }
2604 }
Christopher Faulet55810262021-03-12 10:23:05 +01002605 if (!srv->srvrq && dns_link_resolution(srv, OBJ_TYPE_SERVER, 0) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002606 ha_alert("config : %s '%s', unable to set DNS resolution for server '%s'.\n",
2607 proxy_type_str(px), px->id, srv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002608 err_code |= (ERR_ALERT|ERR_ABORT);
2609 continue;
2610 }
2611 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002612 }
2613
Christopher Faulet67957bd2017-09-27 11:00:59 +02002614 if (err_code & (ERR_ALERT|ERR_ABORT))
2615 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002616
Christopher Faulet67957bd2017-09-27 11:00:59 +02002617 return err_code;
2618 err:
2619 dns_deinit();
2620 return err_code;
2621
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002622}
2623
2624static int stats_dump_dns_to_buffer(struct stream_interface *si,
2625 struct dns_nameserver *ns,
2626 struct field *stats, size_t stats_count,
2627 struct list *stat_modules)
2628{
2629 struct appctx *appctx = __objt_appctx(si->end);
2630 struct channel *rep = si_ic(si);
2631 struct stats_module *mod;
2632 size_t idx = 0;
2633
2634 memset(stats, 0, sizeof(struct field) * stats_count);
2635
2636 list_for_each_entry(mod, stat_modules, list) {
2637 struct counters_node *counters = EXTRA_COUNTERS_GET(ns->extra_counters, mod);
2638
2639 mod->fill_stats(counters, stats + idx);
2640 idx += mod->stats_count;
2641 }
2642
2643 if (!stats_dump_one_line(stats, idx, appctx))
2644 return 0;
2645
2646 if (!stats_putchk(rep, NULL, &trash))
2647 goto full;
2648
2649 return 1;
2650
2651 full:
2652 si_rx_room_rdy(si);
2653 return 0;
2654}
2655
2656/* Uses <appctx.ctx.stats.obj1> as a pointer to the current resolver and <obj2>
2657 * as a pointer to the current nameserver.
2658 */
2659int stats_dump_dns(struct stream_interface *si,
2660 struct field *stats, size_t stats_count,
2661 struct list *stat_modules)
2662{
2663 struct appctx *appctx = __objt_appctx(si->end);
2664 struct channel *rep = si_ic(si);
2665 struct dns_resolvers *resolver = appctx->ctx.stats.obj1;
2666 struct dns_nameserver *ns = appctx->ctx.stats.obj2;
2667
2668 if (!resolver)
2669 resolver = LIST_NEXT(&dns_resolvers, struct dns_resolvers *, list);
2670
2671 /* dump resolvers */
2672 list_for_each_entry_from(resolver, &dns_resolvers, list) {
2673 appctx->ctx.stats.obj1 = resolver;
2674
2675 ns = appctx->ctx.stats.obj2 ?
2676 appctx->ctx.stats.obj2 :
2677 LIST_NEXT(&resolver->nameservers, struct dns_nameserver *, list);
2678
2679 list_for_each_entry_from(ns, &resolver->nameservers, list) {
2680 appctx->ctx.stats.obj2 = ns;
2681
2682 if (buffer_almost_full(&rep->buf))
2683 goto full;
2684
2685 if (!stats_dump_dns_to_buffer(si, ns,
2686 stats, stats_count,
2687 stat_modules)) {
2688 return 0;
2689 }
2690 }
2691
2692 appctx->ctx.stats.obj2 = NULL;
2693 }
2694
2695 return 1;
2696
2697 full:
2698 si_rx_room_blk(si);
2699 return 0;
2700}
2701
2702void dns_stats_clear_counters(int clrall, struct list *stat_modules)
2703{
2704 struct dns_resolvers *resolvers;
2705 struct dns_nameserver *ns;
2706 struct stats_module *mod;
2707 void *counters;
2708
2709 list_for_each_entry(mod, stat_modules, list) {
2710 if (!mod->clearable && !clrall)
2711 continue;
2712
2713 list_for_each_entry(resolvers, &dns_resolvers, list) {
2714 list_for_each_entry(ns, &resolvers->nameservers, list) {
2715 counters = EXTRA_COUNTERS_GET(ns->extra_counters, mod);
2716 memcpy(counters, mod->counters, mod->counters_size);
2717 }
2718 }
2719 }
2720
2721}
2722
2723int dns_allocate_counters(struct list *stat_modules)
2724{
2725 struct stats_module *mod;
2726 struct dns_resolvers *resolvers;
2727 struct dns_nameserver *ns;
2728
2729 list_for_each_entry(resolvers, &dns_resolvers, list) {
2730 list_for_each_entry(ns, &resolvers->nameservers, list) {
2731 EXTRA_COUNTERS_REGISTER(&ns->extra_counters, COUNTERS_DNS,
2732 alloc_failed);
2733
2734 list_for_each_entry(mod, stat_modules, list) {
2735 EXTRA_COUNTERS_ADD(mod,
2736 ns->extra_counters,
2737 mod->counters,
2738 mod->counters_size);
2739 }
2740
2741 EXTRA_COUNTERS_ALLOC(ns->extra_counters, alloc_failed);
2742
2743 list_for_each_entry(mod, stat_modules, list) {
2744 memcpy(ns->extra_counters->data + mod->counters_off[ns->extra_counters->type],
2745 mod->counters, mod->counters_size);
2746
2747 /* Store the ns counters pointer */
2748 if (!strcmp(mod->name, "dns")) {
2749 ns->counters = (struct dns_counters *)ns->extra_counters->data + mod->counters_off[COUNTERS_DNS];
2750 ns->counters->id = ns->id;
2751 }
2752 }
2753 }
2754 }
2755
2756 return 1;
2757
2758alloc_failed:
2759 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002760}
2761
Christopher Faulet67957bd2017-09-27 11:00:59 +02002762/* if an arg is found, it sets the resolvers section pointer into cli.p0 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002763static int cli_parse_stat_resolvers(char **args, char *payload, struct appctx *appctx, void *private)
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002764{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002765 struct dns_resolvers *presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002766
Christopher Faulet67957bd2017-09-27 11:00:59 +02002767 if (*args[2]) {
2768 list_for_each_entry(presolvers, &dns_resolvers, list) {
2769 if (strcmp(presolvers->id, args[2]) == 0) {
2770 appctx->ctx.cli.p0 = presolvers;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002771 break;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002772 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002773 }
Willy Tarreau9d008692019-08-09 11:21:01 +02002774 if (appctx->ctx.cli.p0 == NULL)
2775 return cli_err(appctx, "Can't find that resolvers section\n");
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002776 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002777 return 0;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002778}
2779
Christopher Faulet67957bd2017-09-27 11:00:59 +02002780/* Dumps counters from all resolvers section and associated name servers. It
2781 * returns 0 if the output buffer is full and it needs to be called again,
2782 * otherwise non-zero. It may limit itself to the resolver pointed to by
Willy Tarreau777b5602016-12-16 18:06:26 +01002783 * <cli.p0> if it's not null.
William Lallemand69e96442016-11-19 00:58:54 +01002784 */
2785static int cli_io_handler_dump_resolvers_to_buffer(struct appctx *appctx)
2786{
2787 struct stream_interface *si = appctx->owner;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002788 struct dns_resolvers *resolvers;
2789 struct dns_nameserver *ns;
William Lallemand69e96442016-11-19 00:58:54 +01002790
2791 chunk_reset(&trash);
2792
2793 switch (appctx->st2) {
2794 case STAT_ST_INIT:
2795 appctx->st2 = STAT_ST_LIST; /* let's start producing data */
2796 /* fall through */
2797
2798 case STAT_ST_LIST:
2799 if (LIST_ISEMPTY(&dns_resolvers)) {
2800 chunk_appendf(&trash, "No resolvers found\n");
2801 }
2802 else {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002803 list_for_each_entry(resolvers, &dns_resolvers, list) {
2804 if (appctx->ctx.cli.p0 != NULL && appctx->ctx.cli.p0 != resolvers)
William Lallemand69e96442016-11-19 00:58:54 +01002805 continue;
2806
Christopher Faulet67957bd2017-09-27 11:00:59 +02002807 chunk_appendf(&trash, "Resolvers section %s\n", resolvers->id);
2808 list_for_each_entry(ns, &resolvers->nameservers, list) {
2809 chunk_appendf(&trash, " nameserver %s:\n", ns->id);
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02002810 chunk_appendf(&trash, " sent: %lld\n", ns->counters->sent);
2811 chunk_appendf(&trash, " snd_error: %lld\n", ns->counters->snd_error);
2812 chunk_appendf(&trash, " valid: %lld\n", ns->counters->valid);
2813 chunk_appendf(&trash, " update: %lld\n", ns->counters->update);
2814 chunk_appendf(&trash, " cname: %lld\n", ns->counters->cname);
2815 chunk_appendf(&trash, " cname_error: %lld\n", ns->counters->cname_error);
2816 chunk_appendf(&trash, " any_err: %lld\n", ns->counters->any_err);
2817 chunk_appendf(&trash, " nx: %lld\n", ns->counters->nx);
2818 chunk_appendf(&trash, " timeout: %lld\n", ns->counters->timeout);
2819 chunk_appendf(&trash, " refused: %lld\n", ns->counters->refused);
2820 chunk_appendf(&trash, " other: %lld\n", ns->counters->other);
2821 chunk_appendf(&trash, " invalid: %lld\n", ns->counters->invalid);
2822 chunk_appendf(&trash, " too_big: %lld\n", ns->counters->too_big);
2823 chunk_appendf(&trash, " truncated: %lld\n", ns->counters->truncated);
2824 chunk_appendf(&trash, " outdated: %lld\n", ns->counters->outdated);
William Lallemand69e96442016-11-19 00:58:54 +01002825 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02002826 chunk_appendf(&trash, "\n");
William Lallemand69e96442016-11-19 00:58:54 +01002827 }
2828 }
2829
2830 /* display response */
Willy Tarreau06d80a92017-10-19 14:32:15 +02002831 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand69e96442016-11-19 00:58:54 +01002832 /* let's try again later from this session. We add ourselves into
2833 * this session's users so that it can remove us upon termination.
2834 */
Willy Tarreaudb398432018-11-15 11:08:52 +01002835 si_rx_room_blk(si);
William Lallemand69e96442016-11-19 00:58:54 +01002836 return 0;
2837 }
William Lallemand69e96442016-11-19 00:58:54 +01002838 /* fall through */
2839
2840 default:
2841 appctx->st2 = STAT_ST_FIN;
2842 return 1;
2843 }
2844}
2845
2846/* register cli keywords */
Christopher Fauletff88efb2017-10-03 16:00:57 +02002847static struct cli_kw_list cli_kws = {{ }, {
2848 { { "show", "resolvers", NULL }, "show resolvers [id]: dumps counters from all resolvers section and\n"
2849 " associated name servers",
2850 cli_parse_stat_resolvers, cli_io_handler_dump_resolvers_to_buffer },
2851 {{},}
2852 }
2853};
William Lallemand69e96442016-11-19 00:58:54 +01002854
Willy Tarreau0108d902018-11-25 19:14:37 +01002855INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand69e96442016-11-19 00:58:54 +01002856
Baptiste Assmann333939c2019-01-21 08:34:50 +01002857/*
2858 * Prepare <rule> for hostname resolution.
2859 * Returns -1 in case of any allocation failure, 0 if not.
2860 * On error, a global failure counter is also incremented.
2861 */
2862static int action_prepare_for_resolution(struct stream *stream, const char *hostname)
2863{
2864 char *hostname_dn;
2865 int hostname_len, hostname_dn_len;
2866 struct buffer *tmp = get_trash_chunk();
2867
2868 if (!hostname)
2869 return 0;
2870
2871 hostname_len = strlen(hostname);
2872 hostname_dn = tmp->area;
2873 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
2874 hostname_dn, tmp->size);
2875 if (hostname_dn_len == -1)
2876 goto err;
2877
2878
2879 stream->dns_ctx.hostname_dn = strdup(hostname_dn);
2880 stream->dns_ctx.hostname_dn_len = hostname_dn_len;
2881 if (!stream->dns_ctx.hostname_dn)
2882 goto err;
2883
2884 return 0;
2885
2886 err:
2887 free(stream->dns_ctx.hostname_dn); stream->dns_ctx.hostname_dn = NULL;
2888 dns_failed_resolutions += 1;
2889 return -1;
2890}
2891
2892
2893/*
2894 * Execute the "do-resolution" action. May be called from {tcp,http}request.
2895 */
2896enum act_return dns_action_do_resolve(struct act_rule *rule, struct proxy *px,
2897 struct session *sess, struct stream *s, int flags)
2898{
Baptiste Assmann333939c2019-01-21 08:34:50 +01002899 struct dns_resolution *resolution;
Willy Tarreau45726fd2019-07-17 10:38:45 +02002900 struct sample *smp;
2901 char *fqdn;
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002902 struct dns_requester *req;
2903 struct dns_resolvers *resolvers;
2904 struct dns_resolution *res;
Christopher Faulet5098a082020-07-22 11:46:32 +02002905 int exp, locked = 0;
2906 enum act_return ret = ACT_RET_CONT;
2907
2908 resolvers = rule->arg.dns.resolvers;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002909
2910 /* we have a response to our DNS resolution */
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002911 use_cache:
Baptiste Assmann333939c2019-01-21 08:34:50 +01002912 if (s->dns_ctx.dns_requester && s->dns_ctx.dns_requester->resolution != NULL) {
2913 resolution = s->dns_ctx.dns_requester->resolution;
Christopher Faulet5098a082020-07-22 11:46:32 +02002914 if (!locked) {
2915 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2916 locked = 1;
2917 }
2918
Christopher Faulet385101e2020-07-28 10:21:54 +02002919 if (resolution->step == RSLV_STEP_RUNNING)
2920 goto yield;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002921 if (resolution->step == RSLV_STEP_NONE) {
2922 /* We update the variable only if we have a valid response. */
2923 if (resolution->status == RSLV_STATUS_VALID) {
2924 struct sample smp;
2925 short ip_sin_family = 0;
2926 void *ip = NULL;
2927
Christopher Fauleta4168432020-01-24 18:08:42 +01002928 dns_get_ip_from_response(&resolution->response, rule->arg.dns.dns_opts, NULL,
Baptiste Assmann333939c2019-01-21 08:34:50 +01002929 0, &ip, &ip_sin_family, NULL);
2930
2931 switch (ip_sin_family) {
2932 case AF_INET:
2933 smp.data.type = SMP_T_IPV4;
2934 memcpy(&smp.data.u.ipv4, ip, 4);
2935 break;
2936 case AF_INET6:
2937 smp.data.type = SMP_T_IPV6;
2938 memcpy(&smp.data.u.ipv6, ip, 16);
2939 break;
2940 default:
2941 ip = NULL;
2942 }
2943
2944 if (ip) {
2945 smp.px = px;
2946 smp.sess = sess;
2947 smp.strm = s;
2948
2949 vars_set_by_name(rule->arg.dns.varname, strlen(rule->arg.dns.varname), &smp);
2950 }
2951 }
2952 }
2953
Christopher Faulet385101e2020-07-28 10:21:54 +02002954 goto release_requester;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002955 }
2956
2957 /* need to configure and start a new DNS resolution */
Willy Tarreau45726fd2019-07-17 10:38:45 +02002958 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.dns.expr, SMP_T_STR);
2959 if (smp == NULL)
Christopher Faulet5098a082020-07-22 11:46:32 +02002960 goto end;
Baptiste Assmann333939c2019-01-21 08:34:50 +01002961
Willy Tarreau45726fd2019-07-17 10:38:45 +02002962 fqdn = smp->data.u.str.area;
2963 if (action_prepare_for_resolution(s, fqdn) == -1)
Christopher Faulet5098a082020-07-22 11:46:32 +02002964 goto end; /* on error, ignore the action */
Baptiste Assmann333939c2019-01-21 08:34:50 +01002965
Willy Tarreau45726fd2019-07-17 10:38:45 +02002966 s->dns_ctx.parent = rule;
Christopher Faulet5098a082020-07-22 11:46:32 +02002967
2968 HA_SPIN_LOCK(DNS_LOCK, &resolvers->lock);
2969 locked = 1;
2970
Willy Tarreau45726fd2019-07-17 10:38:45 +02002971 dns_link_resolution(s, OBJ_TYPE_STREAM, 0);
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002972
2973 /* Check if there is a fresh enough response in the cache of our associated resolution */
2974 req = s->dns_ctx.dns_requester;
Christopher Faulet385101e2020-07-28 10:21:54 +02002975 if (!req || !req->resolution)
2976 goto release_requester; /* on error, ignore the action */
Christopher Faulet5098a082020-07-22 11:46:32 +02002977 res = req->resolution;
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002978
2979 exp = tick_add(res->last_resolution, resolvers->hold.valid);
2980 if (resolvers->t && res->status == RSLV_STATUS_VALID && tick_isset(res->last_resolution)
Christopher Faulet385101e2020-07-28 10:21:54 +02002981 && !tick_is_expired(exp, now_ms)) {
Baptiste Assmann7264dfe2019-10-30 16:06:53 +01002982 goto use_cache;
2983 }
2984
Willy Tarreau45726fd2019-07-17 10:38:45 +02002985 dns_trigger_resolution(s->dns_ctx.dns_requester);
Christopher Faulet385101e2020-07-28 10:21:54 +02002986
2987 yield:
2988 if (flags & ACT_OPT_FINAL)
2989 goto release_requester;
Christopher Faulet5098a082020-07-22 11:46:32 +02002990 ret = ACT_RET_YIELD;
2991
2992 end:
2993 if (locked)
2994 HA_SPIN_UNLOCK(DNS_LOCK, &resolvers->lock);
2995 return ret;
Christopher Faulet385101e2020-07-28 10:21:54 +02002996
2997 release_requester:
2998 free(s->dns_ctx.hostname_dn);
2999 s->dns_ctx.hostname_dn = NULL;
3000 s->dns_ctx.hostname_dn_len = 0;
3001 if (s->dns_ctx.dns_requester) {
Christopher Faulet119ec522021-03-11 18:09:53 +01003002 dns_unlink_resolution(s->dns_ctx.dns_requester, 0);
Christopher Faulet385101e2020-07-28 10:21:54 +02003003 pool_free(dns_requester_pool, s->dns_ctx.dns_requester);
3004 s->dns_ctx.dns_requester = NULL;
3005 }
3006 goto end;
Baptiste Assmann333939c2019-01-21 08:34:50 +01003007}
3008
Christopher Faulet3b2bb632020-01-24 18:12:58 +01003009static void release_dns_action(struct act_rule *rule)
3010{
3011 release_sample_expr(rule->arg.dns.expr);
3012 free(rule->arg.dns.varname);
3013 free(rule->arg.dns.resolvers_id);
3014 free(rule->arg.dns.dns_opts);
3015}
3016
Baptiste Assmann333939c2019-01-21 08:34:50 +01003017
3018/* parse "do-resolve" action
3019 * This action takes the following arguments:
3020 * do-resolve(<varName>,<resolversSectionName>,<resolvePrefer>) <expr>
3021 *
3022 * - <varName> is the variable name where the result of the DNS resolution will be stored
3023 * (mandatory)
3024 * - <resolversSectionName> is the name of the resolvers section to use to perform the resolution
3025 * (mandatory)
3026 * - <resolvePrefer> can be either 'ipv4' or 'ipv6' and is the IP family we would like to resolve first
3027 * (optional), defaults to ipv6
3028 * - <expr> is an HAProxy expression used to fetch the name to be resolved
3029 */
3030enum act_parse_ret dns_parse_do_resolve(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
3031{
3032 int cur_arg;
3033 struct sample_expr *expr;
3034 unsigned int where;
3035 const char *beg, *end;
3036
3037 /* orig_arg points to the first argument, but we need to analyse the command itself first */
3038 cur_arg = *orig_arg - 1;
3039
3040 /* locate varName, which is mandatory */
3041 beg = strchr(args[cur_arg], '(');
3042 if (beg == NULL)
3043 goto do_resolve_parse_error;
3044 beg = beg + 1; /* beg should points to the first character after opening parenthesis '(' */
3045 end = strchr(beg, ',');
3046 if (end == NULL)
3047 goto do_resolve_parse_error;
3048 rule->arg.dns.varname = my_strndup(beg, end - beg);
3049 if (rule->arg.dns.varname == NULL)
3050 goto do_resolve_parse_error;
3051
3052
3053 /* locate resolversSectionName, which is mandatory.
3054 * Since next parameters are optional, the delimiter may be comma ','
3055 * or closing parenthesis ')'
3056 */
3057 beg = end + 1;
3058 end = strchr(beg, ',');
3059 if (end == NULL)
3060 end = strchr(beg, ')');
3061 if (end == NULL)
3062 goto do_resolve_parse_error;
3063 rule->arg.dns.resolvers_id = my_strndup(beg, end - beg);
3064 if (rule->arg.dns.resolvers_id == NULL)
3065 goto do_resolve_parse_error;
3066
3067
Christopher Fauleta4168432020-01-24 18:08:42 +01003068 rule->arg.dns.dns_opts = calloc(1, sizeof(*rule->arg.dns.dns_opts));
3069 if (rule->arg.dns.dns_opts == NULL)
3070 goto do_resolve_parse_error;
3071
Baptiste Assmann333939c2019-01-21 08:34:50 +01003072 /* Default priority is ipv6 */
Christopher Fauleta4168432020-01-24 18:08:42 +01003073 rule->arg.dns.dns_opts->family_prio = AF_INET6;
Baptiste Assmann333939c2019-01-21 08:34:50 +01003074
3075 /* optional arguments accepted for now:
3076 * ipv4 or ipv6
3077 */
3078 while (*end != ')') {
3079 beg = end + 1;
3080 end = strchr(beg, ',');
3081 if (end == NULL)
3082 end = strchr(beg, ')');
3083 if (end == NULL)
3084 goto do_resolve_parse_error;
3085
3086 if (strncmp(beg, "ipv4", end - beg) == 0) {
Christopher Fauleta4168432020-01-24 18:08:42 +01003087 rule->arg.dns.dns_opts->family_prio = AF_INET;
Baptiste Assmann333939c2019-01-21 08:34:50 +01003088 }
3089 else if (strncmp(beg, "ipv6", end - beg) == 0) {
Christopher Fauleta4168432020-01-24 18:08:42 +01003090 rule->arg.dns.dns_opts->family_prio = AF_INET6;
Baptiste Assmann333939c2019-01-21 08:34:50 +01003091 }
3092 else {
3093 goto do_resolve_parse_error;
3094 }
3095 }
3096
3097 cur_arg = cur_arg + 1;
3098
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01003099 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args, NULL);
Baptiste Assmann333939c2019-01-21 08:34:50 +01003100 if (!expr)
3101 goto do_resolve_parse_error;
3102
3103
3104 where = 0;
3105 if (px->cap & PR_CAP_FE)
3106 where |= SMP_VAL_FE_HRQ_HDR;
3107 if (px->cap & PR_CAP_BE)
3108 where |= SMP_VAL_BE_HRQ_HDR;
3109
3110 if (!(expr->fetch->val & where)) {
3111 memprintf(err,
3112 "fetch method '%s' extracts information from '%s', none of which is available here",
3113 args[cur_arg-1], sample_src_names(expr->fetch->use));
3114 free(expr);
3115 return ACT_RET_PRS_ERR;
3116 }
3117 rule->arg.dns.expr = expr;
3118 rule->action = ACT_CUSTOM;
3119 rule->action_ptr = dns_action_do_resolve;
3120 *orig_arg = cur_arg;
3121
3122 rule->check_ptr = check_action_do_resolve;
Christopher Faulet3b2bb632020-01-24 18:12:58 +01003123 rule->release_ptr = release_dns_action;
Baptiste Assmann333939c2019-01-21 08:34:50 +01003124
3125 return ACT_RET_PRS_OK;
3126
3127 do_resolve_parse_error:
3128 free(rule->arg.dns.varname); rule->arg.dns.varname = NULL;
3129 free(rule->arg.dns.resolvers_id); rule->arg.dns.resolvers_id = NULL;
3130 memprintf(err, "Can't parse '%s'. Expects 'do-resolve(<varname>,<resolvers>[,<options>]) <expr>'. Available options are 'ipv4' and 'ipv6'",
3131 args[cur_arg]);
3132 return ACT_RET_PRS_ERR;
3133}
3134
3135static struct action_kw_list http_req_kws = { { }, {
3136 { "do-resolve", dns_parse_do_resolve, 1 },
3137 { /* END */ }
3138}};
3139
3140INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_kws);
3141
3142static struct action_kw_list tcp_req_cont_actions = {ILH, {
3143 { "do-resolve", dns_parse_do_resolve, 1 },
3144 { /* END */ }
3145}};
3146
3147INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_cont_actions);
3148
3149/* Check an "http-request do-resolve" action.
3150 *
3151 * The function returns 1 in success case, otherwise, it returns 0 and err is
3152 * filled.
3153 */
3154int check_action_do_resolve(struct act_rule *rule, struct proxy *px, char **err)
3155{
3156 struct dns_resolvers *resolvers = NULL;
3157
3158 if (rule->arg.dns.resolvers_id == NULL) {
3159 memprintf(err,"Proxy '%s': %s", px->id, "do-resolve action without resolvers");
3160 return 0;
3161 }
3162
3163 resolvers = find_resolvers_by_id(rule->arg.dns.resolvers_id);
3164 if (resolvers == NULL) {
3165 memprintf(err,"Can't find resolvers section '%s' for do-resolve action", rule->arg.dns.resolvers_id);
3166 return 0;
3167 }
3168 rule->arg.dns.resolvers = resolvers;
3169
3170 return 1;
3171}
3172
Willy Tarreau172f5ce2018-11-26 11:21:50 +01003173REGISTER_POST_DEINIT(dns_deinit);
Willy Tarreaue6552512018-11-26 11:33:13 +01003174REGISTER_CONFIG_POSTPARSER("dns runtime resolver", dns_finalize_config);