Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file schema_compile_amend.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Schema compilation of augments, deviations, and refines. |
| 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 | #define _GNU_SOURCE |
| 16 | |
| 17 | #include "schema_compile_amend.h" |
| 18 | |
| 19 | #include <assert.h> |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 20 | #include <stddef.h> |
| 21 | #include <stdint.h> |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 22 | #include <stdlib.h> |
| 23 | #include <string.h> |
| 24 | |
| 25 | #include "common.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 26 | #include "dict.h" |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 27 | #include "log.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 28 | #include "plugins_exts_compile.h" |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 29 | #include "schema_compile.h" |
| 30 | #include "schema_compile_node.h" |
Michal Vasko | 29dd11e | 2020-11-23 16:52:22 +0100 | [diff] [blame] | 31 | #include "schema_features.h" |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 32 | #include "set.h" |
| 33 | #include "tree.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame] | 34 | #include "tree_edit.h" |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 35 | #include "tree_schema.h" |
| 36 | #include "tree_schema_internal.h" |
| 37 | #include "xpath.h" |
| 38 | |
| 39 | static const struct lys_module *lys_schema_node_get_module(const struct ly_ctx *ctx, const char *nametest, |
| 40 | size_t nametest_len, const struct lysp_module *mod, const char **name, size_t *name_len); |
| 41 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 42 | /** |
| 43 | * @brief Check the syntax of a node-id and collect all the referenced modules. |
| 44 | * |
| 45 | * @param[in] ctx Compile context. |
| 46 | * @param[in] nodeid Node-id to check. |
| 47 | * @param[in] abs Whether @p nodeid is absolute. |
| 48 | * @param[in,out] mod_set Set to add referenced modules into. |
| 49 | * @param[out] expr Optional node-id parsed into an expression. |
| 50 | * @param[out] target_mod Optional target module of the node-id. |
| 51 | * @return LY_ERR value. |
| 52 | */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 53 | static LY_ERR |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 54 | lys_nodeid_mod_check(struct lysc_ctx *ctx, const char *nodeid, ly_bool abs, struct ly_set *mod_set, |
| 55 | struct lyxp_expr **expr, struct lys_module **target_mod) |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 56 | { |
| 57 | LY_ERR ret = LY_SUCCESS; |
| 58 | struct lyxp_expr *e = NULL; |
| 59 | struct lys_module *tmod = NULL, *mod; |
| 60 | const char *nodeid_type = abs ? "absolute-schema-nodeid" : "descendant-schema-nodeid"; |
| 61 | uint32_t i; |
| 62 | |
| 63 | /* parse */ |
| 64 | ret = lyxp_expr_parse(ctx->ctx, nodeid, strlen(nodeid), 0, &e); |
| 65 | if (ret) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 66 | LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG, "Invalid %s value \"%s\" - invalid syntax.", |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 67 | nodeid_type, nodeid); |
| 68 | ret = LY_EVALID; |
| 69 | goto cleanup; |
| 70 | } |
| 71 | |
| 72 | if (abs) { |
| 73 | /* absolute schema nodeid */ |
| 74 | i = 0; |
| 75 | } else { |
| 76 | /* descendant schema nodeid */ |
| 77 | if (e->tokens[0] != LYXP_TOKEN_NAMETEST) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 78 | LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid %s value \"%s\" - name test expected instead of \"%.*s\".", |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 79 | nodeid_type, nodeid, e->tok_len[0], e->expr + e->tok_pos[0]); |
| 80 | ret = LY_EVALID; |
| 81 | goto cleanup; |
| 82 | } |
| 83 | i = 1; |
| 84 | } |
| 85 | |
| 86 | /* check all the tokens */ |
| 87 | for ( ; i < e->used; i += 2) { |
| 88 | if (e->tokens[i] != LYXP_TOKEN_OPER_PATH) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 89 | LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid %s value \"%s\" - \"/\" expected instead of \"%.*s\".", |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 90 | nodeid_type, nodeid, e->tok_len[i], e->expr + e->tok_pos[i]); |
| 91 | ret = LY_EVALID; |
| 92 | goto cleanup; |
| 93 | } else if (e->used == i + 1) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 94 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 95 | "Invalid %s value \"%s\" - unexpected end of expression.", nodeid_type, e->expr); |
| 96 | ret = LY_EVALID; |
| 97 | goto cleanup; |
| 98 | } else if (e->tokens[i + 1] != LYXP_TOKEN_NAMETEST) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 99 | LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid %s value \"%s\" - name test expected instead of \"%.*s\".", |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 100 | nodeid_type, nodeid, e->tok_len[i + 1], e->expr + e->tok_pos[i + 1]); |
| 101 | ret = LY_EVALID; |
| 102 | goto cleanup; |
| 103 | } else if (abs) { |
| 104 | mod = (struct lys_module *)lys_schema_node_get_module(ctx->ctx, e->expr + e->tok_pos[i + 1], |
| 105 | e->tok_len[i + 1], ctx->pmod, NULL, NULL); |
| 106 | LY_CHECK_ERR_GOTO(!mod, ret = LY_EVALID, cleanup); |
| 107 | |
| 108 | /* only keep the first module */ |
| 109 | if (!tmod) { |
| 110 | tmod = mod; |
| 111 | } |
| 112 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 113 | /* store the referenced module */ |
| 114 | LY_CHECK_GOTO(ret = ly_set_add(mod_set, mod, 0, NULL), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 115 | } |
| 116 | } |
| 117 | |
| 118 | cleanup: |
| 119 | if (ret || !expr) { |
| 120 | lyxp_expr_free(ctx->ctx, e); |
| 121 | e = NULL; |
| 122 | } |
| 123 | if (expr) { |
| 124 | *expr = ret ? NULL : e; |
| 125 | } |
| 126 | if (target_mod) { |
| 127 | *target_mod = ret ? NULL : tmod; |
| 128 | } |
| 129 | return ret; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * @brief Check whether 2 schema nodeids match. |
| 134 | * |
| 135 | * @param[in] ctx libyang context. |
| 136 | * @param[in] exp1 First schema nodeid. |
| 137 | * @param[in] exp1p_mod Module of @p exp1 nodes without any prefix. |
| 138 | * @param[in] exp2 Second schema nodeid. |
| 139 | * @param[in] exp2_pmod Module of @p exp2 nodes without any prefix. |
| 140 | * @return Whether the schema nodeids match or not. |
| 141 | */ |
| 142 | static ly_bool |
| 143 | lys_abs_schema_nodeid_match(const struct ly_ctx *ctx, const struct lyxp_expr *exp1, const struct lysp_module *exp1_pmod, |
| 144 | const struct lyxp_expr *exp2, const struct lysp_module *exp2_pmod) |
| 145 | { |
| 146 | uint32_t i; |
| 147 | const struct lys_module *mod1, *mod2; |
Radek Krejci | 2b18bf1 | 2020-11-06 11:20:20 +0100 | [diff] [blame] | 148 | const char *name1 = NULL, *name2 = NULL; |
| 149 | size_t name1_len = 0, name2_len = 0; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 150 | |
| 151 | if (exp1->used != exp2->used) { |
| 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | for (i = 0; i < exp1->used; ++i) { |
| 156 | assert(exp1->tokens[i] == exp2->tokens[i]); |
| 157 | |
| 158 | if (exp1->tokens[i] == LYXP_TOKEN_NAMETEST) { |
| 159 | /* check modules of all the nodes in the node ID */ |
| 160 | mod1 = lys_schema_node_get_module(ctx, exp1->expr + exp1->tok_pos[i], exp1->tok_len[i], exp1_pmod, |
| 161 | &name1, &name1_len); |
| 162 | assert(mod1); |
| 163 | mod2 = lys_schema_node_get_module(ctx, exp2->expr + exp2->tok_pos[i], exp2->tok_len[i], exp2_pmod, |
| 164 | &name2, &name2_len); |
| 165 | assert(mod2); |
| 166 | |
| 167 | /* compare modules */ |
| 168 | if (mod1 != mod2) { |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | /* compare names */ |
| 173 | if ((name1_len != name2_len) || strncmp(name1, name2, name1_len)) { |
| 174 | return 0; |
| 175 | } |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | return 1; |
| 180 | } |
| 181 | |
| 182 | LY_ERR |
| 183 | lys_precompile_uses_augments_refines(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, const struct lysc_node *ctx_node) |
| 184 | { |
| 185 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 186 | struct lyxp_expr *exp = NULL; |
| 187 | struct lysc_augment *aug; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 188 | struct lysp_node_augment *aug_p; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 189 | struct lysc_refine *rfn; |
| 190 | struct lysp_refine **new_rfn; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 191 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 192 | uint32_t i; |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 193 | struct ly_set mod_set = {0}; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 194 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 195 | LY_LIST_FOR(uses_p->augments, aug_p) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 196 | lysc_update_path(ctx, NULL, "{augment}"); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 197 | lysc_update_path(ctx, NULL, aug_p->nodeid); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 198 | |
| 199 | /* parse the nodeid */ |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 200 | LY_CHECK_GOTO(ret = lys_nodeid_mod_check(ctx, aug_p->nodeid, 0, &mod_set, &exp, NULL), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 201 | |
| 202 | /* allocate new compiled augment and store it in the set */ |
| 203 | aug = calloc(1, sizeof *aug); |
| 204 | LY_CHECK_ERR_GOTO(!aug, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
| 205 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->uses_augs, aug, 1, NULL), cleanup); |
| 206 | |
| 207 | aug->nodeid = exp; |
| 208 | exp = NULL; |
Michal Vasko | 28fe5f6 | 2021-03-03 16:37:39 +0100 | [diff] [blame] | 209 | aug->aug_pmod = ctx->pmod; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 210 | aug->nodeid_ctx_node = ctx_node; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 211 | aug->aug_p = aug_p; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 212 | |
| 213 | lysc_update_path(ctx, NULL, NULL); |
| 214 | lysc_update_path(ctx, NULL, NULL); |
| 215 | } |
| 216 | |
| 217 | LY_ARRAY_FOR(uses_p->refines, u) { |
| 218 | lysc_update_path(ctx, NULL, "{refine}"); |
| 219 | lysc_update_path(ctx, NULL, uses_p->refines[u].nodeid); |
| 220 | |
| 221 | /* parse the nodeid */ |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 222 | LY_CHECK_GOTO(ret = lys_nodeid_mod_check(ctx, uses_p->refines[u].nodeid, 0, &mod_set, &exp, NULL), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 223 | |
| 224 | /* try to find the node in already compiled refines */ |
| 225 | rfn = NULL; |
| 226 | for (i = 0; i < ctx->uses_rfns.count; ++i) { |
| 227 | if (lys_abs_schema_nodeid_match(ctx->ctx, exp, ctx->pmod, ((struct lysc_refine *)ctx->uses_rfns.objs[i])->nodeid, |
| 228 | ctx->pmod)) { |
| 229 | rfn = ctx->uses_rfns.objs[i]; |
| 230 | break; |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | if (!rfn) { |
| 235 | /* allocate new compiled refine */ |
| 236 | rfn = calloc(1, sizeof *rfn); |
| 237 | LY_CHECK_ERR_GOTO(!rfn, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
| 238 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->uses_rfns, rfn, 1, NULL), cleanup); |
| 239 | |
| 240 | rfn->nodeid = exp; |
| 241 | exp = NULL; |
Michal Vasko | 7d3708f | 2021-02-03 10:50:24 +0100 | [diff] [blame] | 242 | rfn->nodeid_pmod = ctx->cur_mod->parsed; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 243 | rfn->nodeid_ctx_node = ctx_node; |
Michal Vasko | d865572 | 2021-01-12 15:20:36 +0100 | [diff] [blame] | 244 | rfn->uses_p = uses_p; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 245 | } else { |
| 246 | /* just free exp */ |
| 247 | lyxp_expr_free(ctx->ctx, exp); |
| 248 | exp = NULL; |
| 249 | } |
| 250 | |
| 251 | /* add new parsed refine structure */ |
| 252 | LY_ARRAY_NEW_GOTO(ctx->ctx, rfn->rfns, new_rfn, ret, cleanup); |
| 253 | *new_rfn = &uses_p->refines[u]; |
| 254 | |
| 255 | lysc_update_path(ctx, NULL, NULL); |
| 256 | lysc_update_path(ctx, NULL, NULL); |
| 257 | } |
| 258 | |
| 259 | cleanup: |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 260 | if (ret) { |
| 261 | lysc_update_path(ctx, NULL, NULL); |
| 262 | lysc_update_path(ctx, NULL, NULL); |
| 263 | } |
| 264 | /* should include only this module, will fail later if not */ |
| 265 | ly_set_erase(&mod_set, NULL); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 266 | lyxp_expr_free(ctx->ctx, exp); |
| 267 | return ret; |
| 268 | } |
| 269 | |
| 270 | static LY_ERR |
| 271 | lysp_ext_dup(const struct ly_ctx *ctx, struct lysp_ext_instance *ext, const struct lysp_ext_instance *orig_ext) |
| 272 | { |
| 273 | LY_ERR ret = LY_SUCCESS; |
| 274 | |
| 275 | *ext = *orig_ext; |
| 276 | DUP_STRING(ctx, orig_ext->name, ext->name, ret); |
| 277 | DUP_STRING(ctx, orig_ext->argument, ext->argument, ret); |
| 278 | |
| 279 | return ret; |
| 280 | } |
| 281 | |
| 282 | static LY_ERR |
| 283 | lysp_restr_dup(const struct ly_ctx *ctx, struct lysp_restr *restr, const struct lysp_restr *orig_restr) |
| 284 | { |
| 285 | LY_ERR ret = LY_SUCCESS; |
| 286 | |
| 287 | if (orig_restr) { |
| 288 | DUP_STRING(ctx, orig_restr->arg.str, restr->arg.str, ret); |
| 289 | restr->arg.mod = orig_restr->arg.mod; |
| 290 | DUP_STRING(ctx, orig_restr->emsg, restr->emsg, ret); |
| 291 | DUP_STRING(ctx, orig_restr->eapptag, restr->eapptag, ret); |
| 292 | DUP_STRING(ctx, orig_restr->dsc, restr->dsc, ret); |
| 293 | DUP_STRING(ctx, orig_restr->ref, restr->ref, ret); |
| 294 | DUP_ARRAY(ctx, orig_restr->exts, restr->exts, lysp_ext_dup); |
| 295 | } |
| 296 | |
| 297 | return ret; |
| 298 | } |
| 299 | |
| 300 | static LY_ERR |
| 301 | lysp_string_dup(const struct ly_ctx *ctx, const char **str, const char **orig_str) |
| 302 | { |
| 303 | LY_ERR ret = LY_SUCCESS; |
| 304 | |
| 305 | DUP_STRING(ctx, *orig_str, *str, ret); |
| 306 | |
| 307 | return ret; |
| 308 | } |
| 309 | |
| 310 | LY_ERR |
| 311 | lysp_qname_dup(const struct ly_ctx *ctx, struct lysp_qname *qname, const struct lysp_qname *orig_qname) |
| 312 | { |
| 313 | LY_ERR ret = LY_SUCCESS; |
| 314 | |
| 315 | if (!orig_qname->str) { |
| 316 | return LY_SUCCESS; |
| 317 | } |
| 318 | |
| 319 | DUP_STRING(ctx, orig_qname->str, qname->str, ret); |
| 320 | assert(orig_qname->mod); |
| 321 | qname->mod = orig_qname->mod; |
| 322 | |
| 323 | return ret; |
| 324 | } |
| 325 | |
| 326 | static LY_ERR |
| 327 | lysp_type_enum_dup(const struct ly_ctx *ctx, struct lysp_type_enum *enm, const struct lysp_type_enum *orig_enm) |
| 328 | { |
| 329 | LY_ERR ret = LY_SUCCESS; |
| 330 | |
| 331 | DUP_STRING(ctx, orig_enm->name, enm->name, ret); |
| 332 | DUP_STRING(ctx, orig_enm->dsc, enm->dsc, ret); |
| 333 | DUP_STRING(ctx, orig_enm->ref, enm->ref, ret); |
| 334 | enm->value = orig_enm->value; |
| 335 | DUP_ARRAY(ctx, orig_enm->iffeatures, enm->iffeatures, lysp_qname_dup); |
| 336 | DUP_ARRAY(ctx, orig_enm->exts, enm->exts, lysp_ext_dup); |
| 337 | enm->flags = orig_enm->flags; |
| 338 | |
| 339 | return ret; |
| 340 | } |
| 341 | |
| 342 | static LY_ERR |
| 343 | lysp_type_dup(const struct ly_ctx *ctx, struct lysp_type *type, const struct lysp_type *orig_type) |
| 344 | { |
| 345 | LY_ERR ret = LY_SUCCESS; |
| 346 | |
| 347 | DUP_STRING_GOTO(ctx, orig_type->name, type->name, ret, done); |
| 348 | |
| 349 | if (orig_type->range) { |
| 350 | type->range = calloc(1, sizeof *type->range); |
| 351 | LY_CHECK_ERR_RET(!type->range, LOGMEM(ctx), LY_EMEM); |
| 352 | LY_CHECK_RET(lysp_restr_dup(ctx, type->range, orig_type->range)); |
| 353 | } |
| 354 | |
| 355 | if (orig_type->length) { |
| 356 | type->length = calloc(1, sizeof *type->length); |
| 357 | LY_CHECK_ERR_RET(!type->length, LOGMEM(ctx), LY_EMEM); |
| 358 | LY_CHECK_RET(lysp_restr_dup(ctx, type->length, orig_type->length)); |
| 359 | } |
| 360 | |
| 361 | DUP_ARRAY(ctx, orig_type->patterns, type->patterns, lysp_restr_dup); |
| 362 | DUP_ARRAY(ctx, orig_type->enums, type->enums, lysp_type_enum_dup); |
| 363 | DUP_ARRAY(ctx, orig_type->bits, type->bits, lysp_type_enum_dup); |
| 364 | LY_CHECK_GOTO(ret = lyxp_expr_dup(ctx, orig_type->path, &type->path), done); |
| 365 | DUP_ARRAY(ctx, orig_type->bases, type->bases, lysp_string_dup); |
| 366 | DUP_ARRAY(ctx, orig_type->types, type->types, lysp_type_dup); |
| 367 | DUP_ARRAY(ctx, orig_type->exts, type->exts, lysp_ext_dup); |
| 368 | |
| 369 | type->pmod = orig_type->pmod; |
| 370 | type->compiled = orig_type->compiled; |
| 371 | |
| 372 | type->fraction_digits = orig_type->fraction_digits; |
| 373 | type->require_instance = orig_type->require_instance; |
| 374 | type->flags = orig_type->flags; |
| 375 | |
| 376 | done: |
| 377 | return ret; |
| 378 | } |
| 379 | |
| 380 | static LY_ERR |
| 381 | lysp_when_dup(const struct ly_ctx *ctx, struct lysp_when *when, const struct lysp_when *orig_when) |
| 382 | { |
| 383 | LY_ERR ret = LY_SUCCESS; |
| 384 | |
| 385 | DUP_STRING(ctx, orig_when->cond, when->cond, ret); |
| 386 | DUP_STRING(ctx, orig_when->dsc, when->dsc, ret); |
| 387 | DUP_STRING(ctx, orig_when->ref, when->ref, ret); |
| 388 | DUP_ARRAY(ctx, orig_when->exts, when->exts, lysp_ext_dup); |
| 389 | |
| 390 | return ret; |
| 391 | } |
| 392 | |
| 393 | static LY_ERR |
| 394 | lysp_node_common_dup(const struct ly_ctx *ctx, struct lysp_node *node, const struct lysp_node *orig) |
| 395 | { |
| 396 | LY_ERR ret = LY_SUCCESS; |
| 397 | |
| 398 | node->parent = NULL; |
| 399 | node->nodetype = orig->nodetype; |
| 400 | node->flags = orig->flags; |
| 401 | node->next = NULL; |
| 402 | DUP_STRING(ctx, orig->name, node->name, ret); |
| 403 | DUP_STRING(ctx, orig->dsc, node->dsc, ret); |
| 404 | DUP_STRING(ctx, orig->ref, node->ref, ret); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 405 | DUP_ARRAY(ctx, orig->iffeatures, node->iffeatures, lysp_qname_dup); |
| 406 | DUP_ARRAY(ctx, orig->exts, node->exts, lysp_ext_dup); |
| 407 | |
| 408 | return ret; |
| 409 | } |
| 410 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 411 | #define DUP_PWHEN(CTX, ORIG, NEW) \ |
| 412 | if (ORIG) { \ |
| 413 | NEW = calloc(1, sizeof *NEW); \ |
| 414 | LY_CHECK_ERR_RET(!NEW, LOGMEM(CTX), LY_EMEM); \ |
| 415 | LY_CHECK_RET(lysp_when_dup(CTX, NEW, ORIG)); \ |
| 416 | } |
| 417 | |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 418 | static LY_ERR |
| 419 | lysp_node_dup(const struct ly_ctx *ctx, struct lysp_node *node, const struct lysp_node *orig) |
| 420 | { |
| 421 | LY_ERR ret = LY_SUCCESS; |
| 422 | struct lysp_node_container *cont; |
| 423 | const struct lysp_node_container *orig_cont; |
| 424 | struct lysp_node_leaf *leaf; |
| 425 | const struct lysp_node_leaf *orig_leaf; |
| 426 | struct lysp_node_leaflist *llist; |
| 427 | const struct lysp_node_leaflist *orig_llist; |
| 428 | struct lysp_node_list *list; |
| 429 | const struct lysp_node_list *orig_list; |
| 430 | struct lysp_node_choice *choice; |
| 431 | const struct lysp_node_choice *orig_choice; |
| 432 | struct lysp_node_case *cas; |
| 433 | const struct lysp_node_case *orig_cas; |
| 434 | struct lysp_node_anydata *any; |
| 435 | const struct lysp_node_anydata *orig_any; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 436 | struct lysp_node_action *action; |
| 437 | const struct lysp_node_action *orig_action; |
| 438 | struct lysp_node_action_inout *action_inout; |
| 439 | const struct lysp_node_action_inout *orig_action_inout; |
| 440 | struct lysp_node_notif *notif; |
| 441 | const struct lysp_node_notif *orig_notif; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 442 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 443 | assert(orig->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_ANYDATA | |
| 444 | LYS_RPC | LYS_ACTION | LYS_NOTIF)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 445 | |
| 446 | /* common part */ |
| 447 | LY_CHECK_RET(lysp_node_common_dup(ctx, node, orig)); |
| 448 | |
| 449 | /* specific part */ |
| 450 | switch (node->nodetype) { |
| 451 | case LYS_CONTAINER: |
| 452 | cont = (struct lysp_node_container *)node; |
| 453 | orig_cont = (const struct lysp_node_container *)orig; |
| 454 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 455 | DUP_PWHEN(ctx, orig_cont->when, cont->when); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 456 | DUP_ARRAY(ctx, orig_cont->musts, cont->musts, lysp_restr_dup); |
| 457 | DUP_STRING(ctx, orig_cont->presence, cont->presence, ret); |
| 458 | /* we do not need the rest */ |
| 459 | break; |
| 460 | case LYS_LEAF: |
| 461 | leaf = (struct lysp_node_leaf *)node; |
| 462 | orig_leaf = (const struct lysp_node_leaf *)orig; |
| 463 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 464 | DUP_PWHEN(ctx, orig_leaf->when, leaf->when); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 465 | DUP_ARRAY(ctx, orig_leaf->musts, leaf->musts, lysp_restr_dup); |
| 466 | LY_CHECK_RET(lysp_type_dup(ctx, &leaf->type, &orig_leaf->type)); |
| 467 | DUP_STRING(ctx, orig_leaf->units, leaf->units, ret); |
| 468 | LY_CHECK_RET(lysp_qname_dup(ctx, &leaf->dflt, &orig_leaf->dflt)); |
| 469 | break; |
| 470 | case LYS_LEAFLIST: |
| 471 | llist = (struct lysp_node_leaflist *)node; |
| 472 | orig_llist = (const struct lysp_node_leaflist *)orig; |
| 473 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 474 | DUP_PWHEN(ctx, orig_llist->when, llist->when); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 475 | DUP_ARRAY(ctx, orig_llist->musts, llist->musts, lysp_restr_dup); |
| 476 | LY_CHECK_RET(lysp_type_dup(ctx, &llist->type, &orig_llist->type)); |
| 477 | DUP_STRING(ctx, orig_llist->units, llist->units, ret); |
| 478 | DUP_ARRAY(ctx, orig_llist->dflts, llist->dflts, lysp_qname_dup); |
| 479 | llist->min = orig_llist->min; |
| 480 | llist->max = orig_llist->max; |
| 481 | break; |
| 482 | case LYS_LIST: |
| 483 | list = (struct lysp_node_list *)node; |
| 484 | orig_list = (const struct lysp_node_list *)orig; |
| 485 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 486 | DUP_PWHEN(ctx, orig_list->when, list->when); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 487 | DUP_ARRAY(ctx, orig_list->musts, list->musts, lysp_restr_dup); |
| 488 | DUP_STRING(ctx, orig_list->key, list->key, ret); |
| 489 | /* we do not need these arrays */ |
| 490 | DUP_ARRAY(ctx, orig_list->uniques, list->uniques, lysp_qname_dup); |
| 491 | list->min = orig_list->min; |
| 492 | list->max = orig_list->max; |
| 493 | break; |
| 494 | case LYS_CHOICE: |
| 495 | choice = (struct lysp_node_choice *)node; |
| 496 | orig_choice = (const struct lysp_node_choice *)orig; |
| 497 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 498 | DUP_PWHEN(ctx, orig_choice->when, choice->when); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 499 | /* we do not need children */ |
| 500 | LY_CHECK_RET(lysp_qname_dup(ctx, &choice->dflt, &orig_choice->dflt)); |
| 501 | break; |
| 502 | case LYS_CASE: |
| 503 | cas = (struct lysp_node_case *)node; |
| 504 | orig_cas = (const struct lysp_node_case *)orig; |
| 505 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 506 | DUP_PWHEN(ctx, orig_cas->when, cas->when); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 507 | /* we do not need children */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 508 | break; |
| 509 | case LYS_ANYDATA: |
| 510 | case LYS_ANYXML: |
| 511 | any = (struct lysp_node_anydata *)node; |
| 512 | orig_any = (const struct lysp_node_anydata *)orig; |
| 513 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 514 | DUP_PWHEN(ctx, orig_any->when, any->when); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 515 | DUP_ARRAY(ctx, orig_any->musts, any->musts, lysp_restr_dup); |
| 516 | break; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 517 | case LYS_RPC: |
| 518 | case LYS_ACTION: |
| 519 | action = (struct lysp_node_action *)node; |
| 520 | orig_action = (const struct lysp_node_action *)orig; |
| 521 | |
| 522 | action->input.nodetype = orig_action->input.nodetype; |
| 523 | action->output.nodetype = orig_action->output.nodetype; |
| 524 | /* we do not need the rest */ |
| 525 | break; |
| 526 | case LYS_INPUT: |
| 527 | case LYS_OUTPUT: |
| 528 | action_inout = (struct lysp_node_action_inout *)node; |
| 529 | orig_action_inout = (const struct lysp_node_action_inout *)orig; |
| 530 | |
| 531 | DUP_ARRAY(ctx, orig_action_inout->musts, action_inout->musts, lysp_restr_dup); |
| 532 | /* we do not need the rest */ |
| 533 | break; |
| 534 | case LYS_NOTIF: |
| 535 | notif = (struct lysp_node_notif *)node; |
| 536 | orig_notif = (const struct lysp_node_notif *)orig; |
| 537 | |
| 538 | DUP_ARRAY(ctx, orig_notif->musts, notif->musts, lysp_restr_dup); |
| 539 | /* we do not need the rest */ |
| 540 | break; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 541 | default: |
| 542 | LOGINT_RET(ctx); |
| 543 | } |
| 544 | |
| 545 | return ret; |
| 546 | } |
| 547 | |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 548 | /** |
| 549 | * @brief Duplicate a single parsed node. Only attributes that are used in compilation are copied. |
| 550 | * |
| 551 | * @param[in] ctx libyang context. |
| 552 | * @param[in] pnode Node to duplicate. |
| 553 | * @param[in] with_links Whether to also copy any links (child, parent pointers). |
| 554 | * @param[out] dup_p Duplicated parsed node. |
| 555 | * @return LY_ERR value. |
| 556 | */ |
| 557 | static LY_ERR |
| 558 | lysp_dup_single(const struct ly_ctx *ctx, const struct lysp_node *pnode, ly_bool with_links, struct lysp_node **dup_p) |
| 559 | { |
| 560 | LY_ERR ret = LY_SUCCESS; |
| 561 | void *mem = NULL; |
| 562 | |
| 563 | if (!pnode) { |
| 564 | *dup_p = NULL; |
| 565 | return LY_SUCCESS; |
| 566 | } |
| 567 | |
| 568 | switch (pnode->nodetype) { |
| 569 | case LYS_CONTAINER: |
| 570 | mem = calloc(1, sizeof(struct lysp_node_container)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 571 | break; |
| 572 | case LYS_LEAF: |
| 573 | mem = calloc(1, sizeof(struct lysp_node_leaf)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 574 | break; |
| 575 | case LYS_LEAFLIST: |
| 576 | mem = calloc(1, sizeof(struct lysp_node_leaflist)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 577 | break; |
| 578 | case LYS_LIST: |
| 579 | mem = calloc(1, sizeof(struct lysp_node_list)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 580 | break; |
| 581 | case LYS_CHOICE: |
| 582 | mem = calloc(1, sizeof(struct lysp_node_choice)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 583 | break; |
| 584 | case LYS_CASE: |
| 585 | mem = calloc(1, sizeof(struct lysp_node_case)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 586 | break; |
| 587 | case LYS_ANYDATA: |
| 588 | case LYS_ANYXML: |
| 589 | mem = calloc(1, sizeof(struct lysp_node_anydata)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 590 | break; |
| 591 | case LYS_INPUT: |
| 592 | case LYS_OUTPUT: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 593 | mem = calloc(1, sizeof(struct lysp_node_action_inout)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 594 | break; |
| 595 | case LYS_ACTION: |
| 596 | case LYS_RPC: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 597 | mem = calloc(1, sizeof(struct lysp_node_action)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 598 | break; |
| 599 | case LYS_NOTIF: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 600 | mem = calloc(1, sizeof(struct lysp_node_notif)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 601 | break; |
| 602 | default: |
| 603 | LOGINT_RET(ctx); |
| 604 | } |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 605 | LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 606 | LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 607 | |
| 608 | if (with_links) { |
| 609 | /* copy also parent and child pointers */ |
| 610 | ((struct lysp_node *)mem)->parent = pnode->parent; |
| 611 | switch (pnode->nodetype) { |
| 612 | case LYS_CONTAINER: |
| 613 | ((struct lysp_node_container *)mem)->child = ((struct lysp_node_container *)pnode)->child; |
| 614 | break; |
| 615 | case LYS_LIST: |
| 616 | ((struct lysp_node_list *)mem)->child = ((struct lysp_node_list *)pnode)->child; |
| 617 | break; |
| 618 | case LYS_CHOICE: |
| 619 | ((struct lysp_node_choice *)mem)->child = ((struct lysp_node_choice *)pnode)->child; |
| 620 | break; |
| 621 | case LYS_CASE: |
| 622 | ((struct lysp_node_case *)mem)->child = ((struct lysp_node_case *)pnode)->child; |
| 623 | break; |
| 624 | default: |
| 625 | break; |
| 626 | } |
| 627 | } |
| 628 | |
| 629 | cleanup: |
| 630 | if (ret) { |
| 631 | free(mem); |
| 632 | } else { |
| 633 | *dup_p = mem; |
| 634 | } |
| 635 | return ret; |
| 636 | } |
| 637 | |
| 638 | #define AMEND_WRONG_NODETYPE(AMEND_STR, OP_STR, PROPERTY) \ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 639 | LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid %s of %s node - it is not possible to %s \"%s\" property.", \ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 640 | AMEND_STR, lys_nodetype2str(target->nodetype), OP_STR, PROPERTY);\ |
| 641 | ret = LY_EVALID; \ |
| 642 | goto cleanup; |
| 643 | |
| 644 | #define AMEND_CHECK_CARDINALITY(ARRAY, MAX, AMEND_STR, PROPERTY) \ |
| 645 | if (LY_ARRAY_COUNT(ARRAY) > MAX) { \ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 646 | LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid %s of %s with too many (%"LY_PRI_ARRAY_COUNT_TYPE") %s properties.", \ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 647 | AMEND_STR, lys_nodetype2str(target->nodetype), LY_ARRAY_COUNT(ARRAY), PROPERTY); \ |
| 648 | ret = LY_EVALID; \ |
| 649 | goto cleanup; \ |
| 650 | } |
| 651 | |
| 652 | /** |
| 653 | * @brief Apply refine. |
| 654 | * |
| 655 | * @param[in] ctx Compile context. |
| 656 | * @param[in] rfn Refine to apply. |
| 657 | * @param[in,out] target Refine target. |
| 658 | * @return LY_ERR value. |
| 659 | */ |
| 660 | static LY_ERR |
| 661 | lys_apply_refine(struct lysc_ctx *ctx, struct lysp_refine *rfn, struct lysp_node *target) |
| 662 | { |
| 663 | LY_ERR ret = LY_SUCCESS; |
| 664 | LY_ARRAY_COUNT_TYPE u; |
| 665 | struct lysp_qname *qname; |
| 666 | struct lysp_restr **musts, *must; |
| 667 | uint32_t *num; |
| 668 | |
| 669 | /* default value */ |
| 670 | if (rfn->dflts) { |
| 671 | switch (target->nodetype) { |
| 672 | case LYS_LEAF: |
| 673 | AMEND_CHECK_CARDINALITY(rfn->dflts, 1, "refine", "default"); |
| 674 | |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 675 | lydict_remove(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 676 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, &((struct lysp_node_leaf *)target)->dflt, &rfn->dflts[0]), cleanup); |
| 677 | break; |
| 678 | case LYS_LEAFLIST: |
| 679 | if (rfn->dflts[0].mod->version < LYS_VERSION_1_1) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 680 | LOGVAL(ctx->ctx, LYVE_SEMANTICS, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 681 | "Invalid refine of default in leaf-list - the default statement is allowed only in YANG 1.1 modules."); |
| 682 | ret = LY_EVALID; |
| 683 | goto cleanup; |
| 684 | } |
| 685 | |
| 686 | FREE_ARRAY(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, lysp_qname_free); |
| 687 | ((struct lysp_node_leaflist *)target)->dflts = NULL; |
| 688 | LY_ARRAY_FOR(rfn->dflts, u) { |
| 689 | LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, qname, ret, cleanup); |
| 690 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, qname, &rfn->dflts[u]), cleanup); |
| 691 | } |
| 692 | break; |
| 693 | case LYS_CHOICE: |
| 694 | AMEND_CHECK_CARDINALITY(rfn->dflts, 1, "refine", "default"); |
| 695 | |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 696 | lydict_remove(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 697 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, &((struct lysp_node_choice *)target)->dflt, &rfn->dflts[0]), cleanup); |
| 698 | break; |
| 699 | default: |
| 700 | AMEND_WRONG_NODETYPE("refine", "replace", "default"); |
| 701 | } |
| 702 | } |
| 703 | |
| 704 | /* description */ |
| 705 | if (rfn->dsc) { |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 706 | lydict_remove(ctx->ctx, target->dsc); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 707 | DUP_STRING_GOTO(ctx->ctx, rfn->dsc, target->dsc, ret, cleanup); |
| 708 | } |
| 709 | |
| 710 | /* reference */ |
| 711 | if (rfn->ref) { |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 712 | lydict_remove(ctx->ctx, target->ref); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 713 | DUP_STRING_GOTO(ctx->ctx, rfn->ref, target->ref, ret, cleanup); |
| 714 | } |
| 715 | |
| 716 | /* config */ |
| 717 | if (rfn->flags & LYS_CONFIG_MASK) { |
Radek Krejci | 91531e1 | 2021-02-08 19:57:54 +0100 | [diff] [blame] | 718 | if (ctx->options & LYS_COMPILE_NO_CONFIG) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 719 | LOGWRN(ctx->ctx, "Refining config inside %s has no effect (%s).", |
Radek Krejci | 91531e1 | 2021-02-08 19:57:54 +0100 | [diff] [blame] | 720 | (ctx->options & (LYS_IS_INPUT | LYS_IS_OUTPUT)) ? "RPC/action" : |
| 721 | ctx->options & LYS_IS_NOTIF ? "notification" : "a subtree ignoring config", ctx->path); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 722 | } else { |
| 723 | target->flags &= ~LYS_CONFIG_MASK; |
| 724 | target->flags |= rfn->flags & LYS_CONFIG_MASK; |
| 725 | } |
| 726 | } |
| 727 | |
| 728 | /* mandatory */ |
| 729 | if (rfn->flags & LYS_MAND_MASK) { |
| 730 | switch (target->nodetype) { |
| 731 | case LYS_LEAF: |
| 732 | case LYS_CHOICE: |
| 733 | case LYS_ANYDATA: |
| 734 | case LYS_ANYXML: |
| 735 | break; |
| 736 | default: |
| 737 | AMEND_WRONG_NODETYPE("refine", "replace", "mandatory"); |
| 738 | } |
| 739 | |
| 740 | target->flags &= ~LYS_MAND_MASK; |
| 741 | target->flags |= rfn->flags & LYS_MAND_MASK; |
| 742 | } |
| 743 | |
| 744 | /* presence */ |
| 745 | if (rfn->presence) { |
| 746 | switch (target->nodetype) { |
| 747 | case LYS_CONTAINER: |
| 748 | break; |
| 749 | default: |
| 750 | AMEND_WRONG_NODETYPE("refine", "replace", "presence"); |
| 751 | } |
| 752 | |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 753 | lydict_remove(ctx->ctx, ((struct lysp_node_container *)target)->presence); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 754 | DUP_STRING_GOTO(ctx->ctx, rfn->presence, ((struct lysp_node_container *)target)->presence, ret, cleanup); |
| 755 | } |
| 756 | |
| 757 | /* must */ |
| 758 | if (rfn->musts) { |
| 759 | switch (target->nodetype) { |
| 760 | case LYS_CONTAINER: |
| 761 | case LYS_LIST: |
| 762 | case LYS_LEAF: |
| 763 | case LYS_LEAFLIST: |
| 764 | case LYS_ANYDATA: |
| 765 | case LYS_ANYXML: |
| 766 | musts = &((struct lysp_node_container *)target)->musts; |
| 767 | break; |
| 768 | default: |
| 769 | AMEND_WRONG_NODETYPE("refine", "add", "must"); |
| 770 | } |
| 771 | |
| 772 | LY_ARRAY_FOR(rfn->musts, u) { |
| 773 | LY_ARRAY_NEW_GOTO(ctx->ctx, *musts, must, ret, cleanup); |
| 774 | LY_CHECK_GOTO(ret = lysp_restr_dup(ctx->ctx, must, &rfn->musts[u]), cleanup); |
| 775 | } |
| 776 | } |
| 777 | |
| 778 | /* min-elements */ |
| 779 | if (rfn->flags & LYS_SET_MIN) { |
| 780 | switch (target->nodetype) { |
| 781 | case LYS_LEAFLIST: |
| 782 | num = &((struct lysp_node_leaflist *)target)->min; |
| 783 | break; |
| 784 | case LYS_LIST: |
| 785 | num = &((struct lysp_node_list *)target)->min; |
| 786 | break; |
| 787 | default: |
| 788 | AMEND_WRONG_NODETYPE("refine", "replace", "min-elements"); |
| 789 | } |
| 790 | |
| 791 | *num = rfn->min; |
| 792 | } |
| 793 | |
| 794 | /* max-elements */ |
| 795 | if (rfn->flags & LYS_SET_MAX) { |
| 796 | switch (target->nodetype) { |
| 797 | case LYS_LEAFLIST: |
| 798 | num = &((struct lysp_node_leaflist *)target)->max; |
| 799 | break; |
| 800 | case LYS_LIST: |
| 801 | num = &((struct lysp_node_list *)target)->max; |
| 802 | break; |
| 803 | default: |
| 804 | AMEND_WRONG_NODETYPE("refine", "replace", "max-elements"); |
| 805 | } |
| 806 | |
| 807 | *num = rfn->max; |
| 808 | } |
| 809 | |
| 810 | /* if-feature */ |
| 811 | if (rfn->iffeatures) { |
| 812 | switch (target->nodetype) { |
| 813 | case LYS_LEAF: |
| 814 | case LYS_LEAFLIST: |
| 815 | case LYS_LIST: |
| 816 | case LYS_CONTAINER: |
| 817 | case LYS_CHOICE: |
| 818 | case LYS_CASE: |
| 819 | case LYS_ANYDATA: |
| 820 | case LYS_ANYXML: |
| 821 | break; |
| 822 | default: |
| 823 | AMEND_WRONG_NODETYPE("refine", "add", "if-feature"); |
| 824 | } |
| 825 | |
| 826 | LY_ARRAY_FOR(rfn->iffeatures, u) { |
| 827 | LY_ARRAY_NEW_GOTO(ctx->ctx, target->iffeatures, qname, ret, cleanup); |
| 828 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, qname, &rfn->iffeatures[u]), cleanup); |
| 829 | } |
| 830 | } |
| 831 | |
| 832 | /* extension */ |
| 833 | /* TODO refine extensions */ |
| 834 | |
| 835 | cleanup: |
| 836 | return ret; |
| 837 | } |
| 838 | |
| 839 | /** |
| 840 | * @brief Apply deviate add. |
| 841 | * |
| 842 | * @param[in] ctx Compile context. |
| 843 | * @param[in] d Deviate add to apply. |
| 844 | * @param[in,out] target Deviation target. |
| 845 | * @return LY_ERR value. |
| 846 | */ |
| 847 | static LY_ERR |
| 848 | lys_apply_deviate_add(struct lysc_ctx *ctx, struct lysp_deviate_add *d, struct lysp_node *target) |
| 849 | { |
| 850 | LY_ERR ret = LY_SUCCESS; |
| 851 | LY_ARRAY_COUNT_TYPE u; |
| 852 | struct lysp_qname *qname; |
| 853 | uint32_t *num; |
| 854 | struct lysp_restr **musts, *must; |
| 855 | |
| 856 | #define DEV_CHECK_NONPRESENCE(TYPE, MEMBER, PROPERTY, VALUEMEMBER) \ |
| 857 | if (((TYPE)target)->MEMBER) { \ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 858 | LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", \ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 859 | PROPERTY, ((TYPE)target)->VALUEMEMBER); \ |
| 860 | ret = LY_EVALID; \ |
| 861 | goto cleanup; \ |
| 862 | } |
| 863 | |
| 864 | /* [units-stmt] */ |
| 865 | if (d->units) { |
| 866 | switch (target->nodetype) { |
| 867 | case LYS_LEAF: |
| 868 | case LYS_LEAFLIST: |
| 869 | break; |
| 870 | default: |
| 871 | AMEND_WRONG_NODETYPE("deviation", "add", "units"); |
| 872 | } |
| 873 | |
| 874 | DEV_CHECK_NONPRESENCE(struct lysp_node_leaf *, units, "units", units); |
| 875 | DUP_STRING_GOTO(ctx->ctx, d->units, ((struct lysp_node_leaf *)target)->units, ret, cleanup); |
| 876 | } |
| 877 | |
| 878 | /* *must-stmt */ |
| 879 | if (d->musts) { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 880 | musts = lysp_node_musts_p(target); |
| 881 | if (!musts) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 882 | AMEND_WRONG_NODETYPE("deviation", "add", "must"); |
| 883 | } |
| 884 | |
| 885 | LY_ARRAY_FOR(d->musts, u) { |
| 886 | LY_ARRAY_NEW_GOTO(ctx->ctx, *musts, must, ret, cleanup); |
| 887 | LY_CHECK_GOTO(ret = lysp_restr_dup(ctx->ctx, must, &d->musts[u]), cleanup); |
| 888 | } |
| 889 | } |
| 890 | |
| 891 | /* *unique-stmt */ |
| 892 | if (d->uniques) { |
| 893 | switch (target->nodetype) { |
| 894 | case LYS_LIST: |
| 895 | break; |
| 896 | default: |
| 897 | AMEND_WRONG_NODETYPE("deviation", "add", "unique"); |
| 898 | } |
| 899 | |
| 900 | LY_ARRAY_FOR(d->uniques, u) { |
| 901 | LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_list *)target)->uniques, qname, ret, cleanup); |
| 902 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, qname, &d->uniques[u]), cleanup); |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | /* *default-stmt */ |
| 907 | if (d->dflts) { |
| 908 | switch (target->nodetype) { |
| 909 | case LYS_LEAF: |
| 910 | AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default"); |
| 911 | DEV_CHECK_NONPRESENCE(struct lysp_node_leaf *, dflt.str, "default", dflt.str); |
| 912 | |
| 913 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, &((struct lysp_node_leaf *)target)->dflt, &d->dflts[0]), cleanup); |
| 914 | break; |
| 915 | case LYS_LEAFLIST: |
| 916 | LY_ARRAY_FOR(d->dflts, u) { |
| 917 | LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, qname, ret, cleanup); |
| 918 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, qname, &d->dflts[u]), cleanup); |
| 919 | } |
| 920 | break; |
| 921 | case LYS_CHOICE: |
| 922 | AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default"); |
| 923 | DEV_CHECK_NONPRESENCE(struct lysp_node_choice *, dflt.str, "default", dflt.str); |
| 924 | |
| 925 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, &((struct lysp_node_choice *)target)->dflt, &d->dflts[0]), cleanup); |
| 926 | break; |
| 927 | default: |
| 928 | AMEND_WRONG_NODETYPE("deviation", "add", "default"); |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | /* [config-stmt] */ |
| 933 | if (d->flags & LYS_CONFIG_MASK) { |
| 934 | switch (target->nodetype) { |
| 935 | case LYS_CONTAINER: |
| 936 | case LYS_LEAF: |
| 937 | case LYS_LEAFLIST: |
| 938 | case LYS_LIST: |
| 939 | case LYS_CHOICE: |
| 940 | case LYS_ANYDATA: |
| 941 | case LYS_ANYXML: |
| 942 | break; |
| 943 | default: |
| 944 | AMEND_WRONG_NODETYPE("deviation", "add", "config"); |
| 945 | } |
| 946 | |
| 947 | if (target->flags & LYS_CONFIG_MASK) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 948 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 949 | "Invalid deviation adding \"config\" property which already exists (with value \"config %s\").", |
| 950 | target->flags & LYS_CONFIG_W ? "true" : "false"); |
| 951 | ret = LY_EVALID; |
| 952 | goto cleanup; |
| 953 | } |
| 954 | |
| 955 | target->flags |= d->flags & LYS_CONFIG_MASK; |
| 956 | } |
| 957 | |
| 958 | /* [mandatory-stmt] */ |
| 959 | if (d->flags & LYS_MAND_MASK) { |
| 960 | switch (target->nodetype) { |
| 961 | case LYS_LEAF: |
| 962 | case LYS_CHOICE: |
| 963 | case LYS_ANYDATA: |
| 964 | case LYS_ANYXML: |
| 965 | break; |
| 966 | default: |
| 967 | AMEND_WRONG_NODETYPE("deviation", "add", "mandatory"); |
| 968 | } |
| 969 | |
| 970 | if (target->flags & LYS_MAND_MASK) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 971 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 972 | "Invalid deviation adding \"mandatory\" property which already exists (with value \"mandatory %s\").", |
| 973 | target->flags & LYS_MAND_TRUE ? "true" : "false"); |
| 974 | ret = LY_EVALID; |
| 975 | goto cleanup; |
| 976 | } |
| 977 | |
| 978 | target->flags |= d->flags & LYS_MAND_MASK; |
| 979 | } |
| 980 | |
| 981 | /* [min-elements-stmt] */ |
| 982 | if (d->flags & LYS_SET_MIN) { |
| 983 | switch (target->nodetype) { |
| 984 | case LYS_LEAFLIST: |
| 985 | num = &((struct lysp_node_leaflist *)target)->min; |
| 986 | break; |
| 987 | case LYS_LIST: |
| 988 | num = &((struct lysp_node_list *)target)->min; |
| 989 | break; |
| 990 | default: |
| 991 | AMEND_WRONG_NODETYPE("deviation", "add", "min-elements"); |
| 992 | } |
| 993 | |
| 994 | if (target->flags & LYS_SET_MIN) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 995 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 996 | "Invalid deviation adding \"min-elements\" property which already exists (with value \"%u\").", *num); |
| 997 | ret = LY_EVALID; |
| 998 | goto cleanup; |
| 999 | } |
| 1000 | |
| 1001 | *num = d->min; |
| 1002 | } |
| 1003 | |
| 1004 | /* [max-elements-stmt] */ |
| 1005 | if (d->flags & LYS_SET_MAX) { |
| 1006 | switch (target->nodetype) { |
| 1007 | case LYS_LEAFLIST: |
| 1008 | num = &((struct lysp_node_leaflist *)target)->max; |
| 1009 | break; |
| 1010 | case LYS_LIST: |
| 1011 | num = &((struct lysp_node_list *)target)->max; |
| 1012 | break; |
| 1013 | default: |
| 1014 | AMEND_WRONG_NODETYPE("deviation", "add", "max-elements"); |
| 1015 | } |
| 1016 | |
| 1017 | if (target->flags & LYS_SET_MAX) { |
| 1018 | if (*num) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1019 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1020 | "Invalid deviation adding \"max-elements\" property which already exists (with value \"%u\").", |
| 1021 | *num); |
| 1022 | } else { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1023 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1024 | "Invalid deviation adding \"max-elements\" property which already exists (with value \"unbounded\")."); |
| 1025 | } |
| 1026 | ret = LY_EVALID; |
| 1027 | goto cleanup; |
| 1028 | } |
| 1029 | |
| 1030 | *num = d->max; |
| 1031 | } |
| 1032 | |
| 1033 | cleanup: |
| 1034 | return ret; |
| 1035 | } |
| 1036 | |
| 1037 | /** |
| 1038 | * @brief Apply deviate delete. |
| 1039 | * |
| 1040 | * @param[in] ctx Compile context. |
| 1041 | * @param[in] d Deviate delete to apply. |
| 1042 | * @param[in,out] target Deviation target. |
| 1043 | * @return LY_ERR value. |
| 1044 | */ |
| 1045 | static LY_ERR |
| 1046 | lys_apply_deviate_delete(struct lysc_ctx *ctx, struct lysp_deviate_del *d, struct lysp_node *target) |
| 1047 | { |
| 1048 | LY_ERR ret = LY_SUCCESS; |
| 1049 | struct lysp_restr **musts; |
| 1050 | LY_ARRAY_COUNT_TYPE u, v; |
| 1051 | struct lysp_qname **uniques, **dflts; |
| 1052 | |
| 1053 | #define DEV_DEL_ARRAY(DEV_ARRAY, ORIG_ARRAY, DEV_MEMBER, ORIG_MEMBER, FREE_FUNC, PROPERTY) \ |
| 1054 | LY_ARRAY_FOR(d->DEV_ARRAY, u) { \ |
| 1055 | int found = 0; \ |
| 1056 | LY_ARRAY_FOR(ORIG_ARRAY, v) { \ |
| 1057 | if (!strcmp(d->DEV_ARRAY[u]DEV_MEMBER, (ORIG_ARRAY)[v]ORIG_MEMBER)) { \ |
| 1058 | found = 1; \ |
| 1059 | break; \ |
| 1060 | } \ |
| 1061 | } \ |
| 1062 | if (!found) { \ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1063 | LOGVAL(ctx->ctx, LYVE_REFERENCE, \ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1064 | "Invalid deviation deleting \"%s\" property \"%s\" which does not match any of the target's property values.", \ |
| 1065 | PROPERTY, d->DEV_ARRAY[u]DEV_MEMBER); \ |
| 1066 | ret = LY_EVALID; \ |
| 1067 | goto cleanup; \ |
| 1068 | } \ |
| 1069 | LY_ARRAY_DECREMENT(ORIG_ARRAY); \ |
| 1070 | FREE_FUNC(ctx->ctx, &(ORIG_ARRAY)[v]); \ |
| 1071 | memmove(&(ORIG_ARRAY)[v], &(ORIG_ARRAY)[v + 1], (LY_ARRAY_COUNT(ORIG_ARRAY) - v) * sizeof *(ORIG_ARRAY)); \ |
| 1072 | } \ |
| 1073 | if (!LY_ARRAY_COUNT(ORIG_ARRAY)) { \ |
| 1074 | LY_ARRAY_FREE(ORIG_ARRAY); \ |
| 1075 | ORIG_ARRAY = NULL; \ |
| 1076 | } |
| 1077 | |
| 1078 | #define DEV_CHECK_PRESENCE_VALUE(TYPE, MEMBER, DEVTYPE, PROPERTY, VALUE) \ |
| 1079 | if (!((TYPE)target)->MEMBER) { \ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1080 | LOGVAL(ctx->ctx, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1081 | ret = LY_EVALID; \ |
| 1082 | goto cleanup; \ |
| 1083 | } else if (strcmp(((TYPE)target)->MEMBER, VALUE)) { \ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1084 | LOGVAL(ctx->ctx, LYVE_REFERENCE, \ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1085 | "Invalid deviation deleting \"%s\" property \"%s\" which does not match the target's property value \"%s\".", \ |
| 1086 | PROPERTY, VALUE, ((TYPE)target)->MEMBER); \ |
| 1087 | ret = LY_EVALID; \ |
| 1088 | goto cleanup; \ |
| 1089 | } |
| 1090 | |
| 1091 | /* [units-stmt] */ |
| 1092 | if (d->units) { |
| 1093 | switch (target->nodetype) { |
| 1094 | case LYS_LEAF: |
| 1095 | case LYS_LEAFLIST: |
| 1096 | break; |
| 1097 | default: |
| 1098 | AMEND_WRONG_NODETYPE("deviation", "delete", "units"); |
| 1099 | } |
| 1100 | |
| 1101 | DEV_CHECK_PRESENCE_VALUE(struct lysp_node_leaf *, units, "deleting", "units", d->units); |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 1102 | lydict_remove(ctx->ctx, ((struct lysp_node_leaf *)target)->units); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1103 | ((struct lysp_node_leaf *)target)->units = NULL; |
| 1104 | } |
| 1105 | |
| 1106 | /* *must-stmt */ |
| 1107 | if (d->musts) { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1108 | musts = lysp_node_musts_p(target); |
| 1109 | if (!musts) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1110 | AMEND_WRONG_NODETYPE("deviation", "delete", "must"); |
| 1111 | } |
| 1112 | |
| 1113 | DEV_DEL_ARRAY(musts, *musts, .arg.str, .arg.str, lysp_restr_free, "must"); |
| 1114 | } |
| 1115 | |
| 1116 | /* *unique-stmt */ |
| 1117 | if (d->uniques) { |
| 1118 | switch (target->nodetype) { |
| 1119 | case LYS_LIST: |
| 1120 | break; |
| 1121 | default: |
| 1122 | AMEND_WRONG_NODETYPE("deviation", "delete", "unique"); |
| 1123 | } |
| 1124 | |
| 1125 | uniques = &((struct lysp_node_list *)target)->uniques; |
| 1126 | DEV_DEL_ARRAY(uniques, *uniques, .str, .str, lysp_qname_free, "unique"); |
| 1127 | } |
| 1128 | |
| 1129 | /* *default-stmt */ |
| 1130 | if (d->dflts) { |
| 1131 | switch (target->nodetype) { |
| 1132 | case LYS_LEAF: |
| 1133 | AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default"); |
| 1134 | DEV_CHECK_PRESENCE_VALUE(struct lysp_node_leaf *, dflt.str, "deleting", "default", d->dflts[0].str); |
| 1135 | |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 1136 | lydict_remove(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1137 | ((struct lysp_node_leaf *)target)->dflt.str = NULL; |
| 1138 | break; |
| 1139 | case LYS_LEAFLIST: |
| 1140 | dflts = &((struct lysp_node_leaflist *)target)->dflts; |
| 1141 | DEV_DEL_ARRAY(dflts, *dflts, .str, .str, lysp_qname_free, "default"); |
| 1142 | break; |
| 1143 | case LYS_CHOICE: |
| 1144 | AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default"); |
| 1145 | DEV_CHECK_PRESENCE_VALUE(struct lysp_node_choice *, dflt.str, "deleting", "default", d->dflts[0].str); |
| 1146 | |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 1147 | lydict_remove(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1148 | ((struct lysp_node_choice *)target)->dflt.str = NULL; |
| 1149 | break; |
| 1150 | default: |
| 1151 | AMEND_WRONG_NODETYPE("deviation", "delete", "default"); |
| 1152 | } |
| 1153 | } |
| 1154 | |
| 1155 | cleanup: |
| 1156 | return ret; |
| 1157 | } |
| 1158 | |
| 1159 | /** |
| 1160 | * @brief Apply deviate replace. |
| 1161 | * |
| 1162 | * @param[in] ctx Compile context. |
| 1163 | * @param[in] d Deviate replace to apply. |
| 1164 | * @param[in,out] target Deviation target. |
| 1165 | * @return LY_ERR value. |
| 1166 | */ |
| 1167 | static LY_ERR |
| 1168 | lys_apply_deviate_replace(struct lysc_ctx *ctx, struct lysp_deviate_rpl *d, struct lysp_node *target) |
| 1169 | { |
| 1170 | LY_ERR ret = LY_SUCCESS; |
| 1171 | uint32_t *num; |
| 1172 | |
| 1173 | #define DEV_CHECK_PRESENCE(TYPE, MEMBER, DEVTYPE, PROPERTY, VALUE) \ |
| 1174 | if (!((TYPE)target)->MEMBER) { \ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1175 | LOGVAL(ctx->ctx, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1176 | ret = LY_EVALID; \ |
| 1177 | goto cleanup; \ |
| 1178 | } |
| 1179 | |
| 1180 | /* [type-stmt] */ |
| 1181 | if (d->type) { |
| 1182 | switch (target->nodetype) { |
| 1183 | case LYS_LEAF: |
| 1184 | case LYS_LEAFLIST: |
| 1185 | break; |
| 1186 | default: |
| 1187 | AMEND_WRONG_NODETYPE("deviation", "replace", "type"); |
| 1188 | } |
| 1189 | |
| 1190 | lysp_type_free(ctx->ctx, &((struct lysp_node_leaf *)target)->type); |
| 1191 | lysp_type_dup(ctx->ctx, &((struct lysp_node_leaf *)target)->type, d->type); |
| 1192 | } |
| 1193 | |
| 1194 | /* [units-stmt] */ |
| 1195 | if (d->units) { |
| 1196 | switch (target->nodetype) { |
| 1197 | case LYS_LEAF: |
| 1198 | case LYS_LEAFLIST: |
| 1199 | break; |
| 1200 | default: |
| 1201 | AMEND_WRONG_NODETYPE("deviation", "replace", "units"); |
| 1202 | } |
| 1203 | |
| 1204 | DEV_CHECK_PRESENCE(struct lysp_node_leaf *, units, "replacing", "units", d->units); |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 1205 | lydict_remove(ctx->ctx, ((struct lysp_node_leaf *)target)->units); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1206 | DUP_STRING_GOTO(ctx->ctx, d->units, ((struct lysp_node_leaf *)target)->units, ret, cleanup); |
| 1207 | } |
| 1208 | |
| 1209 | /* [default-stmt] */ |
| 1210 | if (d->dflt.str) { |
| 1211 | switch (target->nodetype) { |
| 1212 | case LYS_LEAF: |
| 1213 | DEV_CHECK_PRESENCE(struct lysp_node_leaf *, dflt.str, "replacing", "default", d->dflt.str); |
| 1214 | |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 1215 | lydict_remove(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1216 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, &((struct lysp_node_leaf *)target)->dflt, &d->dflt), cleanup); |
| 1217 | break; |
| 1218 | case LYS_CHOICE: |
| 1219 | DEV_CHECK_PRESENCE(struct lysp_node_choice *, dflt.str, "replacing", "default", d->dflt); |
| 1220 | |
Michal Vasko | e180ed0 | 2021-02-05 16:31:20 +0100 | [diff] [blame] | 1221 | lydict_remove(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1222 | LY_CHECK_GOTO(ret = lysp_qname_dup(ctx->ctx, &((struct lysp_node_choice *)target)->dflt, &d->dflt), cleanup); |
| 1223 | break; |
| 1224 | default: |
| 1225 | AMEND_WRONG_NODETYPE("deviation", "replace", "default"); |
| 1226 | } |
| 1227 | } |
| 1228 | |
| 1229 | /* [config-stmt] */ |
| 1230 | if (d->flags & LYS_CONFIG_MASK) { |
| 1231 | switch (target->nodetype) { |
| 1232 | case LYS_CONTAINER: |
| 1233 | case LYS_LEAF: |
| 1234 | case LYS_LEAFLIST: |
| 1235 | case LYS_LIST: |
| 1236 | case LYS_CHOICE: |
| 1237 | case LYS_ANYDATA: |
| 1238 | case LYS_ANYXML: |
| 1239 | break; |
| 1240 | default: |
| 1241 | AMEND_WRONG_NODETYPE("deviation", "replace", "config"); |
| 1242 | } |
| 1243 | |
| 1244 | if (!(target->flags & LYS_CONFIG_MASK)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1245 | LOGVAL(ctx->ctx, LY_VCODE_DEV_NOT_PRESENT, "replacing", "config", |
| 1246 | d->flags & LYS_CONFIG_W ? "config true" : "config false"); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1247 | ret = LY_EVALID; |
| 1248 | goto cleanup; |
| 1249 | } |
| 1250 | |
| 1251 | target->flags &= ~LYS_CONFIG_MASK; |
| 1252 | target->flags |= d->flags & LYS_CONFIG_MASK; |
| 1253 | } |
| 1254 | |
| 1255 | /* [mandatory-stmt] */ |
| 1256 | if (d->flags & LYS_MAND_MASK) { |
| 1257 | switch (target->nodetype) { |
| 1258 | case LYS_LEAF: |
| 1259 | case LYS_CHOICE: |
| 1260 | case LYS_ANYDATA: |
| 1261 | case LYS_ANYXML: |
| 1262 | break; |
| 1263 | default: |
| 1264 | AMEND_WRONG_NODETYPE("deviation", "replace", "mandatory"); |
| 1265 | } |
| 1266 | |
| 1267 | if (!(target->flags & LYS_MAND_MASK)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1268 | LOGVAL(ctx->ctx, LY_VCODE_DEV_NOT_PRESENT, "replacing", "mandatory", |
| 1269 | d->flags & LYS_MAND_TRUE ? "mandatory true" : "mandatory false"); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1270 | ret = LY_EVALID; |
| 1271 | goto cleanup; |
| 1272 | } |
| 1273 | |
| 1274 | target->flags &= ~LYS_MAND_MASK; |
| 1275 | target->flags |= d->flags & LYS_MAND_MASK; |
| 1276 | } |
| 1277 | |
| 1278 | /* [min-elements-stmt] */ |
| 1279 | if (d->flags & LYS_SET_MIN) { |
| 1280 | switch (target->nodetype) { |
| 1281 | case LYS_LEAFLIST: |
| 1282 | num = &((struct lysp_node_leaflist *)target)->min; |
| 1283 | break; |
| 1284 | case LYS_LIST: |
| 1285 | num = &((struct lysp_node_list *)target)->min; |
| 1286 | break; |
| 1287 | default: |
| 1288 | AMEND_WRONG_NODETYPE("deviation", "replace", "min-elements"); |
| 1289 | } |
| 1290 | |
| 1291 | if (!(target->flags & LYS_SET_MIN)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1292 | LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid deviation replacing \"min-elements\" property which is not present."); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1293 | ret = LY_EVALID; |
| 1294 | goto cleanup; |
| 1295 | } |
| 1296 | |
| 1297 | *num = d->min; |
| 1298 | } |
| 1299 | |
| 1300 | /* [max-elements-stmt] */ |
| 1301 | if (d->flags & LYS_SET_MAX) { |
| 1302 | switch (target->nodetype) { |
| 1303 | case LYS_LEAFLIST: |
| 1304 | num = &((struct lysp_node_leaflist *)target)->max; |
| 1305 | break; |
| 1306 | case LYS_LIST: |
| 1307 | num = &((struct lysp_node_list *)target)->max; |
| 1308 | break; |
| 1309 | default: |
| 1310 | AMEND_WRONG_NODETYPE("deviation", "replace", "max-elements"); |
| 1311 | } |
| 1312 | |
| 1313 | if (!(target->flags & LYS_SET_MAX)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1314 | LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid deviation replacing \"max-elements\" property which is not present."); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1315 | ret = LY_EVALID; |
| 1316 | goto cleanup; |
| 1317 | } |
| 1318 | |
| 1319 | *num = d->max; |
| 1320 | } |
| 1321 | |
| 1322 | cleanup: |
| 1323 | return ret; |
| 1324 | } |
| 1325 | |
| 1326 | /** |
| 1327 | * @brief Get module of a single nodeid node name test. |
| 1328 | * |
| 1329 | * @param[in] ctx libyang context. |
| 1330 | * @param[in] nametest Nametest with an optional prefix. |
| 1331 | * @param[in] nametest_len Length of @p nametest. |
| 1332 | * @param[in] mod Both current and prefix module for resolving prefixes and to return in case of no prefix. |
| 1333 | * @param[out] name Optional pointer to the name test without the prefix. |
| 1334 | * @param[out] name_len Length of @p name. |
| 1335 | * @return Resolved module. |
| 1336 | */ |
| 1337 | static const struct lys_module * |
| 1338 | lys_schema_node_get_module(const struct ly_ctx *ctx, const char *nametest, size_t nametest_len, |
| 1339 | const struct lysp_module *mod, const char **name, size_t *name_len) |
| 1340 | { |
| 1341 | const struct lys_module *target_mod; |
| 1342 | const char *ptr; |
| 1343 | |
| 1344 | ptr = ly_strnchr(nametest, ':', nametest_len); |
| 1345 | if (ptr) { |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1346 | target_mod = ly_resolve_prefix(ctx, nametest, ptr - nametest, LY_VALUE_SCHEMA, (void *)mod); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1347 | if (!target_mod) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1348 | LOGVAL(ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1349 | "Invalid absolute-schema-nodeid nametest \"%.*s\" - prefix \"%.*s\" not defined in module \"%s\".", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1350 | (int)nametest_len, nametest, (int)(ptr - nametest), nametest, LYSP_MODULE_NAME(mod)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1351 | return NULL; |
| 1352 | } |
| 1353 | |
| 1354 | if (name) { |
| 1355 | *name = ptr + 1; |
| 1356 | *name_len = nametest_len - ((ptr - nametest) + 1); |
| 1357 | } |
| 1358 | } else { |
| 1359 | target_mod = mod->mod; |
| 1360 | if (name) { |
| 1361 | *name = nametest; |
| 1362 | *name_len = nametest_len; |
| 1363 | } |
| 1364 | } |
| 1365 | |
| 1366 | return target_mod; |
| 1367 | } |
| 1368 | |
| 1369 | /** |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1370 | * @brief Check whether a compiled node matches a single schema nodeid name test. |
| 1371 | * |
| 1372 | * @param[in,out] node Compiled node to consider. On a match it is moved to its parent. |
| 1373 | * @param[in] mod Expected module. |
| 1374 | * @param[in] name Expected name. |
| 1375 | * @param[in] name_len Length of @p name. |
| 1376 | * @return Whether it is a match or not. |
| 1377 | */ |
| 1378 | static ly_bool |
| 1379 | lysp_schema_nodeid_match_node(const struct lysc_node **node, const struct lys_module *mod, const char *name, |
| 1380 | size_t name_len) |
| 1381 | { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1382 | /* compare with the module of the node */ |
Radek Krejci | 7d95fbb | 2021-01-26 17:33:13 +0100 | [diff] [blame] | 1383 | if ((*node)->module != mod) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1384 | return 0; |
| 1385 | } |
| 1386 | |
| 1387 | /* compare names */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1388 | if (ly_strncmp((*node)->name, name, name_len)) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1389 | return 0; |
| 1390 | } |
| 1391 | |
Michal Vasko | 2a66871 | 2020-10-21 11:48:09 +0200 | [diff] [blame] | 1392 | /* move to next parent */ |
Radek Krejci | 7d95fbb | 2021-01-26 17:33:13 +0100 | [diff] [blame] | 1393 | *node = (*node)->parent; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1394 | |
| 1395 | return 1; |
| 1396 | } |
| 1397 | |
| 1398 | /** |
| 1399 | * @brief Check whether a node matches specific schema nodeid. |
| 1400 | * |
| 1401 | * @param[in] exp Parsed nodeid to match. |
| 1402 | * @param[in] exp_pmod Module to use for nodes in @p exp without a prefix. |
| 1403 | * @param[in] ctx_node Initial context node that should match, only for descendant paths. |
| 1404 | * @param[in] parent First compiled parent to consider. If @p pnode is NULL, it is condered the node to be matched. |
| 1405 | * @param[in] pnode Parsed node to be matched. May be NULL if the target node was already compiled. |
| 1406 | * @param[in] pnode_mod Compiled @p pnode to-be module. |
| 1407 | * @return Whether it is a match or not. |
| 1408 | */ |
| 1409 | static ly_bool |
| 1410 | lysp_schema_nodeid_match(const struct lyxp_expr *exp, const struct lysp_module *exp_pmod, const struct lysc_node *ctx_node, |
| 1411 | const struct lysc_node *parent, const struct lysp_node *pnode, const struct lys_module *pnode_mod) |
| 1412 | { |
| 1413 | uint32_t i; |
| 1414 | const struct lys_module *mod; |
Radek Krejci | 2b18bf1 | 2020-11-06 11:20:20 +0100 | [diff] [blame] | 1415 | const char *name = NULL; |
| 1416 | size_t name_len = 0; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1417 | |
| 1418 | /* compare last node in the node ID */ |
| 1419 | i = exp->used - 1; |
| 1420 | |
| 1421 | /* get exp node ID module */ |
| 1422 | mod = lys_schema_node_get_module(exp_pmod->mod->ctx, exp->expr + exp->tok_pos[i], exp->tok_len[i], exp_pmod, &name, &name_len); |
| 1423 | assert(mod); |
| 1424 | |
| 1425 | if (pnode) { |
| 1426 | /* compare on the last parsed-only node */ |
Radek Krejci | 2d5f6df | 2021-01-28 14:00:13 +0100 | [diff] [blame] | 1427 | if ((pnode_mod != mod) || ly_strncmp(pnode->name, name, name_len)) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1428 | return 0; |
| 1429 | } |
| 1430 | } else { |
| 1431 | /* using parent directly */ |
| 1432 | if (!lysp_schema_nodeid_match_node(&parent, mod, name, name_len)) { |
| 1433 | return 0; |
| 1434 | } |
| 1435 | } |
| 1436 | |
| 1437 | /* now compare all the compiled parents */ |
| 1438 | while (i > 1) { |
| 1439 | i -= 2; |
| 1440 | assert(exp->tokens[i] == LYXP_TOKEN_NAMETEST); |
| 1441 | |
| 1442 | if (!parent) { |
| 1443 | /* no more parents but path continues */ |
| 1444 | return 0; |
| 1445 | } |
| 1446 | |
| 1447 | /* get exp node ID module */ |
| 1448 | mod = lys_schema_node_get_module(exp_pmod->mod->ctx, exp->expr + exp->tok_pos[i], exp->tok_len[i], exp_pmod, &name, |
| 1449 | &name_len); |
| 1450 | assert(mod); |
| 1451 | |
| 1452 | /* compare with the parent */ |
| 1453 | if (!lysp_schema_nodeid_match_node(&parent, mod, name, name_len)) { |
| 1454 | return 0; |
| 1455 | } |
| 1456 | } |
| 1457 | |
| 1458 | if (ctx_node && (ctx_node != parent)) { |
| 1459 | /* descendant path has not finished in the context node */ |
| 1460 | return 0; |
| 1461 | } else if (!ctx_node && parent) { |
| 1462 | /* some parent was not matched */ |
| 1463 | return 0; |
| 1464 | } |
| 1465 | |
| 1466 | return 1; |
| 1467 | } |
| 1468 | |
| 1469 | void |
| 1470 | lysc_augment_free(const struct ly_ctx *ctx, struct lysc_augment *aug) |
| 1471 | { |
| 1472 | if (aug) { |
| 1473 | lyxp_expr_free(ctx, aug->nodeid); |
| 1474 | |
| 1475 | free(aug); |
| 1476 | } |
| 1477 | } |
| 1478 | |
| 1479 | void |
| 1480 | lysc_deviation_free(const struct ly_ctx *ctx, struct lysc_deviation *dev) |
| 1481 | { |
| 1482 | if (dev) { |
| 1483 | lyxp_expr_free(ctx, dev->nodeid); |
| 1484 | LY_ARRAY_FREE(dev->devs); |
| 1485 | LY_ARRAY_FREE(dev->dev_pmods); |
| 1486 | |
| 1487 | free(dev); |
| 1488 | } |
| 1489 | } |
| 1490 | |
| 1491 | void |
| 1492 | lysc_refine_free(const struct ly_ctx *ctx, struct lysc_refine *rfn) |
| 1493 | { |
| 1494 | if (rfn) { |
| 1495 | lyxp_expr_free(ctx, rfn->nodeid); |
| 1496 | LY_ARRAY_FREE(rfn->rfns); |
| 1497 | |
| 1498 | free(rfn); |
| 1499 | } |
| 1500 | } |
| 1501 | |
| 1502 | void |
| 1503 | lysp_dev_node_free(const struct ly_ctx *ctx, struct lysp_node *dev_pnode) |
| 1504 | { |
| 1505 | if (!dev_pnode) { |
| 1506 | return; |
| 1507 | } |
| 1508 | |
| 1509 | switch (dev_pnode->nodetype) { |
| 1510 | case LYS_CONTAINER: |
| 1511 | ((struct lysp_node_container *)dev_pnode)->child = NULL; |
| 1512 | break; |
| 1513 | case LYS_LIST: |
| 1514 | ((struct lysp_node_list *)dev_pnode)->child = NULL; |
| 1515 | break; |
| 1516 | case LYS_CHOICE: |
| 1517 | ((struct lysp_node_choice *)dev_pnode)->child = NULL; |
| 1518 | break; |
| 1519 | case LYS_CASE: |
| 1520 | ((struct lysp_node_case *)dev_pnode)->child = NULL; |
| 1521 | break; |
| 1522 | case LYS_LEAF: |
| 1523 | case LYS_LEAFLIST: |
| 1524 | case LYS_ANYXML: |
| 1525 | case LYS_ANYDATA: |
| 1526 | /* no children */ |
| 1527 | break; |
| 1528 | case LYS_NOTIF: |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1529 | ((struct lysp_node_notif *)dev_pnode)->child = NULL; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1530 | break; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1531 | case LYS_RPC: |
| 1532 | case LYS_ACTION: |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1533 | ((struct lysp_node_action *)dev_pnode)->input.child = NULL; |
| 1534 | ((struct lysp_node_action *)dev_pnode)->output.child = NULL; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1535 | break; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1536 | case LYS_INPUT: |
| 1537 | case LYS_OUTPUT: |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1538 | ((struct lysp_node_action_inout *)dev_pnode)->child = NULL; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1539 | lysp_node_free((struct ly_ctx *)ctx, dev_pnode); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1540 | free(dev_pnode); |
| 1541 | return; |
| 1542 | default: |
| 1543 | LOGINT(ctx); |
| 1544 | return; |
| 1545 | } |
| 1546 | |
| 1547 | lysp_node_free((struct ly_ctx *)ctx, dev_pnode); |
| 1548 | } |
| 1549 | |
| 1550 | LY_ERR |
| 1551 | lys_compile_node_deviations_refines(struct lysc_ctx *ctx, const struct lysp_node *pnode, const struct lysc_node *parent, |
| 1552 | struct lysp_node **dev_pnode, ly_bool *not_supported) |
| 1553 | { |
| 1554 | LY_ERR ret = LY_SUCCESS; |
| 1555 | uint32_t i; |
| 1556 | LY_ARRAY_COUNT_TYPE u; |
| 1557 | struct lys_module *orig_mod = ctx->cur_mod; |
| 1558 | struct lysp_module *orig_pmod = ctx->pmod; |
| 1559 | char orig_path[LYSC_CTX_BUFSIZE]; |
| 1560 | struct lysc_refine *rfn; |
| 1561 | struct lysc_deviation *dev; |
| 1562 | struct lysp_deviation *dev_p; |
| 1563 | struct lysp_deviate *d; |
| 1564 | |
| 1565 | *dev_pnode = NULL; |
| 1566 | *not_supported = 0; |
| 1567 | |
| 1568 | for (i = 0; i < ctx->uses_rfns.count; ++i) { |
| 1569 | rfn = ctx->uses_rfns.objs[i]; |
| 1570 | |
Michal Vasko | 28fe5f6 | 2021-03-03 16:37:39 +0100 | [diff] [blame] | 1571 | if (!lysp_schema_nodeid_match(rfn->nodeid, rfn->nodeid_pmod, rfn->nodeid_ctx_node, parent, pnode, orig_mod)) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1572 | /* not our target node */ |
| 1573 | continue; |
| 1574 | } |
| 1575 | |
| 1576 | if (!*dev_pnode) { |
| 1577 | /* first refine on this node, create a copy first */ |
| 1578 | LY_CHECK_GOTO(ret = lysp_dup_single(ctx->ctx, pnode, 1, dev_pnode), cleanup); |
| 1579 | } |
| 1580 | |
Michal Vasko | b8df576 | 2021-01-12 15:15:53 +0100 | [diff] [blame] | 1581 | /* use modules from the refine */ |
| 1582 | ctx->cur_mod = rfn->nodeid_pmod->mod; |
| 1583 | ctx->pmod = (struct lysp_module *)rfn->nodeid_pmod; |
| 1584 | |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1585 | /* apply all the refines by changing (the copy of) the parsed node */ |
| 1586 | LY_ARRAY_FOR(rfn->rfns, u) { |
Michal Vasko | b8df576 | 2021-01-12 15:15:53 +0100 | [diff] [blame] | 1587 | /* keep the current path and add to it */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1588 | lysc_update_path(ctx, NULL, "{refine}"); |
| 1589 | lysc_update_path(ctx, NULL, rfn->rfns[u]->nodeid); |
Michal Vasko | b8df576 | 2021-01-12 15:15:53 +0100 | [diff] [blame] | 1590 | |
| 1591 | /* apply refine and restore the path */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1592 | ret = lys_apply_refine(ctx, rfn->rfns[u], *dev_pnode); |
| 1593 | lysc_update_path(ctx, NULL, NULL); |
| 1594 | lysc_update_path(ctx, NULL, NULL); |
| 1595 | LY_CHECK_GOTO(ret, cleanup); |
| 1596 | } |
| 1597 | |
| 1598 | /* refine was applied, remove it */ |
| 1599 | lysc_refine_free(ctx->ctx, rfn); |
| 1600 | ly_set_rm_index(&ctx->uses_rfns, i, NULL); |
| 1601 | |
| 1602 | /* all the refines for one target node are in one structure, we are done */ |
| 1603 | break; |
| 1604 | } |
| 1605 | |
| 1606 | for (i = 0; i < ctx->devs.count; ++i) { |
| 1607 | dev = ctx->devs.objs[i]; |
| 1608 | |
Michal Vasko | 28fe5f6 | 2021-03-03 16:37:39 +0100 | [diff] [blame] | 1609 | if (!lysp_schema_nodeid_match(dev->nodeid, dev->dev_pmods[0], NULL, parent, pnode, orig_mod)) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1610 | /* not our target node */ |
| 1611 | continue; |
| 1612 | } |
| 1613 | |
| 1614 | if (dev->not_supported) { |
| 1615 | /* it is not supported, no more deviations */ |
| 1616 | *not_supported = 1; |
| 1617 | goto dev_applied; |
| 1618 | } |
| 1619 | |
| 1620 | if (!*dev_pnode) { |
| 1621 | /* first deviation on this node, create a copy first */ |
| 1622 | LY_CHECK_GOTO(ret = lysp_dup_single(ctx->ctx, pnode, 1, dev_pnode), cleanup); |
| 1623 | } |
| 1624 | |
| 1625 | /* apply all the deviates by changing (the copy of) the parsed node */ |
| 1626 | LY_ARRAY_FOR(dev->devs, u) { |
| 1627 | dev_p = dev->devs[u]; |
| 1628 | LY_LIST_FOR(dev_p->deviates, d) { |
| 1629 | /* generate correct path */ |
| 1630 | strcpy(orig_path, ctx->path); |
| 1631 | ctx->path_len = 1; |
| 1632 | ctx->cur_mod = dev->dev_pmods[u]->mod; |
| 1633 | ctx->pmod = (struct lysp_module *)dev->dev_pmods[u]; |
| 1634 | lysc_update_path(ctx, NULL, "{deviation}"); |
| 1635 | lysc_update_path(ctx, NULL, dev_p->nodeid); |
| 1636 | |
| 1637 | switch (d->mod) { |
| 1638 | case LYS_DEV_ADD: |
| 1639 | ret = lys_apply_deviate_add(ctx, (struct lysp_deviate_add *)d, *dev_pnode); |
| 1640 | break; |
| 1641 | case LYS_DEV_DELETE: |
| 1642 | ret = lys_apply_deviate_delete(ctx, (struct lysp_deviate_del *)d, *dev_pnode); |
| 1643 | break; |
| 1644 | case LYS_DEV_REPLACE: |
| 1645 | ret = lys_apply_deviate_replace(ctx, (struct lysp_deviate_rpl *)d, *dev_pnode); |
| 1646 | break; |
| 1647 | default: |
| 1648 | LOGINT(ctx->ctx); |
| 1649 | ret = LY_EINT; |
| 1650 | } |
| 1651 | |
| 1652 | /* restore previous path */ |
| 1653 | strcpy(ctx->path, orig_path); |
| 1654 | ctx->path_len = strlen(ctx->path); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1655 | |
| 1656 | LY_CHECK_GOTO(ret, cleanup); |
| 1657 | } |
| 1658 | } |
| 1659 | |
| 1660 | dev_applied: |
| 1661 | /* deviation was applied, remove it */ |
| 1662 | lysc_deviation_free(ctx->ctx, dev); |
| 1663 | ly_set_rm_index(&ctx->devs, i, NULL); |
| 1664 | |
| 1665 | /* all the deviations for one target node are in one structure, we are done */ |
| 1666 | break; |
| 1667 | } |
| 1668 | |
| 1669 | cleanup: |
Michal Vasko | 20316b3 | 2021-01-12 15:16:54 +0100 | [diff] [blame] | 1670 | ctx->cur_mod = orig_mod; |
| 1671 | ctx->pmod = orig_pmod; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1672 | if (ret) { |
| 1673 | lysp_dev_node_free(ctx->ctx, *dev_pnode); |
| 1674 | *dev_pnode = NULL; |
| 1675 | *not_supported = 0; |
| 1676 | } |
| 1677 | return ret; |
| 1678 | } |
| 1679 | |
| 1680 | /** |
| 1681 | * @brief Compile the parsed augment connecting it into its target. |
| 1682 | * |
| 1683 | * It is expected that all the data referenced in path are present - augments are ordered so that augment B |
| 1684 | * targeting data from augment A is being compiled after augment A. Also the modules referenced in the path |
| 1685 | * are already implemented and compiled. |
| 1686 | * |
| 1687 | * @param[in] ctx Compile context. |
| 1688 | * @param[in] aug_p Parsed augment to compile. |
| 1689 | * @param[in] target Target node of the augment. |
| 1690 | * @return LY_SUCCESS on success. |
| 1691 | * @return LY_EVALID on failure. |
| 1692 | */ |
| 1693 | static LY_ERR |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1694 | lys_compile_augment(struct lysc_ctx *ctx, struct lysp_node_augment *aug_p, struct lysc_node *target) |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1695 | { |
| 1696 | LY_ERR ret = LY_SUCCESS; |
| 1697 | struct lysp_node *pnode; |
| 1698 | struct lysc_node *node; |
| 1699 | struct lysc_when *when_shared = NULL; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1700 | struct lysc_node_action **actions; |
| 1701 | struct lysc_node_notif **notifs; |
Michal Vasko | 29dd11e | 2020-11-23 16:52:22 +0100 | [diff] [blame] | 1702 | ly_bool allow_mandatory = 0, enabled; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1703 | struct ly_set child_set = {0}; |
Michal Vasko | 29dd11e | 2020-11-23 16:52:22 +0100 | [diff] [blame] | 1704 | uint32_t i, opt_prev = ctx->options; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1705 | |
| 1706 | if (!(target->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT | LYS_NOTIF))) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1707 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1708 | "Augment's %s-schema-nodeid \"%s\" refers to a %s node which is not an allowed augment's target.", |
| 1709 | aug_p->nodeid[0] == '/' ? "absolute" : "descendant", aug_p->nodeid, lys_nodetype2str(target->nodetype)); |
| 1710 | ret = LY_EVALID; |
| 1711 | goto cleanup; |
| 1712 | } |
| 1713 | |
| 1714 | /* check for mandatory nodes |
| 1715 | * - new cases augmenting some choice can have mandatory nodes |
| 1716 | * - mandatory nodes are allowed only in case the augmentation is made conditional with a when statement |
| 1717 | */ |
| 1718 | if (aug_p->when || (target->nodetype == LYS_CHOICE) || (ctx->cur_mod == target->module)) { |
| 1719 | allow_mandatory = 1; |
| 1720 | } |
| 1721 | |
| 1722 | LY_LIST_FOR(aug_p->child, pnode) { |
| 1723 | /* check if the subnode can be connected to the found target (e.g. case cannot be inserted into container) */ |
| 1724 | if (((pnode->nodetype == LYS_CASE) && (target->nodetype != LYS_CHOICE)) || |
| 1725 | ((pnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && !(target->nodetype & (LYS_CONTAINER | LYS_LIST))) || |
| 1726 | ((pnode->nodetype == LYS_USES) && (target->nodetype == LYS_CHOICE))) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1727 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1728 | "Invalid augment of %s node which is not allowed to contain %s node \"%s\".", |
| 1729 | lys_nodetype2str(target->nodetype), lys_nodetype2str(pnode->nodetype), pnode->name); |
| 1730 | ret = LY_EVALID; |
| 1731 | goto cleanup; |
| 1732 | } |
| 1733 | |
| 1734 | /* compile the children */ |
| 1735 | if (target->nodetype == LYS_CHOICE) { |
| 1736 | LY_CHECK_GOTO(ret = lys_compile_node_choice_child(ctx, pnode, target, &child_set), cleanup); |
Michal Vasko | 6fb4c04 | 2020-11-24 18:05:26 +0100 | [diff] [blame] | 1737 | } else if (target->nodetype & (LYS_INPUT | LYS_OUTPUT)) { |
| 1738 | if (target->nodetype == LYS_INPUT) { |
| 1739 | ctx->options |= LYS_COMPILE_RPC_INPUT; |
| 1740 | } else { |
| 1741 | ctx->options |= LYS_COMPILE_RPC_OUTPUT; |
| 1742 | } |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1743 | LY_CHECK_GOTO(ret = lys_compile_node(ctx, pnode, target, 0, &child_set), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1744 | } else { |
| 1745 | LY_CHECK_GOTO(ret = lys_compile_node(ctx, pnode, target, 0, &child_set), cleanup); |
| 1746 | } |
| 1747 | |
Michal Vasko | 29dd11e | 2020-11-23 16:52:22 +0100 | [diff] [blame] | 1748 | /* eval if-features again for the rest of this node processing */ |
| 1749 | LY_CHECK_GOTO(ret = lys_eval_iffeatures(ctx->ctx, pnode->iffeatures, &enabled), cleanup); |
| 1750 | if (!enabled) { |
| 1751 | ctx->options |= LYS_COMPILE_DISABLED; |
| 1752 | } |
| 1753 | |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1754 | /* since the augment node is not present in the compiled tree, we need to pass some of its |
| 1755 | * statements to all its children */ |
| 1756 | for (i = 0; i < child_set.count; ++i) { |
| 1757 | node = child_set.snodes[i]; |
| 1758 | if (!allow_mandatory && (node->flags & LYS_CONFIG_W) && (node->flags & LYS_MAND_TRUE)) { |
| 1759 | node->flags &= ~LYS_MAND_TRUE; |
| 1760 | lys_compile_mandatory_parents(target, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1761 | LOGVAL(ctx->ctx, LYVE_SEMANTICS, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1762 | "Invalid augment adding mandatory node \"%s\" without making it conditional via when statement.", node->name); |
| 1763 | ret = LY_EVALID; |
| 1764 | goto cleanup; |
| 1765 | } |
| 1766 | |
| 1767 | if (aug_p->when) { |
| 1768 | /* pass augment's when to all the children */ |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 1769 | ret = lys_compile_when(ctx, aug_p->when, aug_p->flags, lysc_data_node(target), node, &when_shared); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1770 | LY_CHECK_GOTO(ret, cleanup); |
| 1771 | } |
| 1772 | } |
| 1773 | ly_set_erase(&child_set, NULL); |
Michal Vasko | 29dd11e | 2020-11-23 16:52:22 +0100 | [diff] [blame] | 1774 | |
| 1775 | /* restore options */ |
| 1776 | ctx->options = opt_prev; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1777 | } |
| 1778 | |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 1779 | actions = lysc_node_actions_p(target); |
| 1780 | notifs = lysc_node_notifs_p(target); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1781 | |
| 1782 | if (aug_p->actions) { |
| 1783 | if (!actions) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1784 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1785 | "Invalid augment of %s node which is not allowed to contain RPC/action node \"%s\".", |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1786 | lys_nodetype2str(target->nodetype), aug_p->actions->name); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1787 | ret = LY_EVALID; |
| 1788 | goto cleanup; |
| 1789 | } |
| 1790 | |
| 1791 | /* compile actions into the target */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1792 | LY_LIST_FOR((struct lysp_node *)aug_p->actions, pnode) { |
Michal Vasko | 012807e | 2021-02-03 09:52:18 +0100 | [diff] [blame] | 1793 | LY_CHECK_GOTO(ret = lys_compile_node(ctx, pnode, target, 0, &child_set), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1794 | |
Michal Vasko | 012807e | 2021-02-03 09:52:18 +0100 | [diff] [blame] | 1795 | /* eval if-features again for the rest of this node processing */ |
| 1796 | LY_CHECK_GOTO(ret = lys_eval_iffeatures(ctx->ctx, pnode->iffeatures, &enabled), cleanup); |
| 1797 | if (!enabled) { |
| 1798 | ctx->options |= LYS_COMPILE_DISABLED; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1799 | } |
Michal Vasko | 012807e | 2021-02-03 09:52:18 +0100 | [diff] [blame] | 1800 | |
| 1801 | /* since the augment node is not present in the compiled tree, we need to pass some of its |
| 1802 | * statements to all its children */ |
| 1803 | for (i = 0; i < child_set.count; ++i) { |
| 1804 | node = child_set.snodes[i]; |
| 1805 | if (aug_p->when) { |
| 1806 | /* pass augment's when to all the actions */ |
| 1807 | ret = lys_compile_when(ctx, aug_p->when, aug_p->flags, lysc_data_node(target), node, &when_shared); |
| 1808 | LY_CHECK_GOTO(ret, cleanup); |
| 1809 | } |
| 1810 | } |
| 1811 | ly_set_erase(&child_set, NULL); |
| 1812 | |
| 1813 | /* restore options */ |
| 1814 | ctx->options = opt_prev; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1815 | } |
| 1816 | } |
| 1817 | if (aug_p->notifs) { |
| 1818 | if (!notifs) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1819 | LOGVAL(ctx->ctx, LYVE_REFERENCE, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1820 | "Invalid augment of %s node which is not allowed to contain notification node \"%s\".", |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1821 | lys_nodetype2str(target->nodetype), aug_p->notifs->name); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1822 | ret = LY_EVALID; |
| 1823 | goto cleanup; |
| 1824 | } |
| 1825 | |
| 1826 | /* compile notifications into the target */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1827 | LY_LIST_FOR((struct lysp_node *)aug_p->notifs, pnode) { |
Michal Vasko | 012807e | 2021-02-03 09:52:18 +0100 | [diff] [blame] | 1828 | LY_CHECK_GOTO(ret = lys_compile_node(ctx, pnode, target, 0, &child_set), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1829 | |
Michal Vasko | 012807e | 2021-02-03 09:52:18 +0100 | [diff] [blame] | 1830 | /* eval if-features again for the rest of this node processing */ |
| 1831 | LY_CHECK_GOTO(ret = lys_eval_iffeatures(ctx->ctx, pnode->iffeatures, &enabled), cleanup); |
| 1832 | if (!enabled) { |
| 1833 | ctx->options |= LYS_COMPILE_DISABLED; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1834 | } |
Michal Vasko | 012807e | 2021-02-03 09:52:18 +0100 | [diff] [blame] | 1835 | |
| 1836 | /* since the augment node is not present in the compiled tree, we need to pass some of its |
| 1837 | * statements to all its children */ |
| 1838 | for (i = 0; i < child_set.count; ++i) { |
| 1839 | node = child_set.snodes[i]; |
| 1840 | if (aug_p->when) { |
| 1841 | /* pass augment's when to all the actions */ |
| 1842 | ret = lys_compile_when(ctx, aug_p->when, aug_p->flags, lysc_data_node(target), node, &when_shared); |
| 1843 | LY_CHECK_GOTO(ret, cleanup); |
| 1844 | } |
| 1845 | } |
| 1846 | ly_set_erase(&child_set, NULL); |
| 1847 | |
| 1848 | /* restore options */ |
| 1849 | ctx->options = opt_prev; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1850 | } |
| 1851 | } |
| 1852 | |
| 1853 | cleanup: |
| 1854 | ly_set_erase(&child_set, NULL); |
Michal Vasko | 29dd11e | 2020-11-23 16:52:22 +0100 | [diff] [blame] | 1855 | ctx->options = opt_prev; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1856 | return ret; |
| 1857 | } |
| 1858 | |
| 1859 | LY_ERR |
| 1860 | lys_compile_node_augments(struct lysc_ctx *ctx, struct lysc_node *node) |
| 1861 | { |
| 1862 | LY_ERR ret = LY_SUCCESS; |
| 1863 | struct lys_module *orig_mod = ctx->cur_mod; |
| 1864 | struct lysp_module *orig_pmod = ctx->pmod; |
| 1865 | uint32_t i; |
| 1866 | char orig_path[LYSC_CTX_BUFSIZE]; |
| 1867 | struct lysc_augment *aug; |
| 1868 | |
| 1869 | /* uses augments */ |
| 1870 | for (i = 0; i < ctx->uses_augs.count; ) { |
| 1871 | aug = ctx->uses_augs.objs[i]; |
| 1872 | |
Michal Vasko | 28fe5f6 | 2021-03-03 16:37:39 +0100 | [diff] [blame] | 1873 | if (!lysp_schema_nodeid_match(aug->nodeid, orig_mod->parsed, aug->nodeid_ctx_node, node, NULL, NULL)) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1874 | /* not our target node */ |
| 1875 | ++i; |
| 1876 | continue; |
| 1877 | } |
| 1878 | |
Michal Vasko | b8df576 | 2021-01-12 15:15:53 +0100 | [diff] [blame] | 1879 | /* use the path and modules from the augment */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1880 | lysc_update_path(ctx, NULL, "{augment}"); |
| 1881 | lysc_update_path(ctx, NULL, aug->aug_p->nodeid); |
Michal Vasko | 28fe5f6 | 2021-03-03 16:37:39 +0100 | [diff] [blame] | 1882 | ctx->pmod = (struct lysp_module *)aug->aug_pmod; |
Michal Vasko | b8df576 | 2021-01-12 15:15:53 +0100 | [diff] [blame] | 1883 | |
| 1884 | /* apply augment, restore the path */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1885 | ret = lys_compile_augment(ctx, aug->aug_p, node); |
| 1886 | lysc_update_path(ctx, NULL, NULL); |
| 1887 | lysc_update_path(ctx, NULL, NULL); |
| 1888 | LY_CHECK_GOTO(ret, cleanup); |
| 1889 | |
| 1890 | /* augment was applied, remove it (index may have changed because other augments could have been applied) */ |
| 1891 | ly_set_rm(&ctx->uses_augs, aug, NULL); |
| 1892 | lysc_augment_free(ctx->ctx, aug); |
| 1893 | } |
| 1894 | |
| 1895 | /* top-level augments */ |
| 1896 | for (i = 0; i < ctx->augs.count; ) { |
| 1897 | aug = ctx->augs.objs[i]; |
| 1898 | |
Michal Vasko | 28fe5f6 | 2021-03-03 16:37:39 +0100 | [diff] [blame] | 1899 | if (!lysp_schema_nodeid_match(aug->nodeid, aug->aug_pmod, NULL, node, NULL, NULL)) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1900 | /* not our target node */ |
| 1901 | ++i; |
| 1902 | continue; |
| 1903 | } |
| 1904 | |
Michal Vasko | b8df576 | 2021-01-12 15:15:53 +0100 | [diff] [blame] | 1905 | /* use the path and modules from the augment */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1906 | strcpy(orig_path, ctx->path); |
| 1907 | ctx->path_len = 1; |
Michal Vasko | 28fe5f6 | 2021-03-03 16:37:39 +0100 | [diff] [blame] | 1908 | ctx->cur_mod = aug->aug_pmod->mod; |
| 1909 | ctx->pmod = (struct lysp_module *)aug->aug_pmod; |
Michal Vasko | 1ade6f1 | 2021-04-19 11:32:45 +0200 | [diff] [blame] | 1910 | lysc_update_path(ctx, NULL, "{augment}"); |
| 1911 | lysc_update_path(ctx, NULL, aug->aug_p->nodeid); |
Michal Vasko | b8df576 | 2021-01-12 15:15:53 +0100 | [diff] [blame] | 1912 | |
| 1913 | /* apply augment, restore the path */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1914 | ret = lys_compile_augment(ctx, aug->aug_p, node); |
| 1915 | strcpy(ctx->path, orig_path); |
| 1916 | ctx->path_len = strlen(ctx->path); |
| 1917 | LY_CHECK_GOTO(ret, cleanup); |
| 1918 | |
| 1919 | /* augment was applied, remove it */ |
| 1920 | ly_set_rm(&ctx->augs, aug, NULL); |
| 1921 | lysc_augment_free(ctx->ctx, aug); |
| 1922 | } |
| 1923 | |
| 1924 | cleanup: |
| 1925 | ctx->cur_mod = orig_mod; |
| 1926 | ctx->pmod = orig_pmod; |
| 1927 | return ret; |
| 1928 | } |
| 1929 | |
| 1930 | /** |
| 1931 | * @brief Prepare a top-level augment to be applied during data nodes compilation. |
| 1932 | * |
| 1933 | * @param[in] ctx Compile context. |
| 1934 | * @param[in] aug_p Parsed augment to be applied. |
| 1935 | * @param[in] pmod Both current and prefix module for @p aug_p. |
| 1936 | * @return LY_ERR value. |
| 1937 | */ |
| 1938 | static LY_ERR |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1939 | lys_precompile_own_augment(struct lysc_ctx *ctx, struct lysp_node_augment *aug_p, const struct lysp_module *pmod) |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1940 | { |
| 1941 | LY_ERR ret = LY_SUCCESS; |
| 1942 | struct lyxp_expr *exp = NULL; |
| 1943 | struct lysc_augment *aug; |
| 1944 | const struct lys_module *mod; |
| 1945 | |
| 1946 | /* parse its target, it was already parsed and fully checked (except for the existence of the nodes) */ |
| 1947 | ret = lyxp_expr_parse(ctx->ctx, aug_p->nodeid, strlen(aug_p->nodeid), 0, &exp); |
| 1948 | LY_CHECK_GOTO(ret, cleanup); |
| 1949 | |
| 1950 | mod = lys_schema_node_get_module(ctx->ctx, exp->expr + exp->tok_pos[1], exp->tok_len[1], pmod, NULL, NULL); |
| 1951 | LY_CHECK_ERR_GOTO(!mod, LOGINT(ctx->ctx); ret = LY_EINT, cleanup); |
| 1952 | if (mod != ctx->cur_mod) { |
| 1953 | /* augment for another module, ignore */ |
| 1954 | goto cleanup; |
| 1955 | } |
| 1956 | |
| 1957 | /* allocate new compiled augment and store it in the set */ |
| 1958 | aug = calloc(1, sizeof *aug); |
| 1959 | LY_CHECK_ERR_GOTO(!aug, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
| 1960 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->augs, aug, 1, NULL), cleanup); |
| 1961 | |
| 1962 | aug->nodeid = exp; |
| 1963 | exp = NULL; |
Michal Vasko | 28fe5f6 | 2021-03-03 16:37:39 +0100 | [diff] [blame] | 1964 | aug->aug_pmod = pmod; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1965 | aug->aug_p = aug_p; |
| 1966 | |
| 1967 | cleanup: |
| 1968 | lyxp_expr_free(ctx->ctx, exp); |
| 1969 | return ret; |
| 1970 | } |
| 1971 | |
| 1972 | LY_ERR |
| 1973 | lys_precompile_own_augments(struct lysc_ctx *ctx) |
| 1974 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1975 | LY_ARRAY_COUNT_TYPE u, v; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1976 | |
| 1977 | LY_ARRAY_FOR(ctx->cur_mod->augmented_by, u) { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1978 | const struct lys_module *aug_mod = ctx->cur_mod->augmented_by[u]; |
| 1979 | struct lysp_node_augment *aug; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1980 | |
| 1981 | /* collect all module augments */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1982 | LY_LIST_FOR(aug_mod->parsed->augments, aug) { |
| 1983 | LY_CHECK_RET(lys_precompile_own_augment(ctx, aug, aug_mod->parsed)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1984 | } |
| 1985 | |
| 1986 | /* collect all submodules augments */ |
| 1987 | LY_ARRAY_FOR(aug_mod->parsed->includes, v) { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1988 | LY_LIST_FOR(aug_mod->parsed->includes[v].submodule->augments, aug) { |
| 1989 | LY_CHECK_RET(lys_precompile_own_augment(ctx, aug, (struct lysp_module *)aug_mod->parsed->includes[v].submodule)); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 1990 | } |
| 1991 | } |
| 1992 | } |
| 1993 | |
| 1994 | return LY_SUCCESS; |
| 1995 | } |
| 1996 | |
| 1997 | /** |
| 1998 | * @brief Prepare a deviation to be applied during data nodes compilation. |
| 1999 | * |
| 2000 | * @param[in] ctx Compile context. |
| 2001 | * @param[in] dev_p Parsed deviation to be applied. |
| 2002 | * @param[in] pmod Both current and prefix module for @p dev_p. |
| 2003 | * @return LY_ERR value. |
| 2004 | */ |
| 2005 | static LY_ERR |
| 2006 | lys_precompile_own_deviation(struct lysc_ctx *ctx, struct lysp_deviation *dev_p, const struct lysp_module *pmod) |
| 2007 | { |
| 2008 | LY_ERR ret = LY_SUCCESS; |
| 2009 | struct lysc_deviation *dev = NULL; |
| 2010 | struct lyxp_expr *exp = NULL; |
| 2011 | struct lysp_deviation **new_dev; |
| 2012 | const struct lys_module *mod; |
| 2013 | const struct lysp_module **new_dev_pmod; |
| 2014 | uint32_t i; |
| 2015 | |
| 2016 | /* parse its target, it was already parsed and fully checked (except for the existence of the nodes) */ |
| 2017 | ret = lyxp_expr_parse(ctx->ctx, dev_p->nodeid, strlen(dev_p->nodeid), 0, &exp); |
| 2018 | LY_CHECK_GOTO(ret, cleanup); |
| 2019 | |
| 2020 | mod = lys_schema_node_get_module(ctx->ctx, exp->expr + exp->tok_pos[1], exp->tok_len[1], pmod, NULL, NULL); |
| 2021 | LY_CHECK_ERR_GOTO(!mod, LOGINT(ctx->ctx); ret = LY_EINT, cleanup); |
| 2022 | if (mod != ctx->cur_mod) { |
| 2023 | /* deviation for another module, ignore */ |
| 2024 | goto cleanup; |
| 2025 | } |
| 2026 | |
| 2027 | /* try to find the node in already compiled deviations */ |
| 2028 | for (i = 0; i < ctx->devs.count; ++i) { |
| 2029 | if (lys_abs_schema_nodeid_match(ctx->ctx, exp, pmod, ((struct lysc_deviation *)ctx->devs.objs[i])->nodeid, |
| 2030 | ((struct lysc_deviation *)ctx->devs.objs[i])->dev_pmods[0])) { |
| 2031 | dev = ctx->devs.objs[i]; |
| 2032 | break; |
| 2033 | } |
| 2034 | } |
| 2035 | |
| 2036 | if (!dev) { |
| 2037 | /* allocate new compiled deviation */ |
| 2038 | dev = calloc(1, sizeof *dev); |
| 2039 | LY_CHECK_ERR_GOTO(!dev, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup); |
| 2040 | LY_CHECK_GOTO(ret = ly_set_add(&ctx->devs, dev, 1, NULL), cleanup); |
| 2041 | |
| 2042 | dev->nodeid = exp; |
| 2043 | exp = NULL; |
| 2044 | } |
| 2045 | |
| 2046 | /* add new parsed deviation structure */ |
| 2047 | LY_ARRAY_NEW_GOTO(ctx->ctx, dev->devs, new_dev, ret, cleanup); |
| 2048 | *new_dev = dev_p; |
| 2049 | LY_ARRAY_NEW_GOTO(ctx->ctx, dev->dev_pmods, new_dev_pmod, ret, cleanup); |
| 2050 | *new_dev_pmod = pmod; |
| 2051 | |
| 2052 | cleanup: |
| 2053 | lyxp_expr_free(ctx->ctx, exp); |
| 2054 | return ret; |
| 2055 | } |
| 2056 | |
| 2057 | LY_ERR |
| 2058 | lys_precompile_own_deviations(struct lysc_ctx *ctx) |
| 2059 | { |
| 2060 | LY_ARRAY_COUNT_TYPE u, v, w; |
Michal Vasko | e8220db | 2021-06-02 15:39:05 +0200 | [diff] [blame^] | 2061 | struct lys_module *orig_cur_mod; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2062 | const struct lys_module *dev_mod; |
| 2063 | struct lysc_deviation *dev; |
| 2064 | struct lysp_deviate *d; |
| 2065 | int not_supported; |
| 2066 | uint32_t i; |
| 2067 | |
| 2068 | LY_ARRAY_FOR(ctx->cur_mod->deviated_by, u) { |
| 2069 | dev_mod = ctx->cur_mod->deviated_by[u]; |
| 2070 | |
| 2071 | /* compile all module deviations */ |
| 2072 | LY_ARRAY_FOR(dev_mod->parsed->deviations, v) { |
| 2073 | LY_CHECK_RET(lys_precompile_own_deviation(ctx, &dev_mod->parsed->deviations[v], dev_mod->parsed)); |
| 2074 | } |
| 2075 | |
| 2076 | /* compile all submodules deviations */ |
| 2077 | LY_ARRAY_FOR(dev_mod->parsed->includes, v) { |
| 2078 | LY_ARRAY_FOR(dev_mod->parsed->includes[v].submodule->deviations, w) { |
| 2079 | LY_CHECK_RET(lys_precompile_own_deviation(ctx, &dev_mod->parsed->includes[v].submodule->deviations[w], |
| 2080 | (struct lysp_module *)dev_mod->parsed->includes[v].submodule)); |
| 2081 | } |
| 2082 | } |
| 2083 | } |
| 2084 | |
| 2085 | /* set not-supported flags for all the deviations */ |
| 2086 | for (i = 0; i < ctx->devs.count; ++i) { |
| 2087 | dev = ctx->devs.objs[i]; |
| 2088 | not_supported = 0; |
| 2089 | |
| 2090 | LY_ARRAY_FOR(dev->devs, u) { |
| 2091 | LY_LIST_FOR(dev->devs[u]->deviates, d) { |
| 2092 | if (d->mod == LYS_DEV_NOT_SUPPORTED) { |
| 2093 | not_supported = 1; |
| 2094 | break; |
| 2095 | } |
| 2096 | } |
| 2097 | if (not_supported) { |
| 2098 | break; |
| 2099 | } |
| 2100 | } |
| 2101 | if (not_supported && (LY_ARRAY_COUNT(dev->devs) > 1)) { |
Michal Vasko | e8220db | 2021-06-02 15:39:05 +0200 | [diff] [blame^] | 2102 | orig_cur_mod = ctx->cur_mod; |
| 2103 | ctx->cur_mod = dev->dev_pmods[u]->mod; |
| 2104 | lysc_update_path(ctx, NULL, "{deviation}"); |
| 2105 | lysc_update_path(ctx, NULL, dev->nodeid->expr); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2106 | LOGVAL(ctx->ctx, LYVE_SEMANTICS, |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2107 | "Multiple deviations of \"%s\" with one of them being \"not-supported\".", dev->nodeid->expr); |
Michal Vasko | e8220db | 2021-06-02 15:39:05 +0200 | [diff] [blame^] | 2108 | lysc_update_path(ctx, NULL, NULL); |
| 2109 | lysc_update_path(ctx, NULL, NULL); |
| 2110 | ctx->cur_mod = orig_cur_mod; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2111 | return LY_EVALID; |
| 2112 | } |
| 2113 | |
| 2114 | dev->not_supported = not_supported; |
| 2115 | } |
| 2116 | |
| 2117 | return LY_SUCCESS; |
| 2118 | } |
| 2119 | |
| 2120 | /** |
| 2121 | * @brief Add a module reference into an array, checks for duplicities. |
| 2122 | * |
| 2123 | * @param[in] ctx Compile context. |
| 2124 | * @param[in] mod Module reference to add. |
| 2125 | * @param[in,out] mod_array Module sized array to add to. |
| 2126 | * @return LY_ERR value. |
| 2127 | */ |
| 2128 | static LY_ERR |
| 2129 | lys_array_add_mod_ref(struct lysc_ctx *ctx, struct lys_module *mod, struct lys_module ***mod_array) |
| 2130 | { |
| 2131 | LY_ARRAY_COUNT_TYPE u; |
| 2132 | struct lys_module **new_mod; |
| 2133 | |
| 2134 | LY_ARRAY_FOR(*mod_array, u) { |
| 2135 | if ((*mod_array)[u] == mod) { |
| 2136 | /* already there */ |
| 2137 | return LY_EEXIST; |
| 2138 | } |
| 2139 | } |
| 2140 | |
| 2141 | /* add the new module ref */ |
| 2142 | LY_ARRAY_NEW_RET(ctx->ctx, *mod_array, new_mod, LY_EMEM); |
| 2143 | *new_mod = mod; |
| 2144 | |
| 2145 | return LY_SUCCESS; |
| 2146 | } |
| 2147 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2148 | /** |
| 2149 | * @brief Check whether all modules in a set are implemented. |
| 2150 | * |
| 2151 | * @param[in] mod_set Module set to check. |
| 2152 | * @return Whether all modules are implemented or not. |
| 2153 | */ |
| 2154 | static ly_bool |
| 2155 | lys_precompile_mod_set_all_implemented(const struct ly_set *mod_set) |
| 2156 | { |
| 2157 | uint32_t i; |
| 2158 | const struct lys_module *mod; |
| 2159 | |
| 2160 | for (i = 0; i < mod_set->count; ++i) { |
| 2161 | mod = mod_set->objs[i]; |
| 2162 | if (!mod->implemented) { |
| 2163 | return 0; |
| 2164 | } |
| 2165 | } |
| 2166 | |
| 2167 | return 1; |
| 2168 | } |
| 2169 | |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2170 | LY_ERR |
| 2171 | lys_precompile_augments_deviations(struct lysc_ctx *ctx) |
| 2172 | { |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2173 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2174 | LY_ARRAY_COUNT_TYPE u, v; |
| 2175 | const struct lysp_module *mod_p; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2176 | struct lys_module *mod; |
| 2177 | struct lysp_submodule *submod; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 2178 | struct lysp_node_augment *aug; |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2179 | uint32_t idx; |
| 2180 | struct ly_set mod_set = {0}, set = {0}; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2181 | |
| 2182 | mod_p = ctx->cur_mod->parsed; |
| 2183 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 2184 | LY_LIST_FOR(mod_p->augments, aug) { |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2185 | /* get target module */ |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2186 | lysc_update_path(ctx, NULL, "{augment}"); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 2187 | lysc_update_path(ctx, NULL, aug->nodeid); |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2188 | ret = lys_nodeid_mod_check(ctx, aug->nodeid, 1, &set, NULL, &mod); |
| 2189 | lysc_update_path(ctx, NULL, NULL); |
| 2190 | lysc_update_path(ctx, NULL, NULL); |
| 2191 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2192 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2193 | /* add this module into the target module augmented_by, if not there and implemented */ |
| 2194 | if ((lys_array_add_mod_ref(ctx, ctx->cur_mod, &mod->augmented_by) != LY_EEXIST) || |
| 2195 | !lys_precompile_mod_set_all_implemented(&set)) { |
| 2196 | LY_CHECK_GOTO(ret = ly_set_merge(&mod_set, &set, 0, NULL), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2197 | } |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2198 | ly_set_erase(&set, NULL); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2199 | } |
| 2200 | |
| 2201 | LY_ARRAY_FOR(mod_p->deviations, u) { |
| 2202 | /* get target module */ |
| 2203 | lysc_update_path(ctx, NULL, "{deviation}"); |
| 2204 | lysc_update_path(ctx, NULL, mod_p->deviations[u].nodeid); |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2205 | ret = lys_nodeid_mod_check(ctx, mod_p->deviations[u].nodeid, 1, &set, NULL, &mod); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2206 | lysc_update_path(ctx, NULL, NULL); |
| 2207 | lysc_update_path(ctx, NULL, NULL); |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2208 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2209 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2210 | /* add this module into the target module deviated_by, if not there and implemented */ |
| 2211 | if ((lys_array_add_mod_ref(ctx, ctx->cur_mod, &mod->deviated_by) != LY_EEXIST) || |
| 2212 | !lys_precompile_mod_set_all_implemented(&set)) { |
| 2213 | LY_CHECK_GOTO(ret = ly_set_merge(&mod_set, &set, 0, NULL), cleanup); |
| 2214 | } |
| 2215 | ly_set_erase(&set, NULL); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2216 | } |
| 2217 | |
| 2218 | /* the same for augments and deviations in submodules */ |
| 2219 | LY_ARRAY_FOR(mod_p->includes, v) { |
| 2220 | submod = mod_p->includes[v].submodule; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 2221 | LY_LIST_FOR(submod->augments, aug) { |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2222 | lysc_update_path(ctx, NULL, "{augment}"); |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 2223 | lysc_update_path(ctx, NULL, aug->nodeid); |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2224 | ret = lys_nodeid_mod_check(ctx, aug->nodeid, 1, &set, NULL, &mod); |
| 2225 | lysc_update_path(ctx, NULL, NULL); |
| 2226 | lysc_update_path(ctx, NULL, NULL); |
| 2227 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2228 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2229 | if ((lys_array_add_mod_ref(ctx, ctx->cur_mod, &mod->augmented_by) != LY_EEXIST) || |
| 2230 | !lys_precompile_mod_set_all_implemented(&set)) { |
| 2231 | LY_CHECK_GOTO(ret = ly_set_merge(&mod_set, &set, 0, NULL), cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2232 | } |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2233 | ly_set_erase(&set, NULL); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2234 | } |
| 2235 | |
| 2236 | LY_ARRAY_FOR(submod->deviations, u) { |
| 2237 | lysc_update_path(ctx, NULL, "{deviation}"); |
| 2238 | lysc_update_path(ctx, NULL, submod->deviations[u].nodeid); |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2239 | ret = lys_nodeid_mod_check(ctx, submod->deviations[u].nodeid, 1, &set, NULL, &mod); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2240 | lysc_update_path(ctx, NULL, NULL); |
| 2241 | lysc_update_path(ctx, NULL, NULL); |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2242 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2243 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2244 | if ((lys_array_add_mod_ref(ctx, ctx->cur_mod, &mod->deviated_by) != LY_EEXIST) || |
| 2245 | !lys_precompile_mod_set_all_implemented(&set)) { |
| 2246 | LY_CHECK_GOTO(ret = ly_set_merge(&mod_set, &set, 0, NULL), cleanup); |
| 2247 | } |
| 2248 | ly_set_erase(&set, NULL); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2249 | } |
| 2250 | } |
| 2251 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2252 | if (mod_set.count) { |
| 2253 | /* descending order to make sure the modules are implemented in the right order */ |
| 2254 | idx = mod_set.count; |
| 2255 | do { |
| 2256 | --idx; |
| 2257 | mod = mod_set.objs[idx]; |
| 2258 | |
| 2259 | if (mod == ctx->cur_mod) { |
| 2260 | /* will be applied normally later */ |
| 2261 | continue; |
| 2262 | } |
| 2263 | |
| 2264 | if (!mod->implemented) { |
| 2265 | /* implement (compile) the target module with our augments/deviations */ |
| 2266 | LY_CHECK_GOTO(ret = lys_set_implemented_r(mod, NULL, ctx->unres), cleanup); |
Michal Vasko | e0cd6d9 | 2021-04-23 13:44:40 +0200 | [diff] [blame] | 2267 | } else if (!ctx->unres->full_compilation) { |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2268 | /* target module was already compiled, we need to recompile it */ |
| 2269 | ctx->unres->recompile = 1; |
| 2270 | } |
Michal Vasko | e0cd6d9 | 2021-04-23 13:44:40 +0200 | [diff] [blame] | 2271 | /* else the module is implemented and was compiled in this compilation run or will yet be; |
| 2272 | * we actually do not need the module compiled now because its compiled nodes will not be accessed, |
| 2273 | * augments/deviations are applied during the target module compilation and the rest is in global unres */ |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2274 | |
| 2275 | if (ctx->unres->recompile) { |
| 2276 | /* we need some module recompiled and cannot continue */ |
| 2277 | goto cleanup; |
| 2278 | } |
| 2279 | } while (idx); |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2280 | } |
| 2281 | |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 2282 | cleanup: |
| 2283 | ly_set_erase(&set, NULL); |
| 2284 | ly_set_erase(&mod_set, NULL); |
| 2285 | return ret; |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 2286 | } |
| 2287 | |
| 2288 | void |
| 2289 | lys_precompile_augments_deviations_revert(struct ly_ctx *ctx, const struct lys_module *mod) |
| 2290 | { |
| 2291 | uint32_t i; |
| 2292 | LY_ARRAY_COUNT_TYPE u, count; |
| 2293 | struct lys_module *m; |
| 2294 | |
| 2295 | for (i = 0; i < ctx->list.count; ++i) { |
| 2296 | m = ctx->list.objs[i]; |
| 2297 | |
| 2298 | if (m->augmented_by) { |
| 2299 | count = LY_ARRAY_COUNT(m->augmented_by); |
| 2300 | for (u = 0; u < count; ++u) { |
| 2301 | if (m->augmented_by[u] == mod) { |
| 2302 | /* keep the order */ |
| 2303 | if (u < count - 1) { |
| 2304 | memmove(m->augmented_by + u, m->augmented_by + u + 1, (count - u) * sizeof *m->augmented_by); |
| 2305 | } |
| 2306 | LY_ARRAY_DECREMENT(m->augmented_by); |
| 2307 | break; |
| 2308 | } |
| 2309 | } |
| 2310 | if (!LY_ARRAY_COUNT(m->augmented_by)) { |
| 2311 | LY_ARRAY_FREE(m->augmented_by); |
| 2312 | m->augmented_by = NULL; |
| 2313 | } |
| 2314 | } |
| 2315 | |
| 2316 | if (m->deviated_by) { |
| 2317 | count = LY_ARRAY_COUNT(m->deviated_by); |
| 2318 | for (u = 0; u < count; ++u) { |
| 2319 | if (m->deviated_by[u] == mod) { |
| 2320 | /* keep the order */ |
| 2321 | if (u < count - 1) { |
| 2322 | memmove(m->deviated_by + u, m->deviated_by + u + 1, (count - u) * sizeof *m->deviated_by); |
| 2323 | } |
| 2324 | LY_ARRAY_DECREMENT(m->deviated_by); |
| 2325 | break; |
| 2326 | } |
| 2327 | } |
| 2328 | if (!LY_ARRAY_COUNT(m->deviated_by)) { |
| 2329 | LY_ARRAY_FREE(m->deviated_by); |
| 2330 | m->deviated_by = NULL; |
| 2331 | } |
| 2332 | } |
| 2333 | } |
| 2334 | } |