blob: 1a30037cdf8019c582bb5f1597bc7dec529a3faa [file] [log] [blame]
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001/**
2 * @file schema_compile.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Header for schema compilation.
5 *
6 * Copyright (c) 2015 - 2020 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_SCHEMA_COMPILE_H_
16#define LY_SCHEMA_COMPILE_H_
17
Radek Krejci47fab892020-11-05 17:02:41 +010018#include <stddef.h>
19#include <stdint.h>
20
21#include "common.h"
22#include "dict.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020023#include "log.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020024#include "set.h"
Radek Krejci47fab892020-11-05 17:02:41 +010025#include "tree.h"
26#include "tree_data.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020027#include "tree_schema.h"
28
Radek Krejci47fab892020-11-05 17:02:41 +010029struct lyxp_expr;
30
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020031/**
32 * @defgroup scflags Schema compile flags
33 *
34 * Flags are currently used only internally - the compilation process does not have a public interface and it is
35 * integrated in the schema parsers. The current options set does not make sense for public used, but it can be a way
36 * to modify behavior of the compilation process in future.
37 *
38 * @{
39 */
Michal Vaskod1e53b92021-01-28 13:11:06 +010040#define LYS_COMPILE_RPC_INPUT LYS_IS_INPUT /**< Internal option when compiling schema tree of RPC/action input */
41#define LYS_COMPILE_RPC_OUTPUT LYS_IS_OUTPUT /**< Internal option when compiling schema tree of RPC/action output */
42#define LYS_COMPILE_NOTIFICATION LYS_IS_NOTIF /**< Internal option when compiling schema tree of Notification */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020043
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010044#define LYS_COMPILE_GROUPING 0x08 /**< Compiling (validation) of a non-instantiated grouping.
45 In this case not all the restrictions are checked since they can
46 be valid only in the real placement of the grouping.
47 TODO - what specifically is not done */
48#define LYS_COMPILE_DISABLED 0x10 /**< Compiling a disabled subtree (by its if-features). Meaning
49 it will be removed at the end of compilation and should not be
50 added to any unres sets. */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020051/** @} scflags */
52
53/**
54 * @brief internal context for compilation
55 */
56struct lysc_ctx {
57 struct ly_ctx *ctx;
Michal Vaskob8df5762021-01-12 15:15:53 +010058 struct lys_module *cur_mod; /**< module currently being compiled,
59 - identifier/path - used as the current module for unprefixed nodes
60 - augment - module where the augment is defined
61 - deviation - module where the deviation is defined
62 - uses - module where the uses is defined */
63 struct lysp_module *pmod; /**< parsed module being processed,
64 - identifier/path - used for searching imports to resolve prefixed nodes
65 - augment - module where the augment is defined
66 - deviation - module where the deviation is defined
67 - uses - module where the grouping is defined */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020068 struct ly_set groupings; /**< stack for groupings circular check */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020069 struct ly_set tpdf_chain;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010070 struct ly_set disabled; /**< set of compiled nodes whose if-feature(s) was not satisifed */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020071 struct ly_set augs; /**< set of compiled non-applied top-level augments */
72 struct ly_set devs; /**< set of compiled non-applied deviations */
73 struct ly_set uses_augs; /**< set of compiled non-applied uses augments */
74 struct ly_set uses_rfns; /**< set of compiled non-applied uses refines */
Michal Vasko405cc9e2020-12-01 12:01:27 +010075 struct lys_glob_unres *unres; /**< global unres sets */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020076 uint32_t path_len;
77 uint32_t options; /**< various @ref scflags. */
78#define LYSC_CTX_BUFSIZE 4078
79 char path[LYSC_CTX_BUFSIZE];
80};
81
82/**
Michal Vasko405cc9e2020-12-01 12:01:27 +010083 * @brief Structure for unresolved items that may depend on any implemented module data so their resolution
84 * can only be performed after all module basic compilation is done.
85 */
86struct lys_glob_unres {
87 struct ly_set implementing; /**< set of YANG schemas being atomically implemented (compiled); the first added
88 module is always the explcitly implemented module, the other ones are dependencies */
89 struct ly_set creating; /**< set of YANG schemas being atomically created (parsed); it is a subset of implemented
90 and all these modules are freed if any error occurs */
91 struct ly_set xpath; /**< when/must to check */
92 struct ly_set leafrefs; /**< to validate leafref's targets */
93 struct ly_set dflts; /**< set of incomplete default values */
94 ly_bool recompile; /**< flag whether all the modules need to be recompiled (because of new deviations) */
95};
96
97/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020098 * @brief Structure for remembering default values of leaves and leaf-lists. They are resolved at schema compilation
99 * end when the whole schema tree is available.
100 */
101struct lysc_unres_dflt {
102 union {
103 struct lysc_node_leaf *leaf;
104 struct lysc_node_leaflist *llist;
105 };
106 struct lysp_qname *dflt;
107 struct lysp_qname *dflts; /**< this is a sized array */
108};
109
110/**
111 * @brief Duplicate string into dictionary
112 * @param[in] CTX libyang context of the dictionary.
113 * @param[in] ORIG String to duplicate.
114 * @param[out] DUP Where to store the result.
115 */
116#define DUP_STRING(CTX, ORIG, DUP, RET) if (ORIG) {RET = lydict_insert(CTX, ORIG, 0, &DUP);}
Radek Krejci771928a2021-01-19 13:42:36 +0100117#define DUP_STRING_RET(CTX, ORIG, DUP) if (ORIG) {LY_ERR __ret = lydict_insert(CTX, ORIG, 0, &DUP); LY_CHECK_RET(__ret);}
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200118#define DUP_STRING_GOTO(CTX, ORIG, DUP, RET, GOTO) if (ORIG) {LY_CHECK_GOTO(RET = lydict_insert(CTX, ORIG, 0, &DUP), GOTO);}
119
120#define DUP_ARRAY(CTX, ORIG_ARRAY, NEW_ARRAY, DUP_FUNC) \
121 if (ORIG_ARRAY) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100122 LY_ARRAY_COUNT_TYPE __u; \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200123 LY_ARRAY_CREATE_RET(CTX, NEW_ARRAY, LY_ARRAY_COUNT(ORIG_ARRAY), LY_EMEM); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100124 LY_ARRAY_FOR(ORIG_ARRAY, __u) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200125 LY_ARRAY_INCREMENT(NEW_ARRAY); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100126 LY_CHECK_RET(DUP_FUNC(CTX, &(NEW_ARRAY)[__u], &(ORIG_ARRAY)[__u])); \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200127 } \
128 }
129
Michal Vasko5347e3a2020-11-03 17:14:57 +0100130#define COMPILE_OP_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, PARENT, FUNC, USES_STATUS, RET, GOTO) \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200131 if (ARRAY_P) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100132 LY_ARRAY_COUNT_TYPE __u = (ARRAY_C) ? LY_ARRAY_COUNT(ARRAY_C) : 0; \
133 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, __u + LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
134 LY_ARRAY_FOR(ARRAY_P, __u) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200135 LY_ARRAY_INCREMENT(ARRAY_C); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100136 RET = FUNC(CTX, &(ARRAY_P)[__u], PARENT, &(ARRAY_C)[LY_ARRAY_COUNT(ARRAY_C) - 1], USES_STATUS); \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200137 if (RET == LY_EDENIED) { \
138 LY_ARRAY_DECREMENT(ARRAY_C); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100139 RET = LY_SUCCESS; \
140 } else if (RET) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200141 goto GOTO; \
142 } \
143 } \
144 }
145
Michal Vasko5347e3a2020-11-03 17:14:57 +0100146#define COMPILE_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, FUNC, RET, GOTO) \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200147 if (ARRAY_P) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100148 LY_ARRAY_COUNT_TYPE __u = (ARRAY_C) ? LY_ARRAY_COUNT(ARRAY_C) : 0; \
149 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, __u + LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
150 LY_ARRAY_FOR(ARRAY_P, __u) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200151 LY_ARRAY_INCREMENT(ARRAY_C); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100152 RET = FUNC(CTX, &(ARRAY_P)[__u], &(ARRAY_C)[LY_ARRAY_COUNT(ARRAY_C) - 1]); \
153 LY_CHECK_GOTO(RET, GOTO); \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200154 } \
155 }
156
157#define COMPILE_EXTS_GOTO(CTX, EXTS_P, EXT_C, PARENT, PARENT_TYPE, RET, GOTO) \
158 if (EXTS_P) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100159 LY_ARRAY_COUNT_TYPE __u = (EXT_C) ? LY_ARRAY_COUNT(EXT_C) : 0; \
160 LY_ARRAY_CREATE_GOTO((CTX)->ctx, EXT_C, __u + LY_ARRAY_COUNT(EXTS_P), RET, GOTO); \
161 LY_ARRAY_FOR(EXTS_P, __u) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200162 LY_ARRAY_INCREMENT(EXT_C); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100163 RET = lys_compile_ext(CTX, &(EXTS_P)[__u], &(EXT_C)[LY_ARRAY_COUNT(EXT_C) - 1], PARENT, PARENT_TYPE, NULL); \
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100164 if (RET == LY_ENOT) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100165 LY_ARRAY_DECREMENT(EXT_C); \
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100166 RET = LY_SUCCESS; \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100167 } else if (RET) { \
168 goto GOTO; \
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100169 } \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200170 } \
171 }
172
173/**
174 * @brief Fill in the prepared compiled extension instance structure according to the parsed extension instance.
175 *
176 * @param[in] ctx Compilation context.
177 * @param[in] ext_p Parsed extension instance.
178 * @param[in,out] ext Prepared compiled extension instance.
179 * @param[in] parent Extension instance parent.
180 * @param[in] parent_type Extension instance parent type.
181 * @param[in] ext_mod Optional module with the extension instance extension definition, set only for internal annotations.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100182 * @return LY_SUCCESS on success.
183 * @return LY_ENOT if the extension is disabled and should be ignored.
184 * @return LY_ERR on error.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200185 */
186LY_ERR lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext, void *parent,
187 LYEXT_PARENT parent_type, const struct lys_module *ext_mod);
188
189/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200190 * @brief Compile information from the identity statement
191 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200192 * The backlinks to the identities derived from this one are supposed to be filled later via ::lys_compile_identity_bases().
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200193 *
194 * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p parsed_mod.
195 * @param[in] ctx libyang context.
196 * @param[in] parsed_mod Module with the identities.
197 * @param[in] identities_p Array of the parsed identity definitions to precompile.
198 * @param[in,out] identities Pointer to the storage of the (pre)compiled identities array where the new identities are
199 * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed identities are going
200 * to be processed.
201 * @return LY_ERR value.
202 */
203LY_ERR lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lysp_module *parsed_mod,
204 struct lysp_ident *identities_p, struct lysc_ident **identities);
205
206/**
207 * @brief Find and process the referenced base identities from another identity or identityref
208 *
209 * For bases in identity set backlinks to them from the base identities. For identityref, store
210 * the array of pointers to the base identities. So one of the ident or bases parameter must be set
211 * to distinguish these two use cases.
212 *
213 * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes.
214 * @param[in] base_pmod Module where to resolve @p bases_p prefixes.
215 * @param[in] bases_p Array of names (including prefix if necessary) of base identities.
216 * @param[in] ident Referencing identity to work with, NULL for identityref.
217 * @param[in] bases Array of bases of identityref to fill in.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100218 * @param[in] enabled Whether the base is disabled, must be set if @p ident is set.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200219 * @return LY_ERR value.
220 */
221LY_ERR lys_compile_identity_bases(struct lysc_ctx *ctx, const struct lysp_module *base_pmod, const char **bases_p,
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100222 struct lysc_ident *ident, struct lysc_ident ***bases, ly_bool *enabled);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200223
224/**
225 * @brief Check statement's status for invalid combination.
226 *
227 * The modX parameters are used just to determine if both flags are in the same module,
228 * so any of the schema module structure can be used, but both modules must be provided
229 * in the same type.
230 *
231 * @param[in] ctx Compile context for logging.
232 * @param[in] flags1 Flags of the referencing node.
233 * @param[in] mod1 Module of the referencing node,
234 * @param[in] name1 Schema node name of the referencing node.
235 * @param[in] flags2 Flags of the referenced node.
236 * @param[in] mod2 Module of the referenced node,
237 * @param[in] name2 Schema node name of the referenced node.
238 * @return LY_ERR value
239 */
240LY_ERR lysc_check_status(struct lysc_ctx *ctx, uint16_t flags1, void *mod1, const char *name1, uint16_t flags2,
241 void *mod2, const char *name2);
242
243/**
Michal Vasko25d6ad02020-10-22 12:20:22 +0200244 * @brief Check parsed expression for any prefixes of unimplemented modules.
245 *
246 * @param[in] ctx libyang context.
247 * @param[in] expr Parsed expression.
248 * @param[in] format Prefix format.
249 * @param[in] prefix_data Format-specific data (see ::ly_resolve_prefix()).
250 * @param[in] implement Whether all the non-implemented modules should are implemented or the first
251 * non-implemented module, if any, returned in @p mod_p.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100252 * @param[in,out] unres Global unres structure of newly implemented modules.
Michal Vasko25d6ad02020-10-22 12:20:22 +0200253 * @param[out] mod_p Module that is not implemented.
254 * @return LY_SUCCESS on success.
255 * @return LY_ERR on error.
256 */
257LY_ERR lys_compile_expr_implement(const struct ly_ctx *ctx, const struct lyxp_expr *expr, LY_PREFIX_FORMAT format,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100258 void *prefix_data, ly_bool implement, struct lys_glob_unres *unres, const struct lys_module **mod_p);
259
260/**
261 * @brief Finish compilation of all the global unres sets.
262 *
263 * @param[in] ctx libyang context.
264 * @param[in] unres Global unres structure with the sets to resolve.
265 * @return LY_ERR value.
266 */
267LY_ERR lys_compile_unres_glob(struct ly_ctx *ctx, struct lys_glob_unres *unres);
268
269/**
270 * @brief Revert a failed compilation (free new modules, unimplement newly implemented modules).
271 *
272 * @param[in] ctx libyang context.
273 * @param[in] unres Global unres set with newly implemented modules.
274 */
275void lys_compile_unres_glob_revert(struct ly_ctx *ctx, struct lys_glob_unres *unres);
276
277/**
278 * @brief Erase all the global unres sets.
279 *
280 * @param[in] ctx libyang context.
281 * @param[in] unres Global unres structure with the sets.
282 */
283void lys_compile_unres_glob_erase(const struct ly_ctx *ctx, struct lys_glob_unres *unres);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200284
285/**
Michal Vasko916aefb2020-11-02 15:43:16 +0100286 * @brief Recompile the whole context based on the current flags.
287 *
288 * @param[in] ctx Context to recompile.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100289 * @param[in] log Whether to log all the errors.
Michal Vasko916aefb2020-11-02 15:43:16 +0100290 * @return LY_SUCCESS on success.
291 * @return LY_ERR on error.
292 */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100293LY_ERR lys_recompile(struct ly_ctx *ctx, ly_bool log);
Michal Vasko916aefb2020-11-02 15:43:16 +0100294
295/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200296 * @brief Compile printable schema into a validated schema linking all the references.
297 *
298 * @param[in] mod Pointer to the schema structure holding pointers to both schema structure types. The ::lys_module#parsed
299 * member is used as input and ::lys_module#compiled is used to hold the result of the compilation.
300 * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags).
Michal Vasko405cc9e2020-12-01 12:01:27 +0100301 * @param[in,out] unres Global unres structure for newly implemented modules.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200302 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
303 */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100304LY_ERR lys_compile(struct lys_module *mod, uint32_t options, struct lys_glob_unres *unres);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200305
306#endif /* LY_SCHEMA_COMPILE_H_ */