blob: eec8570f1cd0d38455940656666181e85219ab3c [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)
Tim Duesterhus77508502022-03-15 13:11:06 +0100208 metadata[LOG_META_HOST] = ist(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;
Emeric Brun494c5052020-05-28 11:13:15 +0200290}
291
292/*
293 * IO Handler to handle message push to syslog tcp server
294 */
295static void sink_forward_io_handler(struct appctx *appctx)
296{
Christopher Faulet53fa7872022-03-16 10:01:26 +0100297 struct stream_interface *si = cs_si(appctx->owner);
Emeric Brun494c5052020-05-28 11:13:15 +0200298 struct stream *s = si_strm(si);
299 struct sink *sink = strm_fe(s)->parent;
300 struct sink_forward_target *sft = appctx->ctx.sft.ptr;
301 struct ring *ring = sink->ctx.ring;
302 struct buffer *buf = &ring->buf;
303 uint64_t msg_len;
304 size_t len, cnt, ofs;
305 int ret = 0;
306
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500307 /* if stopping was requested, close immediately */
Emeric Brun494c5052020-05-28 11:13:15 +0200308 if (unlikely(stopping))
309 goto close;
310
311 /* for rex because it seems reset to timeout
312 * and we don't want expire on this case
313 * with a syslog server
314 */
315 si_oc(si)->rex = TICK_ETERNITY;
316 /* rto should not change but it seems the case */
317 si_oc(si)->rto = TICK_ETERNITY;
318
319 /* an error was detected */
320 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
321 goto close;
322
323 /* con closed by server side */
324 if ((si_oc(si)->flags & CF_SHUTW))
325 goto close;
326
327 /* if the connection is not established, inform the stream that we want
328 * to be notified whenever the connection completes.
329 */
330 if (si_opposite(si)->state < SI_ST_EST) {
331 si_cant_get(si);
332 si_rx_conn_blk(si);
333 si_rx_endp_more(si);
334 return;
335 }
336
337 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
338 if (appctx != sft->appctx) {
339 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
340 goto close;
341 }
342 ofs = sft->ofs;
343
344 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock);
345 LIST_DEL_INIT(&appctx->wait_entry);
346 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock);
347
348 HA_RWLOCK_RDLOCK(LOGSRV_LOCK, &ring->lock);
349
350 /* explanation for the initialization below: it would be better to do
351 * this in the parsing function but this would occasionally result in
352 * dropped events because we'd take a reference on the oldest message
353 * and keep it while being scheduled. Thus instead let's take it the
354 * first time we enter here so that we have a chance to pass many
355 * existing messages before grabbing a reference to a location. This
356 * value cannot be produced after initialization.
357 */
358 if (unlikely(ofs == ~0)) {
359 ofs = 0;
360
Willy Tarreau4781b152021-04-06 13:53:36 +0200361 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brun494c5052020-05-28 11:13:15 +0200362 ofs += ring->ofs;
363 }
364
Emeric Brun494c5052020-05-28 11:13:15 +0200365 /* in this loop, ofs always points to the counter byte that precedes
366 * the message so that we can take our reference there if we have to
367 * stop before the end (ret=0).
368 */
369 if (si_opposite(si)->state == SI_ST_EST) {
Emeric Brunfdabf492020-12-02 17:02:09 +0100370 /* we were already there, adjust the offset to be relative to
371 * the buffer's head and remove us from the counter.
372 */
373 ofs -= ring->ofs;
374 BUG_ON(ofs >= buf->size);
Willy Tarreau4781b152021-04-06 13:53:36 +0200375 HA_ATOMIC_DEC(b_peek(buf, ofs));
Emeric Brunfdabf492020-12-02 17:02:09 +0100376
Emeric Brun494c5052020-05-28 11:13:15 +0200377 ret = 1;
378 while (ofs + 1 < b_data(buf)) {
379 cnt = 1;
380 len = b_peek_varint(buf, ofs + cnt, &msg_len);
381 if (!len)
382 break;
383 cnt += len;
384 BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf));
385
386 if (unlikely(msg_len + 1 > b_size(&trash))) {
387 /* too large a message to ever fit, let's skip it */
388 ofs += cnt + msg_len;
389 continue;
390 }
391
392 chunk_reset(&trash);
393 len = b_getblk(buf, trash.area, msg_len, ofs + cnt);
394 trash.data += len;
395 trash.area[trash.data++] = '\n';
396
397 if (ci_putchk(si_ic(si), &trash) == -1) {
398 si_rx_room_blk(si);
399 ret = 0;
400 break;
401 }
402 ofs += cnt + msg_len;
403 }
404
Willy Tarreau4781b152021-04-06 13:53:36 +0200405 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brun494c5052020-05-28 11:13:15 +0200406 ofs += ring->ofs;
407 sft->ofs = ofs;
408 }
409 HA_RWLOCK_RDUNLOCK(LOGSRV_LOCK, &ring->lock);
410
411 if (ret) {
412 /* let's be woken up once new data arrive */
413 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock);
Willy Tarreau2b718102021-04-21 07:32:39 +0200414 LIST_APPEND(&ring->waiters, &appctx->wait_entry);
Emeric Brun494c5052020-05-28 11:13:15 +0200415 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock);
416 si_rx_endp_done(si);
417 }
418 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
419
420 /* always drain data from server */
421 co_skip(si_oc(si), si_oc(si)->output);
422 return;
423
424close:
425 si_shutw(si);
426 si_shutr(si);
427 si_ic(si)->flags |= CF_READ_NULL;
428}
429
Emeric Brun97556472020-05-30 01:42:45 +0200430/*
431 * IO Handler to handle message push to syslog tcp server
432 * using octet counting frames
433 */
434static void sink_forward_oc_io_handler(struct appctx *appctx)
435{
Christopher Faulet53fa7872022-03-16 10:01:26 +0100436 struct stream_interface *si = cs_si(appctx->owner);
Emeric Brun97556472020-05-30 01:42:45 +0200437 struct stream *s = si_strm(si);
438 struct sink *sink = strm_fe(s)->parent;
439 struct sink_forward_target *sft = appctx->ctx.sft.ptr;
440 struct ring *ring = sink->ctx.ring;
441 struct buffer *buf = &ring->buf;
442 uint64_t msg_len;
443 size_t len, cnt, ofs;
444 int ret = 0;
445 char *p;
446
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500447 /* if stopping was requested, close immediately */
Emeric Brun97556472020-05-30 01:42:45 +0200448 if (unlikely(stopping))
449 goto close;
450
451 /* for rex because it seems reset to timeout
452 * and we don't want expire on this case
453 * with a syslog server
454 */
455 si_oc(si)->rex = TICK_ETERNITY;
456 /* rto should not change but it seems the case */
457 si_oc(si)->rto = TICK_ETERNITY;
458
459 /* an error was detected */
460 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
461 goto close;
462
463 /* con closed by server side */
464 if ((si_oc(si)->flags & CF_SHUTW))
465 goto close;
466
467 /* if the connection is not established, inform the stream that we want
468 * to be notified whenever the connection completes.
469 */
470 if (si_opposite(si)->state < SI_ST_EST) {
471 si_cant_get(si);
472 si_rx_conn_blk(si);
473 si_rx_endp_more(si);
474 return;
475 }
476
477 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
478 if (appctx != sft->appctx) {
479 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
480 goto close;
481 }
482 ofs = sft->ofs;
483
484 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock);
485 LIST_DEL_INIT(&appctx->wait_entry);
486 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock);
487
488 HA_RWLOCK_RDLOCK(LOGSRV_LOCK, &ring->lock);
489
490 /* explanation for the initialization below: it would be better to do
491 * this in the parsing function but this would occasionally result in
492 * dropped events because we'd take a reference on the oldest message
493 * and keep it while being scheduled. Thus instead let's take it the
494 * first time we enter here so that we have a chance to pass many
495 * existing messages before grabbing a reference to a location. This
496 * value cannot be produced after initialization.
497 */
498 if (unlikely(ofs == ~0)) {
499 ofs = 0;
500
Willy Tarreau4781b152021-04-06 13:53:36 +0200501 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brun97556472020-05-30 01:42:45 +0200502 ofs += ring->ofs;
503 }
504
Emeric Brun97556472020-05-30 01:42:45 +0200505 /* in this loop, ofs always points to the counter byte that precedes
506 * the message so that we can take our reference there if we have to
507 * stop before the end (ret=0).
508 */
509 if (si_opposite(si)->state == SI_ST_EST) {
Emeric Brunfdabf492020-12-02 17:02:09 +0100510 /* we were already there, adjust the offset to be relative to
511 * the buffer's head and remove us from the counter.
512 */
513 ofs -= ring->ofs;
514 BUG_ON(ofs >= buf->size);
Willy Tarreau4781b152021-04-06 13:53:36 +0200515 HA_ATOMIC_DEC(b_peek(buf, ofs));
Emeric Brunfdabf492020-12-02 17:02:09 +0100516
Emeric Brun97556472020-05-30 01:42:45 +0200517 ret = 1;
518 while (ofs + 1 < b_data(buf)) {
519 cnt = 1;
520 len = b_peek_varint(buf, ofs + cnt, &msg_len);
521 if (!len)
522 break;
523 cnt += len;
524 BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf));
525
526 chunk_reset(&trash);
527 p = ulltoa(msg_len, trash.area, b_size(&trash));
528 if (p) {
529 trash.data = (p - trash.area) + 1;
530 *p = ' ';
531 }
532
533 if (!p || (trash.data + msg_len > b_size(&trash))) {
534 /* too large a message to ever fit, let's skip it */
535 ofs += cnt + msg_len;
536 continue;
537 }
538
539 trash.data += b_getblk(buf, p + 1, msg_len, ofs + cnt);
540
541 if (ci_putchk(si_ic(si), &trash) == -1) {
542 si_rx_room_blk(si);
543 ret = 0;
544 break;
545 }
546 ofs += cnt + msg_len;
547 }
548
Willy Tarreau4781b152021-04-06 13:53:36 +0200549 HA_ATOMIC_INC(b_peek(buf, ofs));
Emeric Brun97556472020-05-30 01:42:45 +0200550 ofs += ring->ofs;
551 sft->ofs = ofs;
552 }
553 HA_RWLOCK_RDUNLOCK(LOGSRV_LOCK, &ring->lock);
554
555 if (ret) {
556 /* let's be woken up once new data arrive */
557 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock);
Willy Tarreau2b718102021-04-21 07:32:39 +0200558 LIST_APPEND(&ring->waiters, &appctx->wait_entry);
Emeric Brun97556472020-05-30 01:42:45 +0200559 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock);
560 si_rx_endp_done(si);
561 }
562 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
563
564 /* always drain data from server */
565 co_skip(si_oc(si), si_oc(si)->output);
566 return;
567
568close:
569 si_shutw(si);
570 si_shutr(si);
571 si_ic(si)->flags |= CF_READ_NULL;
572}
573
Emeric Brun494c5052020-05-28 11:13:15 +0200574void __sink_forward_session_deinit(struct sink_forward_target *sft)
575{
576 struct stream_interface *si;
577 struct stream *s;
578 struct sink *sink;
579
580 if (!sft->appctx)
581 return;
582
Christopher Faulet53fa7872022-03-16 10:01:26 +0100583 si = cs_si(sft->appctx->owner);
Emeric Brun494c5052020-05-28 11:13:15 +0200584 if (!si)
585 return;
586
587 s = si_strm(si);
588 if (!s)
589 return;
590
591 sink = strm_fe(s)->parent;
592 if (!sink)
593 return;
594
595 HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &sink->ctx.ring->lock);
596 LIST_DEL_INIT(&sft->appctx->wait_entry);
597 HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &sink->ctx.ring->lock);
598
599 sft->appctx = NULL;
600 task_wakeup(sink->forward_task, TASK_WOKEN_MSG);
601}
602
603
604static void sink_forward_session_release(struct appctx *appctx)
605{
Christopher Fauletdd0b1442022-01-14 15:03:22 +0100606 struct sink_forward_target *sft = appctx->ctx.sft.ptr;
Emeric Brun494c5052020-05-28 11:13:15 +0200607
608 if (!sft)
609 return;
610
611 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
612 if (sft->appctx == appctx)
613 __sink_forward_session_deinit(sft);
614 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
615}
616
617static struct applet sink_forward_applet = {
618 .obj_type = OBJ_TYPE_APPLET,
619 .name = "<SINKFWD>", /* used for logging */
620 .fct = sink_forward_io_handler,
621 .release = sink_forward_session_release,
622};
623
Emeric Brun97556472020-05-30 01:42:45 +0200624static struct applet sink_forward_oc_applet = {
625 .obj_type = OBJ_TYPE_APPLET,
626 .name = "<SINKFWDOC>", /* used for logging */
627 .fct = sink_forward_oc_io_handler,
628 .release = sink_forward_session_release,
629};
630
Emeric Brun494c5052020-05-28 11:13:15 +0200631/*
632 * Create a new peer session in assigned state (connect will start automatically)
633 */
634static struct appctx *sink_forward_session_create(struct sink *sink, struct sink_forward_target *sft)
635{
636 struct proxy *p = sink->forward_px;
637 struct appctx *appctx;
638 struct session *sess;
Christopher Faulet13a35e52021-12-20 15:34:16 +0100639 struct conn_stream *cs;
Emeric Brun494c5052020-05-28 11:13:15 +0200640 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
Willy Tarreaue6124462021-09-13 10:07:38 +0200646 appctx = appctx_new(applet);
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) {
Christopher Faulet13a35e52021-12-20 15:34:16 +0100654 ha_alert("out of memory in sink_forward_session_create().\n");
Emeric Brun494c5052020-05-28 11:13:15 +0200655 goto out_free_appctx;
656 }
657
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100658 cs = cs_new();
Christopher Faulet13a35e52021-12-20 15:34:16 +0100659 if (!cs) {
660 ha_alert("out of memory in sink_forward_session_create");
Emeric Brun494c5052020-05-28 11:13:15 +0200661 goto out_free_sess;
662 }
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100663 cs_attach_endp(cs, &appctx->obj_type, appctx);
Emeric Brun494c5052020-05-28 11:13:15 +0200664
Christopher Faulet13a35e52021-12-20 15:34:16 +0100665 if ((s = stream_new(sess, cs, &BUF_NULL)) == NULL) {
666 ha_alert("Failed to initialize stream in sink_forward_session_create().\n");
667 goto out_free_cs;
668 }
669
Emeric Brun494c5052020-05-28 11:13:15 +0200670
671 s->target = &sft->srv->obj_type;
Christopher Faulet108ce5a2021-12-23 14:00:22 +0100672 if (!sockaddr_alloc(&cs_si(s->csb)->dst, &sft->srv->addr, sizeof(sft->srv->addr)))
Emeric Brun494c5052020-05-28 11:13:15 +0200673 goto out_free_strm;
Emeric Brun494c5052020-05-28 11:13:15 +0200674 s->flags = SF_ASSIGNED|SF_ADDR_SET;
Christopher Faulet108ce5a2021-12-23 14:00:22 +0100675 cs_si(s->csb)->flags |= SI_FL_NOLINGER;
Emeric Brun494c5052020-05-28 11:13:15 +0200676
677 s->do_log = NULL;
678 s->uniq_id = 0;
679
680 s->res.flags |= CF_READ_DONTWAIT;
681 /* for rto and rex to eternity to not expire on idle recv:
682 * We are using a syslog server.
683 */
684 s->res.rto = TICK_ETERNITY;
685 s->res.rex = TICK_ETERNITY;
686 sft->appctx = appctx;
Emeric Brun494c5052020-05-28 11:13:15 +0200687 return appctx;
688
689 /* Error unrolling */
690 out_free_strm:
Willy Tarreau2b718102021-04-21 07:32:39 +0200691 LIST_DELETE(&s->list);
Emeric Brun494c5052020-05-28 11:13:15 +0200692 pool_free(pool_head_stream, s);
Christopher Faulet13a35e52021-12-20 15:34:16 +0100693 out_free_cs:
694 cs_free(cs);
Emeric Brun494c5052020-05-28 11:13:15 +0200695 out_free_sess:
696 session_free(sess);
697 out_free_appctx:
698 appctx_free(appctx);
699 out_close:
700 return NULL;
701}
702
703/*
704 * Task to handle connctions to forward servers
705 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100706static struct task *process_sink_forward(struct task * task, void *context, unsigned int state)
Emeric Brun494c5052020-05-28 11:13:15 +0200707{
708 struct sink *sink = (struct sink *)context;
709 struct sink_forward_target *sft = sink->sft;
710
711 task->expire = TICK_ETERNITY;
712
713 if (!stopping) {
714 while (sft) {
715 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
716 /* if appctx is NULL, start a new session */
717 if (!sft->appctx)
718 sft->appctx = sink_forward_session_create(sink, sft);
719 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
720 sft = sft->next;
721 }
722 }
723 else {
724 while (sft) {
725 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
726 /* awake applet to perform a clean close */
727 if (sft->appctx)
728 appctx_wakeup(sft->appctx);
729 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
730 sft = sft->next;
731 }
732 }
733
734 return task;
735}
736/*
737 * Init task to manage connctions to forward servers
738 *
739 * returns 0 in case of error.
740 */
741int sink_init_forward(struct sink *sink)
742{
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200743 sink->forward_task = task_new_anywhere();
Emeric Brun494c5052020-05-28 11:13:15 +0200744 if (!sink->forward_task)
745 return 0;
746
747 sink->forward_task->process = process_sink_forward;
748 sink->forward_task->context = (void *)sink;
749 sink->forward_sighandler = signal_register_task(0, sink->forward_task, 0);
750 task_wakeup(sink->forward_task, TASK_WOKEN_INIT);
751 return 1;
752}
Emeric Brun99c453d2020-05-25 15:01:04 +0200753/*
754 * Parse "ring" section and create corresponding sink buffer.
755 *
756 * The function returns 0 in success case, otherwise, it returns error
757 * flags.
758 */
759int cfg_parse_ring(const char *file, int linenum, char **args, int kwm)
760{
761 int err_code = 0;
762 const char *inv;
763 size_t size = BUFSIZE;
Emeric Brun494c5052020-05-28 11:13:15 +0200764 struct proxy *p;
Emeric Brun99c453d2020-05-25 15:01:04 +0200765
766 if (strcmp(args[0], "ring") == 0) { /* new peers section */
767 if (!*args[1]) {
768 ha_alert("parsing [%s:%d] : missing ring name.\n", file, linenum);
769 err_code |= ERR_ALERT | ERR_FATAL;
770 goto err;
771 }
772
773 inv = invalid_char(args[1]);
774 if (inv) {
775 ha_alert("parsing [%s:%d] : invalid ring name '%s' (character '%c' is not permitted).\n", file, linenum, args[1], *inv);
776 err_code |= ERR_ALERT | ERR_FATAL;
777 goto err;
778 }
779
780 if (sink_find(args[1])) {
781 ha_alert("parsing [%s:%d] : sink named '%s' already exists.\n", file, linenum, args[1]);
782 err_code |= ERR_ALERT | ERR_FATAL;
783 goto err;
784 }
785
Emeric Brun54648852020-07-06 15:54:06 +0200786 cfg_sink = sink_new_buf(args[1], args[1], LOG_FORMAT_RAW, size);
Emeric Brun99c453d2020-05-25 15:01:04 +0200787 if (!cfg_sink || cfg_sink->type != SINK_TYPE_BUFFER) {
788 ha_alert("parsing [%s:%d] : unable to create a new sink buffer for ring '%s'.\n", file, linenum, args[1]);
789 err_code |= ERR_ALERT | ERR_FATAL;
790 goto err;
791 }
Emeric Brun494c5052020-05-28 11:13:15 +0200792
793 /* allocate new proxy to handle forwards */
794 p = calloc(1, sizeof *p);
795 if (!p) {
796 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
797 err_code |= ERR_ALERT | ERR_FATAL;
798 goto err;
799 }
800
801 init_new_proxy(p);
802 sink_setup_proxy(p);
803 p->parent = cfg_sink;
804 p->id = strdup(args[1]);
805 p->conf.args.file = p->conf.file = strdup(file);
806 p->conf.args.line = p->conf.line = linenum;
807 cfg_sink->forward_px = p;
Emeric Brun99c453d2020-05-25 15:01:04 +0200808 }
809 else if (strcmp(args[0], "size") == 0) {
810 size = atol(args[1]);
811 if (!size) {
812 ha_alert("parsing [%s:%d] : invalid size '%s' for new sink buffer.\n", file, linenum, args[1]);
813 err_code |= ERR_ALERT | ERR_FATAL;
814 goto err;
815 }
816
817 if (!cfg_sink || (cfg_sink->type != SINK_TYPE_BUFFER)
818 || !ring_resize(cfg_sink->ctx.ring, size)) {
819 ha_alert("parsing [%s:%d] : fail to set sink buffer size '%s'.\n", file, linenum, args[1]);
820 err_code |= ERR_ALERT | ERR_FATAL;
821 goto err;
822 }
823 }
Emeric Brun494c5052020-05-28 11:13:15 +0200824 else if (strcmp(args[0],"server") == 0) {
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100825 err_code |= parse_server(file, linenum, args, cfg_sink->forward_px, NULL,
826 SRV_PARSE_PARSE_ADDR|SRV_PARSE_INITIAL_RESOLVE);
Emeric Brun494c5052020-05-28 11:13:15 +0200827 }
828 else if (strcmp(args[0],"timeout") == 0) {
829 if (!cfg_sink || !cfg_sink->forward_px) {
830 ha_alert("parsing [%s:%d] : unable to set timeout '%s'.\n", file, linenum, args[1]);
831 err_code |= ERR_ALERT | ERR_FATAL;
832 goto err;
833 }
834
835 if (strcmp(args[1], "connect") == 0 ||
836 strcmp(args[1], "server") == 0) {
837 const char *res;
838 unsigned int tout;
839
840 if (!*args[2]) {
841 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
842 file, linenum, args[0], args[1]);
843 err_code |= ERR_ALERT | ERR_FATAL;
844 goto err;
845 }
846 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
847 if (res == PARSE_TIME_OVER) {
848 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
849 file, linenum, args[2], args[0], args[1]);
850 err_code |= ERR_ALERT | ERR_FATAL;
851 goto err;
852 }
853 else if (res == PARSE_TIME_UNDER) {
854 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
855 file, linenum, args[2], args[0], args[1]);
856 err_code |= ERR_ALERT | ERR_FATAL;
857 goto err;
858 }
859 else if (res) {
860 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
861 file, linenum, *res, args[0], args[1]);
862 err_code |= ERR_ALERT | ERR_FATAL;
863 goto err;
864 }
865 if (args[1][2] == 'c')
866 cfg_sink->forward_px->timeout.connect = tout;
867 else
868 cfg_sink->forward_px->timeout.server = tout;
869 }
870 }
Emeric Brun99c453d2020-05-25 15:01:04 +0200871 else if (strcmp(args[0],"format") == 0) {
872 if (!cfg_sink) {
873 ha_alert("parsing [%s:%d] : unable to set format '%s'.\n", file, linenum, args[1]);
874 err_code |= ERR_ALERT | ERR_FATAL;
875 goto err;
876 }
877
Emeric Brun54648852020-07-06 15:54:06 +0200878 cfg_sink->fmt = get_log_format(args[1]);
879 if (cfg_sink->fmt == LOG_FORMAT_UNSPEC) {
Emeric Brun99c453d2020-05-25 15:01:04 +0200880 ha_alert("parsing [%s:%d] : unknown format '%s'.\n", file, linenum, args[1]);
881 err_code |= ERR_ALERT | ERR_FATAL;
882 goto err;
883 }
884 }
885 else if (strcmp(args[0],"maxlen") == 0) {
886 if (!cfg_sink) {
887 ha_alert("parsing [%s:%d] : unable to set event max length '%s'.\n", file, linenum, args[1]);
888 err_code |= ERR_ALERT | ERR_FATAL;
889 goto err;
890 }
891
892 cfg_sink->maxlen = atol(args[1]);
893 if (!cfg_sink->maxlen) {
894 ha_alert("parsing [%s:%d] : invalid size '%s' for new sink buffer.\n", file, linenum, args[1]);
895 err_code |= ERR_ALERT | ERR_FATAL;
896 goto err;
897 }
898 }
899 else if (strcmp(args[0],"description") == 0) {
900 if (!cfg_sink) {
901 ha_alert("parsing [%s:%d] : unable to set description '%s'.\n", file, linenum, args[1]);
902 err_code |= ERR_ALERT | ERR_FATAL;
903 goto err;
904 }
905
906 if (!*args[1]) {
907 ha_alert("parsing [%s:%d] : missing ring description text.\n", file, linenum);
908 err_code |= ERR_ALERT | ERR_FATAL;
909 goto err;
910 }
911
912 free(cfg_sink->desc);
913
914 cfg_sink->desc = strdup(args[1]);
915 if (!cfg_sink->desc) {
916 ha_alert("parsing [%s:%d] : fail to set description '%s'.\n", file, linenum, args[1]);
917 err_code |= ERR_ALERT | ERR_FATAL;
918 goto err;
919 }
920 }
Emeric Brun9f2ff3a2020-05-29 15:47:52 +0200921 else {
922 ha_alert("parsing [%s:%d] : unknown statement '%s'.\n", file, linenum, args[0]);
923 err_code |= ERR_ALERT | ERR_FATAL;
924 goto err;
925 }
Emeric Brun99c453d2020-05-25 15:01:04 +0200926
927err:
928 return err_code;
929}
930
Emeric Brun94aab062021-04-02 10:41:36 +0200931/* Creates an new sink buffer from a log server.
932 *
933 * It uses the logsrvaddress to declare a forward
934 * server for this buffer. And it initializes the
935 * forwarding.
936 *
937 * The function returns a pointer on the
938 * allocated struct sink if allocate
939 * and initialize succeed, else if it fails
940 * it returns NULL.
941 *
942 * Note: the sink is created using the name
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +0500943 * specified into logsrv->ring_name
Emeric Brun94aab062021-04-02 10:41:36 +0200944 */
945struct sink *sink_new_from_logsrv(struct logsrv *logsrv)
946{
947 struct proxy *p = NULL;
948 struct sink *sink = NULL;
949 struct server *srv = NULL;
950 struct sink_forward_target *sft = NULL;
Emeric Brun94aab062021-04-02 10:41:36 +0200951
952 /* allocate new proxy to handle
953 * forward to a stream server
954 */
955 p = calloc(1, sizeof *p);
956 if (!p) {
957 goto error;
958 }
959
960 init_new_proxy(p);
961 sink_setup_proxy(p);
962 p->id = strdup(logsrv->ring_name);
963 p->conf.args.file = p->conf.file = strdup(logsrv->conf.file);
964 p->conf.args.line = p->conf.line = logsrv->conf.line;
965
966 /* allocate a new server to forward messages
967 * from ring buffer
968 */
969 srv = new_server(p);
970 if (!srv)
971 goto error;
972
973 /* init server */
974 srv->id = strdup(logsrv->ring_name);
975 srv->conf.file = strdup(logsrv->conf.file);
976 srv->conf.line = logsrv->conf.line;
977 srv->addr = logsrv->addr;
978 srv->svc_port = get_host_port(&logsrv->addr);
979 HA_SPIN_INIT(&srv->lock);
980
981 /* process per thread init */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +0200982 if (srv_init_per_thr(srv) == -1)
Emeric Brun94aab062021-04-02 10:41:36 +0200983 goto error;
984
Emeric Brun94aab062021-04-02 10:41:36 +0200985 /* the servers are linked backwards
986 * first into proxy
987 */
988 p->srv = srv;
989 srv->next = p->srv;
990
991 /* allocate sink_forward_target descriptor */
992 sft = calloc(1, sizeof(*sft));
993 if (!sft)
994 goto error;
995
996 /* init sink_forward_target offset */
997 sft->srv = srv;
998 sft->appctx = NULL;
999 sft->ofs = ~0;
1000 HA_SPIN_INIT(&sft->lock);
1001
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +05001002 /* prepare description for the sink */
Emeric Brun94aab062021-04-02 10:41:36 +02001003 chunk_reset(&trash);
1004 chunk_printf(&trash, "created from logserver declared into '%s' at line %d", logsrv->conf.file, logsrv->conf.line);
1005
1006 /* allocate a new sink buffer */
1007 sink = sink_new_buf(logsrv->ring_name, trash.area, logsrv->format, BUFSIZE);
1008 if (!sink || sink->type != SINK_TYPE_BUFFER) {
1009 goto error;
1010 }
1011
1012 /* link sink_forward_target to proxy */
1013 sink->forward_px = p;
1014 p->parent = sink;
1015
1016 /* insert into sink_forward_targets
1017 * list into sink
1018 */
1019 sft->next = sink->sft;
1020 sink->sft = sft;
1021
1022 /* mark server as an attached reader to the ring */
1023 if (!ring_attach(sink->ctx.ring)) {
1024 /* should never fail since there is
1025 * only one reader
1026 */
1027 goto error;
1028 }
1029
1030 /* initialize sink buffer forwarding */
1031 if (!sink_init_forward(sink))
1032 goto error;
1033
1034 /* reset familyt of logsrv to consider the ring buffer target */
1035 logsrv->addr.ss_family = AF_UNSPEC;
1036
1037 return sink;
1038error:
1039 if (p) {
1040 if (p->id)
1041 free(p->id);
1042 if (p->conf.file)
1043 free(p->conf.file);
1044
1045 free(p);
1046 }
1047
1048 if (srv) {
1049 if (srv->id)
1050 free(srv->id);
1051 if (srv->conf.file)
1052 free((void *)srv->conf.file);
1053 if (srv->per_thr)
1054 free(srv->per_thr);
1055 free(srv);
1056 }
1057
1058 if (sft)
1059 free(sft);
1060
1061 if (sink) {
1062 if (sink->ctx.ring)
1063 ring_free(sink->ctx.ring);
1064
Willy Tarreau2b718102021-04-21 07:32:39 +02001065 LIST_DELETE(&sink->sink_list);
Emeric Brun94aab062021-04-02 10:41:36 +02001066 free(sink->name);
1067 free(sink->desc);
1068 free(sink);
1069 }
1070
1071 return NULL;
1072}
1073
Emeric Brun99c453d2020-05-25 15:01:04 +02001074/*
1075 * Post parsing "ring" section.
1076 *
1077 * The function returns 0 in success case, otherwise, it returns error
1078 * flags.
1079 */
1080int cfg_post_parse_ring()
1081{
1082 int err_code = 0;
Emeric Brun494c5052020-05-28 11:13:15 +02001083 struct server *srv;
Emeric Brun99c453d2020-05-25 15:01:04 +02001084
1085 if (cfg_sink && (cfg_sink->type == SINK_TYPE_BUFFER)) {
1086 if (cfg_sink->maxlen > b_size(&cfg_sink->ctx.ring->buf)) {
1087 ha_warning("ring '%s' event max length '%u' exceeds size, forced to size '%lu'.\n",
Willy Tarreau570a22b2020-06-02 12:00:46 +02001088 cfg_sink->name, cfg_sink->maxlen, (unsigned long)b_size(&cfg_sink->ctx.ring->buf));
Emeric Brun99c453d2020-05-25 15:01:04 +02001089 cfg_sink->maxlen = b_size(&cfg_sink->ctx.ring->buf);
1090 err_code |= ERR_ALERT;
1091 }
Emeric Brun494c5052020-05-28 11:13:15 +02001092
1093 /* prepare forward server descriptors */
1094 if (cfg_sink->forward_px) {
1095 srv = cfg_sink->forward_px->srv;
1096 while (srv) {
1097 struct sink_forward_target *sft;
1098 /* init ssl if needed */
1099 if (srv->use_ssl == 1 && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
1100 if (xprt_get(XPRT_SSL)->prepare_srv(srv)) {
1101 ha_alert("unable to prepare SSL for server '%s' in ring '%s'.\n", srv->id, cfg_sink->name);
1102 err_code |= ERR_ALERT | ERR_FATAL;
1103 }
1104 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001105
Emeric Brun494c5052020-05-28 11:13:15 +02001106 /* allocate sink_forward_target descriptor */
1107 sft = calloc(1, sizeof(*sft));
1108 if (!sft) {
1109 ha_alert("memory allocation error initializing server '%s' in ring '%s'.\n",srv->id, cfg_sink->name);
1110 err_code |= ERR_ALERT | ERR_FATAL;
1111 break;
1112 }
1113 sft->srv = srv;
1114 sft->appctx = NULL;
1115 sft->ofs = ~0; /* init ring offset */
1116 sft->next = cfg_sink->sft;
1117 HA_SPIN_INIT(&sft->lock);
1118
1119 /* mark server attached to the ring */
1120 if (!ring_attach(cfg_sink->ctx.ring)) {
1121 ha_alert("server '%s' sets too many watchers > 255 on ring '%s'.\n", srv->id, cfg_sink->name);
1122 err_code |= ERR_ALERT | ERR_FATAL;
1123 }
1124 cfg_sink->sft = sft;
1125 srv = srv->next;
1126 }
1127 sink_init_forward(cfg_sink);
1128 }
1129 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001130 cfg_sink = NULL;
1131
1132 return err_code;
1133}
1134
1135/* resolve sink names at end of config. Returns 0 on success otherwise error
1136 * flags.
1137*/
1138int post_sink_resolve()
1139{
Christopher Fauletfc633b62020-11-06 15:24:23 +01001140 int err_code = ERR_NONE;
Emeric Brun99c453d2020-05-25 15:01:04 +02001141 struct logsrv *logsrv, *logb;
1142 struct sink *sink;
1143 struct proxy *px;
1144
1145 list_for_each_entry_safe(logsrv, logb, &global.logsrvs, list) {
1146 if (logsrv->type == LOG_TARGET_BUFFER) {
1147 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001148 if (!sink) {
1149 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1150 * means we must allocate a sink
1151 * buffer to send messages to this logsrv
1152 */
1153 if (logsrv->addr.ss_family != AF_UNSPEC) {
1154 sink = sink_new_from_logsrv(logsrv);
1155 if (!sink) {
1156 ha_alert("global stream log server declared in file '%s' at line %d cannot be initialized'.\n",
1157 logsrv->conf.file, logsrv->conf.line);
1158 err_code |= ERR_ALERT | ERR_FATAL;
1159 }
1160 }
1161 else {
1162 ha_alert("global log server declared in file '%s' at line %d uses unknown ring named '%s'.\n",
1163 logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1164 err_code |= ERR_ALERT | ERR_FATAL;
1165 }
1166 }
1167 else if (sink->type != SINK_TYPE_BUFFER) {
1168 ha_alert("global log server declared in file '%s' at line %d uses incompatible ring '%s'.\n",
1169 logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun99c453d2020-05-25 15:01:04 +02001170 err_code |= ERR_ALERT | ERR_FATAL;
1171 }
1172 logsrv->sink = sink;
1173 }
Emeric Brun94aab062021-04-02 10:41:36 +02001174
Emeric Brun99c453d2020-05-25 15:01:04 +02001175 }
1176
1177 for (px = proxies_list; px; px = px->next) {
1178 list_for_each_entry_safe(logsrv, logb, &px->logsrvs, list) {
1179 if (logsrv->type == LOG_TARGET_BUFFER) {
1180 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001181 if (!sink) {
1182 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1183 * means we must allocate a sink
1184 * buffer to send messages to this logsrv
1185 */
1186 if (logsrv->addr.ss_family != AF_UNSPEC) {
1187 sink = sink_new_from_logsrv(logsrv);
1188 if (!sink) {
1189 ha_alert("log server declared in proxy section '%s' file '%s' at line %d cannot be initialized'.\n",
1190 px->id, logsrv->conf.file, logsrv->conf.line);
1191 err_code |= ERR_ALERT | ERR_FATAL;
1192 }
1193 }
1194 else {
1195 ha_alert("log server declared in proxy section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1196 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1197 err_code |= ERR_ALERT | ERR_FATAL;
1198 }
1199 }
1200 else if (sink->type != SINK_TYPE_BUFFER) {
1201 ha_alert("log server declared in proxy section '%s' in file '%s' at line %d uses incomatible ring named '%s'.\n",
1202 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun99c453d2020-05-25 15:01:04 +02001203 err_code |= ERR_ALERT | ERR_FATAL;
1204 }
1205 logsrv->sink = sink;
1206 }
1207 }
1208 }
Emeric Brun12941c82020-07-07 14:19:42 +02001209
1210 for (px = cfg_log_forward; px; px = px->next) {
1211 list_for_each_entry_safe(logsrv, logb, &px->logsrvs, list) {
1212 if (logsrv->type == LOG_TARGET_BUFFER) {
1213 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001214 if (!sink) {
1215 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1216 * means we must allocate a sink
1217 * buffer to send messages to this logsrv
1218 */
1219 if (logsrv->addr.ss_family != AF_UNSPEC) {
1220 sink = sink_new_from_logsrv(logsrv);
1221 if (!sink) {
1222 ha_alert("log server declared in log-forward section '%s' file '%s' at line %d cannot be initialized'.\n",
1223 px->id, logsrv->conf.file, logsrv->conf.line);
1224 err_code |= ERR_ALERT | ERR_FATAL;
1225 }
1226 }
1227 else {
1228 ha_alert("log server declared in log-forward section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1229 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1230 err_code |= ERR_ALERT | ERR_FATAL;
1231 }
1232 }
1233 else if (sink->type != SINK_TYPE_BUFFER) {
1234 ha_alert("log server declared in log-forward section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1235 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun12941c82020-07-07 14:19:42 +02001236 err_code |= ERR_ALERT | ERR_FATAL;
1237 }
1238 logsrv->sink = sink;
1239 }
1240 }
1241 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001242 return err_code;
1243}
1244
1245
Willy Tarreau973e6622019-08-20 11:57:52 +02001246static void sink_init()
1247{
Emeric Brun54648852020-07-06 15:54:06 +02001248 sink_new_fd("stdout", "standard output (fd#1)", LOG_FORMAT_RAW, 1);
1249 sink_new_fd("stderr", "standard output (fd#2)", LOG_FORMAT_RAW, 2);
1250 sink_new_buf("buf0", "in-memory ring buffer", LOG_FORMAT_TIMED, 1048576);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001251}
1252
1253static void sink_deinit()
1254{
1255 struct sink *sink, *sb;
1256
1257 list_for_each_entry_safe(sink, sb, &sink_list, sink_list) {
1258 if (sink->type == SINK_TYPE_BUFFER)
1259 ring_free(sink->ctx.ring);
Willy Tarreau2b718102021-04-21 07:32:39 +02001260 LIST_DELETE(&sink->sink_list);
Emeric Brun99c453d2020-05-25 15:01:04 +02001261 free(sink->name);
1262 free(sink->desc);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001263 free(sink);
1264 }
Willy Tarreau973e6622019-08-20 11:57:52 +02001265}
1266
1267INITCALL0(STG_REGISTER, sink_init);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001268REGISTER_POST_DEINIT(sink_deinit);
Willy Tarreau973e6622019-08-20 11:57:52 +02001269
Willy Tarreau9f830d72019-08-26 18:17:04 +02001270static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001271 { { "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 +02001272 {{},}
1273}};
1274
1275INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
1276
Emeric Brun99c453d2020-05-25 15:01:04 +02001277/* config parsers for this section */
1278REGISTER_CONFIG_SECTION("ring", cfg_parse_ring, cfg_post_parse_ring);
1279REGISTER_POST_CHECK(post_sink_resolve);
1280
Willy Tarreau67b5a162019-08-11 16:38:56 +02001281/*
1282 * Local variables:
1283 * c-indent-level: 8
1284 * c-basic-offset: 8
1285 * End:
1286 */