Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file log.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Logger routines implementations |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2018 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 15 | #define _GNU_SOURCE |
Radek Krejci | f8dc59a | 2020-11-25 13:47:44 +0100 | [diff] [blame] | 16 | #define _POSIX_C_SOURCE 200809L /* strdup */ |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 17 | |
| 18 | #include "log.h" |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 19 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 20 | #include <assert.h> |
Radek Krejci | c04f0a2 | 2018-09-21 15:49:45 +0200 | [diff] [blame] | 21 | #include <inttypes.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 22 | #include <pthread.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 23 | #include <stdarg.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 24 | #include <stdint.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 25 | #include <stdio.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 26 | #include <stdlib.h> |
| 27 | #include <string.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 28 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 29 | #include "common.h" |
Radek Krejci | aa45bda | 2020-07-20 07:43:38 +0200 | [diff] [blame] | 30 | #include "compat.h" |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 31 | #include "plugins_exts.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 32 | #include "tree_data.h" |
| 33 | #include "tree_schema.h" |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 34 | |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 35 | volatile LY_LOG_LEVEL ly_ll = LY_LLWRN; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 36 | volatile uint32_t ly_log_opts = LY_LOLOG | LY_LOSTORE_LAST; |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 37 | static ly_log_clb log_clb; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 38 | static volatile ly_bool path_flag = 1; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 39 | #ifndef NDEBUG |
Radek Krejci | 68433c9 | 2020-10-12 17:03:55 +0200 | [diff] [blame] | 40 | volatile uint32_t ly_ldbg_groups = 0; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 41 | #endif |
| 42 | |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 43 | /* how many bytes add when enlarging buffers */ |
| 44 | #define LY_BUF_STEP 128 |
| 45 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 46 | API LY_ERR |
| 47 | ly_errcode(const struct ly_ctx *ctx) |
| 48 | { |
| 49 | struct ly_err_item *i; |
| 50 | |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 51 | i = ly_err_last(ctx); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 52 | if (i) { |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 53 | return i->no; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | return LY_SUCCESS; |
| 57 | } |
| 58 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 59 | API LY_VECODE |
| 60 | ly_vecode(const struct ly_ctx *ctx) |
| 61 | { |
| 62 | struct ly_err_item *i; |
| 63 | |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 64 | i = ly_err_last(ctx); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 65 | if (i) { |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 66 | return i->vecode; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | return LYVE_SUCCESS; |
| 70 | } |
| 71 | |
| 72 | API const char * |
| 73 | ly_errmsg(const struct ly_ctx *ctx) |
| 74 | { |
| 75 | struct ly_err_item *i; |
| 76 | |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 77 | LY_CHECK_ARG_RET(NULL, ctx, NULL); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 78 | |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 79 | i = ly_err_last(ctx); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 80 | if (i) { |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 81 | return i->msg; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | return NULL; |
| 85 | } |
| 86 | |
| 87 | API const char * |
| 88 | ly_errpath(const struct ly_ctx *ctx) |
| 89 | { |
| 90 | struct ly_err_item *i; |
| 91 | |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 92 | LY_CHECK_ARG_RET(NULL, ctx, NULL); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 93 | |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 94 | i = ly_err_last(ctx); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 95 | if (i) { |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 96 | return i->path; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | return NULL; |
| 100 | } |
| 101 | |
| 102 | API const char * |
| 103 | ly_errapptag(const struct ly_ctx *ctx) |
| 104 | { |
| 105 | struct ly_err_item *i; |
| 106 | |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 107 | LY_CHECK_ARG_RET(NULL, ctx, NULL); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 108 | |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 109 | i = ly_err_last(ctx); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 110 | if (i) { |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 111 | return i->apptag; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | return NULL; |
| 115 | } |
| 116 | |
| 117 | API struct ly_err_item * |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 118 | ly_err_new(LY_LOG_LEVEL level, LY_ERR no, LY_VECODE vecode, char *msg, char *path, char *apptag) |
| 119 | { |
| 120 | struct ly_err_item *eitem; |
| 121 | |
| 122 | eitem = malloc(sizeof *eitem); |
| 123 | LY_CHECK_ERR_RET(!eitem, LOGMEM(NULL), NULL); |
| 124 | eitem->prev = eitem; |
| 125 | eitem->next = NULL; |
| 126 | |
| 127 | /* fill in the information */ |
| 128 | eitem->level = level; |
| 129 | eitem->no = no; |
| 130 | eitem->vecode = vecode; |
| 131 | eitem->msg = msg; |
| 132 | eitem->path = path; |
| 133 | eitem->apptag = apptag; |
| 134 | |
| 135 | return eitem; |
| 136 | } |
| 137 | |
| 138 | API struct ly_err_item * |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 139 | ly_err_first(const struct ly_ctx *ctx) |
| 140 | { |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 141 | LY_CHECK_ARG_RET(NULL, ctx, NULL); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 142 | |
| 143 | return pthread_getspecific(ctx->errlist_key); |
| 144 | } |
| 145 | |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 146 | API struct ly_err_item * |
| 147 | ly_err_last(const struct ly_ctx *ctx) |
| 148 | { |
| 149 | const struct ly_err_item *e; |
| 150 | |
| 151 | LY_CHECK_ARG_RET(NULL, ctx, NULL); |
| 152 | |
| 153 | e = pthread_getspecific(ctx->errlist_key); |
| 154 | return e ? e->prev : NULL; |
| 155 | } |
| 156 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 157 | API void |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 158 | ly_err_free(void *ptr) |
| 159 | { |
| 160 | struct ly_err_item *i, *next; |
| 161 | |
| 162 | /* clean the error list */ |
| 163 | for (i = (struct ly_err_item *)ptr; i; i = next) { |
| 164 | next = i->next; |
Radek Krejci | e269220 | 2020-12-01 14:21:12 +0100 | [diff] [blame] | 165 | if (i->msg && strcmp(i->msg, LY_EMEM_MSG)) { |
| 166 | free(i->msg); |
| 167 | } |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 168 | free(i->path); |
| 169 | free(i->apptag); |
| 170 | free(i); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | API void |
| 175 | ly_err_clean(struct ly_ctx *ctx, struct ly_err_item *eitem) |
| 176 | { |
| 177 | struct ly_err_item *i, *first; |
| 178 | |
| 179 | first = ly_err_first(ctx); |
| 180 | if (first == eitem) { |
| 181 | eitem = NULL; |
| 182 | } |
| 183 | if (eitem) { |
| 184 | /* disconnect the error */ |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 185 | for (i = first; i && (i->next != eitem); i = i->next) {} |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 186 | assert(i); |
| 187 | i->next = NULL; |
| 188 | first->prev = i; |
| 189 | /* free this err and newer */ |
| 190 | ly_err_free(eitem); |
| 191 | } else { |
| 192 | /* free all err */ |
| 193 | ly_err_free(first); |
| 194 | pthread_setspecific(ctx->errlist_key, NULL); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | API LY_LOG_LEVEL |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 199 | ly_log_level(LY_LOG_LEVEL level) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 200 | { |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 201 | LY_LOG_LEVEL prev = ly_ll; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 202 | |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 203 | ly_ll = level; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 204 | return prev; |
| 205 | } |
| 206 | |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 207 | API uint32_t |
| 208 | ly_log_options(uint32_t opts) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 209 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 210 | uint32_t prev = ly_log_opts; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 211 | |
| 212 | ly_log_opts = opts; |
| 213 | return prev; |
| 214 | } |
| 215 | |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 216 | API uint32_t |
Radek Krejci | 68433c9 | 2020-10-12 17:03:55 +0200 | [diff] [blame] | 217 | ly_log_dbg_groups(uint32_t dbg_groups) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 218 | { |
| 219 | #ifndef NDEBUG |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 220 | uint32_t prev = ly_ldbg_groups; |
| 221 | |
Radek Krejci | 68433c9 | 2020-10-12 17:03:55 +0200 | [diff] [blame] | 222 | ly_ldbg_groups = dbg_groups; |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 223 | return prev; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 224 | #else |
| 225 | (void)dbg_groups; |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 226 | return 0; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 227 | #endif |
| 228 | } |
| 229 | |
| 230 | API void |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 231 | ly_set_log_clb(ly_log_clb clb, ly_bool path) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 232 | { |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 233 | log_clb = clb; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 234 | path_flag = path; |
| 235 | } |
| 236 | |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 237 | API ly_log_clb |
| 238 | ly_get_log_clb(void) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 239 | { |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 240 | return log_clb; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | static LY_ERR |
| 244 | log_store(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, LY_VECODE vecode, char *msg, char *path, char *apptag) |
| 245 | { |
| 246 | struct ly_err_item *eitem, *last; |
| 247 | |
| 248 | assert(ctx && (level < LY_LLVRB)); |
| 249 | |
| 250 | eitem = pthread_getspecific(ctx->errlist_key); |
| 251 | if (!eitem) { |
| 252 | /* if we are only to fill in path, there must have been an error stored */ |
| 253 | assert(msg); |
| 254 | eitem = malloc(sizeof *eitem); |
| 255 | LY_CHECK_GOTO(!eitem, mem_fail); |
| 256 | eitem->prev = eitem; |
| 257 | eitem->next = NULL; |
| 258 | |
| 259 | pthread_setspecific(ctx->errlist_key, eitem); |
| 260 | } else if (!msg) { |
| 261 | /* only filling the path */ |
| 262 | assert(path); |
| 263 | |
| 264 | /* find last error */ |
| 265 | eitem = eitem->prev; |
| 266 | do { |
| 267 | if (eitem->level == LY_LLERR) { |
| 268 | /* fill the path */ |
| 269 | free(eitem->path); |
| 270 | eitem->path = path; |
| 271 | return LY_SUCCESS; |
| 272 | } |
| 273 | eitem = eitem->prev; |
| 274 | } while (eitem->prev->next); |
| 275 | /* last error was not found */ |
| 276 | assert(0); |
Michal Vasko | ed94a29 | 2019-11-06 15:43:41 +0100 | [diff] [blame] | 277 | } else if ((ly_log_opts & LY_LOSTORE_LAST) == LY_LOSTORE_LAST) { |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 278 | /* overwrite last message */ |
| 279 | free(eitem->msg); |
| 280 | free(eitem->path); |
| 281 | free(eitem->apptag); |
| 282 | } else { |
| 283 | /* store new message */ |
| 284 | last = eitem->prev; |
| 285 | eitem->prev = malloc(sizeof *eitem); |
| 286 | LY_CHECK_GOTO(!eitem->prev, mem_fail); |
| 287 | eitem = eitem->prev; |
| 288 | eitem->prev = last; |
| 289 | eitem->next = NULL; |
| 290 | last->next = eitem; |
| 291 | } |
| 292 | |
| 293 | /* fill in the information */ |
| 294 | eitem->level = level; |
| 295 | eitem->no = no; |
| 296 | eitem->vecode = vecode; |
| 297 | eitem->msg = msg; |
| 298 | eitem->path = path; |
| 299 | eitem->apptag = apptag; |
| 300 | return LY_SUCCESS; |
| 301 | |
| 302 | mem_fail: |
| 303 | LOGMEM(NULL); |
| 304 | free(msg); |
| 305 | free(path); |
| 306 | free(apptag); |
| 307 | return LY_EMEM; |
| 308 | } |
| 309 | |
| 310 | static void |
| 311 | log_vprintf(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, LY_VECODE vecode, char *path, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 312 | const char *format, va_list args) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 313 | { |
| 314 | char *msg = NULL; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 315 | ly_bool free_strs; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 316 | |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 317 | if (level > ly_ll) { |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 318 | /* do not print or store the message */ |
| 319 | free(path); |
| 320 | return; |
| 321 | } |
| 322 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 323 | /* store the error/warning (if we need to store errors internally, it does not matter what are the user log options) */ |
Michal Vasko | ed94a29 | 2019-11-06 15:43:41 +0100 | [diff] [blame] | 324 | if ((level < LY_LLVRB) && ctx && (ly_log_opts & LY_LOSTORE)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 325 | assert(format); |
| 326 | if (vasprintf(&msg, format, args) == -1) { |
| 327 | LOGMEM(ctx); |
| 328 | free(path); |
| 329 | return; |
| 330 | } |
Radek Krejci | c9e64a6 | 2020-09-18 20:08:12 +0200 | [diff] [blame] | 331 | if (((no & ~LY_EPLUGIN) == LY_EVALID) && (vecode == LYVE_SUCCESS)) { |
| 332 | /* assume we are inheriting the error, so inherit vecode as well */ |
| 333 | vecode = ly_vecode(ctx); |
| 334 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 335 | if (log_store(ctx, level, no, vecode, msg, path, NULL)) { |
| 336 | return; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 337 | } |
| 338 | free_strs = 0; |
| 339 | } else { |
| 340 | if (vasprintf(&msg, format, args) == -1) { |
| 341 | LOGMEM(ctx); |
| 342 | free(path); |
| 343 | return; |
| 344 | } |
| 345 | free_strs = 1; |
| 346 | } |
| 347 | |
| 348 | /* if we are only storing errors internally, never print the message (yet) */ |
Michal Vasko | ed94a29 | 2019-11-06 15:43:41 +0100 | [diff] [blame] | 349 | if (ly_log_opts & LY_LOLOG) { |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 350 | if (log_clb) { |
| 351 | log_clb(level, msg, path); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 352 | } else { |
| 353 | fprintf(stderr, "libyang[%d]: %s%s", level, msg, path ? " " : "\n"); |
| 354 | if (path) { |
| 355 | fprintf(stderr, "(path: %s)\n", path); |
| 356 | } |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | if (free_strs) { |
| 361 | free(path); |
| 362 | free(msg); |
| 363 | } |
| 364 | } |
| 365 | |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 366 | #ifndef NDEBUG |
| 367 | |
| 368 | void |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 369 | ly_log_dbg(uint32_t group, const char *format, ...) |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 370 | { |
| 371 | char *dbg_format; |
| 372 | const char *str_group; |
| 373 | va_list ap; |
| 374 | |
Radek Krejci | 68433c9 | 2020-10-12 17:03:55 +0200 | [diff] [blame] | 375 | if (!(ly_ldbg_groups & group)) { |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 376 | return; |
| 377 | } |
| 378 | |
| 379 | switch (group) { |
| 380 | case LY_LDGDICT: |
| 381 | str_group = "DICT"; |
| 382 | break; |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 383 | case LY_LDGXPATH: |
| 384 | str_group = "XPATH"; |
| 385 | break; |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 386 | default: |
| 387 | LOGINT(NULL); |
| 388 | return; |
| 389 | } |
| 390 | |
| 391 | if (asprintf(&dbg_format, "%s: %s", str_group, format) == -1) { |
| 392 | LOGMEM(NULL); |
| 393 | return; |
| 394 | } |
| 395 | |
| 396 | va_start(ap, format); |
| 397 | log_vprintf(NULL, LY_LLDBG, 0, 0, NULL, dbg_format, ap); |
| 398 | va_end(ap); |
| 399 | } |
| 400 | |
| 401 | #endif |
| 402 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 403 | void |
| 404 | ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, const char *format, ...) |
| 405 | { |
| 406 | va_list ap; |
| 407 | |
| 408 | va_start(ap, format); |
| 409 | log_vprintf(ctx, level, no, 0, NULL, format, ap); |
| 410 | va_end(ap); |
| 411 | } |
| 412 | |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 413 | static LY_ERR |
Radek Krejci | c04f0a2 | 2018-09-21 15:49:45 +0200 | [diff] [blame] | 414 | ly_vlog_build_path(const struct ly_ctx *ctx, enum LY_VLOG_ELEM elem_type, const void *elem, char **path) |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 415 | { |
Radek Krejci | c04f0a2 | 2018-09-21 15:49:45 +0200 | [diff] [blame] | 416 | int rc; |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 417 | |
Radek Krejci | c04f0a2 | 2018-09-21 15:49:45 +0200 | [diff] [blame] | 418 | switch (elem_type) { |
| 419 | case LY_VLOG_STR: |
Michal Vasko | f6e5188 | 2019-12-16 09:59:45 +0100 | [diff] [blame] | 420 | *path = strdup(elem); |
Radek Krejci | c04f0a2 | 2018-09-21 15:49:45 +0200 | [diff] [blame] | 421 | LY_CHECK_ERR_RET(!(*path), LOGMEM(ctx), LY_EMEM); |
| 422 | break; |
| 423 | case LY_VLOG_LINE: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 424 | rc = asprintf(path, "Line number %" PRIu64 ".", *((uint64_t *)elem)); |
Radek Krejci | c04f0a2 | 2018-09-21 15:49:45 +0200 | [diff] [blame] | 425 | LY_CHECK_ERR_RET(rc == -1, LOGMEM(ctx), LY_EMEM); |
| 426 | break; |
Michal Vasko | f6e5188 | 2019-12-16 09:59:45 +0100 | [diff] [blame] | 427 | case LY_VLOG_LYSC: |
| 428 | *path = lysc_path(elem, LYSC_PATH_LOG, NULL, 0); |
| 429 | LY_CHECK_ERR_RET(!(*path), LOGMEM(ctx), LY_EMEM); |
| 430 | break; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 431 | case LY_VLOG_LYD: |
| 432 | *path = lyd_path(elem, LYD_PATH_LOG, NULL, 0); |
| 433 | LY_CHECK_ERR_RET(!(*path), LOGMEM(ctx), LY_EMEM); |
| 434 | break; |
Radek Krejci | c04f0a2 | 2018-09-21 15:49:45 +0200 | [diff] [blame] | 435 | default: |
| 436 | /* shouldn't be here */ |
| 437 | LOGINT_RET(ctx); |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 438 | } |
| 439 | |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 440 | return LY_SUCCESS; |
| 441 | } |
| 442 | |
| 443 | void |
| 444 | ly_vlog(const struct ly_ctx *ctx, enum LY_VLOG_ELEM elem_type, const void *elem, LY_VECODE code, const char *format, ...) |
| 445 | { |
| 446 | va_list ap; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 447 | char *path = NULL; |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 448 | const struct ly_err_item *first; |
| 449 | |
| 450 | if (path_flag && (elem_type != LY_VLOG_NONE)) { |
| 451 | if (elem_type == LY_VLOG_PREV) { |
| 452 | /* use previous path */ |
| 453 | first = ly_err_first(ctx); |
| 454 | if (first && first->prev->path) { |
| 455 | path = strdup(first->prev->path); |
| 456 | } |
| 457 | } else { |
| 458 | /* print path */ |
| 459 | if (!elem) { |
| 460 | /* top-level */ |
| 461 | path = strdup("/"); |
| 462 | } else { |
Radek Krejci | c04f0a2 | 2018-09-21 15:49:45 +0200 | [diff] [blame] | 463 | ly_vlog_build_path(ctx, elem_type, elem, &path); |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 464 | } |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | va_start(ap, format); |
| 469 | log_vprintf(ctx, LY_LLERR, LY_EVALID, code, path, format, ap); |
| 470 | /* path is spent and should not be freed! */ |
| 471 | va_end(ap); |
| 472 | } |
| 473 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 474 | API void |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 475 | lyext_log(const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no, const char *path, const char *format, ...) |
| 476 | { |
| 477 | va_list ap; |
| 478 | char *plugin_msg; |
| 479 | int ret; |
| 480 | |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 481 | if (ly_ll < level) { |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 482 | return; |
| 483 | } |
| 484 | ret = asprintf(&plugin_msg, "Extension plugin \"%s\": %s)", ext->def->plugin->id, format); |
| 485 | if (ret == -1) { |
Radek Krejci | 28681fa | 2019-09-06 13:08:45 +0200 | [diff] [blame] | 486 | LOGMEM(ext->module->ctx); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 487 | return; |
| 488 | } |
| 489 | |
| 490 | va_start(ap, format); |
Radek Krejci | a4614e6 | 2020-05-15 14:19:28 +0200 | [diff] [blame] | 491 | log_vprintf(ext->module->ctx, level, (level == LY_LLERR ? LY_EPLUGIN : 0) | err_no, LYVE_OTHER, path ? strdup(path) : NULL, plugin_msg, ap); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 492 | va_end(ap); |
| 493 | |
| 494 | free(plugin_msg); |
| 495 | } |
| 496 | |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 497 | /** |
| 498 | * @brief Exact same functionality as ::ly_err_print() but has variable arguments so va_start() can |
| 499 | * be used and an empty va_list created. |
| 500 | */ |
| 501 | static void |
| 502 | _ly_err_print(const struct ly_ctx *ctx, struct ly_err_item *eitem, ...) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 503 | { |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 504 | va_list ap; |
| 505 | char *path_dup = NULL; |
| 506 | |
| 507 | LY_CHECK_ARG_RET(ctx, eitem, ); |
| 508 | |
| 509 | if (eitem->path) { |
| 510 | /* duplicate path because it will be freed */ |
| 511 | path_dup = strdup(eitem->path); |
| 512 | LY_CHECK_ERR_RET(!path_dup, LOGMEM(ctx), ); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 513 | } |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 514 | |
| 515 | va_start(ap, eitem); |
| 516 | log_vprintf(ctx, eitem->level, eitem->no, eitem->vecode, eitem->path, eitem->msg, ap); |
| 517 | va_end(ap); |
| 518 | |
| 519 | if (path_dup) { |
| 520 | eitem->path = path_dup; |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | API void |
| 525 | ly_err_print(const struct ly_ctx *ctx, struct ly_err_item *eitem) |
| 526 | { |
| 527 | _ly_err_print(ctx, eitem); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 528 | } |