blob: 5efbb1ef3dca4f232fbd2028c665f76937908ef7 [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 Krejci0935f412019-08-20 16:15:18 +020020#include "plugins_exts.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#define LOGVAL_PARSER(CTX, ...) LOGVAL((CTX)->ctx, (CTX)->pos_type, (CTX)->pos_type == LY_VLOG_LINE ? &(CTX)->line : (void*)(CTX)->path, __VA_ARGS__)
28
29/**
30 * @brief Check module version is at least 2 (YANG 1.1) because of the keyword presence.
31 * Logs error message and returns LY_EVALID in case of module in YANG version 1.0.
32 * @param[in] CTX yang parser context to get current module and for logging.
33 * @param[in] KW keyword allowed only in YANG version 1.1 (or later) - for logging.
34 * @param[in] PARENT parent statement where the KW is present - for logging.
35 */
36#define PARSER_CHECK_STMTVER2_RET(CTX, KW, PARENT) \
37 if ((CTX)->mod_version < 2) {LOGVAL_PARSER((CTX), LY_VCODE_INCHILDSTMT2, KW, PARENT); return LY_EVALID;}
Radek Krejcid33273d2018-10-25 14:55:52 +020038
Radek Krejcia9026eb2018-12-12 16:04:47 +010039/* These 2 macros checks YANG's identifier grammar rule */
40#define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_')
41#define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \
David Sedlákebd3acf2019-07-26 15:04:32 +020042 c == '_' || c == '-' || c == '.')
Radek Krejcia9026eb2018-12-12 16:04:47 +010043
David Sedlák4a650532019-07-10 11:55:18 +020044/* Macro to check YANG's yang-char grammar rule */
David Sedlák2c0d5ef2019-08-14 11:40:44 +020045#define is_yangutf8char(c) ((c >= 0x20 && c <= 0xd7ff) || c == 0x09 || c == 0x0a || c == 0x0d || \
David Sedlák4a650532019-07-10 11:55:18 +020046 (c >= 0xe000 && c <= 0xfdcf) || (c >= 0xfdf0 && c <= 0xfffd) || \
47 (c >= 0x10000 && c <= 0x1fffd) || (c >= 0x20000 && c <= 0x2fffd) || \
48 (c >= 0x30000 && c <= 0x3fffd) || (c >= 0x40000 && c <= 0x2fffd) || \
49 (c >= 0x50000 && c <= 0x5fffd) || (c >= 0x60000 && c <= 0x6fffd) || \
50 (c >= 0x70000 && c <= 0x7fffd) || (c >= 0x80000 && c <= 0x8fffd) || \
51 (c >= 0x90000 && c <= 0x9fffd) || (c >= 0xa0000 && c <= 0xafffd) || \
52 (c >= 0xb0000 && c <= 0xbfffd) || (c >= 0xc0000 && c <= 0xcfffd) || \
53 (c >= 0xd0000 && c <= 0xdfffd) || (c >= 0xe0000 && c <= 0xefffd) || \
54 (c >= 0xf0000 && c <= 0xffffd) || (c >= 0x100000 && c <= 0x10fffd))
55
Radek Krejci70853c52018-10-15 14:46:16 +020056/**
David Sedlákca36c422019-07-12 12:47:55 +020057 * @brief Try to find object with MEMBER string matching the IDENT in the given ARRAY.
58 * Macro logs an error message and returns LY_EVALID in case of existence of a matching object.
59 *
60 * @param[in] CTX yang parser context for logging.
61 * @param[in] ARRAY [sized array](@ref sizedarrays) of a generic objects with member named MEMBER to search.
62 * @param[in] MEMBER Name of the member of the objects in the ARRAY to compare.
63 * @param[in] STMT Name of the compared YANG statements for logging.
64 * @param[in] IDENT String trying to find in the ARRAY's objects inside the MEMBER member.
65 */
66#define CHECK_UNIQUENESS(CTX, ARRAY, MEMBER, STMT, IDENT) \
67 if (ARRAY) { \
68 for (unsigned int u = 0; u < LY_ARRAY_SIZE(ARRAY) - 1; ++u) { \
69 if (!strcmp((ARRAY)[u].MEMBER, IDENT)) { \
70 LOGVAL_PARSER(CTX, LY_VCODE_DUPIDENT, IDENT, STMT); \
71 return LY_EVALID; \
72 } \
73 } \
74 }
75
David Sedlákb9b892c2019-07-12 14:44:02 +020076#define YANG_CHECK_NONEMPTY(CTX, VALUE_LEN, STMT) \
David Sedlák129a09c2019-07-12 14:08:34 +020077 if (!VALUE_LEN) { \
78 LOGWRN((CTX)->ctx, "Empty argument of %s statement does not make sense.", STMT); \
79 }
Radek Krejci70853c52018-10-15 14:46:16 +020080
81/**
Radek Krejcie3846472018-10-15 15:24:51 +020082 * @brief List of YANG statement groups - the (sub)module's substatements
83 */
84enum yang_module_stmt {
85 Y_MOD_MODULE_HEADER,
86 Y_MOD_LINKAGE,
87 Y_MOD_META,
88 Y_MOD_REVISION,
89 Y_MOD_BODY
90};
91
92/**
93 * @brief Types of arguments of YANG statements
94 */
95enum yang_arg {
96 Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */
Radek Krejcia9026eb2018-12-12 16:04:47 +010097 Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */
Radek Krejcie3846472018-10-15 15:24:51 +020098 Y_STR_ARG, /**< YANG "string" rule */
99 Y_MAYBE_STR_ARG /**< optional YANG "string" rule */
100};
101
102/**
David Sedlákebd3acf2019-07-26 15:04:32 +0200103 * @brief Internal context for yang schema parser.
Radek Krejci70853c52018-10-15 14:46:16 +0200104 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200105struct lys_parser_ctx {
David Sedlákebd3acf2019-07-26 15:04:32 +0200106 struct ly_set tpdfs_nodes; /**< set of typedef nodes */
107 struct ly_set grps_nodes; /**< set of grouping nodes */
108 uint8_t mod_version; /**< module's version */
Radek Krejci335332a2019-09-05 13:03:35 +0200109 enum LY_VLOG_ELEM pos_type; /**< */
David Sedlákebd3acf2019-07-26 15:04:32 +0200110 struct ly_ctx *ctx; /**< context of then yang schemas */
Radek Krejci335332a2019-09-05 13:03:35 +0200111 union {
112 uint64_t line; /**< line number */
113 const char *path; /**< path */
114 };
David Sedlákebd3acf2019-07-26 15:04:32 +0200115 uint64_t indent; /**< current position on the line for YANG indentation */
Radek Krejci70853c52018-10-15 14:46:16 +0200116};
117
David Sedlákebd3acf2019-07-26 15:04:32 +0200118/**
119 * @brief free lys parser context.
120 */
121void lys_parser_ctx_free(struct lys_parser_ctx *ctx);
122
123/**
124 * @brief Internal context for yin schema parser.
125 */
126struct yin_parser_ctx {
127 struct ly_set tpdfs_nodes; /**< set of typedef nodes */
128 struct ly_set grps_nodes; /**< set of grouping nodes */
129 uint8_t mod_version; /**< module's version */
Radek Krejci335332a2019-09-05 13:03:35 +0200130 enum LY_VLOG_ELEM pos_type; /**< */
David Sedlákebd3acf2019-07-26 15:04:32 +0200131 struct lyxml_context xml_ctx; /**< context for xml parser */
132};
133
134/**
135 * @brief free yin parser context
136 *
137 * @param[in] ctx Context to free.
138 */
139void yin_parser_ctx_free(struct yin_parser_ctx *ctx);
140
Radek Krejci1c0c3442019-07-23 16:08:47 +0200141struct lysc_incomplete_dflt {
142 struct lyd_value *dflt;
143 struct lys_module *dflt_mod;
144 struct lysc_node *context_node;
145};
146
Radek Krejci70853c52018-10-15 14:46:16 +0200147/**
David Sedlák4a650532019-07-10 11:55:18 +0200148 * @brief Check that \p c is valid UTF8 code point for YANG string.
149 *
150 * @param[in] ctx yang parser context for logging.
151 * @param[in] c UTF8 code point of a character to check.
152 * @return LY_ERR values.
153 */
154LY_ERR lysp_check_stringchar(struct lys_parser_ctx *ctx, unsigned int c);
155
156/**
157 * @brief Check that \p c is valid UTF8 code point for YANG identifier.
158 *
159 * @param[in] ctx yang parser context for logging.
160 * @param[in] c UTF8 code point of a character to check.
161 * @param[in] first Flag to check the first character of an identifier, which is more restricted.
162 * @param[in,out] prefix Storage for internally used flag in case of possible prefixed identifiers:
163 * 0 - colon not yet found (no prefix)
164 * 1 - \p c is the colon character
165 * 2 - prefix already processed, now processing the identifier
166 *
167 * If the identifier cannot be prefixed, NULL is expected.
168 * @return LY_ERR values.
169 */
170LY_ERR lysp_check_identifierchar(struct lys_parser_ctx *ctx, unsigned int c, int first, int *prefix);
171
172/**
Radek Krejcia1911222019-07-22 17:24:50 +0200173 * @brief Internal structure for lys_get_prefix().
174 */
175struct lys_get_prefix_data {
176 const struct lys_module *context_mod;
177 struct ly_set prefixes;
178};
179
180/**
181 * @brief Schema mapping of YANG modules to prefixes in values.
182 *
183 * Implementation of ly_clb_get_prefix. Inverse function to lys_resolve_prefix.
184 *
185 * In this case the @p mod is searched in the list of imports and the import's prefix
186 * (not the module's itself) prefix is returned.
187 */
188const char *lys_get_prefix(const struct lys_module *mod, void *private);
189
190/**
191 * @brief Schema mapping of prefix in values to YANG modules (imports).
192 *
193 * Implementation of ly_clb_resolve_prefix. Inverse function to lys_get_prefix().
194 *
195 * In this case the @p prefix is searched in the list of imports' prefixes (not the prefixes of the imported modules themselves).
196 */
197const struct lys_module *lys_resolve_prefix(struct ly_ctx *ctx, const char *prefix, size_t prefix_len, void *private);
198
199/**
Radek Krejci70853c52018-10-15 14:46:16 +0200200 * @brief Check the currently present prefixes in the module for collision with the new one.
201 *
Radek Krejcibbe09a92018-11-08 09:36:54 +0100202 * @param[in] ctx Context for logging.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100203 * @param[in] imports List of current imports of the module to check prefix collision.
204 * @param[in] module_prefix Prefix of the module to check collision.
Radek Krejci70853c52018-10-15 14:46:16 +0200205 * @param[in] value Newly added prefix value (including its location to distinguish collision with itself).
206 * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise
207 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200208LY_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 +0200209
Radek Krejci86d106e2018-10-18 09:53:19 +0200210/**
211 * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT)
212 *
Radek Krejcibbe09a92018-11-08 09:36:54 +0100213 * @param[in] ctx Optional context for logging.
Radek Krejci86d106e2018-10-18 09:53:19 +0200214 * @param[in] date Date string to check (non-necessarily terminated by \0)
215 * @param[in] date_len Length of the date string, 10 expected.
216 * @param[in] stmt Statement name for error message.
217 * @return LY_ERR value.
218 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200219LY_ERR lysp_check_date(struct lys_parser_ctx *ctx, const char *date, int date_len, const char *stmt);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100220
221/**
222 * @brief Check names of typedefs in the parsed module to detect collisions.
223 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100224 * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes
225 * @param[in] mod Module where the type is being defined.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100226 * @return LY_ERR value.
227 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200228LY_ERR lysp_check_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod);
Radek Krejci86d106e2018-10-18 09:53:19 +0200229
230/**
David Sedlákd2ebe572019-07-22 12:53:14 +0200231 * @brief Finalize some of the structures in case they are stored in sized array,
232 * which can be possibly reallocated and some other data may point to them.
233 *
234 * Update parent pointers in the nodes inside grouping/augment/RPC/Notification, which could be reallocated.
235 *
236 * @param[in] mod Parsed module to be updated.
237 * @return LY_ERR value (currently only LY_SUCCESS, but it can change in future).
238 */
239LY_ERR
240lysp_parse_finalize_reallocated(struct lys_parser_ctx *ctx, struct lysp_grp *groupings, struct lysp_augment *augments,
241 struct lysp_action *actions, struct lysp_notif *notifs);
242
243/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200244 * @brief Just move the newest revision into the first position, does not sort the rest
245 * @param[in] revs Sized-array of the revisions in a printable schema tree.
246 */
247void lysp_sort_revisions(struct lysp_revision *revs);
248
249/**
David Sedlák6544c182019-07-12 13:17:33 +0200250 * @brief Find type specified type definition.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100251 *
252 * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module.
253 * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents.
254 * @param[in] start_module Module where the type is being instantiated for search for typedefs.
Radek Krejci4f28eda2018-11-12 11:46:16 +0100255 * @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 +0100256 * @param[out] tpdf Found type definition.
257 * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef.
258 * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types.
259 */
260LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci4f28eda2018-11-12 11:46:16 +0100261 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100262
263/**
David Sedlák6544c182019-07-12 13:17:33 +0200264 * @brief Validate enum name.
265 *
266 * @param[in] ctx yang parser context for logging.
267 * @param[in] name String to check.
268 * @param[in] name_len Length of name.
269 *
270 * @return LY_ERR values
271 */
David Sedlák07869a52019-07-12 14:28:19 +0200272LY_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 +0200273
274/**
Radek Krejci086c7132018-10-26 15:29:04 +0200275 * @brief Find and parse module of the given name.
276 *
277 * @param[in] ctx libyang context.
278 * @param[in] name Name of the module to load.
279 * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded.
Radek Krejcied5acc52019-04-25 15:57:04 +0200280 * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set,
281 * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module
282 * of the latest revision can not be made implemented.
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100283 * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context,
284 * but only the compiled structure is available.
Radek Krejci086c7132018-10-26 15:29:04 +0200285 * @param[out] mod Parsed module structure.
286 * @return LY_ERR value.
287 */
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100288LY_ERR lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, int implement, int require_parsed, struct lys_module **mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200289
290/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200291 * @brief Parse included submodule into the simply parsed YANG module.
292 *
Radek Krejci3b1f9292018-11-08 10:58:35 +0100293 * @param[in] ctx parser context
Radek Krejcid33273d2018-10-25 14:55:52 +0200294 * @param[in] mod Module including a submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +0200295 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
296 * submodule is stored into this structure.
297 * @return LY_ERR value.
298 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200299LY_ERR lysp_load_submodule(struct lys_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +0200300
301/**
Radek Krejci096235c2019-01-11 11:12:19 +0100302 * @brief Compile printable schema into a validated schema linking all the references.
303 *
304 * @param[in, out] mod Schema structure holding pointers to both schema structure types. The ::lys_module#parsed
305 * member is used as input and ::lys_module#compiled is used to hold the result of the compilation.
306 * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags).
307 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
308 */
309LY_ERR lys_compile(struct lys_module *mod, int options);
310
311/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100312 * @brief Get address of a node's actions list if any.
313 *
314 * Decides the node's type and in case it has an actions list, returns its address.
315 * @param[in] node Node to check.
316 * @return Address of the node's actions member if any, NULL otherwise.
317 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100318struct lysp_action **lysp_node_actions_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100319
320/**
321 * @brief Get address of a node's notifications list if any.
322 *
323 * Decides the node's type and in case it has a notifications list, returns its address.
324 * @param[in] node Node to check.
325 * @return Address of the node's notifs member if any, NULL otherwise.
326 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100327struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100328
329/**
330 * @brief Get address of a node's child pointer if any.
331 *
332 * Decides the node's type and in case it has a children list, returns its address.
333 * @param[in] node Node to check.
334 * @return Address of the node's child member if any, NULL otherwise.
335 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100336struct lysp_node **lysp_node_children_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100337
338/**
339 * @brief Get address of a node's child pointer if any.
340 *
341 * Decides the node's type and in case it has a children list, returns its address.
342 * @param[in] node Node to check.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100343 * @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 +0100344 * @return Address of the node's child member if any, NULL otherwise.
345 */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100346struct lysc_node **lysc_node_children_p(const struct lysc_node *node, uint16_t flags);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100347
348/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200349 * @brief Get address of a node's notifs pointer if any.
350 *
351 * Decides the node's type and in case it has a notifs array, returns its address.
352 * @param[in] node Node to check.
353 * @return Address of the node's notifs member if any, NULL otherwise.
354 */
355struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node);
356
357/**
358 * @brief Get address of a node's actions pointer if any.
359 *
360 * Decides the node's type and in case it has a actions array, returns its address.
361 * @param[in] node Node to check.
362 * @return Address of the node's actions member if any, NULL otherwise.
363 */
364struct lysc_action **lysc_node_actions_p(struct lysc_node *node);
365
366/**
Radek Krejcid3ca0632019-04-16 16:54:54 +0200367 * @brief Iterate over the specified type of the extension instances
368 *
369 * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore
370 * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with
371 * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_SIZE(ext).
372 * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use
373 * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array
374 * @result index in the ext array, LY_ARRAY_SIZE(ext) value if not present.
375 */
376unsigned int lysp_ext_instance_iter(struct lysp_ext_instance *ext, unsigned int index, LYEXT_SUBSTMT substmt);
377
378/**
Radek Krejci96a0bfd2018-11-22 15:25:06 +0100379 * @brief Get the covering schema module structure for the given parsed module structure.
380 * @param[in] ctx libyang context to search.
381 * @param[in] mod Parsed schema structure.
382 * @return Corresponding lys_module structure for the given parsed schema structure.
383 */
384struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod);
385
386/**
Radek Krejcice8c1592018-10-29 15:35:51 +0100387 * @brief Find the module referenced by prefix in the provided parsed mod.
388 *
389 * @param[in] mod Schema module where the prefix was used.
390 * @param[in] prefix Prefix used to reference a module.
391 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
392 * @return Pointer to the module or NULL if the module is not found.
393 */
Radek Krejcia3045382018-11-22 14:30:31 +0100394struct lysp_module *lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len);
Radek Krejcice8c1592018-10-29 15:35:51 +0100395
396/**
397 * @brief Find the module referenced by prefix in the provided compiled mod.
398 *
399 * @param[in] mod Schema module where the prefix was used.
400 * @param[in] prefix Prefix used to reference a module.
401 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
Radek Krejcib3289d62019-09-18 12:21:39 +0200402 * @return Pointer to the module or NULL if the module is not found or it is not compiled.
Radek Krejcice8c1592018-10-29 15:35:51 +0100403 */
Radek Krejcia3045382018-11-22 14:30:31 +0100404struct lysc_module *lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len);
Radek Krejcice8c1592018-10-29 15:35:51 +0100405
406/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100407 * @brief Check statement's status for invalid combination.
408 *
409 * The modX parameters are used just to determine if both flags are in the same module,
410 * so any of the schema module structure can be used, but both modules must be provided
411 * in the same type.
412 *
413 * @param[in] ctx Compile context for logging.
414 * @param[in] flags1 Flags of the referencing node.
415 * @param[in] mod1 Module of the referencing node,
416 * @param[in] name1 Schema node name of the referencing node.
417 * @param[in] flags2 Flags of the referenced node.
418 * @param[in] mod2 Module of the referenced node,
419 * @param[in] name2 Schema node name of the referenced node.
420 * @return LY_ERR value
421 */
422LY_ERR lysc_check_status(struct lysc_ctx *ctx,
423 uint16_t flags1, void *mod1, const char *name1,
424 uint16_t flags2, void *mod2, const char *name2);
425
426/**
Radek Krejci95710c92019-02-11 15:49:55 +0100427 * @brief Find the node according to the given descendant/absolute schema nodeid.
428 * Used in unique, refine and augment statements.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100429 *
430 * @param[in] ctx Compile context
431 * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar)
432 * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string.
433 * @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 +0100434 * If no context node is provided, the nodeid is actually expected to be the absolute schema node .
435 * @param[in] context_module Explicit module to resolve prefixes in @nodeid.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100436 * @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 +0100437 * the given nodetype, LY_EDENIED is returned (and target is provided), but no error message is printed.
438 * The value can be even an ORed value to allow multiple nodetypes.
439 * @param[in] implement Flag if the modules mentioned in the nodeid are supposed to be made implemented.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100440 * @param[out] target Found target node if any. In case of RPC/action input/output node, LYS_ACTION node is actually returned
441 * since the input/output has not a standalone node structure and it is part of ::lysc_action which is better compatible with ::lysc_node.
442 * @param[out] result_flag Output parameter to announce if the schema nodeid goes through the action's input/output or a Notification.
443 * The LYSC_OPT_RPC_INPUT, LYSC_OPT_RPC_OUTPUT and LYSC_OPT_NOTIFICATION are used as flags.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100444 * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS.
445 */
Radek Krejci95710c92019-02-11 15:49:55 +0100446LY_ERR lys_resolve_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node,
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100447 const struct lys_module *context_module, int nodetype, int implement,
448 const struct lysc_node **target, uint16_t *result_flag);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100449
450/**
Radek Krejci151a5b72018-10-19 14:21:44 +0200451 * @brief Find the module referenced by prefix in the provided mod.
452 *
Radek Krejci693262f2019-04-29 15:23:20 +0200453 * Reverse function to lys_prefix_find_module().
454 *
Radek Krejci151a5b72018-10-19 14:21:44 +0200455 * @param[in] mod Schema module where the prefix was used.
456 * @param[in] prefix Prefix used to reference a module.
457 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
458 * @return Pointer to the module or NULL if the module is not found.
459 */
Radek Krejcia3045382018-11-22 14:30:31 +0100460struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len);
461
462/**
Radek Krejci693262f2019-04-29 15:23:20 +0200463 * @brief Find the prefix used to referenced the import module in the provided mod.
464 *
465 * Reverse function to lys_module_find_prefix().
466 *
467 * Note that original prefixes are present only in the parsed schema. In case it is not available
468 * (only compiled schema available), the own prefix of the import module is returned instead.
469 *
470 * @param[in] mod Schema module where the import module was used.
471 * @param[in] import Module referenced in mod.
472 * @return Prefix of the import module.
473 */
474const char *lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import);
475
476/**
Radek Krejci693262f2019-04-29 15:23:20 +0200477 * @brief Stringify YANG built-in type.
478 * @param[in] basetype Built-in tyep ID to stringify.
479 * @return Constant string with the name of the built-in type.
480 */
481const char *lys_datatype2str(LY_DATA_TYPE basetype);
482
483/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100484 * @brief Parse YANG module from a string.
Radek Krejcid33273d2018-10-25 14:55:52 +0200485 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100486 * The modules are added into the context and the latest_revision flag is updated.
Radek Krejcid33273d2018-10-25 14:55:52 +0200487 *
488 * @param[in] ctx libyang context where to process the data model.
489 * @param[in] data The string containing the dumped data model in the specified
490 * format.
491 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200492 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100493 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
494 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200495 * @return Pointer to the data model structure or NULL on error.
496 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100497struct lys_module *lys_parse_mem_module(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int implement,
498 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
499 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200500
501/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100502 * @brief Parse YANG submodule from a string.
Radek Krejcid33273d2018-10-25 14:55:52 +0200503 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100504 * The latest_revision flag of submodule is updated.
505 *
506 * @param[in] ctx libyang context where to process the data model.
507 * @param[in] data The string containing the dumped data model in the specified
508 * format.
509 * @param[in] format Format of the input data (YANG or YIN).
510 * @param[in] main_ctx Parser context of the main module.
511 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
512 * @param[in] check_data Caller's data to pass to the custom_check callback.
513 * @return Pointer to the data model structure or NULL on error.
514 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200515struct lysp_submodule *lys_parse_mem_submodule(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100516 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
517 void *check_data);
518
519/**
520 * @brief Parse YANG module or submodule from a file descriptor.
521 *
522 * The modules are added into the context, submodules not. The latest_revision flag is updated in both cases.
Radek Krejcid33273d2018-10-25 14:55:52 +0200523 *
524 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
525 *
526 * @param[in] ctx libyang context where to process the data model.
527 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
528 * in the specified format.
529 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200530 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100531 * @param[in] main_ctx Parser context of the main module in case of parsing submodule. This flag decides if the module
532 * or submodule was expected to be parsed.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100533 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
534 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200535 * @return Pointer to the data model structure or NULL on error.
536 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200537void *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, struct lys_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100538 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
539 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200540
541/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100542 * @brief Parse YANG module from a file descriptor.
Radek Krejcid33273d2018-10-25 14:55:52 +0200543 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100544 * The modules are added into the context. The latest_revision flag is updated.
Radek Krejcid33273d2018-10-25 14:55:52 +0200545 *
546 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
547 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100548 * @param[in] ctx libyang context where to process the data model.
549 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
550 * in the specified format.
551 * @param[in] format Format of the input data (YANG or YIN).
552 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
553 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
554 * @param[in] check_data Caller's data to pass to the custom_check callback.
555 * @return Pointer to the data model structure or NULL on error.
556 */
557struct lys_module *lys_parse_fd_module(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement,
558 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
559 void *check_data);
560
561/**
562 * @brief Parse YANG submodule from a file descriptor.
563 *
564 * The latest_revision flag of submodules is updated.
565 *
566 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
567 *
568 * @param[in] ctx libyang context where to process the data model.
569 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
570 * in the specified format.
571 * @param[in] format Format of the input data (YANG or YIN).
572 * @param[in] main_ctx Parser context of the main module.
573 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
574 * @param[in] check_data Caller's data to pass to the custom_check callback.
575 * @return Pointer to the data model structure or NULL on error.
576 */
Radek Krejcie7b95092019-05-15 11:03:07 +0200577struct lysp_submodule *lys_parse_fd_submodule(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100578 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
579 void *check_data);
580
581/**
582 * @brief Parse YANG module from a filepath.
583 *
584 * The modules are added into the context. The latest_revision flag is updated.
585 *
586 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
Radek Krejcid33273d2018-10-25 14:55:52 +0200587 *
588 * @param[in] ctx libyang context where to process the data model.
589 * @param[in] path Path to the file with the model in the specified format.
590 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200591 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100592 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
593 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200594 * @return Pointer to the data model structure or NULL on error.
595 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100596struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, int implement,
597 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
598 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200599
600/**
601 * @brief Load the (sub)module into the context.
602 *
603 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
604 *
605 * module_name and submodule_name are alternatives - only one of the
606 *
607 * @param[in] ctx libyang context where to work.
608 * @param[in] name Name of the (sub)module to load.
609 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
610 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100611 * @param[in] main_ctx Parser context of the main module in case of loading submodule.
fredgancd485b82019-10-18 15:00:17 +0800612 * @param[in] main_name Main module name in case of loading submodule.
Radek Krejci78f06822019-10-30 12:54:05 +0100613 * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some
614 * 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 +0100615 * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*).
616 * If it is a module, it is already in the context!
Radek Krejcid33273d2018-10-25 14:55:52 +0200617 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
618 */
fredgancd485b82019-10-18 15:00:17 +0800619LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement,
Radek Krejci78f06822019-10-30 12:54:05 +0100620 struct lys_parser_ctx *main_ctx, const char *main_name, int required, void **result);
Radek Krejci086c7132018-10-26 15:29:04 +0200621
622/**
Radek Krejci0af46292019-01-11 16:02:31 +0100623 * @brief Create pre-compiled features array.
624 *
625 * Features are compiled in two steps to allow forward references between them via their if-feature statements.
626 * In case of not implemented schemas, the precompiled list of features is stored in lys_module structure and
627 * the compilation is not finished (if-feature and extensions are missing) and all the features are permanently
628 * disabled without a chance to change it. The list is used as target for any if-feature statement in any
629 * implemented module to get valid data to evaluate its result. The compilation is finished via
630 * lys_feature_precompile_finish() in implemented modules. In case a not implemented module becomes implemented,
631 * the precompiled list is reused to finish the compilation to preserve pointers already used in various compiled
632 * if-feature structures.
633 *
Radek Krejci327de162019-06-14 12:52:07 +0200634 * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module.
Radek Krejci0af46292019-01-11 16:02:31 +0100635 * @param[in] ctx libyang context.
Radek Krejci693262f2019-04-29 15:23:20 +0200636 * @param[in] module Module of the features.
Radek Krejci0935f412019-08-20 16:15:18 +0200637 * @param[in] features_p Array of the parsed features definitions to precompile.
Radek Krejci0af46292019-01-11 16:02:31 +0100638 * @param[in,out] features Pointer to the storage of the (pre)compiled features array where the new features are
639 * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed features are going
640 * to be processed.
641 * @return LY_ERR value.
642 */
Radek Krejci0935f412019-08-20 16:15:18 +0200643LY_ERR lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module,
644 struct lysp_feature *features_p, struct lysc_feature **features);
Radek Krejci693262f2019-04-29 15:23:20 +0200645
646/**
647 * @brief Get the @ref ifftokens from the given position in the 2bits array
648 * (libyang format of the if-feature expression).
649 * @param[in] list The 2bits array with the compiled if-feature expression.
650 * @param[in] pos Position (0-based) to specify from which position get the operator.
651 */
652uint8_t lysc_iff_getop(uint8_t *list, int pos);
Radek Krejci0af46292019-01-11 16:02:31 +0100653
654/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200655 * @brief Checks pattern syntax.
656 *
657 * @param[in] ctx Context.
658 * @param[in] log_path Path for logging errors.
659 * @param[in] pattern Pattern to check.
660 * @param[in,out] pcre2_code Compiled PCRE2 pattern. If NULL, the compiled information used to validate pattern are freed.
661 * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID.
662 */
663LY_ERR lys_compile_type_pattern_check(struct ly_ctx *ctx, const char *log_path, const char *pattern, pcre2_code **code);
664
665/**
Michal Vaskoae9e4cb2019-09-25 08:43:05 +0200666 * @brief Validate the leafref path.
667 * @param[in] ctx Compile context
668 * @param[in] startnode Path context node (where the leafref path begins/is placed).
669 * @param[in] leafref Leafref to validate.
670 * @param[out] target Optional resolved leafref target.
671 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
672 */
673LY_ERR lys_compile_leafref_validate(struct lysc_ctx *ctx, struct lysc_node *startnode, struct lysc_type_leafref *leafref,
674 const struct lysc_node **target);
675
676/**
Radek Krejcid6b76452019-09-03 17:03:03 +0200677 * @brief Internal wrapper around lys_compile_extension() to be able to prepare list of compiled extension definitions
Radek Krejci0935f412019-08-20 16:15:18 +0200678 * even for the parsed (not-implemented) module - see lys_module::off_extensions.
679 *
680 * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p module.
681 * @param[in] ctx libyang context.
682 * @param[in] module Module of the extensions.
683 * @param[in] extensions_p Array of the parsed extension definitions to precompile.
684 * @param[in,out] extensions Pointer to the storage of the (pre)compiled extensions array where the new extensions are
685 * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed extensions are going
686 * to be processed.
687 * @return LY_ERR value.
688 */
689LY_ERR lys_extension_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module,
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100690 struct lysp_ext *extensions_p, struct lysc_ext ***extensions);
Radek Krejci0935f412019-08-20 16:15:18 +0200691/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200692 * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed,
693 * but the memory is not sanitized.
694 */
695#define FREE_ARRAY(CTX, ARRAY, FUNC) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FUNC(CTX, &(ARRAY)[c__]);}LY_ARRAY_FREE(ARRAY);}
696
697/**
698 * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized.
699 */
700#define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);}
701
702/**
703 * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed,
704 * but the memory is not sanitized.
705 */
706#define FREE_STRINGS(CTX, ARRAY) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FREE_STRING(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);}
707
708/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100709 * @brief Free the parsed submodule structure.
710 * @param[in] ctx libyang context where the string data resides in a dictionary.
711 * @param[in,out] submod Parsed schema submodule structure to free.
Radek Krejci086c7132018-10-26 15:29:04 +0200712 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100713void lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod);
Radek Krejci086c7132018-10-26 15:29:04 +0200714
Radek Krejci38d85362019-09-05 16:26:38 +0200715/**
716 * @brief Free the parsed type structure.
717 * @param[in] ctx libyang context where the string data resides in a dictionary.
Michal Vasko8d544252020-03-02 10:19:52 +0100718 * @param[in] type Parsed schema type structure to free. Note that the type itself is not freed.
Radek Krejci38d85362019-09-05 16:26:38 +0200719 */
720void lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type);
Radek Krejci335332a2019-09-05 13:03:35 +0200721
Radek Krejciad5963b2019-09-06 16:03:05 +0200722/**
Michal Vasko8d544252020-03-02 10:19:52 +0100723 * @brief Free the parsed extension instance structure.
724 * @param[in] ctx libyang context where the string data resides in a dictionary.
725 * @param[in] type Parsed extension instance structure to free. Note that the instance itself is not freed.
726 */
727void lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext);
728
729/**
Radek Krejciad5963b2019-09-06 16:03:05 +0200730 * @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.
731 */
732LY_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 +0200733
Radek Krejcid33273d2018-10-25 14:55:52 +0200734/**
Radek Krejcicdfecd92018-11-26 11:27:32 +0100735 * @brief Free the compiled type structure.
736 * @param[in] ctx libyang context where the string data resides in a dictionary.
737 * @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.
738 */
739void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type);
740
741/**
Radek Krejci0af46292019-01-11 16:02:31 +0100742 * @brief Free the compiled if-feature structure.
743 * @param[in] ctx libyang context where the string data resides in a dictionary.
744 * @param[in,out] iff Compiled if-feature structure to be cleaned.
745 * Since the structure is typically part of the sized array, the structure itself is not freed.
746 */
747void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff);
748
749/**
Radek Krejciccd20f12019-02-15 14:12:27 +0100750 * @brief Free the compiled must structure.
751 * @param[in] ctx libyang context where the string data resides in a dictionary.
752 * @param[in,out] must Compiled must structure to be cleaned.
753 * Since the structure is typically part of the sized array, the structure itself is not freed.
754 */
755void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must);
756
757/**
Radek Krejcif538ce52019-03-05 10:46:14 +0100758 * @brief Free the data inside compiled input/output structure.
759 * @param[in] ctx libyang context where the string data resides in a dictionary.
760 * @param[in,out] inout Compiled inout structure to be cleaned.
761 * Since the structure is part of the RPC/action structure, it is not freed itself.
762 */
763void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout);
764
765/**
766 * @brief Free the data inside compiled RPC/action structure.
767 * @param[in] ctx libyang context where the string data resides in a dictionary.
768 * @param[in,out] action Compiled action structure to be cleaned.
769 * Since the structure is typically part of the sized array, the structure itself is not freed.
770 */
771void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action);
772
773/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200774 * @brief Free the items inside the compiled Notification structure.
775 * @param[in] ctx libyang context where the string data resides in a dictionary.
776 * @param[in,out] action Compiled Notification structure to be cleaned.
777 * Since the structure is typically part of the sized array, the structure itself is not freed.
778 */
779void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif);
780
781/**
Radek Krejci0af46292019-01-11 16:02:31 +0100782 * @brief Free the compiled extension instance structure.
783 * @param[in] ctx libyang context where the string data resides in a dictionary.
784 * @param[in,out] ext Compiled extension instance structure to be cleaned.
785 * Since the structure is typically part of the sized array, the structure itself is not freed.
786 */
787void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext);
788
789/**
Radek Krejci19a96102018-11-15 13:38:09 +0100790 * @brief Free the compiled node structure.
791 * @param[in] ctx libyang context where the string data resides in a dictionary.
792 * @param[in,out] node Compiled node structure to be freed.
793 */
794void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node);
795
796/**
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200797 * @brief Free the compiled container node structure.
798 *
799 * Only the container-specific members are freed, for generic node free function,
800 * use lysc_node_free().
801 *
802 * @param[in] ctx libyang context where the string data resides in a dictionary.
803 * @param[in,out] node Compiled container node structure to be freed.
804 */
805void lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node);
806
807/**
Radek Krejci19a96102018-11-15 13:38:09 +0100808 * @brief Free the compiled schema structure.
809 * @param[in,out] module Compiled schema module structure to free.
810 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
811 */
812void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
813
814/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200815 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
816 * @param[in,out] module Schema module structure to free.
817 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
818 */
819void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
820
821/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100822 * @brief Parse submodule from YANG data.
David Sedlák1b623122019-08-05 15:27:49 +0200823 * @param[in,out] ctx Parser context.
824 * @param[in] ly_ctx Context of YANG schemas.
825 * @param[in] main_ctx Parser context of main module.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100826 * @param[in] data Input data to be parsed.
827 * @param[out] submod Pointer to the parsed submodule structure.
828 * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID.
Radek Krejci86d106e2018-10-18 09:53:19 +0200829 */
David Sedlák1b623122019-08-05 15:27:49 +0200830LY_ERR yang_parse_submodule(struct lys_parser_ctx **context, struct ly_ctx *ly_ctx, struct lys_parser_ctx *main_ctx,
831 const char *data, struct lysp_submodule **submod);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100832
833/**
834 * @brief Parse module from YANG data.
835 * @param[in] ctx Parser context.
836 * @param[in] data Input data to be parsed.
837 * @param[in, out] mod Prepared module structure where the parsed information, including the parsed
838 * module structure, will be filled in.
839 * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID.
840 */
David Sedlák1b623122019-08-05 15:27:49 +0200841LY_ERR yang_parse_module(struct lys_parser_ctx **context, const char *data, struct lys_module *mod);
Radek Krejci86d106e2018-10-18 09:53:19 +0200842
Radek Krejci95710c92019-02-11 15:49:55 +0100843/**
David Sedlákecf5eb82019-06-03 14:12:44 +0200844 * @brief Parse module from YIN data.
David Sedlák8985a142019-07-31 16:43:06 +0200845 *
846 * @param[in,out] yin_ctx Context created during parsing, is used to finalize lysp_model after it's completly parsed.
David Sedlákecf5eb82019-06-03 14:12:44 +0200847 * @param[in] data Input data to be parsed.
David Sedlákb666bcc2019-06-05 15:00:05 +0200848 * @param[in,out] mod Prepared module structure where the parsed information, including the parsed
David Sedlákecf5eb82019-06-03 14:12:44 +0200849 * module structure, will be filled in.
David Sedlák8985a142019-07-31 16:43:06 +0200850 *
David Sedlák68826732019-06-05 10:50:58 +0200851 * @return LY_ERR values.
David Sedlákecf5eb82019-06-03 14:12:44 +0200852 */
David Sedlák8985a142019-07-31 16:43:06 +0200853LY_ERR yin_parse_module(struct yin_parser_ctx **yin_ctx, const char *data, struct lys_module *mod);
854
855/**
856 * @brief Parse submodule from YIN data.
857 *
858 * @param[in,out] yin_ctx Context created during parsing, is used to finalize lysp_model after it's completly parsed.
859 * @param[in] ctx Libyang context.
David Sedlák1b623122019-08-05 15:27:49 +0200860 * @param[in] main_ctx Parser context of main module.
861 * @param[in,out] data Input data to be parsed.
862 * @param[in,out] submod Submodule structure where the parsed information, will be filled in.
David Sedlák8985a142019-07-31 16:43:06 +0200863 * @return LY_ERR values.
864 */
David Sedlák1b623122019-08-05 15:27:49 +0200865LY_ERR yin_parse_submodule(struct yin_parser_ctx **yin_ctx, struct ly_ctx *ctx, struct lys_parser_ctx *main_ctx,
David Sedlák8985a142019-07-31 16:43:06 +0200866 const char *data, struct lysp_submodule **submod);
Radek Krejci70853c52018-10-15 14:46:16 +0200867
Radek Krejci70853c52018-10-15 14:46:16 +0200868
Radek Krejci95710c92019-02-11 15:49:55 +0100869/**
870 * @brief Make the specific module implemented, use the provided value as flag.
871 *
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200872 * @param[in] mod Module to make implemented. It is not an error to provide already implemented module, it just does nothing.
Radek Krejci95710c92019-02-11 15:49:55 +0100873 * @param[in] implemented Flag value for the ::lys_module#implemented item.
874 * @return LY_SUCCESS or LY_EDENIED in case the context contains some other revision of the
875 * same module which is already implemented.
876 */
Radek Krejci77a8bcd2019-09-11 11:20:02 +0200877LY_ERR lys_set_implemented_internal(struct lys_module *mod, uint8_t implemented);
Radek Krejci95710c92019-02-11 15:49:55 +0100878
David Sedlák18e494b2018-12-17 03:58:39 +0100879/**
880 * @brief match yang keyword
David Sedlák1bccdfa2019-06-17 15:55:27 +0200881 *
Michal Vasko14654712020-02-06 08:35:21 +0100882 * @param[in] ctx yang parser context for logging, can be NULL if keyword is from YIN data.
883 * @param[in,out] data Data to read from, always moved to currently handled character.
884 * @return yang_keyword values.
David Sedlák18e494b2018-12-17 03:58:39 +0100885 */
Radek Krejcid6b76452019-09-03 17:03:03 +0200886enum ly_stmt lysp_match_kw(struct lys_parser_ctx *ctx, const char **data);
David Sedlák1bccdfa2019-06-17 15:55:27 +0200887
Michal Vasko14654712020-02-06 08:35:21 +0100888/**
889 * @brief Generate path of the given node in the requested format.
890 *
891 * @param[in] node Schema path of this node will be generated.
892 * @param[in] parent Build relative path only until this parent is found. If NULL, the full absolute path is printed.
893 * @param[in] pathtype Format of the path to generate.
894 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
895 * If NULL, memory for the complete path is allocated.
896 * @param[in] buflen Size of the provided @p buffer.
897 * @return NULL in case of memory allocation error, path of the node otherwise.
898 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
899 */
900char *lysc_path_until(const struct lysc_node *node, const struct lysc_node *parent, LYSC_PATH_TYPE pathtype, char *buffer,
Michal Vasko90932a92020-02-12 14:33:03 +0100901 size_t buflen);
Michal Vasko14654712020-02-06 08:35:21 +0100902
Radek Krejci70853c52018-10-15 14:46:16 +0200903#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */