blob: 0a1d5ab4d383c043e5bc8a88aa035f53c67fe049 [file] [log] [blame]
Radek Krejci70853c52018-10-15 14:46:16 +02001/**
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 Krejci2d7a47b2019-05-16 13:34:10 +020018#include <stdint.h>
19
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include "common.h"
Radek Krejci2d7a47b2019-05-16 13:34:10 +020021#include "set.h"
22#include "tree_schema.h"
David Sedlákebd3acf2019-07-26 15:04:32 +020023#include "xml.h"
Radek Krejci2d7a47b2019-05-16 13:34:10 +020024
FredGand944bdc2019-11-05 21:57:07 +080025#define YIN_NS_URI "urn:ietf:params:xml:ns:yang:yin:1"
26
Radek Krejci335332a2019-09-05 13:03:35 +020027/**
28 * @brief Check module version is at least 2 (YANG 1.1) because of the keyword presence.
29 * Logs error message and returns LY_EVALID in case of module in YANG version 1.0.
30 * @param[in] CTX yang parser context to get current module and for logging.
31 * @param[in] KW keyword allowed only in YANG version 1.1 (or later) - for logging.
32 * @param[in] PARENT parent statement where the KW is present - for logging.
33 */
34#define PARSER_CHECK_STMTVER2_RET(CTX, KW, PARENT) \
35 if ((CTX)->mod_version < 2) {LOGVAL_PARSER((CTX), LY_VCODE_INCHILDSTMT2, KW, PARENT); return LY_EVALID;}
Radek Krejcid33273d2018-10-25 14:55:52 +020036
Radek Krejcia9026eb2018-12-12 16:04:47 +010037/* These 2 macros checks YANG's identifier grammar rule */
38#define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_')
39#define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \
David Sedlákebd3acf2019-07-26 15:04:32 +020040 c == '_' || c == '-' || c == '.')
Radek Krejcia9026eb2018-12-12 16:04:47 +010041
David Sedlák4a650532019-07-10 11:55:18 +020042/* Macro to check YANG's yang-char grammar rule */
David Sedlák2c0d5ef2019-08-14 11:40:44 +020043#define is_yangutf8char(c) ((c >= 0x20 && c <= 0xd7ff) || c == 0x09 || c == 0x0a || c == 0x0d || \
David Sedlák4a650532019-07-10 11:55:18 +020044 (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \
45 (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \
46 (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \
47 (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \
48 (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \
49 (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \
50 (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \
51 (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \
52 (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd))
53
Radek Krejci70853c52018-10-15 14:46:16 +020054/**
David Sedlákca36c422019-07-12 12:47:55 +020055 * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY.
56 * Macro logs an error message and returns LY_EVALID in case of existence of a matching object.
57 *
58 * @param[in] CTX yang parser context for logging.
59 * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search.
60 * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare.
61 * @param[in] STMT Name of the compared YANG statements for logging.
62 * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member.
63 */
64#define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \
65 if (ARRAY) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020066 for (LY_ARRAY_COUNT_TYPE u_ = 0; u_ < LY_ARRAY_COUNT(ARRAY) - 1; ++u_) { \
Radek Krejci7eb54ba2020-05-18 16:30:04 +020067 if (!strcmp((ARRAY)[u_].MEMBER, IDENT)) { \
David Sedlákca36c422019-07-12 12:47:55 +020068 LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \
69 return LY_EVALID; \
70 } \
71 } \
72 }
73
Michal Vaskob36053d2020-03-26 15:49:30 +010074#define CHECK_NONEMPTY(CTX, VALUE_LEN, STMT) \
David Sedlák129a09c2019-07-12 14:08:34 +020075 if (!VALUE_LEN) { \
Michal Vaskob36053d2020-03-26 15:49:30 +010076 LOGWRN(PARSER_CTX(CTX), "Empty argument of %s statement does not make sense.", STMT); \
David Sedlák129a09c2019-07-12 14:08:34 +020077 }
Radek Krejci70853c52018-10-15 14:46:16 +020078
79/**
Radek Krejcie3846472018-10-15 15:24:51 +020080 * @brief List of YANG statement groups - the (sub)module's substatements
81 */
82enum yang_module_stmt {
83 Y_MOD_MODULE_HEADER,
84 Y_MOD_LINKAGE,
85 Y_MOD_META,
86 Y_MOD_REVISION,
87 Y_MOD_BODY
88};
89
90/**
91 * @brief Types of arguments of YANG statements
92 */
93enum yang_arg {
94 Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */
Radek Krejcia9026eb2018-12-12 16:04:47 +010095 Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */
Radek Krejcie3846472018-10-15 15:24:51 +020096 Y_STR_ARG, /**< YANG "string" rule */
97 Y_MAYBE_STR_ARG /**< optional YANG "string" rule */
98};
99
Michal Vasko7c8439f2020-08-05 13:25:19 +0200100#define PARSER_CTX(CTX) (CTX)->format == LYS_IN_YANG ? ((struct lys_yang_parser_ctx *)CTX)->ctx : ((struct ly_ctx *)((struct lys_yin_parser_ctx *)CTX)->xmlctx->ctx)
Michal Vaskob36053d2020-03-26 15:49:30 +0100101
102#define LOGVAL_PARSER(CTX, ...) (CTX)->format == LYS_IN_YANG ? LOGVAL_YANG(CTX, __VA_ARGS__) : LOGVAL_YIN(CTX, __VA_ARGS__)
103
104#define LOGVAL_YANG(CTX, ...) LOGVAL(PARSER_CTX(CTX), ((struct lys_yang_parser_ctx *)CTX)->pos_type, \
105 ((struct lys_yang_parser_ctx *)CTX)->pos_type == LY_VLOG_LINE ? \
106 (void *)&((struct lys_yang_parser_ctx *)CTX)->line : \
107 (void *)((struct lys_yang_parser_ctx *)CTX)->path, __VA_ARGS__)
108
109#define LOGVAL_YIN(CTX, ...) LOGVAL(PARSER_CTX(CTX), LY_VLOG_LINE, \
110 &((struct lys_yin_parser_ctx *)CTX)->xmlctx->line, __VA_ARGS__)
111
112struct lys_parser_ctx {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200113 LYS_INFORMAT format; /**< parser format */
114 struct ly_set tpdfs_nodes; /**< set of typedef nodes */
115 struct ly_set grps_nodes; /**< set of grouping nodes */
116 struct lys_module *main_mod; /**< main module (belongs-to module for submodules) */
117 uint8_t mod_version; /**< module's version */
Michal Vaskob36053d2020-03-26 15:49:30 +0100118};
119
Radek Krejcie3846472018-10-15 15:24:51 +0200120/**
David Sedlákebd3acf2019-07-26 15:04:32 +0200121 * @brief Internal context for yang schema parser.
Radek Krejci70853c52018-10-15 14:46:16 +0200122 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100123struct lys_yang_parser_ctx {
124 LYS_INFORMAT format; /**< parser format */
David Sedlákebd3acf2019-07-26 15:04:32 +0200125 struct ly_set tpdfs_nodes; /**< set of typedef nodes */
126 struct ly_set grps_nodes; /**< set of grouping nodes */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200127 struct lys_module *main_mod; /**< main module (belongs-to module for submodules) */
David Sedlákebd3acf2019-07-26 15:04:32 +0200128 uint8_t mod_version; /**< module's version */
Radek Krejci335332a2019-09-05 13:03:35 +0200129 enum LY_VLOG_ELEM pos_type; /**< */
David Sedlákebd3acf2019-07-26 15:04:32 +0200130 struct ly_ctx *ctx; /**< context of then yang schemas */
Radek Krejci335332a2019-09-05 13:03:35 +0200131 union {
132 uint64_t line; /**< line number */
133 const char *path; /**< path */
134 };
David Sedlákebd3acf2019-07-26 15:04:32 +0200135 uint64_t indent; /**< current position on the line for YANG indentation */
Radek Krejci70853c52018-10-15 14:46:16 +0200136};
137
David Sedlákebd3acf2019-07-26 15:04:32 +0200138/**
139 * @brief free lys parser context.
140 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100141void yang_parser_ctx_free(struct lys_yang_parser_ctx *ctx);
David Sedlákebd3acf2019-07-26 15:04:32 +0200142
143/**
144 * @brief Internal context for yin schema parser.
145 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100146struct lys_yin_parser_ctx {
147 LYS_INFORMAT format; /**< parser format */
David Sedlákebd3acf2019-07-26 15:04:32 +0200148 struct ly_set tpdfs_nodes; /**< set of typedef nodes */
149 struct ly_set grps_nodes; /**< set of grouping nodes */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200150 struct lys_module *main_mod; /**< main module (belongs-to module for submodules) */
David Sedlákebd3acf2019-07-26 15:04:32 +0200151 uint8_t mod_version; /**< module's version */
Michal Vaskob36053d2020-03-26 15:49:30 +0100152 struct lyxml_ctx *xmlctx; /**< context for xml parser */
David Sedlákebd3acf2019-07-26 15:04:32 +0200153};
154
155/**
156 * @brief free yin parser context
157 *
158 * @param[in] ctx Context to free.
159 */
Michal Vaskob36053d2020-03-26 15:49:30 +0100160void yin_parser_ctx_free(struct lys_yin_parser_ctx *ctx);
David Sedlákebd3acf2019-07-26 15:04:32 +0200161
Michal Vasko7f45cf22020-10-01 12:49:44 +0200162/**
163 * @brief Structure for remembering default values of leaves and leaf-lists. They are resolved at schema compilation
164 * end when the whole schema tree is available.
165 */
166struct lysc_unres_dflt {
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200167 union {
168 struct lysc_node_leaf *leaf;
169 struct lysc_node_leaflist *llist;
170 };
Michal Vasko7f45cf22020-10-01 12:49:44 +0200171 struct lysp_qname *dflt;
172 struct lysp_qname *dflts; /**< this is a sized array */
173};
174
175/**
176 * @brief Compiled parsed augment structure. Just a temporary storage for applying the augment to data.
177 */
178struct lysc_augment {
179 struct lyxp_expr *nodeid; /**< augment target */
180 union {
181 const struct lys_module *nodeid_mod; /**< nodeid local module for absolute targets */
182 const struct lysc_node *nodeid_ctx_node; /**< nodeid context node for relative targets */
183 };
184
185 struct lysp_augment *aug_p; /**< pointer to the parsed augment to apply */
186};
187
188/**
189 * @brief Compiled parsed deviation structure. Just a temporary storage for applying the deviation to data.
190 */
191struct lysc_deviation {
192 struct lyxp_expr *nodeid; /**< deviation target */
193 const struct lys_module *nodeid_mod; /**< nodeid local module */
194
195 struct lysp_deviation **devs; /**< sized array of all the parsed deviations for one target node */
196 const struct lys_module **dev_mods; /**< sized array of modules of @p devs */
197 ly_bool not_supported; /**< whether this is a not-supported deviation */
198};
199
200/**
201 * @brief Compiled parsed refine structure. Just a temporary storage for applying the refine to data.
202 */
203struct lysc_refine {
204 struct lyxp_expr *nodeid; /**< refine target */
205 const struct lysc_node *nodeid_ctx_node; /**< nodeid context node */
206
207 struct lysp_refine **rfns; /**< sized array of parsed refines to apply */
Radek Krejci1c0c3442019-07-23 16:08:47 +0200208};
209
Radek Krejci70853c52018-10-15 14:46:16 +0200210/**
Radek Krejci535ea9f2020-05-29 16:01:05 +0200211 * @brief internal context for compilation
212 */
213struct lysc_ctx {
214 struct ly_ctx *ctx;
Michal Vasko7f45cf22020-10-01 12:49:44 +0200215 struct lys_module *mod; /**< module currently being compiled */
Radek Krejci535ea9f2020-05-29 16:01:05 +0200216 struct lys_module *mod_def; /**< context module for the definitions of the nodes being currently
217 processed - groupings are supposed to be evaluated in place where
218 defined, but its content instances are supposed to be placed into
219 the target module (mod) */
220 struct ly_set groupings; /**< stack for groupings circular check */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200221 struct ly_set xpath; /**< when/must to check */
222 struct ly_set leafrefs; /**< to validate leafref's targets */
Radek Krejci535ea9f2020-05-29 16:01:05 +0200223 struct ly_set dflts; /**< set of incomplete default values */
224 struct ly_set tpdf_chain;
Michal Vasko7f45cf22020-10-01 12:49:44 +0200225 struct ly_set augs; /**< set of compiled non-applied top-level augments */
226 struct ly_set devs; /**< set of compiled non-applied deviations */
227 struct ly_set uses_augs; /**< set of compiled non-applied uses augments */
228 struct ly_set uses_rfns; /**< set of compiled non-applied uses refines */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200229 uint32_t path_len;
230 uint32_t options; /**< various @ref scflags. */
Radek Krejci535ea9f2020-05-29 16:01:05 +0200231#define LYSC_CTX_BUFSIZE 4078
232 char path[LYSC_CTX_BUFSIZE];
233};
234
235/**
David Sedlák4a650532019-07-10 11:55:18 +0200236 * @brief Check that \p c is valid UTF8 code point for YANG string.
237 *
Michal Vaskob36053d2020-03-26 15:49:30 +0100238 * @param[in] ctx parser context for logging.
David Sedlák4a650532019-07-10 11:55:18 +0200239 * @param[in] c UTF8 code point of a character to check.
240 * @return LY_ERR values.
241 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200242LY_ERR lysp_check_stringchar(struct lys_parser_ctx *ctx, uint32_t c);
David Sedlák4a650532019-07-10 11:55:18 +0200243
244/**
245 * @brief Check that \p c is valid UTF8 code point for YANG identifier.
246 *
Michal Vaskob36053d2020-03-26 15:49:30 +0100247 * @param[in] ctx parser context for logging.
David Sedlák4a650532019-07-10 11:55:18 +0200248 * @param[in] c UTF8 code point of a character to check.
249 * @param[in] first Flag to check the first character of an identifier, which is more restricted.
250 * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers:
251 * 0 - colon not yet found (no prefix)
252 * 1 - \p c is the colon character
253 * 2 - prefix already processed, now processing the identifier
254 *
255 * If the identifier cannot be prefixed, NULL is expected.
256 * @return LY_ERR values.
257 */
Radek Krejci857189e2020-09-01 13:26:36 +0200258LY_ERR lysp_check_identifierchar(struct lys_parser_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix);
David Sedlák4a650532019-07-10 11:55:18 +0200259
260/**
Radek Krejci70853c52018-10-15 14:46:16 +0200261 * @brief Check the currently present prefixes in the module for collision with the new one.
262 *
Radek Krejcibbe09a92018-11-08 09:36:54 +0100263 * @param[in] ctx Context for logging.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100264 * @param[in] imports List of current imports of the module to check prefix collision.
265 * @param[in] module_prefix Prefix of the module to check collision.
Radek Krejci70853c52018-10-15 14:46:16 +0200266 * @param[in] value Newly added prefix value (including its location to distinguish collision with itself).
267 * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise
268 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200269LY_ERR lysp_check_prefix(struct lys_parser_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value);
Radek Krejci70853c52018-10-15 14:46:16 +0200270
Radek Krejci86d106e2018-10-18 09:53:19 +0200271/**
272 * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT)
273 *
Radek Krejcibbe09a92018-11-08 09:36:54 +0100274 * @param[in] ctx Optional context for logging.
Radek Krejci86d106e2018-10-18 09:53:19 +0200275 * @param[in] date Date string to check (non-necessarily terminated by \0)
276 * @param[in] date_len Length of the date string, 10 expected.
277 * @param[in] stmt Statement name for error message.
278 * @return LY_ERR value.
279 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200280LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, uint8_t date_len, const char *stmt);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100281
282/**
283 * @brief Check names of typedefs in the parsed module to detect collisions.
284 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100285 * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes
286 * @param[in] mod Module where the type is being defined.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100287 * @return LY_ERR value.
288 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200289LY_ERR lysp_check_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod);
Radek Krejci86d106e2018-10-18 09:53:19 +0200290
291/**
David Sedlákd2ebe572019-07-22 12:53:14 +0200292 * @brief Finalize some of the structures in case they are stored in sized array,
293 * which can be possibly reallocated and some other data may point to them.
294 *
295 * Update parent pointers in the nodes inside grouping/augment/RPC/Notification, which could be reallocated.
296 *
297 * @param[in] mod Parsed module to be updated.
298 * @return LY_ERR value (currently only LY_SUCCESS, but it can change in future).
299 */
300LY_ERR
301lysp_parse_finalize_reallocated(struct lys_parser_ctx *ctx, struct lysp_grp *groupings, struct lysp_augment *augments,
Radek Krejci0f969882020-08-21 16:56:47 +0200302 struct lysp_action *actions, struct lysp_notif *notifs);
David Sedlákd2ebe572019-07-22 12:53:14 +0200303
304/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200305 * @brief Just move the newest revision into the first position, does not sort the rest
306 * @param[in] revs Sized-array of the revisions in a printable schema tree.
307 */
308void lysp_sort_revisions(struct lysp_revision *revs);
309
310/**
David Sedlák6544c182019-07-12 13:17:33 +0200311 * @brief Find type specified type definition.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100312 *
313 * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module.
314 * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents.
315 * @param[in] start_module Module where the type is being instantiated for search for typedefs.
Radek Krejci4f28eda2018-11-12 11:46:16 +0100316 * @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 Krejcibbe09a92018-11-08 09:36:54 +0100317 * @param[out] tpdf Found type definition.
318 * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef.
319 * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types.
320 */
321LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci0f969882020-08-21 16:56:47 +0200322 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100323
324/**
David Sedlák6544c182019-07-12 13:17:33 +0200325 * @brief Validate enum name.
326 *
327 * @param[in] ctx yang parser context for logging.
328 * @param[in] name String to check.
329 * @param[in] name_len Length of name.
330 *
331 * @return LY_ERR values
332 */
David Sedlák07869a52019-07-12 14:28:19 +0200333LY_ERR lysp_check_enum_name(struct lys_parser_ctx *ctx, const char *name, size_t name_len);
David Sedlák6544c182019-07-12 13:17:33 +0200334
335/**
Radek Krejci086c7132018-10-26 15:29:04 +0200336 * @brief Find and parse module of the given name.
337 *
338 * @param[in] ctx libyang context.
339 * @param[in] name Name of the module to load.
340 * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded.
Radek Krejcied5acc52019-04-25 15:57:04 +0200341 * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set,
342 * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module
343 * of the latest revision can not be made implemented.
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100344 * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context,
345 * but only the compiled structure is available.
Radek Krejci086c7132018-10-26 15:29:04 +0200346 * @param[out] mod Parsed module structure.
347 * @return LY_ERR value.
348 */
Radek Krejci857189e2020-09-01 13:26:36 +0200349LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, ly_bool implement, ly_bool require_parsed, struct lys_module **mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200350
351/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200352 * @brief Parse included submodule into the simply parsed YANG module.
353 *
Michal Vasko7c8439f2020-08-05 13:25:19 +0200354 * @param[in] pctx main parser context
Radek Krejcid33273d2018-10-25 14:55:52 +0200355 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
356 * submodule is stored into this structure.
357 * @return LY_ERR value.
358 */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200359LY_ERR lysp_load_submodule(struct lys_parser_ctx *pctx, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +0200360
361/**
Michal Vasko7f45cf22020-10-01 12:49:44 +0200362 * @brief Free a parsed restriction.
363 *
364 * @param[in] ctx libyang context.
365 * @param[in] restr Restriction to free.
366 */
367void lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr);
368
369/**
370 * @brief Free a parsed qualified name.
371 *
372 * @param[in] ctx libyang context.
373 * @param[in] qname Qualified name to free.
374 */
375void lysp_qname_free(struct ly_ctx *ctx, struct lysp_qname *qname);
376
377/**
378 * @brief Free a parsed node.
379 *
380 * @param[in] ctx libyang context.
381 * @param[in] node Node to free.
382 */
383void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node);
384
385/**
386 * @brief Free a parsed input/output node.
387 *
388 * @param[in] ctx libyang context.
389 * @param[in] inout Input/output to free.
390 */
391void lysp_action_inout_free(struct ly_ctx *ctx, struct lysp_action_inout *inout);
392
393/**
394 * @brief Free a parsed action node.
395 *
396 * @param[in] ctx libyang context.
397 * @param[in] action Action to free.
398 */
399void lysp_action_free(struct ly_ctx *ctx, struct lysp_action *action);
400
401/**
402 * @brief Free a parsed notification node.
403 *
404 * @param[in] ctx libyang context.
405 * @param[in] notif Notification to free.
406 */
407void lysp_notif_free(struct ly_ctx *ctx, struct lysp_notif *notif);
408
409/**
Radek Krejci096235c2019-01-11 11:12:19 +0100410 * @brief Compile printable schema into a validated schema linking all the references.
411 *
Michal Vasko7a0b0762020-09-02 16:37:01 +0200412 * @param[in] mod Pointer to the schema structure holding pointers to both schema structure types. The ::lys_module#parsed
Radek Krejci096235c2019-01-11 11:12:19 +0100413 * member is used as input and ::lys_module#compiled is used to hold the result of the compilation.
414 * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags).
415 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
416 */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200417LY_ERR lys_compile(struct lys_module *mod, uint32_t options);
Radek Krejci096235c2019-01-11 11:12:19 +0100418
419/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100420 * @brief Get address of a node's actions list if any.
421 *
422 * Decides the node's type and in case it has an actions list, returns its address.
423 * @param[in] node Node to check.
424 * @return Address of the node's actions member if any, NULL otherwise.
425 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100426struct lysp_action **lysp_node_actions_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100427
428/**
429 * @brief Get address of a node's notifications list if any.
430 *
431 * Decides the node's type and in case it has a notifications list, returns its address.
432 * @param[in] node Node to check.
433 * @return Address of the node's notifs member if any, NULL otherwise.
434 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100435struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100436
437/**
438 * @brief Get address of a node's child pointer if any.
439 *
440 * Decides the node's type and in case it has a children list, returns its address.
441 * @param[in] node Node to check.
442 * @return Address of the node's child member if any, NULL otherwise.
443 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100444struct lysp_node **lysp_node_children_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100445
446/**
447 * @brief Get address of a node's child pointer if any.
448 *
449 * Decides the node's type and in case it has a children list, returns its address.
450 * @param[in] node Node to check.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100451 * @param[in] flags Config flag to distinguish input (LYS_CONFIG_W) and output (LYS_CONFIG_R) data in case of RPC/action node.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100452 * @return Address of the node's child member if any, NULL otherwise.
453 */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100454struct lysc_node **lysc_node_children_p(const struct lysc_node *node, uint16_t flags);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100455
456/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200457 * @brief Get address of a node's notifs pointer if any.
458 *
459 * Decides the node's type and in case it has a notifs array, returns its address.
460 * @param[in] node Node to check.
461 * @return Address of the node's notifs member if any, NULL otherwise.
462 */
463struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node);
464
465/**
466 * @brief Get address of a node's actions pointer if any.
467 *
468 * Decides the node's type and in case it has a actions array, returns its address.
469 * @param[in] node Node to check.
470 * @return Address of the node's actions member if any, NULL otherwise.
471 */
472struct lysc_action **lysc_node_actions_p(struct lysc_node *node);
473
474/**
Radek Krejcid3ca0632019-04-16 16:54:54 +0200475 * @brief Iterate over the specified type of the extension instances
476 *
477 * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore
478 * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200479 * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_COUNT(ext).
Radek Krejcid3ca0632019-04-16 16:54:54 +0200480 * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use
481 * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200482 * @result index in the ext array, LY_ARRAY_COUNT(ext) value if not present.
Radek Krejcid3ca0632019-04-16 16:54:54 +0200483 */
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200484LY_ARRAY_COUNT_TYPE lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, LYEXT_SUBSTMT substmt);
Radek Krejcid3ca0632019-04-16 16:54:54 +0200485
486/**
Radek Krejci96a0bfd2018-11-22 15:25:06 +0100487 * @brief Get the covering schema module structure for the given parsed module structure.
488 * @param[in] ctx libyang context to search.
489 * @param[in] mod Parsed schema structure.
490 * @return Corresponding lys_module structure for the given parsed schema structure.
491 */
492struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod);
493
494/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100495 * @brief Check statement's status for invalid combination.
496 *
497 * The modX parameters are used just to determine if both flags are in the same module,
498 * so any of the schema module structure can be used, but both modules must be provided
499 * in the same type.
500 *
501 * @param[in] ctx Compile context for logging.
502 * @param[in] flags1 Flags of the referencing node.
503 * @param[in] mod1 Module of the referencing node,
504 * @param[in] name1 Schema node name of the referencing node.
505 * @param[in] flags2 Flags of the referenced node.
506 * @param[in] mod2 Module of the referenced node,
507 * @param[in] name2 Schema node name of the referenced node.
508 * @return LY_ERR value
509 */
510LY_ERR lysc_check_status(struct lysc_ctx *ctx,
Radek Krejci0f969882020-08-21 16:56:47 +0200511 uint16_t flags1, void *mod1, const char *name1,
512 uint16_t flags2, void *mod2, const char *name2);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100513
514/**
Radek Krejci95710c92019-02-11 15:49:55 +0100515 * @brief Find the node according to the given descendant/absolute schema nodeid.
516 * Used in unique, refine and augment statements.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100517 *
518 * @param[in] ctx Compile context
519 * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar)
520 * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string.
521 * @param[in] context_node Node where the nodeid is specified to correctly resolve prefixes and to start searching.
Radek Krejci7af64242019-02-18 13:07:53 +0100522 * If no context node is provided, the nodeid is actually expected to be the absolute schema node .
523 * @param[in] context_module Explicit module to resolve prefixes in @nodeid.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100524 * @param[in] nodetype Optional (can be 0) restriction for target's nodetype. If target exists, but does not match
Radek Krejci95710c92019-02-11 15:49:55 +0100525 * the given nodetype, LY_EDENIED is returned (and target is provided), but no error message is printed.
526 * The value can be even an ORed value to allow multiple nodetypes.
Michal Vasko7f45cf22020-10-01 12:49:44 +0200527 * @param[out] target Found target node if any.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100528 * @param[out] result_flag Output parameter to announce if the schema nodeid goes through the action's input/output or a Notification.
529 * The LYSC_OPT_RPC_INPUT, LYSC_OPT_RPC_OUTPUT and LYSC_OPT_NOTIFICATION are used as flags.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100530 * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS.
531 */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200532LY_ERR lysc_resolve_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len,
533 const struct lysc_node *context_node, const struct lys_module *context_module, uint16_t nodetype,
Radek Krejci0f969882020-08-21 16:56:47 +0200534 const struct lysc_node **target, uint16_t *result_flag);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100535
536/**
Radek Krejci151a5b72018-10-19 14:21:44 +0200537 * @brief Find the module referenced by prefix in the provided mod.
538 *
Radek Krejci693262f2019-04-29 15:23:20 +0200539 * Reverse function to lys_prefix_find_module().
540 *
Radek Krejci151a5b72018-10-19 14:21:44 +0200541 * @param[in] mod Schema module where the prefix was used.
542 * @param[in] prefix Prefix used to reference a module.
543 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
544 * @return Pointer to the module or NULL if the module is not found.
545 */
Radek Krejcia3045382018-11-22 14:30:31 +0100546struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len);
547
548/**
Radek Krejci693262f2019-04-29 15:23:20 +0200549 * @brief Find the prefix used to referenced the import module in the provided mod.
550 *
551 * Reverse function to lys_module_find_prefix().
552 *
553 * Note that original prefixes are present only in the parsed schema. In case it is not available
554 * (only compiled schema available), the own prefix of the import module is returned instead.
555 *
556 * @param[in] mod Schema module where the import module was used.
557 * @param[in] import Module referenced in mod.
558 * @return Prefix of the import module.
559 */
560const char *lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import);
561
562/**
Radek Krejci693262f2019-04-29 15:23:20 +0200563 * @brief Stringify YANG built-in type.
Michal Vasko1bf09392020-03-27 12:38:10 +0100564 * @param[in] basetype Built-in type ID to stringify.
Radek Krejci693262f2019-04-29 15:23:20 +0200565 * @return Constant string with the name of the built-in type.
566 */
567const char *lys_datatype2str(LY_DATA_TYPE basetype);
568
Michal Vasko3a41dff2020-07-15 14:30:28 +0200569typedef LY_ERR (*lys_custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod,
Radek Krejci0f969882020-08-21 16:56:47 +0200570 void *check_data);
Michal Vaskob36053d2020-03-26 15:49:30 +0100571
Radek Krejci693262f2019-04-29 15:23:20 +0200572/**
Michal Vasko7a0b0762020-09-02 16:37:01 +0200573 * @brief Create a new module.
Radek Krejcid33273d2018-10-25 14:55:52 +0200574 *
Michal Vasko7a0b0762020-09-02 16:37:01 +0200575 * It is parsed, opionally compiled, added into the context, and the latest_revision flag is updated.
Radek Krejcid33273d2018-10-25 14:55:52 +0200576 *
577 * @param[in] ctx libyang context where to process the data model.
Michal Vasko63f3d842020-07-08 10:10:14 +0200578 * @param[in] in Input structure.
Radek Krejcid33273d2018-10-25 14:55:52 +0200579 * @param[in] format Format of the input data (YANG or YIN).
Michal Vasko7a0b0762020-09-02 16:37:01 +0200580 * @param[in] implement Flag if the schema is supposed to be marked as implemented and compiled.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100581 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
582 * @param[in] check_data Caller's data to pass to the custom_check callback.
Michal Vasko7a0b0762020-09-02 16:37:01 +0200583 * @param[out] module Created module.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200584 * @return LY_ERR value.
Radek Krejcid33273d2018-10-25 14:55:52 +0200585 */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200586LY_ERR lys_create_module(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, ly_bool implement,
Radek Krejci0f969882020-08-21 16:56:47 +0200587 lys_custom_check custom_check, void *check_data, struct lys_module **module);
Radek Krejcid33273d2018-10-25 14:55:52 +0200588
589/**
Michal Vasko7a0b0762020-09-02 16:37:01 +0200590 * @brief Parse submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +0200591 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100592 * The latest_revision flag of submodule is updated.
593 *
594 * @param[in] ctx libyang context where to process the data model.
Michal Vasko63f3d842020-07-08 10:10:14 +0200595 * @param[in] in Input structure.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100596 * @param[in] format Format of the input data (YANG or YIN).
597 * @param[in] main_ctx Parser context of the main module.
598 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
599 * @param[in] check_data Caller's data to pass to the custom_check callback.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200600 * @param[out] submodule Parsed submodule.
601 * @return LY_ERR value.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100602 */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200603LY_ERR lys_parse_submodule(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format,
Radek Krejci0f969882020-08-21 16:56:47 +0200604 struct lys_parser_ctx *main_ctx, lys_custom_check custom_check,
605 void *check_data, struct lysp_submodule **submodule);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100606
607/**
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200608 * @brief Fill filepath value if available in input handler @p in
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100609 *
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200610 * @param[in] ctx Context with dictionary where the filepath value will be stored.
611 * @param[in] in Input handler to examine (filepath is not available for all the input types).
612 * @param[out] filepath Address of the variable where the filepath is stored.
Radek Krejcid33273d2018-10-25 14:55:52 +0200613 */
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200614void lys_parser_fill_filepath(struct ly_ctx *ctx, struct ly_in *in, const char **filepath);
Radek Krejcid33273d2018-10-25 14:55:52 +0200615
616/**
617 * @brief Load the (sub)module into the context.
618 *
619 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
620 *
621 * module_name and submodule_name are alternatives - only one of the
622 *
623 * @param[in] ctx libyang context where to work.
624 * @param[in] name Name of the (sub)module to load.
625 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
626 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100627 * @param[in] main_ctx Parser context of the main module in case of loading submodule.
fredgancd485b82019-10-18 15:00:17 +0800628 * @param[in] main_name Main module name in case of loading submodule.
Radek Krejci78f06822019-10-30 12:54:05 +0100629 * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some
630 * backup and it is actually ok if the input data are not found. However, parser reports errors even in this case.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100631 * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*).
632 * If it is a module, it is already in the context!
Radek Krejcid33273d2018-10-25 14:55:52 +0200633 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
634 */
Radek Krejci857189e2020-09-01 13:26:36 +0200635LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, ly_bool implement,
636 struct lys_parser_ctx *main_ctx, const char *main_name, ly_bool required, void **result);
Radek Krejci086c7132018-10-26 15:29:04 +0200637
638/**
Michal Vasko33ff9422020-07-03 09:50:39 +0200639 * @brief Compile information from the identity statement
640 *
641 * The backlinks to the identities derived from this one are supposed to be filled later via lys_compile_identity_bases().
642 *
643 * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module.
644 * @param[in] ctx libyang context.
645 * @param[in] module Module of the features.
646 * @param[in] identities_p Array of the parsed identity definitions to precompile.
647 * @param[in,out] identities Pointer to the storage of the (pre)compiled identities array where the new identities are
648 * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed identities are going
649 * to be processed.
650 * @return LY_ERR value.
651 */
652LY_ERR lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module,
Radek Krejci0f969882020-08-21 16:56:47 +0200653 struct lysp_ident *identities_p, struct lysc_ident **identities);
Michal Vasko33ff9422020-07-03 09:50:39 +0200654
655/**
Radek Krejci0af46292019-01-11 16:02:31 +0100656 * @brief Create pre-compiled features array.
657 *
658 * Features are compiled in two steps to allow forward references between them via their if-feature statements.
659 * In case of not implemented schemas, the precompiled list of features is stored in lys_module structure and
660 * the compilation is not finished (if-feature and extensions are missing) and all the features are permanently
661 * disabled without a chance to change it. The list is used as target for any if-feature statement in any
662 * implemented module to get valid data to evaluate its result. The compilation is finished via
663 * lys_feature_precompile_finish() in implemented modules. In case a not implemented module becomes implemented,
664 * the precompiled list is reused to finish the compilation to preserve pointers already used in various compiled
665 * if-feature structures.
666 *
Radek Krejci327de162019-06-14 12:52:07 +0200667 * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module.
Radek Krejci0af46292019-01-11 16:02:31 +0100668 * @param[in] ctx libyang context.
Radek Krejci693262f2019-04-29 15:23:20 +0200669 * @param[in] module Module of the features.
Radek Krejci0935f412019-08-20 16:15:18 +0200670 * @param[in] features_p Array of the parsed features definitions to precompile.
Radek Krejci0af46292019-01-11 16:02:31 +0100671 * @param[in,out] features Pointer to the storage of the (pre)compiled features array where the new features are
672 * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed features are going
673 * to be processed.
674 * @return LY_ERR value.
675 */
Radek Krejci0935f412019-08-20 16:15:18 +0200676LY_ERR lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module,
Radek Krejci0f969882020-08-21 16:56:47 +0200677 struct lysp_feature *features_p, struct lysc_feature **features);
Radek Krejci693262f2019-04-29 15:23:20 +0200678
679/**
680 * @brief Get the @ref ifftokens from the given position in the 2bits array
681 * (libyang format of the if-feature expression).
682 * @param[in] list The 2bits array with the compiled if-feature expression.
683 * @param[in] pos Position (0-based) to specify from which position get the operator.
684 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200685uint8_t lysc_iff_getop(uint8_t *list, size_t pos);
Radek Krejci0af46292019-01-11 16:02:31 +0100686
687/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200688 * @brief Checks pattern syntax.
689 *
690 * @param[in] ctx Context.
691 * @param[in] log_path Path for logging errors.
692 * @param[in] pattern Pattern to check.
693 * @param[in,out] pcre2_code Compiled PCRE2 pattern. If NULL, the compiled information used to validate pattern are freed.
694 * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID.
695 */
696LY_ERR lys_compile_type_pattern_check(struct ly_ctx *ctx, const char *log_path, const char *pattern, pcre2_code **code);
697
698/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200699 * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed,
700 * but the memory is not sanitized.
701 */
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200702#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 Krejcifc11bd72019-04-11 16:00:05 +0200703
704/**
705 * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized.
706 */
707#define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);}
708
709/**
710 * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed,
711 * but the memory is not sanitized.
712 */
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200713#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 Krejcifc11bd72019-04-11 16:00:05 +0200714
715/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100716 * @brief Free the parsed submodule structure.
717 * @param[in] ctx libyang context where the string data resides in a dictionary.
718 * @param[in,out] submod Parsed schema submodule structure to free.
Radek Krejci086c7132018-10-26 15:29:04 +0200719 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100720void lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod);
Radek Krejci086c7132018-10-26 15:29:04 +0200721
Radek Krejci38d85362019-09-05 16:26:38 +0200722/**
723 * @brief Free the parsed type structure.
724 * @param[in] ctx libyang context where the string data resides in a dictionary.
Michal Vasko8d544252020-03-02 10:19:52 +0100725 * @param[in] type Parsed schema type structure to free. Note that the type itself is not freed.
Radek Krejci38d85362019-09-05 16:26:38 +0200726 */
727void lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type);
Radek Krejci335332a2019-09-05 13:03:35 +0200728
Radek Krejciad5963b2019-09-06 16:03:05 +0200729/**
Michal Vasko8d544252020-03-02 10:19:52 +0100730 * @brief Free the parsed extension instance structure.
731 * @param[in] ctx libyang context where the string data resides in a dictionary.
732 * @param[in] type Parsed extension instance structure to free. Note that the instance itself is not freed.
733 */
734void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext);
735
736/**
Radek Krejciad5963b2019-09-06 16:03:05 +0200737 * @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.
738 */
739LY_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 Krejci335332a2019-09-05 13:03:35 +0200740
Radek Krejcid33273d2018-10-25 14:55:52 +0200741/**
Michal Vasko20424b42020-08-31 12:29:38 +0200742 * @brief Free a parsed node.
743 *
744 * @param[in] ctx libyang context.
745 * @param[in] node Node to free.
746 */
747void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node);
748
749/**
Radek Krejcicdfecd92018-11-26 11:27:32 +0100750 * @brief Free the compiled type structure.
751 * @param[in] ctx libyang context where the string data resides in a dictionary.
752 * @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.
753 */
754void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type);
755
756/**
Radek Krejci0af46292019-01-11 16:02:31 +0100757 * @brief Free the compiled if-feature structure.
758 * @param[in] ctx libyang context where the string data resides in a dictionary.
759 * @param[in,out] iff Compiled if-feature structure to be cleaned.
760 * Since the structure is typically part of the sized array, the structure itself is not freed.
761 */
762void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff);
763
764/**
Radek Krejciccd20f12019-02-15 14:12:27 +0100765 * @brief Free the compiled must structure.
766 * @param[in] ctx libyang context where the string data resides in a dictionary.
767 * @param[in,out] must Compiled must structure to be cleaned.
768 * Since the structure is typically part of the sized array, the structure itself is not freed.
769 */
770void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must);
771
772/**
Radek Krejcif538ce52019-03-05 10:46:14 +0100773 * @brief Free the data inside compiled input/output structure.
774 * @param[in] ctx libyang context where the string data resides in a dictionary.
775 * @param[in,out] inout Compiled inout structure to be cleaned.
776 * Since the structure is part of the RPC/action structure, it is not freed itself.
777 */
778void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout);
779
780/**
781 * @brief Free the data inside compiled RPC/action structure.
782 * @param[in] ctx libyang context where the string data resides in a dictionary.
783 * @param[in,out] action Compiled action structure to be cleaned.
784 * Since the structure is typically part of the sized array, the structure itself is not freed.
785 */
786void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action);
787
788/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200789 * @brief Free the items inside the compiled Notification structure.
790 * @param[in] ctx libyang context where the string data resides in a dictionary.
791 * @param[in,out] action Compiled Notification structure to be cleaned.
792 * Since the structure is typically part of the sized array, the structure itself is not freed.
793 */
794void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif);
795
796/**
Radek Krejci0af46292019-01-11 16:02:31 +0100797 * @brief Free the compiled extension instance structure.
798 * @param[in] ctx libyang context where the string data resides in a dictionary.
799 * @param[in,out] ext Compiled extension instance structure to be cleaned.
800 * Since the structure is typically part of the sized array, the structure itself is not freed.
801 */
802void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext);
803
804/**
Radek Krejci19a96102018-11-15 13:38:09 +0100805 * @brief Free the compiled node structure.
806 * @param[in] ctx libyang context where the string data resides in a dictionary.
807 * @param[in,out] node Compiled node structure to be freed.
808 */
809void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node);
810
811/**
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200812 * @brief Free the compiled container node structure.
813 *
814 * Only the container-specific members are freed, for generic node free function,
815 * use lysc_node_free().
816 *
817 * @param[in] ctx libyang context where the string data resides in a dictionary.
818 * @param[in,out] node Compiled container node structure to be freed.
819 */
820void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node);
821
822/**
Radek Krejci19a96102018-11-15 13:38:09 +0100823 * @brief Free the compiled schema structure.
824 * @param[in,out] module Compiled schema module structure to free.
825 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
826 */
827void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
828
829/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200830 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
831 * @param[in,out] module Schema module structure to free.
832 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
833 */
834void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
835
836/**
Radek Krejci95710c92019-02-11 15:49:55 +0100837 * @brief Make the specific module implemented, use the provided value as flag.
838 *
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200839 * @param[in] mod Module to make implemented. It is not an error to provide already implemented module, it just does nothing.
Radek Krejci857189e2020-09-01 13:26:36 +0200840 * @param[in] implemented Flag value for the ::lys_module::implemented item.
Radek Krejci95710c92019-02-11 15:49:55 +0100841 * @return LY_SUCCESS or LY_EDENIED in case the context contains some other revision of the
842 * same module which is already implemented.
843 */
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200844LY_ERR lys_set_implemented_internal(struct lys_module *mod, uint8_t implemented);
Radek Krejci95710c92019-02-11 15:49:55 +0100845
David Sedlák18e494b2018-12-17 03:58:39 +0100846/**
847 * @brief match yang keyword
David Sedlák1bccdfa2019-06-17 15:55:27 +0200848 *
Michal Vasko14654712020-02-06 08:35:21 +0100849 * @param[in] ctx yang parser context for logging, can be NULL if keyword is from YIN data.
Michal Vasko63f3d842020-07-08 10:10:14 +0200850 * @param[in,out] in Input structure, is updated.
Michal Vasko14654712020-02-06 08:35:21 +0100851 * @return yang_keyword values.
David Sedlák18e494b2018-12-17 03:58:39 +0100852 */
Michal Vasko63f3d842020-07-08 10:10:14 +0200853enum ly_stmt lysp_match_kw(struct lys_yang_parser_ctx *ctx, struct ly_in *in);
David Sedlák1bccdfa2019-06-17 15:55:27 +0200854
Michal Vasko14654712020-02-06 08:35:21 +0100855/**
856 * @brief Generate path of the given node in the requested format.
857 *
858 * @param[in] node Schema path of this node will be generated.
859 * @param[in] parent Build relative path only until this parent is found. If NULL, the full absolute path is printed.
860 * @param[in] pathtype Format of the path to generate.
861 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
862 * If NULL, memory for the complete path is allocated.
863 * @param[in] buflen Size of the provided @p buffer.
864 * @return NULL in case of memory allocation error, path of the node otherwise.
865 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
866 */
867char *lysc_path_until(const struct lysc_node *node, const struct lysc_node *parent, LYSC_PATH_TYPE pathtype, char *buffer,
Radek Krejci0f969882020-08-21 16:56:47 +0200868 size_t buflen);
Michal Vasko14654712020-02-06 08:35:21 +0100869
Michal Vasko62ed12d2020-05-21 10:08:25 +0200870/**
871 * @brief Get schema parent that can be instantiated in data. In other words, skip any choice or case nodes.
872 *
873 * @param[in] schema Schema node to get the parent for.
874 * @return Parent, NULL if top-level (in data).
875 */
876const struct lysc_node *lysc_data_parent(const struct lysc_node *schema);
877
Michal Vasko00cbf532020-06-15 13:58:47 +0200878/**
Radek Krejci1deb5be2020-08-26 16:43:36 +0200879 * @brief Learn whether a node is inside an operation output.
Michal Vasko00cbf532020-06-15 13:58:47 +0200880 *
881 * @param[in] schema Schema node to examine.
Radek Krejci857189e2020-09-01 13:26:36 +0200882 * @return Boolean value whether the node is under an operation output or not.
Michal Vasko00cbf532020-06-15 13:58:47 +0200883 */
Radek Krejci857189e2020-09-01 13:26:36 +0200884ly_bool lysc_is_output(const struct lysc_node *schema);
Michal Vasko00cbf532020-06-15 13:58:47 +0200885
Radek Krejci70853c52018-10-15 14:46:16 +0200886#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */