Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | 0b8e9ce | 2022-08-11 16:38:20 +0200 | [diff] [blame] | 21 | #include <sys/mman.h> |
| 22 | #include <errno.h> |
| 23 | #include <fcntl.h> |
| 24 | |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 25 | #include <import/ist.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 26 | #include <haproxy/api.h> |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 27 | #include <haproxy/applet.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 28 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 29 | #include <haproxy/cli.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 30 | #include <haproxy/errors.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 31 | #include <haproxy/list.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 32 | #include <haproxy/log.h> |
Willy Tarreau | 817538e | 2021-05-08 20:20:21 +0200 | [diff] [blame] | 33 | #include <haproxy/proxy.h> |
Willy Tarreau | d2ad57c | 2020-06-03 19:43:35 +0200 | [diff] [blame] | 34 | #include <haproxy/ring.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 35 | #include <haproxy/sc_strm.h> |
Willy Tarreau | 3727a8a | 2020-06-04 17:37:26 +0200 | [diff] [blame] | 36 | #include <haproxy/signal.h> |
Willy Tarreau | ba2f73d | 2020-06-03 20:02:28 +0200 | [diff] [blame] | 37 | #include <haproxy/sink.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame] | 38 | #include <haproxy/stconn.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 39 | #include <haproxy/time.h> |
Willy Tarreau | 4bad5e2 | 2021-05-08 13:05:30 +0200 | [diff] [blame] | 40 | #include <haproxy/tools.h> |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 41 | |
| 42 | struct list sink_list = LIST_HEAD_INIT(sink_list); |
| 43 | |
Emeric Brun | d6e581d | 2022-09-13 16:16:30 +0200 | [diff] [blame] | 44 | /* sink proxies list */ |
| 45 | struct proxy *sink_proxies_list; |
| 46 | |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 47 | struct sink *cfg_sink; |
| 48 | |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 49 | struct sink *sink_find(const char *name) |
| 50 | { |
| 51 | struct sink *sink; |
| 52 | |
| 53 | list_for_each_entry(sink, &sink_list, sink_list) |
| 54 | if (strcmp(sink->name, name) == 0) |
| 55 | return sink; |
| 56 | return NULL; |
| 57 | } |
| 58 | |
| 59 | /* creates a new sink and adds it to the list, it's still generic and not fully |
| 60 | * initialized. Returns NULL on allocation failure. If another one already |
| 61 | * exists with the same name, it will be returned. The caller can detect it as |
| 62 | * a newly created one has type SINK_TYPE_NEW. |
| 63 | */ |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 64 | static struct sink *__sink_new(const char *name, const char *desc, int fmt) |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 65 | { |
| 66 | struct sink *sink; |
| 67 | |
| 68 | sink = sink_find(name); |
| 69 | if (sink) |
| 70 | goto end; |
| 71 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 72 | sink = calloc(1, sizeof(*sink)); |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 73 | if (!sink) |
| 74 | goto end; |
| 75 | |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 76 | sink->name = strdup(name); |
Tim Duesterhus | a7ebffe | 2021-01-03 19:54:11 +0100 | [diff] [blame] | 77 | if (!sink->name) |
| 78 | goto err; |
| 79 | |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 80 | sink->desc = strdup(desc); |
Tim Duesterhus | a7ebffe | 2021-01-03 19:54:11 +0100 | [diff] [blame] | 81 | if (!sink->desc) |
| 82 | goto err; |
| 83 | |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 84 | sink->fmt = fmt; |
| 85 | sink->type = SINK_TYPE_NEW; |
Christopher Faulet | a63a5c2 | 2019-11-15 15:10:12 +0100 | [diff] [blame] | 86 | sink->maxlen = BUFSIZE; |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 87 | /* address will be filled by the caller if needed */ |
Willy Tarreau | 973e662 | 2019-08-20 11:57:52 +0200 | [diff] [blame] | 88 | sink->ctx.fd = -1; |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 89 | sink->ctx.dropped = 0; |
| 90 | HA_RWLOCK_INIT(&sink->ctx.lock); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 91 | LIST_APPEND(&sink_list, &sink->sink_list); |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 92 | end: |
| 93 | return sink; |
Tim Duesterhus | a7ebffe | 2021-01-03 19:54:11 +0100 | [diff] [blame] | 94 | |
| 95 | err: |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 96 | ha_free(&sink->name); |
| 97 | ha_free(&sink->desc); |
| 98 | ha_free(&sink); |
Tim Duesterhus | a7ebffe | 2021-01-03 19:54:11 +0100 | [diff] [blame] | 99 | |
| 100 | return NULL; |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 101 | } |
| 102 | |
Willy Tarreau | 973e662 | 2019-08-20 11:57:52 +0200 | [diff] [blame] | 103 | /* creates a sink called <name> of type FD associated to fd <fd>, format <fmt>, |
| 104 | * and description <desc>. Returns NULL on allocation failure or conflict. |
| 105 | * Perfect duplicates are merged (same type, fd, and name). |
| 106 | */ |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 107 | struct sink *sink_new_fd(const char *name, const char *desc, enum log_fmt fmt, int fd) |
Willy Tarreau | 973e662 | 2019-08-20 11:57:52 +0200 | [diff] [blame] | 108 | { |
| 109 | struct sink *sink; |
| 110 | |
| 111 | sink = __sink_new(name, desc, fmt); |
| 112 | if (!sink || (sink->type == SINK_TYPE_FD && sink->ctx.fd == fd)) |
| 113 | goto end; |
| 114 | |
| 115 | if (sink->type != SINK_TYPE_NEW) { |
| 116 | sink = NULL; |
| 117 | goto end; |
| 118 | } |
| 119 | |
| 120 | sink->type = SINK_TYPE_FD; |
| 121 | sink->ctx.fd = fd; |
| 122 | end: |
| 123 | return sink; |
| 124 | } |
| 125 | |
Willy Tarreau | 4ed23ca | 2019-08-23 15:47:49 +0200 | [diff] [blame] | 126 | /* creates a sink called <name> of type BUF of size <size>, format <fmt>, |
| 127 | * and description <desc>. Returns NULL on allocation failure or conflict. |
| 128 | * Perfect duplicates are merged (same type and name). If sizes differ, the |
| 129 | * largest one is kept. |
| 130 | */ |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 131 | struct sink *sink_new_buf(const char *name, const char *desc, enum log_fmt fmt, size_t size) |
Willy Tarreau | 4ed23ca | 2019-08-23 15:47:49 +0200 | [diff] [blame] | 132 | { |
| 133 | struct sink *sink; |
| 134 | |
| 135 | sink = __sink_new(name, desc, fmt); |
| 136 | if (!sink) |
| 137 | goto fail; |
| 138 | |
| 139 | if (sink->type == SINK_TYPE_BUFFER) { |
| 140 | /* such a buffer already exists, we may have to resize it */ |
| 141 | if (!ring_resize(sink->ctx.ring, size)) |
| 142 | goto fail; |
| 143 | goto end; |
| 144 | } |
| 145 | |
| 146 | if (sink->type != SINK_TYPE_NEW) { |
| 147 | /* already exists of another type */ |
| 148 | goto fail; |
| 149 | } |
| 150 | |
| 151 | sink->ctx.ring = ring_new(size); |
| 152 | if (!sink->ctx.ring) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 153 | LIST_DELETE(&sink->sink_list); |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 154 | free(sink->name); |
| 155 | free(sink->desc); |
Willy Tarreau | 4ed23ca | 2019-08-23 15:47:49 +0200 | [diff] [blame] | 156 | free(sink); |
| 157 | goto fail; |
| 158 | } |
| 159 | |
| 160 | sink->type = SINK_TYPE_BUFFER; |
| 161 | end: |
| 162 | return sink; |
| 163 | fail: |
| 164 | return NULL; |
| 165 | } |
| 166 | |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 167 | /* tries to send <nmsg> message parts (up to 8, ignored above) from message |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 168 | * array <msg> to sink <sink>. Formatting according to the sink's preference is |
Willy Tarreau | 8f24023 | 2019-08-27 16:41:06 +0200 | [diff] [blame] | 169 | * done here. Lost messages are NOT accounted for. It is preferable to call |
| 170 | * sink_write() instead which will also try to emit the number of dropped |
Aurelien DARRAGON | 5bab37e | 2023-06-26 16:44:41 +0200 | [diff] [blame] | 171 | * messages when there are any. It will stop writing at <maxlen> instead of |
| 172 | * sink->maxlen if <maxlen> is positive and inferior to sink->maxlen. |
| 173 | * |
| 174 | * It returns >0 if it could write anything, <=0 otherwise. |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 175 | */ |
Aurelien DARRAGON | 5bab37e | 2023-06-26 16:44:41 +0200 | [diff] [blame] | 176 | ssize_t __sink_write(struct sink *sink, size_t maxlen, |
| 177 | const struct ist msg[], size_t nmsg, |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 178 | int level, int facility, struct ist *metadata) |
| 179 | { |
| 180 | struct ist *pfx = NULL; |
Willy Tarreau | a1426de | 2019-08-27 14:21:02 +0200 | [diff] [blame] | 181 | size_t npfx = 0; |
Emeric Brun | bd16381 | 2020-05-06 14:33:46 +0200 | [diff] [blame] | 182 | |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 183 | if (sink->fmt == LOG_FORMAT_RAW) |
Emeric Brun | bd16381 | 2020-05-06 14:33:46 +0200 | [diff] [blame] | 184 | goto send; |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 185 | |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 186 | pfx = build_log_header(sink->fmt, level, facility, metadata, &npfx); |
Emeric Brun | bd16381 | 2020-05-06 14:33:46 +0200 | [diff] [blame] | 187 | |
| 188 | send: |
Aurelien DARRAGON | 5bab37e | 2023-06-26 16:44:41 +0200 | [diff] [blame] | 189 | if (!maxlen) |
| 190 | maxlen = ~0; |
Willy Tarreau | 973e662 | 2019-08-20 11:57:52 +0200 | [diff] [blame] | 191 | if (sink->type == SINK_TYPE_FD) { |
Aurelien DARRAGON | 5bab37e | 2023-06-26 16:44:41 +0200 | [diff] [blame] | 192 | return fd_write_frag_line(sink->ctx.fd, MIN(maxlen, sink->maxlen), pfx, npfx, msg, nmsg, 1); |
Willy Tarreau | 4ed23ca | 2019-08-23 15:47:49 +0200 | [diff] [blame] | 193 | } |
| 194 | else if (sink->type == SINK_TYPE_BUFFER) { |
Aurelien DARRAGON | 5bab37e | 2023-06-26 16:44:41 +0200 | [diff] [blame] | 195 | return ring_write(sink->ctx.ring, MIN(maxlen, sink->maxlen), pfx, npfx, msg, nmsg); |
Willy Tarreau | 973e662 | 2019-08-20 11:57:52 +0200 | [diff] [blame] | 196 | } |
Willy Tarreau | 8f24023 | 2019-08-27 16:41:06 +0200 | [diff] [blame] | 197 | return 0; |
| 198 | } |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 199 | |
Willy Tarreau | 8f24023 | 2019-08-27 16:41:06 +0200 | [diff] [blame] | 200 | /* Tries to emit a message indicating the number of dropped events. In case of |
| 201 | * success, the amount of drops is reduced by as much. It's supposed to be |
| 202 | * called under an exclusive lock on the sink to avoid multiple produces doing |
| 203 | * the same. On success, >0 is returned, otherwise <=0 on failure. |
| 204 | */ |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 205 | int sink_announce_dropped(struct sink *sink, int facility) |
Willy Tarreau | 8f24023 | 2019-08-27 16:41:06 +0200 | [diff] [blame] | 206 | { |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 207 | static THREAD_LOCAL struct ist metadata[LOG_META_FIELDS]; |
| 208 | static THREAD_LOCAL pid_t curr_pid; |
| 209 | static THREAD_LOCAL char pidstr[16]; |
Willy Tarreau | 8f24023 | 2019-08-27 16:41:06 +0200 | [diff] [blame] | 210 | unsigned int dropped; |
| 211 | struct buffer msg; |
| 212 | struct ist msgvec[1]; |
| 213 | char logbuf[64]; |
| 214 | |
| 215 | while (unlikely((dropped = sink->ctx.dropped) > 0)) { |
| 216 | chunk_init(&msg, logbuf, sizeof(logbuf)); |
| 217 | chunk_printf(&msg, "%u event%s dropped", dropped, dropped > 1 ? "s" : ""); |
| 218 | msgvec[0] = ist2(msg.area, msg.data); |
Emeric Brun | bd16381 | 2020-05-06 14:33:46 +0200 | [diff] [blame] | 219 | |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 220 | if (!metadata[LOG_META_HOST].len) { |
| 221 | if (global.log_send_hostname) |
Tim Duesterhus | 7750850 | 2022-03-15 13:11:06 +0100 | [diff] [blame] | 222 | metadata[LOG_META_HOST] = ist(global.log_send_hostname); |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | if (!metadata[LOG_META_TAG].len) |
| 226 | metadata[LOG_META_TAG] = ist2(global.log_tag.area, global.log_tag.data); |
| 227 | |
| 228 | if (unlikely(curr_pid != getpid())) |
| 229 | metadata[LOG_META_PID].len = 0; |
| 230 | |
| 231 | if (!metadata[LOG_META_PID].len) { |
| 232 | curr_pid = getpid(); |
| 233 | ltoa_o(curr_pid, pidstr, sizeof(pidstr)); |
| 234 | metadata[LOG_META_PID] = ist2(pidstr, strlen(pidstr)); |
| 235 | } |
| 236 | |
Aurelien DARRAGON | 5bab37e | 2023-06-26 16:44:41 +0200 | [diff] [blame] | 237 | if (__sink_write(sink, 0, msgvec, 1, LOG_NOTICE, facility, metadata) <= 0) |
Willy Tarreau | 8f24023 | 2019-08-27 16:41:06 +0200 | [diff] [blame] | 238 | return 0; |
| 239 | /* success! */ |
| 240 | HA_ATOMIC_SUB(&sink->ctx.dropped, dropped); |
| 241 | } |
| 242 | return 1; |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 243 | } |
| 244 | |
Willy Tarreau | 9f830d7 | 2019-08-26 18:17:04 +0200 | [diff] [blame] | 245 | /* parse the "show events" command, returns 1 if a message is returned, otherwise zero */ |
| 246 | static int cli_parse_show_events(char **args, char *payload, struct appctx *appctx, void *private) |
| 247 | { |
| 248 | struct sink *sink; |
Willy Tarreau | cba8838 | 2022-05-05 15:18:57 +0200 | [diff] [blame] | 249 | uint ring_flags; |
Willy Tarreau | 1d181e4 | 2019-08-30 11:17:01 +0200 | [diff] [blame] | 250 | int arg; |
Willy Tarreau | 9f830d7 | 2019-08-26 18:17:04 +0200 | [diff] [blame] | 251 | |
| 252 | args++; // make args[1] the 1st arg |
| 253 | |
| 254 | if (!*args[1]) { |
| 255 | /* no arg => report the list of supported sink */ |
Willy Tarreau | 1d181e4 | 2019-08-30 11:17:01 +0200 | [diff] [blame] | 256 | chunk_printf(&trash, "Supported events sinks are listed below. Add -w(wait), -n(new). Any key to stop\n"); |
Willy Tarreau | 9f830d7 | 2019-08-26 18:17:04 +0200 | [diff] [blame] | 257 | list_for_each_entry(sink, &sink_list, sink_list) { |
| 258 | chunk_appendf(&trash, " %-10s : type=%s, %u dropped, %s\n", |
| 259 | sink->name, |
| 260 | sink->type == SINK_TYPE_NEW ? "init" : |
| 261 | sink->type == SINK_TYPE_FD ? "fd" : |
| 262 | sink->type == SINK_TYPE_BUFFER ? "buffer" : "?", |
| 263 | sink->ctx.dropped, sink->desc); |
| 264 | } |
| 265 | |
| 266 | trash.area[trash.data] = 0; |
| 267 | return cli_msg(appctx, LOG_WARNING, trash.area); |
| 268 | } |
| 269 | |
| 270 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 271 | return 1; |
| 272 | |
| 273 | sink = sink_find(args[1]); |
| 274 | if (!sink) |
| 275 | return cli_err(appctx, "No such event sink"); |
| 276 | |
| 277 | if (sink->type != SINK_TYPE_BUFFER) |
| 278 | return cli_msg(appctx, LOG_NOTICE, "Nothing to report for this sink"); |
| 279 | |
Willy Tarreau | cba8838 | 2022-05-05 15:18:57 +0200 | [diff] [blame] | 280 | ring_flags = 0; |
Willy Tarreau | 1d181e4 | 2019-08-30 11:17:01 +0200 | [diff] [blame] | 281 | for (arg = 2; *args[arg]; arg++) { |
| 282 | if (strcmp(args[arg], "-w") == 0) |
Willy Tarreau | cba8838 | 2022-05-05 15:18:57 +0200 | [diff] [blame] | 283 | ring_flags |= RING_WF_WAIT_MODE; |
Willy Tarreau | 1d181e4 | 2019-08-30 11:17:01 +0200 | [diff] [blame] | 284 | else if (strcmp(args[arg], "-n") == 0) |
Willy Tarreau | cba8838 | 2022-05-05 15:18:57 +0200 | [diff] [blame] | 285 | ring_flags |= RING_WF_SEEK_NEW; |
Willy Tarreau | 1d181e4 | 2019-08-30 11:17:01 +0200 | [diff] [blame] | 286 | else if (strcmp(args[arg], "-nw") == 0 || strcmp(args[arg], "-wn") == 0) |
Willy Tarreau | cba8838 | 2022-05-05 15:18:57 +0200 | [diff] [blame] | 287 | ring_flags |= RING_WF_WAIT_MODE | RING_WF_SEEK_NEW; |
Willy Tarreau | 1d181e4 | 2019-08-30 11:17:01 +0200 | [diff] [blame] | 288 | else |
| 289 | return cli_err(appctx, "unknown option"); |
| 290 | } |
Willy Tarreau | cba8838 | 2022-05-05 15:18:57 +0200 | [diff] [blame] | 291 | return ring_attach_cli(sink->ctx.ring, appctx, ring_flags); |
Willy Tarreau | 9f830d7 | 2019-08-26 18:17:04 +0200 | [diff] [blame] | 292 | } |
| 293 | |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 294 | /* Pre-configures a ring proxy to emit connections */ |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 295 | void sink_setup_proxy(struct proxy *px) |
| 296 | { |
Willy Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 297 | px->last_change = ns_to_sec(now_ns); |
Christopher Faulet | 11a707a | 2022-10-24 15:10:18 +0200 | [diff] [blame] | 298 | px->cap = PR_CAP_BE; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 299 | px->maxconn = 0; |
| 300 | px->conn_retries = 1; |
| 301 | px->timeout.server = TICK_ETERNITY; |
| 302 | px->timeout.client = TICK_ETERNITY; |
| 303 | px->timeout.connect = TICK_ETERNITY; |
| 304 | px->accept = NULL; |
| 305 | px->options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC; |
Emeric Brun | d6e581d | 2022-09-13 16:16:30 +0200 | [diff] [blame] | 306 | px->next = sink_proxies_list; |
| 307 | sink_proxies_list = px; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | /* |
Willy Tarreau | 42cc831 | 2022-05-04 20:42:23 +0200 | [diff] [blame] | 311 | * IO Handler to handle message push to syslog tcp server. |
| 312 | * It takes its context from appctx->svcctx. |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 313 | */ |
| 314 | static void sink_forward_io_handler(struct appctx *appctx) |
| 315 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 316 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 0eca539 | 2022-05-27 10:44:25 +0200 | [diff] [blame] | 317 | struct stream *s = __sc_strm(sc); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 318 | struct sink *sink = strm_fe(s)->parent; |
Willy Tarreau | 42cc831 | 2022-05-04 20:42:23 +0200 | [diff] [blame] | 319 | struct sink_forward_target *sft = appctx->svcctx; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 320 | struct ring *ring = sink->ctx.ring; |
| 321 | struct buffer *buf = &ring->buf; |
| 322 | uint64_t msg_len; |
Willy Tarreau | 53bfab0 | 2022-08-04 17:18:54 +0200 | [diff] [blame] | 323 | size_t len, cnt, ofs, last_ofs; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 324 | int ret = 0; |
| 325 | |
Christopher Faulet | a739dc2 | 2023-03-31 11:25:55 +0200 | [diff] [blame] | 326 | if (unlikely(se_fl_test(appctx->sedesc, (SE_FL_EOS|SE_FL_ERROR|SE_FL_SHR|SE_FL_SHW)))) |
| 327 | goto out; |
| 328 | |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 329 | /* if stopping was requested, close immediately */ |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 330 | if (unlikely(stopping)) |
| 331 | goto close; |
| 332 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 333 | /* if the connection is not established, inform the stream that we want |
| 334 | * to be notified whenever the connection completes. |
| 335 | */ |
Willy Tarreau | 0eca539 | 2022-05-27 10:44:25 +0200 | [diff] [blame] | 336 | if (sc_opposite(sc)->state < SC_ST_EST) { |
Willy Tarreau | 90e8b45 | 2022-05-25 18:21:43 +0200 | [diff] [blame] | 337 | applet_need_more_data(appctx); |
Willy Tarreau | b23edc8 | 2022-05-24 16:49:03 +0200 | [diff] [blame] | 338 | se_need_remote_conn(appctx->sedesc); |
Willy Tarreau | 4164eb9 | 2022-05-25 15:42:03 +0200 | [diff] [blame] | 339 | applet_have_more_data(appctx); |
Christopher Faulet | a739dc2 | 2023-03-31 11:25:55 +0200 | [diff] [blame] | 340 | goto out; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | HA_SPIN_LOCK(SFT_LOCK, &sft->lock); |
| 344 | if (appctx != sft->appctx) { |
| 345 | HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock); |
| 346 | goto close; |
| 347 | } |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 348 | |
| 349 | HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock); |
| 350 | LIST_DEL_INIT(&appctx->wait_entry); |
| 351 | HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock); |
| 352 | |
| 353 | HA_RWLOCK_RDLOCK(LOGSRV_LOCK, &ring->lock); |
| 354 | |
| 355 | /* explanation for the initialization below: it would be better to do |
| 356 | * this in the parsing function but this would occasionally result in |
| 357 | * dropped events because we'd take a reference on the oldest message |
| 358 | * and keep it while being scheduled. Thus instead let's take it the |
| 359 | * first time we enter here so that we have a chance to pass many |
| 360 | * existing messages before grabbing a reference to a location. This |
| 361 | * value cannot be produced after initialization. |
| 362 | */ |
Aurelien DARRAGON | 2c98867 | 2023-03-07 16:09:33 +0100 | [diff] [blame] | 363 | if (unlikely(sft->ofs == ~0)) { |
| 364 | sft->ofs = b_peek_ofs(buf, 0); |
| 365 | HA_ATOMIC_INC(b_orig(buf) + sft->ofs); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 366 | } |
| 367 | |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 368 | /* we were already there, adjust the offset to be relative to |
| 369 | * the buffer's head and remove us from the counter. |
| 370 | */ |
| 371 | ofs = sft->ofs - b_head_ofs(buf); |
| 372 | if (sft->ofs < b_head_ofs(buf)) |
| 373 | ofs += b_size(buf); |
| 374 | BUG_ON(ofs >= buf->size); |
| 375 | HA_ATOMIC_DEC(b_peek(buf, ofs)); |
| 376 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 377 | /* in this loop, ofs always points to the counter byte that precedes |
| 378 | * the message so that we can take our reference there if we have to |
| 379 | * stop before the end (ret=0). |
| 380 | */ |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 381 | ret = 1; |
| 382 | while (ofs + 1 < b_data(buf)) { |
| 383 | cnt = 1; |
| 384 | len = b_peek_varint(buf, ofs + cnt, &msg_len); |
| 385 | if (!len) |
| 386 | break; |
| 387 | cnt += len; |
| 388 | BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf)); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 389 | |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 390 | if (unlikely(msg_len + 1 > b_size(&trash))) { |
| 391 | /* too large a message to ever fit, let's skip it */ |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 392 | ofs += cnt + msg_len; |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 393 | continue; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 394 | } |
| 395 | |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 396 | chunk_reset(&trash); |
| 397 | len = b_getblk(buf, trash.area, msg_len, ofs + cnt); |
| 398 | trash.data += len; |
| 399 | trash.area[trash.data++] = '\n'; |
| 400 | |
| 401 | if (applet_putchk(appctx, &trash) == -1) { |
| 402 | ret = 0; |
| 403 | break; |
| 404 | } |
| 405 | ofs += cnt + msg_len; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 406 | } |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 407 | |
| 408 | HA_ATOMIC_INC(b_peek(buf, ofs)); |
| 409 | last_ofs = b_tail_ofs(buf); |
| 410 | sft->ofs = b_peek_ofs(buf, ofs); |
| 411 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 412 | HA_RWLOCK_RDUNLOCK(LOGSRV_LOCK, &ring->lock); |
| 413 | |
| 414 | if (ret) { |
| 415 | /* let's be woken up once new data arrive */ |
| 416 | HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 417 | LIST_APPEND(&ring->waiters, &appctx->wait_entry); |
Willy Tarreau | d9c7188 | 2023-02-22 14:50:14 +0100 | [diff] [blame] | 418 | ofs = b_tail_ofs(buf); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 419 | HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock); |
Willy Tarreau | 53bfab0 | 2022-08-04 17:18:54 +0200 | [diff] [blame] | 420 | if (ofs != last_ofs) { |
| 421 | /* more data was added into the ring between the |
| 422 | * unlock and the lock, and the writer might not |
| 423 | * have seen us. We need to reschedule a read. |
| 424 | */ |
| 425 | applet_have_more_data(appctx); |
| 426 | } else |
| 427 | applet_have_no_more_data(appctx); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 428 | } |
| 429 | HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock); |
| 430 | |
Christopher Faulet | a739dc2 | 2023-03-31 11:25:55 +0200 | [diff] [blame] | 431 | out: |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 432 | /* always drain data from server */ |
Willy Tarreau | 0eca539 | 2022-05-27 10:44:25 +0200 | [diff] [blame] | 433 | co_skip(sc_oc(sc), sc_oc(sc)->output); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 434 | return; |
| 435 | |
| 436 | close: |
Christopher Faulet | a739dc2 | 2023-03-31 11:25:55 +0200 | [diff] [blame] | 437 | se_fl_set(appctx->sedesc, SE_FL_EOS|SE_FL_EOI); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 438 | } |
| 439 | |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 440 | /* |
| 441 | * IO Handler to handle message push to syslog tcp server |
| 442 | * using octet counting frames |
Willy Tarreau | 42cc831 | 2022-05-04 20:42:23 +0200 | [diff] [blame] | 443 | * It takes its context from appctx->svcctx. |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 444 | */ |
| 445 | static void sink_forward_oc_io_handler(struct appctx *appctx) |
| 446 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 447 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 0eca539 | 2022-05-27 10:44:25 +0200 | [diff] [blame] | 448 | struct stream *s = __sc_strm(sc); |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 449 | struct sink *sink = strm_fe(s)->parent; |
Willy Tarreau | 42cc831 | 2022-05-04 20:42:23 +0200 | [diff] [blame] | 450 | struct sink_forward_target *sft = appctx->svcctx; |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 451 | struct ring *ring = sink->ctx.ring; |
| 452 | struct buffer *buf = &ring->buf; |
| 453 | uint64_t msg_len; |
| 454 | size_t len, cnt, ofs; |
| 455 | int ret = 0; |
| 456 | char *p; |
| 457 | |
Christopher Faulet | a739dc2 | 2023-03-31 11:25:55 +0200 | [diff] [blame] | 458 | if (unlikely(se_fl_test(appctx->sedesc, (SE_FL_EOS|SE_FL_ERROR|SE_FL_SHR|SE_FL_SHW)))) |
| 459 | goto out; |
| 460 | |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 461 | /* if stopping was requested, close immediately */ |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 462 | if (unlikely(stopping)) |
| 463 | goto close; |
| 464 | |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 465 | /* if the connection is not established, inform the stream that we want |
| 466 | * to be notified whenever the connection completes. |
| 467 | */ |
Willy Tarreau | 0eca539 | 2022-05-27 10:44:25 +0200 | [diff] [blame] | 468 | if (sc_opposite(sc)->state < SC_ST_EST) { |
Willy Tarreau | 90e8b45 | 2022-05-25 18:21:43 +0200 | [diff] [blame] | 469 | applet_need_more_data(appctx); |
Willy Tarreau | b23edc8 | 2022-05-24 16:49:03 +0200 | [diff] [blame] | 470 | se_need_remote_conn(appctx->sedesc); |
Willy Tarreau | 4164eb9 | 2022-05-25 15:42:03 +0200 | [diff] [blame] | 471 | applet_have_more_data(appctx); |
Christopher Faulet | a739dc2 | 2023-03-31 11:25:55 +0200 | [diff] [blame] | 472 | goto out; |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | HA_SPIN_LOCK(SFT_LOCK, &sft->lock); |
| 476 | if (appctx != sft->appctx) { |
| 477 | HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock); |
| 478 | goto close; |
| 479 | } |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 480 | |
| 481 | HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock); |
| 482 | LIST_DEL_INIT(&appctx->wait_entry); |
| 483 | HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock); |
| 484 | |
| 485 | HA_RWLOCK_RDLOCK(LOGSRV_LOCK, &ring->lock); |
| 486 | |
| 487 | /* explanation for the initialization below: it would be better to do |
| 488 | * this in the parsing function but this would occasionally result in |
| 489 | * dropped events because we'd take a reference on the oldest message |
| 490 | * and keep it while being scheduled. Thus instead let's take it the |
| 491 | * first time we enter here so that we have a chance to pass many |
| 492 | * existing messages before grabbing a reference to a location. This |
| 493 | * value cannot be produced after initialization. |
| 494 | */ |
Aurelien DARRAGON | 2c98867 | 2023-03-07 16:09:33 +0100 | [diff] [blame] | 495 | if (unlikely(sft->ofs == ~0)) { |
| 496 | sft->ofs = b_peek_ofs(buf, 0); |
| 497 | HA_ATOMIC_INC(b_orig(buf) + sft->ofs); |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 498 | } |
| 499 | |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 500 | /* we were already there, adjust the offset to be relative to |
| 501 | * the buffer's head and remove us from the counter. |
| 502 | */ |
| 503 | ofs = sft->ofs - b_head_ofs(buf); |
| 504 | if (sft->ofs < b_head_ofs(buf)) |
| 505 | ofs += b_size(buf); |
| 506 | BUG_ON(ofs >= buf->size); |
| 507 | HA_ATOMIC_DEC(b_peek(buf, ofs)); |
| 508 | |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 509 | /* in this loop, ofs always points to the counter byte that precedes |
| 510 | * the message so that we can take our reference there if we have to |
| 511 | * stop before the end (ret=0). |
| 512 | */ |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 513 | ret = 1; |
| 514 | while (ofs + 1 < b_data(buf)) { |
| 515 | cnt = 1; |
| 516 | len = b_peek_varint(buf, ofs + cnt, &msg_len); |
| 517 | if (!len) |
| 518 | break; |
| 519 | cnt += len; |
| 520 | BUG_ON(msg_len + ofs + cnt + 1 > b_data(buf)); |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 521 | |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 522 | chunk_reset(&trash); |
| 523 | p = ulltoa(msg_len, trash.area, b_size(&trash)); |
| 524 | if (p) { |
| 525 | trash.data = (p - trash.area) + 1; |
| 526 | *p = ' '; |
| 527 | } |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 528 | |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 529 | if (!p || (trash.data + msg_len > b_size(&trash))) { |
| 530 | /* too large a message to ever fit, let's skip it */ |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 531 | ofs += cnt + msg_len; |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 532 | continue; |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 533 | } |
| 534 | |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 535 | trash.data += b_getblk(buf, p + 1, msg_len, ofs + cnt); |
| 536 | |
| 537 | if (applet_putchk(appctx, &trash) == -1) { |
| 538 | ret = 0; |
| 539 | break; |
| 540 | } |
| 541 | ofs += cnt + msg_len; |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 542 | } |
Christopher Faulet | 4b86695 | 2023-03-31 11:24:48 +0200 | [diff] [blame] | 543 | |
| 544 | HA_ATOMIC_INC(b_peek(buf, ofs)); |
| 545 | sft->ofs = b_peek_ofs(buf, ofs); |
| 546 | |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 547 | HA_RWLOCK_RDUNLOCK(LOGSRV_LOCK, &ring->lock); |
| 548 | |
| 549 | if (ret) { |
| 550 | /* let's be woken up once new data arrive */ |
| 551 | HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &ring->lock); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 552 | LIST_APPEND(&ring->waiters, &appctx->wait_entry); |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 553 | HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &ring->lock); |
Willy Tarreau | 4164eb9 | 2022-05-25 15:42:03 +0200 | [diff] [blame] | 554 | applet_have_no_more_data(appctx); |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 555 | } |
| 556 | HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock); |
| 557 | |
Christopher Faulet | a739dc2 | 2023-03-31 11:25:55 +0200 | [diff] [blame] | 558 | out: |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 559 | /* always drain data from server */ |
Willy Tarreau | 0eca539 | 2022-05-27 10:44:25 +0200 | [diff] [blame] | 560 | co_skip(sc_oc(sc), sc_oc(sc)->output); |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 561 | return; |
| 562 | |
| 563 | close: |
Christopher Faulet | a739dc2 | 2023-03-31 11:25:55 +0200 | [diff] [blame] | 564 | se_fl_set(appctx->sedesc, SE_FL_EOS|SE_FL_EOI); |
| 565 | goto out; |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 566 | } |
| 567 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 568 | void __sink_forward_session_deinit(struct sink_forward_target *sft) |
| 569 | { |
Willy Tarreau | 0698c80 | 2022-05-11 14:09:57 +0200 | [diff] [blame] | 570 | struct stream *s = appctx_strm(sft->appctx); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 571 | struct sink *sink; |
| 572 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 573 | sink = strm_fe(s)->parent; |
| 574 | if (!sink) |
| 575 | return; |
| 576 | |
| 577 | HA_RWLOCK_WRLOCK(LOGSRV_LOCK, &sink->ctx.ring->lock); |
| 578 | LIST_DEL_INIT(&sft->appctx->wait_entry); |
| 579 | HA_RWLOCK_WRUNLOCK(LOGSRV_LOCK, &sink->ctx.ring->lock); |
| 580 | |
| 581 | sft->appctx = NULL; |
| 582 | task_wakeup(sink->forward_task, TASK_WOKEN_MSG); |
| 583 | } |
| 584 | |
Christopher Faulet | aee57fc | 2022-05-12 15:34:48 +0200 | [diff] [blame] | 585 | static int sink_forward_session_init(struct appctx *appctx) |
| 586 | { |
| 587 | struct sink_forward_target *sft = appctx->svcctx; |
| 588 | struct stream *s; |
| 589 | struct sockaddr_storage *addr = NULL; |
| 590 | |
| 591 | if (!sockaddr_alloc(&addr, &sft->srv->addr, sizeof(sft->srv->addr))) |
| 592 | goto out_error; |
| 593 | |
| 594 | if (appctx_finalize_startup(appctx, sft->sink->forward_px, &BUF_NULL) == -1) |
| 595 | goto out_free_addr; |
| 596 | |
| 597 | s = appctx_strm(appctx); |
Willy Tarreau | 7cb9e6c | 2022-05-17 19:40:40 +0200 | [diff] [blame] | 598 | s->scb->dst = addr; |
Christopher Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 599 | s->scb->flags |= (SC_FL_RCV_ONCE|SC_FL_NOLINGER); |
Christopher Faulet | aee57fc | 2022-05-12 15:34:48 +0200 | [diff] [blame] | 600 | |
| 601 | s->target = &sft->srv->obj_type; |
| 602 | s->flags = SF_ASSIGNED; |
| 603 | |
| 604 | s->do_log = NULL; |
| 605 | s->uniq_id = 0; |
| 606 | |
Christopher Faulet | 2ca4cc1 | 2023-02-22 14:22:56 +0100 | [diff] [blame] | 607 | applet_expect_no_data(appctx); |
Christopher Faulet | aee57fc | 2022-05-12 15:34:48 +0200 | [diff] [blame] | 608 | sft->appctx = appctx; |
| 609 | |
| 610 | return 0; |
| 611 | |
| 612 | out_free_addr: |
| 613 | sockaddr_free(&addr); |
| 614 | out_error: |
| 615 | return -1; |
| 616 | } |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 617 | |
| 618 | static void sink_forward_session_release(struct appctx *appctx) |
| 619 | { |
Willy Tarreau | 42cc831 | 2022-05-04 20:42:23 +0200 | [diff] [blame] | 620 | struct sink_forward_target *sft = appctx->svcctx; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 621 | |
| 622 | if (!sft) |
| 623 | return; |
| 624 | |
| 625 | HA_SPIN_LOCK(SFT_LOCK, &sft->lock); |
| 626 | if (sft->appctx == appctx) |
| 627 | __sink_forward_session_deinit(sft); |
| 628 | HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock); |
| 629 | } |
| 630 | |
| 631 | static struct applet sink_forward_applet = { |
| 632 | .obj_type = OBJ_TYPE_APPLET, |
| 633 | .name = "<SINKFWD>", /* used for logging */ |
| 634 | .fct = sink_forward_io_handler, |
Christopher Faulet | aee57fc | 2022-05-12 15:34:48 +0200 | [diff] [blame] | 635 | .init = sink_forward_session_init, |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 636 | .release = sink_forward_session_release, |
| 637 | }; |
| 638 | |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 639 | static struct applet sink_forward_oc_applet = { |
| 640 | .obj_type = OBJ_TYPE_APPLET, |
| 641 | .name = "<SINKFWDOC>", /* used for logging */ |
| 642 | .fct = sink_forward_oc_io_handler, |
Christopher Faulet | aee57fc | 2022-05-12 15:34:48 +0200 | [diff] [blame] | 643 | .init = sink_forward_session_init, |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 644 | .release = sink_forward_session_release, |
| 645 | }; |
| 646 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 647 | /* |
| 648 | * Create a new peer session in assigned state (connect will start automatically) |
Willy Tarreau | 42cc831 | 2022-05-04 20:42:23 +0200 | [diff] [blame] | 649 | * It sets its context into appctx->svcctx. |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 650 | */ |
| 651 | static struct appctx *sink_forward_session_create(struct sink *sink, struct sink_forward_target *sft) |
| 652 | { |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 653 | struct appctx *appctx; |
Emeric Brun | 9755647 | 2020-05-30 01:42:45 +0200 | [diff] [blame] | 654 | struct applet *applet = &sink_forward_applet; |
| 655 | |
| 656 | if (sft->srv->log_proto == SRV_LOG_PROTO_OCTET_COUNTING) |
| 657 | applet = &sink_forward_oc_applet; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 658 | |
Christopher Faulet | 6095d57 | 2022-05-16 17:09:48 +0200 | [diff] [blame] | 659 | appctx = appctx_new_here(applet, NULL); |
Christopher Faulet | 2479e5f | 2022-01-19 14:50:11 +0100 | [diff] [blame] | 660 | if (!appctx) |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 661 | goto out_close; |
Willy Tarreau | 42cc831 | 2022-05-04 20:42:23 +0200 | [diff] [blame] | 662 | appctx->svcctx = (void *)sft; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 663 | |
Christopher Faulet | aee57fc | 2022-05-12 15:34:48 +0200 | [diff] [blame] | 664 | if (appctx_init(appctx) == -1) |
Christopher Faulet | 92202da | 2022-05-11 12:22:10 +0200 | [diff] [blame] | 665 | goto out_free_appctx; |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 666 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 667 | return appctx; |
| 668 | |
| 669 | /* Error unrolling */ |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 670 | out_free_appctx: |
Christopher Faulet | aee57fc | 2022-05-12 15:34:48 +0200 | [diff] [blame] | 671 | appctx_free_on_early_error(appctx); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 672 | out_close: |
| 673 | return NULL; |
| 674 | } |
| 675 | |
| 676 | /* |
| 677 | * Task to handle connctions to forward servers |
| 678 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 679 | static struct task *process_sink_forward(struct task * task, void *context, unsigned int state) |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 680 | { |
| 681 | struct sink *sink = (struct sink *)context; |
| 682 | struct sink_forward_target *sft = sink->sft; |
| 683 | |
| 684 | task->expire = TICK_ETERNITY; |
| 685 | |
| 686 | if (!stopping) { |
| 687 | while (sft) { |
| 688 | HA_SPIN_LOCK(SFT_LOCK, &sft->lock); |
| 689 | /* if appctx is NULL, start a new session */ |
| 690 | if (!sft->appctx) |
| 691 | sft->appctx = sink_forward_session_create(sink, sft); |
| 692 | HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock); |
| 693 | sft = sft->next; |
| 694 | } |
| 695 | } |
| 696 | else { |
| 697 | while (sft) { |
| 698 | HA_SPIN_LOCK(SFT_LOCK, &sft->lock); |
| 699 | /* awake applet to perform a clean close */ |
| 700 | if (sft->appctx) |
| 701 | appctx_wakeup(sft->appctx); |
| 702 | HA_SPIN_UNLOCK(SFT_LOCK, &sft->lock); |
| 703 | sft = sft->next; |
| 704 | } |
| 705 | } |
| 706 | |
| 707 | return task; |
| 708 | } |
| 709 | /* |
| 710 | * Init task to manage connctions to forward servers |
| 711 | * |
| 712 | * returns 0 in case of error. |
| 713 | */ |
| 714 | int sink_init_forward(struct sink *sink) |
| 715 | { |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 716 | sink->forward_task = task_new_anywhere(); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 717 | if (!sink->forward_task) |
| 718 | return 0; |
| 719 | |
| 720 | sink->forward_task->process = process_sink_forward; |
| 721 | sink->forward_task->context = (void *)sink; |
| 722 | sink->forward_sighandler = signal_register_task(0, sink->forward_task, 0); |
| 723 | task_wakeup(sink->forward_task, TASK_WOKEN_INIT); |
| 724 | return 1; |
| 725 | } |
Willy Tarreau | 32872db | 2022-08-31 18:52:17 +0200 | [diff] [blame] | 726 | |
| 727 | /* This tries to rotate a file-backed ring, but only if it contains contents. |
| 728 | * This way empty rings will not cause backups to be overwritten and it's safe |
| 729 | * to reload multiple times. That's only best effort, failures are silently |
| 730 | * ignored. |
| 731 | */ |
| 732 | void sink_rotate_file_backed_ring(const char *name) |
| 733 | { |
| 734 | struct ring ring; |
| 735 | char *oldback; |
| 736 | int ret; |
| 737 | int fd; |
| 738 | |
| 739 | fd = open(name, O_RDONLY); |
| 740 | if (fd < 0) |
| 741 | return; |
| 742 | |
| 743 | /* check for contents validity */ |
| 744 | ret = read(fd, &ring, sizeof(ring)); |
| 745 | close(fd); |
| 746 | |
| 747 | if (ret != sizeof(ring)) |
| 748 | goto rotate; |
| 749 | |
| 750 | /* contents are present, we want to keep them => rotate. Note that |
| 751 | * an empty ring buffer has one byte (the marker). |
| 752 | */ |
| 753 | if (ring.buf.data > 1) |
| 754 | goto rotate; |
| 755 | |
| 756 | /* nothing to keep, let's scratch the file and preserve the backup */ |
| 757 | return; |
| 758 | |
| 759 | rotate: |
| 760 | oldback = NULL; |
| 761 | memprintf(&oldback, "%s.bak", name); |
| 762 | if (oldback) { |
| 763 | /* try to rename any possibly existing ring file to |
| 764 | * ".bak" and delete remains of older ones. This will |
| 765 | * ensure we don't wipe useful debug info upon restart. |
| 766 | */ |
| 767 | unlink(oldback); |
| 768 | if (rename(name, oldback) < 0) |
| 769 | unlink(oldback); |
| 770 | ha_free(&oldback); |
| 771 | } |
| 772 | } |
| 773 | |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 774 | /* |
| 775 | * Parse "ring" section and create corresponding sink buffer. |
| 776 | * |
| 777 | * The function returns 0 in success case, otherwise, it returns error |
| 778 | * flags. |
| 779 | */ |
| 780 | int cfg_parse_ring(const char *file, int linenum, char **args, int kwm) |
| 781 | { |
| 782 | int err_code = 0; |
| 783 | const char *inv; |
| 784 | size_t size = BUFSIZE; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 785 | struct proxy *p; |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 786 | |
Willy Tarreau | 18d1306 | 2022-08-11 16:12:11 +0200 | [diff] [blame] | 787 | if (strcmp(args[0], "ring") == 0) { /* new ring section */ |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 788 | if (!*args[1]) { |
| 789 | ha_alert("parsing [%s:%d] : missing ring name.\n", file, linenum); |
| 790 | err_code |= ERR_ALERT | ERR_FATAL; |
| 791 | goto err; |
| 792 | } |
| 793 | |
| 794 | inv = invalid_char(args[1]); |
| 795 | if (inv) { |
| 796 | ha_alert("parsing [%s:%d] : invalid ring name '%s' (character '%c' is not permitted).\n", file, linenum, args[1], *inv); |
| 797 | err_code |= ERR_ALERT | ERR_FATAL; |
| 798 | goto err; |
| 799 | } |
| 800 | |
| 801 | if (sink_find(args[1])) { |
| 802 | ha_alert("parsing [%s:%d] : sink named '%s' already exists.\n", file, linenum, args[1]); |
| 803 | err_code |= ERR_ALERT | ERR_FATAL; |
| 804 | goto err; |
| 805 | } |
| 806 | |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 807 | cfg_sink = sink_new_buf(args[1], args[1], LOG_FORMAT_RAW, size); |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 808 | if (!cfg_sink || cfg_sink->type != SINK_TYPE_BUFFER) { |
| 809 | ha_alert("parsing [%s:%d] : unable to create a new sink buffer for ring '%s'.\n", file, linenum, args[1]); |
| 810 | err_code |= ERR_ALERT | ERR_FATAL; |
| 811 | goto err; |
| 812 | } |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 813 | |
| 814 | /* allocate new proxy to handle forwards */ |
| 815 | p = calloc(1, sizeof *p); |
| 816 | if (!p) { |
| 817 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 818 | err_code |= ERR_ALERT | ERR_FATAL; |
| 819 | goto err; |
| 820 | } |
| 821 | |
| 822 | init_new_proxy(p); |
| 823 | sink_setup_proxy(p); |
| 824 | p->parent = cfg_sink; |
| 825 | p->id = strdup(args[1]); |
| 826 | p->conf.args.file = p->conf.file = strdup(file); |
| 827 | p->conf.args.line = p->conf.line = linenum; |
| 828 | cfg_sink->forward_px = p; |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 829 | } |
| 830 | else if (strcmp(args[0], "size") == 0) { |
Willy Tarreau | 18d1306 | 2022-08-11 16:12:11 +0200 | [diff] [blame] | 831 | if (!cfg_sink || (cfg_sink->type != SINK_TYPE_BUFFER)) { |
| 832 | ha_alert("parsing [%s:%d] : 'size' directive not usable with this type of sink.\n", file, linenum); |
| 833 | err_code |= ERR_ALERT | ERR_FATAL; |
| 834 | goto err; |
| 835 | } |
| 836 | |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 837 | size = atol(args[1]); |
| 838 | if (!size) { |
| 839 | ha_alert("parsing [%s:%d] : invalid size '%s' for new sink buffer.\n", file, linenum, args[1]); |
| 840 | err_code |= ERR_ALERT | ERR_FATAL; |
| 841 | goto err; |
| 842 | } |
| 843 | |
Willy Tarreau | 0b8e9ce | 2022-08-11 16:38:20 +0200 | [diff] [blame] | 844 | if (cfg_sink->store) { |
| 845 | ha_alert("parsing [%s:%d] : cannot resize an already mapped file, please specify 'size' before 'backing-file'.\n", file, linenum); |
| 846 | err_code |= ERR_ALERT | ERR_FATAL; |
| 847 | goto err; |
| 848 | } |
| 849 | |
Willy Tarreau | 18d1306 | 2022-08-11 16:12:11 +0200 | [diff] [blame] | 850 | if (size < cfg_sink->ctx.ring->buf.size) { |
| 851 | ha_warning("parsing [%s:%d] : ignoring new size '%llu' that is smaller than current size '%llu' for ring '%s'.\n", |
| 852 | file, linenum, (ullong)size, (ullong)cfg_sink->ctx.ring->buf.size, cfg_sink->name); |
Aurelien DARRAGON | cad9ce5 | 2023-06-22 16:57:29 +0200 | [diff] [blame] | 853 | err_code |= ERR_WARN; |
Willy Tarreau | 18d1306 | 2022-08-11 16:12:11 +0200 | [diff] [blame] | 854 | goto err; |
| 855 | } |
| 856 | |
| 857 | if (!ring_resize(cfg_sink->ctx.ring, size)) { |
| 858 | ha_alert("parsing [%s:%d] : fail to set sink buffer size '%llu' for ring '%s'.\n", file, linenum, |
| 859 | (ullong)cfg_sink->ctx.ring->buf.size, cfg_sink->name); |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 860 | err_code |= ERR_ALERT | ERR_FATAL; |
| 861 | goto err; |
| 862 | } |
Willy Tarreau | 0b8e9ce | 2022-08-11 16:38:20 +0200 | [diff] [blame] | 863 | } |
| 864 | else if (strcmp(args[0], "backing-file") == 0) { |
| 865 | /* This tries to mmap file <file> for size <size> and to use it as a backing store |
| 866 | * for ring <ring>. Existing data are delete. NULL is returned on error. |
| 867 | */ |
| 868 | const char *backing = args[1]; |
| 869 | size_t size; |
| 870 | void *area; |
| 871 | int fd; |
| 872 | |
| 873 | if (!cfg_sink || (cfg_sink->type != SINK_TYPE_BUFFER)) { |
| 874 | ha_alert("parsing [%s:%d] : 'backing-file' only usable with existing rings.\n", file, linenum); |
| 875 | err_code |= ERR_ALERT | ERR_FATAL; |
| 876 | goto err; |
| 877 | } |
| 878 | |
| 879 | if (cfg_sink->store) { |
| 880 | ha_alert("parsing [%s:%d] : 'backing-file' already specified for ring '%s' (was '%s').\n", file, linenum, cfg_sink->name, cfg_sink->store); |
| 881 | err_code |= ERR_ALERT | ERR_FATAL; |
| 882 | goto err; |
| 883 | } |
| 884 | |
Willy Tarreau | 32872db | 2022-08-31 18:52:17 +0200 | [diff] [blame] | 885 | /* let's check if the file exists and is not empty. That's the |
| 886 | * only condition under which we'll trigger a rotate, so that |
| 887 | * config checks, reloads, or restarts that don't emit anything |
| 888 | * do not rotate it again. |
| 889 | */ |
| 890 | sink_rotate_file_backed_ring(backing); |
Willy Tarreau | ded77cc | 2022-08-12 15:38:20 +0200 | [diff] [blame] | 891 | |
Willy Tarreau | 8e87705 | 2022-08-12 15:03:12 +0200 | [diff] [blame] | 892 | fd = open(backing, O_RDWR | O_CREAT, 0600); |
Willy Tarreau | 0b8e9ce | 2022-08-11 16:38:20 +0200 | [diff] [blame] | 893 | if (fd < 0) { |
| 894 | ha_alert("parsing [%s:%d] : cannot open backing-file '%s' for ring '%s': %s.\n", file, linenum, backing, cfg_sink->name, strerror(errno)); |
| 895 | err_code |= ERR_ALERT | ERR_FATAL; |
| 896 | goto err; |
| 897 | } |
| 898 | |
| 899 | size = (cfg_sink->ctx.ring->buf.size + 4095UL) & -4096UL; |
| 900 | if (ftruncate(fd, size) != 0) { |
| 901 | close(fd); |
| 902 | ha_alert("parsing [%s:%d] : could not adjust size of backing-file for ring '%s': %s.\n", file, linenum, cfg_sink->name, strerror(errno)); |
| 903 | err_code |= ERR_ALERT | ERR_FATAL; |
| 904 | goto err; |
| 905 | } |
| 906 | |
| 907 | area = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); |
| 908 | if (area == MAP_FAILED) { |
| 909 | close(fd); |
| 910 | ha_alert("parsing [%s:%d] : failed to use '%s' as a backing file for ring '%s': %s.\n", file, linenum, backing, cfg_sink->name, strerror(errno)); |
| 911 | err_code |= ERR_ALERT | ERR_FATAL; |
| 912 | goto err; |
| 913 | } |
| 914 | |
| 915 | /* we don't need the file anymore */ |
| 916 | close(fd); |
| 917 | cfg_sink->store = strdup(backing); |
| 918 | |
| 919 | /* never fails */ |
| 920 | ring_free(cfg_sink->ctx.ring); |
| 921 | cfg_sink->ctx.ring = ring_make_from_area(area, size); |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 922 | } |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 923 | else if (strcmp(args[0],"server") == 0) { |
Willy Tarreau | 1b662aa | 2022-11-16 18:56:34 +0100 | [diff] [blame] | 924 | if (!cfg_sink || (cfg_sink->type != SINK_TYPE_BUFFER)) { |
| 925 | ha_alert("parsing [%s:%d] : unable to create server '%s'.\n", file, linenum, args[1]); |
| 926 | err_code |= ERR_ALERT | ERR_FATAL; |
| 927 | goto err; |
| 928 | } |
| 929 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 930 | err_code |= parse_server(file, linenum, args, cfg_sink->forward_px, NULL, |
| 931 | SRV_PARSE_PARSE_ADDR|SRV_PARSE_INITIAL_RESOLVE); |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 932 | } |
| 933 | else if (strcmp(args[0],"timeout") == 0) { |
| 934 | if (!cfg_sink || !cfg_sink->forward_px) { |
| 935 | ha_alert("parsing [%s:%d] : unable to set timeout '%s'.\n", file, linenum, args[1]); |
| 936 | err_code |= ERR_ALERT | ERR_FATAL; |
| 937 | goto err; |
| 938 | } |
| 939 | |
| 940 | if (strcmp(args[1], "connect") == 0 || |
| 941 | strcmp(args[1], "server") == 0) { |
| 942 | const char *res; |
| 943 | unsigned int tout; |
| 944 | |
| 945 | if (!*args[2]) { |
| 946 | ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n", |
| 947 | file, linenum, args[0], args[1]); |
| 948 | err_code |= ERR_ALERT | ERR_FATAL; |
| 949 | goto err; |
| 950 | } |
| 951 | res = parse_time_err(args[2], &tout, TIME_UNIT_MS); |
| 952 | if (res == PARSE_TIME_OVER) { |
| 953 | ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n", |
| 954 | file, linenum, args[2], args[0], args[1]); |
| 955 | err_code |= ERR_ALERT | ERR_FATAL; |
| 956 | goto err; |
| 957 | } |
| 958 | else if (res == PARSE_TIME_UNDER) { |
| 959 | ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n", |
| 960 | file, linenum, args[2], args[0], args[1]); |
| 961 | err_code |= ERR_ALERT | ERR_FATAL; |
| 962 | goto err; |
| 963 | } |
| 964 | else if (res) { |
| 965 | ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n", |
| 966 | file, linenum, *res, args[0], args[1]); |
| 967 | err_code |= ERR_ALERT | ERR_FATAL; |
| 968 | goto err; |
| 969 | } |
Christopher Faulet | 321d100 | 2022-10-19 16:26:21 +0200 | [diff] [blame] | 970 | if (args[1][0] == 'c') |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 971 | cfg_sink->forward_px->timeout.connect = tout; |
| 972 | else |
| 973 | cfg_sink->forward_px->timeout.server = tout; |
| 974 | } |
| 975 | } |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 976 | else if (strcmp(args[0],"format") == 0) { |
| 977 | if (!cfg_sink) { |
| 978 | ha_alert("parsing [%s:%d] : unable to set format '%s'.\n", file, linenum, args[1]); |
| 979 | err_code |= ERR_ALERT | ERR_FATAL; |
| 980 | goto err; |
| 981 | } |
| 982 | |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 983 | cfg_sink->fmt = get_log_format(args[1]); |
| 984 | if (cfg_sink->fmt == LOG_FORMAT_UNSPEC) { |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 985 | ha_alert("parsing [%s:%d] : unknown format '%s'.\n", file, linenum, args[1]); |
| 986 | err_code |= ERR_ALERT | ERR_FATAL; |
| 987 | goto err; |
| 988 | } |
| 989 | } |
| 990 | else if (strcmp(args[0],"maxlen") == 0) { |
| 991 | if (!cfg_sink) { |
| 992 | ha_alert("parsing [%s:%d] : unable to set event max length '%s'.\n", file, linenum, args[1]); |
| 993 | err_code |= ERR_ALERT | ERR_FATAL; |
| 994 | goto err; |
| 995 | } |
| 996 | |
| 997 | cfg_sink->maxlen = atol(args[1]); |
| 998 | if (!cfg_sink->maxlen) { |
| 999 | ha_alert("parsing [%s:%d] : invalid size '%s' for new sink buffer.\n", file, linenum, args[1]); |
| 1000 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1001 | goto err; |
| 1002 | } |
| 1003 | } |
| 1004 | else if (strcmp(args[0],"description") == 0) { |
| 1005 | if (!cfg_sink) { |
| 1006 | ha_alert("parsing [%s:%d] : unable to set description '%s'.\n", file, linenum, args[1]); |
| 1007 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1008 | goto err; |
| 1009 | } |
| 1010 | |
| 1011 | if (!*args[1]) { |
| 1012 | ha_alert("parsing [%s:%d] : missing ring description text.\n", file, linenum); |
| 1013 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1014 | goto err; |
| 1015 | } |
| 1016 | |
| 1017 | free(cfg_sink->desc); |
| 1018 | |
| 1019 | cfg_sink->desc = strdup(args[1]); |
| 1020 | if (!cfg_sink->desc) { |
| 1021 | ha_alert("parsing [%s:%d] : fail to set description '%s'.\n", file, linenum, args[1]); |
| 1022 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1023 | goto err; |
| 1024 | } |
| 1025 | } |
Emeric Brun | 9f2ff3a | 2020-05-29 15:47:52 +0200 | [diff] [blame] | 1026 | else { |
| 1027 | ha_alert("parsing [%s:%d] : unknown statement '%s'.\n", file, linenum, args[0]); |
| 1028 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1029 | goto err; |
| 1030 | } |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1031 | |
| 1032 | err: |
| 1033 | return err_code; |
| 1034 | } |
| 1035 | |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1036 | /* Creates an new sink buffer from a log server. |
| 1037 | * |
| 1038 | * It uses the logsrvaddress to declare a forward |
| 1039 | * server for this buffer. And it initializes the |
| 1040 | * forwarding. |
| 1041 | * |
| 1042 | * The function returns a pointer on the |
| 1043 | * allocated struct sink if allocate |
| 1044 | * and initialize succeed, else if it fails |
| 1045 | * it returns NULL. |
| 1046 | * |
| 1047 | * Note: the sink is created using the name |
Ilya Shipitsin | b2be9a1 | 2021-04-24 13:25:42 +0500 | [diff] [blame] | 1048 | * specified into logsrv->ring_name |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1049 | */ |
| 1050 | struct sink *sink_new_from_logsrv(struct logsrv *logsrv) |
| 1051 | { |
| 1052 | struct proxy *p = NULL; |
| 1053 | struct sink *sink = NULL; |
| 1054 | struct server *srv = NULL; |
| 1055 | struct sink_forward_target *sft = NULL; |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1056 | |
| 1057 | /* allocate new proxy to handle |
| 1058 | * forward to a stream server |
| 1059 | */ |
| 1060 | p = calloc(1, sizeof *p); |
| 1061 | if (!p) { |
| 1062 | goto error; |
| 1063 | } |
| 1064 | |
| 1065 | init_new_proxy(p); |
| 1066 | sink_setup_proxy(p); |
| 1067 | p->id = strdup(logsrv->ring_name); |
| 1068 | p->conf.args.file = p->conf.file = strdup(logsrv->conf.file); |
| 1069 | p->conf.args.line = p->conf.line = logsrv->conf.line; |
| 1070 | |
Christopher Faulet | d08a25b | 2022-10-24 15:53:01 +0200 | [diff] [blame] | 1071 | /* Set default connect and server timeout */ |
| 1072 | p->timeout.connect = MS_TO_TICKS(1000); |
| 1073 | p->timeout.server = MS_TO_TICKS(5000); |
| 1074 | |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1075 | /* allocate a new server to forward messages |
| 1076 | * from ring buffer |
| 1077 | */ |
| 1078 | srv = new_server(p); |
| 1079 | if (!srv) |
| 1080 | goto error; |
| 1081 | |
| 1082 | /* init server */ |
| 1083 | srv->id = strdup(logsrv->ring_name); |
| 1084 | srv->conf.file = strdup(logsrv->conf.file); |
| 1085 | srv->conf.line = logsrv->conf.line; |
| 1086 | srv->addr = logsrv->addr; |
| 1087 | srv->svc_port = get_host_port(&logsrv->addr); |
| 1088 | HA_SPIN_INIT(&srv->lock); |
| 1089 | |
| 1090 | /* process per thread init */ |
Miroslav Zagorac | 8a8f270 | 2021-06-15 15:33:20 +0200 | [diff] [blame] | 1091 | if (srv_init_per_thr(srv) == -1) |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1092 | goto error; |
| 1093 | |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1094 | /* the servers are linked backwards |
| 1095 | * first into proxy |
| 1096 | */ |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1097 | srv->next = p->srv; |
Aurelien DARRAGON | aff4ac2 | 2023-07-06 14:57:32 +0200 | [diff] [blame] | 1098 | p->srv = srv; |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1099 | |
| 1100 | /* allocate sink_forward_target descriptor */ |
| 1101 | sft = calloc(1, sizeof(*sft)); |
| 1102 | if (!sft) |
| 1103 | goto error; |
| 1104 | |
| 1105 | /* init sink_forward_target offset */ |
| 1106 | sft->srv = srv; |
| 1107 | sft->appctx = NULL; |
| 1108 | sft->ofs = ~0; |
| 1109 | HA_SPIN_INIT(&sft->lock); |
| 1110 | |
Ilya Shipitsin | b2be9a1 | 2021-04-24 13:25:42 +0500 | [diff] [blame] | 1111 | /* prepare description for the sink */ |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1112 | chunk_reset(&trash); |
| 1113 | chunk_printf(&trash, "created from logserver declared into '%s' at line %d", logsrv->conf.file, logsrv->conf.line); |
| 1114 | |
| 1115 | /* allocate a new sink buffer */ |
| 1116 | sink = sink_new_buf(logsrv->ring_name, trash.area, logsrv->format, BUFSIZE); |
| 1117 | if (!sink || sink->type != SINK_TYPE_BUFFER) { |
| 1118 | goto error; |
| 1119 | } |
| 1120 | |
| 1121 | /* link sink_forward_target to proxy */ |
| 1122 | sink->forward_px = p; |
| 1123 | p->parent = sink; |
| 1124 | |
| 1125 | /* insert into sink_forward_targets |
| 1126 | * list into sink |
| 1127 | */ |
Christopher Faulet | 2ae25ea | 2022-05-12 14:50:09 +0200 | [diff] [blame] | 1128 | sft->sink = sink; |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1129 | sft->next = sink->sft; |
| 1130 | sink->sft = sft; |
| 1131 | |
| 1132 | /* mark server as an attached reader to the ring */ |
| 1133 | if (!ring_attach(sink->ctx.ring)) { |
| 1134 | /* should never fail since there is |
| 1135 | * only one reader |
| 1136 | */ |
| 1137 | goto error; |
| 1138 | } |
| 1139 | |
| 1140 | /* initialize sink buffer forwarding */ |
| 1141 | if (!sink_init_forward(sink)) |
| 1142 | goto error; |
| 1143 | |
| 1144 | /* reset familyt of logsrv to consider the ring buffer target */ |
| 1145 | logsrv->addr.ss_family = AF_UNSPEC; |
| 1146 | |
| 1147 | return sink; |
| 1148 | error: |
Aurelien DARRAGON | 9da1f95 | 2023-07-11 09:31:06 +0200 | [diff] [blame] | 1149 | if (srv) |
| 1150 | srv_drop(srv); |
| 1151 | |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1152 | if (p) { |
| 1153 | if (p->id) |
| 1154 | free(p->id); |
| 1155 | if (p->conf.file) |
| 1156 | free(p->conf.file); |
| 1157 | |
| 1158 | free(p); |
| 1159 | } |
| 1160 | |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1161 | if (sft) |
| 1162 | free(sft); |
| 1163 | |
| 1164 | if (sink) { |
Tim Duesterhus | 1307cd4 | 2023-04-22 17:47:35 +0200 | [diff] [blame] | 1165 | ring_free(sink->ctx.ring); |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1166 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1167 | LIST_DELETE(&sink->sink_list); |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1168 | free(sink->name); |
| 1169 | free(sink->desc); |
| 1170 | free(sink); |
| 1171 | } |
| 1172 | |
| 1173 | return NULL; |
| 1174 | } |
| 1175 | |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1176 | /* |
| 1177 | * Post parsing "ring" section. |
| 1178 | * |
| 1179 | * The function returns 0 in success case, otherwise, it returns error |
| 1180 | * flags. |
| 1181 | */ |
| 1182 | int cfg_post_parse_ring() |
| 1183 | { |
| 1184 | int err_code = 0; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 1185 | struct server *srv; |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1186 | |
| 1187 | if (cfg_sink && (cfg_sink->type == SINK_TYPE_BUFFER)) { |
| 1188 | if (cfg_sink->maxlen > b_size(&cfg_sink->ctx.ring->buf)) { |
| 1189 | ha_warning("ring '%s' event max length '%u' exceeds size, forced to size '%lu'.\n", |
Willy Tarreau | 570a22b | 2020-06-02 12:00:46 +0200 | [diff] [blame] | 1190 | cfg_sink->name, cfg_sink->maxlen, (unsigned long)b_size(&cfg_sink->ctx.ring->buf)); |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1191 | cfg_sink->maxlen = b_size(&cfg_sink->ctx.ring->buf); |
Aurelien DARRAGON | 79504b9 | 2023-06-26 14:22:12 +0200 | [diff] [blame] | 1192 | err_code |= ERR_WARN; |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1193 | } |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 1194 | |
| 1195 | /* prepare forward server descriptors */ |
| 1196 | if (cfg_sink->forward_px) { |
| 1197 | srv = cfg_sink->forward_px->srv; |
| 1198 | while (srv) { |
| 1199 | struct sink_forward_target *sft; |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1200 | |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 1201 | /* allocate sink_forward_target descriptor */ |
| 1202 | sft = calloc(1, sizeof(*sft)); |
| 1203 | if (!sft) { |
| 1204 | ha_alert("memory allocation error initializing server '%s' in ring '%s'.\n",srv->id, cfg_sink->name); |
| 1205 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1206 | break; |
| 1207 | } |
| 1208 | sft->srv = srv; |
| 1209 | sft->appctx = NULL; |
| 1210 | sft->ofs = ~0; /* init ring offset */ |
Christopher Faulet | 96417f3 | 2022-08-04 16:00:13 +0200 | [diff] [blame] | 1211 | sft->sink = cfg_sink; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 1212 | sft->next = cfg_sink->sft; |
| 1213 | HA_SPIN_INIT(&sft->lock); |
| 1214 | |
| 1215 | /* mark server attached to the ring */ |
| 1216 | if (!ring_attach(cfg_sink->ctx.ring)) { |
| 1217 | ha_alert("server '%s' sets too many watchers > 255 on ring '%s'.\n", srv->id, cfg_sink->name); |
| 1218 | err_code |= ERR_ALERT | ERR_FATAL; |
Aurelien DARRAGON | 727e396 | 2023-07-10 16:26:08 +0200 | [diff] [blame] | 1219 | ha_free(&sft); |
| 1220 | break; |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 1221 | } |
| 1222 | cfg_sink->sft = sft; |
| 1223 | srv = srv->next; |
| 1224 | } |
Aurelien DARRAGON | 727e396 | 2023-07-10 16:26:08 +0200 | [diff] [blame] | 1225 | if (sink_init_forward(cfg_sink) == 0) { |
| 1226 | ha_alert("error when trying to initialize sink buffer forwarding.\n"); |
| 1227 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1228 | } |
Emeric Brun | 494c505 | 2020-05-28 11:13:15 +0200 | [diff] [blame] | 1229 | } |
| 1230 | } |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1231 | cfg_sink = NULL; |
| 1232 | |
| 1233 | return err_code; |
| 1234 | } |
| 1235 | |
| 1236 | /* resolve sink names at end of config. Returns 0 on success otherwise error |
| 1237 | * flags. |
| 1238 | */ |
| 1239 | int post_sink_resolve() |
| 1240 | { |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1241 | int err_code = ERR_NONE; |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1242 | struct logsrv *logsrv, *logb; |
| 1243 | struct sink *sink; |
| 1244 | struct proxy *px; |
| 1245 | |
| 1246 | list_for_each_entry_safe(logsrv, logb, &global.logsrvs, list) { |
| 1247 | if (logsrv->type == LOG_TARGET_BUFFER) { |
| 1248 | sink = sink_find(logsrv->ring_name); |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1249 | if (!sink) { |
| 1250 | /* LOG_TARGET_BUFFER but !AF_UNSPEC |
| 1251 | * means we must allocate a sink |
| 1252 | * buffer to send messages to this logsrv |
| 1253 | */ |
| 1254 | if (logsrv->addr.ss_family != AF_UNSPEC) { |
| 1255 | sink = sink_new_from_logsrv(logsrv); |
| 1256 | if (!sink) { |
| 1257 | ha_alert("global stream log server declared in file '%s' at line %d cannot be initialized'.\n", |
| 1258 | logsrv->conf.file, logsrv->conf.line); |
| 1259 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1260 | } |
| 1261 | } |
| 1262 | else { |
| 1263 | ha_alert("global log server declared in file '%s' at line %d uses unknown ring named '%s'.\n", |
| 1264 | logsrv->conf.file, logsrv->conf.line, logsrv->ring_name); |
| 1265 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1266 | } |
| 1267 | } |
| 1268 | else if (sink->type != SINK_TYPE_BUFFER) { |
| 1269 | ha_alert("global log server declared in file '%s' at line %d uses incompatible ring '%s'.\n", |
| 1270 | logsrv->conf.file, logsrv->conf.line, logsrv->ring_name); |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1271 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1272 | } |
| 1273 | logsrv->sink = sink; |
| 1274 | } |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1275 | |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1276 | } |
| 1277 | |
| 1278 | for (px = proxies_list; px; px = px->next) { |
| 1279 | list_for_each_entry_safe(logsrv, logb, &px->logsrvs, list) { |
| 1280 | if (logsrv->type == LOG_TARGET_BUFFER) { |
| 1281 | sink = sink_find(logsrv->ring_name); |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1282 | if (!sink) { |
| 1283 | /* LOG_TARGET_BUFFER but !AF_UNSPEC |
| 1284 | * means we must allocate a sink |
| 1285 | * buffer to send messages to this logsrv |
| 1286 | */ |
| 1287 | if (logsrv->addr.ss_family != AF_UNSPEC) { |
| 1288 | sink = sink_new_from_logsrv(logsrv); |
| 1289 | if (!sink) { |
| 1290 | ha_alert("log server declared in proxy section '%s' file '%s' at line %d cannot be initialized'.\n", |
| 1291 | px->id, logsrv->conf.file, logsrv->conf.line); |
| 1292 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1293 | } |
| 1294 | } |
| 1295 | else { |
| 1296 | ha_alert("log server declared in proxy section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n", |
| 1297 | px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name); |
| 1298 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1299 | } |
| 1300 | } |
| 1301 | else if (sink->type != SINK_TYPE_BUFFER) { |
| 1302 | ha_alert("log server declared in proxy section '%s' in file '%s' at line %d uses incomatible ring named '%s'.\n", |
| 1303 | px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name); |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1304 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1305 | } |
| 1306 | logsrv->sink = sink; |
| 1307 | } |
| 1308 | } |
| 1309 | } |
Emeric Brun | 12941c8 | 2020-07-07 14:19:42 +0200 | [diff] [blame] | 1310 | |
| 1311 | for (px = cfg_log_forward; px; px = px->next) { |
| 1312 | list_for_each_entry_safe(logsrv, logb, &px->logsrvs, list) { |
| 1313 | if (logsrv->type == LOG_TARGET_BUFFER) { |
| 1314 | sink = sink_find(logsrv->ring_name); |
Emeric Brun | 94aab06 | 2021-04-02 10:41:36 +0200 | [diff] [blame] | 1315 | if (!sink) { |
| 1316 | /* LOG_TARGET_BUFFER but !AF_UNSPEC |
| 1317 | * means we must allocate a sink |
| 1318 | * buffer to send messages to this logsrv |
| 1319 | */ |
| 1320 | if (logsrv->addr.ss_family != AF_UNSPEC) { |
| 1321 | sink = sink_new_from_logsrv(logsrv); |
| 1322 | if (!sink) { |
| 1323 | ha_alert("log server declared in log-forward section '%s' file '%s' at line %d cannot be initialized'.\n", |
| 1324 | px->id, logsrv->conf.file, logsrv->conf.line); |
| 1325 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1326 | } |
| 1327 | } |
| 1328 | else { |
| 1329 | ha_alert("log server declared in log-forward section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n", |
| 1330 | px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name); |
| 1331 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1332 | } |
| 1333 | } |
| 1334 | else if (sink->type != SINK_TYPE_BUFFER) { |
| 1335 | ha_alert("log server declared in log-forward section '%s' in file '%s' at line %d uses unknown ring named '%s'.\n", |
| 1336 | px->id, logsrv->conf.file, logsrv->conf.line, logsrv->ring_name); |
Emeric Brun | 12941c8 | 2020-07-07 14:19:42 +0200 | [diff] [blame] | 1337 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1338 | } |
| 1339 | logsrv->sink = sink; |
| 1340 | } |
| 1341 | } |
| 1342 | } |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1343 | return err_code; |
| 1344 | } |
| 1345 | |
| 1346 | |
Willy Tarreau | 973e662 | 2019-08-20 11:57:52 +0200 | [diff] [blame] | 1347 | static void sink_init() |
| 1348 | { |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 1349 | sink_new_fd("stdout", "standard output (fd#1)", LOG_FORMAT_RAW, 1); |
| 1350 | sink_new_fd("stderr", "standard output (fd#2)", LOG_FORMAT_RAW, 2); |
| 1351 | sink_new_buf("buf0", "in-memory ring buffer", LOG_FORMAT_TIMED, 1048576); |
Willy Tarreau | 4ed23ca | 2019-08-23 15:47:49 +0200 | [diff] [blame] | 1352 | } |
| 1353 | |
| 1354 | static void sink_deinit() |
| 1355 | { |
| 1356 | struct sink *sink, *sb; |
Aurelien DARRAGON | 6a366ea | 2023-07-10 15:17:12 +0200 | [diff] [blame] | 1357 | struct sink_forward_target *sft_next; |
Willy Tarreau | 4ed23ca | 2019-08-23 15:47:49 +0200 | [diff] [blame] | 1358 | |
| 1359 | list_for_each_entry_safe(sink, sb, &sink_list, sink_list) { |
Willy Tarreau | 0b8e9ce | 2022-08-11 16:38:20 +0200 | [diff] [blame] | 1360 | if (sink->type == SINK_TYPE_BUFFER) { |
Willy Tarreau | fb9a476 | 2023-01-24 12:11:41 +0100 | [diff] [blame] | 1361 | if (sink->store) { |
| 1362 | size_t size = (sink->ctx.ring->buf.size + 4095UL) & -4096UL; |
| 1363 | void *area = (sink->ctx.ring->buf.area - sizeof(*sink->ctx.ring)); |
| 1364 | |
| 1365 | msync(area, size, MS_SYNC); |
| 1366 | munmap(area, size); |
Willy Tarreau | b919109 | 2023-01-26 15:34:31 +0100 | [diff] [blame] | 1367 | ha_free(&sink->store); |
Willy Tarreau | fb9a476 | 2023-01-24 12:11:41 +0100 | [diff] [blame] | 1368 | } |
Willy Tarreau | 0b8e9ce | 2022-08-11 16:38:20 +0200 | [diff] [blame] | 1369 | else |
| 1370 | ring_free(sink->ctx.ring); |
| 1371 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1372 | LIST_DELETE(&sink->sink_list); |
Willy Tarreau | 09727ee | 2023-01-26 15:46:08 +0100 | [diff] [blame] | 1373 | task_destroy(sink->forward_task); |
Aurelien DARRAGON | 9b1d15f | 2023-03-09 12:07:09 +0100 | [diff] [blame] | 1374 | free_proxy(sink->forward_px); |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1375 | free(sink->name); |
| 1376 | free(sink->desc); |
Aurelien DARRAGON | 6a366ea | 2023-07-10 15:17:12 +0200 | [diff] [blame] | 1377 | while (sink->sft) { |
| 1378 | sft_next = sink->sft->next; |
| 1379 | free(sink->sft); |
| 1380 | sink->sft = sft_next; |
| 1381 | } |
Willy Tarreau | 4ed23ca | 2019-08-23 15:47:49 +0200 | [diff] [blame] | 1382 | free(sink); |
| 1383 | } |
Willy Tarreau | 973e662 | 2019-08-20 11:57:52 +0200 | [diff] [blame] | 1384 | } |
| 1385 | |
| 1386 | INITCALL0(STG_REGISTER, sink_init); |
Willy Tarreau | 4ed23ca | 2019-08-23 15:47:49 +0200 | [diff] [blame] | 1387 | REGISTER_POST_DEINIT(sink_deinit); |
Willy Tarreau | 973e662 | 2019-08-20 11:57:52 +0200 | [diff] [blame] | 1388 | |
Willy Tarreau | 9f830d7 | 2019-08-26 18:17:04 +0200 | [diff] [blame] | 1389 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 1390 | { { "show", "events", NULL }, "show events [<sink>] [-w] [-n] : show event sink state", cli_parse_show_events, NULL, NULL }, |
Willy Tarreau | 9f830d7 | 2019-08-26 18:17:04 +0200 | [diff] [blame] | 1391 | {{},} |
| 1392 | }}; |
| 1393 | |
| 1394 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
| 1395 | |
Emeric Brun | 99c453d | 2020-05-25 15:01:04 +0200 | [diff] [blame] | 1396 | /* config parsers for this section */ |
| 1397 | REGISTER_CONFIG_SECTION("ring", cfg_parse_ring, cfg_post_parse_ring); |
| 1398 | REGISTER_POST_CHECK(post_sink_resolve); |
| 1399 | |
Willy Tarreau | 67b5a16 | 2019-08-11 16:38:56 +0200 | [diff] [blame] | 1400 | /* |
| 1401 | * Local variables: |
| 1402 | * c-indent-level: 8 |
| 1403 | * c-basic-offset: 8 |
| 1404 | * End: |
| 1405 | */ |