blob: 0f421ccca1a6005ec9de9b42f8151ffe58c8426f [file] [log] [blame]
Willy Tarreau67b5a162019-08-11 16:38:56 +02001/*
2 * Event sink management
3 *
4 * Copyright (C) 2000-2019 Willy Tarreau - w@1wt.eu
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation, version 2.1
9 * exclusively.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
Willy Tarreau36979d92020-06-05 17:27:29 +020021#include <import/ist.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020022#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020023#include <haproxy/cfgparse.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020024#include <haproxy/cli.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020025#include <haproxy/errors.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020026#include <haproxy/list.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020027#include <haproxy/log.h>
Willy Tarreau817538e2021-05-08 20:20:21 +020028#include <haproxy/proxy.h>
Willy Tarreaud2ad57c2020-06-03 19:43:35 +020029#include <haproxy/ring.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +020030#include <haproxy/signal.h>
Willy Tarreauba2f73d2020-06-03 20:02:28 +020031#include <haproxy/sink.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020032#include <haproxy/stream_interface.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020033#include <haproxy/time.h>
Willy Tarreau4bad5e22021-05-08 13:05:30 +020034#include <haproxy/tools.h>
Willy Tarreau67b5a162019-08-11 16:38:56 +020035
36struct list sink_list = LIST_HEAD_INIT(sink_list);
37
Emeric Brun99c453d2020-05-25 15:01:04 +020038struct sink *cfg_sink;
39
Willy Tarreau67b5a162019-08-11 16:38:56 +020040struct sink *sink_find(const char *name)
41{
42 struct sink *sink;
43
44 list_for_each_entry(sink, &sink_list, sink_list)
45 if (strcmp(sink->name, name) == 0)
46 return sink;
47 return NULL;
48}
49
50/* creates a new sink and adds it to the list, it's still generic and not fully
51 * initialized. Returns NULL on allocation failure. If another one already
52 * exists with the same name, it will be returned. The caller can detect it as
53 * a newly created one has type SINK_TYPE_NEW.
54 */
Emeric Brun54648852020-07-06 15:54:06 +020055static struct sink *__sink_new(const char *name, const char *desc, int fmt)
Willy Tarreau67b5a162019-08-11 16:38:56 +020056{
57 struct sink *sink;
58
59 sink = sink_find(name);
60 if (sink)
61 goto end;
62
Emeric Brun494c5052020-05-28 11:13:15 +020063 sink = calloc(1, sizeof(*sink));
Willy Tarreau67b5a162019-08-11 16:38:56 +020064 if (!sink)
65 goto end;
66
Emeric Brun99c453d2020-05-25 15:01:04 +020067 sink->name = strdup(name);
Tim Duesterhusa7ebffe2021-01-03 19:54:11 +010068 if (!sink->name)
69 goto err;
70
Emeric Brun99c453d2020-05-25 15:01:04 +020071 sink->desc = strdup(desc);
Tim Duesterhusa7ebffe2021-01-03 19:54:11 +010072 if (!sink->desc)
73 goto err;
74
Willy Tarreau67b5a162019-08-11 16:38:56 +020075 sink->fmt = fmt;
76 sink->type = SINK_TYPE_NEW;
Christopher Fauleta63a5c22019-11-15 15:10:12 +010077 sink->maxlen = BUFSIZE;
Willy Tarreau67b5a162019-08-11 16:38:56 +020078 /* address will be filled by the caller if needed */
Willy Tarreau973e6622019-08-20 11:57:52 +020079 sink->ctx.fd = -1;
Willy Tarreau67b5a162019-08-11 16:38:56 +020080 sink->ctx.dropped = 0;
81 HA_RWLOCK_INIT(&sink->ctx.lock);
Willy Tarreau2b718102021-04-21 07:32:39 +020082 LIST_APPEND(&sink_list, &sink->sink_list);
Willy Tarreau67b5a162019-08-11 16:38:56 +020083 end:
84 return sink;
Tim Duesterhusa7ebffe2021-01-03 19:54:11 +010085
86 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +010087 ha_free(&sink->name);
88 ha_free(&sink->desc);
89 ha_free(&sink);
Tim Duesterhusa7ebffe2021-01-03 19:54:11 +010090
91 return NULL;
Willy Tarreau67b5a162019-08-11 16:38:56 +020092}
93
Willy Tarreau973e6622019-08-20 11:57:52 +020094/* creates a sink called <name> of type FD associated to fd <fd>, format <fmt>,
95 * and description <desc>. Returns NULL on allocation failure or conflict.
96 * Perfect duplicates are merged (same type, fd, and name).
97 */
Emeric Brun54648852020-07-06 15:54:06 +020098struct sink *sink_new_fd(const char *name, const char *desc, enum log_fmt fmt, int fd)
Willy Tarreau973e6622019-08-20 11:57:52 +020099{
100 struct sink *sink;
101
102 sink = __sink_new(name, desc, fmt);
103 if (!sink || (sink->type == SINK_TYPE_FD && sink->ctx.fd == fd))
104 goto end;
105
106 if (sink->type != SINK_TYPE_NEW) {
107 sink = NULL;
108 goto end;
109 }
110
111 sink->type = SINK_TYPE_FD;
112 sink->ctx.fd = fd;
113 end:
114 return sink;
115}
116
Willy Tarreau4ed23ca2019-08-23 15:47:49 +0200117/* creates a sink called <name> of type BUF of size <size>, format <fmt>,
118 * and description <desc>. Returns NULL on allocation failure or conflict.
119 * Perfect duplicates are merged (same type and name). If sizes differ, the
120 * largest one is kept.
121 */
Emeric Brun54648852020-07-06 15:54:06 +0200122struct sink *sink_new_buf(const char *name, const char *desc, enum log_fmt fmt, size_t size)
Willy Tarreau4ed23ca2019-08-23 15:47:49 +0200123{
124 struct sink *sink;
125
126 sink = __sink_new(name, desc, fmt);
127 if (!sink)
128 goto fail;
129
130 if (sink->type == SINK_TYPE_BUFFER) {
131 /* such a buffer already exists, we may have to resize it */
132 if (!ring_resize(sink->ctx.ring, size))
133 goto fail;
134 goto end;
135 }
136
137 if (sink->type != SINK_TYPE_NEW) {
138 /* already exists of another type */
139 goto fail;
140 }
141
142 sink->ctx.ring = ring_new(size);
143 if (!sink->ctx.ring) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200144 LIST_DELETE(&sink->sink_list);
Emeric Brun99c453d2020-05-25 15:01:04 +0200145 free(sink->name);
146 free(sink->desc);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +0200147 free(sink);
148 goto fail;
149 }
150
151 sink->type = SINK_TYPE_BUFFER;
152 end:
153 return sink;
154 fail:
155 return NULL;
156}
157
Willy Tarreau67b5a162019-08-11 16:38:56 +0200158/* tries to send <nmsg> message parts (up to 8, ignored above) from message
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500159 * array <msg> to sink <sink>. Formatting according to the sink's preference is
Willy Tarreau8f240232019-08-27 16:41:06 +0200160 * done here. Lost messages are NOT accounted for. It is preferable to call
161 * sink_write() instead which will also try to emit the number of dropped
162 * messages when there are any. It returns >0 if it could write anything,
163 * <=0 otherwise.
Willy Tarreau67b5a162019-08-11 16:38:56 +0200164 */
Emeric Brun54648852020-07-06 15:54:06 +0200165 ssize_t __sink_write(struct sink *sink, const struct ist msg[], size_t nmsg,
166 int level, int facility, struct ist *metadata)
167 {
168 struct ist *pfx = NULL;
Willy Tarreaua1426de2019-08-27 14:21:02 +0200169 size_t npfx = 0;
Emeric Brunbd163812020-05-06 14:33:46 +0200170
Emeric Brun54648852020-07-06 15:54:06 +0200171 if (sink->fmt == LOG_FORMAT_RAW)
Emeric Brunbd163812020-05-06 14:33:46 +0200172 goto send;
Willy Tarreau67b5a162019-08-11 16:38:56 +0200173
Emeric Brun54648852020-07-06 15:54:06 +0200174 pfx = build_log_header(sink->fmt, level, facility, metadata, &npfx);
Emeric Brunbd163812020-05-06 14:33:46 +0200175
176send:
Willy Tarreau973e6622019-08-20 11:57:52 +0200177 if (sink->type == SINK_TYPE_FD) {
Willy Tarreau8f240232019-08-27 16:41:06 +0200178 return fd_write_frag_line(sink->ctx.fd, sink->maxlen, pfx, npfx, msg, nmsg, 1);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +0200179 }
180 else if (sink->type == SINK_TYPE_BUFFER) {
Willy Tarreau8f240232019-08-27 16:41:06 +0200181 return ring_write(sink->ctx.ring, sink->maxlen, pfx, npfx, msg, nmsg);
Willy Tarreau973e6622019-08-20 11:57:52 +0200182 }
Willy Tarreau8f240232019-08-27 16:41:06 +0200183 return 0;
184}
Willy Tarreau67b5a162019-08-11 16:38:56 +0200185
Willy Tarreau8f240232019-08-27 16:41:06 +0200186/* Tries to emit a message indicating the number of dropped events. In case of
187 * success, the amount of drops is reduced by as much. It's supposed to be
188 * called under an exclusive lock on the sink to avoid multiple produces doing
189 * the same. On success, >0 is returned, otherwise <=0 on failure.
190 */
Emeric Brun54648852020-07-06 15:54:06 +0200191int sink_announce_dropped(struct sink *sink, int facility)
Willy Tarreau8f240232019-08-27 16:41:06 +0200192{
Emeric Brun54648852020-07-06 15:54:06 +0200193 static THREAD_LOCAL struct ist metadata[LOG_META_FIELDS];
194 static THREAD_LOCAL pid_t curr_pid;
195 static THREAD_LOCAL char pidstr[16];
Willy Tarreau8f240232019-08-27 16:41:06 +0200196 unsigned int dropped;
197 struct buffer msg;
198 struct ist msgvec[1];
199 char logbuf[64];
200
201 while (unlikely((dropped = sink->ctx.dropped) > 0)) {
202 chunk_init(&msg, logbuf, sizeof(logbuf));
203 chunk_printf(&msg, "%u event%s dropped", dropped, dropped > 1 ? "s" : "");
204 msgvec[0] = ist2(msg.area, msg.data);
Emeric Brunbd163812020-05-06 14:33:46 +0200205
Emeric Brun54648852020-07-06 15:54:06 +0200206 if (!metadata[LOG_META_HOST].len) {
207 if (global.log_send_hostname)
208 metadata[LOG_META_HOST] = ist2(global.log_send_hostname, strlen(global.log_send_hostname));
Emeric Brun54648852020-07-06 15:54:06 +0200209 }
210
211 if (!metadata[LOG_META_TAG].len)
212 metadata[LOG_META_TAG] = ist2(global.log_tag.area, global.log_tag.data);
213
214 if (unlikely(curr_pid != getpid()))
215 metadata[LOG_META_PID].len = 0;
216
217 if (!metadata[LOG_META_PID].len) {
218 curr_pid = getpid();
219 ltoa_o(curr_pid, pidstr, sizeof(pidstr));
220 metadata[LOG_META_PID] = ist2(pidstr, strlen(pidstr));
221 }
222
223 if (__sink_write(sink, msgvec, 1, LOG_NOTICE, facility, metadata) <= 0)
Willy Tarreau8f240232019-08-27 16:41:06 +0200224 return 0;
225 /* success! */
226 HA_ATOMIC_SUB(&sink->ctx.dropped, dropped);
227 }
228 return 1;
Willy Tarreau67b5a162019-08-11 16:38:56 +0200229}
230
Willy Tarreau9f830d72019-08-26 18:17:04 +0200231/* parse the "show events" command, returns 1 if a message is returned, otherwise zero */
232static int cli_parse_show_events(char **args, char *payload, struct appctx *appctx, void *private)
233{
234 struct sink *sink;
Willy Tarreau1d181e42019-08-30 11:17:01 +0200235 int arg;
Willy Tarreau9f830d72019-08-26 18:17:04 +0200236
237 args++; // make args[1] the 1st arg
238
239 if (!*args[1]) {
240 /* no arg => report the list of supported sink */
Willy Tarreau1d181e42019-08-30 11:17:01 +0200241 chunk_printf(&trash, "Supported events sinks are listed below. Add -w(wait), -n(new). Any key to stop\n");
Willy Tarreau9f830d72019-08-26 18:17:04 +0200242 list_for_each_entry(sink, &sink_list, sink_list) {
243 chunk_appendf(&trash, " %-10s : type=%s, %u dropped, %s\n",
244 sink->name,
245 sink->type == SINK_TYPE_NEW ? "init" :
246 sink->type == SINK_TYPE_FD ? "fd" :
247 sink->type == SINK_TYPE_BUFFER ? "buffer" : "?",
248 sink->ctx.dropped, sink->desc);
249 }
250
251 trash.area[trash.data] = 0;
252 return cli_msg(appctx, LOG_WARNING, trash.area);
253 }
254
255 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
256 return 1;
257
258 sink = sink_find(args[1]);
259 if (!sink)
260 return cli_err(appctx, "No such event sink");
261
262 if (sink->type != SINK_TYPE_BUFFER)
263 return cli_msg(appctx, LOG_NOTICE, "Nothing to report for this sink");
264
Willy Tarreau1d181e42019-08-30 11:17:01 +0200265 for (arg = 2; *args[arg]; arg++) {
266 if (strcmp(args[arg], "-w") == 0)
267 appctx->ctx.cli.i0 |= 1; // wait mode
268 else if (strcmp(args[arg], "-n") == 0)
269 appctx->ctx.cli.i0 |= 2; // seek to new
270 else if (strcmp(args[arg], "-nw") == 0 || strcmp(args[arg], "-wn") == 0)
271 appctx->ctx.cli.i0 |= 3; // seek to new + wait
272 else
273 return cli_err(appctx, "unknown option");
274 }
Willy Tarreau9f830d72019-08-26 18:17:04 +0200275 return ring_attach_cli(sink->ctx.ring, appctx);
276}
277
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500278/* Pre-configures a ring proxy to emit connections */
Emeric Brun494c5052020-05-28 11:13:15 +0200279void sink_setup_proxy(struct proxy *px)
280{
281 px->last_change = now.tv_sec;
282 px->cap = PR_CAP_FE | PR_CAP_BE;
283 px->maxconn = 0;
284 px->conn_retries = 1;
285 px->timeout.server = TICK_ETERNITY;
286 px->timeout.client = TICK_ETERNITY;
287 px->timeout.connect = TICK_ETERNITY;
288 px->accept = NULL;
289 px->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC;
290 px->bind_proc = 0; /* will be filled by users */
291}
292
293/*
294 * IO Handler to handle message push to syslog tcp server
295 */
296static void sink_forward_io_handler(struct appctx *appctx)
297{
298 struct stream_interface *si = appctx->owner;
299 struct stream *s = si_strm(si);
300 struct sink *sink = strm_fe(s)->parent;
301 struct sink_forward_target *sft = appctx->ctx.sft.ptr;
302 struct ring *ring = sink->ctx.ring;
303 struct buffer *buf = &ring->buf;
304 uint64_t msg_len;
305 size_t len, cnt, ofs;
306 int ret = 0;
307
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500308 /* if stopping was requested, close immediately */
Emeric Brun494c5052020-05-28 11:13:15 +0200309 if (unlikely(stopping))
310 goto close;
311
312 /* for rex because it seems reset to timeout
313 * and we don't want expire on this case
314 * with a syslog server
315 */
316 si_oc(si)->rex = TICK_ETERNITY;
317 /* rto should not change but it seems the case */
318 si_oc(si)->rto = TICK_ETERNITY;
319
320 /* an error was detected */
321 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
322 goto close;
323
324 /* con closed by server side */
325 if ((si_oc(si)->flags & CF_SHUTW))
326 goto close;
327
328 /* if the connection is not established, inform the stream that we want
329 * to be notified whenever the connection completes.
330 */
331 if (si_opposite(si)->state < SI_ST_EST) {
332 si_cant_get(si);
333 si_rx_conn_blk(si);
334 si_rx_endp_more(si);
335 return;
336 }
337
338 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
339 if (appctx != sft->appctx) {
340 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
341 goto close;
342 }
343 ofs = sft->ofs;
344
345 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock);
346 LIST_DEL_INIT(&appctx->wait_entry);
347 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock);
348
349 HA_RWLOCK_RDLOCK(LOGSRV_LOCK, &ring->lock);
350
351 /* explanation for the initialization below: it would be better to do
352 * this in the parsing function but this would occasionally result in
353 * dropped events because we'd take a reference on the oldest message
354 * and keep it while being scheduled. Thus instead let's take it the
355 * first time we enter here so that we have a chance to pass many
356 * existing messages before grabbing a reference to a location. This
357 * value cannot be produced after initialization.
358 */
359 if (unlikely(ofs == ~0)) {
360 ofs = 0;
361
Willy Tarreau4781b152021-04-06 13:53:36 +0200362 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brun494c5052020-05-28 11:13:15 +0200363 ofs += ring->ofs;
364 }
365
Emeric Brun494c5052020-05-28 11:13:15 +0200366 /* in this loop, ofs always points to the counter byte that precedes
367 * the message so that we can take our reference there if we have to
368 * stop before the end (ret=0).
369 */
370 if (si_opposite(si)->state == SI_ST_EST) {
Emeric Brunfdabf492020-12-02 17:02:09 +0100371 /* we were already there, adjust the offset to be relative to
372 * the buffer's head and remove us from the counter.
373 */
374 ofs -= ring->ofs;
375 BUG_ON(ofs >= buf->size);
Willy Tarreau4781b152021-04-06 13:53:36 +0200376 HA_ATOMIC_DEC(b_peek(buf, ofs));
Emeric Brunfdabf492020-12-02 17:02:09 +0100377
Emeric Brun494c5052020-05-28 11:13:15 +0200378 ret = 1;
379 while (ofs + 1 < b_data(buf)) {
380 cnt = 1;
381 len = b_peek_varint(buf, ofs + cnt, &msg_len);
382 if (!len)
383 break;
384 cnt += len;
385 BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf));
386
387 if (unlikely(msg_len + 1 > b_size(&trash))) {
388 /* too large a message to ever fit, let's skip it */
389 ofs += cnt + msg_len;
390 continue;
391 }
392
393 chunk_reset(&trash);
394 len = b_getblk(buf, trash.area, msg_len, ofs + cnt);
395 trash.data += len;
396 trash.area[trash.data++] = '\n';
397
398 if (ci_putchk(si_ic(si), &trash) == -1) {
399 si_rx_room_blk(si);
400 ret = 0;
401 break;
402 }
403 ofs += cnt + msg_len;
404 }
405
Willy Tarreau4781b152021-04-06 13:53:36 +0200406 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brun494c5052020-05-28 11:13:15 +0200407 ofs += ring->ofs;
408 sft->ofs = ofs;
409 }
410 HA_RWLOCK_RDUNLOCK(LOGSRV_LOCK, &ring->lock);
411
412 if (ret) {
413 /* let's be woken up once new data arrive */
414 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock);
Willy Tarreau2b718102021-04-21 07:32:39 +0200415 LIST_APPEND(&ring->waiters, &appctx->wait_entry);
Emeric Brun494c5052020-05-28 11:13:15 +0200416 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock);
417 si_rx_endp_done(si);
418 }
419 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
420
421 /* always drain data from server */
422 co_skip(si_oc(si), si_oc(si)->output);
423 return;
424
425close:
426 si_shutw(si);
427 si_shutr(si);
428 si_ic(si)->flags |= CF_READ_NULL;
429}
430
Emeric Brun97556472020-05-30 01:42:45 +0200431/*
432 * IO Handler to handle message push to syslog tcp server
433 * using octet counting frames
434 */
435static void sink_forward_oc_io_handler(struct appctx *appctx)
436{
437 struct stream_interface *si = appctx->owner;
438 struct stream *s = si_strm(si);
439 struct sink *sink = strm_fe(s)->parent;
440 struct sink_forward_target *sft = appctx->ctx.sft.ptr;
441 struct ring *ring = sink->ctx.ring;
442 struct buffer *buf = &ring->buf;
443 uint64_t msg_len;
444 size_t len, cnt, ofs;
445 int ret = 0;
446 char *p;
447
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500448 /* if stopping was requested, close immediately */
Emeric Brun97556472020-05-30 01:42:45 +0200449 if (unlikely(stopping))
450 goto close;
451
452 /* for rex because it seems reset to timeout
453 * and we don't want expire on this case
454 * with a syslog server
455 */
456 si_oc(si)->rex = TICK_ETERNITY;
457 /* rto should not change but it seems the case */
458 si_oc(si)->rto = TICK_ETERNITY;
459
460 /* an error was detected */
461 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
462 goto close;
463
464 /* con closed by server side */
465 if ((si_oc(si)->flags & CF_SHUTW))
466 goto close;
467
468 /* if the connection is not established, inform the stream that we want
469 * to be notified whenever the connection completes.
470 */
471 if (si_opposite(si)->state < SI_ST_EST) {
472 si_cant_get(si);
473 si_rx_conn_blk(si);
474 si_rx_endp_more(si);
475 return;
476 }
477
478 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
479 if (appctx != sft->appctx) {
480 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
481 goto close;
482 }
483 ofs = sft->ofs;
484
485 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock);
486 LIST_DEL_INIT(&appctx->wait_entry);
487 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock);
488
489 HA_RWLOCK_RDLOCK(LOGSRV_LOCK, &ring->lock);
490
491 /* explanation for the initialization below: it would be better to do
492 * this in the parsing function but this would occasionally result in
493 * dropped events because we'd take a reference on the oldest message
494 * and keep it while being scheduled. Thus instead let's take it the
495 * first time we enter here so that we have a chance to pass many
496 * existing messages before grabbing a reference to a location. This
497 * value cannot be produced after initialization.
498 */
499 if (unlikely(ofs == ~0)) {
500 ofs = 0;
501
Willy Tarreau4781b152021-04-06 13:53:36 +0200502 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brun97556472020-05-30 01:42:45 +0200503 ofs += ring->ofs;
504 }
505
Emeric Brun97556472020-05-30 01:42:45 +0200506 /* in this loop, ofs always points to the counter byte that precedes
507 * the message so that we can take our reference there if we have to
508 * stop before the end (ret=0).
509 */
510 if (si_opposite(si)->state == SI_ST_EST) {
Emeric Brunfdabf492020-12-02 17:02:09 +0100511 /* we were already there, adjust the offset to be relative to
512 * the buffer's head and remove us from the counter.
513 */
514 ofs -= ring->ofs;
515 BUG_ON(ofs >= buf->size);
Willy Tarreau4781b152021-04-06 13:53:36 +0200516 HA_ATOMIC_DEC(b_peek(buf, ofs));
Emeric Brunfdabf492020-12-02 17:02:09 +0100517
Emeric Brun97556472020-05-30 01:42:45 +0200518 ret = 1;
519 while (ofs + 1 < b_data(buf)) {
520 cnt = 1;
521 len = b_peek_varint(buf, ofs + cnt, &msg_len);
522 if (!len)
523 break;
524 cnt += len;
525 BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf));
526
527 chunk_reset(&trash);
528 p = ulltoa(msg_len, trash.area, b_size(&trash));
529 if (p) {
530 trash.data = (p - trash.area) + 1;
531 *p = ' ';
532 }
533
534 if (!p || (trash.data + msg_len > b_size(&trash))) {
535 /* too large a message to ever fit, let's skip it */
536 ofs += cnt + msg_len;
537 continue;
538 }
539
540 trash.data += b_getblk(buf, p + 1, msg_len, ofs + cnt);
541
542 if (ci_putchk(si_ic(si), &trash) == -1) {
543 si_rx_room_blk(si);
544 ret = 0;
545 break;
546 }
547 ofs += cnt + msg_len;
548 }
549
Willy Tarreau4781b152021-04-06 13:53:36 +0200550 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brun97556472020-05-30 01:42:45 +0200551 ofs += ring->ofs;
552 sft->ofs = ofs;
553 }
554 HA_RWLOCK_RDUNLOCK(LOGSRV_LOCK, &ring->lock);
555
556 if (ret) {
557 /* let's be woken up once new data arrive */
558 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock);
Willy Tarreau2b718102021-04-21 07:32:39 +0200559 LIST_APPEND(&ring->waiters, &appctx->wait_entry);
Emeric Brun97556472020-05-30 01:42:45 +0200560 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock);
561 si_rx_endp_done(si);
562 }
563 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
564
565 /* always drain data from server */
566 co_skip(si_oc(si), si_oc(si)->output);
567 return;
568
569close:
570 si_shutw(si);
571 si_shutr(si);
572 si_ic(si)->flags |= CF_READ_NULL;
573}
574
Emeric Brun494c5052020-05-28 11:13:15 +0200575void __sink_forward_session_deinit(struct sink_forward_target *sft)
576{
577 struct stream_interface *si;
578 struct stream *s;
579 struct sink *sink;
580
581 if (!sft->appctx)
582 return;
583
584 si = sft->appctx->owner;
585 if (!si)
586 return;
587
588 s = si_strm(si);
589 if (!s)
590 return;
591
592 sink = strm_fe(s)->parent;
593 if (!sink)
594 return;
595
596 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &sink->ctx.ring->lock);
597 LIST_DEL_INIT(&sft->appctx->wait_entry);
598 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &sink->ctx.ring->lock);
599
600 sft->appctx = NULL;
601 task_wakeup(sink->forward_task, TASK_WOKEN_MSG);
602}
603
604
605static void sink_forward_session_release(struct appctx *appctx)
606{
Christopher Fauletefebfda2022-01-14 15:03:22 +0100607 struct sink_forward_target *sft = appctx->ctx.sft.ptr;
Emeric Brun494c5052020-05-28 11:13:15 +0200608
609 if (!sft)
610 return;
611
612 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
613 if (sft->appctx == appctx)
614 __sink_forward_session_deinit(sft);
615 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
616}
617
618static struct applet sink_forward_applet = {
619 .obj_type = OBJ_TYPE_APPLET,
620 .name = "<SINKFWD>", /* used for logging */
621 .fct = sink_forward_io_handler,
622 .release = sink_forward_session_release,
623};
624
Emeric Brun97556472020-05-30 01:42:45 +0200625static struct applet sink_forward_oc_applet = {
626 .obj_type = OBJ_TYPE_APPLET,
627 .name = "<SINKFWDOC>", /* used for logging */
628 .fct = sink_forward_oc_io_handler,
629 .release = sink_forward_session_release,
630};
631
Emeric Brun494c5052020-05-28 11:13:15 +0200632/*
633 * Create a new peer session in assigned state (connect will start automatically)
634 */
635static struct appctx *sink_forward_session_create(struct sink *sink, struct sink_forward_target *sft)
636{
637 struct proxy *p = sink->forward_px;
638 struct appctx *appctx;
639 struct session *sess;
640 struct stream *s;
Emeric Brun97556472020-05-30 01:42:45 +0200641 struct applet *applet = &sink_forward_applet;
642
643 if (sft->srv->log_proto == SRV_LOG_PROTO_OCTET_COUNTING)
644 applet = &sink_forward_oc_applet;
Emeric Brun494c5052020-05-28 11:13:15 +0200645
Emeric Brun97556472020-05-30 01:42:45 +0200646 appctx = appctx_new(applet, tid_bit);
Emeric Brun494c5052020-05-28 11:13:15 +0200647 if (!appctx)
648 goto out_close;
649
650 appctx->ctx.sft.ptr = (void *)sft;
651
652 sess = session_new(p, NULL, &appctx->obj_type);
653 if (!sess) {
654 ha_alert("out of memory in peer_session_create().\n");
655 goto out_free_appctx;
656 }
657
Christopher Faulet26256f82020-09-14 11:40:13 +0200658 if ((s = stream_new(sess, &appctx->obj_type, &BUF_NULL)) == NULL) {
Emeric Brun494c5052020-05-28 11:13:15 +0200659 ha_alert("Failed to initialize stream in peer_session_create().\n");
660 goto out_free_sess;
661 }
662
663
664 s->target = &sft->srv->obj_type;
Willy Tarreau9b7587a2020-10-15 07:32:10 +0200665 if (!sockaddr_alloc(&s->target_addr, &sft->srv->addr, sizeof(sft->srv->addr)))
Emeric Brun494c5052020-05-28 11:13:15 +0200666 goto out_free_strm;
Emeric Brun494c5052020-05-28 11:13:15 +0200667 s->flags = SF_ASSIGNED|SF_ADDR_SET;
668 s->si[1].flags |= SI_FL_NOLINGER;
669
670 s->do_log = NULL;
671 s->uniq_id = 0;
672
673 s->res.flags |= CF_READ_DONTWAIT;
674 /* for rto and rex to eternity to not expire on idle recv:
675 * We are using a syslog server.
676 */
677 s->res.rto = TICK_ETERNITY;
678 s->res.rex = TICK_ETERNITY;
679 sft->appctx = appctx;
680 task_wakeup(s->task, TASK_WOKEN_INIT);
681 return appctx;
682
683 /* Error unrolling */
684 out_free_strm:
Willy Tarreau2b718102021-04-21 07:32:39 +0200685 LIST_DELETE(&s->list);
Emeric Brun494c5052020-05-28 11:13:15 +0200686 pool_free(pool_head_stream, s);
687 out_free_sess:
688 session_free(sess);
689 out_free_appctx:
690 appctx_free(appctx);
691 out_close:
692 return NULL;
693}
694
695/*
696 * Task to handle connctions to forward servers
697 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100698static struct task *process_sink_forward(struct task * task, void *context, unsigned int state)
Emeric Brun494c5052020-05-28 11:13:15 +0200699{
700 struct sink *sink = (struct sink *)context;
701 struct sink_forward_target *sft = sink->sft;
702
703 task->expire = TICK_ETERNITY;
704
705 if (!stopping) {
706 while (sft) {
707 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
708 /* if appctx is NULL, start a new session */
709 if (!sft->appctx)
710 sft->appctx = sink_forward_session_create(sink, sft);
711 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
712 sft = sft->next;
713 }
714 }
715 else {
716 while (sft) {
717 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
718 /* awake applet to perform a clean close */
719 if (sft->appctx)
720 appctx_wakeup(sft->appctx);
721 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
722 sft = sft->next;
723 }
724 }
725
726 return task;
727}
728/*
729 * Init task to manage connctions to forward servers
730 *
731 * returns 0 in case of error.
732 */
733int sink_init_forward(struct sink *sink)
734{
735 sink->forward_task = task_new(MAX_THREADS_MASK);
736 if (!sink->forward_task)
737 return 0;
738
739 sink->forward_task->process = process_sink_forward;
740 sink->forward_task->context = (void *)sink;
741 sink->forward_sighandler = signal_register_task(0, sink->forward_task, 0);
742 task_wakeup(sink->forward_task, TASK_WOKEN_INIT);
743 return 1;
744}
Emeric Brun99c453d2020-05-25 15:01:04 +0200745/*
746 * Parse "ring" section and create corresponding sink buffer.
747 *
748 * The function returns 0 in success case, otherwise, it returns error
749 * flags.
750 */
751int cfg_parse_ring(const char *file, int linenum, char **args, int kwm)
752{
753 int err_code = 0;
754 const char *inv;
755 size_t size = BUFSIZE;
Emeric Brun494c5052020-05-28 11:13:15 +0200756 struct proxy *p;
Emeric Brun99c453d2020-05-25 15:01:04 +0200757
758 if (strcmp(args[0], "ring") == 0) { /* new peers section */
759 if (!*args[1]) {
760 ha_alert("parsing [%s:%d] : missing ring name.\n", file, linenum);
761 err_code |= ERR_ALERT | ERR_FATAL;
762 goto err;
763 }
764
765 inv = invalid_char(args[1]);
766 if (inv) {
767 ha_alert("parsing [%s:%d] : invalid ring name '%s' (character '%c' is not permitted).\n", file, linenum, args[1], *inv);
768 err_code |= ERR_ALERT | ERR_FATAL;
769 goto err;
770 }
771
772 if (sink_find(args[1])) {
773 ha_alert("parsing [%s:%d] : sink named '%s' already exists.\n", file, linenum, args[1]);
774 err_code |= ERR_ALERT | ERR_FATAL;
775 goto err;
776 }
777
Emeric Brun54648852020-07-06 15:54:06 +0200778 cfg_sink = sink_new_buf(args[1], args[1], LOG_FORMAT_RAW, size);
Emeric Brun99c453d2020-05-25 15:01:04 +0200779 if (!cfg_sink || cfg_sink->type != SINK_TYPE_BUFFER) {
780 ha_alert("parsing [%s:%d] : unable to create a new sink buffer for ring '%s'.\n", file, linenum, args[1]);
781 err_code |= ERR_ALERT | ERR_FATAL;
782 goto err;
783 }
Emeric Brun494c5052020-05-28 11:13:15 +0200784
785 /* allocate new proxy to handle forwards */
786 p = calloc(1, sizeof *p);
787 if (!p) {
788 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
789 err_code |= ERR_ALERT | ERR_FATAL;
790 goto err;
791 }
792
793 init_new_proxy(p);
794 sink_setup_proxy(p);
795 p->parent = cfg_sink;
796 p->id = strdup(args[1]);
797 p->conf.args.file = p->conf.file = strdup(file);
798 p->conf.args.line = p->conf.line = linenum;
799 cfg_sink->forward_px = p;
Emeric Brun99c453d2020-05-25 15:01:04 +0200800 }
801 else if (strcmp(args[0], "size") == 0) {
802 size = atol(args[1]);
803 if (!size) {
804 ha_alert("parsing [%s:%d] : invalid size '%s' for new sink buffer.\n", file, linenum, args[1]);
805 err_code |= ERR_ALERT | ERR_FATAL;
806 goto err;
807 }
808
809 if (!cfg_sink || (cfg_sink->type != SINK_TYPE_BUFFER)
810 || !ring_resize(cfg_sink->ctx.ring, size)) {
811 ha_alert("parsing [%s:%d] : fail to set sink buffer size '%s'.\n", file, linenum, args[1]);
812 err_code |= ERR_ALERT | ERR_FATAL;
813 goto err;
814 }
815 }
Emeric Brun494c5052020-05-28 11:13:15 +0200816 else if (strcmp(args[0],"server") == 0) {
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100817 err_code |= parse_server(file, linenum, args, cfg_sink->forward_px, NULL,
818 SRV_PARSE_PARSE_ADDR|SRV_PARSE_INITIAL_RESOLVE);
Emeric Brun494c5052020-05-28 11:13:15 +0200819 }
820 else if (strcmp(args[0],"timeout") == 0) {
821 if (!cfg_sink || !cfg_sink->forward_px) {
822 ha_alert("parsing [%s:%d] : unable to set timeout '%s'.\n", file, linenum, args[1]);
823 err_code |= ERR_ALERT | ERR_FATAL;
824 goto err;
825 }
826
827 if (strcmp(args[1], "connect") == 0 ||
828 strcmp(args[1], "server") == 0) {
829 const char *res;
830 unsigned int tout;
831
832 if (!*args[2]) {
833 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
834 file, linenum, args[0], args[1]);
835 err_code |= ERR_ALERT | ERR_FATAL;
836 goto err;
837 }
838 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
839 if (res == PARSE_TIME_OVER) {
840 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
841 file, linenum, args[2], args[0], args[1]);
842 err_code |= ERR_ALERT | ERR_FATAL;
843 goto err;
844 }
845 else if (res == PARSE_TIME_UNDER) {
846 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
847 file, linenum, args[2], args[0], args[1]);
848 err_code |= ERR_ALERT | ERR_FATAL;
849 goto err;
850 }
851 else if (res) {
852 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
853 file, linenum, *res, args[0], args[1]);
854 err_code |= ERR_ALERT | ERR_FATAL;
855 goto err;
856 }
857 if (args[1][2] == 'c')
858 cfg_sink->forward_px->timeout.connect = tout;
859 else
860 cfg_sink->forward_px->timeout.server = tout;
861 }
862 }
Emeric Brun99c453d2020-05-25 15:01:04 +0200863 else if (strcmp(args[0],"format") == 0) {
864 if (!cfg_sink) {
865 ha_alert("parsing [%s:%d] : unable to set format '%s'.\n", file, linenum, args[1]);
866 err_code |= ERR_ALERT | ERR_FATAL;
867 goto err;
868 }
869
Emeric Brun54648852020-07-06 15:54:06 +0200870 cfg_sink->fmt = get_log_format(args[1]);
871 if (cfg_sink->fmt == LOG_FORMAT_UNSPEC) {
Emeric Brun99c453d2020-05-25 15:01:04 +0200872 ha_alert("parsing [%s:%d] : unknown format '%s'.\n", file, linenum, args[1]);
873 err_code |= ERR_ALERT | ERR_FATAL;
874 goto err;
875 }
876 }
877 else if (strcmp(args[0],"maxlen") == 0) {
878 if (!cfg_sink) {
879 ha_alert("parsing [%s:%d] : unable to set event max length '%s'.\n", file, linenum, args[1]);
880 err_code |= ERR_ALERT | ERR_FATAL;
881 goto err;
882 }
883
884 cfg_sink->maxlen = atol(args[1]);
885 if (!cfg_sink->maxlen) {
886 ha_alert("parsing [%s:%d] : invalid size '%s' for new sink buffer.\n", file, linenum, args[1]);
887 err_code |= ERR_ALERT | ERR_FATAL;
888 goto err;
889 }
890 }
891 else if (strcmp(args[0],"description") == 0) {
892 if (!cfg_sink) {
893 ha_alert("parsing [%s:%d] : unable to set description '%s'.\n", file, linenum, args[1]);
894 err_code |= ERR_ALERT | ERR_FATAL;
895 goto err;
896 }
897
898 if (!*args[1]) {
899 ha_alert("parsing [%s:%d] : missing ring description text.\n", file, linenum);
900 err_code |= ERR_ALERT | ERR_FATAL;
901 goto err;
902 }
903
904 free(cfg_sink->desc);
905
906 cfg_sink->desc = strdup(args[1]);
907 if (!cfg_sink->desc) {
908 ha_alert("parsing [%s:%d] : fail to set description '%s'.\n", file, linenum, args[1]);
909 err_code |= ERR_ALERT | ERR_FATAL;
910 goto err;
911 }
912 }
Emeric Brun9f2ff3a2020-05-29 15:47:52 +0200913 else {
914 ha_alert("parsing [%s:%d] : unknown statement '%s'.\n", file, linenum, args[0]);
915 err_code |= ERR_ALERT | ERR_FATAL;
916 goto err;
917 }
Emeric Brun99c453d2020-05-25 15:01:04 +0200918
919err:
920 return err_code;
921}
922
Emeric Brun94aab062021-04-02 10:41:36 +0200923/* Creates an new sink buffer from a log server.
924 *
925 * It uses the logsrvaddress to declare a forward
926 * server for this buffer. And it initializes the
927 * forwarding.
928 *
929 * The function returns a pointer on the
930 * allocated struct sink if allocate
931 * and initialize succeed, else if it fails
932 * it returns NULL.
933 *
934 * Note: the sink is created using the name
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +0500935 * specified into logsrv->ring_name
Emeric Brun94aab062021-04-02 10:41:36 +0200936 */
937struct sink *sink_new_from_logsrv(struct logsrv *logsrv)
938{
939 struct proxy *p = NULL;
940 struct sink *sink = NULL;
941 struct server *srv = NULL;
942 struct sink_forward_target *sft = NULL;
943 int i;
944
945 /* allocate new proxy to handle
946 * forward to a stream server
947 */
948 p = calloc(1, sizeof *p);
949 if (!p) {
950 goto error;
951 }
952
953 init_new_proxy(p);
954 sink_setup_proxy(p);
955 p->id = strdup(logsrv->ring_name);
956 p->conf.args.file = p->conf.file = strdup(logsrv->conf.file);
957 p->conf.args.line = p->conf.line = logsrv->conf.line;
958
959 /* allocate a new server to forward messages
960 * from ring buffer
961 */
962 srv = new_server(p);
963 if (!srv)
964 goto error;
965
966 /* init server */
967 srv->id = strdup(logsrv->ring_name);
968 srv->conf.file = strdup(logsrv->conf.file);
969 srv->conf.line = logsrv->conf.line;
970 srv->addr = logsrv->addr;
971 srv->svc_port = get_host_port(&logsrv->addr);
972 HA_SPIN_INIT(&srv->lock);
973
974 /* process per thread init */
975 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
976 if (!srv->per_thr)
977 goto error;
978
979 for (i = 0; i < global.nbthread; i++) {
980 srv->per_thr[i].idle_conns = EB_ROOT;
981 srv->per_thr[i].safe_conns = EB_ROOT;
982 srv->per_thr[i].avail_conns = EB_ROOT;
983 MT_LIST_INIT(&srv->per_thr[i].streams);
984 }
985
986 /* the servers are linked backwards
987 * first into proxy
988 */
989 p->srv = srv;
990 srv->next = p->srv;
991
992 /* allocate sink_forward_target descriptor */
993 sft = calloc(1, sizeof(*sft));
994 if (!sft)
995 goto error;
996
997 /* init sink_forward_target offset */
998 sft->srv = srv;
999 sft->appctx = NULL;
1000 sft->ofs = ~0;
1001 HA_SPIN_INIT(&sft->lock);
1002
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +05001003 /* prepare description for the sink */
Emeric Brun94aab062021-04-02 10:41:36 +02001004 chunk_reset(&trash);
1005 chunk_printf(&trash, "created from logserver declared into '%s' at line %d", logsrv->conf.file, logsrv->conf.line);
1006
1007 /* allocate a new sink buffer */
1008 sink = sink_new_buf(logsrv->ring_name, trash.area, logsrv->format, BUFSIZE);
1009 if (!sink || sink->type != SINK_TYPE_BUFFER) {
1010 goto error;
1011 }
1012
1013 /* link sink_forward_target to proxy */
1014 sink->forward_px = p;
1015 p->parent = sink;
1016
1017 /* insert into sink_forward_targets
1018 * list into sink
1019 */
1020 sft->next = sink->sft;
1021 sink->sft = sft;
1022
1023 /* mark server as an attached reader to the ring */
1024 if (!ring_attach(sink->ctx.ring)) {
1025 /* should never fail since there is
1026 * only one reader
1027 */
1028 goto error;
1029 }
1030
1031 /* initialize sink buffer forwarding */
1032 if (!sink_init_forward(sink))
1033 goto error;
1034
1035 /* reset familyt of logsrv to consider the ring buffer target */
1036 logsrv->addr.ss_family = AF_UNSPEC;
1037
1038 return sink;
1039error:
1040 if (p) {
1041 if (p->id)
1042 free(p->id);
1043 if (p->conf.file)
1044 free(p->conf.file);
1045
1046 free(p);
1047 }
1048
1049 if (srv) {
1050 if (srv->id)
1051 free(srv->id);
1052 if (srv->conf.file)
1053 free((void *)srv->conf.file);
1054 if (srv->per_thr)
1055 free(srv->per_thr);
1056 free(srv);
1057 }
1058
1059 if (sft)
1060 free(sft);
1061
1062 if (sink) {
1063 if (sink->ctx.ring)
1064 ring_free(sink->ctx.ring);
1065
Willy Tarreau2b718102021-04-21 07:32:39 +02001066 LIST_DELETE(&sink->sink_list);
Emeric Brun94aab062021-04-02 10:41:36 +02001067 free(sink->name);
1068 free(sink->desc);
1069 free(sink);
1070 }
1071
1072 return NULL;
1073}
1074
Emeric Brun99c453d2020-05-25 15:01:04 +02001075/*
1076 * Post parsing "ring" section.
1077 *
1078 * The function returns 0 in success case, otherwise, it returns error
1079 * flags.
1080 */
1081int cfg_post_parse_ring()
1082{
1083 int err_code = 0;
Emeric Brun494c5052020-05-28 11:13:15 +02001084 struct server *srv;
Emeric Brun99c453d2020-05-25 15:01:04 +02001085
1086 if (cfg_sink && (cfg_sink->type == SINK_TYPE_BUFFER)) {
1087 if (cfg_sink->maxlen > b_size(&cfg_sink->ctx.ring->buf)) {
1088 ha_warning("ring '%s' event max length '%u' exceeds size, forced to size '%lu'.\n",
Willy Tarreau570a22b2020-06-02 12:00:46 +02001089 cfg_sink->name, cfg_sink->maxlen, (unsigned long)b_size(&cfg_sink->ctx.ring->buf));
Emeric Brun99c453d2020-05-25 15:01:04 +02001090 cfg_sink->maxlen = b_size(&cfg_sink->ctx.ring->buf);
1091 err_code |= ERR_ALERT;
1092 }
Emeric Brun494c5052020-05-28 11:13:15 +02001093
1094 /* prepare forward server descriptors */
1095 if (cfg_sink->forward_px) {
1096 srv = cfg_sink->forward_px->srv;
1097 while (srv) {
1098 struct sink_forward_target *sft;
1099 /* init ssl if needed */
1100 if (srv->use_ssl == 1 && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
1101 if (xprt_get(XPRT_SSL)->prepare_srv(srv)) {
1102 ha_alert("unable to prepare SSL for server '%s' in ring '%s'.\n", srv->id, cfg_sink->name);
1103 err_code |= ERR_ALERT | ERR_FATAL;
1104 }
1105 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001106
Emeric Brun494c5052020-05-28 11:13:15 +02001107 /* allocate sink_forward_target descriptor */
1108 sft = calloc(1, sizeof(*sft));
1109 if (!sft) {
1110 ha_alert("memory allocation error initializing server '%s' in ring '%s'.\n",srv->id, cfg_sink->name);
1111 err_code |= ERR_ALERT | ERR_FATAL;
1112 break;
1113 }
1114 sft->srv = srv;
1115 sft->appctx = NULL;
1116 sft->ofs = ~0; /* init ring offset */
1117 sft->next = cfg_sink->sft;
1118 HA_SPIN_INIT(&sft->lock);
1119
1120 /* mark server attached to the ring */
1121 if (!ring_attach(cfg_sink->ctx.ring)) {
1122 ha_alert("server '%s' sets too many watchers > 255 on ring '%s'.\n", srv->id, cfg_sink->name);
1123 err_code |= ERR_ALERT | ERR_FATAL;
1124 }
1125 cfg_sink->sft = sft;
1126 srv = srv->next;
1127 }
1128 sink_init_forward(cfg_sink);
1129 }
1130 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001131 cfg_sink = NULL;
1132
1133 return err_code;
1134}
1135
1136/* resolve sink names at end of config. Returns 0 on success otherwise error
1137 * flags.
1138*/
1139int post_sink_resolve()
1140{
Christopher Fauletfc633b62020-11-06 15:24:23 +01001141 int err_code = ERR_NONE;
Emeric Brun99c453d2020-05-25 15:01:04 +02001142 struct logsrv *logsrv, *logb;
1143 struct sink *sink;
1144 struct proxy *px;
1145
1146 list_for_each_entry_safe(logsrv, logb, &global.logsrvs, list) {
1147 if (logsrv->type == LOG_TARGET_BUFFER) {
1148 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001149 if (!sink) {
1150 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1151 * means we must allocate a sink
1152 * buffer to send messages to this logsrv
1153 */
1154 if (logsrv->addr.ss_family != AF_UNSPEC) {
1155 sink = sink_new_from_logsrv(logsrv);
1156 if (!sink) {
1157 ha_alert("global stream log server declared in file '%s' at line %d cannot be initialized'.\n",
1158 logsrv->conf.file, logsrv->conf.line);
1159 err_code |= ERR_ALERT | ERR_FATAL;
1160 }
1161 }
1162 else {
1163 ha_alert("global log server declared in file '%s' at line %d uses unknown ring named '%s'.\n",
1164 logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1165 err_code |= ERR_ALERT | ERR_FATAL;
1166 }
1167 }
1168 else if (sink->type != SINK_TYPE_BUFFER) {
1169 ha_alert("global log server declared in file '%s' at line %d uses incompatible ring '%s'.\n",
1170 logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun99c453d2020-05-25 15:01:04 +02001171 err_code |= ERR_ALERT | ERR_FATAL;
1172 }
1173 logsrv->sink = sink;
1174 }
Emeric Brun94aab062021-04-02 10:41:36 +02001175
Emeric Brun99c453d2020-05-25 15:01:04 +02001176 }
1177
1178 for (px = proxies_list; px; px = px->next) {
1179 list_for_each_entry_safe(logsrv, logb, &px->logsrvs, list) {
1180 if (logsrv->type == LOG_TARGET_BUFFER) {
1181 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001182 if (!sink) {
1183 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1184 * means we must allocate a sink
1185 * buffer to send messages to this logsrv
1186 */
1187 if (logsrv->addr.ss_family != AF_UNSPEC) {
1188 sink = sink_new_from_logsrv(logsrv);
1189 if (!sink) {
1190 ha_alert("log server declared in proxy section '%s' file '%s' at line %d cannot be initialized'.\n",
1191 px->id, logsrv->conf.file, logsrv->conf.line);
1192 err_code |= ERR_ALERT | ERR_FATAL;
1193 }
1194 }
1195 else {
1196 ha_alert("log server declared in proxy section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1197 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1198 err_code |= ERR_ALERT | ERR_FATAL;
1199 }
1200 }
1201 else if (sink->type != SINK_TYPE_BUFFER) {
1202 ha_alert("log server declared in proxy section '%s' in file '%s' at line %d uses incomatible ring named '%s'.\n",
1203 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun99c453d2020-05-25 15:01:04 +02001204 err_code |= ERR_ALERT | ERR_FATAL;
1205 }
1206 logsrv->sink = sink;
1207 }
1208 }
1209 }
Emeric Brun12941c82020-07-07 14:19:42 +02001210
1211 for (px = cfg_log_forward; px; px = px->next) {
1212 list_for_each_entry_safe(logsrv, logb, &px->logsrvs, list) {
1213 if (logsrv->type == LOG_TARGET_BUFFER) {
1214 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001215 if (!sink) {
1216 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1217 * means we must allocate a sink
1218 * buffer to send messages to this logsrv
1219 */
1220 if (logsrv->addr.ss_family != AF_UNSPEC) {
1221 sink = sink_new_from_logsrv(logsrv);
1222 if (!sink) {
1223 ha_alert("log server declared in log-forward section '%s' file '%s' at line %d cannot be initialized'.\n",
1224 px->id, logsrv->conf.file, logsrv->conf.line);
1225 err_code |= ERR_ALERT | ERR_FATAL;
1226 }
1227 }
1228 else {
1229 ha_alert("log server declared in log-forward section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1230 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1231 err_code |= ERR_ALERT | ERR_FATAL;
1232 }
1233 }
1234 else if (sink->type != SINK_TYPE_BUFFER) {
1235 ha_alert("log server declared in log-forward section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1236 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun12941c82020-07-07 14:19:42 +02001237 err_code |= ERR_ALERT | ERR_FATAL;
1238 }
1239 logsrv->sink = sink;
1240 }
1241 }
1242 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001243 return err_code;
1244}
1245
1246
Willy Tarreau973e6622019-08-20 11:57:52 +02001247static void sink_init()
1248{
Emeric Brun54648852020-07-06 15:54:06 +02001249 sink_new_fd("stdout", "standard output (fd#1)", LOG_FORMAT_RAW, 1);
1250 sink_new_fd("stderr", "standard output (fd#2)", LOG_FORMAT_RAW, 2);
1251 sink_new_buf("buf0", "in-memory ring buffer", LOG_FORMAT_TIMED, 1048576);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001252}
1253
1254static void sink_deinit()
1255{
1256 struct sink *sink, *sb;
1257
1258 list_for_each_entry_safe(sink, sb, &sink_list, sink_list) {
1259 if (sink->type == SINK_TYPE_BUFFER)
1260 ring_free(sink->ctx.ring);
Willy Tarreau2b718102021-04-21 07:32:39 +02001261 LIST_DELETE(&sink->sink_list);
Emeric Brun99c453d2020-05-25 15:01:04 +02001262 free(sink->name);
1263 free(sink->desc);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001264 free(sink);
1265 }
Willy Tarreau973e6622019-08-20 11:57:52 +02001266}
1267
1268INITCALL0(STG_REGISTER, sink_init);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001269REGISTER_POST_DEINIT(sink_deinit);
Willy Tarreau973e6622019-08-20 11:57:52 +02001270
Willy Tarreau9f830d72019-08-26 18:17:04 +02001271static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001272 { { "show", "events", NULL }, "show events [<sink>] [-w] [-n] : show event sink state", cli_parse_show_events, NULL, NULL },
Willy Tarreau9f830d72019-08-26 18:17:04 +02001273 {{},}
1274}};
1275
1276INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
1277
Emeric Brun99c453d2020-05-25 15:01:04 +02001278/* config parsers for this section */
1279REGISTER_CONFIG_SECTION("ring", cfg_parse_ring, cfg_post_parse_ring);
1280REGISTER_POST_CHECK(post_sink_resolve);
1281
Willy Tarreau67b5a162019-08-11 16:38:56 +02001282/*
1283 * Local variables:
1284 * c-indent-level: 8
1285 * c-basic-offset: 8
1286 * End:
1287 */