Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 1 | #include <stdarg.h> |
| 2 | #include <stdio.h> |
| 3 | #include <syslog.h> |
| 4 | |
| 5 | #include <haproxy/api.h> |
| 6 | #include <haproxy/applet-t.h> |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 7 | #include <haproxy/buf.h> |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 8 | #include <haproxy/cli.h> |
| 9 | #include <haproxy/errors.h> |
| 10 | #include <haproxy/global.h> |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 11 | #include <haproxy/obj_type.h> |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 12 | #include <haproxy/ring.h> |
| 13 | #include <haproxy/tools.h> |
| 14 | #include <haproxy/version.h> |
| 15 | |
| 16 | /* A global buffer used to store all startup alerts/warnings. It will then be |
| 17 | * retrieve on the CLI. */ |
| 18 | static struct ring *startup_logs = NULL; |
| 19 | |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 20 | /* A thread local buffer used to store all alerts/warnings. It can be used to |
| 21 | * retrieve them for CLI commands after startup. |
| 22 | */ |
| 23 | #define USER_MESSAGES_BUFSIZE 1024 |
| 24 | static THREAD_LOCAL struct buffer usermsgs_buf = BUF_NULL; |
| 25 | |
Amaury Denoyelle | 6af81f8 | 2021-05-27 15:45:28 +0200 | [diff] [blame] | 26 | /* A thread local context used for stderr output via ha_alert/warning/notice/diag. |
| 27 | */ |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 28 | #define USERMSGS_CTX_BUFSIZE PATH_MAX |
| 29 | static THREAD_LOCAL struct usermsgs_ctx usermsgs_ctx = { .str = BUF_NULL, }; |
Amaury Denoyelle | 6af81f8 | 2021-05-27 15:45:28 +0200 | [diff] [blame] | 30 | |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 31 | /* Put msg in usermsgs_buf. |
| 32 | * |
| 33 | * The message should not be terminated by a newline because this function |
| 34 | * manually insert it. |
| 35 | * |
| 36 | * If there is not enough room in the buffer, the message is silently discarded. |
| 37 | * Do not forget to frequently clear the buffer. |
| 38 | */ |
| 39 | static void usermsgs_put(const struct ist *msg) |
| 40 | { |
| 41 | /* Allocate the buffer if not already done. */ |
| 42 | if (unlikely(b_is_null(&usermsgs_buf))) { |
| 43 | usermsgs_buf.area = malloc(USER_MESSAGES_BUFSIZE * sizeof(char)); |
| 44 | usermsgs_buf.size = USER_MESSAGES_BUFSIZE; |
| 45 | } |
| 46 | |
| 47 | if (likely(!b_is_null(&usermsgs_buf))) { |
| 48 | if (b_room(&usermsgs_buf) >= msg->len + 2) { |
| 49 | /* Insert the message + newline. */ |
| 50 | b_putblk(&usermsgs_buf, msg->ptr, msg->len); |
| 51 | b_putchr(&usermsgs_buf, '\n'); |
| 52 | /* Insert NUL outside of the buffer. */ |
| 53 | *b_tail(&usermsgs_buf) = '\0'; |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | |
Amaury Denoyelle | 6af81f8 | 2021-05-27 15:45:28 +0200 | [diff] [blame] | 58 | /* Clear the user messages log buffer. |
| 59 | * |
| 60 | * <prefix> will set the local-thread context appended to every output |
| 61 | * following this call. It can be NULL if not necessary. |
| 62 | */ |
| 63 | void usermsgs_clr(const char *prefix) |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 64 | { |
| 65 | if (likely(!b_is_null(&usermsgs_buf))) { |
| 66 | b_reset(&usermsgs_buf); |
| 67 | usermsgs_buf.area[0] = '\0'; |
| 68 | } |
Amaury Denoyelle | 6af81f8 | 2021-05-27 15:45:28 +0200 | [diff] [blame] | 69 | |
| 70 | usermsgs_ctx.prefix = prefix; |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | /* Check if the user messages buffer is empty. */ |
| 74 | int usermsgs_empty(void) |
| 75 | { |
| 76 | return !!(b_is_null(&usermsgs_buf) || !b_data(&usermsgs_buf)); |
| 77 | } |
| 78 | |
| 79 | /* Return the messages log buffer content. */ |
| 80 | const char *usermsgs_str(void) |
| 81 | { |
| 82 | if (unlikely(b_is_null(&usermsgs_buf))) |
| 83 | return ""; |
| 84 | |
| 85 | return b_head(&usermsgs_buf); |
| 86 | } |
| 87 | |
Amaury Denoyelle | 6af81f8 | 2021-05-27 15:45:28 +0200 | [diff] [blame] | 88 | /* Set thread-local context infos to prefix forthcoming stderr output during |
| 89 | * configuration parsing. |
| 90 | * |
| 91 | * <file> and <line> specify the location of the parsed configuration. |
| 92 | * |
| 93 | * <obj> can be of various types. If not NULL, the string prefix generated will |
| 94 | * depend on its type. |
| 95 | */ |
| 96 | void set_usermsgs_ctx(const char *file, int line, enum obj_type *obj) |
| 97 | { |
| 98 | usermsgs_ctx.file = file; |
| 99 | usermsgs_ctx.line = line; |
| 100 | usermsgs_ctx.obj = obj; |
| 101 | } |
| 102 | |
| 103 | /* Set thread-local context infos to prefix forthcoming stderr output. It will |
| 104 | * be set as a complement to possibly already defined file/line. |
| 105 | * |
| 106 | * <obj> can be of various types. If not NULL, the string prefix generated will |
| 107 | * depend on its type. |
| 108 | */ |
| 109 | void register_parsing_obj(enum obj_type *obj) |
| 110 | { |
| 111 | usermsgs_ctx.obj = obj; |
| 112 | } |
| 113 | |
| 114 | /* Reset thread-local context infos for stderr output. */ |
| 115 | void reset_usermsgs_ctx(void) |
| 116 | { |
| 117 | usermsgs_ctx.file = NULL; |
| 118 | usermsgs_ctx.line = 0; |
| 119 | usermsgs_ctx.obj = NULL; |
| 120 | } |
| 121 | |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 122 | static void generate_usermsgs_ctx_str(void) |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 123 | { |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 124 | struct usermsgs_ctx *ctx = &usermsgs_ctx; |
| 125 | void *area; |
| 126 | int ret; |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 127 | |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 128 | if (unlikely(b_is_null(&ctx->str))) { |
Tim Duesterhus | ec4a875 | 2021-09-15 13:58:46 +0200 | [diff] [blame] | 129 | area = calloc(USERMSGS_CTX_BUFSIZE, sizeof(*area)); |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 130 | if (area) |
| 131 | ctx->str = b_make(area, USERMSGS_CTX_BUFSIZE, 0, 0); |
| 132 | } |
| 133 | |
| 134 | if (likely(!b_is_null(&ctx->str))) { |
| 135 | b_reset(&ctx->str); |
| 136 | |
| 137 | if (ctx->prefix) { |
| 138 | ret = snprintf(b_tail(&ctx->str), b_room(&ctx->str), |
| 139 | "%s : ", ctx->prefix); |
| 140 | b_add(&ctx->str, MIN(ret, b_room(&ctx->str))); |
| 141 | } |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 142 | |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 143 | if (ctx->file) { |
| 144 | ret = snprintf(b_tail(&ctx->str), b_room(&ctx->str), |
| 145 | "[%s:%d] : ", ctx->file, ctx->line); |
| 146 | b_add(&ctx->str, MIN(ret, b_room(&ctx->str))); |
| 147 | } |
| 148 | |
| 149 | switch (obj_type(ctx->obj)) { |
| 150 | case OBJ_TYPE_SERVER: |
| 151 | ret = snprintf(b_tail(&ctx->str), b_room(&ctx->str), |
| 152 | "'server %s/%s' : ", |
| 153 | __objt_server(ctx->obj)->proxy->id, |
| 154 | __objt_server(ctx->obj)->id); |
| 155 | b_add(&ctx->str, MIN(ret, b_room(&ctx->str))); |
| 156 | break; |
| 157 | |
| 158 | case OBJ_TYPE_NONE: |
| 159 | default: |
| 160 | break; |
| 161 | } |
Amaury Denoyelle | d0b237c | 2021-05-28 10:36:56 +0200 | [diff] [blame] | 162 | |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 163 | if (!b_data(&ctx->str)) |
| 164 | snprintf(b_tail(&ctx->str), b_room(&ctx->str), "%s", ""); |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 168 | /* Generic function to display messages prefixed by a label */ |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 169 | static void print_message(int use_usermsgs_ctx, const char *label, const char *fmt, va_list argp) |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 170 | { |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 171 | struct ist msg_ist = IST_NULL; |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 172 | char *head, *parsing_str, *msg; |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 173 | char prefix[11]; // '[' + 8 chars + ']' + 0. |
| 174 | |
| 175 | *prefix = '['; |
| 176 | strncpy(prefix + 1, label, sizeof(prefix) - 2); |
| 177 | msg = prefix + strlen(prefix); |
| 178 | *msg++ = ']'; |
| 179 | while (msg < prefix + sizeof(prefix) - 1) |
| 180 | *msg++ = ' '; |
| 181 | *msg = 0; |
| 182 | |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 183 | head = parsing_str = msg = NULL; |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 184 | memprintf(&head, "%s (%u) : ", prefix, (uint)getpid()); |
| 185 | memvprintf(&msg, fmt, argp); |
| 186 | |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 187 | /* trim the trailing '\n' */ |
| 188 | msg_ist = ist(msg); |
| 189 | if (msg_ist.len > 0 && msg_ist.ptr[msg_ist.len - 1] == '\n') |
| 190 | msg_ist.len--; |
| 191 | |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 192 | if (use_usermsgs_ctx) { |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 193 | generate_usermsgs_ctx_str(); |
| 194 | parsing_str = b_head(&usermsgs_ctx.str); |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 195 | reset_usermsgs_ctx(); |
| 196 | } |
| 197 | else { |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 198 | parsing_str = ""; |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 199 | } |
| 200 | |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 201 | if (global.mode & MODE_STARTING) { |
| 202 | if (unlikely(!startup_logs)) |
| 203 | startup_logs = ring_new(STARTUP_LOG_SIZE); |
| 204 | |
| 205 | if (likely(startup_logs)) { |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 206 | struct ist m[3]; |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 207 | |
| 208 | m[0] = ist(head); |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 209 | m[1] = ist(parsing_str); |
| 210 | m[2] = msg_ist; |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 211 | |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 212 | ring_write(startup_logs, ~0, 0, 0, m, 3); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 213 | } |
| 214 | } |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 215 | else { |
| 216 | usermsgs_put(&msg_ist); |
| 217 | } |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 218 | |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 219 | fprintf(stderr, "%s%s%s", head, parsing_str, msg); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 220 | fflush(stderr); |
| 221 | |
| 222 | free(head); |
| 223 | free(msg); |
| 224 | } |
| 225 | |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 226 | static void print_message_args(int use_usermsgs_ctx, const char *label, const char *fmt, ...) |
| 227 | { |
| 228 | va_list argp; |
| 229 | va_start(argp, fmt); |
| 230 | print_message(use_usermsgs_ctx, label, fmt, argp); |
| 231 | va_end(argp); |
| 232 | } |
| 233 | |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 234 | /* |
| 235 | * Displays the message on stderr with the date and pid. Overrides the quiet |
| 236 | * mode during startup. |
| 237 | */ |
| 238 | void ha_alert(const char *fmt, ...) |
| 239 | { |
| 240 | va_list argp; |
| 241 | |
Amaury Denoyelle | 0a1cdcc | 2021-05-26 11:05:45 +0200 | [diff] [blame] | 242 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE) || |
| 243 | !(global.mode & MODE_STARTING)) { |
| 244 | if (!(warned & WARN_EXEC_PATH) && (global.mode & MODE_STARTING)) { |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 245 | const char *path = get_exec_path(); |
| 246 | |
| 247 | warned |= WARN_EXEC_PATH; |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 248 | print_message_args(0, "NOTICE", "haproxy version is %s\n", haproxy_version); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 249 | if (path) |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 250 | print_message_args(0, "NOTICE", "path to executable is %s\n", path); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 251 | } |
| 252 | va_start(argp, fmt); |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 253 | print_message(1, "ALERT", fmt, argp); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 254 | va_end(argp); |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | * Displays the message on stderr with the date and pid. |
| 260 | */ |
| 261 | void ha_warning(const char *fmt, ...) |
| 262 | { |
| 263 | va_list argp; |
| 264 | |
| 265 | warned |= WARN_ANY; |
| 266 | |
Amaury Denoyelle | 0a1cdcc | 2021-05-26 11:05:45 +0200 | [diff] [blame] | 267 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE) || |
| 268 | !(global.mode & MODE_STARTING)) { |
Amaury Denoyelle | da3d681 | 2021-05-28 09:57:10 +0200 | [diff] [blame] | 269 | if (!(warned & WARN_EXEC_PATH) && (global.mode & MODE_STARTING)) { |
| 270 | const char *path = get_exec_path(); |
| 271 | |
| 272 | warned |= WARN_EXEC_PATH; |
| 273 | print_message_args(0, "NOTICE", "haproxy version is %s\n", haproxy_version); |
| 274 | if (path) |
| 275 | print_message_args(0, "NOTICE", "path to executable is %s\n", path); |
| 276 | } |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 277 | va_start(argp, fmt); |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 278 | print_message(1, "WARNING", fmt, argp); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 279 | va_end(argp); |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | /* |
| 284 | * Variant of _ha_diag_warning with va_list. |
| 285 | * Use it only if MODE_DIAG has been previously checked. |
| 286 | */ |
| 287 | void _ha_vdiag_warning(const char *fmt, va_list argp) |
| 288 | { |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 289 | print_message(1, "DIAG", fmt, argp); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | /* |
| 293 | * Output a diagnostic warning. |
| 294 | * Use it only if MODE_DIAG has been previously checked. |
| 295 | */ |
| 296 | void _ha_diag_warning(const char *fmt, ...) |
| 297 | { |
| 298 | va_list argp; |
| 299 | |
| 300 | va_start(argp, fmt); |
| 301 | _ha_vdiag_warning(fmt, argp); |
| 302 | va_end(argp); |
| 303 | } |
| 304 | |
| 305 | /* |
| 306 | * Output a diagnostic warning. Do nothing of MODE_DIAG is not on. |
| 307 | */ |
| 308 | void ha_diag_warning(const char *fmt, ...) |
| 309 | { |
| 310 | va_list argp; |
| 311 | |
| 312 | if (global.mode & MODE_DIAG) { |
| 313 | va_start(argp, fmt); |
| 314 | _ha_vdiag_warning(fmt, argp); |
| 315 | va_end(argp); |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | * Displays the message on stderr with the date and pid. |
| 321 | */ |
| 322 | void ha_notice(const char *fmt, ...) |
| 323 | { |
| 324 | va_list argp; |
| 325 | |
Amaury Denoyelle | 0a1cdcc | 2021-05-26 11:05:45 +0200 | [diff] [blame] | 326 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE) || |
| 327 | !(global.mode & MODE_STARTING)) { |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 328 | va_start(argp, fmt); |
Amaury Denoyelle | 816281f | 2021-05-27 15:46:19 +0200 | [diff] [blame] | 329 | print_message(1, "NOTICE", fmt, argp); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 330 | va_end(argp); |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | /* |
| 335 | * Displays the message on <out> only if quiet mode is not set. |
| 336 | */ |
| 337 | void qfprintf(FILE *out, const char *fmt, ...) |
| 338 | { |
| 339 | va_list argp; |
| 340 | |
| 341 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) { |
| 342 | va_start(argp, fmt); |
| 343 | vfprintf(out, fmt, argp); |
| 344 | fflush(out); |
| 345 | va_end(argp); |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | |
| 350 | /* parse the "show startup-logs" command, returns 1 if a message is returned, otherwise zero */ |
| 351 | static int cli_parse_show_startup_logs(char **args, char *payload, struct appctx *appctx, void *private) |
| 352 | { |
| 353 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 354 | return 1; |
| 355 | |
| 356 | if (!startup_logs) |
| 357 | return cli_msg(appctx, LOG_INFO, "\n"); // nothing to print |
| 358 | |
| 359 | return ring_attach_cli(startup_logs, appctx); |
| 360 | } |
| 361 | |
| 362 | /* register cli keywords */ |
| 363 | static struct cli_kw_list cli_kws = {{ },{ |
| 364 | { { "show", "startup-logs", NULL }, "show startup-logs : report logs emitted during HAProxy startup", cli_parse_show_startup_logs, NULL, NULL }, |
| 365 | {{},} |
| 366 | }}; |
| 367 | |
| 368 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
| 369 | |
| 370 | |
| 371 | static void deinit_errors_buffers() |
| 372 | { |
| 373 | ring_free(_HA_ATOMIC_XCHG(&startup_logs, NULL)); |
Amaury Denoyelle | 1833e43 | 2021-05-26 11:05:22 +0200 | [diff] [blame] | 374 | ha_free(&usermsgs_buf.area); |
Amaury Denoyelle | 846830e | 2021-06-07 19:24:10 +0200 | [diff] [blame] | 375 | ha_free(&usermsgs_ctx.str.area); |
Amaury Denoyelle | ce986e1 | 2021-06-04 11:20:32 +0200 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | REGISTER_PER_THREAD_FREE(deinit_errors_buffers); |