blob: c0265b029160792202c18f7e8e7f3190fcc0f7ff [file] [log] [blame]
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001/**
2 * @file schema_compile.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko19a09022021-06-15 11:54:08 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02005 * @brief Schema compilation.
6 *
Michal Vaskoedb0fa52022-10-04 10:36:00 +02007 * Copyright (c) 2015 - 2022 CESNET, z.s.p.o.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
16#define _GNU_SOURCE
17
18#include "schema_compile.h"
19
20#include <assert.h>
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020021#include <stddef.h>
22#include <stdint.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020027#include "compat.h"
28#include "context.h"
29#include "dict.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020030#include "in.h"
Radek Krejci47fab892020-11-05 17:02:41 +010031#include "log.h"
Michal Vasko8f702ee2024-02-20 15:44:24 +010032#include "ly_common.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020033#include "parser_schema.h"
34#include "path.h"
Radek Krejci0aa1f702021-04-01 16:16:19 +020035#include "plugins.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020036#include "plugins_exts.h"
Radek Krejci3e6632f2021-03-22 22:08:21 +010037#include "plugins_internal.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020038#include "plugins_types.h"
39#include "schema_compile_amend.h"
40#include "schema_compile_node.h"
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010041#include "schema_features.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020042#include "set.h"
43#include "tree.h"
44#include "tree_data.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020045#include "tree_schema.h"
Michal Vaskoc636ea42022-09-16 10:20:31 +020046#include "tree_schema_free.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020047#include "tree_schema_internal.h"
48#include "xpath.h"
49
Michal Vaskoa0ba01e2022-10-19 13:26:57 +020050void
51lysc_update_path(struct lysc_ctx *ctx, const struct lys_module *parent_module, const char *name)
52{
53 int len;
54 uint8_t nextlevel = 0; /* 0 - no starttag, 1 - '/' starttag, 2 - '=' starttag + '}' endtag */
55
56 if (!name) {
57 /* removing last path segment */
58 if (ctx->path[ctx->path_len - 1] == '}') {
59 for ( ; ctx->path[ctx->path_len] != '=' && ctx->path[ctx->path_len] != '{'; --ctx->path_len) {}
60 if (ctx->path[ctx->path_len] == '=') {
61 ctx->path[ctx->path_len++] = '}';
62 } else {
63 /* not a top-level special tag, remove also preceiding '/' */
64 goto remove_nodelevel;
65 }
66 } else {
67remove_nodelevel:
68 for ( ; ctx->path[ctx->path_len] != '/'; --ctx->path_len) {}
69 if (ctx->path_len == 0) {
70 /* top-level (last segment) */
71 ctx->path_len = 1;
72 }
73 }
74 /* set new terminating NULL-byte */
75 ctx->path[ctx->path_len] = '\0';
76 } else {
77 if (ctx->path_len > 1) {
78 if (!parent_module && (ctx->path[ctx->path_len - 1] == '}') && (ctx->path[ctx->path_len - 2] != '\'')) {
79 /* extension of the special tag */
80 nextlevel = 2;
81 --ctx->path_len;
82 } else {
83 /* there is already some path, so add next level */
84 nextlevel = 1;
85 }
86 } /* else the path is just initiated with '/', so do not add additional slash in case of top-level nodes */
87
88 if (nextlevel != 2) {
89 if ((parent_module && (parent_module == ctx->cur_mod)) || (!parent_module && (ctx->path_len > 1) && (name[0] == '{'))) {
90 /* module not changed, print the name unprefixed */
Michal Vasko7a266772024-01-23 11:02:38 +010091 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s",
92 nextlevel ? "/" : "", name);
Michal Vaskoa0ba01e2022-10-19 13:26:57 +020093 } else {
Michal Vasko7a266772024-01-23 11:02:38 +010094 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s:%s",
95 nextlevel ? "/" : "", ctx->cur_mod->name, name);
Michal Vaskoa0ba01e2022-10-19 13:26:57 +020096 }
97 } else {
98 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "='%s'}", name);
99 }
100 if (len >= LYSC_CTX_BUFSIZE - (int)ctx->path_len) {
101 /* output truncated */
102 ctx->path_len = LYSC_CTX_BUFSIZE - 1;
103 } else {
104 ctx->path_len += len;
105 }
106 }
107
Michal Vasko7a266772024-01-23 11:02:38 +0100108 ly_log_location_revert(0, 0, 1, 0);
109 ly_log_location(NULL, NULL, ctx->path, NULL);
Michal Vaskoa0ba01e2022-10-19 13:26:57 +0200110}
111
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200112/**
113 * @brief Fill in the prepared compiled extensions definition structure according to the parsed extension definition.
Michal Vasko193dacd2022-10-13 08:43:05 +0200114 *
115 * @param[in] ctx Compile context.
116 * @param[in] extp Parsed extension instance.
117 * @param[out] ext Compiled extension definition.
118 * @return LY_ERR value.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200119 */
120static LY_ERR
Michal Vasko193dacd2022-10-13 08:43:05 +0200121lys_compile_extension(struct lysc_ctx *ctx, struct lysp_ext_instance *extp, struct lysc_ext **ext)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200122{
123 LY_ERR ret = LY_SUCCESS;
Michal Vasko193dacd2022-10-13 08:43:05 +0200124 struct lysp_ext *ep = extp->def;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200125
Michal Vasko193dacd2022-10-13 08:43:05 +0200126 if (!ep->compiled) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200127 lysc_update_path(ctx, NULL, "{extension}");
Michal Vasko193dacd2022-10-13 08:43:05 +0200128 lysc_update_path(ctx, NULL, ep->name);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200129
130 /* compile the extension definition */
Michal Vasko193dacd2022-10-13 08:43:05 +0200131 *ext = ep->compiled = calloc(1, sizeof **ext);
Michal Vasko193dacd2022-10-13 08:43:05 +0200132 DUP_STRING_GOTO(ctx->ctx, ep->name, (*ext)->name, ret, cleanup);
133 DUP_STRING_GOTO(ctx->ctx, ep->argname, (*ext)->argname, ret, cleanup);
134 LY_CHECK_GOTO(ret = lysp_ext_find_definition(ctx->ctx, extp, (const struct lys_module **)&(*ext)->module, NULL),
135 cleanup);
Michal Vaskoc636ea42022-09-16 10:20:31 +0200136
137 /* compile nested extensions */
Michal Vasko193dacd2022-10-13 08:43:05 +0200138 COMPILE_EXTS_GOTO(ctx, ep->exts, (*ext)->exts, *ext, ret, cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200139
140 lysc_update_path(ctx, NULL, NULL);
141 lysc_update_path(ctx, NULL, NULL);
142
143 /* find extension definition plugin */
Michal Vasko193dacd2022-10-13 08:43:05 +0200144 (*ext)->plugin = extp->record ? (struct lyplg_ext *)&extp->record->plugin : NULL;
Michal Vasko54b11952022-06-08 12:29:39 +0200145 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200146
Michal Vasko193dacd2022-10-13 08:43:05 +0200147 *ext = ep->compiled;
Michal Vaskoc636ea42022-09-16 10:20:31 +0200148
Michal Vasko193dacd2022-10-13 08:43:05 +0200149cleanup:
Radek Krejci2efc45b2020-12-22 16:25:44 +0100150 if (ret) {
151 lysc_update_path(ctx, NULL, NULL);
152 lysc_update_path(ctx, NULL, NULL);
153 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200154 return ret;
155}
156
157LY_ERR
Michal Vasko193dacd2022-10-13 08:43:05 +0200158lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *extp, struct lysc_ext_instance *ext, void *parent)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200159{
Radek Krejci85ac8312021-03-03 20:21:33 +0100160 LY_ERR ret = LY_SUCCESS;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200161
Michal Vasko193dacd2022-10-13 08:43:05 +0200162 DUP_STRING_GOTO(ctx->ctx, extp->argument, ext->argument, ret, cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200163 ext->module = ctx->cur_mod;
164 ext->parent = parent;
Michal Vasko193dacd2022-10-13 08:43:05 +0200165 ext->parent_stmt = extp->parent_stmt;
166 ext->parent_stmt_index = extp->parent_stmt_index;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200167
Michal Vasko193dacd2022-10-13 08:43:05 +0200168 lysc_update_path(ctx, (ext->parent_stmt & LY_STMT_NODE_MASK) ? ((struct lysc_node *)ext->parent)->module : NULL,
169 "{extension}");
170 lysc_update_path(ctx, NULL, extp->name);
Michal Vaskofc2cd072021-02-24 13:17:17 +0100171
Michal Vasko193dacd2022-10-13 08:43:05 +0200172 /* compile extension if not already */
173 LY_CHECK_GOTO(ret = lys_compile_extension(ctx, extp, &ext->def), cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200174
Michal Vasko193dacd2022-10-13 08:43:05 +0200175 /* compile */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200176 if (ext->def->plugin && ext->def->plugin->compile) {
177 if (ext->argument) {
Radek Krejcia6016992021-03-03 10:13:41 +0100178 lysc_update_path(ctx, ext->module, ext->argument);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200179 }
Michal Vasko193dacd2022-10-13 08:43:05 +0200180 ret = ext->def->plugin->compile(ctx, extp, ext);
Radek Krejcicc21a4f2021-02-09 15:23:31 +0100181 if (ret == LY_ENOT) {
Michal Vaskoc636ea42022-09-16 10:20:31 +0200182 lysc_ext_instance_free(&ctx->free_ctx, ext);
Radek Krejcicc21a4f2021-02-09 15:23:31 +0100183 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200184 if (ext->argument) {
185 lysc_update_path(ctx, NULL, NULL);
186 }
Michal Vaskofc2cd072021-02-24 13:17:17 +0100187 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200188 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200189
190cleanup:
Radek Krejci2efc45b2020-12-22 16:25:44 +0100191 lysc_update_path(ctx, NULL, NULL);
Michal Vaskofc2cd072021-02-24 13:17:17 +0100192 lysc_update_path(ctx, NULL, NULL);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200193 return ret;
194}
195
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200196static void
Michal Vaskoc130e162021-10-19 11:30:00 +0200197lysc_unres_must_free(struct lysc_unres_must *m)
198{
199 LY_ARRAY_FREE(m->local_mods);
200 free(m);
201}
202
203static void
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200204lysc_unres_dflt_free(const struct ly_ctx *ctx, struct lysc_unres_dflt *r)
205{
206 assert(!r->dflt || !r->dflts);
207 if (r->dflt) {
208 lysp_qname_free((struct ly_ctx *)ctx, r->dflt);
209 free(r->dflt);
210 } else {
211 FREE_ARRAY((struct ly_ctx *)ctx, r->dflts, lysp_qname_free);
212 }
213 free(r);
214}
215
Michal Vasko193dacd2022-10-13 08:43:05 +0200216LY_ERR
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200217lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lysp_module *parsed_mod,
Michal Vasko9b232082022-06-07 10:59:31 +0200218 const struct lysp_ident *identities_p, struct lysc_ident **identities)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200219{
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100220 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoc636ea42022-09-16 10:20:31 +0200221 struct lysc_ctx cctx;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100222 struct lysc_ident *ident;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200223 LY_ERR ret = LY_SUCCESS;
224
225 assert(ctx_sc || ctx);
226
227 if (!ctx_sc) {
Michal Vaskoc636ea42022-09-16 10:20:31 +0200228 if (parsed_mod) {
Michal Vaskoedb0fa52022-10-04 10:36:00 +0200229 LYSC_CTX_INIT_PMOD(cctx, parsed_mod, NULL);
Michal Vaskoc636ea42022-09-16 10:20:31 +0200230 } else {
231 LYSC_CTX_INIT_CTX(cctx, ctx);
232 }
233 ctx_sc = &cctx;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200234 }
235
236 if (!identities_p) {
237 return LY_SUCCESS;
238 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200239
240 lysc_update_path(ctx_sc, NULL, "{identity}");
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200241 LY_ARRAY_FOR(identities_p, u) {
242 lysc_update_path(ctx_sc, NULL, identities_p[u].name);
243
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100244 /* add new compiled identity */
Michal Vasko9b232082022-06-07 10:59:31 +0200245 LY_ARRAY_NEW_GOTO(ctx_sc->ctx, *identities, ident, ret, done);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100246
247 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].name, ident->name, ret, done);
248 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].dsc, ident->dsc, ret, done);
249 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].ref, ident->ref, ret, done);
250 ident->module = ctx_sc->cur_mod;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200251 /* backlinks (derived) can be added no sooner than when all the identities in the current module are present */
Radek Krejciab430862021-03-02 20:13:40 +0100252 COMPILE_EXTS_GOTO(ctx_sc, identities_p[u].exts, ident->exts, ident, ret, done);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100253 ident->flags = identities_p[u].flags;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200254
255 lysc_update_path(ctx_sc, NULL, NULL);
256 }
257 lysc_update_path(ctx_sc, NULL, NULL);
Michal Vasko9b232082022-06-07 10:59:31 +0200258
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200259done:
Michal Vasko9b232082022-06-07 10:59:31 +0200260 if (ret) {
261 lysc_update_path(ctx_sc, NULL, NULL);
262 lysc_update_path(ctx_sc, NULL, NULL);
263 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200264 return ret;
265}
266
267/**
268 * @brief Check circular dependency of identities - identity MUST NOT reference itself (via their base statement).
269 *
270 * The function works in the same way as lys_compile_feature_circular_check() with different structures and error messages.
271 *
272 * @param[in] ctx Compile context for logging.
273 * @param[in] ident The base identity (its derived list is being extended by the identity being currently processed).
274 * @param[in] derived The list of derived identities of the identity being currently processed (not the one provided as @p ident)
275 * @return LY_SUCCESS if everything is ok.
276 * @return LY_EVALID if the identity is derived from itself.
277 */
278static LY_ERR
279lys_compile_identity_circular_check(struct lysc_ctx *ctx, struct lysc_ident *ident, struct lysc_ident **derived)
280{
281 LY_ERR ret = LY_SUCCESS;
282 LY_ARRAY_COUNT_TYPE u, v;
283 struct ly_set recursion = {0};
284 struct lysc_ident *drv;
285
286 if (!derived) {
287 return LY_SUCCESS;
288 }
289
290 for (u = 0; u < LY_ARRAY_COUNT(derived); ++u) {
291 if (ident == derived[u]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100292 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200293 "Identity \"%s\" is indirectly derived from itself.", ident->name);
294 ret = LY_EVALID;
295 goto cleanup;
296 }
297 ret = ly_set_add(&recursion, derived[u], 0, NULL);
298 LY_CHECK_GOTO(ret, cleanup);
299 }
300
301 for (v = 0; v < recursion.count; ++v) {
302 drv = recursion.objs[v];
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200303 for (u = 0; u < LY_ARRAY_COUNT(drv->derived); ++u) {
304 if (ident == drv->derived[u]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100305 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200306 "Identity \"%s\" is indirectly derived from itself.", ident->name);
307 ret = LY_EVALID;
308 goto cleanup;
309 }
310 ret = ly_set_add(&recursion, drv->derived[u], 0, NULL);
311 LY_CHECK_GOTO(ret, cleanup);
312 }
313 }
314
315cleanup:
316 ly_set_erase(&recursion, NULL);
317 return ret;
318}
319
320LY_ERR
321lys_compile_identity_bases(struct lysc_ctx *ctx, const struct lysp_module *base_pmod, const char **bases_p,
aPiecekf4a0a192021-08-03 15:14:17 +0200322 struct lysc_ident *ident, struct lysc_ident ***bases)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200323{
324 LY_ARRAY_COUNT_TYPE u, v;
325 const char *s, *name;
326 const struct lys_module *mod;
327 struct lysc_ident **idref;
328
aPiecekf4a0a192021-08-03 15:14:17 +0200329 assert(ident || bases);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200330
331 if ((LY_ARRAY_COUNT(bases_p) > 1) && (ctx->pmod->version < LYS_VERSION_1_1)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100332 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200333 "Multiple bases in %s are allowed only in YANG 1.1 modules.", ident ? "identity" : "identityref type");
334 return LY_EVALID;
335 }
336
337 LY_ARRAY_FOR(bases_p, u) {
338 s = strchr(bases_p[u], ':');
339 if (s) {
340 /* prefixed identity */
341 name = &s[1];
Radek Krejci8df109d2021-04-23 12:19:08 +0200342 mod = ly_resolve_prefix(ctx->ctx, bases_p[u], s - bases_p[u], LY_VALUE_SCHEMA, (void *)base_pmod);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200343 } else {
344 name = bases_p[u];
345 mod = base_pmod->mod;
346 }
347 if (!mod) {
348 if (ident) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100349 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200350 "Invalid prefix used for base (%s) of identity \"%s\".", bases_p[u], ident->name);
351 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100352 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200353 "Invalid prefix used for base (%s) of identityref.", bases_p[u]);
354 }
355 return LY_EVALID;
356 }
357
358 idref = NULL;
359 LY_ARRAY_FOR(mod->identities, v) {
360 if (!strcmp(name, mod->identities[v].name)) {
361 if (ident) {
362 if (ident == &mod->identities[v]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100363 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200364 "Identity \"%s\" is derived from itself.", ident->name);
365 return LY_EVALID;
366 }
367 LY_CHECK_RET(lys_compile_identity_circular_check(ctx, &mod->identities[v], ident->derived));
368 /* we have match! store the backlink */
369 LY_ARRAY_NEW_RET(ctx->ctx, mod->identities[v].derived, idref, LY_EMEM);
370 *idref = ident;
371 } else {
372 /* we have match! store the found identity */
373 LY_ARRAY_NEW_RET(ctx->ctx, *bases, idref, LY_EMEM);
374 *idref = &mod->identities[v];
375 }
376 break;
377 }
378 }
aPiecekf4a0a192021-08-03 15:14:17 +0200379 if (!idref) {
Radek Krejci10443f42021-03-28 17:40:35 +0200380 if (ident) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100381 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200382 "Unable to find base (%s) of identity \"%s\".", bases_p[u], ident->name);
383 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100384 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200385 "Unable to find base (%s) of identityref.", bases_p[u]);
386 }
387 return LY_EVALID;
388 }
389 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100390
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200391 return LY_SUCCESS;
392}
393
394/**
395 * @brief For the given array of identities, set the backlinks from all their base identities.
Michal Vasko193dacd2022-10-13 08:43:05 +0200396 *
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200397 * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes.
398 * @param[in] idents_p Array of identities definitions from the parsed schema structure.
aPiecekf4a0a192021-08-03 15:14:17 +0200399 * @param[in,out] idents Array of referencing identities to which the backlinks are supposed to be set.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200400 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
401 */
402static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100403lys_compile_identities_derived(struct lysc_ctx *ctx, struct lysp_ident *idents_p, struct lysc_ident **idents)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200404{
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100405 LY_ARRAY_COUNT_TYPE u, v;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200406
407 lysc_update_path(ctx, NULL, "{identity}");
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100408
aPiecekf3e2db82021-08-05 10:18:43 +0200409 for (u = 0; u < LY_ARRAY_COUNT(*idents); ++u) {
aPiecekf4a0a192021-08-03 15:14:17 +0200410 /* find matching parsed identity */
aPiecekf3e2db82021-08-05 10:18:43 +0200411 for (v = 0; v < LY_ARRAY_COUNT(idents_p); ++v) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100412 if (idents_p[v].name == (*idents)[u].name) {
413 break;
414 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100415 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100416
Michal Vaskodc6f84c2021-06-15 14:50:27 +0200417 if ((v == LY_ARRAY_COUNT(idents_p)) || !idents_p[v].bases) {
418 /* identity not found (it may be from a submodule) or identity without bases */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200419 continue;
420 }
Michal Vaskodc6f84c2021-06-15 14:50:27 +0200421
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100422 lysc_update_path(ctx, NULL, (*idents)[u].name);
aPiecekf4a0a192021-08-03 15:14:17 +0200423 LY_CHECK_RET(lys_compile_identity_bases(ctx, ctx->pmod, idents_p[v].bases, &(*idents)[u], NULL));
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200424 lysc_update_path(ctx, NULL, NULL);
425 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100426
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200427 lysc_update_path(ctx, NULL, NULL);
428 return LY_SUCCESS;
429}
430
Michal Vaskoe20599c2022-12-02 10:45:01 +0100431LY_ERR
432lys_compile_expr_implement(const struct ly_ctx *ctx, const struct lyxp_expr *expr, LY_VALUE_FORMAT format,
433 void *prefix_data, ly_bool implement, struct lys_glob_unres *unres, const struct lys_module **mod_p)
434{
435 uint32_t i;
436 const char *ptr, *start, **imp_f, *all_f[] = {"*", NULL};
437 const struct lys_module *mod;
438
439 assert(implement || mod_p);
440
Michal Vaskoaa548942023-06-08 12:23:14 +0200441 if (mod_p) {
442 *mod_p = NULL;
443 }
444
Michal Vaskoe20599c2022-12-02 10:45:01 +0100445 for (i = 0; i < expr->used; ++i) {
446 if ((expr->tokens[i] != LYXP_TOKEN_NAMETEST) && (expr->tokens[i] != LYXP_TOKEN_LITERAL)) {
447 /* token cannot have a prefix */
448 continue;
449 }
450
451 start = expr->expr + expr->tok_pos[i];
452 if (!(ptr = ly_strnchr(start, ':', expr->tok_len[i]))) {
453 /* token without a prefix */
454 continue;
455 }
456
457 if (!(mod = ly_resolve_prefix(ctx, start, ptr - start, format, prefix_data))) {
458 /* unknown prefix, do not care right now */
459 continue;
460 }
461
462 /* unimplemented module found */
463 if (!mod->implemented && !implement) {
464 /* should not be implemented now */
465 *mod_p = mod;
466 break;
467 }
468
469 if (!mod->implemented) {
470 /* implement if not implemented */
471 imp_f = (ctx->flags & LY_CTX_ENABLE_IMP_FEATURES) ? all_f : NULL;
472 LY_CHECK_RET(lys_implement((struct lys_module *)mod, imp_f, unres));
473 }
474 if (!mod->compiled) {
475 /* compile if not implemented before or only marked for compilation */
476 LY_CHECK_RET(lys_compile((struct lys_module *)mod, &unres->ds_unres));
477 }
478 }
479
480 return LY_SUCCESS;
481}
482
483/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200484 * @brief Check when for cyclic dependencies.
485 *
486 * @param[in] set Set with all the referenced nodes.
487 * @param[in] node Node whose "when" referenced nodes are in @p set.
488 * @return LY_ERR value
489 */
490static LY_ERR
491lys_compile_unres_when_cyclic(struct lyxp_set *set, const struct lysc_node *node)
492{
493 struct lyxp_set tmp_set;
494 struct lyxp_set_scnode *xp_scnode;
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200495 uint32_t i, j, idx;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200496 LY_ARRAY_COUNT_TYPE u;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200497 LY_ERR ret = LY_SUCCESS;
498
499 memset(&tmp_set, 0, sizeof tmp_set);
500
501 /* prepare in_ctx of the set */
502 for (i = 0; i < set->used; ++i) {
503 xp_scnode = &set->val.scnodes[i];
504
Radek Krejcif13b87b2020-12-01 22:02:17 +0100505 if (xp_scnode->in_ctx != LYXP_SET_SCNODE_START_USED) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200506 /* check node when, skip the context node (it was just checked) */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100507 xp_scnode->in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200508 }
509 }
510
511 for (i = 0; i < set->used; ++i) {
512 xp_scnode = &set->val.scnodes[i];
Radek Krejcif13b87b2020-12-01 22:02:17 +0100513 if (xp_scnode->in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200514 /* already checked */
515 continue;
516 }
517
Michal Vasko1a09b212021-05-06 13:00:10 +0200518 if ((xp_scnode->type != LYXP_NODE_ELEM) || !lysc_node_when(xp_scnode->scnode)) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200519 /* no when to check */
Michal Vasko1a09b212021-05-06 13:00:10 +0200520 xp_scnode->in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200521 continue;
522 }
523
524 node = xp_scnode->scnode;
525 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100526 struct lysc_when **when_list, *when;
527
Michal Vasko7a266772024-01-23 11:02:38 +0100528 LOG_LOCSET(node, NULL);
Radek Krejci9a3823e2021-01-27 20:26:46 +0100529 when_list = lysc_node_when(node);
530 LY_ARRAY_FOR(when_list, u) {
531 when = when_list[u];
Radek Krejci8df109d2021-04-23 12:19:08 +0200532 ret = lyxp_atomize(set->ctx, when->cond, node->module, LY_VALUE_SCHEMA_RESOLVED, when->prefixes,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200533 when->context, when->context, &tmp_set, LYXP_SCNODE_SCHEMA);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200534 if (ret != LY_SUCCESS) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100535 LOGVAL(set->ctx, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when->cond->expr);
Michal Vasko7a266772024-01-23 11:02:38 +0100536 LOG_LOCBACK(1, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200537 goto cleanup;
538 }
539
540 for (j = 0; j < tmp_set.used; ++j) {
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200541 if (tmp_set.val.scnodes[j].type != LYXP_NODE_ELEM) {
542 /* skip roots'n'stuff, no when, nothing to check */
Michal Vasko1a09b212021-05-06 13:00:10 +0200543 tmp_set.val.scnodes[j].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200544 continue;
545 }
546
547 /* try to find this node in our set */
548 if (lyxp_set_scnode_contains(set, tmp_set.val.scnodes[j].scnode, LYXP_NODE_ELEM, -1, &idx) &&
549 (set->val.scnodes[idx].in_ctx == LYXP_SET_SCNODE_START_USED)) {
550 LOGVAL(set->ctx, LYVE_SEMANTICS, "When condition cyclic dependency on the node \"%s\".",
551 tmp_set.val.scnodes[j].scnode->name);
552 ret = LY_EVALID;
Michal Vasko7a266772024-01-23 11:02:38 +0100553 LOG_LOCBACK(1, 0);
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200554 goto cleanup;
555 }
556
557 /* needs to be checked, if in both sets, will be ignored */
558 tmp_set.val.scnodes[j].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
559 }
560
561 if (when->context != node) {
562 /* node actually depends on this "when", not the context node */
563 assert(tmp_set.val.scnodes[0].scnode == when->context);
564 if (tmp_set.val.scnodes[0].in_ctx == LYXP_SET_SCNODE_START_USED) {
565 /* replace the non-traversed context node with the dependent node */
566 tmp_set.val.scnodes[0].scnode = (struct lysc_node *)node;
567 } else {
568 /* context node was traversed, so just add the dependent node */
569 ret = lyxp_set_scnode_insert_node(&tmp_set, node, LYXP_SET_SCNODE_START_USED, LYXP_AXIS_CHILD, NULL);
Michal Vasko7a266772024-01-23 11:02:38 +0100570 LY_CHECK_ERR_GOTO(ret, LOG_LOCBACK(1, 0), cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200571 }
572 }
573
574 /* merge this set into the global when set */
575 lyxp_set_scnode_merge(set, &tmp_set);
576 }
Michal Vasko7a266772024-01-23 11:02:38 +0100577 LOG_LOCBACK(1, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200578
579 /* check when of non-data parents as well */
580 node = node->parent;
581 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
582
583 /* this node when was checked (xp_scnode could have been reallocd) */
Michal Vasko60edc2f2021-07-20 09:18:02 +0200584 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200585 }
586
587cleanup:
588 lyxp_set_free_content(&tmp_set);
589 return ret;
590}
591
592LY_ERR
593lysc_check_status(struct lysc_ctx *ctx, uint16_t flags1, void *mod1, const char *name1, uint16_t flags2, void *mod2,
594 const char *name2)
595{
596 uint16_t flg1, flg2;
597
598 flg1 = (flags1 & LYS_STATUS_MASK) ? (flags1 & LYS_STATUS_MASK) : LYS_STATUS_CURR;
599 flg2 = (flags2 & LYS_STATUS_MASK) ? (flags2 & LYS_STATUS_MASK) : LYS_STATUS_CURR;
600
601 if ((flg1 < flg2) && (mod1 == mod2)) {
602 if (ctx) {
Michal Vasko23864e02021-06-24 09:23:58 +0200603 LOGVAL(ctx->ctx, LYVE_REFERENCE, "A %s definition \"%s\" is not allowed to reference %s definition \"%s\".",
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200604 flg1 == LYS_STATUS_CURR ? "current" : "deprecated", name1,
605 flg2 == LYS_STATUS_OBSLT ? "obsolete" : "deprecated", name2);
606 }
607 return LY_EVALID;
608 }
609
610 return LY_SUCCESS;
611}
612
Michal Vaskocfaff232020-10-20 09:35:14 +0200613/**
Michal Vaskoc130e162021-10-19 11:30:00 +0200614 * @brief Check when expressions of a node on a complete compiled schema tree.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200615 *
616 * @param[in] ctx Compile context.
Michal Vasko4ed3bd52022-12-02 10:28:04 +0100617 * @param[in] when When to check.
618 * @param[in] node Node with @p when.
Michal Vasko4ed3bd52022-12-02 10:28:04 +0100619 * @return LY_ERR value.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200620 */
621static LY_ERR
Michal Vaskoe20599c2022-12-02 10:45:01 +0100622lys_compile_unres_when(struct lysc_ctx *ctx, const struct lysc_when *when, const struct lysc_node *node)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200623{
Michal Vasko4ed3bd52022-12-02 10:28:04 +0100624 struct lyxp_set tmp_set = {0};
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200625 uint32_t i, opts;
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200626 struct lysc_node *schema;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200627 LY_ERR ret = LY_SUCCESS;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200628
Michal Vaskod1e53b92021-01-28 13:11:06 +0100629 opts = LYXP_SCNODE_SCHEMA | ((node->flags & LYS_IS_OUTPUT) ? LYXP_SCNODE_OUTPUT : 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200630
Michal Vasko4ed3bd52022-12-02 10:28:04 +0100631 /* check "when" */
632 ret = lyxp_atomize(ctx->ctx, when->cond, node->module, LY_VALUE_SCHEMA_RESOLVED, when->prefixes, when->context,
633 when->context, &tmp_set, opts);
634 if (ret) {
635 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when->cond->expr);
636 goto cleanup;
637 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200638
Michal Vasko4ed3bd52022-12-02 10:28:04 +0100639 ctx->path[0] = '\0';
640 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
641 for (i = 0; i < tmp_set.used; ++i) {
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200642 if (tmp_set.val.scnodes[i].type != LYXP_NODE_ELEM) {
643 /* skip roots'n'stuff */
644 continue;
645 } else if (tmp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START_USED) {
646 /* context node not actually traversed */
647 continue;
648 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200649
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200650 schema = tmp_set.val.scnodes[i].scnode;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200651
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200652 /* XPath expression cannot reference "lower" status than the node that has the definition */
653 if (lysc_check_status(NULL, when->flags, node->module, node->name, schema->flags, schema->module,
654 schema->name)) {
655 LOGWRN(ctx->ctx, "When condition \"%s\" may be referencing %s node \"%s\".", when->cond->expr,
656 (schema->flags == LYS_STATUS_OBSLT) ? "obsolete" : "deprecated", schema->name);
657 }
658
659 /* check dummy node children/value accessing */
660 if (lysc_data_parent(schema) == node) {
661 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "When condition is accessing its own conditional node children.");
662 ret = LY_EVALID;
663 goto cleanup;
664 } else if ((schema == node) && (tmp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL)) {
665 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "When condition is accessing its own conditional node value.");
666 ret = LY_EVALID;
667 goto cleanup;
668 }
669 }
670
671 if (when->context != node) {
672 /* node actually depends on this "when", not the context node */
673 assert(tmp_set.val.scnodes[0].scnode == when->context);
674 if (tmp_set.val.scnodes[0].in_ctx == LYXP_SET_SCNODE_START_USED) {
675 /* replace the non-traversed context node with the dependent node */
676 tmp_set.val.scnodes[0].scnode = (struct lysc_node *)node;
677 } else {
678 /* context node was traversed, so just add the dependent node */
679 ret = lyxp_set_scnode_insert_node(&tmp_set, node, LYXP_SET_SCNODE_START_USED, LYXP_AXIS_CHILD, NULL);
680 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200681 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200682 }
683
Michal Vasko4ed3bd52022-12-02 10:28:04 +0100684 /* check cyclic dependencies */
685 ret = lys_compile_unres_when_cyclic(&tmp_set, node);
686 LY_CHECK_GOTO(ret, cleanup);
687
Michal Vaskoc130e162021-10-19 11:30:00 +0200688cleanup:
689 lyxp_set_free_content(&tmp_set);
Michal Vaskoc130e162021-10-19 11:30:00 +0200690 return ret;
691}
692
693/**
694 * @brief Check must expressions of a node on a complete compiled schema tree.
695 *
696 * @param[in] ctx Compile context.
697 * @param[in] node Node to check.
698 * @param[in] local_mods Sized array of local modules for musts of @p node at the same index.
Michal Vaskoaa548942023-06-08 12:23:14 +0200699 * @return LY_ERR value.
Michal Vaskoc130e162021-10-19 11:30:00 +0200700 */
701static LY_ERR
Michal Vaskoaa548942023-06-08 12:23:14 +0200702lys_compile_unres_must(struct lysc_ctx *ctx, const struct lysc_node *node, const struct lysp_module **local_mods)
Michal Vaskoc130e162021-10-19 11:30:00 +0200703{
704 struct lyxp_set tmp_set;
705 uint32_t i, opts;
706 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoaa548942023-06-08 12:23:14 +0200707 struct lysc_must *musts;
Michal Vaskoc130e162021-10-19 11:30:00 +0200708 LY_ERR ret = LY_SUCCESS;
Michal Vaskoc130e162021-10-19 11:30:00 +0200709 uint16_t flg;
710
Michal Vasko7a266772024-01-23 11:02:38 +0100711 LOG_LOCSET(node, NULL);
Michal Vaskoc130e162021-10-19 11:30:00 +0200712
713 memset(&tmp_set, 0, sizeof tmp_set);
714 opts = LYXP_SCNODE_SCHEMA | ((node->flags & LYS_IS_OUTPUT) ? LYXP_SCNODE_OUTPUT : 0);
715
716 musts = lysc_node_musts(node);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200717 LY_ARRAY_FOR(musts, u) {
Michal Vaskocfaff232020-10-20 09:35:14 +0200718 /* check "must" */
Radek Krejci8df109d2021-04-23 12:19:08 +0200719 ret = lyxp_atomize(ctx->ctx, musts[u].cond, node->module, LY_VALUE_SCHEMA_RESOLVED, musts[u].prefixes, node,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200720 node, &tmp_set, opts);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200721 if (ret) {
Michal Vasko7c3134d2022-07-14 10:57:59 +0200722 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid must condition \"%s\".", musts[u].cond->expr);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200723 goto cleanup;
724 }
725
726 ctx->path[0] = '\0';
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100727 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200728 for (i = 0; i < tmp_set.used; ++i) {
729 /* skip roots'n'stuff */
730 if (tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko7c3134d2022-07-14 10:57:59 +0200731 struct lysc_node *schema = tmp_set.val.scnodes[i].scnode;
732
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200733 /* XPath expression cannot reference "lower" status than the node that has the definition */
Michal Vaskoc130e162021-10-19 11:30:00 +0200734 if (local_mods[u]->mod == node->module) {
735 /* use flags of the context node since the definition is local */
736 flg = node->flags;
737 } else {
738 /* definition is foreign (deviation, refine), always current */
739 flg = LYS_STATUS_CURR;
740 }
Michal Vasko7c3134d2022-07-14 10:57:59 +0200741 if (lysc_check_status(NULL, flg, local_mods[u]->mod, node->name, schema->flags, schema->module,
742 schema->name)) {
743 LOGWRN(ctx->ctx, "Must condition \"%s\" may be referencing %s node \"%s\".", musts[u].cond->expr,
744 (schema->flags == LYS_STATUS_OBSLT) ? "obsolete" : "deprecated", schema->name);
745 break;
746 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200747 }
748 }
749
750 lyxp_set_free_content(&tmp_set);
751 }
752
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200753cleanup:
754 lyxp_set_free_content(&tmp_set);
Michal Vasko7a266772024-01-23 11:02:38 +0100755 LOG_LOCBACK(1, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200756 return ret;
757}
758
759/**
Michal Vaskof4fa90d2021-11-11 15:05:19 +0100760 * @brief Remove all disabled bits/enums from a sized array.
761 *
762 * @param[in] ctx Context with the dictionary.
763 * @param[in] items Sized array of bits/enums.
764 */
765static void
Michal Vaskoc636ea42022-09-16 10:20:31 +0200766lys_compile_unres_disabled_bitenum_remove(struct lysf_ctx *ctx, struct lysc_type_bitenum_item *items)
Michal Vaskof4fa90d2021-11-11 15:05:19 +0100767{
768 LY_ARRAY_COUNT_TYPE u = 0, last_u;
769
770 while (u < LY_ARRAY_COUNT(items)) {
771 if (items[u].flags & LYS_DISABLED) {
772 /* free the disabled item */
773 lysc_enum_item_free(ctx, &items[u]);
774
775 /* replace it with the following items */
776 last_u = LY_ARRAY_COUNT(items) - 1;
777 if (u < last_u) {
778 memmove(items + u, items + u + 1, (last_u - u) * sizeof *items);
779 }
780
781 /* one item less */
782 LY_ARRAY_DECREMENT(items);
783 continue;
784 }
785
786 ++u;
787 }
788}
789
790/**
791 * @brief Find and remove all disabled bits/enums in a leaf/leaf-list type.
792 *
793 * @param[in] ctx Compile context.
794 * @param[in] leaf Leaf/leaf-list to check.
795 * @return LY_ERR value
796 */
797static LY_ERR
798lys_compile_unres_disabled_bitenum(struct lysc_ctx *ctx, struct lysc_node_leaf *leaf)
799{
800 struct lysc_type **t;
801 LY_ARRAY_COUNT_TYPE u, count;
802 struct lysc_type_enum *ent;
Michal Vasko28864d52023-03-23 08:07:46 +0100803 ly_bool has_value = 0;
Michal Vaskof4fa90d2021-11-11 15:05:19 +0100804
805 if (leaf->type->basetype == LY_TYPE_UNION) {
806 t = ((struct lysc_type_union *)leaf->type)->types;
807 count = LY_ARRAY_COUNT(t);
808 } else {
809 t = &leaf->type;
810 count = 1;
811 }
812 for (u = 0; u < count; ++u) {
813 if ((t[u]->basetype == LY_TYPE_BITS) || (t[u]->basetype == LY_TYPE_ENUM)) {
814 /* remove all disabled items */
815 ent = (struct lysc_type_enum *)(t[u]);
Michal Vaskoc636ea42022-09-16 10:20:31 +0200816 lys_compile_unres_disabled_bitenum_remove(&ctx->free_ctx, ent->enums);
Michal Vaskof4fa90d2021-11-11 15:05:19 +0100817
Michal Vasko28864d52023-03-23 08:07:46 +0100818 if (LY_ARRAY_COUNT(ent->enums)) {
819 has_value = 1;
Michal Vaskof4fa90d2021-11-11 15:05:19 +0100820 }
Michal Vasko28864d52023-03-23 08:07:46 +0100821 } else {
822 has_value = 1;
Michal Vaskof4fa90d2021-11-11 15:05:19 +0100823 }
824 }
825
Michal Vasko28864d52023-03-23 08:07:46 +0100826 if (!has_value) {
827 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Node \"%s\" without any (or all disabled) valid values.", leaf->name);
828 return LY_EVALID;
829 }
830
Michal Vaskof4fa90d2021-11-11 15:05:19 +0100831 return LY_SUCCESS;
832}
833
834/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200835 * @brief Check leafref for its target existence on a complete compiled schema tree.
836 *
837 * @param[in] ctx Compile context.
838 * @param[in] node Context node for the leafref.
839 * @param[in] lref Leafref to check/resolve.
Michal Vaskoc130e162021-10-19 11:30:00 +0200840 * @param[in] local_mod Local module for the leafref type.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200841 * @return LY_ERR value.
842 */
843static LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +0100844lys_compile_unres_leafref(struct lysc_ctx *ctx, const struct lysc_node *node, struct lysc_type_leafref *lref,
Michal Vaskoaa548942023-06-08 12:23:14 +0200845 const struct lysp_module *local_mod)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200846{
Michal Vaskod1e53b92021-01-28 13:11:06 +0100847 const struct lysc_node *target = NULL;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200848 struct ly_path *p;
849 struct lysc_type *type;
Michal Vaskoc130e162021-10-19 11:30:00 +0200850 uint16_t flg;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200851
852 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
853
Michal Vaskof2a793b2023-03-13 11:56:50 +0100854 if (lref->realtype) {
855 /* already resolved, may happen (shared union typedef with a leafref) */
856 return LY_SUCCESS;
857 }
858
Michal Vaskoed725d72021-06-23 12:03:45 +0200859 /* try to find the target, current module is that of the context node (RFC 7950 6.4.1 second bullet) */
Michal Vaskoedb0fa52022-10-04 10:36:00 +0200860 LY_CHECK_RET(ly_path_compile_leafref(ctx->ctx, node, ctx->ext, lref->path,
Michal Vaskod1e53b92021-01-28 13:11:06 +0100861 (node->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY,
Michal Vasko24fc4d12021-07-12 14:41:20 +0200862 LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, &p));
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200863
864 /* get the target node */
865 target = p[LY_ARRAY_COUNT(p) - 1].node;
866 ly_path_free(node->module->ctx, p);
867
868 if (!(target->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100869 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid leafref path \"%s\" - target node is %s instead of leaf or leaf-list.",
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200870 lref->path->expr, lys_nodetype2str(target->nodetype));
871 return LY_EVALID;
872 }
873
874 /* check status */
875 ctx->path[0] = '\0';
876 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
877 ctx->path_len = strlen(ctx->path);
Michal Vaskoc130e162021-10-19 11:30:00 +0200878 if (node->module == local_mod->mod) {
879 /* use flags of the context node since the definition is local */
880 flg = node->flags;
881 } else {
882 /* definition is foreign (deviation), always current */
883 flg = LYS_STATUS_CURR;
884 }
885 if (lysc_check_status(ctx, flg, local_mod->mod, node->name, target->flags, target->module, target->name)) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200886 return LY_EVALID;
887 }
888 ctx->path_len = 1;
889 ctx->path[1] = '\0';
890
891 /* check config */
892 if (lref->require_instance) {
Michal Vaskod1e53b92021-01-28 13:11:06 +0100893 if ((node->flags & LYS_CONFIG_W) && (target->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100894 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid leafref path \"%s\" - target is supposed"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200895 " to represent configuration data (as the leafref does), but it does not.", lref->path->expr);
896 return LY_EVALID;
897 }
898 }
899
Michal Vaskod15c7de2022-05-09 15:34:09 +0200900 /* check for circular chain of leafrefs */
901 for (type = ((struct lysc_node_leaf *)target)->type;
902 type && (type->basetype == LY_TYPE_LEAFREF);
903 type = ((struct lysc_type_leafref *)type)->realtype) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200904 if (type == (struct lysc_type *)lref) {
905 /* circular chain detected */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100906 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid leafref path \"%s\" - circular chain of leafrefs detected.",
907 lref->path->expr);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200908 return LY_EVALID;
909 }
910 }
911
Michal Vaskod15c7de2022-05-09 15:34:09 +0200912 /* store the type */
913 lref->realtype = ((struct lysc_node_leaf *)target)->type;
914 ++lref->realtype->refcount;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200915 return LY_SUCCESS;
916}
917
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200918/**
919 * @brief Compile default value(s) for leaf or leaf-list expecting a complete compiled schema tree.
920 *
921 * @param[in] ctx Compile context.
922 * @param[in] node Leaf or leaf-list to compile the default value(s) for.
923 * @param[in] type Type of the default value.
924 * @param[in] dflt Default value.
925 * @param[in] dflt_pmod Parsed module of the @p dflt to resolve possible prefixes.
926 * @param[in,out] storage Storage for the compiled default value.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100927 * @param[in,out] unres Global unres structure for newly implemented modules.
Michal Vaskoaa548942023-06-08 12:23:14 +0200928 * @return LY_ERECOMPILE if the whole dep set needs to be recompiled for the value to be checked.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200929 * @return LY_ERR value.
930 */
931static LY_ERR
932lys_compile_unres_dflt(struct lysc_ctx *ctx, struct lysc_node *node, struct lysc_type *type, const char *dflt,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100933 const struct lysp_module *dflt_pmod, struct lyd_value *storage, struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200934{
935 LY_ERR ret;
Michal Vasko25d6ad02020-10-22 12:20:22 +0200936 uint32_t options;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200937 struct ly_err_item *err = NULL;
938
Radek Krejci0b013302021-03-29 15:22:32 +0200939 options = (ctx->ctx->flags & LY_CTX_REF_IMPLEMENTED) ? LYPLG_TYPE_STORE_IMPLEMENT : 0;
Radek Krejci8df109d2021-04-23 12:19:08 +0200940 ret = type->plugin->store(ctx->ctx, type, dflt, strlen(dflt), options, LY_VALUE_SCHEMA, (void *)dflt_pmod,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100941 LYD_HINT_SCHEMA, node, storage, unres, &err);
Michal Vasko1ccbf542021-04-19 11:35:00 +0200942 if (ret == LY_ERECOMPILE) {
943 /* fine, but we need to recompile */
944 return LY_ERECOMPILE;
945 } else if (ret == LY_EINCOMPLETE) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200946 /* we have no data so we will not be resolving it */
947 ret = LY_SUCCESS;
948 }
949
950 if (ret) {
Michal Vasko7a266772024-01-23 11:02:38 +0100951 LOG_LOCSET(node, NULL);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200952 if (err) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100953 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid default - value does not fit the type (%s).", err->msg);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200954 ly_err_free(err);
955 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100956 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid default - value does not fit the type.");
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200957 }
Michal Vasko7a266772024-01-23 11:02:38 +0100958 LOG_LOCBACK(1, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200959 return ret;
960 }
961
Michal Vasko04338d92021-09-01 07:58:14 +0200962 LY_ATOMIC_INC_BARRIER(((struct lysc_type *)storage->realtype)->refcount);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200963 return LY_SUCCESS;
964}
965
966/**
967 * @brief Compile default value of a leaf expecting a complete compiled schema tree.
968 *
969 * @param[in] ctx Compile context.
970 * @param[in] leaf Leaf that the default value is for.
971 * @param[in] dflt Default value to compile.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100972 * @param[in,out] unres Global unres structure for newly implemented modules.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200973 * @return LY_ERR value.
974 */
975static LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +0100976lys_compile_unres_leaf_dlft(struct lysc_ctx *ctx, struct lysc_node_leaf *leaf, struct lysp_qname *dflt,
977 struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200978{
979 LY_ERR ret;
980
981 assert(!leaf->dflt);
982
983 if (leaf->flags & (LYS_MAND_TRUE | LYS_KEY)) {
984 /* ignore default values for keys and mandatory leaves */
985 return LY_SUCCESS;
986 }
987
988 /* allocate the default value */
989 leaf->dflt = calloc(1, sizeof *leaf->dflt);
990 LY_CHECK_ERR_RET(!leaf->dflt, LOGMEM(ctx->ctx), LY_EMEM);
991
992 /* store the default value */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100993 ret = lys_compile_unres_dflt(ctx, &leaf->node, leaf->type, dflt->str, dflt->mod, leaf->dflt, unres);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200994 if (ret) {
995 free(leaf->dflt);
996 leaf->dflt = NULL;
997 }
998
999 return ret;
1000}
1001
1002/**
1003 * @brief Compile default values of a leaf-list expecting a complete compiled schema tree.
1004 *
1005 * @param[in] ctx Compile context.
1006 * @param[in] llist Leaf-list that the default value(s) are for.
1007 * @param[in] dflt Default value to compile, in case of a single value.
1008 * @param[in] dflts Sized array of default values, in case of more values.
Michal Vasko405cc9e2020-12-01 12:01:27 +01001009 * @param[in,out] unres Global unres structure for newly implemented modules.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001010 * @return LY_ERR value.
1011 */
1012static LY_ERR
1013lys_compile_unres_llist_dflts(struct lysc_ctx *ctx, struct lysc_node_leaflist *llist, struct lysp_qname *dflt,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001014 struct lysp_qname *dflts, struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001015{
1016 LY_ERR ret;
1017 LY_ARRAY_COUNT_TYPE orig_count, u, v;
1018
1019 assert(dflt || dflts);
1020
Radek Krejcic7d13e32020-12-09 12:32:24 +01001021 /* in case there were already some defaults and we are adding new by deviations */
1022 orig_count = LY_ARRAY_COUNT(llist->dflts);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001023
1024 /* allocate new items */
Radek Krejcic7d13e32020-12-09 12:32:24 +01001025 LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts, orig_count + (dflts ? LY_ARRAY_COUNT(dflts) : 1), LY_EMEM);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001026
1027 /* fill each new default value */
1028 if (dflts) {
1029 LY_ARRAY_FOR(dflts, u) {
1030 llist->dflts[orig_count + u] = calloc(1, sizeof **llist->dflts);
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001031 ret = lys_compile_unres_dflt(ctx, &llist->node, llist->type, dflts[u].str, dflts[u].mod,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001032 llist->dflts[orig_count + u], unres);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001033 LY_CHECK_ERR_RET(ret, free(llist->dflts[orig_count + u]), ret);
1034 LY_ARRAY_INCREMENT(llist->dflts);
1035 }
1036 } else {
1037 llist->dflts[orig_count] = calloc(1, sizeof **llist->dflts);
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001038 ret = lys_compile_unres_dflt(ctx, &llist->node, llist->type, dflt->str, dflt->mod,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001039 llist->dflts[orig_count], unres);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001040 LY_CHECK_ERR_RET(ret, free(llist->dflts[orig_count]), ret);
1041 LY_ARRAY_INCREMENT(llist->dflts);
1042 }
1043
1044 /* check default value uniqueness */
1045 if (llist->flags & LYS_CONFIG_W) {
1046 /* configuration data values must be unique - so check the default values */
1047 for (u = orig_count; u < LY_ARRAY_COUNT(llist->dflts); ++u) {
1048 for (v = 0; v < u; ++v) {
aPiecek0a6705b2023-11-14 14:20:58 +01001049 if (!llist->dflts[u]->realtype->plugin->compare(ctx->ctx, llist->dflts[u], llist->dflts[v])) {
Radek Krejcia6016992021-03-03 10:13:41 +01001050 lysc_update_path(ctx, llist->parent ? llist->parent->module : NULL, llist->name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001051 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Configuration leaf-list has multiple defaults of the same value \"%s\".",
Michal Vasko7b3a00e2023-08-09 11:58:03 +02001052 (char *)llist->dflts[u]->realtype->plugin->print(ctx->ctx, llist->dflts[u], LY_VALUE_CANON,
1053 NULL, NULL, NULL));
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001054 lysc_update_path(ctx, NULL, NULL);
1055 return LY_EVALID;
1056 }
1057 }
1058 }
1059 }
1060
1061 return LY_SUCCESS;
1062}
1063
Michal Vaskof4258e12021-06-15 12:11:42 +02001064/**
aPiecek732cd142021-07-07 16:29:59 +02001065 * @brief Iteratively get all leafrefs from @p node
1066 * if the node is of type union, otherwise just return the leafref.
1067 *
1068 * @param[in] node Node that may contain the leafref.
1069 * @param[in,out] index Value that is passed between function calls.
1070 * For each new node, initialize value of the @p index to 0, otherwise
1071 * do not modify the value between calls.
1072 * @return Pointer to the leafref or next leafref, otherwise NULL.
1073 */
1074static struct lysc_type_leafref *
1075lys_type_leafref_next(const struct lysc_node *node, uint64_t *index)
1076{
1077 struct lysc_type_leafref *ret = NULL;
1078 struct lysc_type_union *uni;
1079 struct lysc_type *leaf_type;
1080
1081 assert(node->nodetype & LYD_NODE_TERM);
1082
1083 leaf_type = ((struct lysc_node_leaf *)node)->type;
1084 if (leaf_type->basetype == LY_TYPE_UNION) {
1085 uni = (struct lysc_type_union *)leaf_type;
1086
1087 /* find next union leafref */
1088 while (*index < LY_ARRAY_COUNT(uni->types)) {
1089 if (uni->types[*index]->basetype == LY_TYPE_LEAFREF) {
1090 ret = (struct lysc_type_leafref *)uni->types[*index];
1091 ++(*index);
1092 break;
1093 }
1094
1095 ++(*index);
1096 }
1097 } else {
1098 /* return just the single leafref */
1099 if (*index == 0) {
1100 ++(*index);
1101 assert(leaf_type->basetype == LY_TYPE_LEAFREF);
1102 ret = (struct lysc_type_leafref *)leaf_type;
1103 }
1104 }
1105
1106 return ret;
1107}
1108
1109/**
Michal Vaskoaa548942023-06-08 12:23:14 +02001110 * @brief Implement all referenced modules by leafrefs, when and must conditions.
1111 *
1112 * @param[in] ctx libyang context.
1113 * @param[in] unres Global unres structure with the sets to resolve.
1114 * @return LY_SUCCESS on success.
1115 * @return LY_ERECOMPILE if the whole dep set needs to be recompiled with the new implemented modules.
1116 * @return LY_ERR value on error.
1117 */
1118static LY_ERR
1119lys_compile_unres_depset_implement(struct ly_ctx *ctx, struct lys_glob_unres *unres)
1120{
1121 struct lys_depset_unres *ds_unres = &unres->ds_unres;
1122 struct lysc_type_leafref *lref;
1123 const struct lys_module *mod;
1124 LY_ARRAY_COUNT_TYPE u;
1125 struct lysc_unres_leafref *l;
1126 struct lysc_unres_when *w;
1127 struct lysc_unres_must *m;
1128 struct lysc_must *musts;
1129 ly_bool not_implemented;
1130 uint32_t di = 0, li = 0, wi = 0, mi = 0;
1131
1132implement_all:
1133 /* disabled leafrefs - even those because we need to check their target exists */
1134 while (di < ds_unres->disabled_leafrefs.count) {
1135 l = ds_unres->disabled_leafrefs.objs[di];
1136
1137 u = 0;
1138 while ((lref = lys_type_leafref_next(l->node, &u))) {
1139 LY_CHECK_RET(lys_compile_expr_implement(ctx, lref->path, LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, 1, unres, NULL));
1140 }
1141
1142 ++di;
1143 }
1144
1145 /* leafrefs */
1146 while (li < ds_unres->leafrefs.count) {
1147 l = ds_unres->leafrefs.objs[li];
1148
1149 u = 0;
1150 while ((lref = lys_type_leafref_next(l->node, &u))) {
1151 LY_CHECK_RET(lys_compile_expr_implement(ctx, lref->path, LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, 1, unres, NULL));
1152 }
1153
1154 ++li;
1155 }
1156
1157 /* when conditions */
1158 while (wi < ds_unres->whens.count) {
1159 w = ds_unres->whens.objs[wi];
1160
1161 LY_CHECK_RET(lys_compile_expr_implement(ctx, w->when->cond, LY_VALUE_SCHEMA_RESOLVED, w->when->prefixes,
1162 ctx->flags & LY_CTX_REF_IMPLEMENTED, unres, &mod));
1163 if (mod) {
1164 LOGWRN(ctx, "When condition \"%s\" check skipped because referenced module \"%s\" is not implemented.",
1165 w->when->cond->expr, mod->name);
1166
1167 /* remove from the set to skip the check */
1168 ly_set_rm_index(&ds_unres->whens, wi, free);
1169 continue;
1170 }
1171
1172 ++wi;
1173 }
1174
1175 /* must conditions */
1176 while (mi < ds_unres->musts.count) {
1177 m = ds_unres->musts.objs[mi];
1178
1179 not_implemented = 0;
1180 musts = lysc_node_musts(m->node);
1181 LY_ARRAY_FOR(musts, u) {
1182 LY_CHECK_RET(lys_compile_expr_implement(ctx, musts[u].cond, LY_VALUE_SCHEMA_RESOLVED, musts[u].prefixes,
1183 ctx->flags & LY_CTX_REF_IMPLEMENTED, unres, &mod));
1184 if (mod) {
1185 LOGWRN(ctx, "Must condition \"%s\" check skipped because referenced module \"%s\" is not implemented.",
1186 musts[u].cond->expr, mod->name);
1187
1188 /* need to implement modules from all the expressions */
1189 not_implemented = 1;
1190 }
1191 }
1192
1193 if (not_implemented) {
1194 /* remove from the set to skip the check */
1195 lysc_unres_must_free(m);
1196 ly_set_rm_index(&ds_unres->musts, mi, NULL);
1197 continue;
1198 }
1199
1200 ++mi;
1201 }
1202
1203 if ((di < ds_unres->disabled_leafrefs.count) || (li < ds_unres->leafrefs.count) || (wi < ds_unres->whens.count)) {
1204 /* new items in the sets */
1205 goto implement_all;
1206 }
1207
1208 return LY_SUCCESS;
1209}
1210
1211/**
Michal Vasko93b9b242024-03-19 09:14:30 +01001212 * @brief Check that a disabled node (to be freed) can be freed and is not referenced.
1213 *
1214 * @param[in] node Disabled node to check.
1215 * @return LY_ERR value.
1216 */
1217static LY_ERR
1218lys_compile_unres_check_disabled(const struct lysc_node *node)
1219{
1220 const struct lysc_node *parent;
1221 const struct lysc_node_list *slist;
1222 LY_ARRAY_COUNT_TYPE u, v;
1223
1224 if (node->flags & LYS_KEY) {
1225 LOG_LOCSET(node, NULL);
1226 LOGVAL(node->module->ctx, LYVE_REFERENCE, "Key \"%s\" is disabled.", node->name);
1227 LOG_LOCBACK(1, 0);
1228 return LY_EVALID;
1229 }
1230
1231 for (parent = node->parent; parent; parent = parent->parent) {
1232 if (parent->nodetype != LYS_LIST) {
1233 continue;
1234 }
1235
1236 /* check list uniques */
1237 slist = (struct lysc_node_list *)parent;
1238 LY_ARRAY_FOR(slist->uniques, u) {
1239 LY_ARRAY_FOR(slist->uniques[u], v) {
1240 if (slist->uniques[u][v] == (struct lysc_node_leaf *)node) {
1241 LOG_LOCSET(node, NULL);
1242 LOGVAL(node->module->ctx, LYVE_REFERENCE, "Disabled node \"%s\" is referenced as unique in the list \"%s\".",
1243 node->name, slist->name);
1244 LOG_LOCBACK(1, 0);
1245 return LY_EVALID;
1246 }
1247 }
1248 }
1249 }
1250
1251 return LY_SUCCESS;
1252}
1253
1254/**
Michal Vaskof4258e12021-06-15 12:11:42 +02001255 * @brief Finish dependency set compilation by resolving all the unres sets.
1256 *
1257 * @param[in] ctx libyang context.
1258 * @param[in] unres Global unres structure with the sets to resolve.
1259 * @return LY_SUCCESS on success.
1260 * @return LY_ERECOMPILE if the dep set needs to be recompiled.
1261 * @return LY_ERR value on error.
1262 */
1263static LY_ERR
1264lys_compile_unres_depset(struct ly_ctx *ctx, struct lys_glob_unres *unres)
Michal Vasko405cc9e2020-12-01 12:01:27 +01001265{
Michal Vaskoaa548942023-06-08 12:23:14 +02001266 LY_ERR ret = LY_SUCCESS;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001267 struct lysc_node *node;
aPiecek732cd142021-07-07 16:29:59 +02001268 struct lysc_type *typeiter;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001269 struct lysc_type_leafref *lref;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001270 struct lysc_ctx cctx = {0};
1271 struct lys_depset_unres *ds_unres = &unres->ds_unres;
aPiecekd7bd52d2021-07-08 08:59:59 +02001272 struct ly_path *path;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001273 LY_ARRAY_COUNT_TYPE v;
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001274 struct lysc_unres_leafref *l;
Michal Vasko4ed3bd52022-12-02 10:28:04 +01001275 struct lysc_unres_when *w;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001276 struct lysc_unres_must *m;
Michal Vaskoe20599c2022-12-02 10:45:01 +01001277 struct lysc_unres_dflt *d;
aPiecekd7bd52d2021-07-08 08:59:59 +02001278 uint32_t i, processed_leafrefs = 0;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001279
aPiecekd7bd52d2021-07-08 08:59:59 +02001280resolve_all:
Michal Vaskoaa548942023-06-08 12:23:14 +02001281 /* implement all referenced modules to get final ds_unres set */
1282 if ((ret = lys_compile_unres_depset_implement(ctx, unres))) {
1283 goto cleanup;
1284 }
1285
1286 /* check disabled leafrefs */
aPiecekc6526b42021-07-12 15:21:39 +02001287 while (ds_unres->disabled_leafrefs.count) {
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001288 /* remember index, it can change before we get to free this item */
1289 i = ds_unres->disabled_leafrefs.count - 1;
1290 l = ds_unres->disabled_leafrefs.objs[i];
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001291 LYSC_CTX_INIT_PMOD(cctx, l->node->module->parsed, l->ext);
aPiecekc6526b42021-07-12 15:21:39 +02001292
Michal Vasko7a266772024-01-23 11:02:38 +01001293 LOG_LOCSET(l->node, NULL);
aPiecekc6526b42021-07-12 15:21:39 +02001294 v = 0;
Michal Vaskoc130e162021-10-19 11:30:00 +02001295 while ((ret == LY_SUCCESS) && (lref = lys_type_leafref_next(l->node, &v))) {
Michal Vaskoaa548942023-06-08 12:23:14 +02001296 ret = lys_compile_unres_leafref(&cctx, l->node, lref, l->local_mod);
aPiecekc6526b42021-07-12 15:21:39 +02001297 }
Michal Vasko7a266772024-01-23 11:02:38 +01001298 LOG_LOCBACK(1, 0);
Michal Vaskoc636ea42022-09-16 10:20:31 +02001299 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001300
1301 ly_set_rm_index(&ds_unres->disabled_leafrefs, i, free);
aPiecekc6526b42021-07-12 15:21:39 +02001302 }
Michal Vaskoa23e1d92021-07-13 12:04:16 +02001303
Michal Vasko4ed3bd52022-12-02 10:28:04 +01001304 /* for leafref, we need 2 rounds - first detects circular chain by storing the first referred type (which
1305 * can be also leafref, in case it is already resolved, go through the chain and check that it does not
1306 * point to the starting leafref type). The second round stores the first non-leafref type for later data validation.
1307 * Also do the same check for set of the disabled leafrefs, but without the second round. */
aPiecekd7bd52d2021-07-08 08:59:59 +02001308 for (i = processed_leafrefs; i < ds_unres->leafrefs.count; ++i) {
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001309 l = ds_unres->leafrefs.objs[i];
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001310 LYSC_CTX_INIT_PMOD(cctx, l->node->module->parsed, l->ext);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001311
Michal Vasko7a266772024-01-23 11:02:38 +01001312 LOG_LOCSET(l->node, NULL);
aPiecek732cd142021-07-07 16:29:59 +02001313 v = 0;
Michal Vaskoc130e162021-10-19 11:30:00 +02001314 while ((ret == LY_SUCCESS) && (lref = lys_type_leafref_next(l->node, &v))) {
Michal Vaskoaa548942023-06-08 12:23:14 +02001315 ret = lys_compile_unres_leafref(&cctx, l->node, lref, l->local_mod);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001316 }
Michal Vasko7a266772024-01-23 11:02:38 +01001317 LOG_LOCBACK(1, 0);
Michal Vaskoc636ea42022-09-16 10:20:31 +02001318 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001319 }
aPiecekd7bd52d2021-07-08 08:59:59 +02001320 for (i = processed_leafrefs; i < ds_unres->leafrefs.count; ++i) {
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001321 l = ds_unres->leafrefs.objs[i];
Radek Krejci2efc45b2020-12-22 16:25:44 +01001322
Michal Vasko405cc9e2020-12-01 12:01:27 +01001323 /* store pointer to the real type */
aPiecek732cd142021-07-07 16:29:59 +02001324 v = 0;
Michal Vaskoc130e162021-10-19 11:30:00 +02001325 while ((lref = lys_type_leafref_next(l->node, &v))) {
aPiecek732cd142021-07-07 16:29:59 +02001326 for (typeiter = lref->realtype;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001327 typeiter->basetype == LY_TYPE_LEAFREF;
1328 typeiter = ((struct lysc_type_leafref *)typeiter)->realtype) {}
Michal Vaskod15c7de2022-05-09 15:34:09 +02001329
Michal Vaskoc636ea42022-09-16 10:20:31 +02001330 lysc_type_free(&cctx.free_ctx, lref->realtype);
aPiecek732cd142021-07-07 16:29:59 +02001331 lref->realtype = typeiter;
Michal Vaskod15c7de2022-05-09 15:34:09 +02001332 ++lref->realtype->refcount;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001333 }
1334
Michal Vaskoe20599c2022-12-02 10:45:01 +01001335 /* if 'goto' will be used on the 'resolve_all' label, then the current leafref will not be processed again */
aPiecekd7bd52d2021-07-08 08:59:59 +02001336 processed_leafrefs++;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001337 }
1338
Michal Vaskoaa548942023-06-08 12:23:14 +02001339 /* check when, the referenced modules must be implemented now */
Michal Vaskoc130e162021-10-19 11:30:00 +02001340 while (ds_unres->whens.count) {
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001341 i = ds_unres->whens.count - 1;
Michal Vasko4ed3bd52022-12-02 10:28:04 +01001342 w = ds_unres->whens.objs[i];
1343 LYSC_CTX_INIT_PMOD(cctx, w->node->module->parsed, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001344
Michal Vaskoe6943a02024-02-27 09:04:07 +01001345 LOG_LOCSET(w->node, NULL);
Michal Vaskoe20599c2022-12-02 10:45:01 +01001346 ret = lys_compile_unres_when(&cctx, w->when, w->node);
Michal Vaskoe6943a02024-02-27 09:04:07 +01001347 LOG_LOCBACK(1, 0);
Michal Vaskoc636ea42022-09-16 10:20:31 +02001348 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001349
Michal Vasko4ed3bd52022-12-02 10:28:04 +01001350 free(w);
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001351 ly_set_rm_index(&ds_unres->whens, i, NULL);
Michal Vaskoc130e162021-10-19 11:30:00 +02001352 }
1353
1354 /* check must */
1355 while (ds_unres->musts.count) {
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001356 i = ds_unres->musts.count - 1;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001357 m = ds_unres->musts.objs[i];
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001358 LYSC_CTX_INIT_PMOD(cctx, m->node->module->parsed, m->ext);
Michal Vaskoc130e162021-10-19 11:30:00 +02001359
Michal Vasko7a266772024-01-23 11:02:38 +01001360 LOG_LOCSET(m->node, NULL);
Michal Vaskoaa548942023-06-08 12:23:14 +02001361 ret = lys_compile_unres_must(&cctx, m->node, m->local_mods);
Michal Vasko7a266772024-01-23 11:02:38 +01001362 LOG_LOCBACK(1, 0);
Michal Vaskoc636ea42022-09-16 10:20:31 +02001363 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskoc130e162021-10-19 11:30:00 +02001364
1365 lysc_unres_must_free(m);
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001366 ly_set_rm_index(&ds_unres->musts, i, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001367 }
1368
Michal Vaskof4fa90d2021-11-11 15:05:19 +01001369 /* remove disabled enums/bits */
Michal Vasko5eaf7322021-11-22 15:58:26 +01001370 while (ds_unres->disabled_bitenums.count) {
1371 i = ds_unres->disabled_bitenums.count - 1;
Michal Vaskof4fa90d2021-11-11 15:05:19 +01001372 node = ds_unres->disabled_bitenums.objs[i];
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001373 LYSC_CTX_INIT_PMOD(cctx, node->module->parsed, NULL);
Michal Vaskof4fa90d2021-11-11 15:05:19 +01001374
Michal Vasko7a266772024-01-23 11:02:38 +01001375 LOG_LOCSET(node, NULL);
Michal Vaskof4fa90d2021-11-11 15:05:19 +01001376 ret = lys_compile_unres_disabled_bitenum(&cctx, (struct lysc_node_leaf *)node);
Michal Vasko7a266772024-01-23 11:02:38 +01001377 LOG_LOCBACK(1, 0);
Michal Vaskoc636ea42022-09-16 10:20:31 +02001378 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof4fa90d2021-11-11 15:05:19 +01001379
1380 ly_set_rm_index(&ds_unres->disabled_bitenums, i, NULL);
1381 }
1382
Michal Vasko405cc9e2020-12-01 12:01:27 +01001383 /* finish incomplete default values compilation */
Michal Vaskof4258e12021-06-15 12:11:42 +02001384 while (ds_unres->dflts.count) {
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001385 i = ds_unres->dflts.count - 1;
Michal Vaskoe20599c2022-12-02 10:45:01 +01001386 d = ds_unres->dflts.objs[i];
1387 LYSC_CTX_INIT_PMOD(cctx, d->leaf->module->parsed, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001388
Michal Vasko7a266772024-01-23 11:02:38 +01001389 LOG_LOCSET(&d->leaf->node, NULL);
Michal Vaskoe20599c2022-12-02 10:45:01 +01001390 if (d->leaf->nodetype == LYS_LEAF) {
1391 ret = lys_compile_unres_leaf_dlft(&cctx, d->leaf, d->dflt, unres);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001392 } else {
Michal Vaskoe20599c2022-12-02 10:45:01 +01001393 ret = lys_compile_unres_llist_dflts(&cctx, d->llist, d->dflt, d->dflts, unres);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001394 }
Michal Vasko7a266772024-01-23 11:02:38 +01001395 LOG_LOCBACK(1, 0);
Michal Vaskoc636ea42022-09-16 10:20:31 +02001396 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001397
Michal Vaskoe20599c2022-12-02 10:45:01 +01001398 lysc_unres_dflt_free(ctx, d);
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001399 ly_set_rm_index(&ds_unres->dflts, i, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001400 }
1401
Michal Vaskoaa548942023-06-08 12:23:14 +02001402 /* some unres items may have been added by the default values */
aPiecekc6526b42021-07-12 15:21:39 +02001403 if ((processed_leafrefs != ds_unres->leafrefs.count) || ds_unres->disabled_leafrefs.count ||
Michal Vaskoc130e162021-10-19 11:30:00 +02001404 ds_unres->whens.count || ds_unres->musts.count || ds_unres->dflts.count) {
aPiecekd7bd52d2021-07-08 08:59:59 +02001405 goto resolve_all;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001406 }
1407
Michal Vasko30ab8e72021-04-19 12:47:52 +02001408 /* finally, remove all disabled nodes */
Michal Vaskof4258e12021-06-15 12:11:42 +02001409 for (i = 0; i < ds_unres->disabled.count; ++i) {
1410 node = ds_unres->disabled.snodes[i];
Michal Vasko93b9b242024-03-19 09:14:30 +01001411 ret = lys_compile_unres_check_disabled(node);
1412 LY_CHECK_GOTO(ret, cleanup);
1413
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001414 LYSC_CTX_INIT_PMOD(cctx, node->module->parsed, NULL);
Michal Vasko30ab8e72021-04-19 12:47:52 +02001415
Michal Vaskoc636ea42022-09-16 10:20:31 +02001416 lysc_node_free(&cctx.free_ctx, node, 1);
Michal Vasko30ab8e72021-04-19 12:47:52 +02001417 }
1418
aPiecekd7bd52d2021-07-08 08:59:59 +02001419 /* also check if the leafref target has not been disabled */
1420 for (i = 0; i < ds_unres->leafrefs.count; ++i) {
Michal Vaskoa91d87e2021-10-19 11:58:57 +02001421 l = ds_unres->leafrefs.objs[i];
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001422 LYSC_CTX_INIT_PMOD(cctx, l->node->module->parsed, l->ext);
aPiecekd7bd52d2021-07-08 08:59:59 +02001423
1424 v = 0;
Michal Vaskoc130e162021-10-19 11:30:00 +02001425 while ((lref = lys_type_leafref_next(l->node, &v))) {
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001426 ret = ly_path_compile_leafref(cctx.ctx, l->node, cctx.ext, lref->path,
Michal Vaskoc130e162021-10-19 11:30:00 +02001427 (l->node->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY,
aPiecekd7bd52d2021-07-08 08:59:59 +02001428 LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, &path);
Michal Vaskoc130e162021-10-19 11:30:00 +02001429 ly_path_free(l->node->module->ctx, path);
aPiecekd7bd52d2021-07-08 08:59:59 +02001430
1431 assert(ret != LY_ERECOMPILE);
1432 if (ret) {
Michal Vasko7a266772024-01-23 11:02:38 +01001433 LOG_LOCSET(l->node, NULL);
Michal Vaskoe02e7402021-07-23 08:29:28 +02001434 LOGVAL(ctx, LYVE_REFERENCE, "Target of leafref \"%s\" cannot be referenced because it is disabled.",
Michal Vaskoc130e162021-10-19 11:30:00 +02001435 l->node->name);
Michal Vasko7a266772024-01-23 11:02:38 +01001436 LOG_LOCBACK(1, 0);
Michal Vaskoc636ea42022-09-16 10:20:31 +02001437 ret = LY_EVALID;
1438 goto cleanup;
aPiecekd7bd52d2021-07-08 08:59:59 +02001439 }
1440 }
1441 }
1442
Michal Vaskoc636ea42022-09-16 10:20:31 +02001443cleanup:
1444 lysf_ctx_erase(&cctx.free_ctx);
1445 return ret;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001446}
1447
Michal Vaskof4258e12021-06-15 12:11:42 +02001448/**
1449 * @brief Erase dep set unres.
1450 *
1451 * @param[in] ctx libyang context.
1452 * @param[in] unres Global unres structure with the sets to resolve.
1453 */
1454static void
1455lys_compile_unres_depset_erase(const struct ly_ctx *ctx, struct lys_glob_unres *unres)
Michal Vasko405cc9e2020-12-01 12:01:27 +01001456{
1457 uint32_t i;
1458
Michal Vasko4ed3bd52022-12-02 10:28:04 +01001459 ly_set_erase(&unres->ds_unres.whens, free);
Michal Vaskoc130e162021-10-19 11:30:00 +02001460 for (i = 0; i < unres->ds_unres.musts.count; ++i) {
1461 lysc_unres_must_free(unres->ds_unres.musts.objs[i]);
1462 }
1463 ly_set_erase(&unres->ds_unres.musts, NULL);
1464 ly_set_erase(&unres->ds_unres.leafrefs, free);
Michal Vaskof4258e12021-06-15 12:11:42 +02001465 for (i = 0; i < unres->ds_unres.dflts.count; ++i) {
1466 lysc_unres_dflt_free(ctx, unres->ds_unres.dflts.objs[i]);
Michal Vaskodf6319c2021-06-10 14:41:05 +02001467 }
Michal Vaskof4258e12021-06-15 12:11:42 +02001468 ly_set_erase(&unres->ds_unres.dflts, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001469 ly_set_erase(&unres->ds_unres.disabled, NULL);
Michal Vaskof4fa90d2021-11-11 15:05:19 +01001470 ly_set_erase(&unres->ds_unres.disabled_leafrefs, free);
1471 ly_set_erase(&unres->ds_unres.disabled_bitenums, NULL);
Michal Vaskof4258e12021-06-15 12:11:42 +02001472}
1473
Michal Vasko709f9a52021-07-21 10:51:59 +02001474/**
1475 * @brief Compile all flagged modules in a dependency set, recursively if recompilation is needed.
1476 *
1477 * @param[in] ctx libyang context.
1478 * @param[in] dep_set Dependency set to compile.
1479 * @param[in,out] unres Global unres to use.
1480 * @return LY_ERR value.
1481 */
1482static LY_ERR
1483lys_compile_depset_r(struct ly_ctx *ctx, struct ly_set *dep_set, struct lys_glob_unres *unres)
Michal Vaskof4258e12021-06-15 12:11:42 +02001484{
1485 LY_ERR ret = LY_SUCCESS;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001486 struct lysf_ctx fctx = {.ctx = ctx};
Michal Vaskof4258e12021-06-15 12:11:42 +02001487 struct lys_module *mod;
1488 uint32_t i;
1489
1490 for (i = 0; i < dep_set->count; ++i) {
1491 mod = dep_set->objs[i];
1492 if (!mod->to_compile) {
1493 /* skip */
1494 continue;
1495 }
1496 assert(mod->implemented);
1497
1498 /* free the compiled module, if any */
Michal Vaskoc636ea42022-09-16 10:20:31 +02001499 lysc_module_free(&fctx, mod->compiled);
Michal Vaskof4258e12021-06-15 12:11:42 +02001500 mod->compiled = NULL;
1501
1502 /* (re)compile the module */
1503 LY_CHECK_GOTO(ret = lys_compile(mod, &unres->ds_unres), cleanup);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001504 }
Michal Vaskof4258e12021-06-15 12:11:42 +02001505
1506 /* resolve dep set unres */
1507 ret = lys_compile_unres_depset(ctx, unres);
1508 if (ret == LY_ERECOMPILE) {
1509 /* new module is implemented, discard current dep set unres and recompile the whole dep set */
1510 lys_compile_unres_depset_erase(ctx, unres);
Michal Vasko709f9a52021-07-21 10:51:59 +02001511 return lys_compile_depset_r(ctx, dep_set, unres);
Michal Vaskof4258e12021-06-15 12:11:42 +02001512 } else if (ret) {
1513 /* error */
1514 goto cleanup;
1515 }
1516
1517 /* success, unset the flags of all the modules in the dep set */
1518 for (i = 0; i < dep_set->count; ++i) {
1519 mod = dep_set->objs[i];
1520 mod->to_compile = 0;
1521 }
1522
1523cleanup:
1524 lys_compile_unres_depset_erase(ctx, unres);
Michal Vaskoc636ea42022-09-16 10:20:31 +02001525 lysf_ctx_erase(&fctx);
Michal Vaskof4258e12021-06-15 12:11:42 +02001526 return ret;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001527}
1528
Michal Vasko6a4ef772022-02-08 15:07:44 +01001529/**
1530 * @brief Check if-feature of all features of all modules in a dep set.
1531 *
1532 * @param[in] dep_set Dep set to check.
1533 * @return LY_ERR value.
1534 */
1535static LY_ERR
1536lys_compile_depset_check_features(struct ly_set *dep_set)
1537{
1538 struct lys_module *mod;
1539 uint32_t i;
1540
1541 for (i = 0; i < dep_set->count; ++i) {
1542 mod = dep_set->objs[i];
1543 if (!mod->to_compile) {
1544 /* skip */
1545 continue;
1546 }
1547
1548 /* check features of this module */
1549 LY_CHECK_RET(lys_check_features(mod->parsed));
1550 }
1551
1552 return LY_SUCCESS;
1553}
1554
Michal Vasko709f9a52021-07-21 10:51:59 +02001555LY_ERR
1556lys_compile_depset_all(struct ly_ctx *ctx, struct lys_glob_unres *unres)
1557{
1558 uint32_t i;
1559
1560 for (i = 0; i < unres->dep_sets.count; ++i) {
Michal Vasko6a4ef772022-02-08 15:07:44 +01001561 LY_CHECK_RET(lys_compile_depset_check_features(unres->dep_sets.objs[i]));
Michal Vasko709f9a52021-07-21 10:51:59 +02001562 LY_CHECK_RET(lys_compile_depset_r(ctx, unres->dep_sets.objs[i], unres));
1563 }
1564
1565 return LY_SUCCESS;
1566}
1567
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001568/**
Michal Vasko405cc9e2020-12-01 12:01:27 +01001569 * @brief Finish compilation of all the module unres sets in a compile context.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001570 *
1571 * @param[in] ctx Compile context with unres sets.
1572 * @return LY_ERR value.
1573 */
1574static LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +01001575lys_compile_unres_mod(struct lysc_ctx *ctx)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001576{
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001577 struct lysc_augment *aug;
1578 struct lysc_deviation *dev;
Michal Vasko1ade6f12021-04-19 11:32:45 +02001579 struct lys_module *orig_mod = ctx->cur_mod;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001580 uint32_t i;
1581
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001582 /* check that all augments were applied */
1583 for (i = 0; i < ctx->augs.count; ++i) {
1584 aug = ctx->augs.objs[i];
Michal Vasko1ade6f12021-04-19 11:32:45 +02001585 ctx->cur_mod = aug->aug_pmod->mod;
Michal Vaskoa0ba01e2022-10-19 13:26:57 +02001586 if (aug->ext) {
1587 lysc_update_path(ctx, NULL, "{extension}");
1588 lysc_update_path(ctx, NULL, aug->ext->name);
1589 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001590 lysc_update_path(ctx, NULL, "{augment}");
Michal Vasko8824a6e2024-01-19 12:42:21 +01001591 lysc_update_path(ctx, NULL, aug->nodeid->str);
Michal Vaskoa0ba01e2022-10-19 13:26:57 +02001592 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Augment%s target node \"%s\" from module \"%s\" was not found.",
Michal Vasko8824a6e2024-01-19 12:42:21 +01001593 aug->ext ? " extension" : "", aug->nodeid->str, LYSP_MODULE_NAME(aug->aug_pmod));
Michal Vasko1ade6f12021-04-19 11:32:45 +02001594 ctx->cur_mod = orig_mod;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001595 lysc_update_path(ctx, NULL, NULL);
1596 lysc_update_path(ctx, NULL, NULL);
Michal Vaskoa0ba01e2022-10-19 13:26:57 +02001597 if (aug->ext) {
1598 lysc_update_path(ctx, NULL, NULL);
1599 lysc_update_path(ctx, NULL, NULL);
1600 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001601 }
1602 if (ctx->augs.count) {
1603 return LY_ENOTFOUND;
1604 }
1605
1606 /* check that all deviations were applied */
1607 for (i = 0; i < ctx->devs.count; ++i) {
1608 dev = ctx->devs.objs[i];
Radek Krejci2efc45b2020-12-22 16:25:44 +01001609 lysc_update_path(ctx, NULL, "{deviation}");
Michal Vasko8824a6e2024-01-19 12:42:21 +01001610 lysc_update_path(ctx, NULL, dev->nodeid->str);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001611 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Deviation(s) target node \"%s\" from module \"%s\" was not found.",
Michal Vasko8824a6e2024-01-19 12:42:21 +01001612 dev->nodeid->str, LYSP_MODULE_NAME(dev->dev_pmods[0]));
Radek Krejci2efc45b2020-12-22 16:25:44 +01001613 lysc_update_path(ctx, NULL, NULL);
1614 lysc_update_path(ctx, NULL, NULL);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001615 }
1616 if (ctx->devs.count) {
1617 return LY_ENOTFOUND;
1618 }
1619
1620 return LY_SUCCESS;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001621}
1622
1623/**
Michal Vasko405cc9e2020-12-01 12:01:27 +01001624 * @brief Erase all the module unres sets in a compile context.
1625 *
1626 * @param[in] ctx Compile context with unres sets.
1627 * @param[in] error Whether the compilation finished with an error or not.
1628 */
1629static void
1630lys_compile_unres_mod_erase(struct lysc_ctx *ctx, ly_bool error)
1631{
1632 uint32_t i;
1633
1634 ly_set_erase(&ctx->groupings, NULL);
1635 ly_set_erase(&ctx->tpdf_chain, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001636
1637 if (!error) {
1638 /* there can be no leftover deviations or augments */
1639 LY_CHECK_ERR_RET(ctx->augs.count, LOGINT(ctx->ctx), );
1640 LY_CHECK_ERR_RET(ctx->devs.count, LOGINT(ctx->ctx), );
1641
1642 ly_set_erase(&ctx->augs, NULL);
1643 ly_set_erase(&ctx->devs, NULL);
1644 ly_set_erase(&ctx->uses_augs, NULL);
1645 ly_set_erase(&ctx->uses_rfns, NULL);
1646 } else {
1647 for (i = 0; i < ctx->augs.count; ++i) {
1648 lysc_augment_free(ctx->ctx, ctx->augs.objs[i]);
1649 }
1650 ly_set_erase(&ctx->augs, NULL);
1651 for (i = 0; i < ctx->devs.count; ++i) {
1652 lysc_deviation_free(ctx->ctx, ctx->devs.objs[i]);
1653 }
1654 ly_set_erase(&ctx->devs, NULL);
1655 for (i = 0; i < ctx->uses_augs.count; ++i) {
1656 lysc_augment_free(ctx->ctx, ctx->uses_augs.objs[i]);
1657 }
1658 ly_set_erase(&ctx->uses_augs, NULL);
1659 for (i = 0; i < ctx->uses_rfns.count; ++i) {
1660 lysc_refine_free(ctx->ctx, ctx->uses_rfns.objs[i]);
1661 }
1662 ly_set_erase(&ctx->uses_rfns, NULL);
1663 }
1664}
1665
Michal Vaskod39bea42021-06-14 10:42:49 +02001666LY_ERR
Michal Vaskof4258e12021-06-15 12:11:42 +02001667lys_compile(struct lys_module *mod, struct lys_depset_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001668{
Michal Vaskoc636ea42022-09-16 10:20:31 +02001669 struct lysc_ctx ctx;
Michal Vasko0b395e12021-04-23 13:43:07 +02001670 struct lysc_module *mod_c = NULL;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001671 struct lysp_module *sp;
1672 struct lysp_submodule *submod;
1673 struct lysp_node *pnode;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001674 struct lysp_node_grp *grp;
1675 LY_ARRAY_COUNT_TYPE u;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001676 LY_ERR ret = LY_SUCCESS;
1677
1678 LY_CHECK_ARG_RET(NULL, mod, mod->parsed, !mod->compiled, mod->ctx, LY_EINVAL);
1679
Michal Vaskof4258e12021-06-15 12:11:42 +02001680 assert(mod->implemented && mod->to_compile);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001681
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001682 sp = mod->parsed;
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001683 LYSC_CTX_INIT_PMOD(ctx, sp, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001684 ctx.unres = unres;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001685
Michal Vasko0b395e12021-04-23 13:43:07 +02001686 ++mod->ctx->change_count;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001687 mod->compiled = mod_c = calloc(1, sizeof *mod_c);
1688 LY_CHECK_ERR_RET(!mod_c, LOGMEM(mod->ctx), LY_EMEM);
1689 mod_c->mod = mod;
1690
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001691 /* compile augments and deviations of our module from other modules so they can be applied during compilation */
Michal Vasko1ccbf542021-04-19 11:35:00 +02001692 LY_CHECK_GOTO(ret = lys_precompile_own_augments(&ctx), cleanup);
1693 LY_CHECK_GOTO(ret = lys_precompile_own_deviations(&ctx), cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001694
1695 /* data nodes */
1696 LY_LIST_FOR(sp->data, pnode) {
Michal Vasko1ccbf542021-04-19 11:35:00 +02001697 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL), cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001698 }
1699
Radek Krejci2a9fc652021-01-22 17:44:34 +01001700 /* top-level RPCs */
1701 LY_LIST_FOR((struct lysp_node *)sp->rpcs, pnode) {
Michal Vasko1ccbf542021-04-19 11:35:00 +02001702 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL), cleanup);
Radek Krejci2a9fc652021-01-22 17:44:34 +01001703 }
1704
1705 /* top-level notifications */
1706 LY_LIST_FOR((struct lysp_node *)sp->notifs, pnode) {
Michal Vasko1ccbf542021-04-19 11:35:00 +02001707 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL), cleanup);
Radek Krejci2a9fc652021-01-22 17:44:34 +01001708 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001709
Michal Vasko193dacd2022-10-13 08:43:05 +02001710 /* module extension instances */
Michal Vasko1ccbf542021-04-19 11:35:00 +02001711 COMPILE_EXTS_GOTO(&ctx, sp->exts, mod_c->exts, mod_c, ret, cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001712
1713 /* the same for submodules */
1714 LY_ARRAY_FOR(sp->includes, u) {
1715 submod = sp->includes[u].submodule;
1716 ctx.pmod = (struct lysp_module *)submod;
1717
1718 LY_LIST_FOR(submod->data, pnode) {
1719 ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL);
Michal Vasko1ccbf542021-04-19 11:35:00 +02001720 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001721 }
1722
Radek Krejci2a9fc652021-01-22 17:44:34 +01001723 LY_LIST_FOR((struct lysp_node *)submod->rpcs, pnode) {
1724 ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL);
Michal Vasko1ccbf542021-04-19 11:35:00 +02001725 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci2a9fc652021-01-22 17:44:34 +01001726 }
1727
1728 LY_LIST_FOR((struct lysp_node *)submod->notifs, pnode) {
1729 ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL);
Michal Vasko1ccbf542021-04-19 11:35:00 +02001730 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci2a9fc652021-01-22 17:44:34 +01001731 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001732
Michal Vasko1ccbf542021-04-19 11:35:00 +02001733 COMPILE_EXTS_GOTO(&ctx, submod->exts, mod_c->exts, mod_c, ret, cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001734 }
Michal Vasko12606ee2020-11-25 17:05:11 +01001735 ctx.pmod = sp;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001736
1737 /* validate non-instantiated groupings from the parsed schema,
1738 * without it we would accept even the schemas with invalid grouping specification */
Michal Vasko7c565922021-06-10 14:58:27 +02001739 ctx.compile_opts |= LYS_COMPILE_GROUPING;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001740 LY_LIST_FOR(sp->groupings, grp) {
1741 if (!(grp->flags & LYS_USED_GRP)) {
Michal Vasko1ccbf542021-04-19 11:35:00 +02001742 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, NULL, grp), cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001743 }
1744 }
1745 LY_LIST_FOR(sp->data, pnode) {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001746 LY_LIST_FOR((struct lysp_node_grp *)lysp_node_groupings(pnode), grp) {
1747 if (!(grp->flags & LYS_USED_GRP)) {
Michal Vasko1ccbf542021-04-19 11:35:00 +02001748 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, grp), cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001749 }
1750 }
1751 }
1752 LY_ARRAY_FOR(sp->includes, u) {
1753 submod = sp->includes[u].submodule;
1754 ctx.pmod = (struct lysp_module *)submod;
1755
Radek Krejci2a9fc652021-01-22 17:44:34 +01001756 LY_LIST_FOR(submod->groupings, grp) {
1757 if (!(grp->flags & LYS_USED_GRP)) {
Michal Vasko1ccbf542021-04-19 11:35:00 +02001758 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, NULL, grp), cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001759 }
1760 }
1761 LY_LIST_FOR(submod->data, pnode) {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001762 LY_LIST_FOR((struct lysp_node_grp *)lysp_node_groupings(pnode), grp) {
1763 if (!(grp->flags & LYS_USED_GRP)) {
Michal Vasko1ccbf542021-04-19 11:35:00 +02001764 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, grp), cleanup);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001765 }
1766 }
1767 }
1768 }
1769 ctx.pmod = sp;
1770
Michal Vasko7a266772024-01-23 11:02:38 +01001771 ly_log_location_revert(0, 0, 1, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001772
Michal Vasko405cc9e2020-12-01 12:01:27 +01001773 /* finish compilation for all unresolved module items in the context */
Michal Vasko1ccbf542021-04-19 11:35:00 +02001774 LY_CHECK_GOTO(ret = lys_compile_unres_mod(&ctx), cleanup);
Michal Vasko12606ee2020-11-25 17:05:11 +01001775
Michal Vasko1ccbf542021-04-19 11:35:00 +02001776cleanup:
Michal Vasko7a266772024-01-23 11:02:38 +01001777 ly_log_location_revert(0, 0, 1, 0);
Michal Vasko1ccbf542021-04-19 11:35:00 +02001778 lys_compile_unres_mod_erase(&ctx, ret);
1779 if (ret) {
Michal Vaskoc636ea42022-09-16 10:20:31 +02001780 lysc_module_free(&ctx.free_ctx, mod_c);
Michal Vasko1ccbf542021-04-19 11:35:00 +02001781 mod->compiled = NULL;
1782 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001783 return ret;
1784}
Michal Vasko65333882021-06-10 14:12:16 +02001785
aPiecek6b3d5422021-07-30 15:55:43 +02001786LY_ERR
Michal Vaskofa5a7d72021-06-15 11:41:20 +02001787lys_compile_identities(struct lys_module *mod)
1788{
Michal Vasko776ae742022-08-04 11:08:21 +02001789 LY_ERR rc = LY_SUCCESS;
Michal Vaskoc636ea42022-09-16 10:20:31 +02001790 struct lysc_ctx ctx;
Michal Vaskofa5a7d72021-06-15 11:41:20 +02001791 struct lysp_submodule *submod;
1792 LY_ARRAY_COUNT_TYPE u;
1793
aPiecek6b3d5422021-07-30 15:55:43 +02001794 /* pre-compile identities of the module and any submodules */
Michal Vasko776ae742022-08-04 11:08:21 +02001795 rc = lys_identity_precompile(NULL, mod->ctx, mod->parsed, mod->parsed->identities, &mod->identities);
1796 LY_CHECK_GOTO(rc, cleanup);
aPiecek6b3d5422021-07-30 15:55:43 +02001797 LY_ARRAY_FOR(mod->parsed->includes, u) {
1798 submod = mod->parsed->includes[u].submodule;
Michal Vasko776ae742022-08-04 11:08:21 +02001799 rc = lys_identity_precompile(NULL, mod->ctx, (struct lysp_module *)submod, submod->identities, &mod->identities);
1800 LY_CHECK_GOTO(rc, cleanup);
aPiecek6b3d5422021-07-30 15:55:43 +02001801 }
1802
Michal Vaskofa5a7d72021-06-15 11:41:20 +02001803 /* prepare context */
Michal Vaskoedb0fa52022-10-04 10:36:00 +02001804 LYSC_CTX_INIT_PMOD(ctx, mod->parsed, NULL);
Michal Vaskofa5a7d72021-06-15 11:41:20 +02001805
1806 if (mod->parsed->identities) {
Michal Vasko776ae742022-08-04 11:08:21 +02001807 rc = lys_compile_identities_derived(&ctx, mod->parsed->identities, &mod->identities);
1808 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskofa5a7d72021-06-15 11:41:20 +02001809 }
1810 lysc_update_path(&ctx, NULL, "{submodule}");
1811 LY_ARRAY_FOR(mod->parsed->includes, u) {
1812 submod = mod->parsed->includes[u].submodule;
1813 if (submod->identities) {
1814 ctx.pmod = (struct lysp_module *)submod;
1815 lysc_update_path(&ctx, NULL, submod->name);
Michal Vasko776ae742022-08-04 11:08:21 +02001816 rc = lys_compile_identities_derived(&ctx, submod->identities, &mod->identities);
Michal Vaskofa5a7d72021-06-15 11:41:20 +02001817 lysc_update_path(&ctx, NULL, NULL);
1818 }
Michal Vasko776ae742022-08-04 11:08:21 +02001819
1820 if (rc) {
1821 break;
1822 }
Michal Vaskofa5a7d72021-06-15 11:41:20 +02001823 }
1824 lysc_update_path(&ctx, NULL, NULL);
1825
Michal Vasko776ae742022-08-04 11:08:21 +02001826cleanup:
1827 /* always needed when using lysc_update_path() */
Michal Vasko7a266772024-01-23 11:02:38 +01001828 ly_log_location_revert(0, 0, 1, 0);
Michal Vasko776ae742022-08-04 11:08:21 +02001829 return rc;
Michal Vaskofa5a7d72021-06-15 11:41:20 +02001830}
1831
1832/**
Michal Vasko65333882021-06-10 14:12:16 +02001833 * @brief Check whether a module does not have any (recursive) compiled import.
1834 *
1835 * @param[in] mod Module to examine.
1836 * @return LY_SUCCESS on success.
Michal Vaskof4258e12021-06-15 12:11:42 +02001837 * @return LY_ERECOMPILE on required recompilation of the dep set.
Michal Vasko65333882021-06-10 14:12:16 +02001838 * @return LY_ERR on error.
1839 */
1840static LY_ERR
1841lys_has_compiled_import_r(struct lys_module *mod)
1842{
1843 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoe7927122021-06-15 12:00:04 +02001844 struct lys_module *m;
Michal Vasko65333882021-06-10 14:12:16 +02001845
1846 LY_ARRAY_FOR(mod->parsed->imports, u) {
Michal Vaskoe7927122021-06-15 12:00:04 +02001847 m = mod->parsed->imports[u].module;
1848 if (!m->implemented) {
Michal Vasko65333882021-06-10 14:12:16 +02001849 continue;
1850 }
1851
Michal Vaskoe7927122021-06-15 12:00:04 +02001852 if (!m->to_compile) {
Michal Vaskod39bea42021-06-14 10:42:49 +02001853 /* module was not/will not be compiled in this compilation (so disabled nodes are not present) */
Michal Vaskof4258e12021-06-15 12:11:42 +02001854 m->to_compile = 1;
Michal Vasko65333882021-06-10 14:12:16 +02001855 return LY_ERECOMPILE;
1856 }
1857
1858 /* recursive */
Michal Vaskoe7927122021-06-15 12:00:04 +02001859 LY_CHECK_RET(lys_has_compiled_import_r(m));
Michal Vasko65333882021-06-10 14:12:16 +02001860 }
1861
1862 return LY_SUCCESS;
1863}
1864
1865LY_ERR
1866lys_implement(struct lys_module *mod, const char **features, struct lys_glob_unres *unres)
1867{
Michal Vaskodc668d22023-02-13 10:23:13 +01001868 LY_ERR r;
Michal Vasko65333882021-06-10 14:12:16 +02001869 struct lys_module *m;
1870
1871 assert(!mod->implemented);
1872
Michal Vasko978532b2022-01-21 14:13:40 +01001873 /* check collision with other implemented revision */
Michal Vasko65333882021-06-10 14:12:16 +02001874 m = ly_ctx_get_module_implemented(mod->ctx, mod->name);
1875 if (m) {
1876 assert(m != mod);
Michal Vaskodc668d22023-02-13 10:23:13 +01001877 LOGERR(mod->ctx, LY_EDENIED, "Module \"%s@%s\" is already implemented in revision \"%s\".",
1878 mod->name, mod->revision ? mod->revision : "<none>", m->revision ? m->revision : "<none>");
1879 return LY_EDENIED;
Michal Vasko65333882021-06-10 14:12:16 +02001880 }
1881
1882 /* set features */
Michal Vaskodc668d22023-02-13 10:23:13 +01001883 r = lys_set_features(mod->parsed, features);
1884 if (r && (r != LY_EEXIST)) {
1885 return r;
Michal Vasko65333882021-06-10 14:12:16 +02001886 }
1887
Michal Vasko65333882021-06-10 14:12:16 +02001888 /*
1889 * mark the module implemented, which means
1890 * 1) to (re)compile it only ::lys_compile() call is needed
1891 * 2) its compilation will never cause new modules to be implemented (::lys_compile() does not return ::LY_ERECOMPILE)
1892 * but there can be some unres items added that do
1893 */
1894 mod->implemented = 1;
1895
Michal Vaskoa9f807e2021-06-15 12:07:16 +02001896 /* this module is compiled in this compilation */
1897 mod->to_compile = 1;
1898
Michal Vasko65333882021-06-10 14:12:16 +02001899 /* add the module into newly implemented module set */
1900 LY_CHECK_RET(ly_set_add(&unres->implementing, mod, 1, NULL));
1901
Michal Vaskoa9f807e2021-06-15 12:07:16 +02001902 /* mark target modules with our augments and deviations */
1903 LY_CHECK_RET(lys_precompile_augments_deviations(mod, unres));
Michal Vasko65333882021-06-10 14:12:16 +02001904
Michal Vaskod39bea42021-06-14 10:42:49 +02001905 /* check whether this module may reference any modules compiled previously */
1906 LY_CHECK_RET(lys_has_compiled_import_r(mod));
Michal Vasko65333882021-06-10 14:12:16 +02001907
Michal Vasko65333882021-06-10 14:12:16 +02001908 return LY_SUCCESS;
1909}