blob: b869d2eafb3bcfe3918ca0cb1a4951081ea2e689 [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;
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{
297 struct stream_interface *si = appctx->owner;
298 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{
436 struct stream_interface *si = appctx->owner;
437 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
583 si = sft->appctx->owner;
584 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{
606 struct sink_forward_target *sft = appctx->ctx.peers.ptr;
607
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;
639 struct stream *s;
Emeric Brun97556472020-05-30 01:42:45 +0200640 struct applet *applet = &sink_forward_applet;
641
642 if (sft->srv->log_proto == SRV_LOG_PROTO_OCTET_COUNTING)
643 applet = &sink_forward_oc_applet;
Emeric Brun494c5052020-05-28 11:13:15 +0200644
Willy Tarreaue6124462021-09-13 10:07:38 +0200645 appctx = appctx_new(applet);
Emeric Brun494c5052020-05-28 11:13:15 +0200646 if (!appctx)
647 goto out_close;
648
649 appctx->ctx.sft.ptr = (void *)sft;
650
651 sess = session_new(p, NULL, &appctx->obj_type);
652 if (!sess) {
653 ha_alert("out of memory in peer_session_create().\n");
654 goto out_free_appctx;
655 }
656
Christopher Faulet26256f82020-09-14 11:40:13 +0200657 if ((s = stream_new(sess, &appctx->obj_type, &BUF_NULL)) == NULL) {
Emeric Brun494c5052020-05-28 11:13:15 +0200658 ha_alert("Failed to initialize stream in peer_session_create().\n");
659 goto out_free_sess;
660 }
661
662
663 s->target = &sft->srv->obj_type;
Willy Tarreau9b7587a2020-10-15 07:32:10 +0200664 if (!sockaddr_alloc(&s->target_addr, &sft->srv->addr, sizeof(sft->srv->addr)))
Emeric Brun494c5052020-05-28 11:13:15 +0200665 goto out_free_strm;
Emeric Brun494c5052020-05-28 11:13:15 +0200666 s->flags = SF_ASSIGNED|SF_ADDR_SET;
667 s->si[1].flags |= SI_FL_NOLINGER;
668
669 s->do_log = NULL;
670 s->uniq_id = 0;
671
672 s->res.flags |= CF_READ_DONTWAIT;
673 /* for rto and rex to eternity to not expire on idle recv:
674 * We are using a syslog server.
675 */
676 s->res.rto = TICK_ETERNITY;
677 s->res.rex = TICK_ETERNITY;
678 sft->appctx = appctx;
679 task_wakeup(s->task, TASK_WOKEN_INIT);
680 return appctx;
681
682 /* Error unrolling */
683 out_free_strm:
Willy Tarreau2b718102021-04-21 07:32:39 +0200684 LIST_DELETE(&s->list);
Emeric Brun494c5052020-05-28 11:13:15 +0200685 pool_free(pool_head_stream, s);
686 out_free_sess:
687 session_free(sess);
688 out_free_appctx:
689 appctx_free(appctx);
690 out_close:
691 return NULL;
692}
693
694/*
695 * Task to handle connctions to forward servers
696 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100697static struct task *process_sink_forward(struct task * task, void *context, unsigned int state)
Emeric Brun494c5052020-05-28 11:13:15 +0200698{
699 struct sink *sink = (struct sink *)context;
700 struct sink_forward_target *sft = sink->sft;
701
702 task->expire = TICK_ETERNITY;
703
704 if (!stopping) {
705 while (sft) {
706 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
707 /* if appctx is NULL, start a new session */
708 if (!sft->appctx)
709 sft->appctx = sink_forward_session_create(sink, sft);
710 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
711 sft = sft->next;
712 }
713 }
714 else {
715 while (sft) {
716 HA_SPIN_LOCK(SFT_LOCK, &sft->lock);
717 /* awake applet to perform a clean close */
718 if (sft->appctx)
719 appctx_wakeup(sft->appctx);
720 HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock);
721 sft = sft->next;
722 }
723 }
724
725 return task;
726}
727/*
728 * Init task to manage connctions to forward servers
729 *
730 * returns 0 in case of error.
731 */
732int sink_init_forward(struct sink *sink)
733{
734 sink->forward_task = task_new(MAX_THREADS_MASK);
735 if (!sink->forward_task)
736 return 0;
737
738 sink->forward_task->process = process_sink_forward;
739 sink->forward_task->context = (void *)sink;
740 sink->forward_sighandler = signal_register_task(0, sink->forward_task, 0);
741 task_wakeup(sink->forward_task, TASK_WOKEN_INIT);
742 return 1;
743}
Emeric Brun99c453d2020-05-25 15:01:04 +0200744/*
745 * Parse "ring" section and create corresponding sink buffer.
746 *
747 * The function returns 0 in success case, otherwise, it returns error
748 * flags.
749 */
750int cfg_parse_ring(const char *file, int linenum, char **args, int kwm)
751{
752 int err_code = 0;
753 const char *inv;
754 size_t size = BUFSIZE;
Emeric Brun494c5052020-05-28 11:13:15 +0200755 struct proxy *p;
Emeric Brun99c453d2020-05-25 15:01:04 +0200756
757 if (strcmp(args[0], "ring") == 0) { /* new peers section */
758 if (!*args[1]) {
759 ha_alert("parsing [%s:%d] : missing ring name.\n", file, linenum);
760 err_code |= ERR_ALERT | ERR_FATAL;
761 goto err;
762 }
763
764 inv = invalid_char(args[1]);
765 if (inv) {
766 ha_alert("parsing [%s:%d] : invalid ring name '%s' (character '%c' is not permitted).\n", file, linenum, args[1], *inv);
767 err_code |= ERR_ALERT | ERR_FATAL;
768 goto err;
769 }
770
771 if (sink_find(args[1])) {
772 ha_alert("parsing [%s:%d] : sink named '%s' already exists.\n", file, linenum, args[1]);
773 err_code |= ERR_ALERT | ERR_FATAL;
774 goto err;
775 }
776
Emeric Brun54648852020-07-06 15:54:06 +0200777 cfg_sink = sink_new_buf(args[1], args[1], LOG_FORMAT_RAW, size);
Emeric Brun99c453d2020-05-25 15:01:04 +0200778 if (!cfg_sink || cfg_sink->type != SINK_TYPE_BUFFER) {
779 ha_alert("parsing [%s:%d] : unable to create a new sink buffer for ring '%s'.\n", file, linenum, args[1]);
780 err_code |= ERR_ALERT | ERR_FATAL;
781 goto err;
782 }
Emeric Brun494c5052020-05-28 11:13:15 +0200783
784 /* allocate new proxy to handle forwards */
785 p = calloc(1, sizeof *p);
786 if (!p) {
787 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
788 err_code |= ERR_ALERT | ERR_FATAL;
789 goto err;
790 }
791
792 init_new_proxy(p);
793 sink_setup_proxy(p);
794 p->parent = cfg_sink;
795 p->id = strdup(args[1]);
796 p->conf.args.file = p->conf.file = strdup(file);
797 p->conf.args.line = p->conf.line = linenum;
798 cfg_sink->forward_px = p;
Emeric Brun99c453d2020-05-25 15:01:04 +0200799 }
800 else if (strcmp(args[0], "size") == 0) {
801 size = atol(args[1]);
802 if (!size) {
803 ha_alert("parsing [%s:%d] : invalid size '%s' for new sink buffer.\n", file, linenum, args[1]);
804 err_code |= ERR_ALERT | ERR_FATAL;
805 goto err;
806 }
807
808 if (!cfg_sink || (cfg_sink->type != SINK_TYPE_BUFFER)
809 || !ring_resize(cfg_sink->ctx.ring, size)) {
810 ha_alert("parsing [%s:%d] : fail to set sink buffer size '%s'.\n", file, linenum, args[1]);
811 err_code |= ERR_ALERT | ERR_FATAL;
812 goto err;
813 }
814 }
Emeric Brun494c5052020-05-28 11:13:15 +0200815 else if (strcmp(args[0],"server") == 0) {
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100816 err_code |= parse_server(file, linenum, args, cfg_sink->forward_px, NULL,
817 SRV_PARSE_PARSE_ADDR|SRV_PARSE_INITIAL_RESOLVE);
Emeric Brun494c5052020-05-28 11:13:15 +0200818 }
819 else if (strcmp(args[0],"timeout") == 0) {
820 if (!cfg_sink || !cfg_sink->forward_px) {
821 ha_alert("parsing [%s:%d] : unable to set timeout '%s'.\n", file, linenum, args[1]);
822 err_code |= ERR_ALERT | ERR_FATAL;
823 goto err;
824 }
825
826 if (strcmp(args[1], "connect") == 0 ||
827 strcmp(args[1], "server") == 0) {
828 const char *res;
829 unsigned int tout;
830
831 if (!*args[2]) {
832 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
833 file, linenum, args[0], args[1]);
834 err_code |= ERR_ALERT | ERR_FATAL;
835 goto err;
836 }
837 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
838 if (res == PARSE_TIME_OVER) {
839 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
840 file, linenum, args[2], args[0], args[1]);
841 err_code |= ERR_ALERT | ERR_FATAL;
842 goto err;
843 }
844 else if (res == PARSE_TIME_UNDER) {
845 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
846 file, linenum, args[2], args[0], args[1]);
847 err_code |= ERR_ALERT | ERR_FATAL;
848 goto err;
849 }
850 else if (res) {
851 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
852 file, linenum, *res, args[0], args[1]);
853 err_code |= ERR_ALERT | ERR_FATAL;
854 goto err;
855 }
856 if (args[1][2] == 'c')
857 cfg_sink->forward_px->timeout.connect = tout;
858 else
859 cfg_sink->forward_px->timeout.server = tout;
860 }
861 }
Emeric Brun99c453d2020-05-25 15:01:04 +0200862 else if (strcmp(args[0],"format") == 0) {
863 if (!cfg_sink) {
864 ha_alert("parsing [%s:%d] : unable to set format '%s'.\n", file, linenum, args[1]);
865 err_code |= ERR_ALERT | ERR_FATAL;
866 goto err;
867 }
868
Emeric Brun54648852020-07-06 15:54:06 +0200869 cfg_sink->fmt = get_log_format(args[1]);
870 if (cfg_sink->fmt == LOG_FORMAT_UNSPEC) {
Emeric Brun99c453d2020-05-25 15:01:04 +0200871 ha_alert("parsing [%s:%d] : unknown format '%s'.\n", file, linenum, args[1]);
872 err_code |= ERR_ALERT | ERR_FATAL;
873 goto err;
874 }
875 }
876 else if (strcmp(args[0],"maxlen") == 0) {
877 if (!cfg_sink) {
878 ha_alert("parsing [%s:%d] : unable to set event max length '%s'.\n", file, linenum, args[1]);
879 err_code |= ERR_ALERT | ERR_FATAL;
880 goto err;
881 }
882
883 cfg_sink->maxlen = atol(args[1]);
884 if (!cfg_sink->maxlen) {
885 ha_alert("parsing [%s:%d] : invalid size '%s' for new sink buffer.\n", file, linenum, args[1]);
886 err_code |= ERR_ALERT | ERR_FATAL;
887 goto err;
888 }
889 }
890 else if (strcmp(args[0],"description") == 0) {
891 if (!cfg_sink) {
892 ha_alert("parsing [%s:%d] : unable to set description '%s'.\n", file, linenum, args[1]);
893 err_code |= ERR_ALERT | ERR_FATAL;
894 goto err;
895 }
896
897 if (!*args[1]) {
898 ha_alert("parsing [%s:%d] : missing ring description text.\n", file, linenum);
899 err_code |= ERR_ALERT | ERR_FATAL;
900 goto err;
901 }
902
903 free(cfg_sink->desc);
904
905 cfg_sink->desc = strdup(args[1]);
906 if (!cfg_sink->desc) {
907 ha_alert("parsing [%s:%d] : fail to set description '%s'.\n", file, linenum, args[1]);
908 err_code |= ERR_ALERT | ERR_FATAL;
909 goto err;
910 }
911 }
Emeric Brun9f2ff3a2020-05-29 15:47:52 +0200912 else {
913 ha_alert("parsing [%s:%d] : unknown statement '%s'.\n", file, linenum, args[0]);
914 err_code |= ERR_ALERT | ERR_FATAL;
915 goto err;
916 }
Emeric Brun99c453d2020-05-25 15:01:04 +0200917
918err:
919 return err_code;
920}
921
Emeric Brun94aab062021-04-02 10:41:36 +0200922/* Creates an new sink buffer from a log server.
923 *
924 * It uses the logsrvaddress to declare a forward
925 * server for this buffer. And it initializes the
926 * forwarding.
927 *
928 * The function returns a pointer on the
929 * allocated struct sink if allocate
930 * and initialize succeed, else if it fails
931 * it returns NULL.
932 *
933 * Note: the sink is created using the name
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +0500934 * specified into logsrv->ring_name
Emeric Brun94aab062021-04-02 10:41:36 +0200935 */
936struct sink *sink_new_from_logsrv(struct logsrv *logsrv)
937{
938 struct proxy *p = NULL;
939 struct sink *sink = NULL;
940 struct server *srv = NULL;
941 struct sink_forward_target *sft = NULL;
Emeric Brun94aab062021-04-02 10:41:36 +0200942
943 /* allocate new proxy to handle
944 * forward to a stream server
945 */
946 p = calloc(1, sizeof *p);
947 if (!p) {
948 goto error;
949 }
950
951 init_new_proxy(p);
952 sink_setup_proxy(p);
953 p->id = strdup(logsrv->ring_name);
954 p->conf.args.file = p->conf.file = strdup(logsrv->conf.file);
955 p->conf.args.line = p->conf.line = logsrv->conf.line;
956
957 /* allocate a new server to forward messages
958 * from ring buffer
959 */
960 srv = new_server(p);
961 if (!srv)
962 goto error;
963
964 /* init server */
965 srv->id = strdup(logsrv->ring_name);
966 srv->conf.file = strdup(logsrv->conf.file);
967 srv->conf.line = logsrv->conf.line;
968 srv->addr = logsrv->addr;
969 srv->svc_port = get_host_port(&logsrv->addr);
970 HA_SPIN_INIT(&srv->lock);
971
972 /* process per thread init */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +0200973 if (srv_init_per_thr(srv) == -1)
Emeric Brun94aab062021-04-02 10:41:36 +0200974 goto error;
975
Emeric Brun94aab062021-04-02 10:41:36 +0200976 /* the servers are linked backwards
977 * first into proxy
978 */
979 p->srv = srv;
980 srv->next = p->srv;
981
982 /* allocate sink_forward_target descriptor */
983 sft = calloc(1, sizeof(*sft));
984 if (!sft)
985 goto error;
986
987 /* init sink_forward_target offset */
988 sft->srv = srv;
989 sft->appctx = NULL;
990 sft->ofs = ~0;
991 HA_SPIN_INIT(&sft->lock);
992
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +0500993 /* prepare description for the sink */
Emeric Brun94aab062021-04-02 10:41:36 +0200994 chunk_reset(&trash);
995 chunk_printf(&trash, "created from logserver declared into '%s' at line %d", logsrv->conf.file, logsrv->conf.line);
996
997 /* allocate a new sink buffer */
998 sink = sink_new_buf(logsrv->ring_name, trash.area, logsrv->format, BUFSIZE);
999 if (!sink || sink->type != SINK_TYPE_BUFFER) {
1000 goto error;
1001 }
1002
1003 /* link sink_forward_target to proxy */
1004 sink->forward_px = p;
1005 p->parent = sink;
1006
1007 /* insert into sink_forward_targets
1008 * list into sink
1009 */
1010 sft->next = sink->sft;
1011 sink->sft = sft;
1012
1013 /* mark server as an attached reader to the ring */
1014 if (!ring_attach(sink->ctx.ring)) {
1015 /* should never fail since there is
1016 * only one reader
1017 */
1018 goto error;
1019 }
1020
1021 /* initialize sink buffer forwarding */
1022 if (!sink_init_forward(sink))
1023 goto error;
1024
1025 /* reset familyt of logsrv to consider the ring buffer target */
1026 logsrv->addr.ss_family = AF_UNSPEC;
1027
1028 return sink;
1029error:
1030 if (p) {
1031 if (p->id)
1032 free(p->id);
1033 if (p->conf.file)
1034 free(p->conf.file);
1035
1036 free(p);
1037 }
1038
1039 if (srv) {
1040 if (srv->id)
1041 free(srv->id);
1042 if (srv->conf.file)
1043 free((void *)srv->conf.file);
1044 if (srv->per_thr)
1045 free(srv->per_thr);
1046 free(srv);
1047 }
1048
1049 if (sft)
1050 free(sft);
1051
1052 if (sink) {
1053 if (sink->ctx.ring)
1054 ring_free(sink->ctx.ring);
1055
Willy Tarreau2b718102021-04-21 07:32:39 +02001056 LIST_DELETE(&sink->sink_list);
Emeric Brun94aab062021-04-02 10:41:36 +02001057 free(sink->name);
1058 free(sink->desc);
1059 free(sink);
1060 }
1061
1062 return NULL;
1063}
1064
Emeric Brun99c453d2020-05-25 15:01:04 +02001065/*
1066 * Post parsing "ring" section.
1067 *
1068 * The function returns 0 in success case, otherwise, it returns error
1069 * flags.
1070 */
1071int cfg_post_parse_ring()
1072{
1073 int err_code = 0;
Emeric Brun494c5052020-05-28 11:13:15 +02001074 struct server *srv;
Emeric Brun99c453d2020-05-25 15:01:04 +02001075
1076 if (cfg_sink && (cfg_sink->type == SINK_TYPE_BUFFER)) {
1077 if (cfg_sink->maxlen > b_size(&cfg_sink->ctx.ring->buf)) {
1078 ha_warning("ring '%s' event max length '%u' exceeds size, forced to size '%lu'.\n",
Willy Tarreau570a22b2020-06-02 12:00:46 +02001079 cfg_sink->name, cfg_sink->maxlen, (unsigned long)b_size(&cfg_sink->ctx.ring->buf));
Emeric Brun99c453d2020-05-25 15:01:04 +02001080 cfg_sink->maxlen = b_size(&cfg_sink->ctx.ring->buf);
1081 err_code |= ERR_ALERT;
1082 }
Emeric Brun494c5052020-05-28 11:13:15 +02001083
1084 /* prepare forward server descriptors */
1085 if (cfg_sink->forward_px) {
1086 srv = cfg_sink->forward_px->srv;
1087 while (srv) {
1088 struct sink_forward_target *sft;
1089 /* init ssl if needed */
1090 if (srv->use_ssl == 1 && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
1091 if (xprt_get(XPRT_SSL)->prepare_srv(srv)) {
1092 ha_alert("unable to prepare SSL for server '%s' in ring '%s'.\n", srv->id, cfg_sink->name);
1093 err_code |= ERR_ALERT | ERR_FATAL;
1094 }
1095 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001096
Emeric Brun494c5052020-05-28 11:13:15 +02001097 /* allocate sink_forward_target descriptor */
1098 sft = calloc(1, sizeof(*sft));
1099 if (!sft) {
1100 ha_alert("memory allocation error initializing server '%s' in ring '%s'.\n",srv->id, cfg_sink->name);
1101 err_code |= ERR_ALERT | ERR_FATAL;
1102 break;
1103 }
1104 sft->srv = srv;
1105 sft->appctx = NULL;
1106 sft->ofs = ~0; /* init ring offset */
1107 sft->next = cfg_sink->sft;
1108 HA_SPIN_INIT(&sft->lock);
1109
1110 /* mark server attached to the ring */
1111 if (!ring_attach(cfg_sink->ctx.ring)) {
1112 ha_alert("server '%s' sets too many watchers > 255 on ring '%s'.\n", srv->id, cfg_sink->name);
1113 err_code |= ERR_ALERT | ERR_FATAL;
1114 }
1115 cfg_sink->sft = sft;
1116 srv = srv->next;
1117 }
1118 sink_init_forward(cfg_sink);
1119 }
1120 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001121 cfg_sink = NULL;
1122
1123 return err_code;
1124}
1125
1126/* resolve sink names at end of config. Returns 0 on success otherwise error
1127 * flags.
1128*/
1129int post_sink_resolve()
1130{
Christopher Fauletfc633b62020-11-06 15:24:23 +01001131 int err_code = ERR_NONE;
Emeric Brun99c453d2020-05-25 15:01:04 +02001132 struct logsrv *logsrv, *logb;
1133 struct sink *sink;
1134 struct proxy *px;
1135
1136 list_for_each_entry_safe(logsrv, logb, &global.logsrvs, list) {
1137 if (logsrv->type == LOG_TARGET_BUFFER) {
1138 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001139 if (!sink) {
1140 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1141 * means we must allocate a sink
1142 * buffer to send messages to this logsrv
1143 */
1144 if (logsrv->addr.ss_family != AF_UNSPEC) {
1145 sink = sink_new_from_logsrv(logsrv);
1146 if (!sink) {
1147 ha_alert("global stream log server declared in file '%s' at line %d cannot be initialized'.\n",
1148 logsrv->conf.file, logsrv->conf.line);
1149 err_code |= ERR_ALERT | ERR_FATAL;
1150 }
1151 }
1152 else {
1153 ha_alert("global log server declared in file '%s' at line %d uses unknown ring named '%s'.\n",
1154 logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1155 err_code |= ERR_ALERT | ERR_FATAL;
1156 }
1157 }
1158 else if (sink->type != SINK_TYPE_BUFFER) {
1159 ha_alert("global log server declared in file '%s' at line %d uses incompatible ring '%s'.\n",
1160 logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun99c453d2020-05-25 15:01:04 +02001161 err_code |= ERR_ALERT | ERR_FATAL;
1162 }
1163 logsrv->sink = sink;
1164 }
Emeric Brun94aab062021-04-02 10:41:36 +02001165
Emeric Brun99c453d2020-05-25 15:01:04 +02001166 }
1167
1168 for (px = proxies_list; px; px = px->next) {
1169 list_for_each_entry_safe(logsrv, logb, &px->logsrvs, list) {
1170 if (logsrv->type == LOG_TARGET_BUFFER) {
1171 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001172 if (!sink) {
1173 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1174 * means we must allocate a sink
1175 * buffer to send messages to this logsrv
1176 */
1177 if (logsrv->addr.ss_family != AF_UNSPEC) {
1178 sink = sink_new_from_logsrv(logsrv);
1179 if (!sink) {
1180 ha_alert("log server declared in proxy section '%s' file '%s' at line %d cannot be initialized'.\n",
1181 px->id, logsrv->conf.file, logsrv->conf.line);
1182 err_code |= ERR_ALERT | ERR_FATAL;
1183 }
1184 }
1185 else {
1186 ha_alert("log server declared in proxy section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1187 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1188 err_code |= ERR_ALERT | ERR_FATAL;
1189 }
1190 }
1191 else if (sink->type != SINK_TYPE_BUFFER) {
1192 ha_alert("log server declared in proxy section '%s' in file '%s' at line %d uses incomatible ring named '%s'.\n",
1193 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun99c453d2020-05-25 15:01:04 +02001194 err_code |= ERR_ALERT | ERR_FATAL;
1195 }
1196 logsrv->sink = sink;
1197 }
1198 }
1199 }
Emeric Brun12941c82020-07-07 14:19:42 +02001200
1201 for (px = cfg_log_forward; px; px = px->next) {
1202 list_for_each_entry_safe(logsrv, logb, &px->logsrvs, list) {
1203 if (logsrv->type == LOG_TARGET_BUFFER) {
1204 sink = sink_find(logsrv->ring_name);
Emeric Brun94aab062021-04-02 10:41:36 +02001205 if (!sink) {
1206 /* LOG_TARGET_BUFFER but !AF_UNSPEC
1207 * means we must allocate a sink
1208 * buffer to send messages to this logsrv
1209 */
1210 if (logsrv->addr.ss_family != AF_UNSPEC) {
1211 sink = sink_new_from_logsrv(logsrv);
1212 if (!sink) {
1213 ha_alert("log server declared in log-forward section '%s' file '%s' at line %d cannot be initialized'.\n",
1214 px->id, logsrv->conf.file, logsrv->conf.line);
1215 err_code |= ERR_ALERT | ERR_FATAL;
1216 }
1217 }
1218 else {
1219 ha_alert("log server declared in log-forward section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1220 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
1221 err_code |= ERR_ALERT | ERR_FATAL;
1222 }
1223 }
1224 else if (sink->type != SINK_TYPE_BUFFER) {
1225 ha_alert("log server declared in log-forward section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n",
1226 px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name);
Emeric Brun12941c82020-07-07 14:19:42 +02001227 err_code |= ERR_ALERT | ERR_FATAL;
1228 }
1229 logsrv->sink = sink;
1230 }
1231 }
1232 }
Emeric Brun99c453d2020-05-25 15:01:04 +02001233 return err_code;
1234}
1235
1236
Willy Tarreau973e6622019-08-20 11:57:52 +02001237static void sink_init()
1238{
Emeric Brun54648852020-07-06 15:54:06 +02001239 sink_new_fd("stdout", "standard output (fd#1)", LOG_FORMAT_RAW, 1);
1240 sink_new_fd("stderr", "standard output (fd#2)", LOG_FORMAT_RAW, 2);
1241 sink_new_buf("buf0", "in-memory ring buffer", LOG_FORMAT_TIMED, 1048576);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001242}
1243
1244static void sink_deinit()
1245{
1246 struct sink *sink, *sb;
1247
1248 list_for_each_entry_safe(sink, sb, &sink_list, sink_list) {
1249 if (sink->type == SINK_TYPE_BUFFER)
1250 ring_free(sink->ctx.ring);
Willy Tarreau2b718102021-04-21 07:32:39 +02001251 LIST_DELETE(&sink->sink_list);
Emeric Brun99c453d2020-05-25 15:01:04 +02001252 free(sink->name);
1253 free(sink->desc);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001254 free(sink);
1255 }
Willy Tarreau973e6622019-08-20 11:57:52 +02001256}
1257
1258INITCALL0(STG_REGISTER, sink_init);
Willy Tarreau4ed23ca2019-08-23 15:47:49 +02001259REGISTER_POST_DEINIT(sink_deinit);
Willy Tarreau973e6622019-08-20 11:57:52 +02001260
Willy Tarreau9f830d72019-08-26 18:17:04 +02001261static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02001262 { { "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 +02001263 {{},}
1264}};
1265
1266INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
1267
Emeric Brun99c453d2020-05-25 15:01:04 +02001268/* config parsers for this section */
1269REGISTER_CONFIG_SECTION("ring", cfg_parse_ring, cfg_post_parse_ring);
1270REGISTER_POST_CHECK(post_sink_resolve);
1271
Willy Tarreau67b5a162019-08-11 16:38:56 +02001272/*
1273 * Local variables:
1274 * c-indent-level: 8
1275 * c-basic-offset: 8
1276 * End:
1277 */