blob: df65edcc2fdf54dd07b60b4431b5ff29c3db0825 [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 Krejcib7db73a2018-10-24 14:18:40 +020018#define _DEFAULT_SOURCE
19#define _GNU_SOURCE
Radek Krejcib7db73a2018-10-24 14:18:40 +020020
Radek Krejcie7b95092019-05-15 11:03:07 +020021#include <features.h>
Radek Krejci6caa6ab2018-10-24 10:04:48 +020022#include <pthread.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020023#include <stdc-predef.h>
24#include <stddef.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020025#include <stdint.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020026
Radek Krejci2c22f122018-09-05 15:08:03 +020027#include "config.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020028
Radek Krejcid33273d2018-10-25 14:55:52 +020029#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020030#include "dict.h"
Radek Krejci6caa6ab2018-10-24 10:04:48 +020031#include "hash_table.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020032#include "log.h"
33#include "set.h"
34
35struct ly_ctx;
Radek Krejci5aeea3a2018-09-05 13:29:36 +020036
37#if __STDC_VERSION__ >= 201112 && !defined __STDC_NO_THREADS__
38# define THREAD_LOCAL _Thread_local
39#elif defined __GNUC__ || \
40 defined __SUNPRO_C || \
41 defined __xlC__
42# define THREAD_LOCAL __thread
43#else
44# error "Cannot define THREAD_LOCAL"
45#endif
46
Radek Krejcic59bc972018-09-17 16:13:06 +020047#define GETMACRO1(_1, NAME, ...) NAME
Radek Krejci5aeea3a2018-09-05 13:29:36 +020048#define GETMACRO2(_1, _2, NAME, ...) NAME
49#define GETMACRO3(_1, _2, _3, NAME, ...) NAME
50#define GETMACRO4(_1, _2, _3, _4, NAME, ...) NAME
51
52/*
Radek Krejcic59bc972018-09-17 16:13:06 +020053 * If the compiler supports attribute to mark objects as hidden, mark all
54 * objects as hidden and export only objects explicitly marked to be part of
55 * the public API.
Radek Krejci5aeea3a2018-09-05 13:29:36 +020056 */
Radek Krejcic59bc972018-09-17 16:13:06 +020057#define API __attribute__((visibility("default")))
58
Radek Krejcicad716e2018-11-26 15:18:27 +010059#ifndef __USE_GNU
60/*
61 * If we don't have GNU extension, implement these function on your own
62 */
63char *get_current_dir_name(void);
64#endif
65
Radek Krejcic59bc972018-09-17 16:13:06 +020066/******************************************************************************
Radek Krejcie7b95092019-05-15 11:03:07 +020067 * Compatibility functions
68 *****************************************************************************/
69
70#ifndef HAVE_STRNSTR
71/**
72 * @brief Find the first occurrence of find in s, where the search is limited to the
73 * first slen characters of s.
74 */
75char *strnstr(const char *s, const char *find, size_t slen);
76#endif
77
78
79/******************************************************************************
Radek Krejcic59bc972018-09-17 16:13:06 +020080 * Logger
81 *****************************************************************************/
Radek Krejci5aeea3a2018-09-05 13:29:36 +020082
83/* internal logging options */
84enum int_log_opts {
85 ILO_LOG = 0, /* log normally */
86 ILO_STORE, /* only store any messages, they will be processed higher on stack */
87 ILO_IGNORE, /* completely ignore messages */
88 ILO_ERR2WRN, /* change errors to warnings */
89};
90
Radek Krejci94aa9942018-09-07 17:12:17 +020091enum LY_VLOG_ELEM {
92 LY_VLOG_NONE = 0,
93 LY_VLOG_LINE,/* line number */
94 LY_VLOG_LYS, /* struct lysc_node* */
95 LY_VLOG_LYD, /* struct lyd_node* */
96 LY_VLOG_STR, /* const char* */
97 LY_VLOG_PREV /* use exact same previous path */
98};
99
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200100extern THREAD_LOCAL enum int_log_opts log_opt;
101extern volatile uint8_t ly_log_level;
102extern volatile uint8_t ly_log_opts;
103
Radek Krejcie7b95092019-05-15 11:03:07 +0200104/**
105 * @brief Set error-app-tag to the last error record in the context.
106 * @param[in] ctx libyang context where the error records are present.
107 * @param[in] apptag The error-app-tag value to store.
108 */
109void ly_err_last_set_apptag(const struct ly_ctx *ctx, const char *apptag);
110
111/**
112 * @brief Print a log message and store it into the context (if provided).
113 *
114 * @param[in] ctx libyang context to store the error record. If not provided, the error is just printed.
115 * @param[in] level Log message level (error, warning, etc.)
116 * @param[in] no Error type code.
117 * @param[in] format Format string to print.
118 */
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200119void ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, const char *format, ...);
Radek Krejcie7b95092019-05-15 11:03:07 +0200120
121/**
122 * @brief Print Validation error and store it into the context (if provided).
123 *
124 * @param[in] ctx libyang context to store the error record. If not provided, the error is just printed.
125 * @param[in] elem_type Type of the data in @p elem variable.
126 * @param[in] elem Object to provide more information about the place where the error appeared.
127 * @param[in] code Validation error code.
128 * @param[in] format Format string to print.
129 */
Radek Krejci94aa9942018-09-07 17:12:17 +0200130void ly_vlog(const struct ly_ctx *ctx, enum LY_VLOG_ELEM elem_type, const void *elem, LY_VECODE code, const char *format, ...);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200131
132#define LOGERR(ctx, errno, str, args...) ly_log(ctx, LY_LLERR, errno, str, ##args)
Radek Krejcif3f47842018-11-15 11:22:15 +0100133#define LOGWRN(ctx, str, ...) ly_log(ctx, LY_LLWRN, 0, str, ##__VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200134#define LOGVRB(str, args...) ly_log(NULL, LY_LLVRB, 0, str, ##args)
135
Radek Krejci4ab61562018-09-05 15:00:37 +0200136#ifdef NDEBUG
137# define LOGDBG(dbg_group, str, args...)
138#else
139 void ly_log_dbg(int group, const char *format, ...);
140# define LOGDBG(dbg_group, str, args...) ly_log_dbg(dbg_group, str, ##args);
141#endif
142
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200143#define LOGMEM(CTX) LOGERR(CTX, LY_EMEM, "Memory allocation failed (%s()).", __func__)
144#define LOGINT(CTX) LOGERR(CTX, LY_EINT, "Internal error (%s:%d).", __FILE__, __LINE__)
145#define LOGARG(CTX, ARG) LOGERR(CTX, LY_EINVAL, "Invalid argument %s (%s()).", #ARG, __func__)
Radek Krejcic07921a2018-09-17 11:40:15 +0200146#define LOGVAL(CTX, ELEM_TYPE, ELEM, CODE, FORMAT...) ly_vlog(CTX, ELEM_TYPE, ELEM, CODE, ##FORMAT)
Radek Krejci94aa9942018-09-07 17:12:17 +0200147
148#define LOGMEM_RET(CTX) LOGMEM(CTX); return LY_EMEM
149#define LOGINT_RET(CTX) LOGINT(CTX); return LY_EINT
150#define LOGARG_RET(CTX) LOGARG(CTX); return LY_EINVAL
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200151
152/*
153 * Common code to check return value and perform appropriate action.
154 */
155#define LY_CHECK_GOTO(COND, GOTO) if (COND) {goto GOTO;}
156#define LY_CHECK_ERR_GOTO(COND, ERR, GOTO) if (COND) {ERR; goto GOTO;}
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100157#define LY_CHECK_RET1(RETVAL) {LY_ERR ret__ = RETVAL;if (ret__ != LY_SUCCESS) {return ret__;}}
Radek Krejcic59bc972018-09-17 16:13:06 +0200158#define LY_CHECK_RET2(COND, RETVAL) if (COND) {return RETVAL;}
159#define LY_CHECK_RET(...) GETMACRO2(__VA_ARGS__, LY_CHECK_RET2, LY_CHECK_RET1)(__VA_ARGS__)
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200160#define LY_CHECK_ERR_RET(COND, ERR, RETVAL) if (COND) {ERR; return RETVAL;}
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200161
Radek Krejcia3045382018-11-22 14:30:31 +0100162#define LY_CHECK_ARG_GOTO1(CTX, ARG, GOTO) if (!(ARG)) {LOGARG(CTX, ARG);goto GOTO;}
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200163#define LY_CHECK_ARG_GOTO2(CTX, ARG1, ARG2, GOTO) LY_CHECK_ARG_GOTO1(CTX, ARG1, GOTO);LY_CHECK_ARG_GOTO1(CTX, ARG2, GOTO)
164#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)
165#define LY_CHECK_ARG_GOTO(CTX, ...) GETMACRO4(__VA_ARGS__, LY_CHECK_ARG_GOTO3, LY_CHECK_ARG_GOTO2, LY_CHECK_ARG_GOTO1)(CTX, __VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200166
Radek Krejcia3045382018-11-22 14:30:31 +0100167#define LY_CHECK_ARG_RET1(CTX, ARG, RETVAL) if (!(ARG)) {LOGARG(CTX, ARG);return RETVAL;}
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200168#define LY_CHECK_ARG_RET2(CTX, ARG1, ARG2, RETVAL) LY_CHECK_ARG_RET1(CTX, ARG1, RETVAL);LY_CHECK_ARG_RET1(CTX, ARG2, RETVAL)
169#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)
170#define LY_CHECK_ARG_RET(CTX, ...) GETMACRO4(__VA_ARGS__, LY_CHECK_ARG_RET3, LY_CHECK_ARG_RET2, LY_CHECK_ARG_RET1)(CTX, __VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200171
Radek Krejcid972c252018-09-25 13:23:39 +0200172/* count sequence size for LY_VCODE_INCHILDSTMT validation error code */
173size_t LY_VCODE_INSTREXP_len(const char *str);
174/* default maximum characters to print in LY_VCODE_INCHILDSTMT */
175#define LY_VCODE_INSTREXP_MAXLEN 20
176
Michal Vasko58257712018-09-12 11:11:38 +0200177#define LY_VCODE_INCHAR LYVE_SYNTAX, "Invalid character 0x%x."
Michal Vasko37d705c2018-09-12 15:31:26 +0200178#define LY_VCODE_INSTREXP LYVE_SYNTAX, "Invalid character sequence \"%.*s\", expected %s."
Michal Vasko58257712018-09-12 11:11:38 +0200179#define LY_VCODE_EOF LYVE_SYNTAX, "Unexpected end-of-file."
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200180#define LY_VCODE_NTERM LYVE_SYNTAX, "%s not terminated."
181#define LY_VCODE_NSUPP LYVE_SYNTAX, "%s not supported."
Radek Krejci94aa9942018-09-07 17:12:17 +0200182#define LY_VCODE_INSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\"."
Michal Vasko58257712018-09-12 11:11:38 +0200183#define LY_VCODE_INCHILDSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s\"."
Radek Krejci10113652018-11-14 16:56:50 +0100184#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 +0100185#define LY_VCODE_INCHILDSTMSCOMB LYVE_SYNTAX_YANG, "Invalid combination of keywords \"%s\" and \"%s\" as substatements of \"%s\"."
Michal Vasko58257712018-09-12 11:11:38 +0200186#define LY_VCODE_DUPSTMT LYVE_SYNTAX_YANG, "Duplicate keyword \"%s\"."
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100187#define LY_VCODE_DUPIDENT LYVE_SYNTAX_YANG, "Duplicate identifier \"%s\" of %s statement."
Michal Vasko37d705c2018-09-12 15:31:26 +0200188#define LY_VCODE_INVAL LYVE_SYNTAX_YANG, "Invalid value \"%.*s\" of \"%s\"."
Michal Vasko58257712018-09-12 11:11:38 +0200189#define LY_VCODE_MISSTMT LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s\"."
Radek Krejci555cb5b2018-11-16 14:54:33 +0100190#define LY_VCODE_MISSCHILDSTMT LYVE_SYNTAX_YANG, "Missing %s substatement for %s%s."
Michal Vasko58257712018-09-12 11:11:38 +0200191#define LY_VCODE_INORD LYVE_SYNTAX_YANG, "Invalid keyword \"%s\", it cannot appear after \"%s\"."
Michal Vasko37d705c2018-09-12 15:31:26 +0200192#define LY_VCODE_OOB LYVE_SYNTAX_YANG, "Value \"%.*s\" is out of \"%s\" bounds."
Michal Vasko58257712018-09-12 11:11:38 +0200193#define LY_VCODE_INDEV LYVE_SYNTAX_YANG, "Deviate \"%s\" does not support keyword \"%s\"."
Radek Krejci4586a022018-11-13 11:29:26 +0100194#define LY_VCODE_INREGEXP LYVE_SYNTAX_YANG, "Regular expression \"%s\" is not valid (\"%s\": %s)."
Radek Krejcib1646a92018-11-02 16:08:26 +0100195#define LY_VCODE_XP_EOE LYVE_XPATH, "Unterminated string delimited with %c (%.15s)."
Radek Krejcid4270262019-01-07 15:07:25 +0100196#define LY_VCODE_XP_INEXPR LYVE_XPATH, "Invalid character number %u of expression \'%s\'."
Radek Krejciccd20f12019-02-15 14:12:27 +0100197#define LY_VCODE_DEV_NODETYPE LYVE_REFERENCE, "Invalid deviation (%s) of %s node - it is not possible to %s \"%s\" property."
198#define LY_VCODE_DEV_NOT_PRESENT LYVE_REFERENCE, "Invalid deviation (%s) %s \"%s\" property \"%s\" which is not present."
Radek Krejci94aa9942018-09-07 17:12:17 +0200199
Radek Krejcic59bc972018-09-17 16:13:06 +0200200/******************************************************************************
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200201 * Context
202 *****************************************************************************/
203
204/**
205 * @brief Context of the YANG schemas
206 */
207struct ly_ctx {
208 struct dict_table dict; /**< dictionary to effectively store strings used in the context related structures */
209 struct ly_set search_paths; /**< set of directories where to search for schema's imports/includes */
210 struct ly_set list; /**< set of YANG schemas */
Radek Krejcid33273d2018-10-25 14:55:52 +0200211 ly_module_imp_clb imp_clb; /**< Optional callback for retrieving missing included or imported models in a custom way. */
212 void *imp_clb_data; /**< Optional private data for imp_clb() */
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200213 uint16_t module_set_id; /**< ID of the current set of schemas */
214 uint16_t flags; /**< context settings, see @ref contextoptions. */
215 pthread_key_t errlist_key; /**< key for the thread-specific list of errors related to the context */
216};
217
Radek Krejcid33273d2018-10-25 14:55:52 +0200218/**
219 * @brief Try to find submodule in the context. Submodules are present only in the parsed (lysp_) schema trees, if only
220 * the compiled versions of the schemas are present, the submodule cannot be returned even if it was used to compile
221 * some of the currently present schemas.
222 *
223 * @param[in] ctx Context where to search
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100224 * @param[in] module Name of the module where the submodule is supposed to belongs-to. If NULL, the module name is not checked.
Radek Krejcid33273d2018-10-25 14:55:52 +0200225 * @param[in] submodule Name of the submodule to find.
226 * @param[in] revision Optional revision of the submodule to find. If not specified, the latest revision is returned.
227 * @return Pointer to the specified submodule if it is present in the context.
228 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100229struct lysp_submodule *ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *submodule, const char *revision);
Radek Krejcid33273d2018-10-25 14:55:52 +0200230
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200231/******************************************************************************
Radek Krejcic59bc972018-09-17 16:13:06 +0200232 * Parsers
233 *****************************************************************************/
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200234
Radek Krejcic59bc972018-09-17 16:13:06 +0200235enum yang_keyword {
236 YANG_NONE = 0,
237 YANG_ACTION,
238 YANG_ANYDATA,
239 YANG_ANYXML,
240 YANG_ARGUMENT,
241 YANG_AUGMENT,
242 YANG_BASE,
243 YANG_BELONGS_TO,
244 YANG_BIT,
245 YANG_CASE,
246 YANG_CHOICE,
247 YANG_CONFIG,
248 YANG_CONTACT,
249 YANG_CONTAINER,
250 YANG_DEFAULT,
251 YANG_DESCRIPTION,
252 YANG_DEVIATE,
253 YANG_DEVIATION,
254 YANG_ENUM,
255 YANG_ERROR_APP_TAG,
256 YANG_ERROR_MESSAGE,
257 YANG_EXTENSION,
258 YANG_FEATURE,
259 YANG_FRACTION_DIGITS,
260 YANG_GROUPING,
261 YANG_IDENTITY,
262 YANG_IF_FEATURE,
263 YANG_IMPORT,
264 YANG_INCLUDE,
265 YANG_INPUT,
266 YANG_KEY,
267 YANG_LEAF,
268 YANG_LEAF_LIST,
269 YANG_LENGTH,
270 YANG_LIST,
271 YANG_MANDATORY,
272 YANG_MAX_ELEMENTS,
273 YANG_MIN_ELEMENTS,
274 YANG_MODIFIER,
275 YANG_MODULE,
276 YANG_MUST,
277 YANG_NAMESPACE,
278 YANG_NOTIFICATION,
279 YANG_ORDERED_BY,
280 YANG_ORGANIZATION,
281 YANG_OUTPUT,
282 YANG_PATH,
283 YANG_PATTERN,
284 YANG_POSITION,
285 YANG_PREFIX,
286 YANG_PRESENCE,
287 YANG_RANGE,
288 YANG_REFERENCE,
289 YANG_REFINE,
290 YANG_REQUIRE_INSTANCE,
291 YANG_REVISION,
292 YANG_REVISION_DATE,
293 YANG_RPC,
294 YANG_STATUS,
295 YANG_SUBMODULE,
296 YANG_TYPE,
297 YANG_TYPEDEF,
298 YANG_UNIQUE,
299 YANG_UNITS,
300 YANG_USES,
301 YANG_VALUE,
302 YANG_WHEN,
303 YANG_YANG_VERSION,
304 YANG_YIN_ELEMENT,
305
306 YANG_SEMICOLON,
307 YANG_LEFT_BRACE,
308 YANG_RIGHT_BRACE,
309 YANG_CUSTOM
310};
311
312/* list of the YANG statements strings */
313extern const char *const ly_stmt_list[];
314#define ly_stmt2str(STMT) ly_stmt_list[STMT]
315
316/* list of the extensions' substatements strings */
317extern const char *const lyext_substmt_list[];
318#define lyext_substmt2str(STMT) lyext_substmt_list[STMT]
319
320/* list of the deviate modifications strings */
321extern const char *const ly_devmod_list[];
322#define ly_devmod2str(TYPE) ly_devmod_list[TYPE]
323
324/******************************************************************************
Michal Vasko1324b6c2018-09-07 11:16:23 +0200325 * Generic useful functions.
Radek Krejcic59bc972018-09-17 16:13:06 +0200326 *****************************************************************************/
Michal Vasko1324b6c2018-09-07 11:16:23 +0200327
Radek Krejci76b3e962018-12-14 17:01:25 +0100328#define FREE_STRING(CTX, STRING) if (STRING) {lydict_remove(CTX, STRING);}
329
Michal Vasko1324b6c2018-09-07 11:16:23 +0200330/**
331 * @brief Wrapper for realloc() call. The only difference is that if it fails to
332 * allocate the requested memory, the original memory is freed as well.
333 *
334 * @param[in] ptr Memory to reallocate.
335 * @param[in] size New size of the memory block.
336 *
337 * @return Pointer to the new memory, NULL on error.
338 */
339void *ly_realloc(void *ptr, size_t size);
340
Radek Krejcif345c012018-09-19 11:12:59 +0200341/**
Radek Krejcib416be62018-10-01 14:51:45 +0200342 * @brief Get UTF8 code point of the next character in the input string.
343 *
344 * @param[in,out] input Input string to process, updated according to the processed/read data.
345 * @param[out] utf8_char UTF8 code point of the next character.
346 * @param[out] bytes_read Number of bytes used to encode the read utf8_char.
347 * @return LY_ERR value
348 */
349LY_ERR ly_getutf8(const char **input, unsigned int *utf8_char, size_t *bytes_read);
350
351/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100352 * @brief Parse signed integer with possible limitation.
353 * @param[in] val_str String value containing signed integer, note that
354 * nothing else than whitespaces are expected after the value itself.
355 * @param[in] min Limitation for the value which must not be lower than min.
356 * @param[in] max Limitation for the value which must not be higher than max.
357 * @param[in] base Numeric base for parsing:
358 * 0 - to accept decimal, octal, hexadecimal (e.g. in default value)
359 * 10 - to accept only decimal (e.g. data instance value)
360 * @param[out] ret Resulting value.
361 * @return LY_ERR value:
362 * LY_EDENIED - the value breaks the limits,
363 * LY_EVALID - string contains invalid value,
364 * LY_SUCCESS - successful parsing.
365 */
366LY_ERR ly_parse_int(const char *val_str, int64_t min, int64_t max, int base, int64_t *ret);
367
368/**
369 * @brief Parse unsigned integer with possible limitation.
370 * @param[in] val_str String value containing unsigned integer, note that
371 * nothing else than whitespaces are expected after the value itself.
372 * @param[in] max Limitation for the value which must not be higher than max.
373 * @param[in] base Numeric base for parsing:
374 * 0 - to accept decimal, octal, hexadecimal (e.g. in default value)
375 * 10 - to accept only decimal (e.g. data instance value)
376 * @param[out] ret Resulting value.
377 * @return LY_ERR value:
378 * LY_EDENIED - the value breaks the limits,
379 * LY_EVALID - string contains invalid value,
380 * LY_SUCCESS - successful parsing.
381 */
382LY_ERR ly_parse_uint(const char *val_str, uint64_t max, int base, uint64_t *ret);
383
384/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200385 * @brief mmap(2) wrapper to map input files into memory to unify parsing.
Radek Krejcif345c012018-09-19 11:12:59 +0200386 *
Radek Krejci86d106e2018-10-18 09:53:19 +0200387 * The address space is allocate only for reading.
388 *
389 * @param[in] ctx libyang context for logging
390 * @param[in] fd Open file descriptor of a file to map.
391 * @param[out] length Allocated size.
392 * @param[out] addr Address where the file is mapped.
Radek Krejcif345c012018-09-19 11:12:59 +0200393 * @return LY_ERR value.
394 */
Radek Krejci86d106e2018-10-18 09:53:19 +0200395LY_ERR ly_mmap(struct ly_ctx *ctx, int fd, size_t *length, void **addr);
Michal Vasko841d1a92018-09-07 15:40:31 +0200396
Radek Krejci86d106e2018-10-18 09:53:19 +0200397/**
398 * @brief munmap(2) wrapper to free the memory mapped by ly_mmap()
Michal Vasko1324b6c2018-09-07 11:16:23 +0200399 *
Radek Krejci86d106e2018-10-18 09:53:19 +0200400 * @param[in] addr Address where the input file is mapped.
401 * @param[in] length Allocated size of the address space.
402 * @return LY_ERR value.
403 */
404LY_ERR ly_munmap(void *addr, size_t length);
405
406/**
407 * @brief (Re-)Allocation of a ([sized array](@ref sizedarrays)).
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200408 *
Radek Krejci2c4e7172018-10-19 15:56:26 +0200409 * Increases the size information.
410 *
Radek Krejci86d106e2018-10-18 09:53:19 +0200411 * @param[in] CTX libyang context for logging.
Radek Krejci2c4e7172018-10-19 15:56:26 +0200412 * @param[in,out] ARRAY Pointer to the array to allocate/resize. The size of the allocated
413 * space is counted from the type of the ARRAY, so do not provide placeholder void pointers.
Radek Krejci86d106e2018-10-18 09:53:19 +0200414 * @param[out] NEW_ITEM Returning pointer to the newly allocated record in the ARRAY.
415 * @param[in] RETVAL Return value for the case of error (memory allocation failure).
Michal Vasko1324b6c2018-09-07 11:16:23 +0200416 */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200417#define LY_ARRAY_NEW_RET(CTX, ARRAY, NEW_ITEM, RETVAL) \
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200418 if (!(ARRAY)) { \
419 ARRAY = malloc(sizeof(uint32_t) + sizeof *(ARRAY)); \
420 *((uint32_t*)(ARRAY)) = 1; \
421 } else { \
Radek Krejci2c4e7172018-10-19 15:56:26 +0200422 ++(*((uint32_t*)(ARRAY) - 1)); \
423 ARRAY = ly_realloc(((uint32_t*)(ARRAY) - 1), sizeof(uint32_t) + (*((uint32_t*)(ARRAY) - 1) * sizeof *(ARRAY))); \
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200424 LY_CHECK_ERR_RET(!(ARRAY), LOGMEM(CTX), RETVAL); \
425 } \
Radek Krejci2c4e7172018-10-19 15:56:26 +0200426 ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \
427 (NEW_ITEM) = &(ARRAY)[*((uint32_t*)(ARRAY) - 1) - 1]; \
428 memset(NEW_ITEM, 0, sizeof *(NEW_ITEM))
Michal Vasko1324b6c2018-09-07 11:16:23 +0200429
Radek Krejci2c4e7172018-10-19 15:56:26 +0200430/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100431 * @brief (Re-)Allocation of a ([sized array](@ref sizedarrays)).
432 *
433 * Increases the size information.
434 *
435 * @param[in] CTX libyang context for logging.
436 * @param[in,out] ARRAY Pointer to the array to allocate/resize. The size of the allocated
437 * space is counted from the type of the ARRAY, so do not provide placeholder void pointers.
438 * @param[out] NEW_ITEM Returning pointer to the newly allocated record in the ARRAY.
439 * @param[out] RET Variable to store error code.
440 * @param[in] GOTO Label to go in case of error (memory allocation failure).
441 */
442#define LY_ARRAY_NEW_GOTO(CTX, ARRAY, NEW_ITEM, RET, GOTO) \
443 if (!(ARRAY)) { \
444 ARRAY = malloc(sizeof(uint32_t) + sizeof *(ARRAY)); \
445 *((uint32_t*)(ARRAY)) = 1; \
446 } else { \
447 ++(*((uint32_t*)(ARRAY) - 1)); \
448 ARRAY = ly_realloc(((uint32_t*)(ARRAY) - 1), sizeof(uint32_t) + (*((uint32_t*)(ARRAY) - 1) * sizeof *(ARRAY))); \
449 LY_CHECK_ERR_GOTO(!(ARRAY), LOGMEM(CTX); RET = LY_EMEM, GOTO); \
450 } \
451 ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \
452 (NEW_ITEM) = &(ARRAY)[*((uint32_t*)(ARRAY) - 1) - 1]; \
453 memset(NEW_ITEM, 0, sizeof *(NEW_ITEM))
454
455/**
Radek Krejci2c4e7172018-10-19 15:56:26 +0200456 * @brief Allocate a ([sized array](@ref sizedarrays)) for the specified number of items.
Radek Krejcid05cbd92018-12-05 14:26:40 +0100457 * If the ARRAY already exists, it is resized (space for SIZE items is added).
Radek Krejci2c4e7172018-10-19 15:56:26 +0200458 *
459 * Does not set the size information, it is supposed to be incremented via ::LY_ARRAY_INCREMENT
460 * when the items are filled.
461 *
462 * @param[in] CTX libyang context for logging.
463 * @param[in,out] ARRAY Pointer to the array to create.
464 * @param[in] SIZE Number of items the array is supposed to hold. The size of the allocated
465 * space is then counted from the type of the ARRAY, so do not provide placeholder void pointers.
466 * @param[in] RETVAL Return value for the case of error (memory allocation failure).
467 */
468#define LY_ARRAY_CREATE_RET(CTX, ARRAY, SIZE, RETVAL) \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100469 if (ARRAY) { \
470 ARRAY = ly_realloc(((uint32_t*)(ARRAY) - 1), sizeof(uint32_t) + ((*((uint32_t*)(ARRAY) - 1) + SIZE) * sizeof *(ARRAY))); \
471 LY_CHECK_ERR_RET(!(ARRAY), LOGMEM(CTX), RETVAL); \
472 ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \
473 memset(&(ARRAY)[*((uint32_t*)(ARRAY) - 1)], 0, SIZE * sizeof *(ARRAY)); \
474 } else { \
475 ARRAY = calloc(1, sizeof(uint32_t) + SIZE * sizeof *(ARRAY)); \
476 LY_CHECK_ERR_RET(!(ARRAY), LOGMEM(CTX), RETVAL); \
477 ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \
478 }
Radek Krejci2c4e7172018-10-19 15:56:26 +0200479
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100480/**
481 * @brief Allocate a ([sized array](@ref sizedarrays)) for the specified number of items.
Radek Krejcid05cbd92018-12-05 14:26:40 +0100482 * If the ARRAY already exists, it is resized (space for SIZE items is added).
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100483 *
484 * Does not set the size information, it is supposed to be incremented via ::LY_ARRAY_INCREMENT
485 * when the items are filled.
486 *
487 * @param[in] CTX libyang context for logging.
488 * @param[in,out] ARRAY Pointer to the array to create.
Radek Krejci00b874b2019-02-12 10:54:50 +0100489 * @param[in] SIZE Number of the new items the array is supposed to hold. The size of the allocated
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100490 * space is then counted from the type of the ARRAY, so do not provide placeholder void pointers.
491 * @param[out] RET Variable to store error code.
492 * @param[in] GOTO Label to go in case of error (memory allocation failure).
493 */
494#define LY_ARRAY_CREATE_GOTO(CTX, ARRAY, SIZE, RET, GOTO) \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100495 if (ARRAY) { \
Radek Krejci58dca372019-04-12 10:38:06 +0200496 ARRAY = ly_realloc(((uint32_t*)(ARRAY) - 1), sizeof(uint32_t) + ((*((uint32_t*)(ARRAY) - 1) + (SIZE)) * sizeof *(ARRAY))); \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100497 LY_CHECK_ERR_GOTO(!(ARRAY), LOGMEM(CTX); RET = LY_EMEM, GOTO); \
498 ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \
Radek Krejci58dca372019-04-12 10:38:06 +0200499 memset(&(ARRAY)[*((uint32_t*)(ARRAY) - 1)], 0, (SIZE) * sizeof *(ARRAY)); \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100500 } else { \
Radek Krejci58dca372019-04-12 10:38:06 +0200501 ARRAY = calloc(1, sizeof(uint32_t) + (SIZE) * sizeof *(ARRAY)); \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100502 LY_CHECK_ERR_GOTO(!(ARRAY), LOGMEM(CTX); RET = LY_EMEM, GOTO); \
503 ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \
504 }
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100505
Radek Krejci2c4e7172018-10-19 15:56:26 +0200506#define LY_ARRAY_INCREMENT(ARRAY) \
507 ++(*((uint32_t*)(ARRAY) - 1))
Radek Krejciccd20f12019-02-15 14:12:27 +0100508
509#define LY_ARRAY_DECREMENT(ARRAY) \
510 --(*((uint32_t*)(ARRAY) - 1))
511
Radek Krejci2c4e7172018-10-19 15:56:26 +0200512/**
513 * @brief Free the space allocated for the ([sized array](@ref sizedarrays)).
514 *
515 * The items inside the array are not freed.
516 *
517 * @param[in] ARRAY A ([sized array](@ref sizedarrays)) to be freed.
518 */
519#define LY_ARRAY_FREE(ARRAY) \
520 if (ARRAY){free((uint32_t*)(ARRAY) - 1);}
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200521#endif /* LY_COMMON_H_ */