blob: 5ffc42e5cbea315a4d2d82d55519ba70af55eb13 [file] [log] [blame]
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001/**
2 * @file log.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko193dacd2022-10-13 08:43:05 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
Radek Krejci5aeea3a2018-09-05 13:29:36 +02005 * @brief Logger routines implementations
6 *
Michal Vasko193dacd2022-10-13 08:43:05 +02007 * Copyright (c) 2015 - 2022 CESNET, z.s.p.o.
Radek Krejci5aeea3a2018-09-05 13:29:36 +02008 *
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 Hopps32874e12021-05-01 09:43:54 -040016#define _GNU_SOURCE /* asprintf, strdup */
Radek Krejci535ea9f2020-05-29 16:01:05 +020017
18#include "log.h"
Radek Krejcib7db73a2018-10-24 14:18:40 +020019
Radek Krejci5aeea3a2018-09-05 13:29:36 +020020#include <assert.h>
Radek Krejcic04f0a22018-09-21 15:49:45 +020021#include <inttypes.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020022#include <pthread.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020023#include <stdarg.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020024#include <stdint.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020025#include <stdio.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020026#include <stdlib.h>
27#include <string.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020028
Radek Krejci535ea9f2020-05-29 16:01:05 +020029#include "common.h"
Radek Krejciaa45bda2020-07-20 07:43:38 +020030#include "compat.h"
Radek Krejciaddfc9a2020-12-17 20:46:35 +010031#include "in_internal.h"
Radek Krejci0935f412019-08-20 16:15:18 +020032#include "plugins_exts.h"
Radek Krejci77114102021-03-10 15:21:57 +010033#include "set.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020034#include "tree_data.h"
Michal Vaskodbf3e652022-10-21 08:46:25 +020035#include "tree_data_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020036#include "tree_schema.h"
Michal Vasko193dacd2022-10-13 08:43:05 +020037#include "tree_schema_internal.h"
Radek Krejci5aeea3a2018-09-05 13:29:36 +020038
Václav Kubernátd367ad92021-11-29 09:28:56 +010039ATOMIC_T ly_ll = (uint_fast32_t)LY_LLWRN;
40ATOMIC_T ly_log_opts = (uint_fast32_t)(LY_LOLOG | LY_LOSTORE_LAST);
Michal Vaskod4a6d042022-12-08 08:34:29 +010041THREAD_LOCAL uint32_t *temp_ly_log_opts;
Michal Vaskod8085612020-08-21 12:55:23 +020042static ly_log_clb log_clb;
Václav Kubernátd367ad92021-11-29 09:28:56 +010043static ATOMIC_T path_flag = 1;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020044#ifndef NDEBUG
Václav Kubernátd367ad92021-11-29 09:28:56 +010045ATOMIC_T ly_ldbg_groups = 0;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020046#endif
47
Radek Krejciddace2c2021-01-08 11:30:56 +010048THREAD_LOCAL struct ly_log_location_s log_location = {0};
49
Jan Kundrátc53a7ec2021-12-09 16:01:19 +010050LIBYANG_API_DEF LY_ERR
Radek Krejcid33273d2018-10-25 14:55:52 +020051ly_errcode(const struct ly_ctx *ctx)
52{
53 struct ly_err_item *i;
54
Radek Krejci572ee602020-09-16 14:35:08 +020055 i = ly_err_last(ctx);
Radek Krejcid33273d2018-10-25 14:55:52 +020056 if (i) {
Radek Krejci572ee602020-09-16 14:35:08 +020057 return i->no;
Radek Krejcid33273d2018-10-25 14:55:52 +020058 }
59
60 return LY_SUCCESS;
61}
62
Jan Kundrátc53a7ec2021-12-09 16:01:19 +010063LIBYANG_API_DEF LY_VECODE
Radek Krejci5aeea3a2018-09-05 13:29:36 +020064ly_vecode(const struct ly_ctx *ctx)
65{
66 struct ly_err_item *i;
67
Radek Krejci572ee602020-09-16 14:35:08 +020068 i = ly_err_last(ctx);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020069 if (i) {
Radek Krejci572ee602020-09-16 14:35:08 +020070 return i->vecode;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020071 }
72
73 return LYVE_SUCCESS;
74}
75
Jan Kundrátc53a7ec2021-12-09 16:01:19 +010076LIBYANG_API_DEF const char *
Radek Krejci5aeea3a2018-09-05 13:29:36 +020077ly_errmsg(const struct ly_ctx *ctx)
78{
79 struct ly_err_item *i;
80
Michal Vaskob3d0d6b2018-09-07 10:17:33 +020081 LY_CHECK_ARG_RET(NULL, ctx, NULL);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020082
Radek Krejci572ee602020-09-16 14:35:08 +020083 i = ly_err_last(ctx);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020084 if (i) {
Radek Krejci572ee602020-09-16 14:35:08 +020085 return i->msg;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020086 }
87
88 return NULL;
89}
90
Jan Kundrátc53a7ec2021-12-09 16:01:19 +010091LIBYANG_API_DEF const char *
Radek Krejci5aeea3a2018-09-05 13:29:36 +020092ly_errpath(const struct ly_ctx *ctx)
93{
94 struct ly_err_item *i;
95
Michal Vaskob3d0d6b2018-09-07 10:17:33 +020096 LY_CHECK_ARG_RET(NULL, ctx, NULL);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020097
Radek Krejci572ee602020-09-16 14:35:08 +020098 i = ly_err_last(ctx);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020099 if (i) {
Radek Krejci572ee602020-09-16 14:35:08 +0200100 return i->path;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200101 }
102
103 return NULL;
104}
105
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100106LIBYANG_API_DEF const char *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200107ly_errapptag(const struct ly_ctx *ctx)
108{
109 struct ly_err_item *i;
110
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200111 LY_CHECK_ARG_RET(NULL, ctx, NULL);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200112
Radek Krejci572ee602020-09-16 14:35:08 +0200113 i = ly_err_last(ctx);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200114 if (i) {
Radek Krejci572ee602020-09-16 14:35:08 +0200115 return i->apptag;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200116 }
117
118 return NULL;
119}
120
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100121LIBYANG_API_DEF LY_ERR
aPiecek6d618552021-06-18 10:02:59 +0200122ly_err_new(struct ly_err_item **err, LY_ERR ecode, LY_VECODE vecode, char *path, char *apptag, const char *err_format, ...)
Radek Krejcie7b95092019-05-15 11:03:07 +0200123{
Radek Krejcidb0ee022021-03-15 16:53:44 +0100124 char *msg = NULL;
125 struct ly_err_item *e;
Radek Krejcie7b95092019-05-15 11:03:07 +0200126
Radek Krejcid43298b2021-03-25 16:17:15 +0100127 if (!err || (ecode == LY_SUCCESS)) {
Radek Krejcidb0ee022021-03-15 16:53:44 +0100128 /* nothing to do */
129 return ecode;
130 }
131
132 e = malloc(sizeof *e);
133 LY_CHECK_ERR_RET(!e, LOGMEM(NULL), LY_EMEM);
134 e->prev = (*err) ? (*err)->prev : e;
135 e->next = NULL;
136 if (*err) {
137 (*err)->prev->next = e;
138 }
Radek Krejcie7b95092019-05-15 11:03:07 +0200139
140 /* fill in the information */
Radek Krejcidb0ee022021-03-15 16:53:44 +0100141 e->level = LY_LLERR;
142 e->no = ecode;
143 e->vecode = vecode;
144 e->path = path;
145 e->apptag = apptag;
Radek Krejcie7b95092019-05-15 11:03:07 +0200146
aPiecek6d618552021-06-18 10:02:59 +0200147 if (err_format) {
Radek Krejcidb0ee022021-03-15 16:53:44 +0100148 va_list print_args;
149
aPiecek6d618552021-06-18 10:02:59 +0200150 va_start(print_args, err_format);
Radek Krejcidb0ee022021-03-15 16:53:44 +0100151
aPiecek6d618552021-06-18 10:02:59 +0200152 if (vasprintf(&msg, err_format, print_args) == -1) {
153 /* we don't have anything more to do, just set msg to NULL to avoid undefined content,
Radek Krejcidb0ee022021-03-15 16:53:44 +0100154 * still keep the information about the original error instead of LY_EMEM or other printf's error */
155 msg = NULL;
156 }
157
158 va_end(print_args);
159 }
160 e->msg = msg;
161
162 if (!(*err)) {
163 *err = e;
164 }
165
166 return e->no;
Radek Krejcie7b95092019-05-15 11:03:07 +0200167}
168
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100169LIBYANG_API_DEF struct ly_err_item *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200170ly_err_first(const struct ly_ctx *ctx)
171{
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200172 LY_CHECK_ARG_RET(NULL, ctx, NULL);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200173
174 return pthread_getspecific(ctx->errlist_key);
175}
176
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100177LIBYANG_API_DEF struct ly_err_item *
Radek Krejci572ee602020-09-16 14:35:08 +0200178ly_err_last(const struct ly_ctx *ctx)
179{
180 const struct ly_err_item *e;
181
182 LY_CHECK_ARG_RET(NULL, ctx, NULL);
183
184 e = pthread_getspecific(ctx->errlist_key);
185 return e ? e->prev : NULL;
186}
187
Michal Vasko9dbb91d2023-01-30 13:59:22 +0100188void
189ly_err_move(struct ly_ctx *src_ctx, struct ly_ctx *trg_ctx)
190{
191 const struct ly_err_item *e;
192
193 /* clear any current errors */
194 ly_err_clean(trg_ctx, NULL);
195
196 /* get the errors in src */
197 e = pthread_getspecific(src_ctx->errlist_key);
198 pthread_setspecific(src_ctx->errlist_key, NULL);
199
200 /* set them for trg */
201 pthread_setspecific(trg_ctx->errlist_key, e);
202}
203
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100204LIBYANG_API_DEF void
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200205ly_err_free(void *ptr)
206{
207 struct ly_err_item *i, *next;
208
209 /* clean the error list */
210 for (i = (struct ly_err_item *)ptr; i; i = next) {
211 next = i->next;
Radek Krejcidb0ee022021-03-15 16:53:44 +0100212 free(i->msg);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200213 free(i->path);
214 free(i->apptag);
215 free(i);
216 }
217}
218
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100219LIBYANG_API_DEF void
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200220ly_err_clean(struct ly_ctx *ctx, struct ly_err_item *eitem)
221{
222 struct ly_err_item *i, *first;
223
224 first = ly_err_first(ctx);
225 if (first == eitem) {
226 eitem = NULL;
227 }
228 if (eitem) {
229 /* disconnect the error */
Radek Krejci1e008d22020-08-17 11:37:37 +0200230 for (i = first; i && (i->next != eitem); i = i->next) {}
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200231 assert(i);
232 i->next = NULL;
233 first->prev = i;
234 /* free this err and newer */
235 ly_err_free(eitem);
236 } else {
237 /* free all err */
238 ly_err_free(first);
239 pthread_setspecific(ctx->errlist_key, NULL);
240 }
241}
242
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100243LIBYANG_API_DEF LY_LOG_LEVEL
Radek Krejci52b6d512020-10-12 12:33:17 +0200244ly_log_level(LY_LOG_LEVEL level)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200245{
Václav Kubernátd367ad92021-11-29 09:28:56 +0100246 LY_LOG_LEVEL prev = ATOMIC_LOAD_RELAXED(ly_ll);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200247
Václav Kubernátd367ad92021-11-29 09:28:56 +0100248 ATOMIC_STORE_RELAXED(ly_ll, level);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200249 return prev;
250}
251
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100252LIBYANG_API_DEF uint32_t
Radek Krejci1deb5be2020-08-26 16:43:36 +0200253ly_log_options(uint32_t opts)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200254{
Václav Kubernátd367ad92021-11-29 09:28:56 +0100255 uint32_t prev = ATOMIC_LOAD_RELAXED(ly_log_opts);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200256
Václav Kubernátd367ad92021-11-29 09:28:56 +0100257 ATOMIC_STORE_RELAXED(ly_log_opts, opts);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200258 return prev;
259}
260
Michal Vaskod4a6d042022-12-08 08:34:29 +0100261LIBYANG_API_DEF void
262ly_temp_log_options(uint32_t *opts)
263{
264 temp_ly_log_opts = opts;
265}
266
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100267LIBYANG_API_DEF uint32_t
Radek Krejci68433c92020-10-12 17:03:55 +0200268ly_log_dbg_groups(uint32_t dbg_groups)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200269{
270#ifndef NDEBUG
Václav Kubernátd367ad92021-11-29 09:28:56 +0100271 uint32_t prev = ATOMIC_LOAD_RELAXED(ly_ldbg_groups);
Radek Krejciebdaed02020-11-09 13:05:06 +0100272
Václav Kubernátd367ad92021-11-29 09:28:56 +0100273 ATOMIC_STORE_RELAXED(ly_ldbg_groups, dbg_groups);
Radek Krejciebdaed02020-11-09 13:05:06 +0100274 return prev;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200275#else
276 (void)dbg_groups;
Radek Krejciebdaed02020-11-09 13:05:06 +0100277 return 0;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200278#endif
279}
280
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100281LIBYANG_API_DEF void
Radek Krejci857189e2020-09-01 13:26:36 +0200282ly_set_log_clb(ly_log_clb clb, ly_bool path)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200283{
Michal Vaskod8085612020-08-21 12:55:23 +0200284 log_clb = clb;
Václav Kubernátd367ad92021-11-29 09:28:56 +0100285 ATOMIC_STORE_RELAXED(path_flag, path);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200286}
287
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100288LIBYANG_API_DEF ly_log_clb
Michal Vaskod8085612020-08-21 12:55:23 +0200289ly_get_log_clb(void)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200290{
Michal Vaskod8085612020-08-21 12:55:23 +0200291 return log_clb;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200292}
293
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100294void
Michal Vasko59e69e72022-02-18 09:18:21 +0100295ly_log_location(const struct lysc_node *scnode, const struct lyd_node *dnode, const char *path, const struct ly_in *in,
Michal Vaskof8ebf132022-11-21 14:06:48 +0100296 uint64_t line)
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100297{
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100298 if (scnode) {
Radek Krejciddace2c2021-01-08 11:30:56 +0100299 ly_set_add(&log_location.scnodes, (void *)scnode, 1, NULL);
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100300 }
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100301 if (dnode) {
Radek Krejciddace2c2021-01-08 11:30:56 +0100302 ly_set_add(&log_location.dnodes, (void *)dnode, 1, NULL);
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100303 }
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100304 if (path) {
305 char *s = strdup(path);
Michal Vasko26bbb272022-08-02 14:54:33 +0200306
Radek Krejciddace2c2021-01-08 11:30:56 +0100307 LY_CHECK_ERR_RET(!s, LOGMEM(NULL), );
308 ly_set_add(&log_location.paths, s, 1, NULL);
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100309 }
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100310 if (in) {
Radek Krejciddace2c2021-01-08 11:30:56 +0100311 ly_set_add(&log_location.inputs, (void *)in, 1, NULL);
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100312 }
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100313 if (line) {
Radek Krejciddace2c2021-01-08 11:30:56 +0100314 log_location.line = line;
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100315 }
316}
317
318void
Michal Vasko59e69e72022-02-18 09:18:21 +0100319ly_log_location_revert(uint32_t scnode_steps, uint32_t dnode_steps, uint32_t path_steps, uint32_t in_steps)
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100320{
Radek Krejciddace2c2021-01-08 11:30:56 +0100321 for (uint32_t i = scnode_steps; i && log_location.scnodes.count; i--) {
322 log_location.scnodes.count--;
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100323 }
324
Radek Krejciddace2c2021-01-08 11:30:56 +0100325 for (uint32_t i = dnode_steps; i && log_location.dnodes.count; i--) {
326 log_location.dnodes.count--;
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100327 }
328
Radek Krejciddace2c2021-01-08 11:30:56 +0100329 for (uint32_t i = path_steps; i && log_location.paths.count; i--) {
330 ly_set_rm_index(&log_location.paths, log_location.paths.count - 1, free);
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100331 }
332
Radek Krejciddace2c2021-01-08 11:30:56 +0100333 for (uint32_t i = in_steps; i && log_location.inputs.count; i--) {
334 log_location.inputs.count--;
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100335 }
336
Radek Krejciddace2c2021-01-08 11:30:56 +0100337 /* deallocate the empty sets */
338 if (scnode_steps && !log_location.scnodes.count) {
339 ly_set_erase(&log_location.scnodes, NULL);
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100340 }
Radek Krejciddace2c2021-01-08 11:30:56 +0100341 if (dnode_steps && !log_location.dnodes.count) {
342 ly_set_erase(&log_location.dnodes, NULL);
343 }
344 if (path_steps && !log_location.paths.count) {
345 ly_set_erase(&log_location.paths, free);
346 }
347 if (in_steps && !log_location.inputs.count) {
348 ly_set_erase(&log_location.inputs, NULL);
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100349 }
350}
351
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200352static LY_ERR
353log_store(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, LY_VECODE vecode, char *msg, char *path, char *apptag)
354{
355 struct ly_err_item *eitem, *last;
356
357 assert(ctx && (level < LY_LLVRB));
358
359 eitem = pthread_getspecific(ctx->errlist_key);
360 if (!eitem) {
361 /* if we are only to fill in path, there must have been an error stored */
362 assert(msg);
363 eitem = malloc(sizeof *eitem);
364 LY_CHECK_GOTO(!eitem, mem_fail);
365 eitem->prev = eitem;
366 eitem->next = NULL;
367
368 pthread_setspecific(ctx->errlist_key, eitem);
369 } else if (!msg) {
370 /* only filling the path */
371 assert(path);
372
373 /* find last error */
374 eitem = eitem->prev;
375 do {
376 if (eitem->level == LY_LLERR) {
377 /* fill the path */
378 free(eitem->path);
379 eitem->path = path;
380 return LY_SUCCESS;
381 }
382 eitem = eitem->prev;
383 } while (eitem->prev->next);
384 /* last error was not found */
385 assert(0);
Michal Vaskod4a6d042022-12-08 08:34:29 +0100386 } else if ((temp_ly_log_opts && ((*temp_ly_log_opts & LY_LOSTORE_LAST) == LY_LOSTORE_LAST)) ||
387 (!temp_ly_log_opts && ((ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOSTORE_LAST) == LY_LOSTORE_LAST))) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200388 /* overwrite last message */
389 free(eitem->msg);
390 free(eitem->path);
391 free(eitem->apptag);
392 } else {
393 /* store new message */
394 last = eitem->prev;
395 eitem->prev = malloc(sizeof *eitem);
396 LY_CHECK_GOTO(!eitem->prev, mem_fail);
397 eitem = eitem->prev;
398 eitem->prev = last;
399 eitem->next = NULL;
400 last->next = eitem;
401 }
402
403 /* fill in the information */
404 eitem->level = level;
405 eitem->no = no;
406 eitem->vecode = vecode;
407 eitem->msg = msg;
408 eitem->path = path;
409 eitem->apptag = apptag;
410 return LY_SUCCESS;
411
412mem_fail:
413 LOGMEM(NULL);
414 free(msg);
415 free(path);
416 free(apptag);
417 return LY_EMEM;
418}
419
420static void
Michal Vaskoe9391c72021-10-05 10:04:56 +0200421log_vprintf(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, LY_VECODE vecode, char *path, const char *apptag,
Radek Krejci0f969882020-08-21 16:56:47 +0200422 const char *format, va_list args)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200423{
424 char *msg = NULL;
Michal Vaskod4a6d042022-12-08 08:34:29 +0100425 ly_bool free_strs, lolog, lostore;
426
427 /* learn effective logger options */
428 if (temp_ly_log_opts) {
429 lolog = *temp_ly_log_opts & LY_LOLOG;
430 lostore = *temp_ly_log_opts & LY_LOSTORE;
431 } else {
432 lolog = ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOLOG;
433 lostore = ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOSTORE;
434 }
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200435
Václav Kubernátd367ad92021-11-29 09:28:56 +0100436 if (level > ATOMIC_LOAD_RELAXED(ly_ll)) {
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200437 /* do not print or store the message */
438 free(path);
439 return;
440 }
441
Michal Vasko5a016922021-05-07 08:19:15 +0200442 if (no == LY_EMEM) {
443 /* just print it, anything else would most likely fail anyway */
Michal Vaskod4a6d042022-12-08 08:34:29 +0100444 if (lolog) {
Michal Vasko5a016922021-05-07 08:19:15 +0200445 if (log_clb) {
446 log_clb(level, LY_EMEM_MSG, path);
447 } else {
448 fprintf(stderr, "libyang[%d]: ", level);
449 vfprintf(stderr, format, args);
450 if (path) {
451 fprintf(stderr, " (path: %s)\n", path);
452 } else {
453 fprintf(stderr, "\n");
454 }
455 }
456 }
457 free(path);
458 return;
459 }
460
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200461 /* store the error/warning (if we need to store errors internally, it does not matter what are the user log options) */
Michal Vaskod4a6d042022-12-08 08:34:29 +0100462 if ((level < LY_LLVRB) && ctx && lostore) {
Michal Vasko004d3152020-06-11 19:59:22 +0200463 assert(format);
464 if (vasprintf(&msg, format, args) == -1) {
465 LOGMEM(ctx);
466 free(path);
467 return;
468 }
Radek Krejcic9e64a62020-09-18 20:08:12 +0200469 if (((no & ~LY_EPLUGIN) == LY_EVALID) && (vecode == LYVE_SUCCESS)) {
470 /* assume we are inheriting the error, so inherit vecode as well */
471 vecode = ly_vecode(ctx);
472 }
Michal Vaskoe9391c72021-10-05 10:04:56 +0200473 if (log_store(ctx, level, no, vecode, msg, path, apptag ? strdup(apptag) : NULL)) {
Michal Vasko004d3152020-06-11 19:59:22 +0200474 return;
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200475 }
476 free_strs = 0;
477 } else {
478 if (vasprintf(&msg, format, args) == -1) {
479 LOGMEM(ctx);
480 free(path);
481 return;
482 }
483 free_strs = 1;
484 }
485
486 /* if we are only storing errors internally, never print the message (yet) */
Michal Vaskod4a6d042022-12-08 08:34:29 +0100487 if (lolog) {
Michal Vaskod8085612020-08-21 12:55:23 +0200488 if (log_clb) {
489 log_clb(level, msg, path);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200490 } else {
491 fprintf(stderr, "libyang[%d]: %s%s", level, msg, path ? " " : "\n");
492 if (path) {
493 fprintf(stderr, "(path: %s)\n", path);
494 }
495 }
496 }
497
498 if (free_strs) {
499 free(path);
500 free(msg);
501 }
502}
503
Radek Krejci4ab61562018-09-05 15:00:37 +0200504#ifndef NDEBUG
505
506void
Radek Krejci1deb5be2020-08-26 16:43:36 +0200507ly_log_dbg(uint32_t group, const char *format, ...)
Radek Krejci4ab61562018-09-05 15:00:37 +0200508{
509 char *dbg_format;
510 const char *str_group;
511 va_list ap;
512
Václav Kubernátd367ad92021-11-29 09:28:56 +0100513 if (!(ATOMIC_LOAD_RELAXED(ly_ldbg_groups) & group)) {
Radek Krejci4ab61562018-09-05 15:00:37 +0200514 return;
515 }
516
517 switch (group) {
518 case LY_LDGDICT:
519 str_group = "DICT";
520 break;
Radek Krejci4ab61562018-09-05 15:00:37 +0200521 case LY_LDGXPATH:
522 str_group = "XPATH";
523 break;
Michal Vaskoe558f792021-07-28 08:20:15 +0200524 case LY_LDGDEPSETS:
525 str_group = "DEPSETS";
526 break;
Radek Krejci4ab61562018-09-05 15:00:37 +0200527 default:
528 LOGINT(NULL);
529 return;
530 }
531
532 if (asprintf(&dbg_format, "%s: %s", str_group, format) == -1) {
533 LOGMEM(NULL);
534 return;
535 }
536
537 va_start(ap, format);
Michal Vaskoe9391c72021-10-05 10:04:56 +0200538 log_vprintf(NULL, LY_LLDBG, 0, 0, NULL, NULL, dbg_format, ap);
Radek Krejci4ab61562018-09-05 15:00:37 +0200539 va_end(ap);
540}
541
542#endif
543
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200544void
545ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, const char *format, ...)
546{
547 va_list ap;
548
549 va_start(ap, format);
Michal Vaskoe9391c72021-10-05 10:04:56 +0200550 log_vprintf(ctx, level, no, 0, NULL, NULL, format, ap);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200551 va_end(ap);
552}
553
Michal Vaskodbf3e652022-10-21 08:46:25 +0200554/**
555 * @brief Append a schema node name to a generated data path, only if it fits.
556 *
557 * @param[in,out] str Generated path to update.
558 * @param[in] snode Schema node to append.
559 * @param[in] parent Last printed data node.
560 * @return LY_ERR value.
561 */
562static LY_ERR
563ly_vlog_build_path_append(char **str, const struct lysc_node *snode, const struct lyd_node *parent)
564{
565 const struct lys_module *mod, *prev_mod;
566 uint32_t len, new_len;
567 void *mem;
568
569 if (snode->nodetype & (LYS_CHOICE | LYS_CASE)) {
570 /* schema-only node */
571 return LY_SUCCESS;
572 } else if (lysc_data_parent(snode) != parent->schema) {
573 /* not a direct descendant node */
574 return LY_SUCCESS;
575 }
576
577 /* get module to print, if any */
578 mod = snode->module;
579 prev_mod = (parent->schema) ? parent->schema->module : lyd_owner_module(parent);
580 if (prev_mod == mod) {
581 mod = NULL;
582 }
583
584 /* realloc string */
585 len = strlen(*str);
586 new_len = len + 1 + (mod ? strlen(mod->name) + 1 : 0) + strlen(snode->name);
587 mem = realloc(*str, new_len + 1);
588 LY_CHECK_ERR_RET(!mem, LOGMEM(LYD_CTX(parent)), LY_EMEM);
589 *str = mem;
590
591 /* print the last schema node */
592 sprintf(*str + len, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "", snode->name);
593 return LY_SUCCESS;
594}
595
596/**
597 * @brief Build log path from the stored log location information.
598 *
599 * @param[in] ctx Context to use.
600 * @param[out] path Generated log path.
601 * @return LY_ERR value.
602 */
Radek Krejci94aa9942018-09-07 17:12:17 +0200603static LY_ERR
Radek Krejciddace2c2021-01-08 11:30:56 +0100604ly_vlog_build_path(const struct ly_ctx *ctx, char **path)
Radek Krejci94aa9942018-09-07 17:12:17 +0200605{
Michal Vaskodbf3e652022-10-21 08:46:25 +0200606 int r;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100607 char *str = NULL, *prev = NULL;
Michal Vaskodbf3e652022-10-21 08:46:25 +0200608 const struct lyd_node *dnode;
Radek Krejcicb3e6472021-01-06 08:19:01 +0100609
Radek Krejci2efc45b2020-12-22 16:25:44 +0100610 *path = NULL;
Radek Krejci94aa9942018-09-07 17:12:17 +0200611
Radek Krejciddace2c2021-01-08 11:30:56 +0100612 if (log_location.paths.count && ((const char *)(log_location.paths.objs[log_location.paths.count - 1]))[0]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100613 /* simply get what is in the provided path string */
Radek Krejciddace2c2021-01-08 11:30:56 +0100614 *path = strdup((const char *)log_location.paths.objs[log_location.paths.count - 1]);
Radek Krejcic04f0a22018-09-21 15:49:45 +0200615 LY_CHECK_ERR_RET(!(*path), LOGMEM(ctx), LY_EMEM);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100616 } else {
Michal Vaskodbf3e652022-10-21 08:46:25 +0200617 /* data/schema node */
618 if (log_location.dnodes.count) {
619 dnode = log_location.dnodes.objs[log_location.dnodes.count - 1];
Michal Vaskoa4dfb3c2022-10-25 14:59:31 +0200620 if (dnode->parent || !lysc_data_parent(dnode->schema)) {
621 /* data node with all of its parents */
622 str = lyd_path(log_location.dnodes.objs[log_location.dnodes.count - 1], LYD_PATH_STD, NULL, 0);
623 LY_CHECK_ERR_RET(!str, LOGMEM(ctx), LY_EMEM);
624 } else {
Michal Vaskodbf3e652022-10-21 08:46:25 +0200625 /* data parsers put all the parent nodes in the set, but they are not connected */
626 str = lyd_path_set(&log_location.dnodes, LYD_PATH_STD);
Michal Vasko3e65ee32022-10-21 10:09:51 +0200627 LY_CHECK_ERR_RET(!str, LOGMEM(ctx), LY_EMEM);
Michal Vaskoa4dfb3c2022-10-25 14:59:31 +0200628 }
Michal Vaskodbf3e652022-10-21 08:46:25 +0200629
Michal Vaskoa4dfb3c2022-10-25 14:59:31 +0200630 /* sometimes the last node is not created yet and we only have the schema node */
631 if (log_location.scnodes.count) {
632 ly_vlog_build_path_append(&str, log_location.scnodes.objs[log_location.scnodes.count - 1], dnode);
Michal Vaskodbf3e652022-10-21 08:46:25 +0200633 }
Michal Vaskodbf3e652022-10-21 08:46:25 +0200634
635 r = asprintf(path, "Data location \"%s\"", str);
636 free(str);
637 LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM);
638 } else if (log_location.scnodes.count) {
Radek Krejciddace2c2021-01-08 11:30:56 +0100639 str = lysc_path(log_location.scnodes.objs[log_location.scnodes.count - 1], LYSC_PATH_LOG, NULL, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100640 LY_CHECK_ERR_RET(!str, LOGMEM(ctx), LY_EMEM);
641
Michal Vaskodbf3e652022-10-21 08:46:25 +0200642 r = asprintf(path, "Schema location \"%s\"", str);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100643 free(str);
Michal Vaskodbf3e652022-10-21 08:46:25 +0200644 LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100645 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100646
Michal Vaskodbf3e652022-10-21 08:46:25 +0200647 /* line */
648 prev = *path;
Radek Krejciddace2c2021-01-08 11:30:56 +0100649 if (log_location.line) {
Michal Vaskodbf3e652022-10-21 08:46:25 +0200650 r = asprintf(path, "%s%sine number %" PRIu64, prev ? prev : "", prev ? ", l" : "L", log_location.line);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100651 free(prev);
Michal Vaskodbf3e652022-10-21 08:46:25 +0200652 LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100653
Radek Krejciddace2c2021-01-08 11:30:56 +0100654 log_location.line = 0;
655 } else if (log_location.inputs.count) {
Michal Vaskodbf3e652022-10-21 08:46:25 +0200656 r = asprintf(path, "%s%sine number %" PRIu64, prev ? prev : "", prev ? ", l" : "L",
Radek Krejciddace2c2021-01-08 11:30:56 +0100657 ((struct ly_in *)log_location.inputs.objs[log_location.inputs.count - 1])->line);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100658 free(prev);
Michal Vaskodbf3e652022-10-21 08:46:25 +0200659 LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100660 }
661
662 if (*path) {
663 prev = *path;
Michal Vaskodbf3e652022-10-21 08:46:25 +0200664 r = asprintf(path, "%s.", prev);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100665 free(prev);
Michal Vaskodbf3e652022-10-21 08:46:25 +0200666 LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100667 }
Radek Krejci94aa9942018-09-07 17:12:17 +0200668 }
669
Radek Krejci94aa9942018-09-07 17:12:17 +0200670 return LY_SUCCESS;
671}
672
673void
Michal Vaskoe9391c72021-10-05 10:04:56 +0200674ly_vlog(const struct ly_ctx *ctx, const char *apptag, LY_VECODE code, const char *format, ...)
Radek Krejci94aa9942018-09-07 17:12:17 +0200675{
676 va_list ap;
Michal Vasko22df3f02020-08-24 13:29:22 +0200677 char *path = NULL;
Radek Krejci94aa9942018-09-07 17:12:17 +0200678
Václav Kubernátd367ad92021-11-29 09:28:56 +0100679 if (ATOMIC_LOAD_RELAXED(path_flag) && ctx) {
Radek Krejciddace2c2021-01-08 11:30:56 +0100680 ly_vlog_build_path(ctx, &path);
Radek Krejci94aa9942018-09-07 17:12:17 +0200681 }
682
683 va_start(ap, format);
Michal Vaskoe9391c72021-10-05 10:04:56 +0200684 log_vprintf(ctx, LY_LLERR, LY_EVALID, code, path, apptag, format, ap);
Radek Krejci94aa9942018-09-07 17:12:17 +0200685 /* path is spent and should not be freed! */
686 va_end(ap);
687}
688
Michal Vasko193dacd2022-10-13 08:43:05 +0200689/**
690 * @brief Print a log message from an extension plugin callback.
691 *
692 * @param[in] ctx libyang context to store the error record. If not provided, the error is just printed.
693 * @param[in] plugin_name Name of the plugin generating the message.
694 * @param[in] level Log message level (error, warning, etc.)
695 * @param[in] err_no Error type code.
696 * @param[in] path Optional path of the error.
697 * @param[in] format Format string to print.
698 * @param[in] ap Var arg list for @p format.
699 */
700static void
701ly_ext_log(const struct ly_ctx *ctx, const char *plugin_name, LY_LOG_LEVEL level, LY_ERR err_no, const char *path,
702 const char *format, va_list ap)
Radek Krejci0935f412019-08-20 16:15:18 +0200703{
Radek Krejci0935f412019-08-20 16:15:18 +0200704 char *plugin_msg;
Radek Krejci0935f412019-08-20 16:15:18 +0200705
Václav Kubernátd367ad92021-11-29 09:28:56 +0100706 if (ATOMIC_LOAD_RELAXED(ly_ll) < level) {
Radek Krejci0935f412019-08-20 16:15:18 +0200707 return;
708 }
Michal Vasko193dacd2022-10-13 08:43:05 +0200709 if (asprintf(&plugin_msg, "Ext plugin \"%s\": %s", plugin_name, format) == -1) {
710 LOGMEM(ctx);
Radek Krejci0935f412019-08-20 16:15:18 +0200711 return;
712 }
713
Michal Vasko193dacd2022-10-13 08:43:05 +0200714 log_vprintf(ctx, level, (level == LY_LLERR ? LY_EPLUGIN : 0) | err_no, LYVE_OTHER, path ? strdup(path) : NULL, NULL,
715 plugin_msg, ap);
716 free(plugin_msg);
717}
718
719LIBYANG_API_DEF void
720lyplg_ext_parse_log(const struct lysp_ctx *pctx, const struct lysp_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no,
721 const char *format, ...)
722{
723 va_list ap;
724 char *path = NULL;
725
726 if (ATOMIC_LOAD_RELAXED(path_flag)) {
727 ly_vlog_build_path(PARSER_CTX(pctx), &path);
728 }
729
Radek Krejci0935f412019-08-20 16:15:18 +0200730 va_start(ap, format);
Michal Vasko193dacd2022-10-13 08:43:05 +0200731 ly_ext_log(PARSER_CTX(pctx), ext->record->plugin.id, level, err_no, path, format, ap);
Radek Krejci0935f412019-08-20 16:15:18 +0200732 va_end(ap);
733
Michal Vasko193dacd2022-10-13 08:43:05 +0200734 free(path);
735}
736
737LIBYANG_API_DEF void
738lyplg_ext_compile_log(const struct lysc_ctx *cctx, const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no,
739 const char *format, ...)
740{
741 va_list ap;
742
743 va_start(ap, format);
744 ly_ext_log(ext->module->ctx, ext->def->plugin->id, level, err_no, cctx ? cctx->path : NULL, format, ap);
745 va_end(ap);
746}
747
748LIBYANG_API_DEF void
749lyplg_ext_compile_log_path(const char *path, const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no,
750 const char *format, ...)
751{
752 va_list ap;
753
754 va_start(ap, format);
755 ly_ext_log(ext->module->ctx, ext->def->plugin->id, level, err_no, path, format, ap);
756 va_end(ap);
Radek Krejci0935f412019-08-20 16:15:18 +0200757}
758
Michal Vasko177d0ed2020-11-23 16:43:03 +0100759/**
Michal Vaskoc78a6092021-05-07 15:27:35 +0200760 * @brief Exact same functionality as ::ly_err_print() but has variable arguments so log_vprintf() can be called.
Michal Vasko177d0ed2020-11-23 16:43:03 +0100761 */
762static void
Michal Vaskoc78a6092021-05-07 15:27:35 +0200763_ly_err_print(const struct ly_ctx *ctx, struct ly_err_item *eitem, const char *format, ...)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200764{
Michal Vasko177d0ed2020-11-23 16:43:03 +0100765 va_list ap;
766 char *path_dup = NULL;
767
768 LY_CHECK_ARG_RET(ctx, eitem, );
769
770 if (eitem->path) {
771 /* duplicate path because it will be freed */
772 path_dup = strdup(eitem->path);
773 LY_CHECK_ERR_RET(!path_dup, LOGMEM(ctx), );
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200774 }
Michal Vasko177d0ed2020-11-23 16:43:03 +0100775
Michal Vaskoc78a6092021-05-07 15:27:35 +0200776 va_start(ap, format);
Michal Vaskoe9391c72021-10-05 10:04:56 +0200777 log_vprintf(ctx, eitem->level, eitem->no, eitem->vecode, path_dup, eitem->apptag, format, ap);
Michal Vasko177d0ed2020-11-23 16:43:03 +0100778 va_end(ap);
Michal Vasko177d0ed2020-11-23 16:43:03 +0100779}
780
Jan Kundrátc53a7ec2021-12-09 16:01:19 +0100781LIBYANG_API_DEF void
Michal Vasko177d0ed2020-11-23 16:43:03 +0100782ly_err_print(const struct ly_ctx *ctx, struct ly_err_item *eitem)
783{
Michal Vaskoc78a6092021-05-07 15:27:35 +0200784 /* String ::ly_err_item.msg cannot be used directly because it may contain the % character */
785 _ly_err_print(ctx, eitem, "%s", eitem->msg);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200786}