blob: 057935ab7937892b07d7bbaebe229d07568aa1ec [file] [log] [blame]
Baptiste Assmann325137d2015-04-13 23:40:55 +02001/*
2 * Name server resolution
3 *
Willy Tarreau714f3452021-05-09 06:47:26 +02004 * Copyright 2020 HAProxy Technologies
Baptiste Assmann325137d2015-04-13 23:40:55 +02005 *
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>
Baptiste Assmann325137d2015-04-13 23:40:55 +020014#include <stdio.h>
15#include <stdlib.h>
16#include <string.h>
17#include <unistd.h>
18
19#include <sys/types.h>
20
Willy Tarreau122eba92020-06-04 10:15:32 +020021#include <haproxy/action.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020022#include <haproxy/api.h>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020023#include <haproxy/applet.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020025#include <haproxy/channel.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau7c18b542020-06-11 09:23:02 +020028#include <haproxy/dgram.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020029#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020030#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/fd.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020032#include <haproxy/log.h>
Emeric Brund26a6232021-01-04 13:32:20 +010033#include <haproxy/ring.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020034#include <haproxy/sc_strm.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020035#include <haproxy/stconn.h>
Emeric Brunfd647d52021-02-12 20:03:38 +010036#include <haproxy/stream.h>
Willy Tarreau9f9e9fc2021-05-08 13:09:46 +020037#include <haproxy/tools.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020038
Emeric Brund26a6232021-01-04 13:32:20 +010039static THREAD_LOCAL char *dns_msg_trash;
Baptiste Assmann325137d2015-04-13 23:40:55 +020040
Emeric Brunfd647d52021-02-12 20:03:38 +010041DECLARE_STATIC_POOL(dns_session_pool, "dns_session", sizeof(struct dns_session));
42DECLARE_STATIC_POOL(dns_query_pool, "dns_query", sizeof(struct dns_query));
43DECLARE_STATIC_POOL(dns_msg_buf, "dns_msg_buf", DNS_TCP_MSG_RING_MAX_SIZE);
44
Christopher Faulet67957bd2017-09-27 11:00:59 +020045/* Opens an UDP socket on the namesaver's IP/Port, if required. Returns 0 on
Christopher Faulet1e711be2021-03-04 16:58:35 +010046 * success, -1 otherwise. ns->dgram must be defined.
Baptiste Assmann325137d2015-04-13 23:40:55 +020047 */
Emeric Brund26a6232021-01-04 13:32:20 +010048static int dns_connect_nameserver(struct dns_nameserver *ns)
Baptiste Assmann325137d2015-04-13 23:40:55 +020049{
Christopher Faulet1e711be2021-03-04 16:58:35 +010050 struct dgram_conn *dgram = &ns->dgram->conn;
51 int fd;
Baptiste Assmann325137d2015-04-13 23:40:55 +020052
Christopher Faulet1e711be2021-03-04 16:58:35 +010053 /* Already connected */
54 if (dgram->t.sock.fd != -1)
Emeric Brun526b7922021-02-15 14:28:27 +010055 return 0;
Christopher Faulet1e711be2021-03-04 16:58:35 +010056
57 /* Create an UDP socket and connect it on the nameserver's IP/Port */
58 if ((fd = socket(dgram->addr.to.ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1) {
59 send_log(NULL, LOG_WARNING,
60 "DNS : section '%s': can't create socket for nameserver '%s'.\n",
61 ns->counters->pid, ns->id);
62 return -1;
63 }
64 if (connect(fd, (struct sockaddr*)&dgram->addr.to, get_addr_len(&dgram->addr.to)) == -1) {
65 send_log(NULL, LOG_WARNING,
66 "DNS : section '%s': can't connect socket for nameserver '%s'.\n",
67 ns->counters->id, ns->id);
68 close(fd);
69 return -1;
Emeric Brunc9437992021-02-12 19:42:55 +010070 }
Emeric Brun526b7922021-02-15 14:28:27 +010071
Christopher Faulet1e711be2021-03-04 16:58:35 +010072 /* Make the socket non blocking */
Willy Tarreau38247432022-04-26 10:24:14 +020073 fd_set_nonblock(fd);
Christopher Faulet1e711be2021-03-04 16:58:35 +010074
75 /* Add the fd in the fd list and update its parameters */
76 dgram->t.sock.fd = fd;
Willy Tarreau27a32452022-07-07 08:29:00 +020077 fd_insert(fd, dgram, dgram_fd_handler, tgid, tg->threads_enabled);
Christopher Faulet1e711be2021-03-04 16:58:35 +010078 fd_want_recv(fd);
79 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +020080}
81
Emeric Brund26a6232021-01-04 13:32:20 +010082/* Sends a message to a name server
83 * It returns message length on success
84 * or -1 in error case
85 * 0 is returned in case of output ring buffer is full
86 */
87int dns_send_nameserver(struct dns_nameserver *ns, void *buf, size_t len)
88{
89 int ret = -1;
90
91 if (ns->dgram) {
92 struct dgram_conn *dgram = &ns->dgram->conn;
Emeric Brun314e6ec2022-05-10 11:35:48 +020093 int fd;
Emeric Brund26a6232021-01-04 13:32:20 +010094
Emeric Brun314e6ec2022-05-10 11:35:48 +020095 HA_SPIN_LOCK(DNS_LOCK, &dgram->lock);
96 fd = dgram->t.sock.fd;
97 if (fd == -1) {
98 if (dns_connect_nameserver(ns) == -1) {
99 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100100 return -1;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200101 }
Emeric Brund26a6232021-01-04 13:32:20 +0100102 fd = dgram->t.sock.fd;
103 }
104
105 ret = send(fd, buf, len, 0);
106 if (ret < 0) {
Willy Tarreauacef5e22022-04-25 20:32:15 +0200107 if (errno == EAGAIN || errno == EWOULDBLOCK) {
Emeric Brund26a6232021-01-04 13:32:20 +0100108 struct ist myist;
109
Tim Duesterhus92c696e2021-02-28 16:11:36 +0100110 myist = ist2(buf, len);
Emeric Brund26a6232021-01-04 13:32:20 +0100111 ret = ring_write(ns->dgram->ring_req, DNS_TCP_MSG_MAX_SIZE, NULL, 0, &myist, 1);
112 if (!ret) {
113 ns->counters->snd_error++;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200114 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100115 return -1;
116 }
117 fd_cant_send(fd);
Emeric Brun314e6ec2022-05-10 11:35:48 +0200118 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100119 return ret;
120 }
121 ns->counters->snd_error++;
122 fd_delete(fd);
Emeric Brund26a6232021-01-04 13:32:20 +0100123 dgram->t.sock.fd = -1;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200124 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100125 return -1;
126 }
127 ns->counters->sent++;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200128 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100129 }
Emeric Brunfd647d52021-02-12 20:03:38 +0100130 else if (ns->stream) {
131 struct ist myist;
132
Tim Duesterhus92c696e2021-02-28 16:11:36 +0100133 myist = ist2(buf, len);
Emeric Brunfd647d52021-02-12 20:03:38 +0100134 ret = ring_write(ns->stream->ring_req, DNS_TCP_MSG_MAX_SIZE, NULL, 0, &myist, 1);
135 if (!ret) {
136 ns->counters->snd_error++;
137 return -1;
138 }
139 task_wakeup(ns->stream->task_req, TASK_WOKEN_MSG);
140 return ret;
141 }
Emeric Brund26a6232021-01-04 13:32:20 +0100142
143 return ret;
144}
145
Emeric Brunfd647d52021-02-12 20:03:38 +0100146void dns_session_free(struct dns_session *);
147
Emeric Brund26a6232021-01-04 13:32:20 +0100148/* Receives a dns message
149 * Returns message length
150 * 0 is returned if no more message available
151 * -1 in error case
152 */
153ssize_t dns_recv_nameserver(struct dns_nameserver *ns, void *data, size_t size)
154{
155 ssize_t ret = -1;
156
157 if (ns->dgram) {
158 struct dgram_conn *dgram = &ns->dgram->conn;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200159 int fd;
Emeric Brund26a6232021-01-04 13:32:20 +0100160
Emeric Brun314e6ec2022-05-10 11:35:48 +0200161 HA_SPIN_LOCK(DNS_LOCK, &dgram->lock);
162 fd = dgram->t.sock.fd;
163 if (fd == -1) {
164 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100165 return -1;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200166 }
Emeric Brund26a6232021-01-04 13:32:20 +0100167
168 if ((ret = recv(fd, data, size, 0)) < 0) {
Willy Tarreauacef5e22022-04-25 20:32:15 +0200169 if (errno == EAGAIN || errno == EWOULDBLOCK) {
Emeric Brund26a6232021-01-04 13:32:20 +0100170 fd_cant_recv(fd);
Emeric Brun314e6ec2022-05-10 11:35:48 +0200171 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100172 return 0;
173 }
174 fd_delete(fd);
Emeric Brund26a6232021-01-04 13:32:20 +0100175 dgram->t.sock.fd = -1;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200176 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100177 return -1;
178 }
Emeric Brun314e6ec2022-05-10 11:35:48 +0200179 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100180 }
Emeric Brunfd647d52021-02-12 20:03:38 +0100181 else if (ns->stream) {
182 struct dns_stream_server *dss = ns->stream;
183 struct dns_session *ds;
184
185 HA_SPIN_LOCK(DNS_LOCK, &dss->lock);
186
187 if (!LIST_ISEMPTY(&dss->wait_sess)) {
188 ds = LIST_NEXT(&dss->wait_sess, struct dns_session *, waiter);
Emeric Brunfd647d52021-02-12 20:03:38 +0100189 ret = ds->rx_msg.len < size ? ds->rx_msg.len : size;
190 memcpy(data, ds->rx_msg.area, ret);
191
192 ds->rx_msg.len = 0;
193
Willy Tarreaudde1b442021-10-21 14:33:38 +0200194 /* This barrier is here to ensure that all data is
195 * stored if the appctx detect the elem is out of the
196 * list.
197 */
198 __ha_barrier_store();
199
Emeric Brunfd647d52021-02-12 20:03:38 +0100200 LIST_DEL_INIT(&ds->waiter);
201
202 if (ds->appctx) {
Willy Tarreaudde1b442021-10-21 14:33:38 +0200203 /* This second barrier is here to ensure that
204 * the waked up appctx won't miss that the elem
205 * is removed from the list.
206 */
207 __ha_barrier_store();
208
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +0500209 /* awake appctx because it may have other
Emeric Brunfd647d52021-02-12 20:03:38 +0100210 * message to receive
211 */
212 appctx_wakeup(ds->appctx);
213
214 /* dns_session could already be into free_sess list
215 * so we firstly remove it */
216 LIST_DEL_INIT(&ds->list);
217
218 /* decrease nb_queries to free a slot for a new query on that sess */
219 ds->nb_queries--;
220 if (ds->nb_queries) {
221 /* it remains pipelined unanswered request
222 * into this session but we just decrease
223 * the counter so the session
224 * can not be full of pipelined requests
225 * so we can add if to free_sess list
226 * to receive a new request
227 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200228 LIST_INSERT(&ds->dss->free_sess, &ds->list);
Emeric Brunfd647d52021-02-12 20:03:38 +0100229 }
230 else {
231 /* there is no more pipelined requests
232 * into this session, so we move it
233 * to idle_sess list */
Willy Tarreau2b718102021-04-21 07:32:39 +0200234 LIST_INSERT(&ds->dss->idle_sess, &ds->list);
Emeric Brunfd647d52021-02-12 20:03:38 +0100235
236 /* update the counter of idle sessions */
237 ds->dss->idle_conns++;
238
239 /* Note: this is useless there to update
240 * the max_active_conns since we increase
241 * the idle count */
242 }
243 }
244 else {
245 /* there is no more appctx for this session
246 * it means it is ready to die
247 */
248 dns_session_free(ds);
249 }
250
251
252 }
253
254 HA_SPIN_UNLOCK(DNS_LOCK, &dss->lock);
255 }
Emeric Brund26a6232021-01-04 13:32:20 +0100256
257 return ret;
258}
259
260static void dns_resolve_recv(struct dgram_conn *dgram)
261{
262 struct dns_nameserver *ns;
263 int fd;
264
Emeric Brun314e6ec2022-05-10 11:35:48 +0200265 HA_SPIN_LOCK(DNS_LOCK, &dgram->lock);
266
Emeric Brund26a6232021-01-04 13:32:20 +0100267 fd = dgram->t.sock.fd;
268
269 /* check if ready for reading */
Emeric Brun314e6ec2022-05-10 11:35:48 +0200270 if ((fd == -1) || !fd_recv_ready(fd)) {
271 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100272 return;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200273 }
Emeric Brund26a6232021-01-04 13:32:20 +0100274
275 /* no need to go further if we can't retrieve the nameserver */
276 if ((ns = dgram->owner) == NULL) {
Willy Tarreauf5090652021-04-06 17:23:40 +0200277 _HA_ATOMIC_AND(&fdtab[fd].state, ~(FD_POLL_HUP|FD_POLL_ERR));
Emeric Brund26a6232021-01-04 13:32:20 +0100278 fd_stop_recv(fd);
Emeric Brun314e6ec2022-05-10 11:35:48 +0200279 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100280 return;
281 }
282
Emeric Brun314e6ec2022-05-10 11:35:48 +0200283 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
284
Emeric Brund26a6232021-01-04 13:32:20 +0100285 ns->process_responses(ns);
286}
287
288/* Called when a dns network socket is ready to send data */
289static void dns_resolve_send(struct dgram_conn *dgram)
290{
291 int fd;
292 struct dns_nameserver *ns;
293 struct ring *ring;
294 struct buffer *buf;
295 uint64_t msg_len;
296 size_t len, cnt, ofs;
297
Emeric Brun314e6ec2022-05-10 11:35:48 +0200298 HA_SPIN_LOCK(DNS_LOCK, &dgram->lock);
299
Emeric Brund26a6232021-01-04 13:32:20 +0100300 fd = dgram->t.sock.fd;
301
302 /* check if ready for sending */
Emeric Brun314e6ec2022-05-10 11:35:48 +0200303 if ((fd == -1) || !fd_send_ready(fd)) {
304 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100305 return;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200306 }
Emeric Brund26a6232021-01-04 13:32:20 +0100307
308 /* no need to go further if we can't retrieve the nameserver */
309 if ((ns = dgram->owner) == NULL) {
Willy Tarreauf5090652021-04-06 17:23:40 +0200310 _HA_ATOMIC_AND(&fdtab[fd].state, ~(FD_POLL_HUP|FD_POLL_ERR));
Emeric Brund26a6232021-01-04 13:32:20 +0100311 fd_stop_send(fd);
Emeric Brun314e6ec2022-05-10 11:35:48 +0200312 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100313 return;
314 }
315
316 ring = ns->dgram->ring_req;
317 buf = &ring->buf;
318
319 HA_RWLOCK_RDLOCK(DNS_LOCK, &ring->lock);
320 ofs = ns->dgram->ofs_req;
321
322 /* explanation for the initialization below: it would be better to do
323 * this in the parsing function but this would occasionally result in
324 * dropped events because we'd take a reference on the oldest message
325 * and keep it while being scheduled. Thus instead let's take it the
326 * first time we enter here so that we have a chance to pass many
327 * existing messages before grabbing a reference to a location. This
328 * value cannot be produced after initialization.
329 */
330 if (unlikely(ofs == ~0)) {
331 ofs = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +0200332 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brund26a6232021-01-04 13:32:20 +0100333 ofs += ring->ofs;
334 }
335
336 /* we were already there, adjust the offset to be relative to
337 * the buffer's head and remove us from the counter.
338 */
339 ofs -= ring->ofs;
340 BUG_ON(ofs >= buf->size);
Willy Tarreau4781b152021-04-06 13:53:36 +0200341 HA_ATOMIC_DEC(b_peek(buf, ofs));
Emeric Brund26a6232021-01-04 13:32:20 +0100342
343 while (ofs + 1 < b_data(buf)) {
344 int ret;
345
346 cnt = 1;
347 len = b_peek_varint(buf, ofs + cnt, &msg_len);
348 if (!len)
349 break;
350 cnt += len;
351 BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf));
352 if (unlikely(msg_len > DNS_TCP_MSG_MAX_SIZE)) {
353 /* too large a message to ever fit, let's skip it */
354 ofs += cnt + msg_len;
355 continue;
356 }
357
358 len = b_getblk(buf, dns_msg_trash, msg_len, ofs + cnt);
359
360 ret = send(fd, dns_msg_trash, len, 0);
361 if (ret < 0) {
Willy Tarreauacef5e22022-04-25 20:32:15 +0200362 if (errno == EAGAIN || errno == EWOULDBLOCK) {
Emeric Brund26a6232021-01-04 13:32:20 +0100363 fd_cant_send(fd);
364 goto out;
365 }
366 ns->counters->snd_error++;
367 fd_delete(fd);
Emeric Brund26a6232021-01-04 13:32:20 +0100368 fd = dgram->t.sock.fd = -1;
369 goto out;
370 }
371 ns->counters->sent++;
372
373 ofs += cnt + len;
374 }
375
376 /* we don't want/need to be waked up any more for sending
377 * because all ring content is sent */
378 fd_stop_send(fd);
379
380out:
381
Willy Tarreau4781b152021-04-06 13:53:36 +0200382 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brund26a6232021-01-04 13:32:20 +0100383 ofs += ring->ofs;
384 ns->dgram->ofs_req = ofs;
385 HA_RWLOCK_RDUNLOCK(DNS_LOCK, &ring->lock);
Emeric Brun314e6ec2022-05-10 11:35:48 +0200386 HA_SPIN_UNLOCK(DNS_LOCK, &dgram->lock);
Emeric Brund26a6232021-01-04 13:32:20 +0100387
388}
389
Emeric Brunc9437992021-02-12 19:42:55 +0100390/* proto_udp callback functions for a DNS resolution */
391struct dgram_data_cb dns_dgram_cb = {
392 .recv = dns_resolve_recv,
393 .send = dns_resolve_send,
394};
Baptiste Assmann325137d2015-04-13 23:40:55 +0200395
Emeric Brunc9437992021-02-12 19:42:55 +0100396int dns_dgram_init(struct dns_nameserver *ns, struct sockaddr_storage *sk)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200397{
Emeric Brunc9437992021-02-12 19:42:55 +0100398 struct dns_dgram_server *dgram;
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200399
Emeric Brunc9437992021-02-12 19:42:55 +0100400 if ((dgram = calloc(1, sizeof(*dgram))) == NULL)
Christopher Faulet67957bd2017-09-27 11:00:59 +0200401 return -1;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200402
Emeric Brunc9437992021-02-12 19:42:55 +0100403 /* Leave dgram partially initialized, no FD attached for
404 * now. */
405 dgram->conn.owner = ns;
406 dgram->conn.data = &dns_dgram_cb;
407 dgram->conn.t.sock.fd = -1;
408 dgram->conn.addr.to = *sk;
Emeric Brun314e6ec2022-05-10 11:35:48 +0200409 HA_SPIN_INIT(&dgram->conn.lock);
Emeric Brunc9437992021-02-12 19:42:55 +0100410 ns->dgram = dgram;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200411
Emeric Brunc9437992021-02-12 19:42:55 +0100412 dgram->ofs_req = ~0; /* init ring offset */
413 dgram->ring_req = ring_new(2*DNS_TCP_MSG_RING_MAX_SIZE);
414 if (!dgram->ring_req) {
415 ha_alert("memory allocation error initializing the ring for nameserver.\n");
416 goto out;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200417 }
418
Emeric Brunc9437992021-02-12 19:42:55 +0100419 /* attach the task as reader */
420 if (!ring_attach(dgram->ring_req)) {
421 /* mark server attached to the ring */
422 ha_alert("nameserver sets too many watchers > 255 on ring. This is a bug and should not happen.\n");
423 goto out;
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200424 }
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +0200425 return 0;
Emeric Brunc9437992021-02-12 19:42:55 +0100426out:
427 if (dgram->ring_req)
428 ring_free(dgram->ring_req);
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +0200429
Emeric Brunc9437992021-02-12 19:42:55 +0100430 free(dgram);
Olivier Houchard2ec2db92018-01-08 16:28:57 +0100431
Emeric Brunfd647d52021-02-12 20:03:38 +0100432 return -1;
433}
434
435/*
436 * IO Handler to handle message push to dns tcp server
Willy Tarreau0d626a52022-05-04 20:41:19 +0200437 * It takes its context from appctx->svcctx.
Emeric Brunfd647d52021-02-12 20:03:38 +0100438 */
439static void dns_session_io_handler(struct appctx *appctx)
440{
Willy Tarreauc12b3212022-05-27 11:08:15 +0200441 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau0d626a52022-05-04 20:41:19 +0200442 struct dns_session *ds = appctx->svcctx;
Emeric Brunfd647d52021-02-12 20:03:38 +0100443 struct ring *ring = &ds->ring;
444 struct buffer *buf = &ring->buf;
445 uint64_t msg_len;
446 int available_room;
447 size_t len, cnt, ofs;
448 int ret = 0;
449
450 /* if stopping was requested, close immediately */
451 if (unlikely(stopping))
452 goto close;
453
454 /* we want to be sure to not miss that we have been awaked for a shutdown */
455 __ha_barrier_load();
456
457 /* that means the connection was requested to shutdown
458 * for instance idle expire */
459 if (ds->shutdown)
460 goto close;
461
Christopher Fauletda89e9b2023-01-04 14:11:10 +0100462 if (unlikely(sc_ic(sc)->flags & CF_SHUTW))
Emeric Brunfd647d52021-02-12 20:03:38 +0100463 goto close;
464
465 /* con closed by server side, we will skip data write and drain data from channel */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200466 if ((sc_oc(sc)->flags & CF_SHUTW)) {
Emeric Brunfd647d52021-02-12 20:03:38 +0100467 goto read;
468 }
469
470 /* if the connection is not established, inform the stream that we want
471 * to be notified whenever the connection completes.
472 */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200473 if (sc_opposite(sc)->state < SC_ST_EST) {
Willy Tarreau90e8b452022-05-25 18:21:43 +0200474 applet_need_more_data(appctx);
Willy Tarreaub23edc82022-05-24 16:49:03 +0200475 se_need_remote_conn(appctx->sedesc);
Willy Tarreau4164eb92022-05-25 15:42:03 +0200476 applet_have_more_data(appctx);
Emeric Brunfd647d52021-02-12 20:03:38 +0100477 return;
478 }
479
480
481 ofs = ds->ofs;
482
483 HA_RWLOCK_WRLOCK(DNS_LOCK, &ring->lock);
484 LIST_DEL_INIT(&appctx->wait_entry);
485 HA_RWLOCK_WRUNLOCK(DNS_LOCK, &ring->lock);
486
487 HA_RWLOCK_RDLOCK(DNS_LOCK, &ring->lock);
488
489 /* explanation for the initialization below: it would be better to do
490 * this in the parsing function but this would occasionally result in
491 * dropped events because we'd take a reference on the oldest message
492 * and keep it while being scheduled. Thus instead let's take it the
493 * first time we enter here so that we have a chance to pass many
494 * existing messages before grabbing a reference to a location. This
495 * value cannot be produced after initialization.
496 */
497 if (unlikely(ofs == ~0)) {
498 ofs = 0;
499
Willy Tarreau4781b152021-04-06 13:53:36 +0200500 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brunfd647d52021-02-12 20:03:38 +0100501 ofs += ring->ofs;
502 }
503
504 /* in this loop, ofs always points to the counter byte that precedes
505 * the message so that we can take our reference there if we have to
506 * stop before the end (ret=0).
507 */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200508 if (sc_opposite(sc)->state == SC_ST_EST) {
Emeric Brunfd647d52021-02-12 20:03:38 +0100509 /* we were already there, adjust the offset to be relative to
510 * the buffer's head and remove us from the counter.
511 */
512 ofs -= ring->ofs;
513 BUG_ON(ofs >= buf->size);
Willy Tarreau4781b152021-04-06 13:53:36 +0200514 HA_ATOMIC_DEC(b_peek(buf, ofs));
Emeric Brunfd647d52021-02-12 20:03:38 +0100515
516 ret = 1;
517 while (ofs + 1 < b_data(buf)) {
518 struct dns_query *query;
519 uint16_t original_qid;
520 uint16_t new_qid;
521
522 cnt = 1;
523 len = b_peek_varint(buf, ofs + cnt, &msg_len);
524 if (!len)
525 break;
526 cnt += len;
527 BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf));
528
529 /* retrieve available room on output channel */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200530 available_room = channel_recv_max(sc_ic(sc));
Emeric Brunfd647d52021-02-12 20:03:38 +0100531
532 /* tx_msg_offset null means we are at the start of a new message */
533 if (!ds->tx_msg_offset) {
534 uint16_t slen;
535
536 /* check if there is enough room to put message len and query id */
537 if (available_room < sizeof(slen) + sizeof(new_qid)) {
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200538 sc_need_room(sc);
Emeric Brunfd647d52021-02-12 20:03:38 +0100539 ret = 0;
540 break;
541 }
542
543 /* put msg len into then channel */
544 slen = (uint16_t)msg_len;
545 slen = htons(slen);
Willy Tarreaud0a06d52022-05-18 15:07:19 +0200546 applet_putblk(appctx, (char *)&slen, sizeof(slen));
Emeric Brunfd647d52021-02-12 20:03:38 +0100547 available_room -= sizeof(slen);
548
549 /* backup original query id */
550 len = b_getblk(buf, (char *)&original_qid, sizeof(original_qid), ofs + cnt);
Emeric Brun538bb042021-02-15 13:58:06 +0100551 if (!len) {
552 /* should never happen since messages are atomically
553 * written into ring
554 */
555 ret = 0;
556 break;
557 }
Emeric Brunfd647d52021-02-12 20:03:38 +0100558
559 /* generates new query id */
560 new_qid = ++ds->query_counter;
561 new_qid = htons(new_qid);
562
563 /* put new query id into the channel */
Willy Tarreaud0a06d52022-05-18 15:07:19 +0200564 applet_putblk(appctx, (char *)&new_qid, sizeof(new_qid));
Emeric Brunfd647d52021-02-12 20:03:38 +0100565 available_room -= sizeof(new_qid);
566
567 /* keep query id mapping */
568
569 query = pool_alloc(dns_query_pool);
570 if (query) {
571 query->qid.key = new_qid;
572 query->original_qid = original_qid;
573 query->expire = tick_add(now_ms, 5000);
574 LIST_INIT(&query->list);
575 if (LIST_ISEMPTY(&ds->queries)) {
576 /* enable task to handle expire */
577 ds->task_exp->expire = query->expire;
578 /* ensure this will be executed by the same
579 * thread than ds_session_release
580 * to ensure session_release is free
581 * to destroy the task */
582 task_queue(ds->task_exp);
583 }
Willy Tarreau2b718102021-04-21 07:32:39 +0200584 LIST_APPEND(&ds->queries, &query->list);
Emeric Brunfd647d52021-02-12 20:03:38 +0100585 eb32_insert(&ds->query_ids, &query->qid);
586 ds->onfly_queries++;
587 }
588
589 /* update the tx_offset to handle output in 16k streams */
590 ds->tx_msg_offset = sizeof(original_qid);
591
592 }
593
594 /* check if it remains available room on output chan */
595 if (unlikely(!available_room)) {
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200596 sc_need_room(sc);
Emeric Brunfd647d52021-02-12 20:03:38 +0100597 ret = 0;
598 break;
599 }
600
601 chunk_reset(&trash);
602 if ((msg_len - ds->tx_msg_offset) > available_room) {
603 /* remaining msg data is too large to be written in output channel at one time */
604
605 len = b_getblk(buf, trash.area, available_room, ofs + cnt + ds->tx_msg_offset);
606
607 /* update offset to complete mesg forwarding later */
608 ds->tx_msg_offset += len;
609 }
610 else {
611 /* remaining msg data can be written in output channel at one time */
612 len = b_getblk(buf, trash.area, msg_len - ds->tx_msg_offset, ofs + cnt + ds->tx_msg_offset);
613
614 /* reset tx_msg_offset to mark forward fully processed */
615 ds->tx_msg_offset = 0;
616 }
617 trash.data += len;
618
Willy Tarreaud0a06d52022-05-18 15:07:19 +0200619 if (applet_putchk(appctx, &trash) == -1) {
Emeric Brun743afee2021-02-15 14:12:06 +0100620 /* should never happen since we
621 * check available_room is large
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +0500622 * enough here.
Emeric Brun743afee2021-02-15 14:12:06 +0100623 */
Emeric Brun743afee2021-02-15 14:12:06 +0100624 ret = 0;
625 break;
626 }
Emeric Brunfd647d52021-02-12 20:03:38 +0100627
628 if (ds->tx_msg_offset) {
629 /* msg was not fully processed, we must be awake to drain pending data */
630
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200631 sc_need_room(sc);
Emeric Brunfd647d52021-02-12 20:03:38 +0100632 ret = 0;
633 break;
634 }
635 /* switch to next message */
636 ofs += cnt + msg_len;
637 }
638
Willy Tarreau4781b152021-04-06 13:53:36 +0200639 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brunfd647d52021-02-12 20:03:38 +0100640 ofs += ring->ofs;
641 ds->ofs = ofs;
642 }
643 HA_RWLOCK_RDUNLOCK(DNS_LOCK, &ring->lock);
644
645 if (ret) {
646 /* let's be woken up once new request to write arrived */
647 HA_RWLOCK_WRLOCK(DNS_LOCK, &ring->lock);
Willy Tarreau62e467c2021-10-20 11:02:13 +0200648 BUG_ON(LIST_INLIST(&appctx->wait_entry));
Willy Tarreau2b718102021-04-21 07:32:39 +0200649 LIST_APPEND(&ring->waiters, &appctx->wait_entry);
Emeric Brunfd647d52021-02-12 20:03:38 +0100650 HA_RWLOCK_WRUNLOCK(DNS_LOCK, &ring->lock);
Willy Tarreau4164eb92022-05-25 15:42:03 +0200651 applet_have_no_more_data(appctx);
Emeric Brunfd647d52021-02-12 20:03:38 +0100652 }
653
654read:
655
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +0500656 /* if session is not a waiter it means there is no committed
Emeric Brunfd647d52021-02-12 20:03:38 +0100657 * message into rx_buf and we are free to use it
658 * Note: we need a load barrier here to not miss the
659 * delete from the list
660 */
Emeric Brun70455902021-10-20 10:49:53 +0200661
Willy Tarreaudde1b442021-10-21 14:33:38 +0200662 __ha_barrier_load();
663 if (!LIST_INLIST_ATOMIC(&ds->waiter)) {
Emeric Brunfd647d52021-02-12 20:03:38 +0100664 while (1) {
665 uint16_t query_id;
666 struct eb32_node *eb;
667 struct dns_query *query;
668
669 if (!ds->rx_msg.len) {
670 /* next message len is not fully available into the channel */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200671 if (co_data(sc_oc(sc)) < 2)
Emeric Brunfd647d52021-02-12 20:03:38 +0100672 break;
673
674 /* retrieve message len */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200675 co_getblk(sc_oc(sc), (char *)&msg_len, 2, 0);
Emeric Brunfd647d52021-02-12 20:03:38 +0100676
677 /* mark as consumed */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200678 co_skip(sc_oc(sc), 2);
Emeric Brunfd647d52021-02-12 20:03:38 +0100679
680 /* store message len */
681 ds->rx_msg.len = ntohs(msg_len);
682 }
683
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200684 if (!co_data(sc_oc(sc))) {
Emeric Brunfd647d52021-02-12 20:03:38 +0100685 /* we need more data but nothing is available */
686 break;
687 }
688
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200689 if (co_data(sc_oc(sc)) + ds->rx_msg.offset < ds->rx_msg.len) {
Emeric Brunfd647d52021-02-12 20:03:38 +0100690 /* message only partially available */
691
692 /* read available data */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200693 co_getblk(sc_oc(sc), ds->rx_msg.area + ds->rx_msg.offset, co_data(sc_oc(sc)), 0);
Emeric Brunfd647d52021-02-12 20:03:38 +0100694
695 /* update message offset */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200696 ds->rx_msg.offset += co_data(sc_oc(sc));
Emeric Brunfd647d52021-02-12 20:03:38 +0100697
698 /* consume all pending data from the channel */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200699 co_skip(sc_oc(sc), co_data(sc_oc(sc)));
Emeric Brunfd647d52021-02-12 20:03:38 +0100700
701 /* we need to wait for more data */
702 break;
703 }
704
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +0500705 /* enough data is available into the channel to read the message until the end */
Emeric Brunfd647d52021-02-12 20:03:38 +0100706
707 /* read from the channel until the end of the message */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200708 co_getblk(sc_oc(sc), ds->rx_msg.area + ds->rx_msg.offset, ds->rx_msg.len - ds->rx_msg.offset, 0);
Emeric Brunfd647d52021-02-12 20:03:38 +0100709
710 /* consume all data until the end of the message from the channel */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200711 co_skip(sc_oc(sc), ds->rx_msg.len - ds->rx_msg.offset);
Emeric Brunfd647d52021-02-12 20:03:38 +0100712
713 /* reset reader offset to 0 for next message reand */
714 ds->rx_msg.offset = 0;
715
716 /* try remap query id to original */
717 memcpy(&query_id, ds->rx_msg.area, sizeof(query_id));
718 eb = eb32_lookup(&ds->query_ids, query_id);
719 if (!eb) {
720 /* query id not found means we have an unknown corresponding
721 * request, perhaps server's bug or or the query reached
722 * timeout
723 */
724 ds->rx_msg.len = 0;
725 continue;
726 }
727
728 /* re-map the original query id set by the requester */
729 query = eb32_entry(eb, struct dns_query, qid);
730 memcpy(ds->rx_msg.area, &query->original_qid, sizeof(query->original_qid));
731
732 /* remove query ids mapping from pending queries list/tree */
733 eb32_delete(&query->qid);
Willy Tarreau2b718102021-04-21 07:32:39 +0200734 LIST_DELETE(&query->list);
Emeric Brunfd647d52021-02-12 20:03:38 +0100735 pool_free(dns_query_pool, query);
736 ds->onfly_queries--;
737
Emeric Brunfd647d52021-02-12 20:03:38 +0100738 /* the dns_session is also added in queue of the
739 * wait_sess list where the task processing
740 * response will pop available responses
741 */
Willy Tarreaudde1b442021-10-21 14:33:38 +0200742 HA_SPIN_LOCK(DNS_LOCK, &ds->dss->lock);
743
Willy Tarreau62e467c2021-10-20 11:02:13 +0200744 BUG_ON(LIST_INLIST(&ds->waiter));
Willy Tarreau2b718102021-04-21 07:32:39 +0200745 LIST_APPEND(&ds->dss->wait_sess, &ds->waiter);
Emeric Brunfd647d52021-02-12 20:03:38 +0100746
Willy Tarreaudde1b442021-10-21 14:33:38 +0200747 HA_SPIN_UNLOCK(DNS_LOCK, &ds->dss->lock);
748
Emeric Brunfd647d52021-02-12 20:03:38 +0100749 /* awake the task processing the responses */
750 task_wakeup(ds->dss->task_rsp, TASK_WOKEN_INIT);
751
752 break;
753 }
754
Willy Tarreau2b718102021-04-21 07:32:39 +0200755 if (!LIST_INLIST(&ds->waiter)) {
Emeric Brunfd647d52021-02-12 20:03:38 +0100756 /* there is no more pending data to read and the con was closed by the server side */
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200757 if (!co_data(sc_oc(sc)) && (sc_oc(sc)->flags & CF_SHUTW)) {
Emeric Brunfd647d52021-02-12 20:03:38 +0100758 goto close;
759 }
760 }
761
762 }
763
Emeric Brunfd647d52021-02-12 20:03:38 +0100764 return;
765close:
Willy Tarreaud7950ad2022-05-27 10:33:42 +0200766 sc_shutw(sc);
767 sc_shutr(sc);
Christopher Faulet6e1bbc42022-12-12 08:08:15 +0100768 sc_ic(sc)->flags |= CF_READ_EVENT;
Emeric Brunfd647d52021-02-12 20:03:38 +0100769}
770
771void dns_queries_flush(struct dns_session *ds)
772{
773 struct dns_query *query, *queryb;
774
775 list_for_each_entry_safe(query, queryb, &ds->queries, list) {
776 eb32_delete(&query->qid);
Willy Tarreau2b718102021-04-21 07:32:39 +0200777 LIST_DELETE(&query->list);
Emeric Brunfd647d52021-02-12 20:03:38 +0100778 pool_free(dns_query_pool, query);
779 }
780}
781
782void dns_session_free(struct dns_session *ds)
783{
784 if (ds->rx_msg.area)
785 pool_free(dns_msg_buf, ds->rx_msg.area);
786 if (ds->tx_ring_area)
787 pool_free(dns_msg_buf, ds->tx_ring_area);
788 if (ds->task_exp)
789 task_destroy(ds->task_exp);
790
791 dns_queries_flush(ds);
792
Emeric Brund20dc212021-10-19 15:40:10 +0200793 /* Ensure to remove this session from external lists
794 * Note: we are under the lock of dns_stream_server
795 * which own the heads of those lists.
796 */
797 LIST_DEL_INIT(&ds->waiter);
798 LIST_DEL_INIT(&ds->list);
799
Emeric Brunfd647d52021-02-12 20:03:38 +0100800 ds->dss->cur_conns--;
801 /* Note: this is useless to update
802 * max_active_conns here because
803 * we decrease the value
804 */
Willy Tarreau62e467c2021-10-20 11:02:13 +0200805
806 BUG_ON(!LIST_ISEMPTY(&ds->list));
807 BUG_ON(!LIST_ISEMPTY(&ds->waiter));
808 BUG_ON(!LIST_ISEMPTY(&ds->queries));
809 BUG_ON(!LIST_ISEMPTY(&ds->ring.waiters));
810 BUG_ON(!eb_is_empty(&ds->query_ids));
Emeric Brunfd647d52021-02-12 20:03:38 +0100811 pool_free(dns_session_pool, ds);
812}
813
814static struct appctx *dns_session_create(struct dns_session *ds);
815
Christopher Faulet92238512022-05-12 15:24:46 +0200816static int dns_session_init(struct appctx *appctx)
817{
818 struct dns_session *ds = appctx->svcctx;
819 struct stream *s;
820 struct sockaddr_storage *addr = NULL;
821
822 if (!sockaddr_alloc(&addr, &ds->dss->srv->addr, sizeof(ds->dss->srv->addr)))
823 goto error;
824
825 if (appctx_finalize_startup(appctx, ds->dss->srv->proxy, &BUF_NULL) == -1)
826 goto error;
827
828 s = appctx_strm(appctx);
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +0200829 s->scb->dst = addr;
Willy Tarreaucb041662022-05-17 19:44:42 +0200830 s->scb->flags |= SC_FL_NOLINGER;
Christopher Faulet92238512022-05-12 15:24:46 +0200831 s->target = &ds->dss->srv->obj_type;
832 s->flags = SF_ASSIGNED;
833
834 s->do_log = NULL;
835 s->uniq_id = 0;
836
837 s->res.flags |= CF_READ_DONTWAIT;
Christopher Faulet5aaacfb2023-02-15 08:13:33 +0100838 /* set rex to eternity to not expire on idle recv:
Christopher Faulet92238512022-05-12 15:24:46 +0200839 * We are using a syslog server.
840 */
Christopher Fauletf8413cb2023-02-07 16:06:14 +0100841 sc_ep_reset_rex(s->scb);
Christopher Faulet2ca4cc12023-02-22 14:22:56 +0100842 applet_expect_no_data(appctx);
Christopher Faulet92238512022-05-12 15:24:46 +0200843 ds->appctx = appctx;
844 return 0;
845
846 error:
847 return -1;
848}
849
Emeric Brunfd647d52021-02-12 20:03:38 +0100850/*
851 * Function to release a DNS tcp session
852 */
853static void dns_session_release(struct appctx *appctx)
854{
Willy Tarreau0d626a52022-05-04 20:41:19 +0200855 struct dns_session *ds = appctx->svcctx;
Willy Tarreaue3e648c2021-02-24 17:38:46 +0100856 struct dns_stream_server *dss __maybe_unused;
Emeric Brunfd647d52021-02-12 20:03:38 +0100857
858 if (!ds)
859 return;
860
Willy Tarreaub56a8782021-10-20 14:38:43 +0200861 /* We do not call ring_appctx_detach here
862 * because we want to keep readers counters
863 * to retry a conn with a different appctx.
864 */
865 HA_RWLOCK_WRLOCK(DNS_LOCK, &ds->ring.lock);
866 LIST_DEL_INIT(&appctx->wait_entry);
867 HA_RWLOCK_WRUNLOCK(DNS_LOCK, &ds->ring.lock);
868
Emeric Brunfd647d52021-02-12 20:03:38 +0100869 dss = ds->dss;
870
871 HA_SPIN_LOCK(DNS_LOCK, &dss->lock);
872 LIST_DEL_INIT(&ds->list);
873
874 if (stopping) {
875 dns_session_free(ds);
876 HA_SPIN_UNLOCK(DNS_LOCK, &dss->lock);
877 return;
878 }
879
880 if (!ds->nb_queries) {
881 /* this is an idle session */
882 /* Note: this is useless to update max_active_sess
883 * here because we decrease idle_conns but
884 * dns_session_free decrease curconns
885 */
886
887 ds->dss->idle_conns--;
888 dns_session_free(ds);
889 HA_SPIN_UNLOCK(DNS_LOCK, &dss->lock);
890 return;
891 }
892
893 if (ds->onfly_queries == ds->nb_queries) {
894 /* the session can be released because
895 * it means that all queries AND
896 * responses are in fly */
897 dns_session_free(ds);
898 HA_SPIN_UNLOCK(DNS_LOCK, &dss->lock);
899 return;
900 }
901
Emeric Brunfd647d52021-02-12 20:03:38 +0100902 /* if there is no pending complete response
903 * message, ensure to reset
904 * message offsets if the session
905 * was closed with an incomplete pending response
906 */
Willy Tarreau2b718102021-04-21 07:32:39 +0200907 if (!LIST_INLIST(&ds->waiter))
Emeric Brunfd647d52021-02-12 20:03:38 +0100908 ds->rx_msg.len = ds->rx_msg.offset = 0;
909
910 /* we flush pending sent queries because we never
911 * have responses
912 */
913 ds->nb_queries -= ds->onfly_queries;
914 dns_queries_flush(ds);
915
916 /* reset offset to be sure to start from message start */
917 ds->tx_msg_offset = 0;
918
919 /* here the ofs and the attached counter
920 * are kept unchanged
921 */
922
923 /* Create a new appctx, We hope we can
924 * create from the release callback! */
925 ds->appctx = dns_session_create(ds);
926 if (!ds->appctx) {
927 dns_session_free(ds);
928 HA_SPIN_UNLOCK(DNS_LOCK, &dss->lock);
929 return;
930 }
931
932 if (ds->nb_queries < DNS_STREAM_MAX_PIPELINED_REQ)
Willy Tarreau2b718102021-04-21 07:32:39 +0200933 LIST_INSERT(&ds->dss->free_sess, &ds->list);
Emeric Brunfd647d52021-02-12 20:03:38 +0100934
935 HA_SPIN_UNLOCK(DNS_LOCK, &dss->lock);
936}
937
938/* DNS tcp session applet */
939static struct applet dns_session_applet = {
940 .obj_type = OBJ_TYPE_APPLET,
941 .name = "<STRMDNS>", /* used for logging */
942 .fct = dns_session_io_handler,
Christopher Faulet92238512022-05-12 15:24:46 +0200943 .init = dns_session_init,
Emeric Brunfd647d52021-02-12 20:03:38 +0100944 .release = dns_session_release,
945};
946
947/*
948 * Function used to create an appctx for a DNS session
Willy Tarreau0d626a52022-05-04 20:41:19 +0200949 * It sets its context into appctx->svcctx.
Emeric Brunfd647d52021-02-12 20:03:38 +0100950 */
951static struct appctx *dns_session_create(struct dns_session *ds)
952{
953 struct appctx *appctx;
Emeric Brunfd647d52021-02-12 20:03:38 +0100954
Christopher Faulet6095d572022-05-16 17:09:48 +0200955 appctx = appctx_new_here(&dns_session_applet, NULL);
Christopher Faulet2479e5f2022-01-19 14:50:11 +0100956 if (!appctx)
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100957 goto out_close;
Willy Tarreau0d626a52022-05-04 20:41:19 +0200958 appctx->svcctx = (void *)ds;
Emeric Brunfd647d52021-02-12 20:03:38 +0100959
Christopher Faulet92238512022-05-12 15:24:46 +0200960 if (appctx_init(appctx) == -1) {
Christopher Faulet13a35e52021-12-20 15:34:16 +0100961 ha_alert("out of memory in dns_session_create().\n");
Emeric Brunfd647d52021-02-12 20:03:38 +0100962 goto out_free_appctx;
Christopher Faulet13a35e52021-12-20 15:34:16 +0100963 }
964
Emeric Brunfd647d52021-02-12 20:03:38 +0100965 return appctx;
966
967 /* Error unrolling */
Emeric Brunfd647d52021-02-12 20:03:38 +0100968 out_free_appctx:
Christopher Faulet92238512022-05-12 15:24:46 +0200969 appctx_free_on_early_error(appctx);
Emeric Brunfd647d52021-02-12 20:03:38 +0100970 out_close:
971 return NULL;
972}
973
974/* Task processing expiration of unresponded queries, this one is supposed
975 * to be stuck on the same thread than the appctx handler
976 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100977static struct task *dns_process_query_exp(struct task *t, void *context, unsigned int state)
Emeric Brunfd647d52021-02-12 20:03:38 +0100978{
979 struct dns_session *ds = (struct dns_session *)context;
980 struct dns_query *query, *queryb;
981
982 t->expire = TICK_ETERNITY;
983
984 list_for_each_entry_safe(query, queryb, &ds->queries, list) {
985 if (tick_is_expired(query->expire, now_ms)) {
986 eb32_delete(&query->qid);
Willy Tarreau2b718102021-04-21 07:32:39 +0200987 LIST_DELETE(&query->list);
Emeric Brunfd647d52021-02-12 20:03:38 +0100988 pool_free(dns_query_pool, query);
989 ds->onfly_queries--;
990 }
991 else {
992 t->expire = query->expire;
993 break;
994 }
995 }
996
997 return t;
998}
999
1000/* Task processing expiration of idle sessions */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001001static struct task *dns_process_idle_exp(struct task *t, void *context, unsigned int state)
Emeric Brunfd647d52021-02-12 20:03:38 +01001002{
1003 struct dns_stream_server *dss = (struct dns_stream_server *)context;
1004 struct dns_session *ds, *dsb;
1005 int target = 0;
1006 int cur_active_conns;
1007
1008 HA_SPIN_LOCK(DNS_LOCK, &dss->lock);
1009
1010
1011 cur_active_conns = dss->cur_conns - dss->idle_conns;
1012 if (cur_active_conns > dss->max_active_conns)
1013 dss->max_active_conns = cur_active_conns;
1014
1015 target = (dss->max_active_conns - cur_active_conns) / 2;
1016 list_for_each_entry_safe(ds, dsb, &dss->idle_sess, list) {
1017 if (!target)
1018 break;
1019
1020 /* remove conn to pending list to ensure it won't be reused */
1021 LIST_DEL_INIT(&ds->list);
1022
1023 /* force session shutdown */
1024 ds->shutdown = 1;
1025
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +05001026 /* to be sure that the appctx won't miss shutdown */
Emeric Brunfd647d52021-02-12 20:03:38 +01001027 __ha_barrier_store();
1028
1029 /* wake appctx to perform the shutdown */
1030 appctx_wakeup(ds->appctx);
1031 }
1032
1033 /* reset max to current active conns */
1034 dss->max_active_conns = cur_active_conns;
1035
1036 HA_SPIN_UNLOCK(DNS_LOCK, &dss->lock);
1037
1038 t->expire = tick_add(now_ms, 5000);
1039
1040 return t;
1041}
1042
1043struct dns_session *dns_session_new(struct dns_stream_server *dss)
1044{
1045 struct dns_session *ds;
1046
1047 if (dss->maxconn && (dss->maxconn <= dss->cur_conns))
1048 return NULL;
1049
Christopher Faulet14a60d42022-08-03 10:30:06 +02001050 ds = pool_zalloc(dns_session_pool);
Emeric Brunfd647d52021-02-12 20:03:38 +01001051 if (!ds)
1052 return NULL;
1053
1054 ds->ofs = ~0;
1055 ds->dss = dss;
1056 LIST_INIT(&ds->list);
1057 LIST_INIT(&ds->queries);
1058 LIST_INIT(&ds->waiter);
1059 ds->rx_msg.offset = ds->rx_msg.len = 0;
1060 ds->rx_msg.area = NULL;
1061 ds->tx_ring_area = NULL;
1062 ds->task_exp = NULL;
1063 ds->appctx = NULL;
1064 ds->shutdown = 0;
1065 ds->nb_queries = 0;
1066 ds->query_ids = EB_ROOT_UNIQUE;
1067 ds->rx_msg.area = pool_alloc(dns_msg_buf);
1068 if (!ds->rx_msg.area)
1069 goto error;
1070
1071 ds->tx_ring_area = pool_alloc(dns_msg_buf);
1072 if (!ds->tx_ring_area)
1073 goto error;
1074
1075 ring_init(&ds->ring, ds->tx_ring_area, DNS_TCP_MSG_RING_MAX_SIZE);
Christopher Faulet1a1b6742021-03-04 16:53:27 +01001076 /* never fail because it is the first watcher attached to the ring */
1077 DISGUISE(ring_attach(&ds->ring));
Emeric Brunfd647d52021-02-12 20:03:38 +01001078
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001079 if ((ds->task_exp = task_new_here()) == NULL)
Emeric Brunfd647d52021-02-12 20:03:38 +01001080 goto error;
1081
1082 ds->task_exp->process = dns_process_query_exp;
1083 ds->task_exp->context = ds;
1084
1085 ds->appctx = dns_session_create(ds);
1086 if (!ds->appctx)
1087 goto error;
1088
1089 dss->cur_conns++;
1090
1091 return ds;
1092
1093error:
1094 if (ds->task_exp)
1095 task_destroy(ds->task_exp);
1096 if (ds->rx_msg.area)
1097 pool_free(dns_msg_buf, ds->rx_msg.area);
1098 if (ds->tx_ring_area)
1099 pool_free(dns_msg_buf, ds->tx_ring_area);
1100
1101 pool_free(dns_session_pool, ds);
1102
1103 return NULL;
1104}
1105
1106/*
1107 * Task used to consume pending messages from nameserver ring
1108 * and forward them to dns_session ring.
1109 * Note: If no slot found a new dns_session is allocated
1110 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001111static struct task *dns_process_req(struct task *t, void *context, unsigned int state)
Emeric Brunfd647d52021-02-12 20:03:38 +01001112{
1113 struct dns_nameserver *ns = (struct dns_nameserver *)context;
1114 struct dns_stream_server *dss = ns->stream;
1115 struct ring *ring = dss->ring_req;
1116 struct buffer *buf = &ring->buf;
1117 uint64_t msg_len;
1118 size_t len, cnt, ofs;
1119 struct dns_session *ds, *ads;
1120 HA_SPIN_LOCK(DNS_LOCK, &dss->lock);
1121
1122 ofs = dss->ofs_req;
1123
1124 HA_RWLOCK_RDLOCK(DNS_LOCK, &ring->lock);
1125
1126 /* explanation for the initialization below: it would be better to do
1127 * this in the parsing function but this would occasionally result in
1128 * dropped events because we'd take a reference on the oldest message
1129 * and keep it while being scheduled. Thus instead let's take it the
1130 * first time we enter here so that we have a chance to pass many
1131 * existing messages before grabbing a reference to a location. This
1132 * value cannot be produced after initialization.
1133 */
1134 if (unlikely(ofs == ~0)) {
1135 ofs = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02001136 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brunfd647d52021-02-12 20:03:38 +01001137 ofs += ring->ofs;
1138 }
1139
1140 /* we were already there, adjust the offset to be relative to
1141 * the buffer's head and remove us from the counter.
1142 */
1143 ofs -= ring->ofs;
1144 BUG_ON(ofs >= buf->size);
Willy Tarreau4781b152021-04-06 13:53:36 +02001145 HA_ATOMIC_DEC(b_peek(buf, ofs));
Emeric Brunfd647d52021-02-12 20:03:38 +01001146
1147 while (ofs + 1 < b_data(buf)) {
1148 struct ist myist;
1149
1150 cnt = 1;
1151 len = b_peek_varint(buf, ofs + cnt, &msg_len);
1152 if (!len)
1153 break;
1154 cnt += len;
1155 BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf));
1156 if (unlikely(msg_len > DNS_TCP_MSG_MAX_SIZE)) {
1157 /* too large a message to ever fit, let's skip it */
1158 ofs += cnt + msg_len;
1159 continue;
1160 }
1161
1162 len = b_getblk(buf, dns_msg_trash, msg_len, ofs + cnt);
1163
Tim Duesterhus92c696e2021-02-28 16:11:36 +01001164 myist = ist2(dns_msg_trash, len);
Emeric Brunfd647d52021-02-12 20:03:38 +01001165
1166 ads = NULL;
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +05001167 /* try to push request into active sess with free slot */
Emeric Brunfd647d52021-02-12 20:03:38 +01001168 if (!LIST_ISEMPTY(&dss->free_sess)) {
1169 ds = LIST_NEXT(&dss->free_sess, struct dns_session *, list);
1170
1171 if (ring_write(&ds->ring, DNS_TCP_MSG_MAX_SIZE, NULL, 0, &myist, 1) > 0) {
1172 ds->nb_queries++;
1173 if (ds->nb_queries >= DNS_STREAM_MAX_PIPELINED_REQ)
1174 LIST_DEL_INIT(&ds->list);
1175 ads = ds;
1176 }
1177 else {
1178 /* it means we were unable to put a request in this slot,
1179 * it may be close to be full so we put it at the end
1180 * of free conn list */
1181 LIST_DEL_INIT(&ds->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02001182 LIST_APPEND(&dss->free_sess, &ds->list);
Emeric Brunfd647d52021-02-12 20:03:38 +01001183 }
1184 }
1185
1186 if (!ads) {
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +05001187 /* try to push request into idle, this one should have enough free space */
Emeric Brunfd647d52021-02-12 20:03:38 +01001188 if (!LIST_ISEMPTY(&dss->idle_sess)) {
1189 ds = LIST_NEXT(&dss->idle_sess, struct dns_session *, list);
1190
1191 /* ring is empty so this ring_write should never fail */
1192 ring_write(&ds->ring, DNS_TCP_MSG_MAX_SIZE, NULL, 0, &myist, 1);
1193 ds->nb_queries++;
1194 LIST_DEL_INIT(&ds->list);
1195
1196 ds->dss->idle_conns--;
1197
1198 /* we may have to update the max_active_conns */
1199 if (ds->dss->max_active_conns < ds->dss->cur_conns - ds->dss->idle_conns)
1200 ds->dss->max_active_conns = ds->dss->cur_conns - ds->dss->idle_conns;
1201
1202 /* since we may unable to find a free list to handle
1203 * this request, this request may be large and fill
1204 * the ring buffer so we prefer to put at the end of free
1205 * list. */
Willy Tarreau2b718102021-04-21 07:32:39 +02001206 LIST_APPEND(&dss->free_sess, &ds->list);
Emeric Brunfd647d52021-02-12 20:03:38 +01001207 ads = ds;
1208 }
1209 }
1210
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +05001211 /* we didn't find a session available with large enough room */
Emeric Brunfd647d52021-02-12 20:03:38 +01001212 if (!ads) {
1213 /* allocate a new session */
1214 ads = dns_session_new(dss);
1215 if (ads) {
1216 /* ring is empty so this ring_write should never fail */
1217 ring_write(&ads->ring, DNS_TCP_MSG_MAX_SIZE, NULL, 0, &myist, 1);
1218 ads->nb_queries++;
Willy Tarreau2b718102021-04-21 07:32:39 +02001219 LIST_INSERT(&dss->free_sess, &ads->list);
Emeric Brunfd647d52021-02-12 20:03:38 +01001220 }
1221 else
1222 ns->counters->snd_error++;
1223 }
1224
1225 if (ads)
1226 ns->counters->sent++;
1227
1228 ofs += cnt + len;
1229 }
1230
Willy Tarreau4781b152021-04-06 13:53:36 +02001231 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brunfd647d52021-02-12 20:03:38 +01001232 ofs += ring->ofs;
1233 dss->ofs_req = ofs;
1234 HA_RWLOCK_RDUNLOCK(DNS_LOCK, &ring->lock);
1235
1236
1237 HA_SPIN_UNLOCK(DNS_LOCK, &dss->lock);
1238 return t;
1239}
1240
1241/*
1242 * Task used to consume response
1243 * Note: upper layer callback is called
1244 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001245static struct task *dns_process_rsp(struct task *t, void *context, unsigned int state)
Emeric Brunfd647d52021-02-12 20:03:38 +01001246{
1247 struct dns_nameserver *ns = (struct dns_nameserver *)context;
1248
1249 ns->process_responses(ns);
1250
1251 return t;
1252}
1253
1254/* Function used to initialize an TCP nameserver */
1255int dns_stream_init(struct dns_nameserver *ns, struct server *srv)
1256{
1257 struct dns_stream_server *dss = NULL;
1258
1259 dss = calloc(1, sizeof(*dss));
1260 if (!dss) {
1261 ha_alert("memory allocation error initializing dns tcp server '%s'.\n", srv->id);
1262 goto out;
1263 }
1264
1265 dss->srv = srv;
1266 dss->maxconn = srv->maxconn;
1267
1268 dss->ofs_req = ~0; /* init ring offset */
1269 dss->ring_req = ring_new(2*DNS_TCP_MSG_RING_MAX_SIZE);
1270 if (!dss->ring_req) {
1271 ha_alert("memory allocation error initializing the ring for dns tcp server '%s'.\n", srv->id);
1272 goto out;
1273 }
1274 /* Create the task associated to the resolver target handling conns */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001275 if ((dss->task_req = task_new_anywhere()) == NULL) {
Emeric Brunfd647d52021-02-12 20:03:38 +01001276 ha_alert("memory allocation error initializing the ring for dns tcp server '%s'.\n", srv->id);
1277 goto out;
1278 }
1279
1280 /* Update task's parameters */
1281 dss->task_req->process = dns_process_req;
1282 dss->task_req->context = ns;
1283
1284 /* attach the task as reader */
1285 if (!ring_attach(dss->ring_req)) {
1286 /* mark server attached to the ring */
1287 ha_alert("server '%s': too many watchers for ring. this should never happen.\n", srv->id);
1288 goto out;
1289 }
1290
1291 /* Create the task associated to the resolver target handling conns */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001292 if ((dss->task_rsp = task_new_anywhere()) == NULL) {
Emeric Brunfd647d52021-02-12 20:03:38 +01001293 ha_alert("memory allocation error initializing the ring for dns tcp server '%s'.\n", srv->id);
1294 goto out;
1295 }
1296
1297 /* Update task's parameters */
1298 dss->task_rsp->process = dns_process_rsp;
1299 dss->task_rsp->context = ns;
1300
1301 /* Create the task associated to the resolver target handling conns */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001302 if ((dss->task_idle = task_new_anywhere()) == NULL) {
Emeric Brunfd647d52021-02-12 20:03:38 +01001303 ha_alert("memory allocation error initializing the ring for dns tcp server '%s'.\n", srv->id);
1304 goto out;
1305 }
1306
1307 /* Update task's parameters */
1308 dss->task_idle->process = dns_process_idle_exp;
1309 dss->task_idle->context = dss;
1310 dss->task_idle->expire = tick_add(now_ms, 5000);
1311
Ilya Shipitsin0de36ad2021-02-20 00:23:36 +05001312 /* let start the task to free idle conns immediately */
Emeric Brunfd647d52021-02-12 20:03:38 +01001313 task_queue(dss->task_idle);
1314
1315 LIST_INIT(&dss->free_sess);
1316 LIST_INIT(&dss->idle_sess);
1317 LIST_INIT(&dss->wait_sess);
1318 HA_SPIN_INIT(&dss->lock);
1319 ns->stream = dss;
1320 return 0;
1321out:
1322 if (dss && dss->task_rsp)
1323 task_destroy(dss->task_rsp);
1324 if (dss && dss->task_req)
1325 task_destroy(dss->task_req);
1326 if (dss && dss->ring_req)
1327 ring_free(dss->ring_req);
1328
1329 free(dss);
Emeric Brunc9437992021-02-12 19:42:55 +01001330 return -1;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001331}
1332
Emeric Brunc9437992021-02-12 19:42:55 +01001333int init_dns_buffers()
Baptiste Assmann325137d2015-04-13 23:40:55 +02001334{
Emeric Brunc9437992021-02-12 19:42:55 +01001335 dns_msg_trash = malloc(DNS_TCP_MSG_MAX_SIZE);
1336 if (!dns_msg_trash)
1337 return 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001338
Emeric Brunc9437992021-02-12 19:42:55 +01001339 return 1;
1340}
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +02001341
Emeric Brunc9437992021-02-12 19:42:55 +01001342void deinit_dns_buffers()
1343{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001344 ha_free(&dns_msg_trash);
Emeric Brunc9437992021-02-12 19:42:55 +01001345}
Emeric Brund26a6232021-01-04 13:32:20 +01001346
1347REGISTER_PER_THREAD_ALLOC(init_dns_buffers);
1348REGISTER_PER_THREAD_FREE(deinit_dns_buffers);