/** * @file log.c * @author Radek Krejci * @author Michal Vasko * @brief Logger routines implementations * * Copyright (c) 2015 - 2023 CESNET, z.s.p.o. * * This source code is licensed under BSD 3-Clause License (the "License"). * You may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://opensource.org/licenses/BSD-3-Clause */ #define _GNU_SOURCE /* asprintf, strdup */ #include "log.h" #include #include #include #include #include #include #include #include #include "common.h" #include "compat.h" #include "in_internal.h" #include "plugins_exts.h" #include "set.h" #include "tree_data.h" #include "tree_data_internal.h" #include "tree_schema.h" #include "tree_schema_internal.h" ATOMIC_T ly_ll = (uint_fast32_t)LY_LLWRN; ATOMIC_T ly_log_opts = (uint_fast32_t)(LY_LOLOG | LY_LOSTORE_LAST); THREAD_LOCAL uint32_t *temp_ly_log_opts; static ly_log_clb log_clb; static ATOMIC_T path_flag = 1; THREAD_LOCAL char last_msg[LY_LAST_MSG_SIZE]; #ifndef NDEBUG ATOMIC_T ly_ldbg_groups = 0; #endif THREAD_LOCAL struct ly_log_location_s log_location = {0}; LIBYANG_API_DEF LY_ERR ly_errcode(const struct ly_ctx *ctx) { struct ly_err_item *i; i = ly_err_last(ctx); if (i) { return i->no; } return LY_SUCCESS; } LIBYANG_API_DEF const char * ly_strerrcode(LY_ERR err) { /* ignore plugin flag */ err &= ~LY_EPLUGIN; switch (err) { case LY_SUCCESS: return "Success"; case LY_EMEM: return "Out of memory"; case LY_ESYS: return "System call failed"; case LY_EINVAL: return "Invalid value"; case LY_EEXIST: return "Already exists"; case LY_ENOTFOUND: return "Not found"; case LY_EINT: return "Internal error"; case LY_EVALID: return "Validation failed"; case LY_EDENIED: return "Operation denied"; case LY_EINCOMPLETE: return "Operation incomplete"; case LY_ERECOMPILE: return "Recompilation required"; case LY_ENOT: return "Negative result"; case LY_EOTHER: return "Another failure reason"; case LY_EPLUGIN: break; } /* unreachable */ return "Unknown"; } LIBYANG_API_DEF LY_VECODE ly_vecode(const struct ly_ctx *ctx) { struct ly_err_item *i; i = ly_err_last(ctx); if (i) { return i->vecode; } return LYVE_SUCCESS; } LIBYANG_API_DEF const char * ly_strvecode(LY_VECODE vecode) { switch (vecode) { case LYVE_SUCCESS: return "Success"; case LYVE_SYNTAX: return "General syntax error"; case LYVE_SYNTAX_YANG: return "YANG syntax error"; case LYVE_SYNTAX_YIN: return "YIN syntax error"; case LYVE_REFERENCE: return "Reference error"; case LYVE_XPATH: return "XPath error"; case LYVE_SEMANTICS: return "Semantic error"; case LYVE_SYNTAX_XML: return "XML syntax error"; case LYVE_SYNTAX_JSON: return "JSON syntax error"; case LYVE_DATA: return "YANG data error"; case LYVE_OTHER: return "Another error"; } /* unreachable */ return "Unknown"; } LIBYANG_API_DEF const char * ly_errmsg(const struct ly_ctx *ctx) { struct ly_err_item *i; LY_CHECK_ARG_RET(NULL, ctx, NULL); i = ly_err_last(ctx); if (i) { return i->msg; } return NULL; } LIBYANG_API_DEF const char * ly_last_errmsg(void) { return last_msg; } LIBYANG_API_DEF const char * ly_errpath(const struct ly_ctx *ctx) { struct ly_err_item *i; LY_CHECK_ARG_RET(NULL, ctx, NULL); i = ly_err_last(ctx); if (i) { return i->path; } return NULL; } LIBYANG_API_DEF const char * ly_errapptag(const struct ly_ctx *ctx) { struct ly_err_item *i; LY_CHECK_ARG_RET(NULL, ctx, NULL); i = ly_err_last(ctx); if (i) { return i->apptag; } return NULL; } LIBYANG_API_DEF LY_ERR ly_err_new(struct ly_err_item **err, LY_ERR ecode, LY_VECODE vecode, char *path, char *apptag, const char *err_format, ...) { char *msg = NULL; struct ly_err_item *e; if (!err || (ecode == LY_SUCCESS)) { /* nothing to do */ return ecode; } e = malloc(sizeof *e); LY_CHECK_ERR_RET(!e, LOGMEM(NULL), LY_EMEM); e->prev = (*err) ? (*err)->prev : e; e->next = NULL; if (*err) { (*err)->prev->next = e; } /* fill in the information */ e->level = LY_LLERR; e->no = ecode; e->vecode = vecode; e->path = path; e->apptag = apptag; if (err_format) { va_list print_args; va_start(print_args, err_format); if (vasprintf(&msg, err_format, print_args) == -1) { /* we don't have anything more to do, just set msg to NULL to avoid undefined content, * still keep the information about the original error instead of LY_EMEM or other printf's error */ msg = NULL; } va_end(print_args); } e->msg = msg; if (!(*err)) { *err = e; } return e->no; } /** * @brief Get error record from error hash table of a context for the current thread. * * @param[in] ctx Context to use. * @return Thread error record, if any. */ static struct ly_ctx_err_rec * ly_err_get_rec(const struct ly_ctx *ctx) { struct ly_ctx_err_rec rec, *match; /* prepare record */ rec.tid = pthread_self(); /* get the pointer to the matching record */ if (lyht_find(ctx->err_ht, &rec, lyht_hash((void *)&rec.tid, sizeof rec.tid), (void **)&match)) { return NULL; } return match; } /** * @brief Insert new error record to error hash table of a context for the current thread. * * @param[in] ctx Context to use. * @return Thread error record. */ static struct ly_ctx_err_rec * ly_err_new_rec(const struct ly_ctx *ctx) { struct ly_ctx_err_rec new, *rec; LY_ERR r; /* insert a new record */ new.err = NULL; new.tid = pthread_self(); /* reuse lock */ /* LOCK */ pthread_mutex_lock((pthread_mutex_t *)&ctx->lyb_hash_lock); r = lyht_insert(ctx->err_ht, &new, lyht_hash((void *)&new.tid, sizeof new.tid), (void **)&rec); /* UNLOCK */ pthread_mutex_unlock((pthread_mutex_t *)&ctx->lyb_hash_lock); return r ? NULL : rec; } LIBYANG_API_DEF struct ly_err_item * ly_err_first(const struct ly_ctx *ctx) { struct ly_ctx_err_rec *rec; LY_CHECK_ARG_RET(NULL, ctx, NULL); /* get the pointer to the matching record */ rec = ly_err_get_rec(ctx); return rec ? rec->err : NULL; } LIBYANG_API_DEF struct ly_err_item * ly_err_last(const struct ly_ctx *ctx) { struct ly_ctx_err_rec *rec; LY_CHECK_ARG_RET(NULL, ctx, NULL); /* get the pointer to the matching record */ if (!(rec = ly_err_get_rec(ctx))) { return NULL; } return rec->err ? rec->err->prev : NULL; } void ly_err_move(struct ly_ctx *src_ctx, struct ly_ctx *trg_ctx) { struct ly_ctx_err_rec *rec; struct ly_err_item *err = NULL; /* get and remove the errors from src */ rec = ly_err_get_rec(src_ctx); if (rec) { err = rec->err; rec->err = NULL; } /* set them for trg */ if (!(rec = ly_err_get_rec(trg_ctx))) { if (!(rec = ly_err_new_rec(trg_ctx))) { LOGINT(NULL); ly_err_free(err); return; } } ly_err_free(rec->err); rec->err = err; } LIBYANG_API_DEF void ly_err_free(void *ptr) { struct ly_err_item *e, *next; /* clean the error list */ LY_LIST_FOR_SAFE(ptr, next, e) { free(e->msg); free(e->path); free(e->apptag); free(e); } } LIBYANG_API_DEF void ly_err_clean(struct ly_ctx *ctx, struct ly_err_item *eitem) { struct ly_ctx_err_rec *rec; struct ly_err_item *e; if (!(rec = ly_err_get_rec(ctx))) { return; } if (rec->err == eitem) { eitem = NULL; } if (!eitem) { /* free all err */ ly_err_free(rec->err); rec->err = NULL; } else { /* disconnect the error */ for (e = rec->err; e && (e->next != eitem); e = e->next) {} assert(e); e->next = NULL; rec->err->prev = e; /* free this err and newer */ ly_err_free(eitem); } } LIBYANG_API_DEF LY_LOG_LEVEL ly_log_level(LY_LOG_LEVEL level) { LY_LOG_LEVEL prev = ATOMIC_LOAD_RELAXED(ly_ll); ATOMIC_STORE_RELAXED(ly_ll, level); return prev; } LIBYANG_API_DEF uint32_t ly_log_options(uint32_t opts) { uint32_t prev = ATOMIC_LOAD_RELAXED(ly_log_opts); ATOMIC_STORE_RELAXED(ly_log_opts, opts); return prev; } LIBYANG_API_DEF void ly_temp_log_options(uint32_t *opts) { temp_ly_log_opts = opts; } LIBYANG_API_DEF uint32_t ly_log_dbg_groups(uint32_t dbg_groups) { #ifndef NDEBUG uint32_t prev = ATOMIC_LOAD_RELAXED(ly_ldbg_groups); ATOMIC_STORE_RELAXED(ly_ldbg_groups, dbg_groups); return prev; #else (void)dbg_groups; return 0; #endif } LIBYANG_API_DEF void ly_set_log_clb(ly_log_clb clb, ly_bool path) { log_clb = clb; ATOMIC_STORE_RELAXED(path_flag, path); } LIBYANG_API_DEF ly_log_clb ly_get_log_clb(void) { return log_clb; } void ly_log_location(const struct lysc_node *scnode, const struct lyd_node *dnode, const char *path, const struct ly_in *in, uint64_t line) { if (scnode) { ly_set_add(&log_location.scnodes, (void *)scnode, 1, NULL); } if (dnode) { ly_set_add(&log_location.dnodes, (void *)dnode, 1, NULL); } if (path) { char *s = strdup(path); LY_CHECK_ERR_RET(!s, LOGMEM(NULL), ); ly_set_add(&log_location.paths, s, 1, NULL); } if (in) { ly_set_add(&log_location.inputs, (void *)in, 1, NULL); } if (line) { log_location.line = line; } } void ly_log_location_revert(uint32_t scnode_steps, uint32_t dnode_steps, uint32_t path_steps, uint32_t in_steps) { for (uint32_t i = scnode_steps; i && log_location.scnodes.count; i--) { log_location.scnodes.count--; } for (uint32_t i = dnode_steps; i && log_location.dnodes.count; i--) { log_location.dnodes.count--; } for (uint32_t i = path_steps; i && log_location.paths.count; i--) { ly_set_rm_index(&log_location.paths, log_location.paths.count - 1, free); } for (uint32_t i = in_steps; i && log_location.inputs.count; i--) { log_location.inputs.count--; } /* deallocate the empty sets */ if (scnode_steps && !log_location.scnodes.count) { ly_set_erase(&log_location.scnodes, NULL); } if (dnode_steps && !log_location.dnodes.count) { ly_set_erase(&log_location.dnodes, NULL); } if (path_steps && !log_location.paths.count) { ly_set_erase(&log_location.paths, free); } if (in_steps && !log_location.inputs.count) { ly_set_erase(&log_location.inputs, NULL); } } const struct lyd_node * ly_log_location_dnode(uint32_t idx) { if (idx < log_location.dnodes.count) { return log_location.dnodes.dnodes[idx]; } return NULL; } uint32_t ly_log_location_dnode_count(void) { return log_location.dnodes.count; } /** * @brief Store generated error in a context. * * @param[in] ctx Context to use. * @param[in] level Message log level. * @param[in] no Error number. * @param[in] vecode Error validation error code. * @param[in] msg Error message, always spent. * @param[in] path Error path, always spent. * @param[in] apptag Error app tag, always spent. * @return LY_ERR value. */ static LY_ERR log_store(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, LY_VECODE vecode, char *msg, char *path, char *apptag) { struct ly_ctx_err_rec *rec; struct ly_err_item *e, *last; assert(ctx && (level < LY_LLVRB)); if (!(rec = ly_err_get_rec(ctx))) { if (!(rec = ly_err_new_rec(ctx))) { goto mem_fail; } } e = rec->err; if (!e) { /* if we are only to fill in path, there must have been an error stored */ assert(msg); e = malloc(sizeof *e); LY_CHECK_GOTO(!e, mem_fail); e->prev = e; e->next = NULL; rec->err = e; } else if (!msg) { /* only filling the path */ assert(path); /* find last error */ e = e->prev; do { if (e->level == LY_LLERR) { /* fill the path */ free(e->path); e->path = path; return LY_SUCCESS; } e = e->prev; } while (e->prev->next); /* last error was not found */ assert(0); } else if ((temp_ly_log_opts && ((*temp_ly_log_opts & LY_LOSTORE_LAST) == LY_LOSTORE_LAST)) || (!temp_ly_log_opts && ((ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOSTORE_LAST) == LY_LOSTORE_LAST))) { /* overwrite last message */ free(e->msg); free(e->path); free(e->apptag); } else { /* store new message */ last = e->prev; e->prev = malloc(sizeof *e); LY_CHECK_GOTO(!e->prev, mem_fail); e = e->prev; e->prev = last; e->next = NULL; last->next = e; } /* fill in the information */ e->level = level; e->no = no; e->vecode = vecode; e->msg = msg; e->path = path; e->apptag = apptag; return LY_SUCCESS; mem_fail: LOGMEM(NULL); free(msg); free(path); free(apptag); return LY_EMEM; } static void log_vprintf(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, LY_VECODE vecode, char *path, const char *apptag, const char *format, va_list args) { char *msg = NULL; ly_bool free_strs, lolog, lostore; /* learn effective logger options */ if (temp_ly_log_opts) { lolog = *temp_ly_log_opts & LY_LOLOG; lostore = *temp_ly_log_opts & LY_LOSTORE; } else { lolog = ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOLOG; lostore = ATOMIC_LOAD_RELAXED(ly_log_opts) & LY_LOSTORE; } if (level > ATOMIC_LOAD_RELAXED(ly_ll)) { /* do not print or store the message */ free(path); return; } if (no == LY_EMEM) { /* just print it, anything else would most likely fail anyway */ if (lolog) { if (log_clb) { log_clb(level, LY_EMEM_MSG, path); } else { fprintf(stderr, "libyang[%d]: ", level); vfprintf(stderr, format, args); if (path) { fprintf(stderr, " (path: %s)\n", path); } else { fprintf(stderr, "\n"); } } } free(path); return; } /* print into a single message */ if (vasprintf(&msg, format, args) == -1) { LOGMEM(ctx); free(path); return; } /* store as the last message */ strncpy(last_msg, msg, LY_LAST_MSG_SIZE - 1); /* store the error/warning in the context (if we need to store errors internally, it does not matter what are * the user log options) */ if ((level < LY_LLVRB) && ctx && lostore) { if (((no & ~LY_EPLUGIN) == LY_EVALID) && (vecode == LYVE_SUCCESS)) { /* assume we are inheriting the error, so inherit vecode as well */ vecode = ly_vecode(ctx); } if (log_store(ctx, level, no, vecode, msg, path, apptag ? strdup(apptag) : NULL)) { return; } free_strs = 0; } else { free_strs = 1; } /* if we are only storing errors internally, never print the message (yet) */ if (lolog) { if (log_clb) { log_clb(level, msg, path); } else { fprintf(stderr, "libyang[%d]: %s%s", level, msg, path ? " " : "\n"); if (path) { fprintf(stderr, "(path: %s)\n", path); } } } if (free_strs) { free(path); free(msg); } } #ifndef NDEBUG void ly_log_dbg(uint32_t group, const char *format, ...) { char *dbg_format; const char *str_group; va_list ap; if (!(ATOMIC_LOAD_RELAXED(ly_ldbg_groups) & group)) { return; } switch (group) { case LY_LDGDICT: str_group = "DICT"; break; case LY_LDGXPATH: str_group = "XPATH"; break; case LY_LDGDEPSETS: str_group = "DEPSETS"; break; default: LOGINT(NULL); return; } if (asprintf(&dbg_format, "%s: %s", str_group, format) == -1) { LOGMEM(NULL); return; } va_start(ap, format); log_vprintf(NULL, LY_LLDBG, 0, 0, NULL, NULL, dbg_format, ap); va_end(ap); free(dbg_format); } #endif void ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, const char *format, ...) { va_list ap; va_start(ap, format); log_vprintf(ctx, level, no, 0, NULL, NULL, format, ap); va_end(ap); } /** * @brief Append a schema node name to a generated data path, only if it fits. * * @param[in,out] str Generated path to update. * @param[in] snode Schema node to append. * @param[in] parent Last printed data node. * @return LY_ERR value. */ static LY_ERR ly_vlog_build_path_append(char **str, const struct lysc_node *snode, const struct lyd_node *parent) { const struct lys_module *mod, *prev_mod; uint32_t len, new_len; void *mem; if (snode->nodetype & (LYS_CHOICE | LYS_CASE)) { /* schema-only node */ return LY_SUCCESS; } else if (lysc_data_parent(snode) != lyd_node_schema(parent)) { /* not a direct descendant node */ return LY_SUCCESS; } /* get module to print, if any */ mod = snode->module; prev_mod = lyd_node_module(parent); if (prev_mod == mod) { mod = NULL; } /* realloc string */ len = *str ? strlen(*str) : 0; new_len = len + 1 + (mod ? strlen(mod->name) + 1 : 0) + strlen(snode->name); mem = realloc(*str, new_len + 1); LY_CHECK_ERR_RET(!mem, LOGMEM(LYD_CTX(parent)), LY_EMEM); *str = mem; /* print the last schema node */ sprintf(*str + len, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "", snode->name); return LY_SUCCESS; } LY_ERR ly_vlog_build_data_path(const struct ly_ctx *ctx, char **path) { LY_ERR rc = LY_SUCCESS; const struct lyd_node *dnode = NULL; *path = NULL; if (log_location.dnodes.count) { dnode = log_location.dnodes.objs[log_location.dnodes.count - 1]; if (dnode->parent || !lysc_data_parent(dnode->schema)) { /* data node with all of its parents */ *path = lyd_path(log_location.dnodes.objs[log_location.dnodes.count - 1], LYD_PATH_STD, NULL, 0); LY_CHECK_ERR_GOTO(!*path, LOGMEM(ctx); rc = LY_EMEM, cleanup); } else { /* data parsers put all the parent nodes in the set, but they are not connected */ *path = lyd_path_set(&log_location.dnodes, LYD_PATH_STD); LY_CHECK_ERR_GOTO(!*path, LOGMEM(ctx); rc = LY_EMEM, cleanup); } } /* sometimes the last node is not created yet and we only have the schema node */ if (log_location.scnodes.count) { rc = ly_vlog_build_path_append(path, log_location.scnodes.objs[log_location.scnodes.count - 1], dnode); LY_CHECK_GOTO(rc, cleanup); } cleanup: if (rc) { free(*path); *path = NULL; } return rc; } /** * @brief Build log path from the stored log location information. * * @param[in] ctx Context to use. * @param[out] path Generated log path. * @return LY_ERR value. */ static LY_ERR ly_vlog_build_path(const struct ly_ctx *ctx, char **path) { int r; char *str = NULL, *prev = NULL; *path = NULL; if (log_location.paths.count && ((const char *)(log_location.paths.objs[log_location.paths.count - 1]))[0]) { /* simply get what is in the provided path string */ r = asprintf(path, "Path \"%s\"", (const char *)log_location.paths.objs[log_location.paths.count - 1]); LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM); } else { /* data/schema node */ if (log_location.dnodes.count) { LY_CHECK_RET(ly_vlog_build_data_path(ctx, &str)); r = asprintf(path, "Data location \"%s\"", str); free(str); LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM); } else if (log_location.scnodes.count) { str = lysc_path(log_location.scnodes.objs[log_location.scnodes.count - 1], LYSC_PATH_LOG, NULL, 0); LY_CHECK_ERR_RET(!str, LOGMEM(ctx), LY_EMEM); r = asprintf(path, "Schema location \"%s\"", str); free(str); LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM); } } /* line */ prev = *path; if (log_location.line) { r = asprintf(path, "%s%sine number %" PRIu64, prev ? prev : "", prev ? ", l" : "L", log_location.line); free(prev); LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM); log_location.line = 0; } else if (log_location.inputs.count) { r = asprintf(path, "%s%sine number %" PRIu64, prev ? prev : "", prev ? ", l" : "L", ((struct ly_in *)log_location.inputs.objs[log_location.inputs.count - 1])->line); free(prev); LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM); } if (*path) { prev = *path; r = asprintf(path, "%s.", prev); free(prev); LY_CHECK_ERR_RET(r == -1, LOGMEM(ctx), LY_EMEM); } return LY_SUCCESS; } void ly_vlog(const struct ly_ctx *ctx, const char *apptag, LY_VECODE code, const char *format, ...) { va_list ap; char *path = NULL; if (ATOMIC_LOAD_RELAXED(path_flag) && ctx) { ly_vlog_build_path(ctx, &path); } va_start(ap, format); log_vprintf(ctx, LY_LLERR, LY_EVALID, code, path, apptag, format, ap); /* path is spent and should not be freed! */ va_end(ap); } /** * @brief Print a log message from an extension plugin callback. * * @param[in] ctx libyang context to store the error record. If not provided, the error is just printed. * @param[in] plugin_name Name of the plugin generating the message. * @param[in] level Log message level (error, warning, etc.) * @param[in] err_no Error type code. * @param[in] path Optional path of the error, used if set. * @param[in] format Format string to print. * @param[in] ap Var arg list for @p format. */ static void ly_ext_log(const struct ly_ctx *ctx, const char *plugin_name, LY_LOG_LEVEL level, LY_ERR err_no, char *path, const char *format, va_list ap) { char *plugin_msg; if (ATOMIC_LOAD_RELAXED(ly_ll) < level) { return; } if (asprintf(&plugin_msg, "Ext plugin \"%s\": %s", plugin_name, format) == -1) { LOGMEM(ctx); return; } log_vprintf(ctx, level, (level == LY_LLERR ? LY_EPLUGIN : 0) | err_no, LYVE_OTHER, path, NULL, plugin_msg, ap); free(plugin_msg); } LIBYANG_API_DEF void lyplg_ext_parse_log(const struct lysp_ctx *pctx, const struct lysp_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no, const char *format, ...) { va_list ap; char *path = NULL; if (ATOMIC_LOAD_RELAXED(path_flag)) { ly_vlog_build_path(PARSER_CTX(pctx), &path); } va_start(ap, format); ly_ext_log(PARSER_CTX(pctx), ext->record->plugin.id, level, err_no, path, format, ap); va_end(ap); } LIBYANG_API_DEF void lyplg_ext_compile_log(const struct lysc_ctx *cctx, const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no, const char *format, ...) { va_list ap; char *path = NULL; if (cctx && (asprintf(&path, "Path \"%s\".", cctx->path) == -1)) { LOGMEM(cctx->ctx); return; } va_start(ap, format); ly_ext_log(ext->module->ctx, ext->def->plugin->id, level, err_no, path, format, ap); va_end(ap); } LIBYANG_API_DEF void lyplg_ext_compile_log_path(const char *path, const struct lysc_ext_instance *ext, LY_LOG_LEVEL level, LY_ERR err_no, const char *format, ...) { va_list ap; char *log_path = NULL; if (path && (asprintf(&log_path, "Path \"%s\".", path) == -1)) { LOGMEM(ext->module->ctx); return; } va_start(ap, format); ly_ext_log(ext->module->ctx, ext->def->plugin->id, level, err_no, log_path, format, ap); va_end(ap); } /** * @brief Serves only for creating ap. */ static void _lyplg_ext_compile_log_err(const struct ly_err_item *err, const struct lysc_ext_instance *ext, ...) { va_list ap; va_start(ap, ext); ly_ext_log(ext->module->ctx, ext->def->plugin->id, err->level, err->no, err->path ? strdup(err->path) : NULL, "%s", ap); va_end(ap); } LIBYANG_API_DEF void lyplg_ext_compile_log_err(const struct ly_err_item *err, const struct lysc_ext_instance *ext) { _lyplg_ext_compile_log_err(err, ext, err->msg); } /** * @brief Exact same functionality as ::ly_err_print() but has variable arguments so log_vprintf() can be called. */ static void _ly_err_print(const struct ly_ctx *ctx, struct ly_err_item *eitem, const char *format, ...) { va_list ap; char *path_dup = NULL; LY_CHECK_ARG_RET(ctx, eitem, ); if (eitem->path) { /* duplicate path because it will be freed */ path_dup = strdup(eitem->path); LY_CHECK_ERR_RET(!path_dup, LOGMEM(ctx), ); } va_start(ap, format); log_vprintf(ctx, eitem->level, eitem->no, eitem->vecode, path_dup, eitem->apptag, format, ap); va_end(ap); } LIBYANG_API_DEF void ly_err_print(const struct ly_ctx *ctx, struct ly_err_item *eitem) { /* String ::ly_err_item.msg cannot be used directly because it may contain the % character */ _ly_err_print(ctx, eitem, "%s", eitem->msg); }