Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 1 | /** |
| 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 Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 18 | #define _DEFAULT_SOURCE |
| 19 | #define _GNU_SOURCE |
| 20 | #define _XOPEN_SOURCE |
| 21 | |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 22 | #include <assert.h> |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 23 | #include <pthread.h> |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 24 | #include <stdint.h> |
| 25 | #include <stdlib.h> |
| 26 | |
Radek Krejci | 2c22f12 | 2018-09-05 15:08:03 +0200 | [diff] [blame] | 27 | #include "config.h" |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 28 | #include "log.h" |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 29 | #include "context.h" |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 30 | #include "tree_schema.h" |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 31 | #include "set.h" |
| 32 | #include "hash_table.h" |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 33 | |
| 34 | #if __STDC_VERSION__ >= 201112 && !defined __STDC_NO_THREADS__ |
| 35 | # define THREAD_LOCAL _Thread_local |
| 36 | #elif defined __GNUC__ || \ |
| 37 | defined __SUNPRO_C || \ |
| 38 | defined __xlC__ |
| 39 | # define THREAD_LOCAL __thread |
| 40 | #else |
| 41 | # error "Cannot define THREAD_LOCAL" |
| 42 | #endif |
| 43 | |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 44 | #define GETMACRO1(_1, NAME, ...) NAME |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 45 | #define GETMACRO2(_1, _2, NAME, ...) NAME |
| 46 | #define GETMACRO3(_1, _2, _3, NAME, ...) NAME |
| 47 | #define GETMACRO4(_1, _2, _3, _4, NAME, ...) NAME |
| 48 | |
| 49 | /* |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 50 | * If the compiler supports attribute to mark objects as hidden, mark all |
| 51 | * objects as hidden and export only objects explicitly marked to be part of |
| 52 | * the public API. |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 53 | */ |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 54 | #define API __attribute__((visibility("default"))) |
| 55 | |
| 56 | /****************************************************************************** |
| 57 | * Logger |
| 58 | *****************************************************************************/ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 59 | |
| 60 | /* internal logging options */ |
| 61 | enum int_log_opts { |
| 62 | ILO_LOG = 0, /* log normally */ |
| 63 | ILO_STORE, /* only store any messages, they will be processed higher on stack */ |
| 64 | ILO_IGNORE, /* completely ignore messages */ |
| 65 | ILO_ERR2WRN, /* change errors to warnings */ |
| 66 | }; |
| 67 | |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 68 | enum LY_VLOG_ELEM { |
| 69 | LY_VLOG_NONE = 0, |
| 70 | LY_VLOG_LINE,/* line number */ |
| 71 | LY_VLOG_LYS, /* struct lysc_node* */ |
| 72 | LY_VLOG_LYD, /* struct lyd_node* */ |
| 73 | LY_VLOG_STR, /* const char* */ |
| 74 | LY_VLOG_PREV /* use exact same previous path */ |
| 75 | }; |
| 76 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 77 | extern THREAD_LOCAL enum int_log_opts log_opt; |
| 78 | extern volatile uint8_t ly_log_level; |
| 79 | extern volatile uint8_t ly_log_opts; |
| 80 | |
Radek Krejci | ad57350 | 2018-09-07 15:26:55 +0200 | [diff] [blame] | 81 | void ly_err_free(void *ptr); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 82 | void ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, const char *format, ...); |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 83 | void ly_vlog(const struct ly_ctx *ctx, enum LY_VLOG_ELEM elem_type, const void *elem, LY_VECODE code, const char *format, ...); |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 84 | |
| 85 | #define LOGERR(ctx, errno, str, args...) ly_log(ctx, LY_LLERR, errno, str, ##args) |
Radek Krejci | f3f4784 | 2018-11-15 11:22:15 +0100 | [diff] [blame] | 86 | #define LOGWRN(ctx, str, ...) ly_log(ctx, LY_LLWRN, 0, str, ##__VA_ARGS__) |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 87 | #define LOGVRB(str, args...) ly_log(NULL, LY_LLVRB, 0, str, ##args) |
| 88 | |
Radek Krejci | 4ab6156 | 2018-09-05 15:00:37 +0200 | [diff] [blame] | 89 | #ifdef NDEBUG |
| 90 | # define LOGDBG(dbg_group, str, args...) |
| 91 | #else |
| 92 | void ly_log_dbg(int group, const char *format, ...); |
| 93 | # define LOGDBG(dbg_group, str, args...) ly_log_dbg(dbg_group, str, ##args); |
| 94 | #endif |
| 95 | |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 96 | #define LOGMEM(CTX) LOGERR(CTX, LY_EMEM, "Memory allocation failed (%s()).", __func__) |
| 97 | #define LOGINT(CTX) LOGERR(CTX, LY_EINT, "Internal error (%s:%d).", __FILE__, __LINE__) |
| 98 | #define LOGARG(CTX, ARG) LOGERR(CTX, LY_EINVAL, "Invalid argument %s (%s()).", #ARG, __func__) |
Radek Krejci | c07921a | 2018-09-17 11:40:15 +0200 | [diff] [blame] | 99 | #define LOGVAL(CTX, ELEM_TYPE, ELEM, CODE, FORMAT...) ly_vlog(CTX, ELEM_TYPE, ELEM, CODE, ##FORMAT) |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 100 | |
| 101 | #define LOGMEM_RET(CTX) LOGMEM(CTX); return LY_EMEM |
| 102 | #define LOGINT_RET(CTX) LOGINT(CTX); return LY_EINT |
| 103 | #define LOGARG_RET(CTX) LOGARG(CTX); return LY_EINVAL |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 104 | |
| 105 | /* |
| 106 | * Common code to check return value and perform appropriate action. |
| 107 | */ |
| 108 | #define LY_CHECK_GOTO(COND, GOTO) if (COND) {goto GOTO;} |
| 109 | #define LY_CHECK_ERR_GOTO(COND, ERR, GOTO) if (COND) {ERR; goto GOTO;} |
Radek Krejci | 6d9b9b5 | 2018-11-02 12:43:39 +0100 | [diff] [blame] | 110 | #define LY_CHECK_RET1(RETVAL) {LY_ERR ret__ = RETVAL;if (ret__ != LY_SUCCESS) {return ret__;}} |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 111 | #define LY_CHECK_RET2(COND, RETVAL) if (COND) {return RETVAL;} |
| 112 | #define LY_CHECK_RET(...) GETMACRO2(__VA_ARGS__, LY_CHECK_RET2, LY_CHECK_RET1)(__VA_ARGS__) |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 113 | #define LY_CHECK_ERR_RET(COND, ERR, RETVAL) if (COND) {ERR; return RETVAL;} |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 114 | |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 115 | #define LY_CHECK_ARG_GOTO1(CTX, ARG, GOTO) if (!ARG) {LOGARG(CTX, ARG);goto GOTO;} |
| 116 | #define LY_CHECK_ARG_GOTO2(CTX, ARG1, ARG2, GOTO) LY_CHECK_ARG_GOTO1(CTX, ARG1, GOTO);LY_CHECK_ARG_GOTO1(CTX, ARG2, GOTO) |
| 117 | #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) |
| 118 | #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 Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 119 | |
Michal Vasko | b3d0d6b | 2018-09-07 10:17:33 +0200 | [diff] [blame] | 120 | #define LY_CHECK_ARG_RET1(CTX, ARG, RETVAL) if (!ARG) {LOGARG(CTX, ARG);return RETVAL;} |
| 121 | #define LY_CHECK_ARG_RET2(CTX, ARG1, ARG2, RETVAL) LY_CHECK_ARG_RET1(CTX, ARG1, RETVAL);LY_CHECK_ARG_RET1(CTX, ARG2, RETVAL) |
| 122 | #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) |
| 123 | #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 Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 124 | |
Radek Krejci | d972c25 | 2018-09-25 13:23:39 +0200 | [diff] [blame] | 125 | /* count sequence size for LY_VCODE_INCHILDSTMT validation error code */ |
| 126 | size_t LY_VCODE_INSTREXP_len(const char *str); |
| 127 | /* default maximum characters to print in LY_VCODE_INCHILDSTMT */ |
| 128 | #define LY_VCODE_INSTREXP_MAXLEN 20 |
| 129 | |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 130 | #define LY_VCODE_INCHAR LYVE_SYNTAX, "Invalid character 0x%x." |
Michal Vasko | 37d705c | 2018-09-12 15:31:26 +0200 | [diff] [blame] | 131 | #define LY_VCODE_INSTREXP LYVE_SYNTAX, "Invalid character sequence \"%.*s\", expected %s." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 132 | #define LY_VCODE_EOF LYVE_SYNTAX, "Unexpected end-of-file." |
Radek Krejci | d91dbaf | 2018-09-21 15:51:39 +0200 | [diff] [blame] | 133 | #define LY_VCODE_NTERM LYVE_SYNTAX, "%s not terminated." |
| 134 | #define LY_VCODE_NSUPP LYVE_SYNTAX, "%s not supported." |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 135 | #define LY_VCODE_INSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\"." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 136 | #define LY_VCODE_INCHILDSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s\"." |
Radek Krejci | 1011365 | 2018-11-14 16:56:50 +0100 | [diff] [blame] | 137 | #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." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 138 | #define LY_VCODE_DUPSTMT LYVE_SYNTAX_YANG, "Duplicate keyword \"%s\"." |
Radek Krejci | faa1eac | 2018-10-30 14:34:55 +0100 | [diff] [blame] | 139 | #define LY_VCODE_DUPIDENT LYVE_SYNTAX_YANG, "Duplicate identifier \"%s\" of %s statement." |
Michal Vasko | 37d705c | 2018-09-12 15:31:26 +0200 | [diff] [blame] | 140 | #define LY_VCODE_INVAL LYVE_SYNTAX_YANG, "Invalid value \"%.*s\" of \"%s\"." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 141 | #define LY_VCODE_MISSTMT LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s\"." |
| 142 | #define LY_VCODE_INORD LYVE_SYNTAX_YANG, "Invalid keyword \"%s\", it cannot appear after \"%s\"." |
Michal Vasko | 37d705c | 2018-09-12 15:31:26 +0200 | [diff] [blame] | 143 | #define LY_VCODE_OOB LYVE_SYNTAX_YANG, "Value \"%.*s\" is out of \"%s\" bounds." |
Michal Vasko | 5825771 | 2018-09-12 11:11:38 +0200 | [diff] [blame] | 144 | #define LY_VCODE_INDEV LYVE_SYNTAX_YANG, "Deviate \"%s\" does not support keyword \"%s\"." |
Radek Krejci | 4586a02 | 2018-11-13 11:29:26 +0100 | [diff] [blame] | 145 | #define LY_VCODE_INREGEXP LYVE_SYNTAX_YANG, "Regular expression \"%s\" is not valid (\"%s\": %s)." |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 146 | #define LY_VCODE_XP_EOE LYVE_XPATH, "Unterminated string delimited with %c (%.15s)." |
| 147 | #define LY_VCODE_XP_INEXPR LYVE_XPATH, "Invalid expression 0x%x." |
Radek Krejci | 94aa994 | 2018-09-07 17:12:17 +0200 | [diff] [blame] | 148 | |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 149 | /****************************************************************************** |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 150 | * Context |
| 151 | *****************************************************************************/ |
| 152 | |
| 153 | /** |
| 154 | * @brief Context of the YANG schemas |
| 155 | */ |
| 156 | struct ly_ctx { |
| 157 | struct dict_table dict; /**< dictionary to effectively store strings used in the context related structures */ |
| 158 | struct ly_set search_paths; /**< set of directories where to search for schema's imports/includes */ |
| 159 | struct ly_set list; /**< set of YANG schemas */ |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 160 | ly_module_imp_clb imp_clb; /**< Optional callback for retrieving missing included or imported models in a custom way. */ |
| 161 | void *imp_clb_data; /**< Optional private data for imp_clb() */ |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 162 | uint16_t module_set_id; /**< ID of the current set of schemas */ |
| 163 | uint16_t flags; /**< context settings, see @ref contextoptions. */ |
| 164 | pthread_key_t errlist_key; /**< key for the thread-specific list of errors related to the context */ |
| 165 | }; |
| 166 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 167 | /** |
| 168 | * @brief Try to find submodule in the context. Submodules are present only in the parsed (lysp_) schema trees, if only |
| 169 | * the compiled versions of the schemas are present, the submodule cannot be returned even if it was used to compile |
| 170 | * some of the currently present schemas. |
| 171 | * |
| 172 | * @param[in] ctx Context where to search |
Radek Krejci | faa1eac | 2018-10-30 14:34:55 +0100 | [diff] [blame] | 173 | * @param[in] module Name of the module where the submodule is supposed to belongs-to. If NULL, the module name is not checked. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 174 | * @param[in] submodule Name of the submodule to find. |
| 175 | * @param[in] revision Optional revision of the submodule to find. If not specified, the latest revision is returned. |
| 176 | * @return Pointer to the specified submodule if it is present in the context. |
| 177 | */ |
| 178 | struct lysp_module *ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *submodule, const char *revision); |
| 179 | |
Radek Krejci | 6caa6ab | 2018-10-24 10:04:48 +0200 | [diff] [blame] | 180 | /****************************************************************************** |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 181 | * Parsers |
| 182 | *****************************************************************************/ |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 183 | |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 184 | enum yang_keyword { |
| 185 | YANG_NONE = 0, |
| 186 | YANG_ACTION, |
| 187 | YANG_ANYDATA, |
| 188 | YANG_ANYXML, |
| 189 | YANG_ARGUMENT, |
| 190 | YANG_AUGMENT, |
| 191 | YANG_BASE, |
| 192 | YANG_BELONGS_TO, |
| 193 | YANG_BIT, |
| 194 | YANG_CASE, |
| 195 | YANG_CHOICE, |
| 196 | YANG_CONFIG, |
| 197 | YANG_CONTACT, |
| 198 | YANG_CONTAINER, |
| 199 | YANG_DEFAULT, |
| 200 | YANG_DESCRIPTION, |
| 201 | YANG_DEVIATE, |
| 202 | YANG_DEVIATION, |
| 203 | YANG_ENUM, |
| 204 | YANG_ERROR_APP_TAG, |
| 205 | YANG_ERROR_MESSAGE, |
| 206 | YANG_EXTENSION, |
| 207 | YANG_FEATURE, |
| 208 | YANG_FRACTION_DIGITS, |
| 209 | YANG_GROUPING, |
| 210 | YANG_IDENTITY, |
| 211 | YANG_IF_FEATURE, |
| 212 | YANG_IMPORT, |
| 213 | YANG_INCLUDE, |
| 214 | YANG_INPUT, |
| 215 | YANG_KEY, |
| 216 | YANG_LEAF, |
| 217 | YANG_LEAF_LIST, |
| 218 | YANG_LENGTH, |
| 219 | YANG_LIST, |
| 220 | YANG_MANDATORY, |
| 221 | YANG_MAX_ELEMENTS, |
| 222 | YANG_MIN_ELEMENTS, |
| 223 | YANG_MODIFIER, |
| 224 | YANG_MODULE, |
| 225 | YANG_MUST, |
| 226 | YANG_NAMESPACE, |
| 227 | YANG_NOTIFICATION, |
| 228 | YANG_ORDERED_BY, |
| 229 | YANG_ORGANIZATION, |
| 230 | YANG_OUTPUT, |
| 231 | YANG_PATH, |
| 232 | YANG_PATTERN, |
| 233 | YANG_POSITION, |
| 234 | YANG_PREFIX, |
| 235 | YANG_PRESENCE, |
| 236 | YANG_RANGE, |
| 237 | YANG_REFERENCE, |
| 238 | YANG_REFINE, |
| 239 | YANG_REQUIRE_INSTANCE, |
| 240 | YANG_REVISION, |
| 241 | YANG_REVISION_DATE, |
| 242 | YANG_RPC, |
| 243 | YANG_STATUS, |
| 244 | YANG_SUBMODULE, |
| 245 | YANG_TYPE, |
| 246 | YANG_TYPEDEF, |
| 247 | YANG_UNIQUE, |
| 248 | YANG_UNITS, |
| 249 | YANG_USES, |
| 250 | YANG_VALUE, |
| 251 | YANG_WHEN, |
| 252 | YANG_YANG_VERSION, |
| 253 | YANG_YIN_ELEMENT, |
| 254 | |
| 255 | YANG_SEMICOLON, |
| 256 | YANG_LEFT_BRACE, |
| 257 | YANG_RIGHT_BRACE, |
| 258 | YANG_CUSTOM |
| 259 | }; |
| 260 | |
| 261 | /* list of the YANG statements strings */ |
| 262 | extern const char *const ly_stmt_list[]; |
| 263 | #define ly_stmt2str(STMT) ly_stmt_list[STMT] |
| 264 | |
| 265 | /* list of the extensions' substatements strings */ |
| 266 | extern const char *const lyext_substmt_list[]; |
| 267 | #define lyext_substmt2str(STMT) lyext_substmt_list[STMT] |
| 268 | |
| 269 | /* list of the deviate modifications strings */ |
| 270 | extern const char *const ly_devmod_list[]; |
| 271 | #define ly_devmod2str(TYPE) ly_devmod_list[TYPE] |
| 272 | |
| 273 | /****************************************************************************** |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 274 | * Generic useful functions. |
Radek Krejci | c59bc97 | 2018-09-17 16:13:06 +0200 | [diff] [blame] | 275 | *****************************************************************************/ |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 276 | |
| 277 | /** |
| 278 | * @brief Wrapper for realloc() call. The only difference is that if it fails to |
| 279 | * allocate the requested memory, the original memory is freed as well. |
| 280 | * |
| 281 | * @param[in] ptr Memory to reallocate. |
| 282 | * @param[in] size New size of the memory block. |
| 283 | * |
| 284 | * @return Pointer to the new memory, NULL on error. |
| 285 | */ |
| 286 | void *ly_realloc(void *ptr, size_t size); |
| 287 | |
Radek Krejci | f345c01 | 2018-09-19 11:12:59 +0200 | [diff] [blame] | 288 | /** |
Radek Krejci | b416be6 | 2018-10-01 14:51:45 +0200 | [diff] [blame] | 289 | * @brief Get UTF8 code point of the next character in the input string. |
| 290 | * |
| 291 | * @param[in,out] input Input string to process, updated according to the processed/read data. |
| 292 | * @param[out] utf8_char UTF8 code point of the next character. |
| 293 | * @param[out] bytes_read Number of bytes used to encode the read utf8_char. |
| 294 | * @return LY_ERR value |
| 295 | */ |
| 296 | LY_ERR ly_getutf8(const char **input, unsigned int *utf8_char, size_t *bytes_read); |
| 297 | |
| 298 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 299 | * @brief Parse signed integer with possible limitation. |
| 300 | * @param[in] val_str String value containing signed integer, note that |
| 301 | * nothing else than whitespaces are expected after the value itself. |
| 302 | * @param[in] min Limitation for the value which must not be lower than min. |
| 303 | * @param[in] max Limitation for the value which must not be higher than max. |
| 304 | * @param[in] base Numeric base for parsing: |
| 305 | * 0 - to accept decimal, octal, hexadecimal (e.g. in default value) |
| 306 | * 10 - to accept only decimal (e.g. data instance value) |
| 307 | * @param[out] ret Resulting value. |
| 308 | * @return LY_ERR value: |
| 309 | * LY_EDENIED - the value breaks the limits, |
| 310 | * LY_EVALID - string contains invalid value, |
| 311 | * LY_SUCCESS - successful parsing. |
| 312 | */ |
| 313 | LY_ERR ly_parse_int(const char *val_str, int64_t min, int64_t max, int base, int64_t *ret); |
| 314 | |
| 315 | /** |
| 316 | * @brief Parse unsigned integer with possible limitation. |
| 317 | * @param[in] val_str String value containing unsigned integer, note that |
| 318 | * nothing else than whitespaces are expected after the value itself. |
| 319 | * @param[in] max Limitation for the value which must not be higher than max. |
| 320 | * @param[in] base Numeric base for parsing: |
| 321 | * 0 - to accept decimal, octal, hexadecimal (e.g. in default value) |
| 322 | * 10 - to accept only decimal (e.g. data instance value) |
| 323 | * @param[out] ret Resulting value. |
| 324 | * @return LY_ERR value: |
| 325 | * LY_EDENIED - the value breaks the limits, |
| 326 | * LY_EVALID - string contains invalid value, |
| 327 | * LY_SUCCESS - successful parsing. |
| 328 | */ |
| 329 | LY_ERR ly_parse_uint(const char *val_str, uint64_t max, int base, uint64_t *ret); |
| 330 | |
| 331 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 332 | * @brief mmap(2) wrapper to map input files into memory to unify parsing. |
Radek Krejci | f345c01 | 2018-09-19 11:12:59 +0200 | [diff] [blame] | 333 | * |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 334 | * The address space is allocate only for reading. |
| 335 | * |
| 336 | * @param[in] ctx libyang context for logging |
| 337 | * @param[in] fd Open file descriptor of a file to map. |
| 338 | * @param[out] length Allocated size. |
| 339 | * @param[out] addr Address where the file is mapped. |
Radek Krejci | f345c01 | 2018-09-19 11:12:59 +0200 | [diff] [blame] | 340 | * @return LY_ERR value. |
| 341 | */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 342 | LY_ERR ly_mmap(struct ly_ctx *ctx, int fd, size_t *length, void **addr); |
Michal Vasko | 841d1a9 | 2018-09-07 15:40:31 +0200 | [diff] [blame] | 343 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 344 | /** |
| 345 | * @brief munmap(2) wrapper to free the memory mapped by ly_mmap() |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 346 | * |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 347 | * @param[in] addr Address where the input file is mapped. |
| 348 | * @param[in] length Allocated size of the address space. |
| 349 | * @return LY_ERR value. |
| 350 | */ |
| 351 | LY_ERR ly_munmap(void *addr, size_t length); |
| 352 | |
| 353 | /** |
| 354 | * @brief (Re-)Allocation of a ([sized array](@ref sizedarrays)). |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 355 | * |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 356 | * Increases the size information. |
| 357 | * |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 358 | * @param[in] CTX libyang context for logging. |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 359 | * @param[in,out] ARRAY Pointer to the array to allocate/resize. The size of the allocated |
| 360 | * space is counted from the type of the ARRAY, so do not provide placeholder void pointers. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 361 | * @param[out] NEW_ITEM Returning pointer to the newly allocated record in the ARRAY. |
| 362 | * @param[in] RETVAL Return value for the case of error (memory allocation failure). |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 363 | */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 364 | #define LY_ARRAY_NEW_RET(CTX, ARRAY, NEW_ITEM, RETVAL) \ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 365 | if (!(ARRAY)) { \ |
| 366 | ARRAY = malloc(sizeof(uint32_t) + sizeof *(ARRAY)); \ |
| 367 | *((uint32_t*)(ARRAY)) = 1; \ |
| 368 | } else { \ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 369 | ++(*((uint32_t*)(ARRAY) - 1)); \ |
| 370 | ARRAY = ly_realloc(((uint32_t*)(ARRAY) - 1), sizeof(uint32_t) + (*((uint32_t*)(ARRAY) - 1) * sizeof *(ARRAY))); \ |
Radek Krejci | e53a8dc | 2018-10-17 12:52:40 +0200 | [diff] [blame] | 371 | LY_CHECK_ERR_RET(!(ARRAY), LOGMEM(CTX), RETVAL); \ |
| 372 | } \ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 373 | ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \ |
| 374 | (NEW_ITEM) = &(ARRAY)[*((uint32_t*)(ARRAY) - 1) - 1]; \ |
| 375 | memset(NEW_ITEM, 0, sizeof *(NEW_ITEM)) |
Michal Vasko | 1324b6c | 2018-09-07 11:16:23 +0200 | [diff] [blame] | 376 | |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 377 | /** |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 378 | * @brief (Re-)Allocation of a ([sized array](@ref sizedarrays)). |
| 379 | * |
| 380 | * Increases the size information. |
| 381 | * |
| 382 | * @param[in] CTX libyang context for logging. |
| 383 | * @param[in,out] ARRAY Pointer to the array to allocate/resize. The size of the allocated |
| 384 | * space is counted from the type of the ARRAY, so do not provide placeholder void pointers. |
| 385 | * @param[out] NEW_ITEM Returning pointer to the newly allocated record in the ARRAY. |
| 386 | * @param[out] RET Variable to store error code. |
| 387 | * @param[in] GOTO Label to go in case of error (memory allocation failure). |
| 388 | */ |
| 389 | #define LY_ARRAY_NEW_GOTO(CTX, ARRAY, NEW_ITEM, RET, GOTO) \ |
| 390 | if (!(ARRAY)) { \ |
| 391 | ARRAY = malloc(sizeof(uint32_t) + sizeof *(ARRAY)); \ |
| 392 | *((uint32_t*)(ARRAY)) = 1; \ |
| 393 | } else { \ |
| 394 | ++(*((uint32_t*)(ARRAY) - 1)); \ |
| 395 | ARRAY = ly_realloc(((uint32_t*)(ARRAY) - 1), sizeof(uint32_t) + (*((uint32_t*)(ARRAY) - 1) * sizeof *(ARRAY))); \ |
| 396 | LY_CHECK_ERR_GOTO(!(ARRAY), LOGMEM(CTX); RET = LY_EMEM, GOTO); \ |
| 397 | } \ |
| 398 | ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \ |
| 399 | (NEW_ITEM) = &(ARRAY)[*((uint32_t*)(ARRAY) - 1) - 1]; \ |
| 400 | memset(NEW_ITEM, 0, sizeof *(NEW_ITEM)) |
| 401 | |
| 402 | /** |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 403 | * @brief Allocate a ([sized array](@ref sizedarrays)) for the specified number of items. |
| 404 | * |
| 405 | * Does not set the size information, it is supposed to be incremented via ::LY_ARRAY_INCREMENT |
| 406 | * when the items are filled. |
| 407 | * |
| 408 | * @param[in] CTX libyang context for logging. |
| 409 | * @param[in,out] ARRAY Pointer to the array to create. |
| 410 | * @param[in] SIZE Number of items the array is supposed to hold. The size of the allocated |
| 411 | * space is then counted from the type of the ARRAY, so do not provide placeholder void pointers. |
| 412 | * @param[in] RETVAL Return value for the case of error (memory allocation failure). |
| 413 | */ |
| 414 | #define LY_ARRAY_CREATE_RET(CTX, ARRAY, SIZE, RETVAL) \ |
| 415 | ARRAY = calloc(1, sizeof(uint32_t) + SIZE * sizeof *(ARRAY)); \ |
| 416 | LY_CHECK_ERR_RET(!(ARRAY), LOGMEM(CTX), RETVAL); \ |
| 417 | ARRAY = (void*)((uint32_t*)(ARRAY) + 1) |
| 418 | |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 419 | /** |
| 420 | * @brief Allocate a ([sized array](@ref sizedarrays)) for the specified number of items. |
| 421 | * |
| 422 | * Does not set the size information, it is supposed to be incremented via ::LY_ARRAY_INCREMENT |
| 423 | * when the items are filled. |
| 424 | * |
| 425 | * @param[in] CTX libyang context for logging. |
| 426 | * @param[in,out] ARRAY Pointer to the array to create. |
| 427 | * @param[in] SIZE Number of items the array is supposed to hold. The size of the allocated |
| 428 | * space is then counted from the type of the ARRAY, so do not provide placeholder void pointers. |
| 429 | * @param[out] RET Variable to store error code. |
| 430 | * @param[in] GOTO Label to go in case of error (memory allocation failure). |
| 431 | */ |
| 432 | #define LY_ARRAY_CREATE_GOTO(CTX, ARRAY, SIZE, RET, GOTO) \ |
| 433 | ARRAY = calloc(1, sizeof(uint32_t) + SIZE * sizeof *(ARRAY)); \ |
| 434 | LY_CHECK_ERR_GOTO(!(ARRAY), LOGMEM(CTX); RET = LY_EMEM, GOTO); \ |
| 435 | ARRAY = (void*)((uint32_t*)(ARRAY) + 1) |
| 436 | |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 437 | #define LY_ARRAY_INCREMENT(ARRAY) \ |
| 438 | ++(*((uint32_t*)(ARRAY) - 1)) |
| 439 | /** |
| 440 | * @brief Free the space allocated for the ([sized array](@ref sizedarrays)). |
| 441 | * |
| 442 | * The items inside the array are not freed. |
| 443 | * |
| 444 | * @param[in] ARRAY A ([sized array](@ref sizedarrays)) to be freed. |
| 445 | */ |
| 446 | #define LY_ARRAY_FREE(ARRAY) \ |
| 447 | if (ARRAY){free((uint32_t*)(ARRAY) - 1);} |
Radek Krejci | 5aeea3a | 2018-09-05 13:29:36 +0200 | [diff] [blame] | 448 | #endif /* LY_COMMON_H_ */ |