blob: 4bafa7049e9308187eede707ab13259efbbb6fd5 [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 Krejcid33273d2018-10-25 14:55:52 +020018#define LOGVAL_YANG(CTX, ...) LOGVAL((CTX)->ctx, LY_VLOG_LINE, &(CTX)->line, __VA_ARGS__)
19
Radek Krejcia9026eb2018-12-12 16:04:47 +010020/* These 2 macros checks YANG's identifier grammar rule */
21#define is_yangidentstartchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_')
22#define is_yangidentchar(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || \
23 c == '_' || c == '-' || c == '.')
24
Radek Krejci70853c52018-10-15 14:46:16 +020025/**
Radek Krejcie3846472018-10-15 15:24:51 +020026 * @brief List of YANG statement groups - the (sub)module's substatements
27 */
28enum yang_module_stmt {
29 Y_MOD_MODULE_HEADER,
30 Y_MOD_LINKAGE,
31 Y_MOD_META,
32 Y_MOD_REVISION,
33 Y_MOD_BODY
34};
35
36/**
37 * @brief Types of arguments of YANG statements
38 */
39enum yang_arg {
40 Y_IDENTIF_ARG, /**< YANG "identifier-arg-str" rule */
Radek Krejcia9026eb2018-12-12 16:04:47 +010041 Y_PREF_IDENTIF_ARG, /**< YANG "identifier-ref-arg-str" or node-identifier rule */
Radek Krejcie3846472018-10-15 15:24:51 +020042 Y_STR_ARG, /**< YANG "string" rule */
43 Y_MAYBE_STR_ARG /**< optional YANG "string" rule */
44};
45
46/**
Radek Krejci70853c52018-10-15 14:46:16 +020047 * @brief internal context for schema parsers
48 */
49struct ly_parser_ctx {
50 struct ly_ctx *ctx;
Radek Krejcibbe09a92018-11-08 09:36:54 +010051 struct ly_set tpdfs_nodes;
52 struct ly_set grps_nodes;
53 uint64_t line; /**< line number */
54 uint64_t indent; /**< current position on the line for YANG indentation */
Radek Krejci0bcdaed2019-01-10 10:21:34 +010055 uint8_t mod_version; /**< module's version */
Radek Krejci70853c52018-10-15 14:46:16 +020056};
57
58/**
Radek Krejci4f28eda2018-11-12 11:46:16 +010059 * @brief internal context for compilation
60 */
61struct lysc_ctx {
62 struct ly_ctx *ctx;
63 struct lys_module *mod;
Radek Krejci0af46292019-01-11 16:02:31 +010064 struct lys_module *mod_def; /**< context module for the definitions of the nodes being currently
65 processed - groupings are supposed to be evaluated in place where
66 defined, but its content instances are supposed to be placed into
67 the target module (mod) */
68 struct ly_set groupings; /**< stack for groupings circular check */
69 struct ly_set unres; /**< to validate leafref's target and xpath of when/must */
Radek Krejci99b5b2a2019-04-30 16:57:04 +020070 struct ly_set tpdf_chain;
Radek Krejci4f28eda2018-11-12 11:46:16 +010071 uint16_t path_len;
Radek Krejciec4da802019-05-02 13:02:41 +020072 int options; /**< various @ref scflags. */
Radek Krejci4f28eda2018-11-12 11:46:16 +010073#define LYSC_CTX_BUFSIZE 4078
74 char path[LYSC_CTX_BUFSIZE];
75};
76
77/**
Radek Krejci70853c52018-10-15 14:46:16 +020078 * @brief Check the currently present prefixes in the module for collision with the new one.
79 *
Radek Krejcibbe09a92018-11-08 09:36:54 +010080 * @param[in] ctx Context for logging.
Radek Krejci0bcdaed2019-01-10 10:21:34 +010081 * @param[in] imports List of current imports of the module to check prefix collision.
82 * @param[in] module_prefix Prefix of the module to check collision.
Radek Krejci70853c52018-10-15 14:46:16 +020083 * @param[in] value Newly added prefix value (including its location to distinguish collision with itself).
84 * @return LY_EEXIST when prefix is already used in the module, LY_SUCCESS otherwise
85 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +010086LY_ERR lysp_check_prefix(struct ly_parser_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value);
Radek Krejci70853c52018-10-15 14:46:16 +020087
Radek Krejci86d106e2018-10-18 09:53:19 +020088/**
89 * @brief Check date string (4DIGIT "-" 2DIGIT "-" 2DIGIT)
90 *
Radek Krejcibbe09a92018-11-08 09:36:54 +010091 * @param[in] ctx Optional context for logging.
Radek Krejci86d106e2018-10-18 09:53:19 +020092 * @param[in] date Date string to check (non-necessarily terminated by \0)
93 * @param[in] date_len Length of the date string, 10 expected.
94 * @param[in] stmt Statement name for error message.
95 * @return LY_ERR value.
96 */
Radek Krejcibbe09a92018-11-08 09:36:54 +010097LY_ERR lysp_check_date(struct ly_parser_ctx *ctx, const char *date, int date_len, const char *stmt);
98
99/**
100 * @brief Check names of typedefs in the parsed module to detect collisions.
101 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100102 * @param[in] ctx Parser context for logging and to maintain tpdfs_nodes
103 * @param[in] mod Module where the type is being defined.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100104 * @return LY_ERR value.
105 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100106LY_ERR lysp_check_typedefs(struct ly_parser_ctx *ctx, struct lysp_module *mod);
Radek Krejci86d106e2018-10-18 09:53:19 +0200107
108/**
109 * @brief Just move the newest revision into the first position, does not sort the rest
110 * @param[in] revs Sized-array of the revisions in a printable schema tree.
111 */
112void lysp_sort_revisions(struct lysp_revision *revs);
113
114/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100115 * @brief Find type specified type definition
116 *
117 * @param[in] id Name of the type including possible prefix. Module where the prefix is being searched is start_module.
118 * @param[in] start_node Context node where the type is being instantiated to be able to search typedefs in parents.
119 * @param[in] start_module Module where the type is being instantiated for search for typedefs.
Radek Krejci4f28eda2018-11-12 11:46:16 +0100120 * @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 +0100121 * @param[out] tpdf Found type definition.
122 * @param[out] node Node where the found typedef is defined, NULL in case of a top-level typedef.
123 * @param[out] module Module where the found typedef is being defined, NULL in case of built-in YANG types.
124 */
125LY_ERR lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci4f28eda2018-11-12 11:46:16 +0100126 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100127
128/**
Radek Krejci086c7132018-10-26 15:29:04 +0200129 * @brief Find and parse module of the given name.
130 *
131 * @param[in] ctx libyang context.
132 * @param[in] name Name of the module to load.
133 * @param[in] revison Optional revision of the module to load. If NULL, the newest revision is loaded.
Radek Krejcied5acc52019-04-25 15:57:04 +0200134 * @param[in] implement Flag if the loaded module is supposed to be marked as implemented. If revision is NULL and implement flag set,
135 * the implemented module in the context is returned despite it might not be of the latest revision, because in this case the module
136 * of the latest revision can not be made implemented.
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100137 * @param[in] require_parsed Flag to require parsed module structure in case the module is already in the context,
138 * but only the compiled structure is available.
Radek Krejci086c7132018-10-26 15:29:04 +0200139 * @param[out] mod Parsed module structure.
140 * @return LY_ERR value.
141 */
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100142LY_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 +0200143
144/**
Radek Krejcid33273d2018-10-25 14:55:52 +0200145 * @brief Parse included submodule into the simply parsed YANG module.
146 *
Radek Krejci3b1f9292018-11-08 10:58:35 +0100147 * @param[in] ctx parser context
Radek Krejcid33273d2018-10-25 14:55:52 +0200148 * @param[in] mod Module including a submodule.
Radek Krejcid33273d2018-10-25 14:55:52 +0200149 * @param[in,out] inc Include structure holding all available information about the include statement, the parsed
150 * submodule is stored into this structure.
151 * @return LY_ERR value.
152 */
Radek Krejci3b1f9292018-11-08 10:58:35 +0100153LY_ERR lysp_load_submodule(struct ly_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc);
Radek Krejcid33273d2018-10-25 14:55:52 +0200154
155/**
Radek Krejci096235c2019-01-11 11:12:19 +0100156 * @defgroup scflags Schema compile flags
157 * @ingroup schematree
158 *
159 * @{
160 */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100161#define LYSC_OPT_RPC_INPUT LYS_CONFIG_W /**< Internal option when compiling schema tree of RPC/action input */
162#define LYSC_OPT_RPC_OUTPUT LYS_CONFIG_R /**< Internal option when compiling schema tree of RPC/action output */
Radek Krejcifc11bd72019-04-11 16:00:05 +0200163#define LYSC_OPT_RPC_MASK LYS_CONFIG_MASK /**< mask for the internal RPC options */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100164#define LYSC_OPT_FREE_SP 0x04 /**< Free the input printable schema */
165#define LYSC_OPT_INTERNAL 0x08 /**< Internal compilation caused by dependency */
166#define LYSC_OPT_NOTIFICATION 0x10 /**< Internal option when compiling schema tree of Notification */
Radek Krejci096235c2019-01-11 11:12:19 +0100167/** @} scflags */
168
169/**
170 * @brief Compile printable schema into a validated schema linking all the references.
171 *
172 * @param[in, out] mod Schema structure holding pointers to both schema structure types. The ::lys_module#parsed
173 * member is used as input and ::lys_module#compiled is used to hold the result of the compilation.
174 * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags).
175 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
176 */
177LY_ERR lys_compile(struct lys_module *mod, int options);
178
179/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100180 * @brief Get address of a node's actions list if any.
181 *
182 * Decides the node's type and in case it has an actions list, returns its address.
183 * @param[in] node Node to check.
184 * @return Address of the node's actions member if any, NULL otherwise.
185 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100186struct lysp_action **lysp_node_actions_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100187
188/**
189 * @brief Get address of a node's notifications list if any.
190 *
191 * Decides the node's type and in case it has a notifications list, returns its address.
192 * @param[in] node Node to check.
193 * @return Address of the node's notifs member if any, NULL otherwise.
194 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100195struct lysp_notif **lysp_node_notifs_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100196
197/**
198 * @brief Get address of a node's child pointer if any.
199 *
200 * Decides the node's type and in case it has a children list, returns its address.
201 * @param[in] node Node to check.
202 * @return Address of the node's child member if any, NULL otherwise.
203 */
Radek Krejci056d0a82018-12-06 16:57:25 +0100204struct lysp_node **lysp_node_children_p(struct lysp_node *node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100205
206/**
207 * @brief Get address of a node's child pointer if any.
208 *
209 * Decides the node's type and in case it has a children list, returns its address.
210 * @param[in] node Node to check.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100211 * @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 +0100212 * @return Address of the node's child member if any, NULL otherwise.
213 */
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100214struct lysc_node **lysc_node_children_p(const struct lysc_node *node, uint16_t flags);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100215
216/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200217 * @brief Get address of a node's notifs pointer if any.
218 *
219 * Decides the node's type and in case it has a notifs array, returns its address.
220 * @param[in] node Node to check.
221 * @return Address of the node's notifs member if any, NULL otherwise.
222 */
223struct lysc_notif **lysc_node_notifs_p(struct lysc_node *node);
224
225/**
226 * @brief Get address of a node's actions pointer if any.
227 *
228 * Decides the node's type and in case it has a actions array, returns its address.
229 * @param[in] node Node to check.
230 * @return Address of the node's actions member if any, NULL otherwise.
231 */
232struct lysc_action **lysc_node_actions_p(struct lysc_node *node);
233
234/**
Radek Krejcid3ca0632019-04-16 16:54:54 +0200235 * @brief Iterate over the specified type of the extension instances
236 *
237 * @param[in] ext ([Sized array](@ref sizedarrays)) of extensions to explore
238 * @param[in] index Index in the \p ext array where to start searching (first call with 0, the consequent calls with
239 * the returned index increased by 1 (until the iteration is not terminated by returning LY_ARRAY_SIZE(ext).
240 * @param[in] substmt Type of the extension (its belongins to the specific substatement) to iterate, use
241 * #LYEXT_SUBSTMT_ALL to go through all the extensions in the array
242 * @result index in the ext array, LY_ARRAY_SIZE(ext) value if not present.
243 */
244unsigned int lysp_ext_instance_iter(struct lysp_ext_instance *ext, unsigned int index, LYEXT_SUBSTMT substmt);
245
246/**
Radek Krejci96a0bfd2018-11-22 15:25:06 +0100247 * @brief Get the covering schema module structure for the given parsed module structure.
248 * @param[in] ctx libyang context to search.
249 * @param[in] mod Parsed schema structure.
250 * @return Corresponding lys_module structure for the given parsed schema structure.
251 */
252struct lys_module *lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod);
253
254/**
Radek Krejcice8c1592018-10-29 15:35:51 +0100255 * @brief Find the module referenced by prefix in the provided parsed mod.
256 *
257 * @param[in] mod Schema module where the prefix was used.
258 * @param[in] prefix Prefix used to reference a module.
259 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
260 * @return Pointer to the module or NULL if the module is not found.
261 */
Radek Krejcia3045382018-11-22 14:30:31 +0100262struct lysp_module *lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len);
Radek Krejcice8c1592018-10-29 15:35:51 +0100263
264/**
265 * @brief Find the module referenced by prefix in the provided compiled mod.
266 *
267 * @param[in] mod Schema module where the prefix was used.
268 * @param[in] prefix Prefix used to reference a module.
269 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
270 * @return Pointer to the module or NULL if the module is not found.
271 */
Radek Krejcia3045382018-11-22 14:30:31 +0100272struct lysc_module *lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len);
Radek Krejcice8c1592018-10-29 15:35:51 +0100273
274/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100275 * @brief Check statement's status for invalid combination.
276 *
277 * The modX parameters are used just to determine if both flags are in the same module,
278 * so any of the schema module structure can be used, but both modules must be provided
279 * in the same type.
280 *
281 * @param[in] ctx Compile context for logging.
282 * @param[in] flags1 Flags of the referencing node.
283 * @param[in] mod1 Module of the referencing node,
284 * @param[in] name1 Schema node name of the referencing node.
285 * @param[in] flags2 Flags of the referenced node.
286 * @param[in] mod2 Module of the referenced node,
287 * @param[in] name2 Schema node name of the referenced node.
288 * @return LY_ERR value
289 */
290LY_ERR lysc_check_status(struct lysc_ctx *ctx,
291 uint16_t flags1, void *mod1, const char *name1,
292 uint16_t flags2, void *mod2, const char *name2);
293
294/**
Radek Krejcia3045382018-11-22 14:30:31 +0100295 * @brief Parse a node-identifier.
296 *
297 * node-identifier = [prefix ":"] identifier
298 *
299 * @param[in, out] id Identifier to parse. When returned, it points to the first character which is not part of the identifier.
300 * @param[out] prefix Node's prefix, NULL if there is not any.
301 * @param[out] prefix_len Length of the node's prefix, 0 if there is not any.
302 * @param[out] name Node's name.
303 * @param[out] nam_len Length of the node's name.
304 * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the id.
305 */
306LY_ERR lys_parse_nodeid(const char **id, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len);
307
308/**
Radek Krejci95710c92019-02-11 15:49:55 +0100309 * @brief Find the node according to the given descendant/absolute schema nodeid.
310 * Used in unique, refine and augment statements.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100311 *
312 * @param[in] ctx Compile context
313 * @param[in] nodeid Descendant-schema-nodeid (according to the YANG grammar)
314 * @param[in] nodeid_len Length of the given nodeid, if it is not NULL-terminated string.
315 * @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 +0100316 * If no context node is provided, the nodeid is actually expected to be the absolute schema node .
317 * @param[in] context_module Explicit module to resolve prefixes in @nodeid.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100318 * @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 +0100319 * the given nodetype, LY_EDENIED is returned (and target is provided), but no error message is printed.
320 * The value can be even an ORed value to allow multiple nodetypes.
321 * @param[in] implement Flag if the modules mentioned in the nodeid are supposed to be made implemented.
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100322 * @param[out] target Found target node if any. In case of RPC/action input/output node, LYS_ACTION node is actually returned
323 * since the input/output has not a standalone node structure and it is part of ::lysc_action which is better compatible with ::lysc_node.
324 * @param[out] result_flag Output parameter to announce if the schema nodeid goes through the action's input/output or a Notification.
325 * The LYSC_OPT_RPC_INPUT, LYSC_OPT_RPC_OUTPUT and LYSC_OPT_NOTIFICATION are used as flags.
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100326 * @return LY_ERR values - LY_ENOTFOUND, LY_EVALID, LY_EDENIED or LY_SUCCESS.
327 */
Radek Krejci95710c92019-02-11 15:49:55 +0100328LY_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 +0100329 const struct lys_module *context_module, int nodetype, int implement,
330 const struct lysc_node **target, uint16_t *result_flag);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100331
332/**
Radek Krejci151a5b72018-10-19 14:21:44 +0200333 * @brief Find the module referenced by prefix in the provided mod.
334 *
Radek Krejci693262f2019-04-29 15:23:20 +0200335 * Reverse function to lys_prefix_find_module().
336 *
Radek Krejci151a5b72018-10-19 14:21:44 +0200337 * @param[in] mod Schema module where the prefix was used.
338 * @param[in] prefix Prefix used to reference a module.
339 * @param[in] len Length of the prefix since it is not necessary NULL-terminated.
340 * @return Pointer to the module or NULL if the module is not found.
341 */
Radek Krejcia3045382018-11-22 14:30:31 +0100342struct lys_module *lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len);
343
344/**
Radek Krejci693262f2019-04-29 15:23:20 +0200345 * @brief Find the prefix used to referenced the import module in the provided mod.
346 *
347 * Reverse function to lys_module_find_prefix().
348 *
349 * Note that original prefixes are present only in the parsed schema. In case it is not available
350 * (only compiled schema available), the own prefix of the import module is returned instead.
351 *
352 * @param[in] mod Schema module where the import module was used.
353 * @param[in] import Module referenced in mod.
354 * @return Prefix of the import module.
355 */
356const char *lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import);
357
358/**
Radek Krejcia3045382018-11-22 14:30:31 +0100359 * @brief Stringify schema nodetype.
360 * @param[in] nodetype Nodetype to stringify.
361 * @return Constant string with the name of the node's type.
362 */
363const char *lys_nodetype2str(uint16_t nodetype);
Radek Krejci151a5b72018-10-19 14:21:44 +0200364
365/**
Radek Krejci693262f2019-04-29 15:23:20 +0200366 * @brief Stringify YANG built-in type.
367 * @param[in] basetype Built-in tyep ID to stringify.
368 * @return Constant string with the name of the built-in type.
369 */
370const char *lys_datatype2str(LY_DATA_TYPE basetype);
371
372/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100373 * @brief Parse YANG module from a string.
Radek Krejcid33273d2018-10-25 14:55:52 +0200374 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100375 * The modules are added into the context and the latest_revision flag is updated.
Radek Krejcid33273d2018-10-25 14:55:52 +0200376 *
377 * @param[in] ctx libyang context where to process the data model.
378 * @param[in] data The string containing the dumped data model in the specified
379 * format.
380 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200381 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100382 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
383 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200384 * @return Pointer to the data model structure or NULL on error.
385 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100386struct lys_module *lys_parse_mem_module(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, int implement,
387 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
388 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200389
390/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100391 * @brief Parse YANG submodule from a string.
Radek Krejcid33273d2018-10-25 14:55:52 +0200392 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100393 * The latest_revision flag of submodule is updated.
394 *
395 * @param[in] ctx libyang context where to process the data model.
396 * @param[in] data The string containing the dumped data model in the specified
397 * format.
398 * @param[in] format Format of the input data (YANG or YIN).
399 * @param[in] main_ctx Parser context of the main module.
400 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
401 * @param[in] check_data Caller's data to pass to the custom_check callback.
402 * @return Pointer to the data model structure or NULL on error.
403 */
404struct lysp_submodule *lys_parse_mem_submodule(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, struct ly_parser_ctx *main_ctx,
405 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
406 void *check_data);
407
408/**
409 * @brief Parse YANG module or submodule from a file descriptor.
410 *
411 * 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 +0200412 *
413 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
414 *
415 * @param[in] ctx libyang context where to process the data model.
416 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
417 * in the specified format.
418 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200419 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100420 * @param[in] main_ctx Parser context of the main module in case of parsing submodule. This flag decides if the module
421 * or submodule was expected to be parsed.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100422 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
423 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200424 * @return Pointer to the data model structure or NULL on error.
425 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100426void *lys_parse_fd_(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement, struct ly_parser_ctx *main_ctx,
427 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
428 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200429
430/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100431 * @brief Parse YANG module from a file descriptor.
Radek Krejcid33273d2018-10-25 14:55:52 +0200432 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100433 * The modules are added into the context. The latest_revision flag is updated.
Radek Krejcid33273d2018-10-25 14:55:52 +0200434 *
435 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
436 *
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100437 * @param[in] ctx libyang context where to process the data model.
438 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
439 * in the specified format.
440 * @param[in] format Format of the input data (YANG or YIN).
441 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
442 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
443 * @param[in] check_data Caller's data to pass to the custom_check callback.
444 * @return Pointer to the data model structure or NULL on error.
445 */
446struct lys_module *lys_parse_fd_module(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, int implement,
447 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
448 void *check_data);
449
450/**
451 * @brief Parse YANG submodule from a file descriptor.
452 *
453 * The latest_revision flag of submodules is updated.
454 *
455 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
456 *
457 * @param[in] ctx libyang context where to process the data model.
458 * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the schema
459 * in the specified format.
460 * @param[in] format Format of the input data (YANG or YIN).
461 * @param[in] main_ctx Parser context of the main module.
462 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
463 * @param[in] check_data Caller's data to pass to the custom_check callback.
464 * @return Pointer to the data model structure or NULL on error.
465 */
466struct lysp_submodule *lys_parse_fd_submodule(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, struct ly_parser_ctx *main_ctx,
467 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *check_data),
468 void *check_data);
469
470/**
471 * @brief Parse YANG module from a filepath.
472 *
473 * The modules are added into the context. The latest_revision flag is updated.
474 *
475 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
Radek Krejcid33273d2018-10-25 14:55:52 +0200476 *
477 * @param[in] ctx libyang context where to process the data model.
478 * @param[in] path Path to the file with the model in the specified format.
479 * @param[in] format Format of the input data (YANG or YIN).
Radek Krejcid33273d2018-10-25 14:55:52 +0200480 * @param[in] implement Flag if the schema is supposed to be marked as implemented.
Radek Krejci9ed7a192018-10-31 16:23:51 +0100481 * @param[in] custom_check Callback to check the parsed schema before it is accepted.
482 * @param[in] check_data Caller's data to pass to the custom_check callback.
Radek Krejcid33273d2018-10-25 14:55:52 +0200483 * @return Pointer to the data model structure or NULL on error.
484 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100485struct lys_module *lys_parse_path_(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, int implement,
486 LY_ERR (*custom_check)(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data),
487 void *check_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200488
489/**
490 * @brief Load the (sub)module into the context.
491 *
492 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
493 *
494 * module_name and submodule_name are alternatives - only one of the
495 *
496 * @param[in] ctx libyang context where to work.
497 * @param[in] name Name of the (sub)module to load.
498 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
499 * @param[in] implement Flag if the (sub)module is supposed to be marked as implemented.
Radek Krejci3b1f9292018-11-08 10:58:35 +0100500 * @param[in] main_ctx Parser context of the main module in case of loading submodule.
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100501 * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*).
502 * If it is a module, it is already in the context!
Radek Krejcid33273d2018-10-25 14:55:52 +0200503 * @return LY_ERR value, in case of LY_SUCCESS, the \arg result is always provided.
504 */
Radek Krejci3b1f9292018-11-08 10:58:35 +0100505LY_ERR lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct ly_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100506 void **result);
Radek Krejci086c7132018-10-26 15:29:04 +0200507
508/**
Radek Krejci0af46292019-01-11 16:02:31 +0100509 * @brief Create pre-compiled features array.
510 *
511 * Features are compiled in two steps to allow forward references between them via their if-feature statements.
512 * In case of not implemented schemas, the precompiled list of features is stored in lys_module structure and
513 * the compilation is not finished (if-feature and extensions are missing) and all the features are permanently
514 * disabled without a chance to change it. The list is used as target for any if-feature statement in any
515 * implemented module to get valid data to evaluate its result. The compilation is finished via
516 * lys_feature_precompile_finish() in implemented modules. In case a not implemented module becomes implemented,
517 * the precompiled list is reused to finish the compilation to preserve pointers already used in various compiled
518 * if-feature structures.
519 *
520 * @param[in] ctx libyang context.
Radek Krejci693262f2019-04-29 15:23:20 +0200521 * @param[in] module Module of the features.
Radek Krejci0af46292019-01-11 16:02:31 +0100522 * @param[in] features_p Array if the parsed features definitions to precompile.
523 * @param[in,out] features Pointer to the storage of the (pre)compiled features array where the new features are
524 * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed features are going
525 * to be processed.
526 * @return LY_ERR value.
527 */
Radek Krejci693262f2019-04-29 15:23:20 +0200528LY_ERR lys_feature_precompile(struct ly_ctx *ctx, struct lys_module *module, struct lysp_feature *features_p, struct lysc_feature **features);
529
530/**
531 * @brief Get the @ref ifftokens from the given position in the 2bits array
532 * (libyang format of the if-feature expression).
533 * @param[in] list The 2bits array with the compiled if-feature expression.
534 * @param[in] pos Position (0-based) to specify from which position get the operator.
535 */
536uint8_t lysc_iff_getop(uint8_t *list, int pos);
Radek Krejci0af46292019-01-11 16:02:31 +0100537
538/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200539 * @brief Macro to free [sized array](@ref sizedarrays) of items using the provided free function. The ARRAY itself is also freed,
540 * but the memory is not sanitized.
541 */
542#define FREE_ARRAY(CTX, ARRAY, FUNC) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FUNC(CTX, &(ARRAY)[c__]);}LY_ARRAY_FREE(ARRAY);}
543
544/**
545 * @brief Macro to free the specified MEMBER of a structure using the provided free function. The memory is not sanitized.
546 */
547#define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);}
548
549/**
550 * @brief Macro to free [sized array](@ref sizedarrays) of strings stored in the context's dictionary. The ARRAY itself is also freed,
551 * but the memory is not sanitized.
552 */
553#define FREE_STRINGS(CTX, ARRAY) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FREE_STRING(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);}
554
555/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100556 * @brief Free the parsed submodule structure.
557 * @param[in] ctx libyang context where the string data resides in a dictionary.
558 * @param[in,out] submod Parsed schema submodule structure to free.
Radek Krejci086c7132018-10-26 15:29:04 +0200559 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100560void lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod);
Radek Krejci086c7132018-10-26 15:29:04 +0200561
Radek Krejcid33273d2018-10-25 14:55:52 +0200562/**
Radek Krejcicdfecd92018-11-26 11:27:32 +0100563 * @brief Free the compiled type structure.
564 * @param[in] ctx libyang context where the string data resides in a dictionary.
565 * @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.
566 */
567void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type);
568
569/**
Radek Krejci0af46292019-01-11 16:02:31 +0100570 * @brief Free the compiled if-feature structure.
571 * @param[in] ctx libyang context where the string data resides in a dictionary.
572 * @param[in,out] iff Compiled if-feature structure to be cleaned.
573 * Since the structure is typically part of the sized array, the structure itself is not freed.
574 */
575void lysc_iffeature_free(struct ly_ctx *ctx, struct lysc_iffeature *iff);
576
577/**
Radek Krejciccd20f12019-02-15 14:12:27 +0100578 * @brief Free the compiled must structure.
579 * @param[in] ctx libyang context where the string data resides in a dictionary.
580 * @param[in,out] must Compiled must structure to be cleaned.
581 * Since the structure is typically part of the sized array, the structure itself is not freed.
582 */
583void lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must);
584
585/**
Radek Krejcif538ce52019-03-05 10:46:14 +0100586 * @brief Free the data inside compiled input/output structure.
587 * @param[in] ctx libyang context where the string data resides in a dictionary.
588 * @param[in,out] inout Compiled inout structure to be cleaned.
589 * Since the structure is part of the RPC/action structure, it is not freed itself.
590 */
591void lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout);
592
593/**
594 * @brief Free the data inside compiled RPC/action structure.
595 * @param[in] ctx libyang context where the string data resides in a dictionary.
596 * @param[in,out] action Compiled action structure to be cleaned.
597 * Since the structure is typically part of the sized array, the structure itself is not freed.
598 */
599void lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action);
600
601/**
Radek Krejcifc11bd72019-04-11 16:00:05 +0200602 * @brief Free the items inside the compiled Notification structure.
603 * @param[in] ctx libyang context where the string data resides in a dictionary.
604 * @param[in,out] action Compiled Notification structure to be cleaned.
605 * Since the structure is typically part of the sized array, the structure itself is not freed.
606 */
607void lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif);
608
609/**
Radek Krejci0af46292019-01-11 16:02:31 +0100610 * @brief Free the compiled extension instance structure.
611 * @param[in] ctx libyang context where the string data resides in a dictionary.
612 * @param[in,out] ext Compiled extension instance structure to be cleaned.
613 * Since the structure is typically part of the sized array, the structure itself is not freed.
614 */
615void lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext);
616
617/**
Radek Krejci19a96102018-11-15 13:38:09 +0100618 * @brief Free the compiled node structure.
619 * @param[in] ctx libyang context where the string data resides in a dictionary.
620 * @param[in,out] node Compiled node structure to be freed.
621 */
622void lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node);
623
624/**
625 * @brief Free the compiled schema structure.
626 * @param[in,out] module Compiled schema module structure to free.
627 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
628 */
629void lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
630
631/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200632 * @brief Free the schema structure. It just frees, it does not remove the schema from its context.
633 * @param[in,out] module Schema module structure to free.
634 * @param[in] private_destructor Function to remove private data from the compiled schema tree.
635 */
636void lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv));
637
638/**
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100639 * @brief Parse submodule from YANG data.
640 * @param[in] ctx Parser context.
641 * @param[in] data Input data to be parsed.
642 * @param[out] submod Pointer to the parsed submodule structure.
643 * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID.
Radek Krejci86d106e2018-10-18 09:53:19 +0200644 */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100645LY_ERR yang_parse_submodule(struct ly_parser_ctx *ctx, const char *data, struct lysp_submodule **submod);
646
647/**
648 * @brief Parse module from YANG data.
649 * @param[in] ctx Parser context.
650 * @param[in] data Input data to be parsed.
651 * @param[in, out] mod Prepared module structure where the parsed information, including the parsed
652 * module structure, will be filled in.
653 * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID.
654 */
655LY_ERR yang_parse_module(struct ly_parser_ctx *ctx, const char *data, struct lys_module *mod);
Radek Krejci86d106e2018-10-18 09:53:19 +0200656
Radek Krejci95710c92019-02-11 15:49:55 +0100657/**
658 * @brief Make the specific module implemented, use the provided value as flag.
659 *
660 * @param[in] ctx libyang context to change.
661 * @param[in] mod Module from the given context to make implemented. It is not an error
662 * to provide already implemented module, it just does nothing.
663 * @param[in] implemented Flag value for the ::lys_module#implemented item.
664 * @return LY_SUCCESS or LY_EDENIED in case the context contains some other revision of the
665 * same module which is already implemented.
666 */
667LY_ERR ly_ctx_module_implement_internal(struct ly_ctx *ctx, struct lys_module *mod, uint8_t implemented);
668
Radek Krejci70853c52018-10-15 14:46:16 +0200669#endif /* LY_TREE_SCHEMA_INTERNAL_H_ */