blob: c47eb9a76b38cd5155e6b0e67d7c12ffc56b4a20 [file] [log] [blame]
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001/**
2 * @file common.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief common internal definitions for libyang
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_COMMON_H_
16#define LY_COMMON_H_
17
Radek Krejci6caa6ab2018-10-24 10:04:48 +020018#include <pthread.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020019#include <stddef.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020020#include <stdint.h>
Michal Vasko55e35212021-04-28 09:38:56 +020021#include <string.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020022
Radek Krejcid33273d2018-10-25 14:55:52 +020023#include "context.h"
Radek Krejci6caa6ab2018-10-24 10:04:48 +020024#include "hash_table.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020025#include "log.h"
26#include "set.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include "tree_data.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020028
29struct ly_ctx;
Radek Krejciaddfc9a2020-12-17 20:46:35 +010030struct ly_in;
Radek Krejci77114102021-03-10 15:21:57 +010031struct lysc_node;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020032
33#if __STDC_VERSION__ >= 201112 && !defined __STDC_NO_THREADS__
34# define THREAD_LOCAL _Thread_local
35#elif defined __GNUC__ || \
Radek Krejci0f969882020-08-21 16:56:47 +020036 defined __SUNPRO_C || \
37 defined __xlC__
Radek Krejci5aeea3a2018-09-05 13:29:36 +020038# define THREAD_LOCAL __thread
39#else
40# error "Cannot define THREAD_LOCAL"
41#endif
42
Radek Krejcic59bc972018-09-17 16:13:06 +020043#define GETMACRO1(_1, NAME, ...) NAME
Radek Krejci5aeea3a2018-09-05 13:29:36 +020044#define GETMACRO2(_1, _2, NAME, ...) NAME
45#define GETMACRO3(_1, _2, _3, NAME, ...) NAME
46#define GETMACRO4(_1, _2, _3, _4, NAME, ...) NAME
Michal Vaskodc779a82019-11-06 15:44:06 +010047#define GETMACRO5(_1, _2, _3, _4, _5, NAME, ...) NAME
Michal Vaskoe0665742021-02-11 11:08:44 +010048#define GETMACRO6(_1, _2, _3, _4, _5, _6, NAME, ...) NAME
Radek Krejci5aeea3a2018-09-05 13:29:36 +020049
50/*
Radek Krejcic59bc972018-09-17 16:13:06 +020051 * If the compiler supports attribute to mark objects as hidden, mark all
52 * objects as hidden and export only objects explicitly marked to be part of
53 * the public API.
Radek Krejci5aeea3a2018-09-05 13:29:36 +020054 */
Radek Krejcic59bc972018-09-17 16:13:06 +020055#define API __attribute__((visibility("default")))
56
57/******************************************************************************
58 * Logger
59 *****************************************************************************/
Radek Krejci5aeea3a2018-09-05 13:29:36 +020060
Radek Krejci52b6d512020-10-12 12:33:17 +020061extern volatile LY_LOG_LEVEL ly_ll;
Radek Krejci1deb5be2020-08-26 16:43:36 +020062extern volatile uint32_t ly_log_opts;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020063
Radek Krejciaddfc9a2020-12-17 20:46:35 +010064struct ly_log_location_s {
65 uint64_t line; /**< One-time line value being reset after use - replaces whatever is in inputs */
66 struct ly_set inputs; /**< Set of const struct ly_in *in pointers providing the input handler with the line information (LIFO) */
67 struct ly_set scnodes; /**< Set of const struct lysc_node *scnode pointers providing the compiled schema node to generate path (LIFO) */
68 struct ly_set dnodes; /**< Set of const struct lyd_node *dnode pointers providing the data node to generate path (LIFO) */
69 struct ly_set paths; /**< Set of path strings (LIFO) */
70};
71
72/**
Radek Krejcie7b95092019-05-15 11:03:07 +020073 * @brief Print a log message and store it into the context (if provided).
74 *
75 * @param[in] ctx libyang context to store the error record. If not provided, the error is just printed.
76 * @param[in] level Log message level (error, warning, etc.)
77 * @param[in] no Error type code.
78 * @param[in] format Format string to print.
79 */
Radek Krejci5aeea3a2018-09-05 13:29:36 +020080void ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, const char *format, ...);
Radek Krejcie7b95092019-05-15 11:03:07 +020081
82/**
83 * @brief Print Validation error and store it into the context (if provided).
84 *
85 * @param[in] ctx libyang context to store the error record. If not provided, the error is just printed.
Radek Krejcie7b95092019-05-15 11:03:07 +020086 * @param[in] code Validation error code.
87 * @param[in] format Format string to print.
88 */
Radek Krejci2efc45b2020-12-22 16:25:44 +010089void ly_vlog(const struct ly_ctx *ctx, LY_VECODE code, const char *format, ...);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020090
Radek Krejciaddfc9a2020-12-17 20:46:35 +010091/**
92 * @brief Logger's location data setter.
93 *
Radek Krejciaddfc9a2020-12-17 20:46:35 +010094 * @param[in] scnode Compiled schema node.
95 * @param[in] dnode Data node.
96 * @param[in] path Direct path string to print.
97 * @param[in] in Input handler (providing line number)
98 * @param[in] line One-time line value to be reset when used.
99 * @param[in] reset Flag to indicate if the not set arguments (NULLs) are intended to rewrite the current values or if they
100 * are supposed to be ignored and the previous values should be kept.
101 */
Radek Krejciddace2c2021-01-08 11:30:56 +0100102void ly_log_location(const struct lysc_node *scnode, const struct lyd_node *dnode,
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100103 const char *path, const struct ly_in *in, uint64_t line, ly_bool reset);
104
105/**
106 * @brief Revert the specific logger's location data by number of changes made by ::ly_log_location().
107 *
aPiecekb39f56c2021-05-03 10:47:18 +0200108 * @param[in] scnode_steps Number of items in ::ly_log_location_s.scnodes to forget.
109 * @param[in] dnode_steps Number of items in ::ly_log_location_s.dnodes to forget.
110 * @param[in] path_steps Number of path strings in ::ly_log_location_s.paths to forget.
111 * @param[in] in_steps Number of input handlers ::ly_log_location_s.inputs to forget.
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100112 */
Radek Krejciddace2c2021-01-08 11:30:56 +0100113void ly_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 +0100114
115/**
116 * @brief Initiate location data for logger, all arguments are set as provided (even NULLs) - overrides the current values.
117 *
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100118 * @param[in] SCNODE Compiled schema node.
119 * @param[in] DNODE Data node.
120 * @param[in] PATH Direct path string to print.
121 * @param[in] IN Input handler (providing line number)
122 */
Radek Krejciddace2c2021-01-08 11:30:56 +0100123#define LOG_LOCINIT(SCNODE, DNODE, PATH, IN) \
124 ly_log_location(SCNODE, DNODE, PATH, IN, 0, 1)
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100125
126/**
127 * @brief Update location data for logger, not provided arguments (NULLs) are kept (does not override).
128 *
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100129 * @param[in] SCNODE Compiled schema node.
130 * @param[in] DNODE Data node.
131 * @param[in] PATH Direct path string to print.
132 * @param[in] IN Input handler (providing line number)
133 */
Radek Krejciddace2c2021-01-08 11:30:56 +0100134#define LOG_LOCSET(SCNODE, DNODE, PATH, IN) \
135 ly_log_location(SCNODE, DNODE, PATH, IN, 0, 0)
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100136
Radek Krejciddace2c2021-01-08 11:30:56 +0100137/**
138 * @brief Update location data for logger, not provided arguments (NULLs) are kept (does not override).
139 *
140 * @param[in] SCNODE_STEPS Number of the compiled schema nodes to remove from the stack.
141 * @param[in] DNODE_STEPS Number of the data nodes to remove from the stack.
142 * @param[in] PATH_STEPS Number of the direct path strings to remove from the stack.
143 * @param[in] IN_STEPS Number of the input handlers (providing line number) to remove from the stack.
144 */
145#define LOG_LOCBACK(SCNODE_STEPS, DNODE_STEPS, PATH_STEPS, IN_STEPS) \
146 ly_log_location_revert(SCNODE_STEPS, DNODE_STEPS, PATH_STEPS, IN_STEPS)
Radek Krejciaddfc9a2020-12-17 20:46:35 +0100147
Radek Krejcic0c66412020-08-21 13:53:50 +0200148#define LOGERR(ctx, errno, str, ...) ly_log(ctx, LY_LLERR, errno, str, ##__VA_ARGS__)
Radek Krejcif3f47842018-11-15 11:22:15 +0100149#define LOGWRN(ctx, str, ...) ly_log(ctx, LY_LLWRN, 0, str, ##__VA_ARGS__)
Radek Krejcic0c66412020-08-21 13:53:50 +0200150#define LOGVRB(str, ...) ly_log(NULL, LY_LLVRB, 0, str, ##__VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200151
Radek Krejci4ab61562018-09-05 15:00:37 +0200152#ifdef NDEBUG
Radek Krejcic0c66412020-08-21 13:53:50 +0200153# define LOGDBG(dbg_group, str, ...)
Radek Krejci4ab61562018-09-05 15:00:37 +0200154#else
Radek Krejci1deb5be2020-08-26 16:43:36 +0200155void ly_log_dbg(uint32_t group, const char *format, ...);
Radek Krejcic0c66412020-08-21 13:53:50 +0200156# define LOGDBG(dbg_group, str, ...) ly_log_dbg(dbg_group, str, ##__VA_ARGS__);
Radek Krejci4ab61562018-09-05 15:00:37 +0200157#endif
158
Radek Krejcie2692202020-12-01 14:21:12 +0100159/**
160 * Simple EMEM message, it can be safely stored in ::ly_err_item structures without problems when freeing.
161 */
162#define LY_EMEM_MSG "Memory allocation failed."
163
Radek Krejci859a15a2021-03-05 20:56:59 +0100164#ifdef LOGMEM
165/* overwrite shadow definition from tree_edit.h */
166#undef LOGMEM
167#endif
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200168#define LOGMEM(CTX) LOGERR(CTX, LY_EMEM, "Memory allocation failed (%s()).", __func__)
Radek Krejci859a15a2021-03-05 20:56:59 +0100169
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200170#define LOGINT(CTX) LOGERR(CTX, LY_EINT, "Internal error (%s:%d).", __FILE__, __LINE__)
171#define LOGARG(CTX, ARG) LOGERR(CTX, LY_EINVAL, "Invalid argument %s (%s()).", #ARG, __func__)
Radek Krejci2efc45b2020-12-22 16:25:44 +0100172#define LOGVAL(CTX, CODE, ...) ly_vlog(CTX, CODE, ##__VA_ARGS__)
173#define LOGVAL_LINE(CTX, LINE, CODE, ...) \
Radek Krejciddace2c2021-01-08 11:30:56 +0100174 ly_log_location(NULL, NULL, NULL, NULL, LINE, 0); \
Radek Krejci2efc45b2020-12-22 16:25:44 +0100175 ly_vlog(CTX, CODE, ##__VA_ARGS__)
Radek Krejci94aa9942018-09-07 17:12:17 +0200176
aPiecek4204b612021-05-03 09:06:16 +0200177/**
178 * @brief Print Validation error from struct ly_err_item.
179 *
180 * String ::ly_err_item.msg cannot be used directly because it may contain the % character,
181 * which is incorrectly interpreted in this situation as a conversion specification.
182 *
183 * @param[in] CTX libyang context to store the error record. If not provided, the error is just printed.
184 * @param[in] ERRITEM pointer to ly_err_item that contains an error message.
185 */
186#define LOGVAL_ERRITEM(CTX, ERRITEM) ly_vlog(CTX, ERRITEM->vecode, "%s", ERRITEM->msg)
187
Radek Krejci94aa9942018-09-07 17:12:17 +0200188#define LOGMEM_RET(CTX) LOGMEM(CTX); return LY_EMEM
189#define LOGINT_RET(CTX) LOGINT(CTX); return LY_EINT
190#define LOGARG_RET(CTX) LOGARG(CTX); return LY_EINVAL
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200191
192/*
193 * Common code to check return value and perform appropriate action.
194 */
Radek Krejcie88beef2019-05-30 15:47:19 +0200195#define LY_CHECK_GOTO(COND, GOTO) if ((COND)) {goto GOTO;}
196#define LY_CHECK_ERR_GOTO(COND, ERR, GOTO) if ((COND)) {ERR; goto GOTO;}
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100197#define LY_CHECK_RET1(RETVAL) {LY_ERR ret__ = RETVAL;if (ret__ != LY_SUCCESS) {return ret__;}}
Radek Krejcie88beef2019-05-30 15:47:19 +0200198#define LY_CHECK_RET2(COND, RETVAL) if ((COND)) {return RETVAL;}
Radek Krejcic59bc972018-09-17 16:13:06 +0200199#define LY_CHECK_RET(...) GETMACRO2(__VA_ARGS__, LY_CHECK_RET2, LY_CHECK_RET1)(__VA_ARGS__)
Radek Krejcie88beef2019-05-30 15:47:19 +0200200#define LY_CHECK_ERR_RET(COND, ERR, RETVAL) if ((COND)) {ERR; return RETVAL;}
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200201
Radek Krejcia3045382018-11-22 14:30:31 +0100202#define LY_CHECK_ARG_GOTO1(CTX, ARG, GOTO) if (!(ARG)) {LOGARG(CTX, ARG);goto GOTO;}
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200203#define LY_CHECK_ARG_GOTO2(CTX, ARG1, ARG2, GOTO) LY_CHECK_ARG_GOTO1(CTX, ARG1, GOTO);LY_CHECK_ARG_GOTO1(CTX, ARG2, GOTO)
204#define LY_CHECK_ARG_GOTO3(CTX, ARG1, ARG2, ARG3, GOTO) LY_CHECK_ARG_GOTO2(CTX, ARG1, ARG2, GOTO);LY_CHECK_ARG_GOTO1(CTX, ARG3, GOTO)
Michal Vaskodc779a82019-11-06 15:44:06 +0100205#define LY_CHECK_ARG_GOTO4(CTX, ARG1, ARG2, ARG3, ARG4, GOTO) LY_CHECK_ARG_GOTO3(CTX, ARG1, ARG2, ARG3, GOTO);\
206 LY_CHECK_ARG_GOTO1(CTX, ARG4, GOTO)
207#define LY_CHECK_ARG_GOTO(CTX, ...) GETMACRO5(__VA_ARGS__, LY_CHECK_ARG_GOTO4, LY_CHECK_ARG_GOTO3, LY_CHECK_ARG_GOTO2, \
208 LY_CHECK_ARG_GOTO1)(CTX, __VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200209
Radek Krejcia3045382018-11-22 14:30:31 +0100210#define LY_CHECK_ARG_RET1(CTX, ARG, RETVAL) if (!(ARG)) {LOGARG(CTX, ARG);return RETVAL;}
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200211#define LY_CHECK_ARG_RET2(CTX, ARG1, ARG2, RETVAL) LY_CHECK_ARG_RET1(CTX, ARG1, RETVAL);LY_CHECK_ARG_RET1(CTX, ARG2, RETVAL)
212#define LY_CHECK_ARG_RET3(CTX, ARG1, ARG2, ARG3, RETVAL) LY_CHECK_ARG_RET2(CTX, ARG1, ARG2, RETVAL);LY_CHECK_ARG_RET1(CTX, ARG3, RETVAL)
Michal Vaskodc779a82019-11-06 15:44:06 +0100213#define LY_CHECK_ARG_RET4(CTX, ARG1, ARG2, ARG3, ARG4, RETVAL) LY_CHECK_ARG_RET3(CTX, ARG1, ARG2, ARG3, RETVAL);\
214 LY_CHECK_ARG_RET1(CTX, ARG4, RETVAL)
Michal Vaskoe0665742021-02-11 11:08:44 +0100215#define LY_CHECK_ARG_RET5(CTX, ARG1, ARG2, ARG3, ARG4, ARG5, RETVAL) LY_CHECK_ARG_RET4(CTX, ARG1, ARG2, ARG3, ARG4, RETVAL);\
216 LY_CHECK_ARG_RET1(CTX, ARG5, RETVAL)
217#define LY_CHECK_ARG_RET(CTX, ...) GETMACRO6(__VA_ARGS__, LY_CHECK_ARG_RET5, LY_CHECK_ARG_RET4, LY_CHECK_ARG_RET3, \
218 LY_CHECK_ARG_RET2, LY_CHECK_ARG_RET1) (CTX, __VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200219
Radek Krejcid972c252018-09-25 13:23:39 +0200220/* count sequence size for LY_VCODE_INCHILDSTMT validation error code */
221size_t LY_VCODE_INSTREXP_len(const char *str);
222/* default maximum characters to print in LY_VCODE_INCHILDSTMT */
223#define LY_VCODE_INSTREXP_MAXLEN 20
224
Michal Vaskoecd62de2019-11-13 12:35:11 +0100225#define LY_VCODE_INCHAR LYVE_SYNTAX, "Invalid character 0x%x."
226#define LY_VCODE_INSTREXP LYVE_SYNTAX, "Invalid character sequence \"%.*s\", expected %s."
227#define LY_VCODE_EOF LYVE_SYNTAX, "Unexpected end-of-input."
228#define LY_VCODE_NTERM LYVE_SYNTAX, "%s not terminated."
229#define LY_VCODE_NSUPP LYVE_SYNTAX, "%s not supported."
230#define LY_VCODE_MOD_SUBOMD LYVE_SYNTAX, "Invalid keyword \"%s\", expected \"module\" or \"submodule\"."
231#define LY_VCODE_TRAILING_MOD LYVE_SYNTAX, "Trailing garbage \"%.*s%s\" after module, expected end-of-input."
David Sedlák1538a842019-08-08 15:38:51 +0200232#define LY_VCODE_TRAILING_SUBMOD LYVE_SYNTAX, "Trailing garbage \"%.*s%s\" after submodule, expected end-of-input."
233
Michal Vaskoecd62de2019-11-13 12:35:11 +0100234#define LY_VCODE_INVAL_MINMAX LYVE_SEMANTICS, "Invalid combination of min-elements and max-elements: min value %u is bigger than the max value %u."
Radek Krejci854e1552020-12-21 15:05:23 +0100235#define LY_VCODE_NAME_COL LYVE_SEMANTICS, "Name collision between %s of name \"%s\"."
236#define LY_VCODE_NAME2_COL LYVE_SEMANTICS, "Name collision between %s and %s of name \"%s\"."
David Sedlák0c2bab92019-07-22 15:33:19 +0200237
Michal Vaskoecd62de2019-11-13 12:35:11 +0100238#define LY_VCODE_INSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\"."
239#define LY_VCODE_INCHILDSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s\"."
240#define LY_VCODE_INCHILDSTMT2 LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s\" - the statement is allowed only in YANG 1.1 modules."
Radek Krejcia9026eb2018-12-12 16:04:47 +0100241#define LY_VCODE_INCHILDSTMSCOMB LYVE_SYNTAX_YANG, "Invalid combination of keywords \"%s\" and \"%s\" as substatements of \"%s\"."
Michal Vaskoecd62de2019-11-13 12:35:11 +0100242#define LY_VCODE_DUPSTMT LYVE_SYNTAX_YANG, "Duplicate keyword \"%s\"."
243#define LY_VCODE_DUPIDENT LYVE_SYNTAX_YANG, "Duplicate identifier \"%s\" of %s statement."
aPiecekdc12b9f2021-06-25 10:55:47 +0200244#define LY_VCODE_DUPIDENT2 LYVE_SYNTAX_YANG, "Duplicate identifier \"%s\" of %s statement - %s."
Michal Vaskoecd62de2019-11-13 12:35:11 +0100245#define LY_VCODE_INVAL LYVE_SYNTAX_YANG, "Invalid value \"%.*s\" of \"%s\"."
246#define LY_VCODE_MISSTMT LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s\"."
247#define LY_VCODE_MISSCHILDSTMT LYVE_SYNTAX_YANG, "Missing %s substatement for %s%s."
248#define LY_VCODE_INORD LYVE_SYNTAX_YANG, "Invalid keyword \"%s\", it cannot appear after \"%s\"."
249#define LY_VCODE_OOB LYVE_SYNTAX_YANG, "Value \"%.*s\" is out of \"%s\" bounds."
250#define LY_VCODE_INDEV LYVE_SYNTAX_YANG, "Deviate \"%s\" does not support keyword \"%s\"."
251#define LY_VCODE_INREGEXP LYVE_SYNTAX_YANG, "Regular expression \"%s\" is not valid (\"%s\": %s)."
David Sedlák0c2bab92019-07-22 15:33:19 +0200252
Michal Vaskoecd62de2019-11-13 12:35:11 +0100253#define LY_VCODE_INSUBELEM2 LYVE_SYNTAX_YIN, "Invalid sub-elemnt \"%s\" of \"%s\" element - this sub-element is allowed only in modules with version 1.1 or newer."
254#define LY_VCODE_INVAL_YIN LYVE_SYNTAX_YIN, "Invalid value \"%s\" of \"%s\" attribute in \"%s\" element."
255#define LY_VCODE_UNEXP_SUBELEM LYVE_SYNTAX_YIN, "Unexpected sub-element \"%.*s\" of \"%s\" element."
256#define LY_VCODE_INDEV_YIN LYVE_SYNTAX_YIN, "Deviate of this type doesn't allow \"%s\" as it's sub-element."
257#define LY_VCODE_INORDER_YIN LYVE_SYNTAX_YIN, "Invalid order of %s\'s sub-elements \"%s\" can't appear after \"%s\"."
258#define LY_VCODE_OOB_YIN LYVE_SYNTAX_YIN, "Value \"%s\" of \"%s\" attribute in \"%s\" element is out of bounds."
David Sedlák1538a842019-08-08 15:38:51 +0200259#define LY_VCODE_INCHILDSTMSCOMB_YIN LYVE_SYNTAX_YIN, "Invalid combination of sub-elemnts \"%s\" and \"%s\" in \"%s\" element."
Michal Vaskoecd62de2019-11-13 12:35:11 +0100260#define LY_VCODE_DUP_ATTR LYVE_SYNTAX_YIN, "Duplicit definition of \"%s\" attribute in \"%s\" element."
261#define LY_VCODE_UNEXP_ATTR LYVE_SYNTAX_YIN, "Unexpected attribute \"%.*s\" of \"%s\" element."
262#define LY_VCODE_MAND_SUBELEM LYVE_SYNTAX_YIN, "Missing mandatory sub-element \"%s\" of \"%s\" element."
263#define LY_VCODE_FIRT_SUBELEM LYVE_SYNTAX_YIN, "Sub-element \"%s\" of \"%s\" element must be defined as it's first sub-element."
Michal Vaskoecd62de2019-11-13 12:35:11 +0100264#define LY_VCODE_SUBELEM_REDEF LYVE_SYNTAX_YIN, "Redefinition of \"%s\" sub-element in \"%s\" element."
David Sedlák0c2bab92019-07-22 15:33:19 +0200265
Michal Vaskoecd62de2019-11-13 12:35:11 +0100266#define LY_VCODE_XP_EOE LYVE_XPATH, "Unterminated string delimited with %c (%.15s)."
Michal Vasko774ce402021-04-14 15:35:06 +0200267#define LY_VCODE_XP_INEXPR LYVE_XPATH, "Invalid character '%c'[%u] of expression \'%s\'."
Michal Vaskoecd62de2019-11-13 12:35:11 +0100268#define LY_VCODE_XP_EOF LYVE_XPATH, "Unexpected XPath expression end."
Michal Vasko0b468e62020-10-19 09:33:04 +0200269#define LY_VCODE_XP_INTOK LYVE_XPATH, "Unexpected XPath token \"%s\" (\"%.15s\")."
270#define LY_VCODE_XP_INTOK2 LYVE_XPATH, "Unexpected XPath token \"%s\" (\"%.15s\"), expected \"%s\"."
Michal Vaskoecd62de2019-11-13 12:35:11 +0100271#define LY_VCODE_XP_INFUNC LYVE_XPATH, "Unknown XPath function \"%.*s\"."
272#define LY_VCODE_XP_INARGCOUNT LYVE_XPATH, "Invalid number of arguments (%d) for the XPath function %.*s."
273#define LY_VCODE_XP_INARGTYPE LYVE_XPATH, "Wrong type of argument #%d (%s) for the XPath function %s."
274#define LY_VCODE_XP_INCTX LYVE_XPATH, "Invalid context type %s in %s."
Michal Vaskoecd62de2019-11-13 12:35:11 +0100275#define LY_VCODE_XP_INOP_1 LYVE_XPATH, "Cannot apply XPath operation %s on %s."
276#define LY_VCODE_XP_INOP_2 LYVE_XPATH, "Cannot apply XPath operation %s on %s and %s."
Michal Vasko004d3152020-06-11 19:59:22 +0200277#define LY_VCODE_XP_INMOD LYVE_XPATH, "Unknown/non-implemented module \"%.*s\"."
aPiecekbf968d92021-05-27 14:35:05 +0200278#define LY_VCODE_XP_DEPTH LYVE_XPATH, "The maximum nesting of expressions has been exceeded."
David Sedlák0c2bab92019-07-22 15:33:19 +0200279
Radek Krejci327de162019-06-14 12:52:07 +0200280#define LY_VCODE_DEV_NOT_PRESENT LYVE_REFERENCE, "Invalid deviation %s \"%s\" property \"%s\" which is not present."
Radek Krejci94aa9942018-09-07 17:12:17 +0200281
Michal Vasko538b8952021-02-17 11:27:26 +0100282#define LY_VCODE_NOWHEN LYVE_DATA, "When condition \"%s\" not satisfied."
283#define LY_VCODE_NOMAND LYVE_DATA, "Mandatory node \"%s\" instance does not exist."
Michal Vaskof03ed032020-03-04 13:31:44 +0100284#define LY_VCODE_DUP LYVE_DATA, "Duplicate instance of \"%s\"."
285#define LY_VCODE_DUPCASE LYVE_DATA, "Data for both cases \"%s\" and \"%s\" exist."
Michal Vasko224e7772021-02-18 14:22:33 +0100286#define LY_VCODE_UNEXPNODE LYVE_DATA, "Unexpected data %s node \"%s\" found."
Michal Vasko9f96a052020-03-10 09:41:45 +0100287#define LY_VCODE_NOKEY LYVE_DATA, "List instance is missing its key \"%s\"."
Michal Vaskoecd62de2019-11-13 12:35:11 +0100288
Radek Krejci07a55962021-03-02 20:16:43 +0100289#define LY_ERRMSG_NOPATTERN /* LYVE_DATA */ "Unsatisfied pattern - \"%.*s\" does not conform to %s\"%s\"."
Michal Vasko5c900d62021-04-29 15:21:04 +0200290#define LY_ERRMSG_NOLENGTH /* LYVE_DATA */ "Unsatisfied length - string \"%.*s\" length is not allowed."
Michal Vaskof19c7242021-04-27 13:32:46 +0200291#define LY_ERRMSG_NORANGE /* LYVE_DATA */ "Unsatisfied range - value \"%.*s\" is out of the allowed range."
Michal Vasko224e7772021-02-18 14:22:33 +0100292
293/* RFC 7950 section 15 errors */
294#define LY_VCODE_NOUNIQ LYVE_DATA, "Unique data leaf(s) \"%s\" not satisfied in \"%s\" and \"%s\"."
295#define LY_VCODE_NOMAX LYVE_DATA, "Too many \"%s\" instances."
296#define LY_VCODE_NOMIN LYVE_DATA, "Too few \"%s\" instances."
297#define LY_VCODE_NOMUST LYVE_DATA, "Must condition \"%s\" not satisfied."
298#define LY_VCODE_NOMAND_CHOIC LYVE_DATA, "Mandatory choice \"%s\" data do not exist."
299
300/* RFC 7950 section 15 error messages used in type plugin validation callbacks */
Radek Krejci07a55962021-03-02 20:16:43 +0100301#define LY_ERRMSG_NOLREF_VAL /* LYVE_DATA */ "Invalid leafref value \"%s\" - no target instance \"%s\" with the same value."
302#define LY_ERRMSG_NOLREF_INST /* LYVE_DATA */ "Invalid leafref value \"%s\" - no existing target instance \"%s\"."
303#define LY_ERRMSG_NOINST /* LYVE_DATA */ "Invalid instance-identifier \"%s\" value - required instance not found."
Michal Vasko224e7772021-02-18 14:22:33 +0100304
Radek Krejcic59bc972018-09-17 16:13:06 +0200305/******************************************************************************
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200306 * Context
307 *****************************************************************************/
308
309/**
310 * @brief Context of the YANG schemas
311 */
312struct ly_ctx {
313 struct dict_table dict; /**< dictionary to effectively store strings used in the context related structures */
314 struct ly_set search_paths; /**< set of directories where to search for schema's imports/includes */
Michal Vasko89b5c072020-10-06 13:52:44 +0200315 struct ly_set list; /**< set of loaded YANG schemas */
Radek Krejcid33273d2018-10-25 14:55:52 +0200316 ly_module_imp_clb imp_clb; /**< Optional callback for retrieving missing included or imported models in a custom way. */
Radek Krejci8678fa42020-08-18 16:07:28 +0200317 void *imp_clb_data; /**< Optional private data for ::ly_ctx.imp_clb */
Michal Vasko794ab4b2021-03-31 09:42:19 +0200318 uint16_t change_count; /**< Count of changes of the context, on some changes it could be incremented more times */
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200319 uint16_t flags; /**< context settings, see @ref contextoptions. */
320 pthread_key_t errlist_key; /**< key for the thread-specific list of errors related to the context */
Michal Vasko11f76c82021-04-15 14:36:14 +0200321 pthread_mutex_t lyb_hash_lock; /**< lock for storing LYB schema hashes in schema nodes */
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200322};
323
Radek Krejcid33273d2018-10-25 14:55:52 +0200324/**
Radek Krejci0ad51f12020-07-16 12:08:12 +0200325 * @brief Get the (only) implemented YANG module specified by its name.
326 *
327 * @param[in] ctx Context where to search.
328 * @param[in] name Name of the YANG module to get.
329 * @param[in] name_len Optional length of the @p name. If zero, NULL-terminated name is expected.
330 * @return The only implemented YANG module revision of the given name in the given context. NULL if there is no
331 * implemented module of the given name.
332 */
333struct lys_module *ly_ctx_get_module_implemented2(const struct ly_ctx *ctx, const char *name, size_t name_len);
334
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200335/******************************************************************************
Michal Vasko1324b6c2018-09-07 11:16:23 +0200336 * Generic useful functions.
Radek Krejcic59bc972018-09-17 16:13:06 +0200337 *****************************************************************************/
Michal Vasko1324b6c2018-09-07 11:16:23 +0200338
Michal Vaskob36053d2020-03-26 15:49:30 +0100339/**
340 * @brief Insert string into dictionary.
341 *
342 * @param[in] CTX libyang context.
343 * @param[in] STRING string to store.
344 * @param[in] LEN length of the string in WORD to store.
aPiecekb39f56c2021-05-03 10:47:18 +0200345 * @param[in,out] DYNAMIC Set to 1 if @p STRING is dynamically allocated, 0 otherwise.
346 * If set to 1, zerocopy version of lydict_insert is used.
347 * @param[out] TARGET pointer is set to @p STRING value stored in the dictionary.
Michal Vaskob36053d2020-03-26 15:49:30 +0100348 */
Radek Krejci011e4aa2020-09-04 15:22:31 +0200349#define INSERT_STRING_RET(CTX, STRING, LEN, DYNAMIC, TARGET) \
350 if (DYNAMIC) { \
351 LY_CHECK_RET(lydict_insert_zc(CTX, (char *)(STRING), &(TARGET))); \
352 } else { \
353 LY_CHECK_RET(lydict_insert(CTX, LEN ? (STRING) : "", LEN, &(TARGET))); \
354 } \
355 DYNAMIC = 0
Michal Vaskob36053d2020-03-26 15:49:30 +0100356
Michal Vasko1324b6c2018-09-07 11:16:23 +0200357/**
358 * @brief Wrapper for realloc() call. The only difference is that if it fails to
359 * allocate the requested memory, the original memory is freed as well.
360 *
361 * @param[in] ptr Memory to reallocate.
362 * @param[in] size New size of the memory block.
363 *
364 * @return Pointer to the new memory, NULL on error.
365 */
366void *ly_realloc(void *ptr, size_t size);
367
Radek Krejcif345c012018-09-19 11:12:59 +0200368/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200369 * @brief Just like strchr() function except limit the number of examined characters.
370 *
371 * @param[in] s String to search in.
372 * @param[in] c Character to search for.
373 * @param[in] len Limit the search to this number of characters in @p s.
aPiecekb0445f22021-06-24 11:34:07 +0200374 * @return Pointer to first @p c occurrence in @p s, NULL if not found in first @p len characters.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200375 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200376char *ly_strnchr(const char *s, int c, size_t len);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200377
378/**
aPiecekb39f56c2021-05-03 10:47:18 +0200379 * @brief Compare NULL-terminated @p refstr with @p str_len bytes from @p str.
Radek Krejci7f9b6512019-09-18 13:11:09 +0200380 *
aPiecekb39f56c2021-05-03 10:47:18 +0200381 * @param[in] refstr NULL-terminated string which must match @p str_len bytes from @p str followed by NULL-byte.
382 * @param[in] str String to compare.
Radek Krejci7f9b6512019-09-18 13:11:09 +0200383 * @param[in] str_len Number of bytes to take into comparison from @p str.
384 * @return An integer less than, equal to, or greater than zero if @p refstr matches,
385 * respectively, to be less than, to match, or be greater than @p str.
386 */
387int ly_strncmp(const char *refstr, const char *str, size_t str_len);
388
389/**
Michal Vasko15dc9fa2021-05-03 14:33:05 +0200390 * @brief Similar functionality to strtoul() except number length in the string
391 * must be specified and the whole number must be parsed for success.
392 *
393 * @param[in] nptr Number string.
394 * @param[in] len Number string length starting at @p nptr.
395 * @param[out] ret Parsed number.
396 * @return LY_EDENIED on overflow.
397 * @return LY_EVALID on encountering a non-digit character.
398 * @return LY_SUCCESS on success.
399 */
400LY_ERR ly_strntou8(const char *nptr, size_t len, uint8_t *ret);
401
402/**
Michal Vasko55e35212021-04-28 09:38:56 +0200403 * @brief Similar to strlen(3) but accepts NULL and returns 0.
404 *
405 * @param[in] s String to examine.
406 * @return Length of @p s.
407 */
408static inline size_t
409ly_strlen(const char *s)
410{
411 return s ? strlen(s) : 0;
412}
413
414/**
aPiecekf102d4d2021-03-30 12:18:38 +0200415 * @brief Get all possible value prefixes from an YANG value by iteratively returning specific substrings.
416 *
417 * The function looks for possible prefix ending in a colon at the beginning of @p str_begin.
418 * If @p str_begin does not contain the prefix at the beginning, then either:
419 * 1. Returns the entire input string if the input string does not contain the prefix at all.
420 * 2. Returns a substring before the prefix. The substring is terminated by any character
421 * that is not allowed to be present in prefix (except colon).
422 *
423 * Examples of inputs and outputs are shown in the table below.
424 * Output string @p str_next is used in the next iteration as input parameter @p str_begin.
425 @verbatim
426 | INPUT | OUTPUT |
427 | | iteration 1 | iteration 2 | iteration 3 |
428 |------------------------------ |------------------|------------------|-----------------|
429 | /namespace_prefix:some_string | / | namespace_prefix | some_string |
430 | namespace_prefix:some_string | namespace_prefix | some_string | NULL |
431 | /some_string | /some_string | NULL | NULL |
432 @endverbatim
433 *
434 *
435 * @param[in] str_begin Begin of the input string.
436 * @param[in] str_end Length of the @p str_begin. If set to NULL then the @p str_begin must be NULL-terminated string.
aPieceke3f828d2021-05-10 15:34:41 +0200437 * @param[out] len Number of bytes (length) of the found prefix/substring starting at @p str_begin.
aPiecekf102d4d2021-03-30 12:18:38 +0200438 * @param[out] is_prefix Type of substring found. Set to True for prefix, otherwise False.
439 * @param[out] str_next Remaining string starting after prefix/substring and ending with @p str_end.
440 * If the @p is_prefix is set to True then the colon character is skipped.
441 * If no string remains, it is set to NULL.
aPieceke3f828d2021-05-10 15:34:41 +0200442 * @return LY_ERR value.
aPiecekf102d4d2021-03-30 12:18:38 +0200443 */
aPieceke3f828d2021-05-10 15:34:41 +0200444LY_ERR ly_value_prefix_next(const char *str_begin, const char *str_end, uint32_t *len, ly_bool *is_prefix, const char **str_next);
aPiecekf102d4d2021-03-30 12:18:38 +0200445
446/**
Radek Krejci1798aae2020-07-14 13:26:06 +0200447 * @brief Wrapper around strlen() to handle NULL strings.
448 */
449#define ly_strlen(STR) (STR ? strlen(STR) : 0)
450
451/**
Radek Krejci822a9482021-06-02 21:23:22 +0200452 * @brief Compile-time strlen() for string constants.
Radek Krejcif13b87b2020-12-01 22:02:17 +0100453 *
454 * Use to avoid magic numbers usage
455 */
456#define ly_strlen_const(STR) (sizeof STR - 1)
457
Radek Krejci71512f92021-06-02 21:20:06 +0200458/**
459 * @brief Macro to simply put couple of string length and the string as
460 * printf's arguments for %.*s. Use only with constant strings.
461 */
462#define LY_PRI_LENSTR(STR) ly_strlen_const(STR), STR
463
Radek Krejcif13b87b2020-12-01 22:02:17 +0100464#define ly_sizeofarray(ARRAY) (sizeof ARRAY / sizeof *ARRAY)
465
aPiecek889bfce2021-06-15 15:52:58 +0200466/**
467 * @brief Check for overflow during the addition of two unsigned integers.
468 */
469#define LY_OVERFLOW_ADD(MAX, X, Y) (X > MAX - Y)
470
471/**
472 * @brief Check for overflow during the multiplication of two unsigned integers.
473 */
474#define LY_OVERFLOW_MUL(MAX, X, Y) (X > MAX / Y)
475
Radek Krejcif13b87b2020-12-01 22:02:17 +0100476/*
477 * Numerical bases for use in functions like strtoll() instead of magic numbers
478 */
479#define LY_BASE_DEC 10 /**< Decimal numeral base */
480#define LY_BASE_OCT 8 /**< Octal numeral base */
481#define LY_BASE_HEX 16 /**< Hexadecimal numeral base */
482
483/**
484 * Maximal length of (needed storage for) a number encoded as a string.
485 *
486 * Applies not only for standard numbers, but also for YANG's decimal64.
487 */
488#define LY_NUMBER_MAXLEN 22
489
490/**
Radek Krejcib416be62018-10-01 14:51:45 +0200491 * @brief Get UTF8 code point of the next character in the input string.
492 *
493 * @param[in,out] input Input string to process, updated according to the processed/read data.
494 * @param[out] utf8_char UTF8 code point of the next character.
495 * @param[out] bytes_read Number of bytes used to encode the read utf8_char.
496 * @return LY_ERR value
497 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100498LY_ERR ly_getutf8(const char **input, uint32_t *utf8_char, size_t *bytes_read);
Radek Krejcib416be62018-10-01 14:51:45 +0200499
500/**
Radek Krejci50f0c6b2020-06-18 16:31:48 +0200501 * Store UTF-8 character specified as 4byte integer into the dst buffer.
502 *
503 * UTF-8 mapping:
504 * 00000000 -- 0000007F: 0xxxxxxx
505 * 00000080 -- 000007FF: 110xxxxx 10xxxxxx
506 * 00000800 -- 0000FFFF: 1110xxxx 10xxxxxx 10xxxxxx
507 * 00010000 -- 001FFFFF: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
508 *
509 * Includes checking for valid characters (following RFC 7950, sec 9.4)
510 *
511 * @param[in, out] dst Destination buffer to store the UTF-8 character, must provide enough space (up to 4 bytes) for storing the UTF-8 character.
512 * @param[in] value 32b value of the UTF-8 character to store.
513 * @param[out] bytes_written Number of bytes written into @p dst (size of the written UTF-8 character).
514 * @return LY_SUCCESS on success
515 * @return LY_EINVAL in case of invalid UTF-8 @p value to store.
516 */
517LY_ERR ly_pututf8(char *dst, uint32_t value, size_t *bytes_written);
518
519/**
Radek Krejci76c98012019-08-14 11:23:24 +0200520 * @brief Get number of characters in the @p str, taking multibyte characters into account.
521 * @param[in] str String to examine.
522 * @param[in] bytes Number of valid bytes that are supposed to be taken into account in @p str.
523 * This parameter is useful mainly for non NULL-terminated strings. In case of NULL-terminated
524 * string, strlen() can be used.
525 * @return Number of characters in (possibly) multibyte characters string.
526 */
527size_t ly_utf8len(const char *str, size_t bytes);
528
529/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100530 * @brief Parse signed integer with possible limitation.
531 * @param[in] val_str String value containing signed integer, note that
532 * nothing else than whitespaces are expected after the value itself.
Radek Krejci249973a2019-06-10 10:50:54 +0200533 * @param[in] val_len Length of the @p val_str string.
Radek Krejci4f28eda2018-11-12 11:46:16 +0100534 * @param[in] min Limitation for the value which must not be lower than min.
535 * @param[in] max Limitation for the value which must not be higher than max.
536 * @param[in] base Numeric base for parsing:
537 * 0 - to accept decimal, octal, hexadecimal (e.g. in default value)
538 * 10 - to accept only decimal (e.g. data instance value)
539 * @param[out] ret Resulting value.
540 * @return LY_ERR value:
541 * LY_EDENIED - the value breaks the limits,
542 * LY_EVALID - string contains invalid value,
543 * LY_SUCCESS - successful parsing.
544 */
Radek Krejci249973a2019-06-10 10:50:54 +0200545LY_ERR ly_parse_int(const char *val_str, size_t val_len, int64_t min, int64_t max, int base, int64_t *ret);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100546
547/**
548 * @brief Parse unsigned integer with possible limitation.
549 * @param[in] val_str String value containing unsigned integer, note that
550 * nothing else than whitespaces are expected after the value itself.
Radek Krejci249973a2019-06-10 10:50:54 +0200551 * @param[in] val_len Length of the @p val_str string.
Radek Krejci4f28eda2018-11-12 11:46:16 +0100552 * @param[in] max Limitation for the value which must not be higher than max.
553 * @param[in] base Numeric base for parsing:
554 * 0 - to accept decimal, octal, hexadecimal (e.g. in default value)
555 * 10 - to accept only decimal (e.g. data instance value)
556 * @param[out] ret Resulting value.
557 * @return LY_ERR value:
558 * LY_EDENIED - the value breaks the limits,
559 * LY_EVALID - string contains invalid value,
560 * LY_SUCCESS - successful parsing.
561 */
Radek Krejci249973a2019-06-10 10:50:54 +0200562LY_ERR ly_parse_uint(const char *val_str, size_t val_len, uint64_t max, int base, uint64_t *ret);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100563
564/**
Radek Krejcib4a4a272019-06-10 12:44:52 +0200565 * @brief Parse a node-identifier.
566 *
567 * node-identifier = [prefix ":"] identifier
568 *
569 * @param[in, out] id Identifier to parse. When returned, it points to the first character which is not part of the identifier.
570 * @param[out] prefix Node's prefix, NULL if there is not any.
571 * @param[out] prefix_len Length of the node's prefix, 0 if there is not any.
572 * @param[out] name Node's name.
aPiecekb39f56c2021-05-03 10:47:18 +0200573 * @param[out] name_len Length of the node's name.
Radek Krejcib4a4a272019-06-10 12:44:52 +0200574 * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the id.
575 */
576LY_ERR ly_parse_nodeid(const char **id, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len);
577
578/**
579 * @brief parse instance-identifier's predicate, supports key-predicate, leaf-list-predicate and pos rules from YANG ABNF Grammar.
580 *
581 * @param[in, out] pred Predicate string (including the leading '[') to parse. The string is updated according to what was parsed
582 * (even for error case, so it can be used to determine which substring caused failure).
583 * @param[in] limit Limiting length of the @p pred. Function expects NULL terminated string which is not overread.
584 * The limit value is not checked with each character, so it can be overread and the failure is detected later.
Radek Krejci084289f2019-07-09 17:35:30 +0200585 * @param[in] format Input format of the data containing the @p pred.
Radek Krejcib4a4a272019-06-10 12:44:52 +0200586 * @param[out] prefix Start of the node-identifier's prefix if any, NULL in case of pos or leaf-list-predicate rules.
587 * @param[out] prefix_len Length of the parsed @p prefix.
588 * @param[out] id Start of the node-identifier's identifier string, NULL in case of pos rule, "." in case of leaf-list-predicate rule.
589 * @param[out] id_len Length of the parsed @p id.
Radek Krejci084289f2019-07-09 17:35:30 +0200590 * @param[out] value Start of the quoted-string (without quotation marks), not NULL in case of success.
Radek Krejcib4a4a272019-06-10 12:44:52 +0200591 * @param[out] value_len Length of the parsed @p value.
592 * @param[out] errmsg Error message string in case of error.
593 * @return LY_SUCCESS in case a complete predicate was parsed.
594 * @return LY_EVALID in case of invalid predicate form.
595 * @return LY_EINVAL in case of reaching @p limit when parsing @p pred.
596 */
Radek Krejci084289f2019-07-09 17:35:30 +0200597LY_ERR ly_parse_instance_predicate(const char **pred, size_t limit, LYD_FORMAT format,
Radek Krejci0f969882020-08-21 16:56:47 +0200598 const char **prefix, size_t *prefix_len, const char **id, size_t *id_len,
599 const char **value, size_t *value_len, const char **errmsg);
Michal Vasko1324b6c2018-09-07 11:16:23 +0200600
Radek Krejcif345c012018-09-19 11:12:59 +0200601/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200602 * @brief mmap(2) wrapper to map input files into memory to unify parsing.
Radek Krejcif345c012018-09-19 11:12:59 +0200603 *
Radek Krejci86d106e2018-10-18 09:53:19 +0200604 * The address space is allocate only for reading.
605 *
606 * @param[in] ctx libyang context for logging
607 * @param[in] fd Open file descriptor of a file to map.
608 * @param[out] length Allocated size.
609 * @param[out] addr Address where the file is mapped.
Radek Krejcif345c012018-09-19 11:12:59 +0200610 * @return LY_ERR value.
611 */
Radek Krejci86d106e2018-10-18 09:53:19 +0200612LY_ERR ly_mmap(struct ly_ctx *ctx, int fd, size_t *length, void **addr);
Michal Vasko841d1a92018-09-07 15:40:31 +0200613
Radek Krejci86d106e2018-10-18 09:53:19 +0200614/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200615 * @brief munmap(2) wrapper to free the memory mapped by ::ly_mmap()
Michal Vasko1324b6c2018-09-07 11:16:23 +0200616 *
Radek Krejci86d106e2018-10-18 09:53:19 +0200617 * @param[in] addr Address where the input file is mapped.
618 * @param[in] length Allocated size of the address space.
619 * @return LY_ERR value.
620 */
621LY_ERR ly_munmap(void *addr, size_t length);
622
623/**
Radek Krejci4546aa62019-07-15 16:53:32 +0200624 * @brief Concatenate formating string to the @p dest.
625 *
626 * @param[in, out] dest String to be concatenated by @p format.
627 * Note that the input string can be reallocated during concatenation.
628 * @param[in] format Formating string (as for printf) which is supposed to be added after @p dest.
629 * @return LY_SUCCESS or LY_EMEM.
630 */
631LY_ERR ly_strcat(char **dest, const char *format, ...);
632
David Sedláke6cd89e2019-08-07 12:46:02 +0200633#endif /* LY_COMMON_H_ */