Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1 | /** |
| 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 | |
| 18 | #include "log.h" |
| 19 | #include "schema_compile_node.h" |
| 20 | #include "set.h" |
| 21 | #include "tree_schema.h" |
| 22 | |
| 23 | /** |
| 24 | * @defgroup scflags Schema compile flags |
| 25 | * |
| 26 | * Flags are currently used only internally - the compilation process does not have a public interface and it is |
| 27 | * integrated in the schema parsers. The current options set does not make sense for public used, but it can be a way |
| 28 | * to modify behavior of the compilation process in future. |
| 29 | * |
| 30 | * @{ |
| 31 | */ |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 32 | #define LYS_COMPILE_RPC_INPUT LYS_CONFIG_W /**< Internal option when compiling schema tree of RPC/action input */ |
| 33 | #define LYS_COMPILE_RPC_OUTPUT LYS_CONFIG_R /**< Internal option when compiling schema tree of RPC/action output */ |
| 34 | #define LYS_COMPILE_RPC_MASK LYS_CONFIG_MASK /**< mask for the internal RPC options */ |
| 35 | #define LYS_COMPILE_NOTIFICATION 0x04 /**< Internal option when compiling schema tree of Notification */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 36 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 37 | #define LYS_COMPILE_GROUPING 0x08 /**< Compiling (validation) of a non-instantiated grouping. |
| 38 | In this case not all the restrictions are checked since they can |
| 39 | be valid only in the real placement of the grouping. |
| 40 | TODO - what specifically is not done */ |
| 41 | #define LYS_COMPILE_DISABLED 0x10 /**< Compiling a disabled subtree (by its if-features). Meaning |
| 42 | it will be removed at the end of compilation and should not be |
| 43 | added to any unres sets. */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 44 | /** @} scflags */ |
| 45 | |
| 46 | /** |
| 47 | * @brief internal context for compilation |
| 48 | */ |
| 49 | struct lysc_ctx { |
| 50 | struct ly_ctx *ctx; |
| 51 | struct lys_module *cur_mod; /**< module currently being compiled, used as the current module for unprefixed nodes */ |
| 52 | struct lysp_module *pmod; /**< parsed module being processed, used for searching imports to resolve prefixed nodes */ |
| 53 | struct ly_set groupings; /**< stack for groupings circular check */ |
| 54 | struct ly_set xpath; /**< when/must to check */ |
| 55 | struct ly_set leafrefs; /**< to validate leafref's targets */ |
| 56 | struct ly_set dflts; /**< set of incomplete default values */ |
| 57 | struct ly_set tpdf_chain; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 58 | struct ly_set disabled; /**< set of compiled nodes whose if-feature(s) was not satisifed */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 59 | struct ly_set augs; /**< set of compiled non-applied top-level augments */ |
| 60 | struct ly_set devs; /**< set of compiled non-applied deviations */ |
| 61 | struct ly_set uses_augs; /**< set of compiled non-applied uses augments */ |
| 62 | struct ly_set uses_rfns; /**< set of compiled non-applied uses refines */ |
| 63 | uint32_t path_len; |
| 64 | uint32_t options; /**< various @ref scflags. */ |
| 65 | #define LYSC_CTX_BUFSIZE 4078 |
| 66 | char path[LYSC_CTX_BUFSIZE]; |
| 67 | }; |
| 68 | |
| 69 | /** |
| 70 | * @brief Structure for remembering default values of leaves and leaf-lists. They are resolved at schema compilation |
| 71 | * end when the whole schema tree is available. |
| 72 | */ |
| 73 | struct lysc_unres_dflt { |
| 74 | union { |
| 75 | struct lysc_node_leaf *leaf; |
| 76 | struct lysc_node_leaflist *llist; |
| 77 | }; |
| 78 | struct lysp_qname *dflt; |
| 79 | struct lysp_qname *dflts; /**< this is a sized array */ |
| 80 | }; |
| 81 | |
| 82 | /** |
| 83 | * @brief Duplicate string into dictionary |
| 84 | * @param[in] CTX libyang context of the dictionary. |
| 85 | * @param[in] ORIG String to duplicate. |
| 86 | * @param[out] DUP Where to store the result. |
| 87 | */ |
| 88 | #define DUP_STRING(CTX, ORIG, DUP, RET) if (ORIG) {RET = lydict_insert(CTX, ORIG, 0, &DUP);} |
| 89 | |
| 90 | #define DUP_STRING_GOTO(CTX, ORIG, DUP, RET, GOTO) if (ORIG) {LY_CHECK_GOTO(RET = lydict_insert(CTX, ORIG, 0, &DUP), GOTO);} |
| 91 | |
| 92 | #define DUP_ARRAY(CTX, ORIG_ARRAY, NEW_ARRAY, DUP_FUNC) \ |
| 93 | if (ORIG_ARRAY) { \ |
| 94 | LY_ARRAY_COUNT_TYPE u; \ |
| 95 | LY_ARRAY_CREATE_RET(CTX, NEW_ARRAY, LY_ARRAY_COUNT(ORIG_ARRAY), LY_EMEM); \ |
| 96 | LY_ARRAY_FOR(ORIG_ARRAY, u) { \ |
| 97 | LY_ARRAY_INCREMENT(NEW_ARRAY); \ |
| 98 | LY_CHECK_RET(DUP_FUNC(CTX, &(NEW_ARRAY)[u], &(ORIG_ARRAY)[u])); \ |
| 99 | } \ |
| 100 | } |
| 101 | |
| 102 | #define COMPILE_OP_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, PARENT, ITER, FUNC, USES_STATUS, RET, GOTO) \ |
| 103 | if (ARRAY_P) { \ |
| 104 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \ |
| 105 | LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \ |
| 106 | for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \ |
| 107 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
| 108 | RET = FUNC(CTX, &(ARRAY_P)[ITER], PARENT, &(ARRAY_C)[ITER + __array_offset], USES_STATUS); \ |
| 109 | if (RET == LY_EDENIED) { \ |
| 110 | LY_ARRAY_DECREMENT(ARRAY_C); \ |
| 111 | } else if (RET != LY_SUCCESS) { \ |
| 112 | goto GOTO; \ |
| 113 | } \ |
| 114 | } \ |
| 115 | } |
| 116 | |
| 117 | #define COMPILE_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, ITER, FUNC, RET, GOTO) \ |
| 118 | if (ARRAY_P) { \ |
| 119 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \ |
| 120 | LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \ |
| 121 | for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \ |
| 122 | LY_ARRAY_INCREMENT(ARRAY_C); \ |
| 123 | RET = FUNC(CTX, &(ARRAY_P)[ITER], &(ARRAY_C)[ITER + __array_offset]); \ |
| 124 | LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \ |
| 125 | } \ |
| 126 | } |
| 127 | |
| 128 | #define COMPILE_EXTS_GOTO(CTX, EXTS_P, EXT_C, PARENT, PARENT_TYPE, RET, GOTO) \ |
| 129 | if (EXTS_P) { \ |
| 130 | LY_ARRAY_CREATE_GOTO((CTX)->ctx, EXT_C, LY_ARRAY_COUNT(EXTS_P), RET, GOTO); \ |
| 131 | for (LY_ARRAY_COUNT_TYPE __exts_iter = 0, __array_offset = LY_ARRAY_COUNT(EXT_C); __exts_iter < LY_ARRAY_COUNT(EXTS_P); ++__exts_iter) { \ |
| 132 | LY_ARRAY_INCREMENT(EXT_C); \ |
| 133 | RET = lys_compile_ext(CTX, &(EXTS_P)[__exts_iter], &(EXT_C)[__exts_iter + __array_offset], PARENT, PARENT_TYPE, NULL); \ |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 134 | if (RET == LY_ENOT) { \ |
| 135 | LY_ARRAY_DECREMENT_FREE(EXT_C); \ |
| 136 | --__array_offset; \ |
| 137 | RET = LY_SUCCESS; \ |
| 138 | } \ |
| 139 | LY_CHECK_GOTO(RET, GOTO); \ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 140 | } \ |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * @brief Fill in the prepared compiled extension instance structure according to the parsed extension instance. |
| 145 | * |
| 146 | * @param[in] ctx Compilation context. |
| 147 | * @param[in] ext_p Parsed extension instance. |
| 148 | * @param[in,out] ext Prepared compiled extension instance. |
| 149 | * @param[in] parent Extension instance parent. |
| 150 | * @param[in] parent_type Extension instance parent type. |
| 151 | * @param[in] ext_mod Optional module with the extension instance extension definition, set only for internal annotations. |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 152 | * @return LY_SUCCESS on success. |
| 153 | * @return LY_ENOT if the extension is disabled and should be ignored. |
| 154 | * @return LY_ERR on error. |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 155 | */ |
| 156 | LY_ERR lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext, void *parent, |
| 157 | LYEXT_PARENT parent_type, const struct lys_module *ext_mod); |
| 158 | |
| 159 | /** |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 160 | * @brief Compile information from the identity statement |
| 161 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 162 | * The backlinks to the identities derived from this one are supposed to be filled later via ::lys_compile_identity_bases(). |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 163 | * |
| 164 | * @param[in] ctx_sc Compile context - alternative to the combination of @p ctx and @p parsed_mod. |
| 165 | * @param[in] ctx libyang context. |
| 166 | * @param[in] parsed_mod Module with the identities. |
| 167 | * @param[in] identities_p Array of the parsed identity definitions to precompile. |
| 168 | * @param[in,out] identities Pointer to the storage of the (pre)compiled identities array where the new identities are |
| 169 | * supposed to be added. The storage is supposed to be initiated to NULL when the first parsed identities are going |
| 170 | * to be processed. |
| 171 | * @return LY_ERR value. |
| 172 | */ |
| 173 | LY_ERR lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lysp_module *parsed_mod, |
| 174 | struct lysp_ident *identities_p, struct lysc_ident **identities); |
| 175 | |
| 176 | /** |
| 177 | * @brief Find and process the referenced base identities from another identity or identityref |
| 178 | * |
| 179 | * For bases in identity set backlinks to them from the base identities. For identityref, store |
| 180 | * the array of pointers to the base identities. So one of the ident or bases parameter must be set |
| 181 | * to distinguish these two use cases. |
| 182 | * |
| 183 | * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes. |
| 184 | * @param[in] base_pmod Module where to resolve @p bases_p prefixes. |
| 185 | * @param[in] bases_p Array of names (including prefix if necessary) of base identities. |
| 186 | * @param[in] ident Referencing identity to work with, NULL for identityref. |
| 187 | * @param[in] bases Array of bases of identityref to fill in. |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 188 | * @param[in] enabled Whether the base is disabled, must be set if @p ident is set. |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 189 | * @return LY_ERR value. |
| 190 | */ |
| 191 | LY_ERR lys_compile_identity_bases(struct lysc_ctx *ctx, const struct lysp_module *base_pmod, const char **bases_p, |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 192 | struct lysc_ident *ident, struct lysc_ident ***bases, ly_bool *enabled); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 193 | |
| 194 | /** |
| 195 | * @brief Check statement's status for invalid combination. |
| 196 | * |
| 197 | * The modX parameters are used just to determine if both flags are in the same module, |
| 198 | * so any of the schema module structure can be used, but both modules must be provided |
| 199 | * in the same type. |
| 200 | * |
| 201 | * @param[in] ctx Compile context for logging. |
| 202 | * @param[in] flags1 Flags of the referencing node. |
| 203 | * @param[in] mod1 Module of the referencing node, |
| 204 | * @param[in] name1 Schema node name of the referencing node. |
| 205 | * @param[in] flags2 Flags of the referenced node. |
| 206 | * @param[in] mod2 Module of the referenced node, |
| 207 | * @param[in] name2 Schema node name of the referenced node. |
| 208 | * @return LY_ERR value |
| 209 | */ |
| 210 | LY_ERR lysc_check_status(struct lysc_ctx *ctx, uint16_t flags1, void *mod1, const char *name1, uint16_t flags2, |
| 211 | void *mod2, const char *name2); |
| 212 | |
| 213 | /** |
Michal Vasko | 25d6ad0 | 2020-10-22 12:20:22 +0200 | [diff] [blame] | 214 | * @brief Check parsed expression for any prefixes of unimplemented modules. |
| 215 | * |
| 216 | * @param[in] ctx libyang context. |
| 217 | * @param[in] expr Parsed expression. |
| 218 | * @param[in] format Prefix format. |
| 219 | * @param[in] prefix_data Format-specific data (see ::ly_resolve_prefix()). |
| 220 | * @param[in] implement Whether all the non-implemented modules should are implemented or the first |
| 221 | * non-implemented module, if any, returned in @p mod_p. |
| 222 | * @param[out] mod_p Module that is not implemented. |
| 223 | * @return LY_SUCCESS on success. |
| 224 | * @return LY_ERR on error. |
| 225 | */ |
| 226 | LY_ERR lys_compile_expr_implement(const struct ly_ctx *ctx, const struct lyxp_expr *expr, LY_PREFIX_FORMAT format, |
| 227 | void *prefix_data, ly_bool implement, const struct lys_module **mod_p); |
| 228 | |
| 229 | /** |
Michal Vasko | 916aefb | 2020-11-02 15:43:16 +0100 | [diff] [blame^] | 230 | * @brief Recompile the whole context based on the current flags. |
| 231 | * |
| 232 | * @param[in] ctx Context to recompile. |
| 233 | * @param[in] skip Module to skip. If set, recompilation logs normally and stops on error. |
| 234 | * If not set, recompilation hides any errors and prints just generic messages even though it should always succeed. |
| 235 | * @return LY_SUCCESS on success. |
| 236 | * @return LY_ERR on error. |
| 237 | */ |
| 238 | LY_ERR lys_recompile(struct ly_ctx *ctx, const struct lys_module *skip); |
| 239 | |
| 240 | /** |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 241 | * @brief Compile printable schema into a validated schema linking all the references. |
| 242 | * |
| 243 | * @param[in] mod Pointer to the schema structure holding pointers to both schema structure types. The ::lys_module#parsed |
| 244 | * member is used as input and ::lys_module#compiled is used to hold the result of the compilation. |
| 245 | * @param[in] options Various options to modify compiler behavior, see [compile flags](@ref scflags). |
| 246 | * @return LY_ERR value - LY_SUCCESS or LY_EVALID. |
| 247 | */ |
| 248 | LY_ERR lys_compile(struct lys_module *mod, uint32_t options); |
| 249 | |
| 250 | #endif /* LY_SCHEMA_COMPILE_H_ */ |