Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file log.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 4 | * @author Michal Vasko <mvasko@cesnet.cz> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 5 | * @brief Logger routines implementations |
| 6 | * |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 7 | * Copyright (c) 2015 - 2023 CESNET, z.s.p.o. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 8 | * |
| 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
| 12 | * |
| 13 | * https://opensource.org/licenses/BSD-3-Clause |
| 14 | */ |
| 15 | |
Christian Hopps | 32874e1 | 2021-05-01 09:43:54 -0400 | [diff] [blame] | 16 | #define _GNU_SOURCE /* asprintf, 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 | aa45bda | 2020-07-20 07:43:38 +0200 | [diff] [blame] | 29 | #include "compat.h" |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 30 | #include "in_internal.h" |
Michal Vasko | 8f702ee | 2024-02-20 15:44:24 +0100 | [diff] [blame] | 31 | #include "ly_common.h" |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 32 | #include "plugins_exts.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 33 | #include "set.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 34 | #include "tree_data.h" |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 35 | #include "tree_data_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 36 | #include "tree_schema.h" |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 37 | #include "tree_schema_internal.h" |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 38 | |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 39 | ATOMIC_T ly_ll = (uint_fast32_t)LY_LLWRN; |
| 40 | ATOMIC_T ly_log_opts = (uint_fast32_t)(LY_LOLOG | LY_LOSTORE_LAST); |
Michal Vasko | d4a6d04 | 2022-12-08 08:34:29 +0100 | [diff] [blame] | 41 | THREAD_LOCAL uint32_t *temp_ly_log_opts; |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 42 | static ly_log_clb log_clb; |
Michal Vasko | 236cbac | 2023-02-10 15:45:37 +0100 | [diff] [blame] | 43 | THREAD_LOCAL char last_msg[LY_LAST_MSG_SIZE]; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 44 | #ifndef NDEBUG |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 45 | ATOMIC_T ly_ldbg_groups = 0; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 46 | #endif |
| 47 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 48 | THREAD_LOCAL struct ly_log_location_s log_location = {0}; |
| 49 | |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 50 | LIBYANG_API_DEF const char * |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 51 | ly_strerr(LY_ERR err) |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 52 | { |
| 53 | /* ignore plugin flag */ |
| 54 | err &= ~LY_EPLUGIN; |
| 55 | |
| 56 | switch (err) { |
| 57 | case LY_SUCCESS: |
Michal Vasko | e420765 | 2023-07-10 14:57:32 +0200 | [diff] [blame] | 58 | return "Success"; |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 59 | case LY_EMEM: |
| 60 | return "Out of memory"; |
| 61 | case LY_ESYS: |
| 62 | return "System call failed"; |
| 63 | case LY_EINVAL: |
| 64 | return "Invalid value"; |
| 65 | case LY_EEXIST: |
| 66 | return "Already exists"; |
| 67 | case LY_ENOTFOUND: |
| 68 | return "Not found"; |
| 69 | case LY_EINT: |
| 70 | return "Internal error"; |
| 71 | case LY_EVALID: |
| 72 | return "Validation failed"; |
| 73 | case LY_EDENIED: |
| 74 | return "Operation denied"; |
| 75 | case LY_EINCOMPLETE: |
| 76 | return "Operation incomplete"; |
| 77 | case LY_ERECOMPILE: |
| 78 | return "Recompilation required"; |
| 79 | case LY_ENOT: |
| 80 | return "Negative result"; |
| 81 | case LY_EOTHER: |
| 82 | return "Another failure reason"; |
| 83 | case LY_EPLUGIN: |
| 84 | break; |
| 85 | } |
| 86 | |
| 87 | /* unreachable */ |
Michal Vasko | b87e9a1 | 2023-07-10 15:10:58 +0200 | [diff] [blame] | 88 | return "Unknown"; |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 89 | } |
| 90 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 91 | LIBYANG_API_DEF const char * |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 92 | ly_strvecode(LY_VECODE vecode) |
| 93 | { |
| 94 | switch (vecode) { |
| 95 | case LYVE_SUCCESS: |
Michal Vasko | e420765 | 2023-07-10 14:57:32 +0200 | [diff] [blame] | 96 | return "Success"; |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 97 | case LYVE_SYNTAX: |
| 98 | return "General syntax error"; |
| 99 | case LYVE_SYNTAX_YANG: |
| 100 | return "YANG syntax error"; |
| 101 | case LYVE_SYNTAX_YIN: |
| 102 | return "YIN syntax error"; |
| 103 | case LYVE_REFERENCE: |
| 104 | return "Reference error"; |
| 105 | case LYVE_XPATH: |
| 106 | return "XPath error"; |
| 107 | case LYVE_SEMANTICS: |
| 108 | return "Semantic error"; |
| 109 | case LYVE_SYNTAX_XML: |
| 110 | return "XML syntax error"; |
| 111 | case LYVE_SYNTAX_JSON: |
| 112 | return "JSON syntax error"; |
| 113 | case LYVE_DATA: |
| 114 | return "YANG data error"; |
| 115 | case LYVE_OTHER: |
| 116 | return "Another error"; |
| 117 | } |
| 118 | |
| 119 | /* unreachable */ |
Michal Vasko | b87e9a1 | 2023-07-10 15:10:58 +0200 | [diff] [blame] | 120 | return "Unknown"; |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | LIBYANG_API_DEF const char * |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 124 | ly_last_logmsg(void) |
Michal Vasko | b5b883c | 2023-07-10 10:36:18 +0200 | [diff] [blame] | 125 | { |
| 126 | return last_msg; |
| 127 | } |
| 128 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 129 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 130 | ly_err_new(struct ly_err_item **err, LY_ERR ecode, LY_VECODE vecode, char *data_path, char *apptag, |
| 131 | const char *err_format, ...) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 132 | { |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 133 | char *msg = NULL; |
| 134 | struct ly_err_item *e; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 135 | |
Radek Krejci | d43298b | 2021-03-25 16:17:15 +0100 | [diff] [blame] | 136 | if (!err || (ecode == LY_SUCCESS)) { |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 137 | /* nothing to do */ |
| 138 | return ecode; |
| 139 | } |
| 140 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 141 | e = calloc(1, sizeof *e); |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 142 | LY_CHECK_ERR_RET(!e, LOGMEM(NULL), LY_EMEM); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 143 | |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 144 | e->prev = (*err) ? (*err)->prev : e; |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 145 | if (*err) { |
| 146 | (*err)->prev->next = e; |
| 147 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 148 | |
| 149 | /* fill in the information */ |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 150 | e->level = LY_LLERR; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 151 | e->err = ecode; |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 152 | e->vecode = vecode; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 153 | e->data_path = data_path; |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 154 | e->apptag = apptag; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 155 | |
aPiecek | 6d61855 | 2021-06-18 10:02:59 +0200 | [diff] [blame] | 156 | if (err_format) { |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 157 | va_list print_args; |
| 158 | |
aPiecek | 6d61855 | 2021-06-18 10:02:59 +0200 | [diff] [blame] | 159 | va_start(print_args, err_format); |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 160 | |
aPiecek | 6d61855 | 2021-06-18 10:02:59 +0200 | [diff] [blame] | 161 | if (vasprintf(&msg, err_format, print_args) == -1) { |
| 162 | /* we don't have anything more to do, just set msg to NULL to avoid undefined content, |
Radek Krejci | db0ee02 | 2021-03-15 16:53:44 +0100 | [diff] [blame] | 163 | * still keep the information about the original error instead of LY_EMEM or other printf's error */ |
| 164 | msg = NULL; |
| 165 | } |
| 166 | |
| 167 | va_end(print_args); |
| 168 | } |
| 169 | e->msg = msg; |
| 170 | |
| 171 | if (!(*err)) { |
| 172 | *err = e; |
| 173 | } |
| 174 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 175 | return e->err; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 176 | } |
| 177 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 178 | /** |
| 179 | * @brief Get error record from error hash table of a context for the current thread. |
| 180 | * |
| 181 | * @param[in] ctx Context to use. |
| 182 | * @return Thread error record, if any. |
| 183 | */ |
| 184 | static struct ly_ctx_err_rec * |
| 185 | ly_err_get_rec(const struct ly_ctx *ctx) |
| 186 | { |
Michal Vasko | 4cca009 | 2023-03-30 13:20:53 +0200 | [diff] [blame] | 187 | struct ly_ctx_err_rec rec, *match; |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 188 | |
| 189 | /* prepare record */ |
| 190 | rec.tid = pthread_self(); |
| 191 | |
Michal Vasko | 2addf21 | 2024-08-16 15:48:36 +0200 | [diff] [blame] | 192 | /* reuse lock */ |
| 193 | /* LOCK */ |
| 194 | pthread_mutex_lock((pthread_mutex_t *)&ctx->lyb_hash_lock); |
| 195 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 196 | /* get the pointer to the matching record */ |
Michal Vasko | 2addf21 | 2024-08-16 15:48:36 +0200 | [diff] [blame] | 197 | lyht_find(ctx->err_ht, &rec, lyht_hash((void *)&rec.tid, sizeof rec.tid), (void **)&match); |
| 198 | |
| 199 | /* UNLOCK */ |
| 200 | pthread_mutex_unlock((pthread_mutex_t *)&ctx->lyb_hash_lock); |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 201 | |
| 202 | return match; |
| 203 | } |
| 204 | |
Michal Vasko | e0be745 | 2023-03-30 13:35:35 +0200 | [diff] [blame] | 205 | /** |
| 206 | * @brief Insert new error record to error hash table of a context for the current thread. |
| 207 | * |
| 208 | * @param[in] ctx Context to use. |
| 209 | * @return Thread error record. |
| 210 | */ |
| 211 | static struct ly_ctx_err_rec * |
| 212 | ly_err_new_rec(const struct ly_ctx *ctx) |
| 213 | { |
| 214 | struct ly_ctx_err_rec new, *rec; |
| 215 | LY_ERR r; |
| 216 | |
| 217 | /* insert a new record */ |
| 218 | new.err = NULL; |
| 219 | new.tid = pthread_self(); |
| 220 | |
| 221 | /* reuse lock */ |
| 222 | /* LOCK */ |
| 223 | pthread_mutex_lock((pthread_mutex_t *)&ctx->lyb_hash_lock); |
| 224 | |
Michal Vasko | ae130f5 | 2023-04-20 14:25:16 +0200 | [diff] [blame] | 225 | r = lyht_insert(ctx->err_ht, &new, lyht_hash((void *)&new.tid, sizeof new.tid), (void **)&rec); |
Michal Vasko | e0be745 | 2023-03-30 13:35:35 +0200 | [diff] [blame] | 226 | |
| 227 | /* UNLOCK */ |
| 228 | pthread_mutex_unlock((pthread_mutex_t *)&ctx->lyb_hash_lock); |
| 229 | |
| 230 | return r ? NULL : rec; |
| 231 | } |
| 232 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 233 | LIBYANG_API_DEF const struct ly_err_item * |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 234 | ly_err_first(const struct ly_ctx *ctx) |
| 235 | { |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 236 | struct ly_ctx_err_rec *rec; |
| 237 | |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 238 | LY_CHECK_ARG_RET(NULL, ctx, NULL); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 239 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 240 | /* get the pointer to the matching record */ |
| 241 | rec = ly_err_get_rec(ctx); |
| 242 | |
| 243 | return rec ? rec->err : NULL; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 244 | } |
| 245 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 246 | LIBYANG_API_DEF const struct ly_err_item * |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 247 | ly_err_last(const struct ly_ctx *ctx) |
| 248 | { |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 249 | struct ly_ctx_err_rec *rec; |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 250 | |
| 251 | LY_CHECK_ARG_RET(NULL, ctx, NULL); |
| 252 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 253 | /* get the pointer to the matching record */ |
| 254 | if (!(rec = ly_err_get_rec(ctx))) { |
| 255 | return NULL; |
| 256 | } |
| 257 | |
| 258 | return rec->err ? rec->err->prev : NULL; |
Radek Krejci | 572ee60 | 2020-09-16 14:35:08 +0200 | [diff] [blame] | 259 | } |
| 260 | |
Michal Vasko | 9dbb91d | 2023-01-30 13:59:22 +0100 | [diff] [blame] | 261 | void |
| 262 | ly_err_move(struct ly_ctx *src_ctx, struct ly_ctx *trg_ctx) |
| 263 | { |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 264 | struct ly_ctx_err_rec *rec; |
| 265 | struct ly_err_item *err = NULL; |
Michal Vasko | 9dbb91d | 2023-01-30 13:59:22 +0100 | [diff] [blame] | 266 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 267 | /* get and remove the errors from src */ |
| 268 | rec = ly_err_get_rec(src_ctx); |
| 269 | if (rec) { |
| 270 | err = rec->err; |
| 271 | rec->err = NULL; |
| 272 | } |
Michal Vasko | 9dbb91d | 2023-01-30 13:59:22 +0100 | [diff] [blame] | 273 | |
| 274 | /* set them for trg */ |
Michal Vasko | e0be745 | 2023-03-30 13:35:35 +0200 | [diff] [blame] | 275 | if (!(rec = ly_err_get_rec(trg_ctx))) { |
| 276 | if (!(rec = ly_err_new_rec(trg_ctx))) { |
| 277 | LOGINT(NULL); |
| 278 | ly_err_free(err); |
| 279 | return; |
| 280 | } |
| 281 | } |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 282 | ly_err_free(rec->err); |
| 283 | rec->err = err; |
Michal Vasko | 9dbb91d | 2023-01-30 13:59:22 +0100 | [diff] [blame] | 284 | } |
| 285 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 286 | LIBYANG_API_DEF void |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 287 | ly_err_free(void *ptr) |
| 288 | { |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 289 | struct ly_err_item *e, *next; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 290 | |
| 291 | /* clean the error list */ |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 292 | LY_LIST_FOR_SAFE(ptr, next, e) { |
| 293 | free(e->msg); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 294 | free(e->data_path); |
| 295 | free(e->schema_path); |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 296 | free(e->apptag); |
| 297 | free(e); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 298 | } |
| 299 | } |
| 300 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 301 | LIBYANG_API_DEF void |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 302 | ly_err_clean(struct ly_ctx *ctx, struct ly_err_item *eitem) |
| 303 | { |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 304 | struct ly_ctx_err_rec *rec; |
| 305 | struct ly_err_item *e; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 306 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 307 | if (!(rec = ly_err_get_rec(ctx))) { |
| 308 | return; |
| 309 | } |
| 310 | if (rec->err == eitem) { |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 311 | eitem = NULL; |
| 312 | } |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 313 | |
| 314 | if (!eitem) { |
| 315 | /* free all err */ |
| 316 | ly_err_free(rec->err); |
| 317 | rec->err = NULL; |
| 318 | } else { |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 319 | /* disconnect the error */ |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 320 | for (e = rec->err; e && (e->next != eitem); e = e->next) {} |
| 321 | assert(e); |
| 322 | e->next = NULL; |
| 323 | rec->err->prev = e; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 324 | /* free this err and newer */ |
| 325 | ly_err_free(eitem); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 326 | } |
| 327 | } |
| 328 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 329 | LIBYANG_API_DEF LY_LOG_LEVEL |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 330 | ly_log_level(LY_LOG_LEVEL level) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 331 | { |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 332 | LY_LOG_LEVEL prev = ATOMIC_LOAD_RELAXED(ly_ll); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 333 | |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 334 | ATOMIC_STORE_RELAXED(ly_ll, level); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 335 | return prev; |
| 336 | } |
| 337 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 338 | LIBYANG_API_DEF uint32_t |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 339 | ly_log_options(uint32_t opts) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 340 | { |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 341 | uint32_t prev = ATOMIC_LOAD_RELAXED(ly_log_opts); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 342 | |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 343 | ATOMIC_STORE_RELAXED(ly_log_opts, opts); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 344 | return prev; |
| 345 | } |
| 346 | |
Michal Vasko | 52da51d | 2024-01-30 16:09:19 +0100 | [diff] [blame] | 347 | LIBYANG_API_DEF uint32_t * |
Michal Vasko | d4a6d04 | 2022-12-08 08:34:29 +0100 | [diff] [blame] | 348 | ly_temp_log_options(uint32_t *opts) |
| 349 | { |
Michal Vasko | 52da51d | 2024-01-30 16:09:19 +0100 | [diff] [blame] | 350 | uint32_t *prev_lo = temp_ly_log_opts; |
| 351 | |
Michal Vasko | d4a6d04 | 2022-12-08 08:34:29 +0100 | [diff] [blame] | 352 | temp_ly_log_opts = opts; |
Michal Vasko | 52da51d | 2024-01-30 16:09:19 +0100 | [diff] [blame] | 353 | |
| 354 | return prev_lo; |
Michal Vasko | d4a6d04 | 2022-12-08 08:34:29 +0100 | [diff] [blame] | 355 | } |
| 356 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 357 | LIBYANG_API_DEF uint32_t |
Radek Krejci | 68433c9 | 2020-10-12 17:03:55 +0200 | [diff] [blame] | 358 | ly_log_dbg_groups(uint32_t dbg_groups) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 359 | { |
| 360 | #ifndef NDEBUG |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 361 | uint32_t prev = ATOMIC_LOAD_RELAXED(ly_ldbg_groups); |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 362 | |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 363 | ATOMIC_STORE_RELAXED(ly_ldbg_groups, dbg_groups); |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 364 | return prev; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 365 | #else |
| 366 | (void)dbg_groups; |
Radek Krejci | ebdaed0 | 2020-11-09 13:05:06 +0100 | [diff] [blame] | 367 | return 0; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 368 | #endif |
| 369 | } |
| 370 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 371 | LIBYANG_API_DEF void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 372 | ly_set_log_clb(ly_log_clb clb) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 373 | { |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 374 | log_clb = clb; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 375 | } |
| 376 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 377 | LIBYANG_API_DEF ly_log_clb |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 378 | ly_get_log_clb(void) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 379 | { |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 380 | return log_clb; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 381 | } |
| 382 | |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 383 | void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 384 | ly_log_location(const struct lysc_node *scnode, const struct lyd_node *dnode, const char *spath, const struct ly_in *in) |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 385 | { |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 386 | if (scnode) { |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 387 | ly_set_add(&log_location.scnodes, (void *)scnode, 1, NULL); |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 388 | } |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 389 | if (dnode || (!scnode && !spath && !in)) { |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 390 | ly_set_add(&log_location.dnodes, (void *)dnode, 1, NULL); |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 391 | } |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 392 | if (spath) { |
| 393 | char *s = strdup(spath); |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 394 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 395 | LY_CHECK_ERR_RET(!s, LOGMEM(NULL), ); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 396 | ly_set_add(&log_location.spaths, s, 1, NULL); |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 397 | } |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 398 | if (in) { |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 399 | ly_set_add(&log_location.inputs, (void *)in, 1, NULL); |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 400 | } |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 404 | ly_log_location_revert(uint32_t scnode_steps, uint32_t dnode_steps, uint32_t spath_steps, uint32_t in_steps) |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 405 | { |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 406 | for (uint32_t i = scnode_steps; i && log_location.scnodes.count; i--) { |
| 407 | log_location.scnodes.count--; |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 408 | } |
| 409 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 410 | for (uint32_t i = dnode_steps; i && log_location.dnodes.count; i--) { |
| 411 | log_location.dnodes.count--; |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 412 | } |
| 413 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 414 | for (uint32_t i = spath_steps; i && log_location.spaths.count; i--) { |
| 415 | ly_set_rm_index(&log_location.spaths, log_location.spaths.count - 1, free); |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 416 | } |
| 417 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 418 | for (uint32_t i = in_steps; i && log_location.inputs.count; i--) { |
| 419 | log_location.inputs.count--; |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 420 | } |
| 421 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 422 | /* deallocate the empty sets */ |
| 423 | if (scnode_steps && !log_location.scnodes.count) { |
| 424 | ly_set_erase(&log_location.scnodes, NULL); |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 425 | } |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 426 | if (dnode_steps && !log_location.dnodes.count) { |
| 427 | ly_set_erase(&log_location.dnodes, NULL); |
| 428 | } |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 429 | if (spath_steps && !log_location.spaths.count) { |
| 430 | ly_set_erase(&log_location.spaths, free); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 431 | } |
| 432 | if (in_steps && !log_location.inputs.count) { |
| 433 | ly_set_erase(&log_location.inputs, NULL); |
Radek Krejci | addfc9a | 2020-12-17 20:46:35 +0100 | [diff] [blame] | 434 | } |
| 435 | } |
| 436 | |
Michal Vasko | a878a89 | 2023-08-18 12:22:07 +0200 | [diff] [blame] | 437 | const struct lyd_node * |
| 438 | ly_log_location_dnode(uint32_t idx) |
| 439 | { |
| 440 | if (idx < log_location.dnodes.count) { |
| 441 | return log_location.dnodes.dnodes[idx]; |
| 442 | } |
| 443 | |
| 444 | return NULL; |
| 445 | } |
| 446 | |
| 447 | uint32_t |
| 448 | ly_log_location_dnode_count(void) |
| 449 | { |
| 450 | return log_location.dnodes.count; |
| 451 | } |
| 452 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 453 | /** |
| 454 | * @brief Store generated error in a context. |
| 455 | * |
| 456 | * @param[in] ctx Context to use. |
| 457 | * @param[in] level Message log level. |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 458 | * @param[in] err Error number. |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 459 | * @param[in] vecode Error validation error code. |
| 460 | * @param[in] msg Error message, always spent. |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 461 | * @param[in] data_path Error data path, always spent. |
| 462 | * @param[in] schema_path Error schema path, always spent. |
| 463 | * @param[in] line Error input line, if any. |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 464 | * @param[in] apptag Error app tag, always spent. |
| 465 | * @return LY_ERR value. |
| 466 | */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 467 | static LY_ERR |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 468 | log_store(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR err, LY_VECODE vecode, char *msg, char *data_path, |
| 469 | char *schema_path, uint64_t line, char *apptag) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 470 | { |
Michal Vasko | e0be745 | 2023-03-30 13:35:35 +0200 | [diff] [blame] | 471 | struct ly_ctx_err_rec *rec; |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 472 | struct ly_err_item *e, *last; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 473 | |
| 474 | assert(ctx && (level < LY_LLVRB)); |
| 475 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 476 | if (!(rec = ly_err_get_rec(ctx))) { |
Michal Vasko | e0be745 | 2023-03-30 13:35:35 +0200 | [diff] [blame] | 477 | if (!(rec = ly_err_new_rec(ctx))) { |
| 478 | goto mem_fail; |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 479 | } |
| 480 | } |
| 481 | |
| 482 | e = rec->err; |
| 483 | if (!e) { |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 484 | /* if we are only to fill in path, there must have been an error stored */ |
| 485 | assert(msg); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 486 | e = calloc(1, sizeof *e); |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 487 | LY_CHECK_GOTO(!e, mem_fail); |
| 488 | e->prev = e; |
| 489 | e->next = NULL; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 490 | |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 491 | rec->err = e; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 492 | } else if (!msg) { |
| 493 | /* only filling the path */ |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 494 | assert(data_path || schema_path); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 495 | |
| 496 | /* find last error */ |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 497 | e = e->prev; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 498 | do { |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 499 | if (e->level == LY_LLERR) { |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 500 | /* fill the path */ |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 501 | if (data_path) { |
| 502 | free(e->data_path); |
| 503 | e->data_path = data_path; |
| 504 | } else { |
| 505 | free(e->schema_path); |
| 506 | e->schema_path = schema_path; |
| 507 | } |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 508 | return LY_SUCCESS; |
| 509 | } |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 510 | e = e->prev; |
| 511 | } while (e->prev->next); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 512 | /* last error was not found */ |
| 513 | assert(0); |
Michal Vasko | d4a6d04 | 2022-12-08 08:34:29 +0100 | [diff] [blame] | 514 | } else if ((temp_ly_log_opts && ((*temp_ly_log_opts & LY_LOSTORE_LAST) == LY_LOSTORE_LAST)) || |
| 515 | (!temp_ly_log_opts && ((ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOSTORE_LAST) == LY_LOSTORE_LAST))) { |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 516 | /* overwrite last message */ |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 517 | free(e->msg); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 518 | free(e->data_path); |
| 519 | free(e->schema_path); |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 520 | free(e->apptag); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 521 | } else { |
| 522 | /* store new message */ |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 523 | last = e->prev; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 524 | e->prev = calloc(1, sizeof *e); |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 525 | LY_CHECK_GOTO(!e->prev, mem_fail); |
| 526 | e = e->prev; |
| 527 | e->prev = last; |
| 528 | e->next = NULL; |
| 529 | last->next = e; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | /* fill in the information */ |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 533 | e->level = level; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 534 | e->err = err; |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 535 | e->vecode = vecode; |
| 536 | e->msg = msg; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 537 | e->data_path = data_path; |
| 538 | e->schema_path = schema_path; |
| 539 | e->line = line; |
Michal Vasko | 88ccd58 | 2023-03-30 11:50:57 +0200 | [diff] [blame] | 540 | e->apptag = apptag; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 541 | return LY_SUCCESS; |
| 542 | |
| 543 | mem_fail: |
| 544 | LOGMEM(NULL); |
| 545 | free(msg); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 546 | free(data_path); |
| 547 | free(schema_path); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 548 | free(apptag); |
| 549 | return LY_EMEM; |
| 550 | } |
| 551 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 552 | /** |
| 553 | * @brief Log data path/schema path/line to stderr after the message has been printed. |
| 554 | * |
| 555 | * @param[in] data_path Error data path. |
| 556 | * @param[in] schema_path Error schema path. |
| 557 | * @param[in] line Error input line. |
| 558 | */ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 559 | static void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 560 | log_stderr_path_line(const char *data_path, const char *schema_path, uint64_t line) |
| 561 | { |
| 562 | ly_bool par = 0; |
| 563 | |
| 564 | if (data_path) { |
| 565 | fprintf(stderr, "%sdata path: %s", " (", data_path); |
| 566 | par = 1; |
| 567 | } |
| 568 | |
| 569 | if (schema_path) { |
| 570 | fprintf(stderr, "%sschemadata path: %s", par ? ", " : " (", schema_path); |
| 571 | par = 1; |
| 572 | } |
| 573 | |
| 574 | if (line) { |
| 575 | fprintf(stderr, "%sline: %" PRIu64, par ? ", " : " (", line); |
| 576 | par = 1; |
| 577 | } |
| 578 | |
| 579 | fprintf(stderr, par ? ")\n" : "\n"); |
| 580 | } |
| 581 | |
| 582 | /** |
| 583 | * @brief Log a message. |
| 584 | * |
| 585 | * @param[in] ctx Context to use. |
| 586 | * @param[in] level Message log level. |
| 587 | * @param[in] err Error number. |
| 588 | * @param[in] vecode Error validation error code. |
| 589 | * @param[in] data_path Error data path, always spent. |
| 590 | * @param[in] schema_path Error schema path, always spent. |
| 591 | * @param[in] line Error input line, if any. |
| 592 | * @param[in] apptag Error app tag. |
| 593 | * @param[in] format Error message format. |
| 594 | * @param[in] args Error message format arguments. |
| 595 | */ |
| 596 | static void |
| 597 | log_vprintf(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR err, LY_VECODE vecode, char *data_path, |
| 598 | char *schema_path, uint64_t line, const char *apptag, const char *format, va_list args) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 599 | { |
Michal Vasko | 74cc126 | 2024-04-12 11:10:53 +0200 | [diff] [blame] | 600 | char *dyn_msg = NULL; |
| 601 | const char *msg; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 602 | ly_bool free_strs = 1, lolog, lostore; |
Michal Vasko | d4a6d04 | 2022-12-08 08:34:29 +0100 | [diff] [blame] | 603 | |
| 604 | /* learn effective logger options */ |
| 605 | if (temp_ly_log_opts) { |
| 606 | lolog = *temp_ly_log_opts & LY_LOLOG; |
| 607 | lostore = *temp_ly_log_opts & LY_LOSTORE; |
| 608 | } else { |
| 609 | lolog = ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOLOG; |
| 610 | lostore = ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOSTORE; |
| 611 | } |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 612 | |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 613 | if (level > ATOMIC_LOAD_RELAXED(ly_ll)) { |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 614 | /* do not print or store the message */ |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 615 | goto cleanup; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 616 | } |
| 617 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 618 | if (err == LY_EMEM) { |
Michal Vasko | 74cc126 | 2024-04-12 11:10:53 +0200 | [diff] [blame] | 619 | /* no not use more dynamic memory */ |
| 620 | vsnprintf(last_msg, LY_LAST_MSG_SIZE, format, args); |
| 621 | msg = last_msg; |
| 622 | } else { |
| 623 | /* print into a single message */ |
| 624 | if (vasprintf(&dyn_msg, format, args) == -1) { |
| 625 | LOGMEM(ctx); |
| 626 | goto cleanup; |
Michal Vasko | 5a01692 | 2021-05-07 08:19:15 +0200 | [diff] [blame] | 627 | } |
Michal Vasko | 74cc126 | 2024-04-12 11:10:53 +0200 | [diff] [blame] | 628 | msg = dyn_msg; |
Michal Vasko | 5a01692 | 2021-05-07 08:19:15 +0200 | [diff] [blame] | 629 | |
Michal Vasko | 74cc126 | 2024-04-12 11:10:53 +0200 | [diff] [blame] | 630 | /* store as the last message */ |
| 631 | strncpy(last_msg, msg, LY_LAST_MSG_SIZE - 1); |
Michal Vasko | 236cbac | 2023-02-10 15:45:37 +0100 | [diff] [blame] | 632 | } |
| 633 | |
Michal Vasko | 236cbac | 2023-02-10 15:45:37 +0100 | [diff] [blame] | 634 | /* store the error/warning in the context (if we need to store errors internally, it does not matter what are |
Michal Vasko | 74cc126 | 2024-04-12 11:10:53 +0200 | [diff] [blame] | 635 | * the user log options), if the message is not dynamic, it would most likely fail to store (no memory) */ |
| 636 | if ((level < LY_LLVRB) && ctx && lostore && dyn_msg) { |
Michal Vasko | fcd168e | 2024-02-27 09:16:21 +0100 | [diff] [blame] | 637 | free_strs = 0; |
Michal Vasko | 74cc126 | 2024-04-12 11:10:53 +0200 | [diff] [blame] | 638 | if (log_store(ctx, level, err, vecode, dyn_msg, data_path, schema_path, line, apptag ? strdup(apptag) : NULL)) { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 639 | goto cleanup; |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 640 | } |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | /* if we are only storing errors internally, never print the message (yet) */ |
Michal Vasko | d4a6d04 | 2022-12-08 08:34:29 +0100 | [diff] [blame] | 644 | if (lolog) { |
Michal Vasko | d808561 | 2020-08-21 12:55:23 +0200 | [diff] [blame] | 645 | if (log_clb) { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 646 | log_clb(level, msg, data_path, schema_path, line); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 647 | } else { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 648 | fprintf(stderr, "libyang[%d]: ", level); |
| 649 | fprintf(stderr, "%s", msg); |
| 650 | log_stderr_path_line(data_path, schema_path, line); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 651 | } |
| 652 | } |
| 653 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 654 | cleanup: |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 655 | if (free_strs) { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 656 | free(data_path); |
| 657 | free(schema_path); |
Michal Vasko | 74cc126 | 2024-04-12 11:10:53 +0200 | [diff] [blame] | 658 | free(dyn_msg); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 659 | } |
| 660 | } |
| 661 | |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 662 | #ifndef NDEBUG |
| 663 | |
| 664 | void |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 665 | ly_log_dbg(uint32_t group, const char *format, ...) |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 666 | { |
| 667 | char *dbg_format; |
| 668 | const char *str_group; |
| 669 | va_list ap; |
| 670 | |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 671 | if (!(ATOMIC_LOAD_RELAXED(ly_ldbg_groups) & group)) { |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 672 | return; |
| 673 | } |
| 674 | |
| 675 | switch (group) { |
| 676 | case LY_LDGDICT: |
| 677 | str_group = "DICT"; |
| 678 | break; |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 679 | case LY_LDGXPATH: |
| 680 | str_group = "XPATH"; |
| 681 | break; |
Michal Vasko | e558f79 | 2021-07-28 08:20:15 +0200 | [diff] [blame] | 682 | case LY_LDGDEPSETS: |
| 683 | str_group = "DEPSETS"; |
| 684 | break; |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 685 | default: |
| 686 | LOGINT(NULL); |
| 687 | return; |
| 688 | } |
| 689 | |
| 690 | if (asprintf(&dbg_format, "%s: %s", str_group, format) == -1) { |
| 691 | LOGMEM(NULL); |
| 692 | return; |
| 693 | } |
| 694 | |
| 695 | va_start(ap, format); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 696 | log_vprintf(NULL, LY_LLDBG, 0, 0, NULL, NULL, 0, NULL, dbg_format, ap); |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 697 | va_end(ap); |
aPiecek | d6d2c04 | 2023-06-02 08:31:43 +0200 | [diff] [blame] | 698 | |
| 699 | free(dbg_format); |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | #endif |
| 703 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 704 | void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 705 | ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR err, const char *format, ...) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 706 | { |
| 707 | va_list ap; |
| 708 | |
| 709 | va_start(ap, format); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 710 | log_vprintf(ctx, level, err, 0, NULL, NULL, 0, NULL, format, ap); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 711 | va_end(ap); |
| 712 | } |
| 713 | |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 714 | /** |
| 715 | * @brief Append a schema node name to a generated data path, only if it fits. |
| 716 | * |
| 717 | * @param[in,out] str Generated path to update. |
| 718 | * @param[in] snode Schema node to append. |
| 719 | * @param[in] parent Last printed data node. |
| 720 | * @return LY_ERR value. |
| 721 | */ |
| 722 | static LY_ERR |
| 723 | ly_vlog_build_path_append(char **str, const struct lysc_node *snode, const struct lyd_node *parent) |
| 724 | { |
| 725 | const struct lys_module *mod, *prev_mod; |
| 726 | uint32_t len, new_len; |
| 727 | void *mem; |
| 728 | |
| 729 | if (snode->nodetype & (LYS_CHOICE | LYS_CASE)) { |
| 730 | /* schema-only node */ |
| 731 | return LY_SUCCESS; |
Michal Vasko | ccd1fa6 | 2023-08-17 09:15:46 +0200 | [diff] [blame] | 732 | } else if (lysc_data_parent(snode) != lyd_node_schema(parent)) { |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 733 | /* not a direct descendant node */ |
| 734 | return LY_SUCCESS; |
| 735 | } |
| 736 | |
| 737 | /* get module to print, if any */ |
| 738 | mod = snode->module; |
Michal Vasko | 420cc25 | 2023-08-24 08:14:24 +0200 | [diff] [blame] | 739 | prev_mod = lyd_node_module(parent); |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 740 | if (prev_mod == mod) { |
| 741 | mod = NULL; |
| 742 | } |
| 743 | |
| 744 | /* realloc string */ |
Michal Vasko | 0320543 | 2023-09-11 10:29:49 +0200 | [diff] [blame] | 745 | len = *str ? strlen(*str) : 0; |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 746 | new_len = len + 1 + (mod ? strlen(mod->name) + 1 : 0) + strlen(snode->name); |
| 747 | mem = realloc(*str, new_len + 1); |
| 748 | LY_CHECK_ERR_RET(!mem, LOGMEM(LYD_CTX(parent)), LY_EMEM); |
| 749 | *str = mem; |
| 750 | |
| 751 | /* print the last schema node */ |
| 752 | sprintf(*str + len, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "", snode->name); |
| 753 | return LY_SUCCESS; |
| 754 | } |
| 755 | |
Michal Vasko | cd9c00b | 2023-09-11 10:29:28 +0200 | [diff] [blame] | 756 | LY_ERR |
| 757 | ly_vlog_build_data_path(const struct ly_ctx *ctx, char **path) |
| 758 | { |
| 759 | LY_ERR rc = LY_SUCCESS; |
| 760 | const struct lyd_node *dnode = NULL; |
| 761 | |
| 762 | *path = NULL; |
| 763 | |
| 764 | if (log_location.dnodes.count) { |
| 765 | dnode = log_location.dnodes.objs[log_location.dnodes.count - 1]; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 766 | if (!dnode) { |
| 767 | /* special root node */ |
| 768 | assert(log_location.dnodes.count == 1); |
| 769 | *path = strdup("/"); |
| 770 | LY_CHECK_ERR_GOTO(!*path, LOGMEM(ctx); rc = LY_EMEM, cleanup); |
| 771 | goto cleanup; |
| 772 | } |
| 773 | |
Michal Vasko | cd9c00b | 2023-09-11 10:29:28 +0200 | [diff] [blame] | 774 | if (dnode->parent || !lysc_data_parent(dnode->schema)) { |
| 775 | /* data node with all of its parents */ |
| 776 | *path = lyd_path(log_location.dnodes.objs[log_location.dnodes.count - 1], LYD_PATH_STD, NULL, 0); |
| 777 | LY_CHECK_ERR_GOTO(!*path, LOGMEM(ctx); rc = LY_EMEM, cleanup); |
| 778 | } else { |
| 779 | /* data parsers put all the parent nodes in the set, but they are not connected */ |
| 780 | *path = lyd_path_set(&log_location.dnodes, LYD_PATH_STD); |
| 781 | LY_CHECK_ERR_GOTO(!*path, LOGMEM(ctx); rc = LY_EMEM, cleanup); |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | /* sometimes the last node is not created yet and we only have the schema node */ |
| 786 | if (log_location.scnodes.count) { |
| 787 | rc = ly_vlog_build_path_append(path, log_location.scnodes.objs[log_location.scnodes.count - 1], dnode); |
| 788 | LY_CHECK_GOTO(rc, cleanup); |
| 789 | } |
| 790 | |
| 791 | cleanup: |
| 792 | if (rc) { |
| 793 | free(*path); |
| 794 | *path = NULL; |
| 795 | } |
| 796 | return rc; |
| 797 | } |
| 798 | |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 799 | /** |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 800 | * @brief Build log path/input line from the stored log location information. |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 801 | * |
| 802 | * @param[in] ctx Context to use. |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 803 | * @param[out] data_path Generated data path. |
| 804 | * @param[out] schema_path Generated data path. |
| 805 | * @param[out] line Input line. |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 806 | * @return LY_ERR value. |
| 807 | */ |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 808 | static LY_ERR |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 809 | ly_vlog_build_path_line(const struct ly_ctx *ctx, char **data_path, char **schema_path, uint64_t *line) |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 810 | { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 811 | *data_path = NULL; |
| 812 | *schema_path = NULL; |
| 813 | *line = 0; |
Radek Krejci | cb3e647 | 2021-01-06 08:19:01 +0100 | [diff] [blame] | 814 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 815 | if (log_location.spaths.count && ((const char *)(log_location.spaths.objs[log_location.spaths.count - 1]))[0]) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 816 | /* simply get what is in the provided path string */ |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 817 | *schema_path = strdup(log_location.spaths.objs[log_location.spaths.count - 1]); |
| 818 | LY_CHECK_ERR_RET(!*schema_path, LOGMEM(ctx), LY_EMEM); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 819 | } else { |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 820 | /* data/schema node */ |
| 821 | if (log_location.dnodes.count) { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 822 | LY_CHECK_RET(ly_vlog_build_data_path(ctx, data_path)); |
Michal Vasko | dbf3e65 | 2022-10-21 08:46:25 +0200 | [diff] [blame] | 823 | } else if (log_location.scnodes.count) { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 824 | *schema_path = lysc_path(log_location.scnodes.objs[log_location.scnodes.count - 1], LYSC_PATH_LOG, NULL, 0); |
| 825 | LY_CHECK_ERR_RET(!*schema_path, LOGMEM(ctx), LY_EMEM); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 826 | } |
Michal Vasko | 273727c | 2023-09-11 10:30:08 +0200 | [diff] [blame] | 827 | } |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 828 | |
Michal Vasko | 273727c | 2023-09-11 10:30:08 +0200 | [diff] [blame] | 829 | /* line */ |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 830 | if (log_location.inputs.count) { |
| 831 | *line = ((struct ly_in *)log_location.inputs.objs[log_location.inputs.count - 1])->line; |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 832 | } |
| 833 | |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 834 | return LY_SUCCESS; |
| 835 | } |
| 836 | |
| 837 | void |
Michal Vasko | e9391c7 | 2021-10-05 10:04:56 +0200 | [diff] [blame] | 838 | ly_vlog(const struct ly_ctx *ctx, const char *apptag, LY_VECODE code, const char *format, ...) |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 839 | { |
| 840 | va_list ap; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 841 | char *data_path = NULL, *schema_path = NULL; |
| 842 | uint64_t line = 0; |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 843 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 844 | if (ctx) { |
| 845 | ly_vlog_build_path_line(ctx, &data_path, &schema_path, &line); |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 846 | } |
| 847 | |
| 848 | va_start(ap, format); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 849 | log_vprintf(ctx, LY_LLERR, LY_EVALID, code, data_path, schema_path, line, apptag, format, ap); |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 850 | /* path is spent and should not be freed! */ |
| 851 | va_end(ap); |
| 852 | } |
| 853 | |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 854 | /** |
| 855 | * @brief Print a log message from an extension plugin callback. |
| 856 | * |
| 857 | * @param[in] ctx libyang context to store the error record. If not provided, the error is just printed. |
| 858 | * @param[in] plugin_name Name of the plugin generating the message. |
| 859 | * @param[in] level Log message level (error, warning, etc.) |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 860 | * @param[in] err Error type code. |
| 861 | * @param[in] data_path Error data path, always spent. |
| 862 | * @param[in] schema_path Error schema path, always spent. |
| 863 | * @param[in] line Error input line, if any. |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 864 | * @param[in] format Format string to print. |
| 865 | * @param[in] ap Var arg list for @p format. |
| 866 | */ |
| 867 | static void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 868 | ly_ext_log(const struct ly_ctx *ctx, const char *plugin_name, LY_LOG_LEVEL level, LY_ERR err, char *data_path, |
| 869 | char *schema_path, uint64_t line, const char *format, va_list ap) |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 870 | { |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 871 | char *plugin_msg; |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 872 | |
Václav Kubernát | d367ad9 | 2021-11-29 09:28:56 +0100 | [diff] [blame] | 873 | if (ATOMIC_LOAD_RELAXED(ly_ll) < level) { |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 874 | return; |
| 875 | } |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 876 | if (asprintf(&plugin_msg, "Ext plugin \"%s\": %s", plugin_name, format) == -1) { |
| 877 | LOGMEM(ctx); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 878 | return; |
| 879 | } |
| 880 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 881 | log_vprintf(ctx, level, (level == LY_LLERR ? LY_EPLUGIN : 0) | err, LYVE_OTHER, data_path, schema_path, line, NULL, |
| 882 | plugin_msg, ap); |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 883 | free(plugin_msg); |
| 884 | } |
| 885 | |
| 886 | LIBYANG_API_DEF void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 887 | lyplg_ext_parse_log(const struct lysp_ctx *pctx, const struct lysp_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err, |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 888 | const char *format, ...) |
| 889 | { |
| 890 | va_list ap; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 891 | char *data_path, *schema_path; |
| 892 | uint64_t line; |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 893 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 894 | ly_vlog_build_path_line(PARSER_CTX(pctx), &data_path, &schema_path, &line); |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 895 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 896 | va_start(ap, format); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 897 | ly_ext_log(PARSER_CTX(pctx), ext->record->plugin.id, level, err, data_path, schema_path, line, format, ap); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 898 | va_end(ap); |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | LIBYANG_API_DEF void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 902 | lyplg_ext_compile_log(const struct lysc_ctx *cctx, const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err, |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 903 | const char *format, ...) |
| 904 | { |
| 905 | va_list ap; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 906 | char *schema_path = NULL; |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 907 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 908 | if (cctx && !(schema_path = strdup(cctx->path))) { |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 909 | LOGMEM(cctx->ctx); |
| 910 | return; |
| 911 | } |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 912 | |
| 913 | va_start(ap, format); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 914 | ly_ext_log(ext->module->ctx, ext->def->plugin->id, level, err, NULL, schema_path, 0, format, ap); |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 915 | va_end(ap); |
| 916 | } |
| 917 | |
| 918 | LIBYANG_API_DEF void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 919 | lyplg_ext_compile_log_path(const char *path, const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err, |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 920 | const char *format, ...) |
| 921 | { |
| 922 | va_list ap; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 923 | char *schema_path = NULL; |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 924 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 925 | if (path && !(schema_path = strdup(path))) { |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 926 | LOGMEM(ext->module->ctx); |
| 927 | return; |
| 928 | } |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 929 | |
| 930 | va_start(ap, format); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 931 | ly_ext_log(ext->module->ctx, ext->def->plugin->id, level, err, NULL, schema_path, 0, format, ap); |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 932 | va_end(ap); |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 933 | } |
| 934 | |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 935 | /** |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 936 | * @brief Serves only for creating ap. |
| 937 | */ |
| 938 | static void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 939 | _lyplg_ext_compile_log_err(const struct ly_err_item *eitem, const struct lysc_ext_instance *ext, ...) |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 940 | { |
| 941 | va_list ap; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 942 | char *data_path = NULL, *schema_path = NULL; |
| 943 | |
| 944 | if (eitem->data_path) { |
| 945 | data_path = strdup(eitem->data_path); |
| 946 | } |
| 947 | if (eitem->schema_path) { |
| 948 | schema_path = strdup(eitem->schema_path); |
| 949 | } |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 950 | |
| 951 | va_start(ap, ext); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 952 | ly_ext_log(ext->module->ctx, ext->def->plugin->id, eitem->level, eitem->err, data_path, schema_path, eitem->line, "%s", ap); |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 953 | va_end(ap); |
| 954 | } |
| 955 | |
| 956 | LIBYANG_API_DEF void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 957 | lyplg_ext_compile_log_err(const struct ly_err_item *eitem, const struct lysc_ext_instance *ext) |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 958 | { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 959 | _lyplg_ext_compile_log_err(eitem, ext, eitem->msg); |
Michal Vasko | 6727c68 | 2023-02-17 10:40:26 +0100 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | /** |
Michal Vasko | c78a609 | 2021-05-07 15:27:35 +0200 | [diff] [blame] | 963 | * @brief Exact same functionality as ::ly_err_print() but has variable arguments so log_vprintf() can be called. |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 964 | */ |
| 965 | static void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 966 | _ly_err_print(const struct ly_ctx *ctx, const struct ly_err_item *eitem, const char *format, ...) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 967 | { |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 968 | va_list ap; |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 969 | char *data_path = NULL, *schema_path = NULL; |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 970 | |
| 971 | LY_CHECK_ARG_RET(ctx, eitem, ); |
| 972 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 973 | if (eitem->data_path) { |
| 974 | data_path = strdup(eitem->data_path); |
| 975 | } |
| 976 | if (eitem->schema_path) { |
| 977 | schema_path = strdup(eitem->schema_path); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 978 | } |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 979 | |
Michal Vasko | c78a609 | 2021-05-07 15:27:35 +0200 | [diff] [blame] | 980 | va_start(ap, format); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 981 | log_vprintf(ctx, eitem->level, eitem->err, eitem->vecode, data_path, schema_path, eitem->line, eitem->apptag, format, ap); |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 982 | va_end(ap); |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 983 | } |
| 984 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 985 | LIBYANG_API_DEF void |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 986 | ly_err_print(const struct ly_ctx *ctx, const struct ly_err_item *eitem) |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 987 | { |
Michal Vasko | c78a609 | 2021-05-07 15:27:35 +0200 | [diff] [blame] | 988 | /* String ::ly_err_item.msg cannot be used directly because it may contain the % character */ |
| 989 | _ly_err_print(ctx, eitem, "%s", eitem->msg); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 990 | } |