blob: f4eb2b2522746daf2f94701e0abee3f795375bdf [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 Vasko7b1ad1a2020-11-02 15:41:27 +010040#define LYS_COMPILE_RPC_INPUT LYS_CONFIG_W /**< Internal option when compiling schema tree of RPC/action input */
41#define LYS_COMPILE_RPC_OUTPUT LYS_CONFIG_R /**< Internal option when compiling schema tree of RPC/action output */
42#define LYS_COMPILE_RPC_MASK LYS_CONFIG_MASK /**< mask for the internal RPC options */
43#define LYS_COMPILE_NOTIFICATION 0x04 /**< Internal option when compiling schema tree of Notification */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020044
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010045#define LYS_COMPILE_GROUPING 0x08 /**< Compiling (validation) of a non-instantiated grouping.
46 In this case not all the restrictions are checked since they can
47 be valid only in the real placement of the grouping.
48 TODO - what specifically is not done */
49#define LYS_COMPILE_DISABLED 0x10 /**< Compiling a disabled subtree (by its if-features). Meaning
50 it will be removed at the end of compilation and should not be
51 added to any unres sets. */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020052/** @} scflags */
53
54/**
55 * @brief internal context for compilation
56 */
57struct lysc_ctx {
58 struct ly_ctx *ctx;
59 struct lys_module *cur_mod; /**< module currently being compiled, used as the current module for unprefixed nodes */
60 struct lysp_module *pmod; /**< parsed module being processed, used for searching imports to resolve prefixed nodes */
61 struct ly_set groupings; /**< stack for groupings circular check */
62 struct ly_set xpath; /**< when/must to check */
63 struct ly_set leafrefs; /**< to validate leafref's targets */
64 struct ly_set dflts; /**< set of incomplete default values */
65 struct ly_set tpdf_chain;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010066 struct ly_set disabled; /**< set of compiled nodes whose if-feature(s) was not satisifed */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020067 struct ly_set augs; /**< set of compiled non-applied top-level augments */
68 struct ly_set devs; /**< set of compiled non-applied deviations */
69 struct ly_set uses_augs; /**< set of compiled non-applied uses augments */
70 struct ly_set uses_rfns; /**< set of compiled non-applied uses refines */
71 uint32_t path_len;
72 uint32_t options; /**< various @ref scflags. */
73#define LYSC_CTX_BUFSIZE 4078
74 char path[LYSC_CTX_BUFSIZE];
75};
76
77/**
78 * @brief Structure for remembering default values of leaves and leaf-lists. They are resolved at schema compilation
79 * end when the whole schema tree is available.
80 */
81struct lysc_unres_dflt {
82 union {
83 struct lysc_node_leaf *leaf;
84 struct lysc_node_leaflist *llist;
85 };
86 struct lysp_qname *dflt;
87 struct lysp_qname *dflts; /**< this is a sized array */
88};
89
90/**
91 * @brief Duplicate string into dictionary
92 * @param[in] CTX libyang context of the dictionary.
93 * @param[in] ORIG String to duplicate.
94 * @param[out] DUP Where to store the result.
95 */
96#define DUP_STRING(CTX, ORIG, DUP, RET) if (ORIG) {RET = lydict_insert(CTX, ORIG, 0, &DUP);}
97
98#define DUP_STRING_GOTO(CTX, ORIG, DUP, RET, GOTO) if (ORIG) {LY_CHECK_GOTO(RET = lydict_insert(CTX, ORIG, 0, &DUP), GOTO);}
99
100#define DUP_ARRAY(CTX, ORIG_ARRAY, NEW_ARRAY, DUP_FUNC) \
101 if (ORIG_ARRAY) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100102 LY_ARRAY_COUNT_TYPE __u; \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200103 LY_ARRAY_CREATE_RET(CTX, NEW_ARRAY, LY_ARRAY_COUNT(ORIG_ARRAY), LY_EMEM); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100104 LY_ARRAY_FOR(ORIG_ARRAY, __u) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200105 LY_ARRAY_INCREMENT(NEW_ARRAY); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100106 LY_CHECK_RET(DUP_FUNC(CTX, &(NEW_ARRAY)[__u], &(ORIG_ARRAY)[__u])); \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200107 } \
108 }
109
Michal Vasko5347e3a2020-11-03 17:14:57 +0100110#define COMPILE_OP_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, PARENT, FUNC, USES_STATUS, RET, GOTO) \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200111 if (ARRAY_P) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100112 LY_ARRAY_COUNT_TYPE __u = (ARRAY_C) ? LY_ARRAY_COUNT(ARRAY_C) : 0; \
113 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, __u + LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
114 LY_ARRAY_FOR(ARRAY_P, __u) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200115 LY_ARRAY_INCREMENT(ARRAY_C); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100116 RET = FUNC(CTX, &(ARRAY_P)[__u], PARENT, &(ARRAY_C)[LY_ARRAY_COUNT(ARRAY_C) - 1], USES_STATUS); \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200117 if (RET == LY_EDENIED) { \
118 LY_ARRAY_DECREMENT(ARRAY_C); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100119 RET = LY_SUCCESS; \
120 } else if (RET) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200121 goto GOTO; \
122 } \
123 } \
124 }
125
Michal Vasko5347e3a2020-11-03 17:14:57 +0100126#define COMPILE_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, FUNC, RET, GOTO) \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200127 if (ARRAY_P) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100128 LY_ARRAY_COUNT_TYPE __u = (ARRAY_C) ? LY_ARRAY_COUNT(ARRAY_C) : 0; \
129 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, __u + LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
130 LY_ARRAY_FOR(ARRAY_P, __u) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200131 LY_ARRAY_INCREMENT(ARRAY_C); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100132 RET = FUNC(CTX, &(ARRAY_P)[__u], &(ARRAY_C)[LY_ARRAY_COUNT(ARRAY_C) - 1]); \
133 LY_CHECK_GOTO(RET, GOTO); \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200134 } \
135 }
136
137#define COMPILE_EXTS_GOTO(CTX, EXTS_P, EXT_C, PARENT, PARENT_TYPE, RET, GOTO) \
138 if (EXTS_P) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100139 LY_ARRAY_COUNT_TYPE __u = (EXT_C) ? LY_ARRAY_COUNT(EXT_C) : 0; \
140 LY_ARRAY_CREATE_GOTO((CTX)->ctx, EXT_C, __u + LY_ARRAY_COUNT(EXTS_P), RET, GOTO); \
141 LY_ARRAY_FOR(EXTS_P, __u) { \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200142 LY_ARRAY_INCREMENT(EXT_C); \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100143 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 +0100144 if (RET == LY_ENOT) { \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100145 LY_ARRAY_DECREMENT(EXT_C); \
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100146 RET = LY_SUCCESS; \
Michal Vasko5347e3a2020-11-03 17:14:57 +0100147 } else if (RET) { \
148 goto GOTO; \
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100149 } \
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200150 } \
151 }
152
153/**
154 * @brief Fill in the prepared compiled extension instance structure according to the parsed extension instance.
155 *
156 * @param[in] ctx Compilation context.
157 * @param[in] ext_p Parsed extension instance.
158 * @param[in,out] ext Prepared compiled extension instance.
159 * @param[in] parent Extension instance parent.
160 * @param[in] parent_type Extension instance parent type.
161 * @param[in] ext_mod Optional module with the extension instance extension definition, set only for internal annotations.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100162 * @return LY_SUCCESS on success.
163 * @return LY_ENOT if the extension is disabled and should be ignored.
164 * @return LY_ERR on error.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200165 */
166LY_ERR lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext, void *parent,
167 LYEXT_PARENT parent_type, const struct lys_module *ext_mod);
168
169/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200170 * @brief Compile information from the identity statement
171 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200172 * 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 +0200173 *
174 * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p parsed_mod.
175 * @param[in] ctx libyang context.
176 * @param[in] parsed_mod Module with the identities.
177 * @param[in] identities_p Array of the parsed identity definitions to precompile.
178 * @param[in,out] identities Pointer to the storage of the (pre)compiled identities array where the new identities are
179 * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed identities are going
180 * to be processed.
181 * @return LY_ERR value.
182 */
183LY_ERR lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lysp_module *parsed_mod,
184 struct lysp_ident *identities_p, struct lysc_ident **identities);
185
186/**
187 * @brief Find and process the referenced base identities from another identity or identityref
188 *
189 * For bases in identity set backlinks to them from the base identities. For identityref, store
190 * the array of pointers to the base identities. So one of the ident or bases parameter must be set
191 * to distinguish these two use cases.
192 *
193 * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes.
194 * @param[in] base_pmod Module where to resolve @p bases_p prefixes.
195 * @param[in] bases_p Array of names (including prefix if necessary) of base identities.
196 * @param[in] ident Referencing identity to work with, NULL for identityref.
197 * @param[in] bases Array of bases of identityref to fill in.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100198 * @param[in] enabled Whether the base is disabled, must be set if @p ident is set.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200199 * @return LY_ERR value.
200 */
201LY_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 +0100202 struct lysc_ident *ident, struct lysc_ident ***bases, ly_bool *enabled);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200203
204/**
205 * @brief Check statement's status for invalid combination.
206 *
207 * The modX parameters are used just to determine if both flags are in the same module,
208 * so any of the schema module structure can be used, but both modules must be provided
209 * in the same type.
210 *
211 * @param[in] ctx Compile context for logging.
212 * @param[in] flags1 Flags of the referencing node.
213 * @param[in] mod1 Module of the referencing node,
214 * @param[in] name1 Schema node name of the referencing node.
215 * @param[in] flags2 Flags of the referenced node.
216 * @param[in] mod2 Module of the referenced node,
217 * @param[in] name2 Schema node name of the referenced node.
218 * @return LY_ERR value
219 */
220LY_ERR lysc_check_status(struct lysc_ctx *ctx, uint16_t flags1, void *mod1, const char *name1, uint16_t flags2,
221 void *mod2, const char *name2);
222
223/**
Michal Vasko25d6ad02020-10-22 12:20:22 +0200224 * @brief Check parsed expression for any prefixes of unimplemented modules.
225 *
226 * @param[in] ctx libyang context.
227 * @param[in] expr Parsed expression.
228 * @param[in] format Prefix format.
229 * @param[in] prefix_data Format-specific data (see ::ly_resolve_prefix()).
230 * @param[in] implement Whether all the non-implemented modules should are implemented or the first
231 * non-implemented module, if any, returned in @p mod_p.
232 * @param[out] mod_p Module that is not implemented.
233 * @return LY_SUCCESS on success.
234 * @return LY_ERR on error.
235 */
236LY_ERR lys_compile_expr_implement(const struct ly_ctx *ctx, const struct lyxp_expr *expr, LY_PREFIX_FORMAT format,
237 void *prefix_data, ly_bool implement, const struct lys_module **mod_p);
238
239/**
Michal Vasko916aefb2020-11-02 15:43:16 +0100240 * @brief Recompile the whole context based on the current flags.
241 *
242 * @param[in] ctx Context to recompile.
243 * @param[in] skip Module to skip. If set, recompilation logs normally and stops on error.
244 * If not set, recompilation hides any errors and prints just generic messages even though it should always succeed.
245 * @return LY_SUCCESS on success.
246 * @return LY_ERR on error.
247 */
248LY_ERR lys_recompile(struct ly_ctx *ctx, const struct lys_module *skip);
249
250/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200251 * @brief Compile printable schema into a validated schema linking all the references.
252 *
253 * @param[in] mod Pointer to the schema structure holding pointers to both schema structure types. The ::lys_module#parsed
254 * member is used as input and ::lys_module#compiled is used to hold the result of the compilation.
255 * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags).
256 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
257 */
258LY_ERR lys_compile(struct lys_module *mod, uint32_t options);
259
260#endif /* LY_SCHEMA_COMPILE_H_ */