Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file tree_schema_internal.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief internal functions for YANG schema trees. |
| 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_TREE_SCHEMA_INTERNAL_H_ |
| 16 | #define LY_TREE_SCHEMA_INTERNAL_H_ |
| 17 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 18 | #include <stdint.h> |
| 19 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 20 | #include "common.h" |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 21 | #include "set.h" |
| 22 | #include "tree_schema.h" |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 23 | #include "xml.h" |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 24 | |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 25 | struct lysc_ctx; |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 26 | struct lys_glob_unres; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 27 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 28 | #define LY_YANG_SUFFIX ".yang" |
| 29 | #define LY_YANG_SUFFIX_LEN 5 |
| 30 | #define LY_YIN_SUFFIX ".yin" |
| 31 | #define LY_YIN_SUFFIX_LEN 4 |
| 32 | |
FredGan | d944bdc | 2019-11-05 21:57:07 +0800 | [diff] [blame] | 33 | #define YIN_NS_URI "urn:ietf:params:xml:ns:yang:yin:1" |
| 34 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 35 | #define LY_PCRE2_MSG_LIMIT 256 |
| 36 | |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 37 | /** |
| 38 | * @brief Check module version is at least 2 (YANG 1.1) because of the keyword presence. |
| 39 | * Logs error message and returns LY_EVALID in case of module in YANG version 1.0. |
| 40 | * @param[in] CTX yang parser context to get current module and for logging. |
| 41 | * @param[in] KW keyword allowed only in YANG version 1.1 (or later) - for logging. |
| 42 | * @param[in] PARENT parent statement where the KW is present - for logging. |
| 43 | */ |
| 44 | #define PARSER_CHECK_STMTVER2_RET(CTX, KW, PARENT) \ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 45 | if ((CTX)->parsed_mod->version < LYS_VERSION_1_1) {LOGVAL_PARSER((CTX), LY_VCODE_INCHILDSTMT2, KW, PARENT); return LY_EVALID;} |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 46 | |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 47 | /* These 2 macros checks YANG's identifier grammar rule */ |
| 48 | #define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_') |
| 49 | #define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 50 | c == '_' || c == '-' || c == '.') |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 51 | |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 52 | /* Macro to check YANG's yang-char grammar rule */ |
David Sedlák | 2c0d5ef | 2019-08-14 11:40:44 +0200 | [diff] [blame] | 53 | #define is_yangutf8char(c) ((c >= 0x20 && c <= 0xd7ff) || c == 0x09 || c == 0x0a || c == 0x0d || \ |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 54 | (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \ |
| 55 | (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \ |
| 56 | (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \ |
| 57 | (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \ |
| 58 | (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \ |
| 59 | (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \ |
| 60 | (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \ |
| 61 | (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \ |
| 62 | (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd)) |
| 63 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 64 | /** |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 65 | * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY. |
| 66 | * Macro logs an error message and returns LY_EVALID in case of existence of a matching object. |
| 67 | * |
| 68 | * @param[in] CTX yang parser context for logging. |
| 69 | * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search. |
| 70 | * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare. |
| 71 | * @param[in] STMT Name of the compared YANG statements for logging. |
| 72 | * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member. |
| 73 | */ |
| 74 | #define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \ |
| 75 | if (ARRAY) { \ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 76 | for (LY_ARRAY_COUNT_TYPE u_ = 0; u_ < LY_ARRAY_COUNT(ARRAY) - 1; ++u_) { \ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 77 | if (!strcmp((ARRAY)[u_].MEMBER, IDENT)) { \ |
David Sedlák | ca36c42 | 2019-07-12 12:47:55 +0200 | [diff] [blame] | 78 | LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \ |
| 79 | return LY_EVALID; \ |
| 80 | } \ |
| 81 | } \ |
| 82 | } |
| 83 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 84 | #define CHECK_NONEMPTY(CTX, VALUE_LEN, STMT) \ |
David Sedlák | 129a09c | 2019-07-12 14:08:34 +0200 | [diff] [blame] | 85 | if (!VALUE_LEN) { \ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 86 | LOGWRN(PARSER_CTX(CTX), "Empty argument of %s statement does not make sense.", STMT); \ |
David Sedlák | 129a09c | 2019-07-12 14:08:34 +0200 | [diff] [blame] | 87 | } |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 88 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 89 | /* |
| 90 | * Additional YANG constants |
| 91 | */ |
| 92 | #define Y_TAB_SPACES 8 /**< number of spaces instead of tab character */ |
| 93 | #define LY_TYPE_DEC64_FD_MAX 18 /**< Maximal value of decimal64's fraction-digits */ |
| 94 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 95 | /** |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 96 | * @brief List of YANG statement groups - the (sub)module's substatements |
| 97 | */ |
| 98 | enum yang_module_stmt { |
| 99 | Y_MOD_MODULE_HEADER, |
| 100 | Y_MOD_LINKAGE, |
| 101 | Y_MOD_META, |
| 102 | Y_MOD_REVISION, |
| 103 | Y_MOD_BODY |
| 104 | }; |
| 105 | |
| 106 | /** |
| 107 | * @brief Types of arguments of YANG statements |
| 108 | */ |
| 109 | enum yang_arg { |
| 110 | Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */ |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 111 | Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */ |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 112 | Y_STR_ARG, /**< YANG "string" rule */ |
| 113 | Y_MAYBE_STR_ARG /**< optional YANG "string" rule */ |
| 114 | }; |
| 115 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 116 | #define PARSER_CTX(CTX) ((CTX)->parsed_mod->mod->ctx) |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 117 | #define LOGVAL_PARSER(CTX, ...) LOGVAL((CTX) ? PARSER_CTX(CTX) : NULL, __VA_ARGS__) |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 118 | |
| 119 | struct lys_parser_ctx { |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 120 | LYS_INFORMAT format; /**< parser format */ |
| 121 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 122 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 123 | struct lysp_module *parsed_mod; /**< (sub)module being parsed */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 124 | struct lys_glob_unres *unres; /**< global unres structure */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 125 | }; |
| 126 | |
Radek Krejci | e384647 | 2018-10-15 15:24:51 +0200 | [diff] [blame] | 127 | /** |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 128 | * @brief Internal context for yang schema parser. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 129 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 130 | struct lys_yang_parser_ctx { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 131 | LYS_INFORMAT format; /**< parser format */ |
| 132 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 133 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
| 134 | struct lysp_module *parsed_mod; /**< (sub)module being parsed */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 135 | struct lys_glob_unres *unres; /**< global unres structure */ |
Radek Krejci | 33090f9 | 2020-12-17 20:12:46 +0100 | [diff] [blame] | 136 | struct ly_in *in; /**< input handler for the parser */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 137 | uint64_t indent; /**< current position on the line for YANG indentation */ |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 138 | }; |
| 139 | |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 140 | /** |
| 141 | * @brief free lys parser context. |
| 142 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 143 | void yang_parser_ctx_free(struct lys_yang_parser_ctx *ctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 144 | |
| 145 | /** |
| 146 | * @brief Internal context for yin schema parser. |
| 147 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 148 | struct lys_yin_parser_ctx { |
| 149 | LYS_INFORMAT format; /**< parser format */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 150 | struct ly_set tpdfs_nodes; /**< set of typedef nodes */ |
| 151 | struct ly_set grps_nodes; /**< set of grouping nodes */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 152 | struct lysp_module *parsed_mod;/**< (sub)module being parsed */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 153 | struct lys_glob_unres *unres; /**< global unres structure */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 154 | struct lyxml_ctx *xmlctx; /**< context for xml parser */ |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | /** |
| 158 | * @brief free yin parser context |
| 159 | * |
| 160 | * @param[in] ctx Context to free. |
| 161 | */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 162 | void yin_parser_ctx_free(struct lys_yin_parser_ctx *ctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 163 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 164 | /** |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 165 | * @brief Check that \p c is valid UTF8 code point for YANG string. |
| 166 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 167 | * @param[in] ctx parser context for logging. |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 168 | * @param[in] c UTF8 code point of a character to check. |
| 169 | * @return LY_ERR values. |
| 170 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 171 | LY_ERR lysp_check_stringchar(struct lys_parser_ctx *ctx, uint32_t c); |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 172 | |
| 173 | /** |
| 174 | * @brief Check that \p c is valid UTF8 code point for YANG identifier. |
| 175 | * |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 176 | * @param[in] ctx parser context for logging. |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 177 | * @param[in] c UTF8 code point of a character to check. |
| 178 | * @param[in] first Flag to check the first character of an identifier, which is more restricted. |
| 179 | * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers: |
| 180 | * 0 - colon not yet found (no prefix) |
| 181 | * 1 - \p c is the colon character |
| 182 | * 2 - prefix already processed, now processing the identifier |
| 183 | * |
| 184 | * If the identifier cannot be prefixed, NULL is expected. |
| 185 | * @return LY_ERR values. |
| 186 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 187 | LY_ERR lysp_check_identifierchar(struct lys_parser_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix); |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 188 | |
| 189 | /** |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 190 | * @brief Check the currently present prefixes in the module for collision with the new one. |
| 191 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 192 | * @param[in] ctx Context for logging. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 193 | * @param[in] imports List of current imports of the module to check prefix collision. |
| 194 | * @param[in] module_prefix Prefix of the module to check collision. |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 195 | * @param[in] value Newly added prefix value (including its location to distinguish collision with itself). |
| 196 | * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise |
| 197 | */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 198 | LY_ERR lysp_check_prefix(struct lys_parser_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value); |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 199 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 200 | /** |
| 201 | * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT) |
| 202 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 203 | * @param[in] ctx Optional context for logging. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 204 | * @param[in] date Date string to check (non-necessarily terminated by \0) |
| 205 | * @param[in] date_len Length of the date string, 10 expected. |
| 206 | * @param[in] stmt Statement name for error message. |
| 207 | * @return LY_ERR value. |
| 208 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 209 | LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, uint8_t date_len, const char *stmt); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 210 | |
| 211 | /** |
| 212 | * @brief Check names of typedefs in the parsed module to detect collisions. |
| 213 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 214 | * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes |
| 215 | * @param[in] mod Module where the type is being defined. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 216 | * @return LY_ERR value. |
| 217 | */ |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 218 | LY_ERR lysp_check_dup_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
| 219 | |
| 220 | /** |
| 221 | * @brief Check names of features in the parsed module and submodules to detect collisions. |
| 222 | * |
| 223 | * @param[in] ctx Parser context. |
| 224 | * @param[in] mod Module where the type is being defined. |
| 225 | * @return LY_ERR value. |
| 226 | */ |
| 227 | LY_ERR lysp_check_dup_features(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
| 228 | |
| 229 | /** |
| 230 | * @brief Check names of identities in the parsed module and submodules to detect collisions. |
| 231 | * |
| 232 | * @param[in] ctx Parser context. |
| 233 | * @param[in] mod Module where the type is being defined. |
| 234 | * @return LY_ERR value. |
| 235 | */ |
| 236 | LY_ERR lysp_check_dup_identities(struct lys_parser_ctx *ctx, struct lysp_module *mod); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 237 | |
| 238 | /** |
| 239 | * @brief Just move the newest revision into the first position, does not sort the rest |
| 240 | * @param[in] revs Sized-array of the revisions in a printable schema tree. |
| 241 | */ |
| 242 | void lysp_sort_revisions(struct lysp_revision *revs); |
| 243 | |
| 244 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 245 | * @brief Find type specified type definition. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 246 | * |
| 247 | * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module. |
| 248 | * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents. |
| 249 | * @param[in] start_module Module where the type is being instantiated for search for typedefs. |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 250 | * @param[out] type Built-in type identifier of the id. If #LY_TYPE_UNKNOWN, tpdf is expected to contain found YANG schema typedef statement. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 251 | * @param[out] tpdf Found type definition. |
| 252 | * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef. |
| 253 | * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types. |
| 254 | */ |
| 255 | LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 256 | LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 257 | |
| 258 | /** |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 259 | * @brief Validate enum name. |
| 260 | * |
| 261 | * @param[in] ctx yang parser context for logging. |
| 262 | * @param[in] name String to check. |
| 263 | * @param[in] name_len Length of name. |
| 264 | * |
| 265 | * @return LY_ERR values |
| 266 | */ |
David Sedlák | 07869a5 | 2019-07-12 14:28:19 +0200 | [diff] [blame] | 267 | LY_ERR lysp_check_enum_name(struct lys_parser_ctx *ctx, const char *name, size_t name_len); |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 268 | |
| 269 | /** |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 270 | * @brief Find and parse module of the given name. |
| 271 | * |
| 272 | * @param[in] ctx libyang context. |
| 273 | * @param[in] name Name of the module to load. |
| 274 | * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded. |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 275 | * @param[in] need_implemented Whether the module should be implemented. If revision is NULL and this flag is set, |
| 276 | * the implemented module in the context is returned despite it might not be of the latest revision, because in this |
| 277 | * case the module of the latest revision can not be made implemented. |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 278 | * @param[in] features All the features to enable if implementing the module. |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 279 | * @param[in] unres Global unres structure for all newly implemented modules. |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 280 | * @param[out] mod Parsed module structure. |
| 281 | * @return LY_ERR value. |
| 282 | */ |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 283 | LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, ly_bool need_implemented, |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 284 | const char **features, struct lys_glob_unres *unres, struct lys_module **mod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 285 | |
| 286 | /** |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 287 | * @brief Parse included submodules into the simply parsed YANG module. |
| 288 | * |
| 289 | * YANG 1.0 does not require the main module to include all the submodules. Therefore, parsing submodules can cause |
| 290 | * reallocating and extending the includes array in the main module by the submodules included only in submodules. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 291 | * |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 292 | * @param[in] pctx main parser context |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 293 | * @param[in] pmod Parsed module with the includes array to be processed. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 294 | * @return LY_ERR value. |
| 295 | */ |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 296 | LY_ERR lysp_load_submodules(struct lys_parser_ctx *pctx, struct lysp_module *pmod); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 297 | |
| 298 | /** |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 299 | * @brief Free a parsed restriction. |
| 300 | * |
| 301 | * @param[in] ctx libyang context. |
| 302 | * @param[in] restr Restriction to free. |
| 303 | */ |
| 304 | void lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr); |
| 305 | |
| 306 | /** |
| 307 | * @brief Free a parsed qualified name. |
| 308 | * |
| 309 | * @param[in] ctx libyang context. |
| 310 | * @param[in] qname Qualified name to free. |
| 311 | */ |
| 312 | void lysp_qname_free(struct ly_ctx *ctx, struct lysp_qname *qname); |
| 313 | |
| 314 | /** |
| 315 | * @brief Free a parsed node. |
| 316 | * |
| 317 | * @param[in] ctx libyang context. |
| 318 | * @param[in] node Node to free. |
| 319 | */ |
| 320 | void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 321 | |
| 322 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 323 | * @brief Get address of a node's actions list if any. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 324 | * Decides the node's type and in case it has an actions list, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 325 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 326 | * @param[in] node Node to check. |
| 327 | * @return Address of the node's actions member if any, NULL otherwise. |
| 328 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 329 | struct lysp_node_action **lysp_node_actions_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 330 | |
| 331 | /** |
| 332 | * @brief Get address of a node's notifications list if any. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 333 | * Decides the node's type and in case it has a notifications list, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 334 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 335 | * @param[in] node Node to check. |
| 336 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 337 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 338 | struct lysp_node_notif **lysp_node_notifs_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 339 | |
| 340 | /** |
| 341 | * @brief Get address of a node's child pointer if any. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 342 | * Decides the node's type and in case it has a children list, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 343 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 344 | * @param[in] node Node to check. |
| 345 | * @return Address of the node's child member if any, NULL otherwise. |
| 346 | */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 347 | struct lysp_node **lysp_node_child_p(struct lysp_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 348 | |
| 349 | /** |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 350 | * @brief Get the address of the node's musts member, if any. |
| 351 | * Decides the node's type and in case it has a musts member, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 352 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 353 | * @param[in] node Node to examine. |
| 354 | * @return The address of the node's musts member if any, NULL otherwise. |
| 355 | */ |
| 356 | struct lysp_restr **lysp_node_musts_p(const struct lysp_node *node); |
| 357 | |
| 358 | /** |
| 359 | * @brief Get the node's musts member, if any. |
| 360 | * Decides the node's type and in case it has a musts member, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 361 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 362 | * @param[in] node Node to examine. |
| 363 | * @return The node's musts member if any, NULL otherwise. |
| 364 | */ |
| 365 | struct lysp_restr *lysp_node_musts(const struct lysp_node *node); |
| 366 | |
| 367 | /** |
| 368 | * @brief Get the address of the node's when member, if any. |
| 369 | * Decides the node's type and in case it has a when, returns it. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 370 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 371 | * @param[in] node Node to examine. |
| 372 | * @return The address of the node's when member if any, NULL otherwise. |
| 373 | */ |
| 374 | struct lysp_when **lysp_node_when_p(const struct lysp_node *node); |
| 375 | |
| 376 | /** |
| 377 | * @brief Get the node's when member, if any. |
| 378 | * Decides the node's type and in case it has a when, returns it. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 379 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 380 | * @param[in] node Node to examine. |
| 381 | * @return The node's when member if any, NULL otherwise. |
| 382 | */ |
| 383 | struct lysp_when *lysp_node_when(const struct lysp_node *node); |
| 384 | |
| 385 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 386 | * @brief Get address of a node's child pointer if any. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 387 | * Decides the node's type and in case it has a children list, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 388 | * |
| 389 | * Do not use for RPC and action nodes. |
| 390 | * |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 391 | * @param[in] node Node to check. |
| 392 | * @return Address of the node's child member if any, NULL otherwise. |
| 393 | */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 394 | struct lysc_node **lysc_node_child_p(const struct lysc_node *node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 395 | |
| 396 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 397 | * @brief Get address of a node's notifs pointer if any. |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 398 | * Decides the node's type and in case it has a notifs array, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 399 | * |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 400 | * @param[in] node Node to check. |
| 401 | * @return Address of the node's notifs member if any, NULL otherwise. |
| 402 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 403 | struct lysc_node_notif **lysc_node_notifs_p(struct lysc_node *node); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 404 | |
| 405 | /** |
| 406 | * @brief Get address of a node's actions pointer if any. |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 407 | * Decides the node's type and in case it has a actions array, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 408 | * |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 409 | * @param[in] node Node to check. |
| 410 | * @return Address of the node's actions member if any, NULL otherwise. |
| 411 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 412 | struct lysc_node_action **lysc_node_actions_p(struct lysc_node *node); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 413 | |
| 414 | /** |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 415 | * @brief Get address of a node's when member if any. |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 416 | * Decides the node's type and in case it has a when member, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 417 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 418 | * @param[in] node Node to check. |
| 419 | * @return Address of the node's when member if any, NULL otherwise. |
| 420 | */ |
| 421 | struct lysc_when ***lysc_node_when_p(const struct lysc_node *node); |
| 422 | |
| 423 | /** |
| 424 | * @brief Get address of a node's musts member if any. |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 425 | * Decides the node's type and in case it has a musts member, returns its address. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 426 | * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 427 | * @param[in] node Node to check. |
| 428 | * @return Address of the node's musts member if any, NULL otherwise. |
| 429 | */ |
| 430 | struct lysc_must **lysc_node_musts_p(const struct lysc_node *node); |
| 431 | |
| 432 | /** |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 433 | * @brief Iterate over the specified type of the extension instances |
| 434 | * |
| 435 | * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore |
| 436 | * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 437 | * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_COUNT(ext). |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 438 | * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use |
| 439 | * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 440 | * @result index in the ext array, LY_ARRAY_COUNT(ext) value if not present. |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 441 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 442 | LY_ARRAY_COUNT_TYPE lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, LYEXT_SUBSTMT substmt); |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 443 | |
| 444 | /** |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 445 | * @brief Get the covering schema module structure for the given parsed module structure. |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame^] | 446 | * |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 447 | * @param[in] ctx libyang context to search. |
| 448 | * @param[in] mod Parsed schema structure. |
| 449 | * @return Corresponding lys_module structure for the given parsed schema structure. |
| 450 | */ |
| 451 | struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod); |
| 452 | |
| 453 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 454 | * @brief Stringify YANG built-in type. |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 455 | * @param[in] basetype Built-in type ID to stringify. |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 456 | * @return Constant string with the name of the built-in type. |
| 457 | */ |
| 458 | const char *lys_datatype2str(LY_DATA_TYPE basetype); |
| 459 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 460 | /** |
| 461 | * @brief Implement a module (just like ::lys_set_implemented()), can be called recursively. |
| 462 | * |
| 463 | * @param[in] mod Module to implement. |
| 464 | * @param[in] features Array of features to enable. |
| 465 | * @param[in,out] unres Global unres to add to. |
| 466 | * @return LY_ERR value. |
| 467 | */ |
| 468 | LY_ERR lys_set_implemented_r(struct lys_module *mod, const char **features, struct lys_glob_unres *unres); |
| 469 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 470 | typedef LY_ERR (*lys_custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 471 | void *check_data); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 472 | |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 473 | /** |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 474 | * @brief Create a new module. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 475 | * |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 476 | * It is parsed, opionally compiled, added into the context, and the latest_revision flag is updated. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 477 | * |
| 478 | * @param[in] ctx libyang context where to process the data model. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 479 | * @param[in] in Input structure. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 480 | * @param[in] format Format of the input data (YANG or YIN). |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 481 | * @param[in] need_implemented Whether module needs to be implemented and compiled. |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 482 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 483 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 484 | * @param[in] features Array of features to enable ended with NULL. NULL for all features disabled and '*' for all enabled. |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 485 | * @param[in,out] unres Global unres structure for newly implemented modules. |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 486 | * @param[out] module Created module. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 487 | * @return LY_ERR value. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 488 | */ |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 489 | LY_ERR lys_create_module(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, ly_bool need_implemented, |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 490 | lys_custom_check custom_check, void *check_data, const char **features, struct lys_glob_unres *unres, |
| 491 | struct lys_module **module); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 492 | |
| 493 | /** |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 494 | * @brief Parse submodule. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 495 | * |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 496 | * The latest_revision flag of submodule is updated. |
| 497 | * |
| 498 | * @param[in] ctx libyang context where to process the data model. |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 499 | * @param[in] in Input structure. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 500 | * @param[in] format Format of the input data (YANG or YIN). |
| 501 | * @param[in] main_ctx Parser context of the main module. |
| 502 | * @param[in] custom_check Callback to check the parsed schema before it is accepted. |
| 503 | * @param[in] check_data Caller's data to pass to the custom_check callback. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 504 | * @param[out] submodule Parsed submodule. |
| 505 | * @return LY_ERR value. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 506 | */ |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 507 | LY_ERR lys_parse_submodule(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 508 | struct lys_parser_ctx *main_ctx, lys_custom_check custom_check, |
| 509 | void *check_data, struct lysp_submodule **submodule); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 510 | |
| 511 | /** |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 512 | * @brief Fill filepath value if available in input handler @p in |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 513 | * |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 514 | * @param[in] ctx Context with dictionary where the filepath value will be stored. |
| 515 | * @param[in] in Input handler to examine (filepath is not available for all the input types). |
| 516 | * @param[out] filepath Address of the variable where the filepath is stored. |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 517 | */ |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 518 | void lys_parser_fill_filepath(struct ly_ctx *ctx, struct ly_in *in, const char **filepath); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 519 | |
| 520 | /** |
| 521 | * @brief Load the (sub)module into the context. |
| 522 | * |
| 523 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 524 | * |
| 525 | * module_name and submodule_name are alternatives - only one of the |
| 526 | * |
| 527 | * @param[in] ctx libyang context where to work. |
| 528 | * @param[in] name Name of the (sub)module to load. |
| 529 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 530 | * @param[in] features Array of enabled features ended with NULL. |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 531 | * @param[in] need_implemented Whether the (sub)module is needed implemented or not. |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 532 | * @param[in] main_ctx Parser context of the main module in case of loading submodule. |
fredgan | cd485b8 | 2019-10-18 15:00:17 +0800 | [diff] [blame] | 533 | * @param[in] main_name Main module name in case of loading submodule. |
Radek Krejci | 78f0682 | 2019-10-30 12:54:05 +0100 | [diff] [blame] | 534 | * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some |
| 535 | * backup and it is actually ok if the input data are not found. However, parser reports errors even in this case. |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 536 | * @param[in,out] unres Global unres structure for newly implemented modules. |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 537 | * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*). |
| 538 | * If it is a module, it is already in the context! |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 539 | * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided. |
| 540 | */ |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 541 | LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, const char **features, |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 542 | ly_bool need_implemented, struct lys_parser_ctx *main_ctx, const char *main_name, ly_bool required, |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 543 | struct lys_glob_unres *unres, void **result); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 544 | |
| 545 | /** |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 546 | * @brief Get the @ref ifftokens from the given position in the 2bits array |
| 547 | * (libyang format of the if-feature expression). |
| 548 | * @param[in] list The 2bits array with the compiled if-feature expression. |
| 549 | * @param[in] pos Position (0-based) to specify from which position get the operator. |
| 550 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 551 | uint8_t lysc_iff_getop(uint8_t *list, size_t pos); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 552 | |
| 553 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 554 | * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed, |
| 555 | * but the memory is not sanitized. |
| 556 | */ |
Radek Krejci | 0a03a34 | 2021-01-19 13:39:28 +0100 | [diff] [blame] | 557 | #define FREE_ARRAY(CTX, ARRAY, FUNC) {LY_ARRAY_COUNT_TYPE c__; LY_ARRAY_FOR(ARRAY, c__){(FUNC)(CTX, &(ARRAY)[c__]);}LY_ARRAY_FREE(ARRAY);} |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 558 | |
| 559 | /** |
| 560 | * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized. |
| 561 | */ |
Radek Krejci | 0a03a34 | 2021-01-19 13:39:28 +0100 | [diff] [blame] | 562 | #define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {(FUNC)(CTX, MEMBER);free(MEMBER);} |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 563 | |
| 564 | /** |
| 565 | * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed, |
| 566 | * but the memory is not sanitized. |
| 567 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 568 | #define FREE_STRINGS(CTX, ARRAY) {LY_ARRAY_COUNT_TYPE c__; LY_ARRAY_FOR(ARRAY, c__){FREE_STRING(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);} |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 569 | |
| 570 | /** |
Radek Krejci | 15f10ab | 2020-11-03 14:14:14 +0100 | [diff] [blame] | 571 | * @brief Free the printable YANG schema tree structure. Works for both modules and submodules. |
| 572 | * |
| 573 | * @param[in] module Printable YANG schema tree structure to free. |
| 574 | */ |
| 575 | void lysp_module_free(struct lysp_module *module); |
| 576 | |
| 577 | /** |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 578 | * @brief Free the parsed type structure. |
| 579 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 580 | * @param[in] type Parsed schema type structure to free. Note that the type itself is not freed. |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 581 | */ |
| 582 | void lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 583 | |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 584 | /** |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 585 | * @brief Free the parsed extension instance structure. |
| 586 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 587 | * @param[in] type Parsed extension instance structure to free. Note that the instance itself is not freed. |
| 588 | */ |
| 589 | void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext); |
| 590 | |
| 591 | /** |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 592 | * @param[in,out] exts [sized array](@ref sizedarrays) For extension instances in case of statements that do not store extension instances in their own list. |
| 593 | */ |
| 594 | LY_ERR lysp_stmt_parse(struct lysc_ctx *ctx, const struct lysp_stmt *stmt, enum ly_stmt kw, void **result, struct lysp_ext_instance **exts); |
Radek Krejci | 335332a | 2019-09-05 13:03:35 +0200 | [diff] [blame] | 595 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 596 | /** |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 597 | * @brief Free a parsed node. |
| 598 | * |
| 599 | * @param[in] ctx libyang context. |
| 600 | * @param[in] node Node to free. |
| 601 | */ |
| 602 | void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 603 | |
| 604 | /** |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 605 | * @brief Free the compiled type structure. |
| 606 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 607 | * @param[in,out] type Compiled type structure to be freed. The structure has refcount, so it is freed only in case the value is decreased to 0. |
| 608 | */ |
| 609 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
| 610 | |
| 611 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 612 | * @brief Free the compiled if-feature structure. |
| 613 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 614 | * @param[in,out] iff Compiled if-feature structure to be cleaned. |
| 615 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 616 | */ |
| 617 | void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff); |
| 618 | |
| 619 | /** |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 620 | * @brief Free the compiled identity structure. |
| 621 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 622 | * @param[in,out] ident Compiled identity structure to be cleaned. |
| 623 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 624 | */ |
| 625 | void lysc_ident_free(struct ly_ctx *ctx, struct lysc_ident *ident); |
| 626 | |
| 627 | /** |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 628 | * @brief Free the compiled must structure. |
| 629 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 630 | * @param[in,out] must Compiled must structure to be cleaned. |
| 631 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 632 | */ |
| 633 | void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must); |
| 634 | |
| 635 | /** |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 636 | * @brief Free the data inside compiled input/output structure. |
| 637 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 638 | * @param[in,out] inout Compiled inout structure to be cleaned. |
| 639 | * Since the structure is part of the RPC/action structure, it is not freed itself. |
| 640 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 641 | void lysc_node_action_inout_free(struct ly_ctx *ctx, struct lysc_node_action_inout *inout); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 642 | |
| 643 | /** |
| 644 | * @brief Free the data inside compiled RPC/action structure. |
| 645 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 646 | * @param[in,out] action Compiled action structure to be cleaned. |
| 647 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 648 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 649 | void lysc_node_action_free(struct ly_ctx *ctx, struct lysc_node_action *action); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 650 | |
| 651 | /** |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 652 | * @brief Free the items inside the compiled Notification structure. |
| 653 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 654 | * @param[in,out] action Compiled Notification structure to be cleaned. |
| 655 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 656 | */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 657 | void lysc_node_notif_free(struct ly_ctx *ctx, struct lysc_node_notif *notif); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 658 | |
| 659 | /** |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 660 | * @brief Free the compiled extension instance structure. |
| 661 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 662 | * @param[in,out] ext Compiled extension instance structure to be cleaned. |
| 663 | * Since the structure is typically part of the sized array, the structure itself is not freed. |
| 664 | */ |
| 665 | void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext); |
| 666 | |
| 667 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 668 | * @brief Free the compiled node structure. |
| 669 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 670 | * @param[in] node Compiled node structure to be freed. |
| 671 | * @param[in] unlink Whether to first unlink the node before freeing. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 672 | */ |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 673 | void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node, ly_bool unlink); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 674 | |
| 675 | /** |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 676 | * @brief Free the compiled container node structure. |
| 677 | * |
| 678 | * Only the container-specific members are freed, for generic node free function, |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 679 | * use ::lysc_node_free(). |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 680 | * |
| 681 | * @param[in] ctx libyang context where the string data resides in a dictionary. |
| 682 | * @param[in,out] node Compiled container node structure to be freed. |
| 683 | */ |
| 684 | void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node); |
| 685 | |
| 686 | /** |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 687 | * @brief Free the compiled schema structure. |
| 688 | * @param[in,out] module Compiled schema module structure to free. |
| 689 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 690 | */ |
| 691 | void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 692 | |
| 693 | /** |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 694 | * @brief Free the schema structure. It just frees, it does not remove the schema from its context. |
| 695 | * @param[in,out] module Schema module structure to free. |
| 696 | * @param[in] private_destructor Function to remove private data from the compiled schema tree. |
| 697 | */ |
| 698 | void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)); |
| 699 | |
| 700 | /** |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 701 | * @brief match yang keyword |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 702 | * |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 703 | * @param[in,out] in Input structure, is updated. |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 704 | * @param[in,out] indent Pointer to the counter of current position on the line for YANG indentation (optional). |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 705 | * @return yang_keyword values. |
David Sedlák | 18e494b | 2018-12-17 03:58:39 +0100 | [diff] [blame] | 706 | */ |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 707 | enum ly_stmt lysp_match_kw(struct ly_in *in, uint64_t *indent); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 708 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 709 | /** |
| 710 | * @brief Generate path of the given node in the requested format. |
| 711 | * |
| 712 | * @param[in] node Schema path of this node will be generated. |
| 713 | * @param[in] parent Build relative path only until this parent is found. If NULL, the full absolute path is printed. |
| 714 | * @param[in] pathtype Format of the path to generate. |
| 715 | * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| 716 | * If NULL, memory for the complete path is allocated. |
| 717 | * @param[in] buflen Size of the provided @p buffer. |
| 718 | * @return NULL in case of memory allocation error, path of the node otherwise. |
| 719 | * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
| 720 | */ |
| 721 | char *lysc_path_until(const struct lysc_node *node, const struct lysc_node *parent, LYSC_PATH_TYPE pathtype, char *buffer, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 722 | size_t buflen); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 723 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 724 | /** |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 725 | * @brief Get nearest @p schema parent (including the node itself) that can be instantiated in data. |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 726 | * |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 727 | * @param[in] schema Schema node to get the nearest data node for. |
| 728 | * @return Schema data node, NULL if top-level (in data). |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 729 | */ |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 730 | const struct lysc_node *lysc_data_node(const struct lysc_node *schema); |
| 731 | |
| 732 | /** |
| 733 | * @brief Same as ::lysc_data_node() but never returns the node itself. |
| 734 | */ |
Radek Krejci | 7d95fbb | 2021-01-26 17:33:13 +0100 | [diff] [blame] | 735 | #define lysc_data_parent(SCHEMA) lysc_data_node((SCHEMA)->parent) |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 736 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 737 | /** |
Radek Krejci | 239c38a | 2020-10-19 10:58:25 +0200 | [diff] [blame] | 738 | * @brief Get format-specific prefix for a module. |
| 739 | * |
| 740 | * For type plugins available as ::ly_type_print_get_prefix(). |
| 741 | * |
| 742 | * @param[in] mod Module whose prefix to get. |
| 743 | * @param[in] format Format of the prefix. |
| 744 | * @param[in] prefix_data Format-specific data: |
| 745 | * LY_PREF_SCHEMA - const struct lysp_module * (module used for resolving imports to prefixes) |
| 746 | * LY_PREF_SCHEMA_RESOLVED - struct lyd_value_prefix * (sized array of pairs: prefix - module) |
| 747 | * LY_PREF_XML - struct ly_set * (set of all returned modules as ::struct lys_module) |
| 748 | * LY_PREF_JSON - NULL |
| 749 | * @return Module prefix to print. |
| 750 | * @return NULL on error. |
| 751 | */ |
| 752 | const char *ly_get_prefix(const struct lys_module *mod, LY_PREFIX_FORMAT format, void *prefix_data); |
| 753 | |
| 754 | /** |
| 755 | * @brief Resolve format-specific prefixes to modules. |
| 756 | * |
| 757 | * For type plugins available as ::ly_type_store_resolve_prefix(). |
| 758 | * |
| 759 | * @param[in] ctx libyang context. |
| 760 | * @param[in] prefix Prefix to resolve. |
| 761 | * @param[in] prefix_len Length of @p prefix. |
| 762 | * @param[in] format Format of the prefix. |
| 763 | * @param[in] prefix_data Format-specific data: |
| 764 | * LY_PREF_SCHEMA - const struct lysp_module * (module used for resolving prefixes from imports) |
| 765 | * LY_PREF_SCHEMA_RESOLVED - struct lyd_value_prefix * (sized array of pairs: prefix - module) |
| 766 | * LY_PREF_XML - const struct ly_set * (set with defined namespaces stored as ::lyxml_ns) |
| 767 | * LY_PREF_JSON - NULL |
| 768 | * @return Resolved prefix module, |
| 769 | * @return NULL otherwise. |
| 770 | */ |
| 771 | const struct lys_module *ly_resolve_prefix(const struct ly_ctx *ctx, const char *prefix, size_t prefix_len, |
| 772 | LY_PREFIX_FORMAT format, void *prefix_data); |
| 773 | |
Radek Krejci | 70853c5 | 2018-10-15 14:46:16 +0200 | [diff] [blame] | 774 | #endif /* LY_TREE_SCHEMA_INTERNAL_H_ */ |