blob: b75ac83470dbd05b38a43ecf44d1f4616af7f6a0 [file] [log] [blame]
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001/**
2 * @file schema_compile.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Schema compilation.
5 *
6 * Copyright (c) 2015 - 2020 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#define _GNU_SOURCE
16
17#include "schema_compile.h"
18
19#include <assert.h>
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020020#include <stddef.h>
21#include <stdint.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25
26#include "common.h"
27#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 Vasko1a7a7bd2020-10-16 14:39:15 +020032#include "parser_schema.h"
33#include "path.h"
34#include "plugins_exts.h"
35#include "plugins_exts_internal.h"
36#include "plugins_types.h"
37#include "schema_compile_amend.h"
38#include "schema_compile_node.h"
Michal Vasko7b1ad1a2020-11-02 15:41:27 +010039#include "schema_features.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020040#include "set.h"
41#include "tree.h"
42#include "tree_data.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020043#include "tree_schema.h"
44#include "tree_schema_internal.h"
45#include "xpath.h"
46
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020047/**
48 * @brief Fill in the prepared compiled extensions definition structure according to the parsed extension definition.
49 */
50static LY_ERR
51lys_compile_extension(struct lysc_ctx *ctx, const struct lys_module *ext_mod, struct lysp_ext *ext_p, struct lysc_ext **ext)
52{
53 LY_ERR ret = LY_SUCCESS;
54
55 if (!ext_p->compiled) {
56 lysc_update_path(ctx, NULL, "{extension}");
57 lysc_update_path(ctx, NULL, ext_p->name);
58
59 /* compile the extension definition */
60 ext_p->compiled = calloc(1, sizeof **ext);
61 ext_p->compiled->refcount = 1;
62 DUP_STRING_GOTO(ctx->ctx, ext_p->name, ext_p->compiled->name, ret, done);
63 DUP_STRING_GOTO(ctx->ctx, ext_p->argument, ext_p->compiled->argument, ret, done);
64 ext_p->compiled->module = (struct lys_module *)ext_mod;
65 COMPILE_EXTS_GOTO(ctx, ext_p->exts, ext_p->compiled->exts, *ext, LYEXT_PAR_EXT, ret, done);
66
67 lysc_update_path(ctx, NULL, NULL);
68 lysc_update_path(ctx, NULL, NULL);
69
70 /* find extension definition plugin */
71 ext_p->compiled->plugin = lyext_get_plugin(ext_p->compiled);
72 }
73
74 *ext = lysc_ext_dup(ext_p->compiled);
75
76done:
Radek Krejci2efc45b2020-12-22 16:25:44 +010077 if (ret) {
78 lysc_update_path(ctx, NULL, NULL);
79 lysc_update_path(ctx, NULL, NULL);
80 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020081 return ret;
82}
83
84LY_ERR
85lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext, void *parent,
86 LYEXT_PARENT parent_type, const struct lys_module *ext_mod)
87{
88 LY_ERR ret = LY_SUCCESS;
89 const char *name;
90 size_t u;
91 LY_ARRAY_COUNT_TYPE v;
92 const char *prefixed_name = NULL;
93
94 DUP_STRING(ctx->ctx, ext_p->argument, ext->argument, ret);
95 LY_CHECK_RET(ret);
96
97 ext->insubstmt = ext_p->insubstmt;
98 ext->insubstmt_index = ext_p->insubstmt_index;
99 ext->module = ctx->cur_mod;
100 ext->parent = parent;
101 ext->parent_type = parent_type;
102
103 lysc_update_path(ctx, ext->parent_type == LYEXT_PAR_NODE ? (struct lysc_node *)ext->parent : NULL, "{extension}");
104
105 /* get module where the extension definition should be placed */
106 for (u = strlen(ext_p->name); u && ext_p->name[u - 1] != ':'; --u) {}
107 if (ext_p->yin) {
108 /* YIN parser has to replace prefixes by the namespace - XML namespace/prefix pairs may differs form the YANG schema's
109 * namespace/prefix pair. YIN parser does not have the imports available, so mapping from XML namespace to the
110 * YANG (import) prefix must be done here. */
111 if (!ly_strncmp(ctx->pmod->mod->ns, ext_p->name, u - 1)) {
112 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, &ext_p->name[u], 0, &prefixed_name), cleanup);
113 u = 0;
114 } else {
115 LY_ARRAY_FOR(ctx->pmod->imports, v) {
116 if (!ly_strncmp(ctx->pmod->imports[v].module->ns, ext_p->name, u - 1)) {
117 char *s;
118 LY_CHECK_ERR_GOTO(asprintf(&s, "%s:%s", ctx->pmod->imports[v].prefix, &ext_p->name[u]) == -1,
119 ret = LY_EMEM, cleanup);
120 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx->ctx, s, &prefixed_name), cleanup);
121 u = strlen(ctx->pmod->imports[v].prefix) + 1; /* add semicolon */
122 break;
123 }
124 }
125 }
126 if (!prefixed_name) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100127 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200128 "Invalid XML prefix of \"%.*s\" namespace used for extension instance identifier.", u, ext_p->name);
129 ret = LY_EVALID;
130 goto cleanup;
131 }
132 } else {
133 prefixed_name = ext_p->name;
134 }
135 lysc_update_path(ctx, NULL, prefixed_name);
136
137 if (!ext_mod) {
Michal Vaskob2d55bf2020-11-02 15:42:43 +0100138 ext_mod = u ? ly_resolve_prefix(ctx->ctx, prefixed_name, u - 1, LY_PREF_SCHEMA, ctx->pmod) : ctx->pmod->mod;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200139 if (!ext_mod) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100140 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200141 "Invalid prefix \"%.*s\" used for extension instance identifier.", u, prefixed_name);
142 ret = LY_EVALID;
143 goto cleanup;
144 } else if (!ext_mod->parsed->extensions) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100145 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200146 "Extension instance \"%s\" refers \"%s\" module that does not contain extension definitions.",
147 prefixed_name, ext_mod->name);
148 ret = LY_EVALID;
149 goto cleanup;
150 }
151 }
152 name = &prefixed_name[u];
153
154 /* find the parsed extension definition there */
155 LY_ARRAY_FOR(ext_mod->parsed->extensions, v) {
156 if (!strcmp(name, ext_mod->parsed->extensions[v].name)) {
157 /* compile extension definition and assign it */
158 LY_CHECK_GOTO(ret = lys_compile_extension(ctx, ext_mod, &ext_mod->parsed->extensions[v], &ext->def), cleanup);
159 break;
160 }
161 }
162 if (!ext->def) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100163 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200164 "Extension definition of extension instance \"%s\" not found.", prefixed_name);
165 ret = LY_EVALID;
166 goto cleanup;
167 }
168
169 /* unify the parsed extension from YIN and YANG sources. Without extension definition, it is not possible
170 * to get extension's argument from YIN source, so it is stored as one of the substatements. Here we have
171 * to find it, mark it with LYS_YIN_ARGUMENT and store it in the compiled structure. */
172 if (ext_p->yin && ext->def->argument && !ext->argument) {
173 /* Schema was parsed from YIN and an argument is expected, ... */
174 struct lysp_stmt *stmt = NULL;
175
176 if (ext->def->flags & LYS_YINELEM_TRUE) {
177 /* ... argument was the first XML child element */
178 if (ext_p->child && !(ext_p->child->flags & LYS_YIN_ATTR)) {
179 /* TODO check namespace of the statement */
180 if (!strcmp(ext_p->child->stmt, ext->def->argument)) {
181 stmt = ext_p->child;
182 }
183 }
184 } else {
185 /* ... argument was one of the XML attributes which are represented as child stmt
186 * with LYS_YIN_ATTR flag */
187 for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {
188 if (!strcmp(stmt->stmt, ext->def->argument)) {
189 /* this is the extension's argument */
190 break;
191 }
192 }
193 }
194 if (!stmt) {
195 /* missing extension's argument */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100196 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200197 "Extension instance \"%s\" misses argument \"%s\".", prefixed_name, ext->def->argument);
198 ret = LY_EVALID;
199 goto cleanup;
200
201 }
202 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, stmt->arg, 0, &ext->argument), cleanup);
203 stmt->flags |= LYS_YIN_ARGUMENT;
204 }
205 if (prefixed_name != ext_p->name) {
206 lydict_remove(ctx->ctx, ext_p->name);
207 ext_p->name = prefixed_name;
208 if (!ext_p->argument && ext->argument) {
209 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, ext->argument, 0, &ext_p->argument), cleanup);
210 }
211 }
212
213 if (ext->def->plugin && ext->def->plugin->compile) {
214 if (ext->argument) {
215 lysc_update_path(ctx, (struct lysc_node *)ext, ext->argument);
216 }
217 LY_CHECK_GOTO(ret = ext->def->plugin->compile(ctx, ext_p, ext), cleanup);
218 if (ext->argument) {
219 lysc_update_path(ctx, NULL, NULL);
220 }
221 }
222 ext_p->compiled = ext;
223
224cleanup:
Radek Krejci2efc45b2020-12-22 16:25:44 +0100225 lysc_update_path(ctx, NULL, NULL);
226 if (prefixed_name) {
227 lysc_update_path(ctx, NULL, NULL);
228 if (prefixed_name != ext_p->name) {
229 lydict_remove(ctx->ctx, prefixed_name);
230 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200231 }
232
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200233 return ret;
234}
235
236struct lysc_ext *
237lysc_ext_dup(struct lysc_ext *orig)
238{
239 ++orig->refcount;
240 return orig;
241}
242
243static void
244lysc_unres_dflt_free(const struct ly_ctx *ctx, struct lysc_unres_dflt *r)
245{
246 assert(!r->dflt || !r->dflts);
247 if (r->dflt) {
248 lysp_qname_free((struct ly_ctx *)ctx, r->dflt);
249 free(r->dflt);
250 } else {
251 FREE_ARRAY((struct ly_ctx *)ctx, r->dflts, lysp_qname_free);
252 }
253 free(r);
254}
255
256void
257lysc_update_path(struct lysc_ctx *ctx, struct lysc_node *parent, const char *name)
258{
259 int len;
260 uint8_t nextlevel = 0; /* 0 - no starttag, 1 - '/' starttag, 2 - '=' starttag + '}' endtag */
261
262 if (!name) {
263 /* removing last path segment */
264 if (ctx->path[ctx->path_len - 1] == '}') {
265 for ( ; ctx->path[ctx->path_len] != '=' && ctx->path[ctx->path_len] != '{'; --ctx->path_len) {}
266 if (ctx->path[ctx->path_len] == '=') {
267 ctx->path[ctx->path_len++] = '}';
268 } else {
269 /* not a top-level special tag, remove also preceiding '/' */
270 goto remove_nodelevel;
271 }
272 } else {
273remove_nodelevel:
274 for ( ; ctx->path[ctx->path_len] != '/'; --ctx->path_len) {}
275 if (ctx->path_len == 0) {
276 /* top-level (last segment) */
277 ctx->path_len = 1;
278 }
279 }
280 /* set new terminating NULL-byte */
281 ctx->path[ctx->path_len] = '\0';
282 } else {
283 if (ctx->path_len > 1) {
284 if (!parent && (ctx->path[ctx->path_len - 1] == '}') && (ctx->path[ctx->path_len - 2] != '\'')) {
285 /* extension of the special tag */
286 nextlevel = 2;
287 --ctx->path_len;
288 } else {
289 /* there is already some path, so add next level */
290 nextlevel = 1;
291 }
292 } /* else the path is just initiated with '/', so do not add additional slash in case of top-level nodes */
293
294 if (nextlevel != 2) {
295 if ((parent && (parent->module == ctx->cur_mod)) || (!parent && (ctx->path_len > 1) && (name[0] == '{'))) {
296 /* module not changed, print the name unprefixed */
297 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s", nextlevel ? "/" : "", name);
298 } else {
299 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s:%s", nextlevel ? "/" : "", ctx->cur_mod->name, name);
300 }
301 } else {
302 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "='%s'}", name);
303 }
304 if (len >= LYSC_CTX_BUFSIZE - (int)ctx->path_len) {
305 /* output truncated */
306 ctx->path_len = LYSC_CTX_BUFSIZE - 1;
307 } else {
308 ctx->path_len += len;
309 }
310 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100311
Radek Krejciddace2c2021-01-08 11:30:56 +0100312 LOG_LOCBACK(0, 0, 1, 0);
313 LOG_LOCSET(NULL, NULL, ctx->path, NULL);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200314}
315
316/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200317 * @brief Compile information in the import statement - make sure there is the target module
318 * @param[in] ctx Compile context.
319 * @param[in] imp_p The parsed import statement structure to fill the module to.
320 * @return LY_ERR value.
321 */
322static LY_ERR
323lys_compile_import(struct lysc_ctx *ctx, struct lysp_import *imp_p)
324{
325 const struct lys_module *mod = NULL;
326 LY_ERR ret = LY_SUCCESS;
327
328 /* make sure that we have the parsed version (lysp_) of the imported module to import groupings or typedefs.
329 * The compiled version is needed only for augments, deviates and leafrefs, so they are checked (and added,
330 * if needed) when these nodes are finally being instantiated and validated at the end of schema compilation. */
331 if (!imp_p->module->parsed) {
332 /* try to use filepath if present */
333 if (imp_p->module->filepath) {
334 struct ly_in *in;
335 if (ly_in_new_filepath(imp_p->module->filepath, 0, &in)) {
336 LOGINT(ctx->ctx);
337 } else {
338 LY_CHECK_RET(lys_parse(ctx->ctx, in, !strcmp(&imp_p->module->filepath[strlen(imp_p->module->filepath - 4)],
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100339 ".yin") ? LYS_IN_YIN : LYS_IN_YANG, NULL, &mod));
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200340 if (mod != imp_p->module) {
341 LOGERR(ctx->ctx, LY_EINT, "Filepath \"%s\" of the module \"%s\" does not match.",
342 imp_p->module->filepath, imp_p->module->name);
343 mod = NULL;
344 }
345 }
346 ly_in_free(in, 1);
347 }
348 if (!mod) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100349 if (lysp_load_module(ctx->ctx, imp_p->module->name, imp_p->module->revision, 0, NULL, ctx->unres,
350 (struct lys_module **)&mod)) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200351 LOGERR(ctx->ctx, LY_ENOTFOUND, "Unable to reload \"%s\" module to import it into \"%s\", source data not found.",
352 imp_p->module->name, ctx->cur_mod->name);
353 return LY_ENOTFOUND;
354 }
355 }
356 }
357
358 return ret;
359}
360
361LY_ERR
362lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lysp_module *parsed_mod,
363 struct lysp_ident *identities_p, struct lysc_ident **identities)
364{
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100365 LY_ARRAY_COUNT_TYPE u;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200366 struct lysc_ctx context = {0};
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100367 struct lysc_ident *ident;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200368 LY_ERR ret = LY_SUCCESS;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100369 ly_bool enabled;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200370
371 assert(ctx_sc || ctx);
372
373 if (!ctx_sc) {
374 context.ctx = ctx;
Radek Krejci3aac9a72020-12-01 12:24:26 +0100375 context.cur_mod = parsed_mod ? parsed_mod->mod : NULL;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200376 context.pmod = parsed_mod;
377 context.path_len = 1;
378 context.path[0] = '/';
379 ctx_sc = &context;
380 }
381
382 if (!identities_p) {
383 return LY_SUCCESS;
384 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200385
386 lysc_update_path(ctx_sc, NULL, "{identity}");
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200387 LY_ARRAY_FOR(identities_p, u) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100388 /* evaluate if-features */
389 LY_CHECK_RET(lys_eval_iffeatures(ctx, identities_p[u].iffeatures, &enabled));
390 if (!enabled) {
391 continue;
392 }
393
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200394 lysc_update_path(ctx_sc, NULL, identities_p[u].name);
395
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100396 /* add new compiled identity */
397 LY_ARRAY_NEW_RET(ctx_sc->ctx, *identities, ident, LY_EMEM);
398
399 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].name, ident->name, ret, done);
400 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].dsc, ident->dsc, ret, done);
401 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].ref, ident->ref, ret, done);
402 ident->module = ctx_sc->cur_mod;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200403 /* backlinks (derived) can be added no sooner than when all the identities in the current module are present */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100404 COMPILE_EXTS_GOTO(ctx_sc, identities_p[u].exts, ident->exts, ident, LYEXT_PAR_IDENT, ret, done);
405 ident->flags = identities_p[u].flags;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200406
407 lysc_update_path(ctx_sc, NULL, NULL);
408 }
409 lysc_update_path(ctx_sc, NULL, NULL);
410done:
411 return ret;
412}
413
414/**
415 * @brief Check circular dependency of identities - identity MUST NOT reference itself (via their base statement).
416 *
417 * The function works in the same way as lys_compile_feature_circular_check() with different structures and error messages.
418 *
419 * @param[in] ctx Compile context for logging.
420 * @param[in] ident The base identity (its derived list is being extended by the identity being currently processed).
421 * @param[in] derived The list of derived identities of the identity being currently processed (not the one provided as @p ident)
422 * @return LY_SUCCESS if everything is ok.
423 * @return LY_EVALID if the identity is derived from itself.
424 */
425static LY_ERR
426lys_compile_identity_circular_check(struct lysc_ctx *ctx, struct lysc_ident *ident, struct lysc_ident **derived)
427{
428 LY_ERR ret = LY_SUCCESS;
429 LY_ARRAY_COUNT_TYPE u, v;
430 struct ly_set recursion = {0};
431 struct lysc_ident *drv;
432
433 if (!derived) {
434 return LY_SUCCESS;
435 }
436
437 for (u = 0; u < LY_ARRAY_COUNT(derived); ++u) {
438 if (ident == derived[u]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100439 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200440 "Identity \"%s\" is indirectly derived from itself.", ident->name);
441 ret = LY_EVALID;
442 goto cleanup;
443 }
444 ret = ly_set_add(&recursion, derived[u], 0, NULL);
445 LY_CHECK_GOTO(ret, cleanup);
446 }
447
448 for (v = 0; v < recursion.count; ++v) {
449 drv = recursion.objs[v];
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200450 for (u = 0; u < LY_ARRAY_COUNT(drv->derived); ++u) {
451 if (ident == drv->derived[u]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100452 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200453 "Identity \"%s\" is indirectly derived from itself.", ident->name);
454 ret = LY_EVALID;
455 goto cleanup;
456 }
457 ret = ly_set_add(&recursion, drv->derived[u], 0, NULL);
458 LY_CHECK_GOTO(ret, cleanup);
459 }
460 }
461
462cleanup:
463 ly_set_erase(&recursion, NULL);
464 return ret;
465}
466
467LY_ERR
468lys_compile_identity_bases(struct lysc_ctx *ctx, const struct lysp_module *base_pmod, const char **bases_p,
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100469 struct lysc_ident *ident, struct lysc_ident ***bases, ly_bool *enabled)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200470{
471 LY_ARRAY_COUNT_TYPE u, v;
472 const char *s, *name;
473 const struct lys_module *mod;
474 struct lysc_ident **idref;
475
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100476 assert((ident && enabled) || bases);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200477
478 if ((LY_ARRAY_COUNT(bases_p) > 1) && (ctx->pmod->version < LYS_VERSION_1_1)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100479 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200480 "Multiple bases in %s are allowed only in YANG 1.1 modules.", ident ? "identity" : "identityref type");
481 return LY_EVALID;
482 }
483
484 LY_ARRAY_FOR(bases_p, u) {
485 s = strchr(bases_p[u], ':');
486 if (s) {
487 /* prefixed identity */
488 name = &s[1];
Michal Vaskob2d55bf2020-11-02 15:42:43 +0100489 mod = ly_resolve_prefix(ctx->ctx, bases_p[u], s - bases_p[u], LY_PREF_SCHEMA, (void *)base_pmod);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200490 } else {
491 name = bases_p[u];
492 mod = base_pmod->mod;
493 }
494 if (!mod) {
495 if (ident) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100496 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200497 "Invalid prefix used for base (%s) of identity \"%s\".", bases_p[u], ident->name);
498 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100499 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200500 "Invalid prefix used for base (%s) of identityref.", bases_p[u]);
501 }
502 return LY_EVALID;
503 }
504
505 idref = NULL;
506 LY_ARRAY_FOR(mod->identities, v) {
507 if (!strcmp(name, mod->identities[v].name)) {
508 if (ident) {
509 if (ident == &mod->identities[v]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100510 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200511 "Identity \"%s\" is derived from itself.", ident->name);
512 return LY_EVALID;
513 }
514 LY_CHECK_RET(lys_compile_identity_circular_check(ctx, &mod->identities[v], ident->derived));
515 /* we have match! store the backlink */
516 LY_ARRAY_NEW_RET(ctx->ctx, mod->identities[v].derived, idref, LY_EMEM);
517 *idref = ident;
518 } else {
519 /* we have match! store the found identity */
520 LY_ARRAY_NEW_RET(ctx->ctx, *bases, idref, LY_EMEM);
521 *idref = &mod->identities[v];
522 }
523 break;
524 }
525 }
526 if (!idref || !(*idref)) {
527 if (ident) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100528 /* look into the parsed module to check whether the identity is not merely disabled */
529 LY_ARRAY_FOR(mod->parsed->identities, v) {
530 if (!strcmp(mod->parsed->identities[v].name, name)) {
531 *enabled = 0;
532 return LY_SUCCESS;
533 }
534 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100535 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200536 "Unable to find base (%s) of identity \"%s\".", bases_p[u], ident->name);
537 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100538 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200539 "Unable to find base (%s) of identityref.", bases_p[u]);
540 }
541 return LY_EVALID;
542 }
543 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100544
545 if (ident) {
546 *enabled = 1;
547 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200548 return LY_SUCCESS;
549}
550
551/**
552 * @brief For the given array of identities, set the backlinks from all their base identities.
553 * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes.
554 * @param[in] idents_p Array of identities definitions from the parsed schema structure.
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100555 * @param[in,out] idents Array of referencing identities to which the backlinks are supposed to be set. Any
556 * identities with disabled bases are removed.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200557 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
558 */
559static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100560lys_compile_identities_derived(struct lysc_ctx *ctx, struct lysp_ident *idents_p, struct lysc_ident **idents)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200561{
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100562 LY_ARRAY_COUNT_TYPE u, v;
563 ly_bool enabled;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200564
565 lysc_update_path(ctx, NULL, "{identity}");
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100566
567restart:
Radek Krejcic7d13e32020-12-09 12:32:24 +0100568 for (u = 0, v = 0; u < LY_ARRAY_COUNT(*idents); ++u) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100569 /* find matching parsed identity, the disabled ones are missing in the compiled array */
570 while (v < LY_ARRAY_COUNT(idents_p)) {
571 if (idents_p[v].name == (*idents)[u].name) {
572 break;
573 }
574 ++v;
575 }
576 assert(v < LY_ARRAY_COUNT(idents_p));
577
578 if (!idents_p[v].bases) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200579 continue;
580 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100581 lysc_update_path(ctx, NULL, (*idents)[u].name);
582 LY_CHECK_RET(lys_compile_identity_bases(ctx, (*idents)[u].module->parsed, idents_p[v].bases, &(*idents)[u], NULL,
583 &enabled));
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200584 lysc_update_path(ctx, NULL, NULL);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100585
586 if (!enabled) {
587 /* remove the identity */
588 lysc_ident_free(ctx->ctx, &(*idents)[u]);
589 LY_ARRAY_DECREMENT(*idents);
590 if (u < LY_ARRAY_COUNT(*idents)) {
591 memmove(&(*idents)[u], &(*idents)[u + 1], (LY_ARRAY_COUNT(*idents) - u) * sizeof **idents);
592 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100593
594 /* revert compilation of all the previous identities */
595 for (v = 0; v < u; ++v) {
596 LY_ARRAY_FREE((*idents)[v].derived);
597 }
598
Michal Vasko74c82ae2020-11-03 17:36:53 +0100599 /* free the whole array if there are no identites left */
600 if (!LY_ARRAY_COUNT(*idents)) {
601 LY_ARRAY_FREE(*idents);
602 *idents = NULL;
603 }
604
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100605 /* restart the whole process without this identity */
606 goto restart;
607 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200608 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100609
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200610 lysc_update_path(ctx, NULL, NULL);
611 return LY_SUCCESS;
612}
613
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200614static void *
615lys_compile_extension_instance_storage(enum ly_stmt stmt, struct lysc_ext_substmt *substmts)
616{
617 for (LY_ARRAY_COUNT_TYPE u = 0; substmts[u].stmt; ++u) {
618 if (substmts[u].stmt == stmt) {
619 return substmts[u].storage;
620 }
621 }
622 return NULL;
623}
624
625LY_ERR
626lys_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *ext, struct lysc_ext_substmt *substmts)
627{
628 LY_ERR ret = LY_EVALID, r;
629 LY_ARRAY_COUNT_TYPE u;
630 struct lysp_stmt *stmt;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100631 struct lysp_qname *iffeatures, *iffeat;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200632 void *parsed = NULL, **compiled = NULL;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100633 ly_bool enabled;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200634
635 /* check for invalid substatements */
636 for (stmt = ext->child; stmt; stmt = stmt->next) {
637 if (stmt->flags & (LYS_YIN_ATTR | LYS_YIN_ARGUMENT)) {
638 continue;
639 }
640 for (u = 0; substmts[u].stmt; ++u) {
641 if (substmts[u].stmt == stmt->kw) {
642 break;
643 }
644 }
645 if (!substmts[u].stmt) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100646 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s%s%s\" extension instance.",
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200647 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
648 goto cleanup;
649 }
650 }
651
652 /* TODO store inherited data, e.g. status first, but mark them somehow to allow to overwrite them and not detect duplicity */
653
654 /* keep order of the processing the same as the order in the defined substmts,
655 * the order is important for some of the statements depending on others (e.g. type needs status and units) */
656 for (u = 0; substmts[u].stmt; ++u) {
657 ly_bool stmt_present = 0;
658
659 for (stmt = ext->child; stmt; stmt = stmt->next) {
660 if (substmts[u].stmt != stmt->kw) {
661 continue;
662 }
663
664 stmt_present = 1;
665 if (substmts[u].storage) {
666 switch (stmt->kw) {
667 case LY_STMT_STATUS:
668 assert(substmts[u].cardinality < LY_STMT_CARD_SOME);
669 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &substmts[u].storage, /* TODO */ NULL), ret = r, cleanup);
670 break;
671 case LY_STMT_UNITS: {
672 const char **units;
673
674 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
675 /* single item */
676 if (*((const char **)substmts[u].storage)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100677 LOGVAL(ctx->ctx, LY_VCODE_DUPSTMT, stmt->stmt);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200678 goto cleanup;
679 }
680 units = (const char **)substmts[u].storage;
681 } else {
682 /* sized array */
683 const char ***units_array = (const char ***)substmts[u].storage;
684 LY_ARRAY_NEW_GOTO(ctx->ctx, *units_array, units, ret, cleanup);
685 }
686 r = lydict_insert(ctx->ctx, stmt->arg, 0, units);
687 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
688 break;
689 }
690 case LY_STMT_TYPE: {
691 uint16_t *flags = lys_compile_extension_instance_storage(LY_STMT_STATUS, substmts);
692 const char **units = lys_compile_extension_instance_storage(LY_STMT_UNITS, substmts);
693
694 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
695 /* single item */
696 if (*(struct lysc_type **)substmts[u].storage) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100697 LOGVAL(ctx->ctx, LY_VCODE_DUPSTMT, stmt->stmt);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200698 goto cleanup;
699 }
700 compiled = substmts[u].storage;
701 } else {
702 /* sized array */
703 struct lysc_type ***types = (struct lysc_type ***)substmts[u].storage, **type = NULL;
704 LY_ARRAY_NEW_GOTO(ctx->ctx, *types, type, ret, cleanup);
705 compiled = (void *)type;
706 }
707
708 r = lysp_stmt_parse(ctx, stmt, stmt->kw, &parsed, NULL);
709 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
Michal Vaskoa99b3572021-02-01 11:54:58 +0100710 r = lys_compile_type(ctx, NULL, flags ? *flags : 0, ext->name, parsed, (struct lysc_type **)compiled,
711 units && !*units ? units : NULL, NULL);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200712 lysp_type_free(ctx->ctx, parsed);
713 free(parsed);
714 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
715 break;
716 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100717 case LY_STMT_IF_FEATURE:
718 iffeatures = NULL;
719 LY_ARRAY_NEW_GOTO(ctx->ctx, iffeatures, iffeat, ret, cleanup);
720 iffeat->str = stmt->arg;
721 iffeat->mod = ctx->pmod;
722 r = lys_eval_iffeatures(ctx->ctx, iffeatures, &enabled);
723 LY_ARRAY_FREE(iffeatures);
724 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
725 if (!enabled) {
726 /* it is disabled, remove the whole extension instance */
727 return LY_ENOT;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200728 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200729 break;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200730 /* TODO support other substatements (parse stmt to lysp and then compile lysp to lysc),
731 * also note that in many statements their extensions are not taken into account */
732 default:
Radek Krejci2efc45b2020-12-22 16:25:44 +0100733 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG, "Statement \"%s\" is not supported as an extension (found in \"%s%s%s\") substatement.",
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200734 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
735 goto cleanup;
736 }
737 }
738 }
739
740 if (((substmts[u].cardinality == LY_STMT_CARD_MAND) || (substmts[u].cardinality == LY_STMT_CARD_SOME)) && !stmt_present) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100741 LOGVAL(ctx->ctx, LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s%s%s\".",
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200742 ly_stmt2str(substmts[u].stmt), ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
743 goto cleanup;
744 }
745 }
746
747 ret = LY_SUCCESS;
748
749cleanup:
750 return ret;
751}
752
753/**
754 * @brief Check when for cyclic dependencies.
755 *
756 * @param[in] set Set with all the referenced nodes.
757 * @param[in] node Node whose "when" referenced nodes are in @p set.
758 * @return LY_ERR value
759 */
760static LY_ERR
761lys_compile_unres_when_cyclic(struct lyxp_set *set, const struct lysc_node *node)
762{
763 struct lyxp_set tmp_set;
764 struct lyxp_set_scnode *xp_scnode;
765 uint32_t i, j;
766 LY_ARRAY_COUNT_TYPE u;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200767 LY_ERR ret = LY_SUCCESS;
768
769 memset(&tmp_set, 0, sizeof tmp_set);
770
771 /* prepare in_ctx of the set */
772 for (i = 0; i < set->used; ++i) {
773 xp_scnode = &set->val.scnodes[i];
774
Radek Krejcif13b87b2020-12-01 22:02:17 +0100775 if (xp_scnode->in_ctx != LYXP_SET_SCNODE_START_USED) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200776 /* check node when, skip the context node (it was just checked) */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100777 xp_scnode->in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200778 }
779 }
780
781 for (i = 0; i < set->used; ++i) {
782 xp_scnode = &set->val.scnodes[i];
Radek Krejcif13b87b2020-12-01 22:02:17 +0100783 if (xp_scnode->in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200784 /* already checked */
785 continue;
786 }
787
788 if ((xp_scnode->type != LYXP_NODE_ELEM) || (xp_scnode->scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) ||
Radek Krejci9a3823e2021-01-27 20:26:46 +0100789 !lysc_node_when(xp_scnode->scnode)) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200790 /* no when to check */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100791 xp_scnode->in_ctx = LYXP_SET_SCNODE_ATOM;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200792 continue;
793 }
794
795 node = xp_scnode->scnode;
796 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100797 struct lysc_when **when_list, *when;
798
Radek Krejciddace2c2021-01-08 11:30:56 +0100799 LOG_LOCSET(node, NULL, NULL, NULL);
Radek Krejci9a3823e2021-01-27 20:26:46 +0100800 when_list = lysc_node_when(node);
801 LY_ARRAY_FOR(when_list, u) {
802 when = when_list[u];
Michal Vasko400e9672021-01-11 13:39:17 +0100803 ret = lyxp_atomize(set->ctx, when->cond, node->module, LY_PREF_SCHEMA_RESOLVED, when->prefixes,
804 when->context, &tmp_set, LYXP_SCNODE_SCHEMA);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200805 if (ret != LY_SUCCESS) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100806 LOGVAL(set->ctx, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when->cond->expr);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200807 goto cleanup;
808 }
809
810 for (j = 0; j < tmp_set.used; ++j) {
811 /* skip roots'n'stuff */
812 if (tmp_set.val.scnodes[j].type == LYXP_NODE_ELEM) {
813 /* try to find this node in our set */
814 uint32_t idx;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100815 if (lyxp_set_scnode_contains(set, tmp_set.val.scnodes[j].scnode, LYXP_NODE_ELEM, -1, &idx) &&
816 (set->val.scnodes[idx].in_ctx == LYXP_SET_SCNODE_START_USED)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100817 LOGVAL(set->ctx, LYVE_SEMANTICS, "When condition includes a self-reference.");
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200818 ret = LY_EVALID;
819 goto cleanup;
820 }
821
822 /* needs to be checked, if in both sets, will be ignored */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100823 tmp_set.val.scnodes[j].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200824 } else {
825 /* no when, nothing to check */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100826 tmp_set.val.scnodes[j].in_ctx = LYXP_SET_SCNODE_ATOM;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200827 }
828 }
829
830 /* merge this set into the global when set */
831 lyxp_set_scnode_merge(set, &tmp_set);
832 }
833
834 /* check when of non-data parents as well */
835 node = node->parent;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100836
Radek Krejciddace2c2021-01-08 11:30:56 +0100837 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200838 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
839
840 /* this node when was checked (xp_scnode could have been reallocd) */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100841 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200842 }
843
844cleanup:
845 lyxp_set_free_content(&tmp_set);
846 return ret;
847}
848
849LY_ERR
850lysc_check_status(struct lysc_ctx *ctx, uint16_t flags1, void *mod1, const char *name1, uint16_t flags2, void *mod2,
851 const char *name2)
852{
853 uint16_t flg1, flg2;
854
855 flg1 = (flags1 & LYS_STATUS_MASK) ? (flags1 & LYS_STATUS_MASK) : LYS_STATUS_CURR;
856 flg2 = (flags2 & LYS_STATUS_MASK) ? (flags2 & LYS_STATUS_MASK) : LYS_STATUS_CURR;
857
858 if ((flg1 < flg2) && (mod1 == mod2)) {
859 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100860 LOGVAL(ctx->ctx, LYVE_REFERENCE,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200861 "A %s definition \"%s\" is not allowed to reference %s definition \"%s\".",
862 flg1 == LYS_STATUS_CURR ? "current" : "deprecated", name1,
863 flg2 == LYS_STATUS_OBSLT ? "obsolete" : "deprecated", name2);
864 }
865 return LY_EVALID;
866 }
867
868 return LY_SUCCESS;
869}
870
Michal Vasko25d6ad02020-10-22 12:20:22 +0200871LY_ERR
872lys_compile_expr_implement(const struct ly_ctx *ctx, const struct lyxp_expr *expr, LY_PREFIX_FORMAT format,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100873 void *prefix_data, ly_bool implement, struct lys_glob_unres *unres, const struct lys_module **mod_p)
Michal Vaskocfaff232020-10-20 09:35:14 +0200874{
875 uint32_t i;
876 const char *ptr, *start;
877 const struct lys_module *mod;
878
Michal Vasko25d6ad02020-10-22 12:20:22 +0200879 assert(implement || mod_p);
880
Michal Vaskocfaff232020-10-20 09:35:14 +0200881 for (i = 0; i < expr->used; ++i) {
882 if ((expr->tokens[i] != LYXP_TOKEN_NAMETEST) && (expr->tokens[i] != LYXP_TOKEN_LITERAL)) {
883 /* token cannot have a prefix */
884 continue;
885 }
886
887 start = expr->expr + expr->tok_pos[i];
888 if (!(ptr = ly_strnchr(start, ':', expr->tok_len[i]))) {
889 /* token without a prefix */
890 continue;
891 }
892
893 if (!(mod = ly_resolve_prefix(ctx, start, ptr - start, format, prefix_data))) {
894 /* unknown prefix, do not care right now */
895 continue;
896 }
897
898 if (!mod->implemented) {
899 /* unimplemented module found */
Michal Vasko25d6ad02020-10-22 12:20:22 +0200900 if (implement) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100901 LY_CHECK_RET(lys_set_implemented_r((struct lys_module *)mod, NULL, unres));
Michal Vasko25d6ad02020-10-22 12:20:22 +0200902 } else {
Michal Vaskocfaff232020-10-20 09:35:14 +0200903 *mod_p = mod;
Michal Vasko25d6ad02020-10-22 12:20:22 +0200904 break;
Michal Vaskocfaff232020-10-20 09:35:14 +0200905 }
Michal Vaskocfaff232020-10-20 09:35:14 +0200906 }
907 }
908
Michal Vasko25d6ad02020-10-22 12:20:22 +0200909 return LY_SUCCESS;
Michal Vaskocfaff232020-10-20 09:35:14 +0200910}
911
912/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200913 * @brief Check when/must expressions of a node on a complete compiled schema tree.
914 *
915 * @param[in] ctx Compile context.
916 * @param[in] node Node to check.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100917 * @param[in,out] unres Global unres structure.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200918 * @return LY_ERR value
919 */
920static LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +0100921lys_compile_unres_xpath(struct lysc_ctx *ctx, const struct lysc_node *node, struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200922{
923 struct lyxp_set tmp_set;
924 uint32_t i, opts;
925 LY_ARRAY_COUNT_TYPE u;
926 ly_bool input_done = 0;
Radek Krejci9a3823e2021-01-27 20:26:46 +0100927 struct lysc_when **whens = NULL;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200928 struct lysc_must *musts = NULL;
929 LY_ERR ret = LY_SUCCESS;
Michal Vaskocfaff232020-10-20 09:35:14 +0200930 const struct lys_module *mod;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200931
Radek Krejciddace2c2021-01-08 11:30:56 +0100932 LOG_LOCSET(node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100933
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200934 memset(&tmp_set, 0, sizeof tmp_set);
Michal Vaskod1e53b92021-01-28 13:11:06 +0100935 opts = LYXP_SCNODE_SCHEMA | ((node->flags & LYS_IS_OUTPUT) ? LYXP_SCNODE_OUTPUT : 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200936
Radek Krejci9a3823e2021-01-27 20:26:46 +0100937 whens = lysc_node_when(node);
938 musts = lysc_node_musts(node);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200939
Radek Krejci9a3823e2021-01-27 20:26:46 +0100940 LY_ARRAY_FOR(whens, u) {
Michal Vaskocfaff232020-10-20 09:35:14 +0200941 /* first check whether all the referenced modules are implemented */
Michal Vasko25d6ad02020-10-22 12:20:22 +0200942 mod = NULL;
Radek Krejci9a3823e2021-01-27 20:26:46 +0100943 ret = lys_compile_expr_implement(ctx->ctx, whens[u]->cond, LY_PREF_SCHEMA_RESOLVED, whens[u]->prefixes,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100944 ctx->ctx->flags & LY_CTX_REF_IMPLEMENTED, unres, &mod);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200945 if (ret) {
946 goto cleanup;
947 } else if (mod) {
Michal Vaskocfaff232020-10-20 09:35:14 +0200948 LOGWRN(ctx->ctx, "When condition \"%s\" check skipped because referenced module \"%s\" is not implemented.",
Radek Krejci9a3823e2021-01-27 20:26:46 +0100949 whens[u]->cond->expr, mod->name);
Michal Vaskocfaff232020-10-20 09:35:14 +0200950 continue;
951 }
952
953 /* check "when" */
Radek Krejci9a3823e2021-01-27 20:26:46 +0100954 ret = lyxp_atomize(ctx->ctx, whens[u]->cond, node->module, LY_PREF_SCHEMA_RESOLVED, whens[u]->prefixes,
955 whens[u]->context, &tmp_set, opts);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200956 if (ret) {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100957 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid when condition \"%s\".", whens[u]->cond->expr);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200958 goto cleanup;
959 }
960
961 ctx->path[0] = '\0';
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100962 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200963 for (i = 0; i < tmp_set.used; ++i) {
964 /* skip roots'n'stuff */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100965 if ((tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (tmp_set.val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START_USED)) {
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200966 struct lysc_node *schema = tmp_set.val.scnodes[i].scnode;
967
968 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci9a3823e2021-01-27 20:26:46 +0100969 ret = lysc_check_status(ctx, whens[u]->flags, node->module, node->name, schema->flags, schema->module,
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200970 schema->name);
971 LY_CHECK_GOTO(ret, cleanup);
972
973 /* check dummy node accessing */
974 if (schema == node) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100975 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "When condition is accessing its own conditional node.");
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200976 ret = LY_EVALID;
977 goto cleanup;
978 }
979 }
980 }
981
982 /* check cyclic dependencies */
983 ret = lys_compile_unres_when_cyclic(&tmp_set, node);
984 LY_CHECK_GOTO(ret, cleanup);
985
986 lyxp_set_free_content(&tmp_set);
987 }
988
989check_musts:
Michal Vasko1a7a7bd2020-10-16 14:39:15 +0200990 LY_ARRAY_FOR(musts, u) {
Michal Vaskocfaff232020-10-20 09:35:14 +0200991 /* first check whether all the referenced modules are implemented */
Michal Vasko25d6ad02020-10-22 12:20:22 +0200992 mod = NULL;
993 ret = lys_compile_expr_implement(ctx->ctx, musts[u].cond, LY_PREF_SCHEMA_RESOLVED, musts[u].prefixes,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100994 ctx->ctx->flags & LY_CTX_REF_IMPLEMENTED, unres, &mod);
Michal Vasko25d6ad02020-10-22 12:20:22 +0200995 if (ret) {
996 goto cleanup;
997 } else if (mod) {
Michal Vaskocfaff232020-10-20 09:35:14 +0200998 LOGWRN(ctx->ctx, "Must condition \"%s\" check skipped because referenced module \"%s\" is not implemented.",
999 musts[u].cond->expr, mod->name);
1000 continue;
1001 }
1002
1003 /* check "must" */
Michal Vasko400e9672021-01-11 13:39:17 +01001004 ret = lyxp_atomize(ctx->ctx, musts[u].cond, node->module, LY_PREF_SCHEMA_RESOLVED, musts[u].prefixes, node,
1005 &tmp_set, opts);
Michal Vasko25d6ad02020-10-22 12:20:22 +02001006 if (ret) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001007 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid must restriction \"%s\".", musts[u].cond->expr);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001008 goto cleanup;
1009 }
1010
1011 ctx->path[0] = '\0';
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001012 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001013 for (i = 0; i < tmp_set.used; ++i) {
1014 /* skip roots'n'stuff */
1015 if (tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
1016 /* XPath expression cannot reference "lower" status than the node that has the definition */
1017 ret = lysc_check_status(ctx, node->flags, node->module, node->name, tmp_set.val.scnodes[i].scnode->flags,
1018 tmp_set.val.scnodes[i].scnode->module, tmp_set.val.scnodes[i].scnode->name);
1019 LY_CHECK_GOTO(ret, cleanup);
1020 }
1021 }
1022
1023 lyxp_set_free_content(&tmp_set);
1024 }
1025
1026 if ((node->nodetype & (LYS_RPC | LYS_ACTION)) && !input_done) {
1027 /* now check output musts */
1028 input_done = 1;
Radek Krejci9a3823e2021-01-27 20:26:46 +01001029 whens = NULL;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001030 musts = ((struct lysc_node_action *)node)->output.musts;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001031 opts = LYXP_SCNODE_OUTPUT;
1032 goto check_musts;
1033 }
1034
1035cleanup:
1036 lyxp_set_free_content(&tmp_set);
Radek Krejciddace2c2021-01-08 11:30:56 +01001037 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001038 return ret;
1039}
1040
1041/**
1042 * @brief Check leafref for its target existence on a complete compiled schema tree.
1043 *
1044 * @param[in] ctx Compile context.
1045 * @param[in] node Context node for the leafref.
1046 * @param[in] lref Leafref to check/resolve.
Michal Vasko405cc9e2020-12-01 12:01:27 +01001047 * @param[in,out] unres Global unres structure.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001048 * @return LY_ERR value.
1049 */
1050static LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +01001051lys_compile_unres_leafref(struct lysc_ctx *ctx, const struct lysc_node *node, struct lysc_type_leafref *lref,
1052 struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001053{
Michal Vaskod1e53b92021-01-28 13:11:06 +01001054 const struct lysc_node *target = NULL;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001055 struct ly_path *p;
1056 struct lysc_type *type;
1057
1058 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
1059
1060 /* try to find the target */
Michal Vaskod1e53b92021-01-28 13:11:06 +01001061 LY_CHECK_RET(ly_path_compile(ctx->ctx, lref->cur_mod, node, lref->path, LY_PATH_LREF_TRUE,
1062 (node->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY,
1063 LY_PREF_SCHEMA_RESOLVED, lref->prefixes, unres, &p));
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001064
1065 /* get the target node */
1066 target = p[LY_ARRAY_COUNT(p) - 1].node;
1067 ly_path_free(node->module->ctx, p);
1068
1069 if (!(target->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001070 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 +02001071 lref->path->expr, lys_nodetype2str(target->nodetype));
1072 return LY_EVALID;
1073 }
1074
1075 /* check status */
1076 ctx->path[0] = '\0';
1077 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
1078 ctx->path_len = strlen(ctx->path);
1079 if (lysc_check_status(ctx, node->flags, node->module, node->name, target->flags, target->module, target->name)) {
1080 return LY_EVALID;
1081 }
1082 ctx->path_len = 1;
1083 ctx->path[1] = '\0';
1084
1085 /* check config */
1086 if (lref->require_instance) {
Michal Vaskod1e53b92021-01-28 13:11:06 +01001087 if ((node->flags & LYS_CONFIG_W) && (target->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001088 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid leafref path \"%s\" - target is supposed"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001089 " to represent configuration data (as the leafref does), but it does not.", lref->path->expr);
1090 return LY_EVALID;
1091 }
1092 }
1093
1094 /* store the target's type and check for circular chain of leafrefs */
1095 lref->realtype = ((struct lysc_node_leaf *)target)->type;
1096 for (type = lref->realtype; type && type->basetype == LY_TYPE_LEAFREF; type = ((struct lysc_type_leafref *)type)->realtype) {
1097 if (type == (struct lysc_type *)lref) {
1098 /* circular chain detected */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001099 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Invalid leafref path \"%s\" - circular chain of leafrefs detected.",
1100 lref->path->expr);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001101 return LY_EVALID;
1102 }
1103 }
1104
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001105 /* TODO check if leafref and its target are under common if-features */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001106
1107 return LY_SUCCESS;
1108}
1109
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001110/**
1111 * @brief Compile default value(s) for leaf or leaf-list expecting a complete compiled schema tree.
1112 *
1113 * @param[in] ctx Compile context.
1114 * @param[in] node Leaf or leaf-list to compile the default value(s) for.
1115 * @param[in] type Type of the default value.
1116 * @param[in] dflt Default value.
1117 * @param[in] dflt_pmod Parsed module of the @p dflt to resolve possible prefixes.
1118 * @param[in,out] storage Storage for the compiled default value.
Michal Vasko405cc9e2020-12-01 12:01:27 +01001119 * @param[in,out] unres Global unres structure for newly implemented modules.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001120 * @return LY_ERR value.
1121 */
1122static LY_ERR
1123lys_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 +01001124 const struct lysp_module *dflt_pmod, struct lyd_value *storage, struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001125{
1126 LY_ERR ret;
Michal Vasko25d6ad02020-10-22 12:20:22 +02001127 uint32_t options;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001128 struct ly_err_item *err = NULL;
1129
Michal Vasko25d6ad02020-10-22 12:20:22 +02001130 options = (ctx->ctx->flags & LY_CTX_REF_IMPLEMENTED) ? LY_TYPE_STORE_IMPLEMENT : 0;
1131 ret = type->plugin->store(ctx->ctx, type, dflt, strlen(dflt), options, LY_PREF_SCHEMA, (void *)dflt_pmod,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001132 LYD_HINT_SCHEMA, node, storage, unres, &err);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001133 if (ret == LY_EINCOMPLETE) {
1134 /* we have no data so we will not be resolving it */
1135 ret = LY_SUCCESS;
1136 }
1137
1138 if (ret) {
Radek Krejciddace2c2021-01-08 11:30:56 +01001139 LOG_LOCSET(node, NULL, NULL, NULL);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001140 if (err) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001141 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid default - value does not fit the type (%s).", err->msg);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001142 ly_err_free(err);
1143 } else {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001144 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Invalid default - value does not fit the type.");
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001145 }
Radek Krejciddace2c2021-01-08 11:30:56 +01001146 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001147 return ret;
1148 }
1149
1150 ++((struct lysc_type *)storage->realtype)->refcount;
1151 return LY_SUCCESS;
1152}
1153
1154/**
1155 * @brief Compile default value of a leaf expecting a complete compiled schema tree.
1156 *
1157 * @param[in] ctx Compile context.
1158 * @param[in] leaf Leaf that the default value is for.
1159 * @param[in] dflt Default value to compile.
Michal Vasko405cc9e2020-12-01 12:01:27 +01001160 * @param[in,out] unres Global unres structure for newly implemented modules.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001161 * @return LY_ERR value.
1162 */
1163static LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +01001164lys_compile_unres_leaf_dlft(struct lysc_ctx *ctx, struct lysc_node_leaf *leaf, struct lysp_qname *dflt,
1165 struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001166{
1167 LY_ERR ret;
1168
1169 assert(!leaf->dflt);
1170
1171 if (leaf->flags & (LYS_MAND_TRUE | LYS_KEY)) {
1172 /* ignore default values for keys and mandatory leaves */
1173 return LY_SUCCESS;
1174 }
1175
1176 /* allocate the default value */
1177 leaf->dflt = calloc(1, sizeof *leaf->dflt);
1178 LY_CHECK_ERR_RET(!leaf->dflt, LOGMEM(ctx->ctx), LY_EMEM);
1179
1180 /* store the default value */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001181 ret = lys_compile_unres_dflt(ctx, &leaf->node, leaf->type, dflt->str, dflt->mod, leaf->dflt, unres);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001182 if (ret) {
1183 free(leaf->dflt);
1184 leaf->dflt = NULL;
1185 }
1186
1187 return ret;
1188}
1189
1190/**
1191 * @brief Compile default values of a leaf-list expecting a complete compiled schema tree.
1192 *
1193 * @param[in] ctx Compile context.
1194 * @param[in] llist Leaf-list that the default value(s) are for.
1195 * @param[in] dflt Default value to compile, in case of a single value.
1196 * @param[in] dflts Sized array of default values, in case of more values.
Michal Vasko405cc9e2020-12-01 12:01:27 +01001197 * @param[in,out] unres Global unres structure for newly implemented modules.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001198 * @return LY_ERR value.
1199 */
1200static LY_ERR
1201lys_compile_unres_llist_dflts(struct lysc_ctx *ctx, struct lysc_node_leaflist *llist, struct lysp_qname *dflt,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001202 struct lysp_qname *dflts, struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001203{
1204 LY_ERR ret;
1205 LY_ARRAY_COUNT_TYPE orig_count, u, v;
1206
1207 assert(dflt || dflts);
1208
Radek Krejcic7d13e32020-12-09 12:32:24 +01001209 /* in case there were already some defaults and we are adding new by deviations */
1210 orig_count = LY_ARRAY_COUNT(llist->dflts);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001211
1212 /* allocate new items */
Radek Krejcic7d13e32020-12-09 12:32:24 +01001213 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 +02001214
1215 /* fill each new default value */
1216 if (dflts) {
1217 LY_ARRAY_FOR(dflts, u) {
1218 llist->dflts[orig_count + u] = calloc(1, sizeof **llist->dflts);
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001219 ret = lys_compile_unres_dflt(ctx, &llist->node, llist->type, dflts[u].str, dflts[u].mod,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001220 llist->dflts[orig_count + u], unres);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001221 LY_CHECK_ERR_RET(ret, free(llist->dflts[orig_count + u]), ret);
1222 LY_ARRAY_INCREMENT(llist->dflts);
1223 }
1224 } else {
1225 llist->dflts[orig_count] = calloc(1, sizeof **llist->dflts);
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001226 ret = lys_compile_unres_dflt(ctx, &llist->node, llist->type, dflt->str, dflt->mod,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001227 llist->dflts[orig_count], unres);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001228 LY_CHECK_ERR_RET(ret, free(llist->dflts[orig_count]), ret);
1229 LY_ARRAY_INCREMENT(llist->dflts);
1230 }
1231
1232 /* check default value uniqueness */
1233 if (llist->flags & LYS_CONFIG_W) {
1234 /* configuration data values must be unique - so check the default values */
1235 for (u = orig_count; u < LY_ARRAY_COUNT(llist->dflts); ++u) {
1236 for (v = 0; v < u; ++v) {
1237 if (!llist->dflts[u]->realtype->plugin->compare(llist->dflts[u], llist->dflts[v])) {
1238 lysc_update_path(ctx, llist->parent, llist->name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001239 LOGVAL(ctx->ctx, LYVE_SEMANTICS, "Configuration leaf-list has multiple defaults of the same value \"%s\".",
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001240 llist->dflts[u]->canonical);
1241 lysc_update_path(ctx, NULL, NULL);
1242 return LY_EVALID;
1243 }
1244 }
1245 }
1246 }
1247
1248 return LY_SUCCESS;
1249}
1250
Michal Vasko405cc9e2020-12-01 12:01:27 +01001251LY_ERR
1252lys_compile_unres_glob(struct ly_ctx *ctx, struct lys_glob_unres *unres)
1253{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001254 LY_ERR ret;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001255 struct lysc_node *node;
1256 struct lysc_type *type, *typeiter;
1257 struct lysc_type_leafref *lref;
1258 struct lysc_ctx cctx = {0};
1259 LY_ARRAY_COUNT_TYPE v;
1260 uint32_t i;
1261
1262 if (unres->recompile) {
1263 /* recompile all the modules and resolve the new unres instead (during recompilation) */
1264 unres->recompile = 0;
1265 return lys_recompile(ctx, 1);
1266 }
1267
1268 /* fake compile context */
1269 cctx.ctx = ctx;
1270 cctx.path_len = 1;
1271 cctx.path[0] = '/';
1272
1273 /* for leafref, we need 2 rounds - first detects circular chain by storing the first referred type (which
1274 * can be also leafref, in case it is already resolved, go through the chain and check that it does not
1275 * point to the starting leafref type). The second round stores the first non-leafref type for later data validation. */
1276 for (i = 0; i < unres->leafrefs.count; ++i) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001277 LY_ERR ret = LY_SUCCESS;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001278 node = unres->leafrefs.objs[i];
1279 cctx.cur_mod = node->module;
1280 cctx.pmod = node->module->parsed;
1281
Radek Krejciddace2c2021-01-08 11:30:56 +01001282 LOG_LOCSET(node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001283
Michal Vasko405cc9e2020-12-01 12:01:27 +01001284 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
1285 type = ((struct lysc_node_leaf *)node)->type;
1286 if (type->basetype == LY_TYPE_LEAFREF) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001287 ret = lys_compile_unres_leafref(&cctx, node, (struct lysc_type_leafref *)type, unres);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001288 } else if (type->basetype == LY_TYPE_UNION) {
1289 LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) {
1290 if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
1291 lref = (struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v];
Radek Krejci2efc45b2020-12-22 16:25:44 +01001292 ret = lys_compile_unres_leafref(&cctx, node, lref, unres);
1293 if (ret) {
1294 break;
1295 }
Michal Vasko405cc9e2020-12-01 12:01:27 +01001296 }
1297 }
1298 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001299
Radek Krejciddace2c2021-01-08 11:30:56 +01001300 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001301 if (ret) {
1302 return ret;
1303 }
Michal Vasko405cc9e2020-12-01 12:01:27 +01001304 }
1305 while (unres->leafrefs.count) {
1306 node = unres->leafrefs.objs[unres->leafrefs.count - 1];
1307 cctx.cur_mod = node->module;
1308 cctx.pmod = node->module->parsed;
1309
Radek Krejciddace2c2021-01-08 11:30:56 +01001310 LOG_LOCSET(node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001311
Michal Vasko405cc9e2020-12-01 12:01:27 +01001312 /* store pointer to the real type */
1313 type = ((struct lysc_node_leaf *)node)->type;
1314 if (type->basetype == LY_TYPE_LEAFREF) {
1315 for (typeiter = ((struct lysc_type_leafref *)type)->realtype;
1316 typeiter->basetype == LY_TYPE_LEAFREF;
1317 typeiter = ((struct lysc_type_leafref *)typeiter)->realtype) {}
1318 ((struct lysc_type_leafref *)type)->realtype = typeiter;
1319 } else if (type->basetype == LY_TYPE_UNION) {
1320 LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) {
1321 if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
1322 for (typeiter = ((struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v])->realtype;
1323 typeiter->basetype == LY_TYPE_LEAFREF;
1324 typeiter = ((struct lysc_type_leafref *)typeiter)->realtype) {}
1325 ((struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v])->realtype = typeiter;
1326 }
1327 }
1328 }
Radek Krejciddace2c2021-01-08 11:30:56 +01001329 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001330
1331 ly_set_rm_index(&unres->leafrefs, unres->leafrefs.count - 1, NULL);
1332 }
1333
1334 /* check xpath */
1335 while (unres->xpath.count) {
1336 node = unres->xpath.objs[unres->xpath.count - 1];
1337 cctx.cur_mod = node->module;
1338 cctx.pmod = node->module->parsed;
1339
Radek Krejciddace2c2021-01-08 11:30:56 +01001340 LOG_LOCSET(node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001341
1342 ret = lys_compile_unres_xpath(&cctx, node, unres);
Radek Krejciddace2c2021-01-08 11:30:56 +01001343 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001344 LY_CHECK_RET(ret);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001345
1346 ly_set_rm_index(&unres->xpath, unres->xpath.count - 1, NULL);
1347 }
1348
1349 /* finish incomplete default values compilation */
1350 while (unres->dflts.count) {
1351 struct lysc_unres_dflt *r = unres->dflts.objs[unres->dflts.count - 1];
1352 cctx.cur_mod = r->leaf->module;
1353 cctx.pmod = r->leaf->module->parsed;
1354
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001355 LOG_LOCSET(&r->leaf->node, NULL, NULL, NULL);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001356
Radek Krejci2efc45b2020-12-22 16:25:44 +01001357 if (r->leaf->nodetype == LYS_LEAF) {
1358 ret = lys_compile_unres_leaf_dlft(&cctx, r->leaf, r->dflt, unres);
1359 } else {
1360 ret = lys_compile_unres_llist_dflts(&cctx, r->llist, r->dflt, r->dflts, unres);
1361 }
Radek Krejciddace2c2021-01-08 11:30:56 +01001362 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001363 LY_CHECK_RET(ret);
1364
1365 lysc_unres_dflt_free(ctx, r);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001366 ly_set_rm_index(&unres->dflts, unres->dflts.count - 1, NULL);
1367 }
1368
1369 /* some unres items may have been added */
1370 if (unres->leafrefs.count || unres->xpath.count || unres->dflts.count) {
1371 return lys_compile_unres_glob(ctx, unres);
1372 }
1373
1374 return LY_SUCCESS;
1375}
1376
1377void
1378lys_compile_unres_glob_revert(struct ly_ctx *ctx, struct lys_glob_unres *unres)
1379{
1380 uint32_t i;
1381 struct lys_module *m;
1382
1383 for (i = 0; i < unres->implementing.count; ++i) {
1384 m = unres->implementing.objs[i];
1385 assert(m->implemented);
1386
1387 /* make the module correctly non-implemented again */
1388 m->implemented = 0;
1389 lys_precompile_augments_deviations_revert(ctx, m);
1390 }
1391
1392 for (i = 0; i < unres->creating.count; ++i) {
1393 m = unres->creating.objs[i];
1394
1395 /* remove the module from the context and free it */
1396 ly_set_rm(&ctx->list, m, NULL);
1397 lys_module_free(m, NULL);
1398 }
1399
1400 if (unres->implementing.count) {
1401 /* recompile because some implemented modules are no longer implemented */
1402 lys_recompile(ctx, 0);
1403 }
1404}
1405
1406void
1407lys_compile_unres_glob_erase(const struct ly_ctx *ctx, struct lys_glob_unres *unres)
1408{
1409 uint32_t i;
1410
1411 ly_set_erase(&unres->implementing, NULL);
1412 ly_set_erase(&unres->creating, NULL);
1413 for (i = 0; i < unres->dflts.count; ++i) {
1414 lysc_unres_dflt_free(ctx, unres->dflts.objs[i]);
1415 }
1416 ly_set_erase(&unres->dflts, NULL);
1417 ly_set_erase(&unres->xpath, NULL);
1418 ly_set_erase(&unres->leafrefs, NULL);
1419}
1420
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001421/**
Michal Vasko405cc9e2020-12-01 12:01:27 +01001422 * @brief Finish compilation of all the module unres sets in a compile context.
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001423 *
1424 * @param[in] ctx Compile context with unres sets.
1425 * @return LY_ERR value.
1426 */
1427static LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +01001428lys_compile_unres_mod(struct lysc_ctx *ctx)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001429{
1430 struct lysc_node *node;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001431 struct lysc_augment *aug;
1432 struct lysc_deviation *dev;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001433 uint32_t i;
1434
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001435 /* remove all disabled nodes */
1436 for (i = 0; i < ctx->disabled.count; ++i) {
1437 node = ctx->disabled.snodes[i];
1438 if (node->flags & LYS_KEY) {
Radek Krejciddace2c2021-01-08 11:30:56 +01001439 LOG_LOCSET(node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001440 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Key \"%s\" is disabled by its if-features.", node->name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001441 LOG_LOCBACK(1, 0, 0, 0);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001442 return LY_EVALID;
1443 }
1444
Radek Krejci2a9fc652021-01-22 17:44:34 +01001445 lysc_node_free(ctx->ctx, node, 1);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001446 }
1447
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001448 /* check that all augments were applied */
1449 for (i = 0; i < ctx->augs.count; ++i) {
1450 aug = ctx->augs.objs[i];
Radek Krejci2efc45b2020-12-22 16:25:44 +01001451 lysc_update_path(ctx, NULL, "{augment}");
1452 lysc_update_path(ctx, NULL, aug->nodeid->expr);
1453 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Augment target node \"%s\" from module \"%s\" was not found.",
1454 aug->nodeid->expr, LYSP_MODULE_NAME(aug->nodeid_pmod));
1455 lysc_update_path(ctx, NULL, NULL);
1456 lysc_update_path(ctx, NULL, NULL);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001457 }
1458 if (ctx->augs.count) {
1459 return LY_ENOTFOUND;
1460 }
1461
1462 /* check that all deviations were applied */
1463 for (i = 0; i < ctx->devs.count; ++i) {
1464 dev = ctx->devs.objs[i];
Radek Krejci2efc45b2020-12-22 16:25:44 +01001465 lysc_update_path(ctx, NULL, "{deviation}");
1466 lysc_update_path(ctx, NULL, dev->nodeid->expr);
1467 LOGVAL(ctx->ctx, LYVE_REFERENCE, "Deviation(s) target node \"%s\" from module \"%s\" was not found.",
1468 dev->nodeid->expr, LYSP_MODULE_NAME(dev->dev_pmods[0]));
1469 lysc_update_path(ctx, NULL, NULL);
1470 lysc_update_path(ctx, NULL, NULL);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001471 }
1472 if (ctx->devs.count) {
1473 return LY_ENOTFOUND;
1474 }
1475
1476 return LY_SUCCESS;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001477}
1478
1479/**
Michal Vasko405cc9e2020-12-01 12:01:27 +01001480 * @brief Erase all the module unres sets in a compile context.
1481 *
1482 * @param[in] ctx Compile context with unres sets.
1483 * @param[in] error Whether the compilation finished with an error or not.
1484 */
1485static void
1486lys_compile_unres_mod_erase(struct lysc_ctx *ctx, ly_bool error)
1487{
1488 uint32_t i;
1489
1490 ly_set_erase(&ctx->groupings, NULL);
1491 ly_set_erase(&ctx->tpdf_chain, NULL);
1492 ly_set_erase(&ctx->disabled, NULL);
1493
1494 if (!error) {
1495 /* there can be no leftover deviations or augments */
1496 LY_CHECK_ERR_RET(ctx->augs.count, LOGINT(ctx->ctx), );
1497 LY_CHECK_ERR_RET(ctx->devs.count, LOGINT(ctx->ctx), );
1498
1499 ly_set_erase(&ctx->augs, NULL);
1500 ly_set_erase(&ctx->devs, NULL);
1501 ly_set_erase(&ctx->uses_augs, NULL);
1502 ly_set_erase(&ctx->uses_rfns, NULL);
1503 } else {
1504 for (i = 0; i < ctx->augs.count; ++i) {
1505 lysc_augment_free(ctx->ctx, ctx->augs.objs[i]);
1506 }
1507 ly_set_erase(&ctx->augs, NULL);
1508 for (i = 0; i < ctx->devs.count; ++i) {
1509 lysc_deviation_free(ctx->ctx, ctx->devs.objs[i]);
1510 }
1511 ly_set_erase(&ctx->devs, NULL);
1512 for (i = 0; i < ctx->uses_augs.count; ++i) {
1513 lysc_augment_free(ctx->ctx, ctx->uses_augs.objs[i]);
1514 }
1515 ly_set_erase(&ctx->uses_augs, NULL);
1516 for (i = 0; i < ctx->uses_rfns.count; ++i) {
1517 lysc_refine_free(ctx->ctx, ctx->uses_rfns.objs[i]);
1518 }
1519 ly_set_erase(&ctx->uses_rfns, NULL);
1520 }
1521}
1522
1523/**
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001524 * @brief Compile identites in the current module and all its submodules.
1525 *
1526 * @param[in] ctx Compile context.
1527 * @return LY_ERR value.
1528 */
1529static LY_ERR
1530lys_compile_identities(struct lysc_ctx *ctx)
1531{
1532 struct lysp_submodule *submod;
1533 LY_ARRAY_COUNT_TYPE u;
1534
1535 if (!ctx->cur_mod->identities) {
1536 LY_CHECK_RET(lys_identity_precompile(ctx, NULL, NULL, ctx->cur_mod->parsed->identities, &ctx->cur_mod->identities));
1537 LY_ARRAY_FOR(ctx->cur_mod->parsed->includes, u) {
1538 submod = ctx->cur_mod->parsed->includes[u].submodule;
1539 LY_CHECK_RET(lys_identity_precompile(ctx, NULL, NULL, submod->identities, &ctx->cur_mod->identities));
1540 }
1541 }
1542
1543 if (ctx->cur_mod->parsed->identities) {
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001544 LY_CHECK_RET(lys_compile_identities_derived(ctx, ctx->cur_mod->parsed->identities, &ctx->cur_mod->identities));
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001545 }
1546 lysc_update_path(ctx, NULL, "{submodule}");
1547 LY_ARRAY_FOR(ctx->cur_mod->parsed->includes, u) {
1548
1549 submod = ctx->cur_mod->parsed->includes[u].submodule;
1550 if (submod->identities) {
1551 lysc_update_path(ctx, NULL, submod->name);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001552 LY_CHECK_RET(lys_compile_identities_derived(ctx, submod->identities, &ctx->cur_mod->identities));
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001553 lysc_update_path(ctx, NULL, NULL);
1554 }
1555 }
1556 lysc_update_path(ctx, NULL, NULL);
1557
1558 return LY_SUCCESS;
1559}
1560
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001561LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +01001562lys_recompile(struct ly_ctx *ctx, ly_bool log)
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001563{
1564 uint32_t idx;
1565 struct lys_module *mod;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001566 struct lys_glob_unres unres = {0};
1567 LY_ERR ret = LY_SUCCESS;
Radek Krejci430a5582020-12-01 13:35:18 +01001568 uint32_t prev_lo = 0;
Michal Vasko405cc9e2020-12-01 12:01:27 +01001569
1570 if (!log) {
1571 /* recompile, must succeed because the modules were already compiled; hide messages because any
1572 * warnings were already printed, are not really relevant, and would hide the real error */
1573 prev_lo = ly_log_options(0);
1574 }
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001575
1576 /* free all the modules */
1577 for (idx = 0; idx < ctx->list.count; ++idx) {
1578 mod = ctx->list.objs[idx];
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001579 if (mod->compiled) {
1580 /* free the module */
1581 lysc_module_free(mod->compiled, NULL);
1582 mod->compiled = NULL;
1583 }
1584
1585 /* free precompiled iffeatures */
1586 lys_free_feature_iffeatures(mod->parsed);
1587 }
1588
1589 /* recompile all the modules */
1590 for (idx = 0; idx < ctx->list.count; ++idx) {
1591 mod = ctx->list.objs[idx];
Michal Vasko405cc9e2020-12-01 12:01:27 +01001592 if (!mod->implemented || mod->compiled) {
1593 /* nothing to do */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001594 continue;
1595 }
1596
Michal Vasko405cc9e2020-12-01 12:01:27 +01001597 /* recompile */
1598 ret = lys_compile(mod, 0, &unres);
1599 if (ret) {
1600 if (!log) {
1601 LOGERR(mod->ctx, ret, "Recompilation of module \"%s\" failed.", mod->name);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001602 }
Michal Vasko405cc9e2020-12-01 12:01:27 +01001603 goto cleanup;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001604 }
1605 }
1606
Michal Vasko405cc9e2020-12-01 12:01:27 +01001607 /* resolve global unres */
1608 LY_CHECK_GOTO(ret = lys_compile_unres_glob(ctx, &unres), cleanup);
1609
1610cleanup:
1611 if (!log) {
1612 ly_log_options(prev_lo);
1613 }
1614 lys_compile_unres_glob_erase(ctx, &unres);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001615 return ret;
1616}
1617
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001618LY_ERR
Michal Vasko405cc9e2020-12-01 12:01:27 +01001619lys_compile(struct lys_module *mod, uint32_t options, struct lys_glob_unres *unres)
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001620{
1621 struct lysc_ctx ctx = {0};
1622 struct lysc_module *mod_c;
1623 struct lysp_module *sp;
1624 struct lysp_submodule *submod;
1625 struct lysp_node *pnode;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001626 struct lysp_node_grp *grp;
1627 LY_ARRAY_COUNT_TYPE u;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001628 LY_ERR ret = LY_SUCCESS;
1629
1630 LY_CHECK_ARG_RET(NULL, mod, mod->parsed, !mod->compiled, mod->ctx, LY_EINVAL);
1631
1632 if (!mod->implemented) {
1633 /* just imported modules are not compiled */
1634 return LY_SUCCESS;
1635 }
1636
1637 /* context will be changed */
1638 ++mod->ctx->module_set_id;
1639
1640 sp = mod->parsed;
1641
1642 ctx.ctx = mod->ctx;
1643 ctx.cur_mod = mod;
1644 ctx.pmod = sp;
1645 ctx.options = options;
1646 ctx.path_len = 1;
1647 ctx.path[0] = '/';
Michal Vasko405cc9e2020-12-01 12:01:27 +01001648 ctx.unres = unres;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001649
1650 mod->compiled = mod_c = calloc(1, sizeof *mod_c);
1651 LY_CHECK_ERR_RET(!mod_c, LOGMEM(mod->ctx), LY_EMEM);
1652 mod_c->mod = mod;
1653
1654 /* process imports */
1655 LY_ARRAY_FOR(sp->imports, u) {
1656 LY_CHECK_GOTO(ret = lys_compile_import(&ctx, &sp->imports[u]), error);
1657 }
1658
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01001659 /* identities */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001660 LY_CHECK_GOTO(ret = lys_compile_identities(&ctx), error);
1661
1662 /* augments and deviations */
1663 LY_CHECK_GOTO(ret = lys_precompile_augments_deviations(&ctx), error);
1664
1665 /* compile augments and deviations of our module from other modules so they can be applied during compilation */
1666 LY_CHECK_GOTO(ret = lys_precompile_own_augments(&ctx), error);
1667 LY_CHECK_GOTO(ret = lys_precompile_own_deviations(&ctx), error);
1668
1669 /* data nodes */
1670 LY_LIST_FOR(sp->data, pnode) {
1671 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL), error);
1672 }
1673
Radek Krejci2a9fc652021-01-22 17:44:34 +01001674 /* top-level RPCs */
1675 LY_LIST_FOR((struct lysp_node *)sp->rpcs, pnode) {
1676 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL), error);
1677 }
1678
1679 /* top-level notifications */
1680 LY_LIST_FOR((struct lysp_node *)sp->notifs, pnode) {
1681 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL), error);
1682 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001683
1684 /* extension instances */
1685 COMPILE_EXTS_GOTO(&ctx, sp->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error);
1686
1687 /* the same for submodules */
1688 LY_ARRAY_FOR(sp->includes, u) {
1689 submod = sp->includes[u].submodule;
1690 ctx.pmod = (struct lysp_module *)submod;
1691
1692 LY_LIST_FOR(submod->data, pnode) {
1693 ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL);
1694 LY_CHECK_GOTO(ret, error);
1695 }
1696
Radek Krejci2a9fc652021-01-22 17:44:34 +01001697 LY_LIST_FOR((struct lysp_node *)submod->rpcs, pnode) {
1698 ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL);
1699 LY_CHECK_GOTO(ret, error);
1700 }
1701
1702 LY_LIST_FOR((struct lysp_node *)submod->notifs, pnode) {
1703 ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL);
1704 LY_CHECK_GOTO(ret, error);
1705 }
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001706
1707 COMPILE_EXTS_GOTO(&ctx, submod->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error);
1708 }
Michal Vasko12606ee2020-11-25 17:05:11 +01001709 ctx.pmod = sp;
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001710
1711 /* validate non-instantiated groupings from the parsed schema,
1712 * without it we would accept even the schemas with invalid grouping specification */
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001713 ctx.options |= LYS_COMPILE_GROUPING;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001714 LY_LIST_FOR(sp->groupings, grp) {
1715 if (!(grp->flags & LYS_USED_GRP)) {
1716 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, NULL, grp), error);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001717 }
1718 }
1719 LY_LIST_FOR(sp->data, pnode) {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001720 LY_LIST_FOR((struct lysp_node_grp *)lysp_node_groupings(pnode), grp) {
1721 if (!(grp->flags & LYS_USED_GRP)) {
1722 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, grp), error);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001723 }
1724 }
1725 }
1726 LY_ARRAY_FOR(sp->includes, u) {
1727 submod = sp->includes[u].submodule;
1728 ctx.pmod = (struct lysp_module *)submod;
1729
Radek Krejci2a9fc652021-01-22 17:44:34 +01001730 LY_LIST_FOR(submod->groupings, grp) {
1731 if (!(grp->flags & LYS_USED_GRP)) {
1732 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, NULL, grp), error);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001733 }
1734 }
1735 LY_LIST_FOR(submod->data, pnode) {
Radek Krejci2a9fc652021-01-22 17:44:34 +01001736 LY_LIST_FOR((struct lysp_node_grp *)lysp_node_groupings(pnode), grp) {
1737 if (!(grp->flags & LYS_USED_GRP)) {
1738 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, grp), error);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001739 }
1740 }
1741 }
1742 }
1743 ctx.pmod = sp;
1744
Radek Krejciddace2c2021-01-08 11:30:56 +01001745 LOG_LOCBACK(0, 0, 1, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001746
Michal Vasko405cc9e2020-12-01 12:01:27 +01001747 /* finish compilation for all unresolved module items in the context */
1748 LY_CHECK_GOTO(ret = lys_compile_unres_mod(&ctx), error);
Michal Vasko12606ee2020-11-25 17:05:11 +01001749
Michal Vasko405cc9e2020-12-01 12:01:27 +01001750 lys_compile_unres_mod_erase(&ctx, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001751 return LY_SUCCESS;
1752
1753error:
Radek Krejciddace2c2021-01-08 11:30:56 +01001754 LOG_LOCBACK(0, 0, 1, 0);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001755 lys_precompile_augments_deviations_revert(ctx.ctx, mod);
Michal Vasko405cc9e2020-12-01 12:01:27 +01001756 lys_compile_unres_mod_erase(&ctx, 1);
Michal Vasko1a7a7bd2020-10-16 14:39:15 +02001757 lysc_module_free(mod_c, NULL);
1758 mod->compiled = NULL;
1759
1760 return ret;
1761}