blob: e89c1b735673fd9c2007579513cc8186bcdf9fd7 [file] [log] [blame]
Radek Krejci19a96102018-11-15 13:38:09 +01001/**
2 * @file tree_schema.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Schema tree implementation
5 *
6 * Copyright (c) 2015 - 2018 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
Radek Krejci535ea9f2020-05-29 16:01:05 +020015#define _GNU_SOURCE
Radek Krejci19a96102018-11-15 13:38:09 +010016
Radek Krejcie7b95092019-05-15 11:03:07 +020017#include <assert.h>
Radek Krejci19a96102018-11-15 13:38:09 +010018#include <ctype.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020019#include <stddef.h>
20#include <stdint.h>
Radek Krejci19a96102018-11-15 13:38:09 +010021#include <stdio.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020022#include <stdlib.h>
23#include <string.h>
Radek Krejci19a96102018-11-15 13:38:09 +010024
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020026#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020028#include "dict.h"
29#include "log.h"
Michal Vasko004d3152020-06-11 19:59:22 +020030#include "path.h"
Radek Krejcif0e1ba52020-05-22 15:14:35 +020031#include "parser.h"
Radek Krejcica376bd2020-06-11 16:04:06 +020032#include "parser_schema.h"
Radek Krejci0935f412019-08-20 16:15:18 +020033#include "plugins_exts.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020034#include "plugins_types.h"
Radek Krejci0935f412019-08-20 16:15:18 +020035#include "plugins_exts_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020036#include "set.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020037#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020038#include "tree_data.h"
Michal Vasko7c8439f2020-08-05 13:25:19 +020039#include "tree_data_internal.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020040#include "tree_schema.h"
Radek Krejci19a96102018-11-15 13:38:09 +010041#include "tree_schema_internal.h"
42#include "xpath.h"
43
Michal Vasko5fe75f12020-03-02 13:52:37 +010044static LY_ERR lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext,
Radek Krejci0f969882020-08-21 16:56:47 +020045 void *parent, LYEXT_PARENT parent_type, const struct lys_module *ext_mod);
Michal Vasko5fe75f12020-03-02 13:52:37 +010046
Michal Vasko7f45cf22020-10-01 12:49:44 +020047static LY_ERR lysp_qname_dup(const struct ly_ctx *ctx, struct lysp_qname *qname, const struct lysp_qname *orig_qname);
48
Radek Krejci19a96102018-11-15 13:38:09 +010049/**
50 * @brief Duplicate string into dictionary
51 * @param[in] CTX libyang context of the dictionary.
52 * @param[in] ORIG String to duplicate.
53 * @param[out] DUP Where to store the result.
54 */
Radek Krejci011e4aa2020-09-04 15:22:31 +020055#define DUP_STRING(CTX, ORIG, DUP, RET) if (ORIG) {RET = lydict_insert(CTX, ORIG, 0, &DUP);}
56
57#define DUP_STRING_GOTO(CTX, ORIG, DUP, RET, GOTO) if (ORIG) {LY_CHECK_GOTO(RET = lydict_insert(CTX, ORIG, 0, &DUP), GOTO);}
Radek Krejci19a96102018-11-15 13:38:09 +010058
Michal Vasko7f45cf22020-10-01 12:49:44 +020059#define DUP_ARRAY(CTX, ORIG_ARRAY, NEW_ARRAY, DUP_FUNC) \
60 if (ORIG_ARRAY) { \
61 LY_ARRAY_COUNT_TYPE u; \
62 LY_ARRAY_CREATE_RET(CTX, NEW_ARRAY, LY_ARRAY_COUNT(ORIG_ARRAY), LY_EMEM); \
63 LY_ARRAY_FOR(ORIG_ARRAY, u) { \
64 LY_ARRAY_INCREMENT(NEW_ARRAY); \
65 LY_CHECK_RET(DUP_FUNC(CTX, &(NEW_ARRAY)[u], &(ORIG_ARRAY)[u])); \
66 } \
67 }
68
Radek Krejciec4da802019-05-02 13:02:41 +020069#define COMPILE_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, ITER, FUNC, RET, GOTO) \
Radek Krejci19a96102018-11-15 13:38:09 +010070 if (ARRAY_P) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020071 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
72 LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \
73 for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \
Radek Krejci19a96102018-11-15 13:38:09 +010074 LY_ARRAY_INCREMENT(ARRAY_C); \
Radek Krejciec4da802019-05-02 13:02:41 +020075 RET = FUNC(CTX, &(ARRAY_P)[ITER], &(ARRAY_C)[ITER + __array_offset]); \
Radek Krejcid05cbd92018-12-05 14:26:40 +010076 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
77 } \
78 }
79
Michal Vasko7f45cf22020-10-01 12:49:44 +020080#define COMPILE_OP_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, PARENT, ITER, FUNC, USES_STATUS, RET, GOTO) \
Radek Krejci6eeb58f2019-02-22 16:29:37 +010081 if (ARRAY_P) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020082 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
83 LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \
84 for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \
Radek Krejci6eeb58f2019-02-22 16:29:37 +010085 LY_ARRAY_INCREMENT(ARRAY_C); \
Radek Krejciec4da802019-05-02 13:02:41 +020086 RET = FUNC(CTX, &(ARRAY_P)[ITER], PARENT, &(ARRAY_C)[ITER + __array_offset], USES_STATUS); \
Michal Vasko7f45cf22020-10-01 12:49:44 +020087 if (RET == LY_EDENIED) { \
88 LY_ARRAY_DECREMENT(ARRAY_C); \
89 } else if (RET != LY_SUCCESS) { \
90 goto GOTO; \
91 } \
Radek Krejci6eeb58f2019-02-22 16:29:37 +010092 } \
93 }
94
Radek Krejci0935f412019-08-20 16:15:18 +020095#define COMPILE_EXTS_GOTO(CTX, EXTS_P, EXT_C, PARENT, PARENT_TYPE, RET, GOTO) \
96 if (EXTS_P) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020097 LY_ARRAY_CREATE_GOTO((CTX)->ctx, EXT_C, LY_ARRAY_COUNT(EXTS_P), RET, GOTO); \
98 for (LY_ARRAY_COUNT_TYPE __exts_iter = 0, __array_offset = LY_ARRAY_COUNT(EXT_C); __exts_iter < LY_ARRAY_COUNT(EXTS_P); ++__exts_iter) { \
Radek Krejci0935f412019-08-20 16:15:18 +020099 LY_ARRAY_INCREMENT(EXT_C); \
Michal Vasko8d544252020-03-02 10:19:52 +0100100 RET = lys_compile_ext(CTX, &(EXTS_P)[__exts_iter], &(EXT_C)[__exts_iter + __array_offset], PARENT, PARENT_TYPE, NULL); \
Radek Krejci0935f412019-08-20 16:15:18 +0200101 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
102 } \
103 }
104
Radek Krejciec4da802019-05-02 13:02:41 +0200105#define COMPILE_ARRAY_UNIQUE_GOTO(CTX, ARRAY_P, ARRAY_C, ITER, FUNC, RET, GOTO) \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100106 if (ARRAY_P) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200107 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
108 LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \
109 for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100110 LY_ARRAY_INCREMENT(ARRAY_C); \
Radek Krejciec4da802019-05-02 13:02:41 +0200111 RET = FUNC(CTX, &(ARRAY_P)[ITER], ARRAY_C, &(ARRAY_C)[ITER + __array_offset]); \
Radek Krejci19a96102018-11-15 13:38:09 +0100112 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
113 } \
114 }
115
Radek Krejciec4da802019-05-02 13:02:41 +0200116#define COMPILE_MEMBER_GOTO(CTX, MEMBER_P, MEMBER_C, FUNC, RET, GOTO) \
Radek Krejci19a96102018-11-15 13:38:09 +0100117 if (MEMBER_P) { \
118 MEMBER_C = calloc(1, sizeof *(MEMBER_C)); \
119 LY_CHECK_ERR_GOTO(!(MEMBER_C), LOGMEM((CTX)->ctx); RET = LY_EMEM, GOTO); \
Radek Krejciec4da802019-05-02 13:02:41 +0200120 RET = FUNC(CTX, MEMBER_P, MEMBER_C); \
Radek Krejci19a96102018-11-15 13:38:09 +0100121 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
122 }
123
Radek Krejciec4da802019-05-02 13:02:41 +0200124#define COMPILE_MEMBER_ARRAY_GOTO(CTX, MEMBER_P, ARRAY_C, FUNC, RET, GOTO) \
Radek Krejci00b874b2019-02-12 10:54:50 +0100125 if (MEMBER_P) { \
126 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, 1, RET, GOTO); \
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200127 LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \
Radek Krejci00b874b2019-02-12 10:54:50 +0100128 LY_ARRAY_INCREMENT(ARRAY_C); \
Radek Krejciec4da802019-05-02 13:02:41 +0200129 RET = FUNC(CTX, MEMBER_P, &(ARRAY_C)[__array_offset]); \
Radek Krejci00b874b2019-02-12 10:54:50 +0100130 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
131 }
132
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100133#define COMPILE_CHECK_UNIQUENESS_ARRAY(CTX, ARRAY, MEMBER, EXCL, STMT, IDENT) \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100134 if (ARRAY) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200135 for (LY_ARRAY_COUNT_TYPE u__ = 0; u__ < LY_ARRAY_COUNT(ARRAY); ++u__) { \
Radek Krejci0af46292019-01-11 16:02:31 +0100136 if (&(ARRAY)[u__] != EXCL && (void*)((ARRAY)[u__].MEMBER) == (void*)(IDENT)) { \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100137 LOGVAL((CTX)->ctx, LY_VLOG_STR, (CTX)->path, LY_VCODE_DUPIDENT, IDENT, STMT); \
138 return LY_EVALID; \
139 } \
140 } \
141 }
142
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100143#define COMPILE_CHECK_UNIQUENESS_PARRAY(CTX, ARRAY, MEMBER, EXCL, STMT, IDENT) \
144 if (ARRAY) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200145 for (LY_ARRAY_COUNT_TYPE u__ = 0; u__ < LY_ARRAY_COUNT(ARRAY); ++u__) { \
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100146 if (&(ARRAY)[u__] != EXCL && (void*)((ARRAY)[u__]->MEMBER) == (void*)(IDENT)) { \
147 LOGVAL((CTX)->ctx, LY_VLOG_STR, (CTX)->path, LY_VCODE_DUPIDENT, IDENT, STMT); \
148 return LY_EVALID; \
149 } \
150 } \
151 }
152
153struct lysc_ext *
154lysc_ext_dup(struct lysc_ext *orig)
155{
156 ++orig->refcount;
157 return orig;
158}
159
Radek Krejci19a96102018-11-15 13:38:09 +0100160static struct lysc_ext_instance *
161lysc_ext_instance_dup(struct ly_ctx *ctx, struct lysc_ext_instance *orig)
162{
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100163 /* TODO - extensions, increase refcount */
Radek Krejci19a96102018-11-15 13:38:09 +0100164 (void) ctx;
165 (void) orig;
166 return NULL;
167}
168
Michal Vasko7f45cf22020-10-01 12:49:44 +0200169/**
170 * @brief Add/replace a leaf default value in unres.
171 * Can also be used for a single leaf-list default value.
172 *
173 * @param[in] ctx Compile context.
174 * @param[in] leaf Leaf with the default value.
175 * @param[in] dflt Default value to use.
176 * @return LY_ERR value.
177 */
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200178static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +0200179lysc_unres_leaf_dflt_add(struct lysc_ctx *ctx, struct lysc_node_leaf *leaf, struct lysp_qname *dflt)
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200180{
Michal Vasko7f45cf22020-10-01 12:49:44 +0200181 struct lysc_unres_dflt *r = NULL;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200182 uint32_t i;
183
184 for (i = 0; i < ctx->dflts.count; ++i) {
Michal Vasko7f45cf22020-10-01 12:49:44 +0200185 if (((struct lysc_unres_dflt *)ctx->dflts.objs[i])->leaf == leaf) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200186 /* just replace the default */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200187 r = ctx->dflts.objs[i];
188 lysp_qname_free(ctx->ctx, r->dflt);
189 free(r->dflt);
190 break;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200191 }
192 }
Michal Vasko7f45cf22020-10-01 12:49:44 +0200193 if (!r) {
194 /* add new unres item */
195 r = calloc(1, sizeof *r);
196 LY_CHECK_ERR_RET(!r, LOGMEM(ctx->ctx), LY_EMEM);
197 r->leaf = leaf;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200198
Michal Vasko7f45cf22020-10-01 12:49:44 +0200199 LY_CHECK_RET(ly_set_add(&ctx->dflts, r, LY_SET_OPT_USEASLIST, NULL));
200 }
201
202 r->dflt = malloc(sizeof *r->dflt);
Michal Vaskoaf702452020-10-02 09:02:55 +0200203 LY_CHECK_GOTO(!r->dflt, error);
204 LY_CHECK_GOTO(lysp_qname_dup(ctx->ctx, r->dflt, dflt), error);
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200205
206 return LY_SUCCESS;
Michal Vaskoaf702452020-10-02 09:02:55 +0200207
208error:
209 free(r->dflt);
210 LOGMEM(ctx->ctx);
211 return LY_EMEM;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200212}
213
Radek Krejcib56c7502019-02-13 14:19:54 +0100214/**
Michal Vasko7f45cf22020-10-01 12:49:44 +0200215 * @brief Add/replace a leaf-list default value(s) in unres.
216 *
217 * @param[in] ctx Compile context.
218 * @param[in] llist Leaf-list with the default value.
219 * @param[in] dflts Sized array of the default values.
220 * @return LY_ERR value.
Radek Krejci474f9b82019-07-24 11:36:37 +0200221 */
222static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +0200223lysc_unres_llist_dflts_add(struct lysc_ctx *ctx, struct lysc_node_leaflist *llist, struct lysp_qname *dflts)
Radek Krejci474f9b82019-07-24 11:36:37 +0200224{
Michal Vasko7f45cf22020-10-01 12:49:44 +0200225 struct lysc_unres_dflt *r = NULL;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200226 uint32_t i;
227
228 for (i = 0; i < ctx->dflts.count; ++i) {
Michal Vasko7f45cf22020-10-01 12:49:44 +0200229 if (((struct lysc_unres_dflt *)ctx->dflts.objs[i])->llist == llist) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200230 /* just replace the defaults */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200231 r = ctx->dflts.objs[i];
232 lysp_qname_free(ctx->ctx, r->dflt);
233 free(r->dflt);
234 r->dflt = NULL;
235 FREE_ARRAY(ctx->ctx, r->dflts, lysp_qname_free);
236 r->dflts = NULL;
237 break;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200238 }
239 }
Michal Vasko7f45cf22020-10-01 12:49:44 +0200240 if (!r) {
241 r = calloc(1, sizeof *r);
242 LY_CHECK_ERR_RET(!r, LOGMEM(ctx->ctx), LY_EMEM);
243 r->llist = llist;
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200244
Michal Vasko7f45cf22020-10-01 12:49:44 +0200245 LY_CHECK_RET(ly_set_add(&ctx->dflts, r, LY_SET_OPT_USEASLIST, NULL));
246 }
247
248 DUP_ARRAY(ctx->ctx, dflts, r->dflts, lysp_qname_dup);
Radek Krejci474f9b82019-07-24 11:36:37 +0200249
250 return LY_SUCCESS;
251}
252
Radek Krejci474f9b82019-07-24 11:36:37 +0200253static void
Michal Vasko7f45cf22020-10-01 12:49:44 +0200254lysc_unres_dflt_free(const struct ly_ctx *ctx, struct lysc_unres_dflt *r)
Radek Krejci474f9b82019-07-24 11:36:37 +0200255{
Michal Vasko7f45cf22020-10-01 12:49:44 +0200256 assert(!r->dflt || !r->dflts);
257 if (r->dflt) {
258 lysp_qname_free((struct ly_ctx *)ctx, r->dflt);
259 free(r->dflt);
260 } else {
261 FREE_ARRAY((struct ly_ctx *)ctx, r->dflts, lysp_qname_free);
Radek Krejci474f9b82019-07-24 11:36:37 +0200262 }
Michal Vasko7f45cf22020-10-01 12:49:44 +0200263 free(r);
Radek Krejci474f9b82019-07-24 11:36:37 +0200264}
265
Radek Krejci0e59c312019-08-15 15:34:15 +0200266void
Radek Krejci327de162019-06-14 12:52:07 +0200267lysc_update_path(struct lysc_ctx *ctx, struct lysc_node *parent, const char *name)
268{
269 int len;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200270 uint8_t nextlevel = 0; /* 0 - no starttag, 1 - '/' starttag, 2 - '=' starttag + '}' endtag */
Radek Krejci327de162019-06-14 12:52:07 +0200271
272 if (!name) {
273 /* removing last path segment */
274 if (ctx->path[ctx->path_len - 1] == '}') {
Michal Vaskod989ba02020-08-24 10:59:24 +0200275 for ( ; ctx->path[ctx->path_len] != '=' && ctx->path[ctx->path_len] != '{'; --ctx->path_len) {}
Radek Krejci327de162019-06-14 12:52:07 +0200276 if (ctx->path[ctx->path_len] == '=') {
277 ctx->path[ctx->path_len++] = '}';
278 } else {
279 /* not a top-level special tag, remove also preceiding '/' */
280 goto remove_nodelevel;
281 }
282 } else {
283remove_nodelevel:
Michal Vaskod989ba02020-08-24 10:59:24 +0200284 for ( ; ctx->path[ctx->path_len] != '/'; --ctx->path_len) {}
Radek Krejci327de162019-06-14 12:52:07 +0200285 if (ctx->path_len == 0) {
286 /* top-level (last segment) */
Radek Krejciacc79042019-07-25 14:14:57 +0200287 ctx->path_len = 1;
Radek Krejci327de162019-06-14 12:52:07 +0200288 }
289 }
290 /* set new terminating NULL-byte */
291 ctx->path[ctx->path_len] = '\0';
292 } else {
293 if (ctx->path_len > 1) {
294 if (!parent && ctx->path[ctx->path_len - 1] == '}' && ctx->path[ctx->path_len - 2] != '\'') {
295 /* extension of the special tag */
296 nextlevel = 2;
297 --ctx->path_len;
298 } else {
299 /* there is already some path, so add next level */
300 nextlevel = 1;
301 }
302 } /* else the path is just initiated with '/', so do not add additional slash in case of top-level nodes */
303
304 if (nextlevel != 2) {
305 if ((parent && parent->module == ctx->mod) || (!parent && ctx->path_len > 1 && name[0] == '{')) {
306 /* module not changed, print the name unprefixed */
Radek Krejci70ee9152019-07-25 11:27:27 +0200307 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s", nextlevel ? "/" : "", name);
Radek Krejci327de162019-06-14 12:52:07 +0200308 } else {
Radek Krejci70ee9152019-07-25 11:27:27 +0200309 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s:%s", nextlevel ? "/" : "", ctx->mod->name, name);
Radek Krejci327de162019-06-14 12:52:07 +0200310 }
311 } else {
Radek Krejci70ee9152019-07-25 11:27:27 +0200312 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "='%s'}", name);
Radek Krejci327de162019-06-14 12:52:07 +0200313 }
Radek Krejci1deb5be2020-08-26 16:43:36 +0200314 if (len >= LYSC_CTX_BUFSIZE - (int)ctx->path_len) {
Radek Krejciacc79042019-07-25 14:14:57 +0200315 /* output truncated */
316 ctx->path_len = LYSC_CTX_BUFSIZE - 1;
317 } else {
318 ctx->path_len += len;
319 }
Radek Krejci327de162019-06-14 12:52:07 +0200320 }
321}
322
323/**
Radek Krejcib56c7502019-02-13 14:19:54 +0100324 * @brief Duplicate the compiled pattern structure.
325 *
326 * Instead of duplicating memory, the reference counter in the @p orig is increased.
327 *
328 * @param[in] orig The pattern structure to duplicate.
329 * @return The duplicated structure to use.
330 */
Michal Vasko22df3f02020-08-24 13:29:22 +0200331static struct lysc_pattern *
Radek Krejci19a96102018-11-15 13:38:09 +0100332lysc_pattern_dup(struct lysc_pattern *orig)
333{
334 ++orig->refcount;
335 return orig;
336}
337
Radek Krejcib56c7502019-02-13 14:19:54 +0100338/**
339 * @brief Duplicate the array of compiled patterns.
340 *
341 * The sized array itself is duplicated, but the pattern structures are just shadowed by increasing their reference counter.
342 *
343 * @param[in] ctx Libyang context for logging.
344 * @param[in] orig The patterns sized array to duplicate.
345 * @return New sized array as a copy of @p orig.
346 * @return NULL in case of memory allocation error.
347 */
Michal Vasko22df3f02020-08-24 13:29:22 +0200348static struct lysc_pattern **
Radek Krejci19a96102018-11-15 13:38:09 +0100349lysc_patterns_dup(struct ly_ctx *ctx, struct lysc_pattern **orig)
350{
Radek Krejcid05cbd92018-12-05 14:26:40 +0100351 struct lysc_pattern **dup = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200352 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +0100353
Radek Krejcib56c7502019-02-13 14:19:54 +0100354 assert(orig);
355
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200356 LY_ARRAY_CREATE_RET(ctx, dup, LY_ARRAY_COUNT(orig), NULL);
Radek Krejci19a96102018-11-15 13:38:09 +0100357 LY_ARRAY_FOR(orig, u) {
358 dup[u] = lysc_pattern_dup(orig[u]);
359 LY_ARRAY_INCREMENT(dup);
360 }
361 return dup;
362}
363
Radek Krejcib56c7502019-02-13 14:19:54 +0100364/**
365 * @brief Duplicate compiled range structure.
366 *
367 * @param[in] ctx Libyang context for logging.
368 * @param[in] orig The range structure to be duplicated.
369 * @return New compiled range structure as a copy of @p orig.
370 * @return NULL in case of memory allocation error.
371 */
Michal Vasko22df3f02020-08-24 13:29:22 +0200372struct lysc_range *
Radek Krejci19a96102018-11-15 13:38:09 +0100373lysc_range_dup(struct ly_ctx *ctx, const struct lysc_range *orig)
374{
375 struct lysc_range *dup;
376 LY_ERR ret;
377
Radek Krejcib56c7502019-02-13 14:19:54 +0100378 assert(orig);
379
Radek Krejci19a96102018-11-15 13:38:09 +0100380 dup = calloc(1, sizeof *dup);
381 LY_CHECK_ERR_RET(!dup, LOGMEM(ctx), NULL);
382 if (orig->parts) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200383 LY_ARRAY_CREATE_GOTO(ctx, dup->parts, LY_ARRAY_COUNT(orig->parts), ret, cleanup);
384 LY_ARRAY_COUNT(dup->parts) = LY_ARRAY_COUNT(orig->parts);
385 memcpy(dup->parts, orig->parts, LY_ARRAY_COUNT(dup->parts) * sizeof *dup->parts);
Radek Krejci19a96102018-11-15 13:38:09 +0100386 }
Radek Krejci011e4aa2020-09-04 15:22:31 +0200387 DUP_STRING_GOTO(ctx, orig->eapptag, dup->eapptag, ret, cleanup);
388 DUP_STRING_GOTO(ctx, orig->emsg, dup->emsg, ret, cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +0100389 dup->exts = lysc_ext_instance_dup(ctx, orig->exts);
390
391 return dup;
392cleanup:
393 free(dup);
394 (void) ret; /* set but not used due to the return type */
395 return NULL;
396}
397
Radek Krejcib56c7502019-02-13 14:19:54 +0100398/**
399 * @brief Stack for processing if-feature expressions.
400 */
Radek Krejci19a96102018-11-15 13:38:09 +0100401struct iff_stack {
Radek Krejci1deb5be2020-08-26 16:43:36 +0200402 size_t size; /**< number of items in the stack */
403 size_t index; /**< first empty item */
404 uint8_t *stack; /**< stack - array of @ref ifftokens to create the if-feature expression in prefix format */
Radek Krejci19a96102018-11-15 13:38:09 +0100405};
406
Radek Krejcib56c7502019-02-13 14:19:54 +0100407/**
408 * @brief Add @ref ifftokens into the stack.
409 * @param[in] stack The if-feature stack to use.
410 * @param[in] value One of the @ref ifftokens to store in the stack.
411 * @return LY_EMEM in case of memory allocation error
412 * @return LY_ESUCCESS if the value successfully stored.
413 */
Radek Krejci19a96102018-11-15 13:38:09 +0100414static LY_ERR
415iff_stack_push(struct iff_stack *stack, uint8_t value)
416{
417 if (stack->index == stack->size) {
418 stack->size += 4;
419 stack->stack = ly_realloc(stack->stack, stack->size * sizeof *stack->stack);
420 LY_CHECK_ERR_RET(!stack->stack, LOGMEM(NULL); stack->size = 0, LY_EMEM);
421 }
422 stack->stack[stack->index++] = value;
423 return LY_SUCCESS;
424}
425
Radek Krejcib56c7502019-02-13 14:19:54 +0100426/**
427 * @brief Get (and remove) the last item form the stack.
428 * @param[in] stack The if-feature stack to use.
429 * @return The value from the top of the stack.
430 */
Radek Krejci19a96102018-11-15 13:38:09 +0100431static uint8_t
432iff_stack_pop(struct iff_stack *stack)
433{
Radek Krejcib56c7502019-02-13 14:19:54 +0100434 assert(stack && stack->index);
435
Radek Krejci19a96102018-11-15 13:38:09 +0100436 stack->index--;
437 return stack->stack[stack->index];
438}
439
Radek Krejcib56c7502019-02-13 14:19:54 +0100440/**
441 * @brief Clean up the stack.
442 * @param[in] stack The if-feature stack to use.
443 */
Radek Krejci19a96102018-11-15 13:38:09 +0100444static void
445iff_stack_clean(struct iff_stack *stack)
446{
447 stack->size = 0;
448 free(stack->stack);
449}
450
Radek Krejcib56c7502019-02-13 14:19:54 +0100451/**
452 * @brief Store the @ref ifftokens (@p op) on the given position in the 2bits array
453 * (libyang format of the if-feature expression).
454 * @param[in,out] list The 2bits array to modify.
455 * @param[in] op The operand (@ref ifftokens) to store.
456 * @param[in] pos Position (0-based) where to store the given @p op.
457 */
Radek Krejci19a96102018-11-15 13:38:09 +0100458static void
Radek Krejci1deb5be2020-08-26 16:43:36 +0200459iff_setop(uint8_t *list, uint8_t op, size_t pos)
Radek Krejci19a96102018-11-15 13:38:09 +0100460{
461 uint8_t *item;
462 uint8_t mask = 3;
463
Radek Krejci19a96102018-11-15 13:38:09 +0100464 assert(op <= 3); /* max 2 bits */
465
466 item = &list[pos / 4];
467 mask = mask << 2 * (pos % 4);
468 *item = (*item) & ~mask;
469 *item = (*item) | (op << 2 * (pos % 4));
470}
471
Radek Krejcib56c7502019-02-13 14:19:54 +0100472#define LYS_IFF_LP 0x04 /**< Additional, temporary, value of @ref ifftokens: ( */
473#define LYS_IFF_RP 0x08 /**< Additional, temporary, value of @ref ifftokens: ) */
Radek Krejci19a96102018-11-15 13:38:09 +0100474
Radek Krejci0af46292019-01-11 16:02:31 +0100475/**
476 * @brief Find a feature of the given name and referenced in the given module.
477 *
478 * If the compiled schema is available (the schema is implemented), the feature from the compiled schema is
479 * returned. Otherwise, the special array of pre-compiled features is used to search for the feature. Such
480 * features are always disabled (feature from not implemented schema cannot be enabled), but in case the schema
481 * will be made implemented in future (no matter if implicitly via augmenting/deviating it or explicitly via
482 * ly_ctx_module_implement()), the compilation of these feature structure is finished, but the pointers
483 * assigned till that time will be still valid.
484 *
485 * @param[in] mod Module where the feature was referenced (used to resolve prefix of the feature).
486 * @param[in] name Name of the feature including possible prefix.
487 * @param[in] len Length of the string representing the feature identifier in the name variable (mandatory!).
488 * @return Pointer to the feature structure if found, NULL otherwise.
489 */
Radek Krejci19a96102018-11-15 13:38:09 +0100490static struct lysc_feature *
Michal Vasko7f45cf22020-10-01 12:49:44 +0200491lys_feature_find(const struct lys_module *mod, const char *name, size_t len)
Radek Krejci19a96102018-11-15 13:38:09 +0100492{
493 size_t i;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200494 LY_ARRAY_COUNT_TYPE u;
Radek Krejci14915cc2020-09-14 17:28:13 +0200495 struct lysc_feature *f;
Radek Krejci19a96102018-11-15 13:38:09 +0100496
Radek Krejci120d8542020-08-12 09:29:16 +0200497 assert(mod);
498
Radek Krejci19a96102018-11-15 13:38:09 +0100499 for (i = 0; i < len; ++i) {
500 if (name[i] == ':') {
501 /* we have a prefixed feature */
Radek Krejci0af46292019-01-11 16:02:31 +0100502 mod = lys_module_find_prefix(mod, name, i);
Radek Krejci19a96102018-11-15 13:38:09 +0100503 LY_CHECK_RET(!mod, NULL);
504
505 name = &name[i + 1];
506 len = len - i - 1;
507 }
508 }
509
510 /* we have the correct module, get the feature */
Radek Krejci14915cc2020-09-14 17:28:13 +0200511 LY_ARRAY_FOR(mod->features, u) {
512 f = &mod->features[u];
Radek Krejci7f9b6512019-09-18 13:11:09 +0200513 if (!ly_strncmp(f->name, name, len)) {
Radek Krejci19a96102018-11-15 13:38:09 +0100514 return f;
515 }
516 }
517
518 return NULL;
519}
520
Michal Vasko8d544252020-03-02 10:19:52 +0100521/**
Michal Vasko5fe75f12020-03-02 13:52:37 +0100522 * @brief Fill in the prepared compiled extensions definition structure according to the parsed extension definition.
523 */
524static LY_ERR
525lys_compile_extension(struct lysc_ctx *ctx, const struct lys_module *ext_mod, struct lysp_ext *ext_p, struct lysc_ext **ext)
526{
527 LY_ERR ret = LY_SUCCESS;
528
529 if (!ext_p->compiled) {
530 lysc_update_path(ctx, NULL, "{extension}");
531 lysc_update_path(ctx, NULL, ext_p->name);
532
533 /* compile the extension definition */
534 ext_p->compiled = calloc(1, sizeof **ext);
535 ext_p->compiled->refcount = 1;
Radek Krejci011e4aa2020-09-04 15:22:31 +0200536 DUP_STRING_GOTO(ctx->ctx, ext_p->name, ext_p->compiled->name, ret, done);
537 DUP_STRING_GOTO(ctx->ctx, ext_p->argument, ext_p->compiled->argument, ret, done);
Michal Vasko5fe75f12020-03-02 13:52:37 +0100538 ext_p->compiled->module = (struct lys_module *)ext_mod;
539 COMPILE_EXTS_GOTO(ctx, ext_p->exts, ext_p->compiled->exts, *ext, LYEXT_PAR_EXT, ret, done);
540
541 lysc_update_path(ctx, NULL, NULL);
542 lysc_update_path(ctx, NULL, NULL);
543
544 /* find extension definition plugin */
545 ext_p->compiled->plugin = lyext_get_plugin(ext_p->compiled);
546 }
547
548 *ext = lysc_ext_dup(ext_p->compiled);
549
550done:
551 return ret;
552}
553
554/**
Michal Vasko8d544252020-03-02 10:19:52 +0100555 * @brief Fill in the prepared compiled extension instance structure according to the parsed extension instance.
556 *
557 * @param[in] ctx Compilation context.
558 * @param[in] ext_p Parsed extension instance.
559 * @param[in,out] ext Prepared compiled extension instance.
560 * @param[in] parent Extension instance parent.
561 * @param[in] parent_type Extension instance parent type.
562 * @param[in] ext_mod Optional module with the extension instance extension definition, set only for internal annotations.
563 */
Radek Krejci19a96102018-11-15 13:38:09 +0100564static LY_ERR
Michal Vasko8d544252020-03-02 10:19:52 +0100565lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext, void *parent,
Radek Krejci0f969882020-08-21 16:56:47 +0200566 LYEXT_PARENT parent_type, const struct lys_module *ext_mod)
Radek Krejci19a96102018-11-15 13:38:09 +0100567{
Radek Krejci011e4aa2020-09-04 15:22:31 +0200568 LY_ERR ret = LY_SUCCESS;
Radek Krejci19a96102018-11-15 13:38:09 +0100569 const char *name;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200570 size_t u;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200571 LY_ARRAY_COUNT_TYPE v;
Radek Krejci7c960162019-09-18 14:16:12 +0200572 const char *prefixed_name = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +0100573
Radek Krejci011e4aa2020-09-04 15:22:31 +0200574 DUP_STRING(ctx->ctx, ext_p->argument, ext->argument, ret);
575 LY_CHECK_RET(ret);
576
Radek Krejci19a96102018-11-15 13:38:09 +0100577 ext->insubstmt = ext_p->insubstmt;
578 ext->insubstmt_index = ext_p->insubstmt_index;
Radek Krejci28681fa2019-09-06 13:08:45 +0200579 ext->module = ctx->mod_def;
Radek Krejci0935f412019-08-20 16:15:18 +0200580 ext->parent = parent;
581 ext->parent_type = parent_type;
Radek Krejci19a96102018-11-15 13:38:09 +0100582
Michal Vasko22df3f02020-08-24 13:29:22 +0200583 lysc_update_path(ctx, ext->parent_type == LYEXT_PAR_NODE ? (struct lysc_node *)ext->parent : NULL, "{extension}");
Radek Krejcif56e2a42019-09-09 14:15:25 +0200584
Radek Krejci19a96102018-11-15 13:38:09 +0100585 /* get module where the extension definition should be placed */
Radek Krejci1e008d22020-08-17 11:37:37 +0200586 for (u = strlen(ext_p->name); u && ext_p->name[u - 1] != ':'; --u) {}
Radek Krejci7c960162019-09-18 14:16:12 +0200587 if (ext_p->yin) {
588 /* YIN parser has to replace prefixes by the namespace - XML namespace/prefix pairs may differs form the YANG schema's
589 * namespace/prefix pair. YIN parser does not have the imports available, so mapping from XML namespace to the
590 * YANG (import) prefix must be done here. */
591 if (!ly_strncmp(ctx->mod_def->ns, ext_p->name, u - 1)) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200592 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, &ext_p->name[u], 0, &prefixed_name), cleanup);
Radek Krejci7c960162019-09-18 14:16:12 +0200593 u = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200594 } else {
595 assert(ctx->mod_def->parsed);
596 LY_ARRAY_FOR(ctx->mod_def->parsed->imports, v) {
597 if (!ly_strncmp(ctx->mod_def->parsed->imports[v].module->ns, ext_p->name, u - 1)) {
Radek Krejci7c960162019-09-18 14:16:12 +0200598 char *s;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200599 LY_CHECK_ERR_GOTO(asprintf(&s, "%s:%s", ctx->mod_def->parsed->imports[v].prefix, &ext_p->name[u]) == -1,
Radek Krejci200f1062020-07-11 22:51:03 +0200600 ret = LY_EMEM, cleanup);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200601 LY_CHECK_GOTO(ret = lydict_insert_zc(ctx->ctx, s, &prefixed_name), cleanup);
Michal Vasko7c8439f2020-08-05 13:25:19 +0200602 u = strlen(ctx->mod_def->parsed->imports[v].prefix) + 1; /* add semicolon */
Radek Krejci7c960162019-09-18 14:16:12 +0200603 break;
604 }
605 }
606 }
607 if (!prefixed_name) {
608 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
609 "Invalid XML prefix of \"%.*s\" namespace used for extension instance identifier.", u, ext_p->name);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200610 ret = LY_EVALID;
Radek Krejci7c960162019-09-18 14:16:12 +0200611 goto cleanup;
612 }
613 } else {
614 prefixed_name = ext_p->name;
615 }
616 lysc_update_path(ctx, NULL, prefixed_name);
617
Michal Vasko8d544252020-03-02 10:19:52 +0100618 if (!ext_mod) {
Radek Krejci63f55512020-05-20 14:37:18 +0200619 ext_mod = u ? lys_module_find_prefix(ctx->mod_def, prefixed_name, u - 1) : ctx->mod_def;
Michal Vasko8d544252020-03-02 10:19:52 +0100620 if (!ext_mod) {
621 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
622 "Invalid prefix \"%.*s\" used for extension instance identifier.", u, prefixed_name);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200623 ret = LY_EVALID;
Michal Vasko8d544252020-03-02 10:19:52 +0100624 goto cleanup;
625 } else if (!ext_mod->parsed->extensions) {
626 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
627 "Extension instance \"%s\" refers \"%s\" module that does not contain extension definitions.",
628 prefixed_name, ext_mod->name);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200629 ret = LY_EVALID;
Michal Vasko8d544252020-03-02 10:19:52 +0100630 goto cleanup;
631 }
Radek Krejci7c960162019-09-18 14:16:12 +0200632 }
633 name = &prefixed_name[u];
Radek Krejci0935f412019-08-20 16:15:18 +0200634
Michal Vasko5fe75f12020-03-02 13:52:37 +0100635 /* find the parsed extension definition there */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200636 LY_ARRAY_FOR(ext_mod->parsed->extensions, v) {
637 if (!strcmp(name, ext_mod->parsed->extensions[v].name)) {
Michal Vasko5fe75f12020-03-02 13:52:37 +0100638 /* compile extension definition and assign it */
Radek Krejci011e4aa2020-09-04 15:22:31 +0200639 LY_CHECK_GOTO(ret = lys_compile_extension(ctx, ext_mod, &ext_mod->parsed->extensions[v], &ext->def), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +0100640 break;
641 }
642 }
Radek Krejci7c960162019-09-18 14:16:12 +0200643 if (!ext->def) {
644 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
645 "Extension definition of extension instance \"%s\" not found.", prefixed_name);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200646 ret = LY_EVALID;
Radek Krejci7c960162019-09-18 14:16:12 +0200647 goto cleanup;
648 }
Radek Krejci0935f412019-08-20 16:15:18 +0200649
Radek Krejcif56e2a42019-09-09 14:15:25 +0200650 /* unify the parsed extension from YIN and YANG sources. Without extension definition, it is not possible
651 * to get extension's argument from YIN source, so it is stored as one of the substatements. Here we have
652 * to find it, mark it with LYS_YIN_ARGUMENT and store it in the compiled structure. */
Radek Krejci7c960162019-09-18 14:16:12 +0200653 if (ext_p->yin && ext->def->argument && !ext->argument) {
Radek Krejcif56e2a42019-09-09 14:15:25 +0200654 /* Schema was parsed from YIN and an argument is expected, ... */
655 struct lysp_stmt *stmt = NULL;
656
657 if (ext->def->flags & LYS_YINELEM_TRUE) {
658 /* ... argument was the first XML child element */
659 if (ext_p->child && !(ext_p->child->flags & LYS_YIN_ATTR)) {
660 /* TODO check namespace of the statement */
661 if (!strcmp(ext_p->child->stmt, ext->def->argument)) {
662 stmt = ext_p->child;
663 }
664 }
665 } else {
666 /* ... argument was one of the XML attributes which are represented as child stmt
667 * with LYS_YIN_ATTR flag */
668 for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {
669 if (!strcmp(stmt->stmt, ext->def->argument)) {
670 /* this is the extension's argument */
Radek Krejcif56e2a42019-09-09 14:15:25 +0200671 break;
672 }
673 }
674 }
675 if (!stmt) {
676 /* missing extension's argument */
677 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci7c960162019-09-18 14:16:12 +0200678 "Extension instance \"%s\" misses argument \"%s\".", prefixed_name, ext->def->argument);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200679 ret = LY_EVALID;
Radek Krejci7c960162019-09-18 14:16:12 +0200680 goto cleanup;
Radek Krejcif56e2a42019-09-09 14:15:25 +0200681
682 }
Radek Krejci011e4aa2020-09-04 15:22:31 +0200683 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, stmt->arg, 0, &ext->argument), cleanup);
Radek Krejcif56e2a42019-09-09 14:15:25 +0200684 stmt->flags |= LYS_YIN_ARGUMENT;
685 }
Radek Krejci7c960162019-09-18 14:16:12 +0200686 if (prefixed_name != ext_p->name) {
687 lydict_remove(ctx->ctx, ext_p->name);
688 ext_p->name = prefixed_name;
689 if (!ext_p->argument && ext->argument) {
Radek Krejci011e4aa2020-09-04 15:22:31 +0200690 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, ext->argument, 0, &ext_p->argument), cleanup);
Radek Krejci7c960162019-09-18 14:16:12 +0200691 }
692 }
Radek Krejcif56e2a42019-09-09 14:15:25 +0200693
Radek Krejci0935f412019-08-20 16:15:18 +0200694 if (ext->def->plugin && ext->def->plugin->compile) {
Radek Krejciad5963b2019-09-06 16:03:05 +0200695 if (ext->argument) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200696 lysc_update_path(ctx, (struct lysc_node *)ext, ext->argument);
Radek Krejciad5963b2019-09-06 16:03:05 +0200697 }
Radek Krejci011e4aa2020-09-04 15:22:31 +0200698 LY_CHECK_GOTO(ret = ext->def->plugin->compile(ctx, ext_p, ext), cleanup);
Radek Krejciad5963b2019-09-06 16:03:05 +0200699 if (ext->argument) {
700 lysc_update_path(ctx, NULL, NULL);
701 }
Radek Krejci0935f412019-08-20 16:15:18 +0200702 }
Radek Krejcif56e2a42019-09-09 14:15:25 +0200703 ext_p->compiled = ext;
704
Radek Krejci7c960162019-09-18 14:16:12 +0200705cleanup:
706 if (prefixed_name && prefixed_name != ext_p->name) {
707 lydict_remove(ctx->ctx, prefixed_name);
708 }
709
Radek Krejcif56e2a42019-09-09 14:15:25 +0200710 lysc_update_path(ctx, NULL, NULL);
711 lysc_update_path(ctx, NULL, NULL);
Radek Krejci0935f412019-08-20 16:15:18 +0200712
Radek Krejci7c960162019-09-18 14:16:12 +0200713 return ret;
Radek Krejci0935f412019-08-20 16:15:18 +0200714}
715
716/**
Radek Krejcib56c7502019-02-13 14:19:54 +0100717 * @brief Compile information from the if-feature statement
718 * @param[in] ctx Compile context.
Michal Vasko7f45cf22020-10-01 12:49:44 +0200719 * @param[in] qname The if-feature argument to process. It is pointer-to-qname just to unify the compile functions.
Radek Krejcib56c7502019-02-13 14:19:54 +0100720 * @param[in,out] iff Prepared (empty) compiled if-feature structure to fill.
721 * @return LY_ERR value.
722 */
Radek Krejci19a96102018-11-15 13:38:09 +0100723static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +0200724lys_compile_iffeature(struct lysc_ctx *ctx, struct lysp_qname *qname, struct lysc_iffeature *iff)
Radek Krejci19a96102018-11-15 13:38:09 +0100725{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200726 LY_ERR rc = LY_SUCCESS;
Michal Vasko7f45cf22020-10-01 12:49:44 +0200727 const char *c = qname->str;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200728 int64_t i, j;
729 int8_t op_len, last_not = 0, checkversion = 0;
730 LY_ARRAY_COUNT_TYPE f_size = 0, expr_size = 0, f_exp = 1;
Radek Krejci19a96102018-11-15 13:38:09 +0100731 uint8_t op;
732 struct iff_stack stack = {0, 0, NULL};
733 struct lysc_feature *f;
734
735 assert(c);
736
737 /* pre-parse the expression to get sizes for arrays, also do some syntax checks of the expression */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200738 for (i = j = 0; c[i]; i++) {
Radek Krejci19a96102018-11-15 13:38:09 +0100739 if (c[i] == '(') {
740 j++;
741 checkversion = 1;
742 continue;
743 } else if (c[i] == ')') {
744 j--;
745 continue;
746 } else if (isspace(c[i])) {
747 checkversion = 1;
748 continue;
749 }
750
Radek Krejci1deb5be2020-08-26 16:43:36 +0200751 if (!strncmp(&c[i], "not", op_len = 3) || !strncmp(&c[i], "and", op_len = 3) || !strncmp(&c[i], "or", op_len = 2)) {
752 uint64_t spaces;
753 for (spaces = 0; c[i + op_len + spaces] && isspace(c[i + op_len + spaces]); spaces++);
754 if (c[i + op_len + spaces] == '\0') {
Radek Krejci19a96102018-11-15 13:38:09 +0100755 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Michal Vasko7f45cf22020-10-01 12:49:44 +0200756 "Invalid value \"%s\" of if-feature - unexpected end of expression.", qname->str);
Radek Krejci19a96102018-11-15 13:38:09 +0100757 return LY_EVALID;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200758 } else if (!isspace(c[i + op_len])) {
Radek Krejci19a96102018-11-15 13:38:09 +0100759 /* feature name starting with the not/and/or */
760 last_not = 0;
761 f_size++;
762 } else if (c[i] == 'n') { /* not operation */
763 if (last_not) {
764 /* double not */
765 expr_size = expr_size - 2;
766 last_not = 0;
767 } else {
768 last_not = 1;
769 }
770 } else { /* and, or */
Radek Krejci6788abc2019-06-14 13:56:49 +0200771 if (f_exp != f_size) {
772 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Michal Vasko7f45cf22020-10-01 12:49:44 +0200773 "Invalid value \"%s\" of if-feature - missing feature/expression before \"%.*s\" operation.",
774 qname->str, op_len, &c[i]);
Radek Krejci6788abc2019-06-14 13:56:49 +0200775 return LY_EVALID;
776 }
Radek Krejci19a96102018-11-15 13:38:09 +0100777 f_exp++;
Radek Krejci6788abc2019-06-14 13:56:49 +0200778
Radek Krejci19a96102018-11-15 13:38:09 +0100779 /* not a not operation */
780 last_not = 0;
781 }
Radek Krejci1deb5be2020-08-26 16:43:36 +0200782 i += op_len;
Radek Krejci19a96102018-11-15 13:38:09 +0100783 } else {
784 f_size++;
785 last_not = 0;
786 }
787 expr_size++;
788
789 while (!isspace(c[i])) {
Radek Krejci6788abc2019-06-14 13:56:49 +0200790 if (!c[i] || c[i] == ')' || c[i] == '(') {
Radek Krejci19a96102018-11-15 13:38:09 +0100791 i--;
792 break;
793 }
794 i++;
795 }
796 }
Radek Krejci6788abc2019-06-14 13:56:49 +0200797 if (j) {
Radek Krejci19a96102018-11-15 13:38:09 +0100798 /* not matching count of ( and ) */
799 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Michal Vasko7f45cf22020-10-01 12:49:44 +0200800 "Invalid value \"%s\" of if-feature - non-matching opening and closing parentheses.", qname->str);
Radek Krejci19a96102018-11-15 13:38:09 +0100801 return LY_EVALID;
802 }
Radek Krejci6788abc2019-06-14 13:56:49 +0200803 if (f_exp != f_size) {
804 /* features do not match the needed arguments for the logical operations */
805 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
806 "Invalid value \"%s\" of if-feature - number of features in expression does not match "
Michal Vasko7f45cf22020-10-01 12:49:44 +0200807 "the required number of operands for the operations.", qname->str);
Radek Krejci6788abc2019-06-14 13:56:49 +0200808 return LY_EVALID;
809 }
Radek Krejci19a96102018-11-15 13:38:09 +0100810
811 if (checkversion || expr_size > 1) {
812 /* check that we have 1.1 module */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200813 if (qname->mod->version != LYS_VERSION_1_1) {
Radek Krejci19a96102018-11-15 13:38:09 +0100814 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Michal Vasko7f45cf22020-10-01 12:49:44 +0200815 "Invalid value \"%s\" of if-feature - YANG 1.1 expression in YANG 1.0 module.", qname->str);
Radek Krejci19a96102018-11-15 13:38:09 +0100816 return LY_EVALID;
817 }
818 }
819
820 /* allocate the memory */
821 LY_ARRAY_CREATE_RET(ctx->ctx, iff->features, f_size, LY_EMEM);
822 iff->expr = calloc((j = (expr_size / 4) + ((expr_size % 4) ? 1 : 0)), sizeof *iff->expr);
823 stack.stack = malloc(expr_size * sizeof *stack.stack);
Radek Krejci1deb5be2020-08-26 16:43:36 +0200824 LY_CHECK_ERR_GOTO(!stack.stack || !iff->expr, LOGMEM(ctx->ctx); rc = LY_EMEM, error);
Radek Krejci19a96102018-11-15 13:38:09 +0100825
826 stack.size = expr_size;
827 f_size--; expr_size--; /* used as indexes from now */
828
829 for (i--; i >= 0; i--) {
830 if (c[i] == ')') {
831 /* push it on stack */
832 iff_stack_push(&stack, LYS_IFF_RP);
833 continue;
834 } else if (c[i] == '(') {
835 /* pop from the stack into result all operators until ) */
Michal Vaskod989ba02020-08-24 10:59:24 +0200836 while ((op = iff_stack_pop(&stack)) != LYS_IFF_RP) {
Radek Krejci19a96102018-11-15 13:38:09 +0100837 iff_setop(iff->expr, op, expr_size--);
838 }
839 continue;
840 } else if (isspace(c[i])) {
841 continue;
842 }
843
844 /* end of operator or operand -> find beginning and get what is it */
845 j = i + 1;
846 while (i >= 0 && !isspace(c[i]) && c[i] != '(') {
847 i--;
848 }
849 i++; /* go back by one step */
850
851 if (!strncmp(&c[i], "not", 3) && isspace(c[i + 3])) {
852 if (stack.index && stack.stack[stack.index - 1] == LYS_IFF_NOT) {
853 /* double not */
854 iff_stack_pop(&stack);
855 } else {
856 /* not has the highest priority, so do not pop from the stack
857 * as in case of AND and OR */
858 iff_stack_push(&stack, LYS_IFF_NOT);
859 }
860 } else if (!strncmp(&c[i], "and", 3) && isspace(c[i + 3])) {
861 /* as for OR - pop from the stack all operators with the same or higher
862 * priority and store them to the result, then push the AND to the stack */
863 while (stack.index && stack.stack[stack.index - 1] <= LYS_IFF_AND) {
864 op = iff_stack_pop(&stack);
865 iff_setop(iff->expr, op, expr_size--);
866 }
867 iff_stack_push(&stack, LYS_IFF_AND);
868 } else if (!strncmp(&c[i], "or", 2) && isspace(c[i + 2])) {
869 while (stack.index && stack.stack[stack.index - 1] <= LYS_IFF_OR) {
870 op = iff_stack_pop(&stack);
871 iff_setop(iff->expr, op, expr_size--);
872 }
873 iff_stack_push(&stack, LYS_IFF_OR);
874 } else {
875 /* feature name, length is j - i */
876
877 /* add it to the expression */
878 iff_setop(iff->expr, LYS_IFF_F, expr_size--);
879
880 /* now get the link to the feature definition */
Michal Vasko7f45cf22020-10-01 12:49:44 +0200881 f = lys_feature_find(qname->mod, &c[i], j - i);
Radek Krejci0af46292019-01-11 16:02:31 +0100882 LY_CHECK_ERR_GOTO(!f, LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Michal Vasko7f45cf22020-10-01 12:49:44 +0200883 "Invalid value \"%s\" of if-feature - unable to find feature \"%.*s\".", qname->str, j - i, &c[i]);
884 rc = LY_EVALID, error)
Radek Krejci19a96102018-11-15 13:38:09 +0100885 iff->features[f_size] = f;
886 LY_ARRAY_INCREMENT(iff->features);
887 f_size--;
888 }
889 }
890 while (stack.index) {
891 op = iff_stack_pop(&stack);
892 iff_setop(iff->expr, op, expr_size--);
893 }
894
895 if (++expr_size || ++f_size) {
896 /* not all expected operators and operands found */
897 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Michal Vasko7f45cf22020-10-01 12:49:44 +0200898 "Invalid value \"%s\" of if-feature - processing error.", qname->str);
Radek Krejci19a96102018-11-15 13:38:09 +0100899 rc = LY_EINT;
900 } else {
901 rc = LY_SUCCESS;
902 }
903
904error:
905 /* cleanup */
906 iff_stack_clean(&stack);
907
908 return rc;
909}
910
Radek Krejcib56c7502019-02-13 14:19:54 +0100911/**
Michal Vasko175012e2019-11-06 15:49:14 +0100912 * @brief Get the XPath context node for the given schema node.
913 * @param[in] start The schema node where the XPath expression appears.
914 * @return The context node to evaluate XPath expression in given schema node.
915 * @return NULL in case the context node is the root node.
916 */
917static struct lysc_node *
918lysc_xpath_context(struct lysc_node *start)
919{
Michal Vasko1bf09392020-03-27 12:38:10 +0100920 for (; start && !(start->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA | LYS_RPC | LYS_ACTION | LYS_NOTIF));
Radek Krejci1e008d22020-08-17 11:37:37 +0200921 start = start->parent) {}
Michal Vasko175012e2019-11-06 15:49:14 +0100922 return start;
923}
924
925/**
Radek Krejcib56c7502019-02-13 14:19:54 +0100926 * @brief Compile information from the when statement
927 * @param[in] ctx Compile context.
928 * @param[in] when_p The parsed when statement structure.
Michal Vasko175012e2019-11-06 15:49:14 +0100929 * @param[in] flags Flags of the node with the "when" defiition.
930 * @param[in] node Node that inherited the "when" definition, must be connected to parents.
Radek Krejcib56c7502019-02-13 14:19:54 +0100931 * @param[out] when Pointer where to store pointer to the created compiled when structure.
932 * @return LY_ERR value.
933 */
Radek Krejci19a96102018-11-15 13:38:09 +0100934static LY_ERR
Michal Vasko175012e2019-11-06 15:49:14 +0100935lys_compile_when(struct lysc_ctx *ctx, struct lysp_when *when_p, uint16_t flags, struct lysc_node *node, struct lysc_when **when)
Radek Krejci19a96102018-11-15 13:38:09 +0100936{
Radek Krejci19a96102018-11-15 13:38:09 +0100937 LY_ERR ret = LY_SUCCESS;
938
Radek Krejci00b874b2019-02-12 10:54:50 +0100939 *when = calloc(1, sizeof **when);
Radek Krejcif03a9e22020-09-18 20:09:31 +0200940 LY_CHECK_ERR_RET(!(*when), LOGMEM(ctx->ctx), LY_EMEM);
Radek Krejci00b874b2019-02-12 10:54:50 +0100941 (*when)->refcount = 1;
Radek Krejcif03a9e22020-09-18 20:09:31 +0200942 LY_CHECK_RET(lyxp_expr_parse(ctx->ctx, when_p->cond, 0, 1, &(*when)->cond));
Radek Krejcia0f704a2019-09-09 16:12:23 +0200943 (*when)->module = ctx->mod_def;
Michal Vasko175012e2019-11-06 15:49:14 +0100944 (*when)->context = lysc_xpath_context(node);
Radek Krejci011e4aa2020-09-04 15:22:31 +0200945 DUP_STRING_GOTO(ctx->ctx, when_p->dsc, (*when)->dsc, ret, done);
946 DUP_STRING_GOTO(ctx->ctx, when_p->ref, (*when)->ref, ret, done);
Radek Krejci0935f412019-08-20 16:15:18 +0200947 COMPILE_EXTS_GOTO(ctx, when_p->exts, (*when)->exts, (*when), LYEXT_PAR_WHEN, ret, done);
Michal Vasko175012e2019-11-06 15:49:14 +0100948 (*when)->flags = flags & LYS_STATUS_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +0100949
950done:
951 return ret;
952}
953
Radek Krejcib56c7502019-02-13 14:19:54 +0100954/**
955 * @brief Compile information from the must statement
956 * @param[in] ctx Compile context.
957 * @param[in] must_p The parsed must statement structure.
Radek Krejcib56c7502019-02-13 14:19:54 +0100958 * @param[in,out] must Prepared (empty) compiled must structure to fill.
959 * @return LY_ERR value.
960 */
Radek Krejci19a96102018-11-15 13:38:09 +0100961static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +0200962lys_compile_must(struct lysc_ctx *ctx, struct lysp_restr *must_p, struct lysc_must *must)
Radek Krejci19a96102018-11-15 13:38:09 +0100963{
Radek Krejci19a96102018-11-15 13:38:09 +0100964 LY_ERR ret = LY_SUCCESS;
965
Michal Vasko7f45cf22020-10-01 12:49:44 +0200966 LY_CHECK_RET(lyxp_expr_parse(ctx->ctx, must_p->arg.str, 0, 1, &must->cond));
967 must->module = (struct lys_module *)must_p->arg.mod;
Radek Krejci011e4aa2020-09-04 15:22:31 +0200968 DUP_STRING_GOTO(ctx->ctx, must_p->eapptag, must->eapptag, ret, done);
969 DUP_STRING_GOTO(ctx->ctx, must_p->emsg, must->emsg, ret, done);
970 DUP_STRING_GOTO(ctx->ctx, must_p->dsc, must->dsc, ret, done);
971 DUP_STRING_GOTO(ctx->ctx, must_p->ref, must->ref, ret, done);
Radek Krejci0935f412019-08-20 16:15:18 +0200972 COMPILE_EXTS_GOTO(ctx, must_p->exts, must->exts, must, LYEXT_PAR_MUST, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +0100973
974done:
975 return ret;
976}
977
Radek Krejcib56c7502019-02-13 14:19:54 +0100978/**
Michal Vasko7c8439f2020-08-05 13:25:19 +0200979 * @brief Compile information in the import statement - make sure there is the target module
Radek Krejcib56c7502019-02-13 14:19:54 +0100980 * @param[in] ctx Compile context.
Michal Vasko7c8439f2020-08-05 13:25:19 +0200981 * @param[in] imp_p The parsed import statement structure to fill the module to.
Radek Krejcib56c7502019-02-13 14:19:54 +0100982 * @return LY_ERR value.
983 */
Radek Krejci19a96102018-11-15 13:38:09 +0100984static LY_ERR
Michal Vasko7c8439f2020-08-05 13:25:19 +0200985lys_compile_import(struct lysc_ctx *ctx, struct lysp_import *imp_p)
Radek Krejci19a96102018-11-15 13:38:09 +0100986{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200987 const struct lys_module *mod = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +0100988 LY_ERR ret = LY_SUCCESS;
989
Radek Krejci7f2a5362018-11-28 13:05:37 +0100990 /* make sure that we have the parsed version (lysp_) of the imported module to import groupings or typedefs.
991 * The compiled version is needed only for augments, deviates and leafrefs, so they are checked (and added,
Radek Krejci0e5d8382018-11-28 16:37:53 +0100992 * if needed) when these nodes are finally being instantiated and validated at the end of schema compilation. */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200993 if (!imp_p->module->parsed) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100994 /* try to use filepath if present */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200995 if (imp_p->module->filepath) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200996 struct ly_in *in;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200997 if (ly_in_new_filepath(imp_p->module->filepath, 0, &in)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200998 LOGINT(ctx->ctx);
999 } else {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001000 LY_CHECK_RET(lys_parse(ctx->ctx, in, !strcmp(&imp_p->module->filepath[strlen(imp_p->module->filepath - 4)],
Michal Vasko3a41dff2020-07-15 14:30:28 +02001001 ".yin") ? LYS_IN_YIN : LYS_IN_YANG, &mod));
Michal Vasko7c8439f2020-08-05 13:25:19 +02001002 if (mod != imp_p->module) {
Michal Vasko3a41dff2020-07-15 14:30:28 +02001003 LOGERR(ctx->ctx, LY_EINT, "Filepath \"%s\" of the module \"%s\" does not match.",
Michal Vasko7c8439f2020-08-05 13:25:19 +02001004 imp_p->module->filepath, imp_p->module->name);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001005 mod = NULL;
1006 }
Radek Krejci19a96102018-11-15 13:38:09 +01001007 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001008 ly_in_free(in, 1);
Radek Krejci19a96102018-11-15 13:38:09 +01001009 }
1010 if (!mod) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02001011 if (lysp_load_module(ctx->ctx, imp_p->module->name, imp_p->module->revision, 0, 1, (struct lys_module **)&mod)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001012 LOGERR(ctx->ctx, LY_ENOTFOUND, "Unable to reload \"%s\" module to import it into \"%s\", source data not found.",
Michal Vasko7c8439f2020-08-05 13:25:19 +02001013 imp_p->module->name, ctx->mod->name);
Radek Krejci19a96102018-11-15 13:38:09 +01001014 return LY_ENOTFOUND;
1015 }
1016 }
Radek Krejci19a96102018-11-15 13:38:09 +01001017 }
1018
Radek Krejci19a96102018-11-15 13:38:09 +01001019 return ret;
1020}
1021
Michal Vasko33ff9422020-07-03 09:50:39 +02001022LY_ERR
1023lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module,
Radek Krejci0f969882020-08-21 16:56:47 +02001024 struct lysp_ident *identities_p, struct lysc_ident **identities)
Radek Krejci19a96102018-11-15 13:38:09 +01001025{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001026 LY_ARRAY_COUNT_TYPE offset = 0, u, v;
Michal Vasko33ff9422020-07-03 09:50:39 +02001027 struct lysc_ctx context = {0};
Radek Krejci19a96102018-11-15 13:38:09 +01001028 LY_ERR ret = LY_SUCCESS;
1029
Michal Vasko33ff9422020-07-03 09:50:39 +02001030 assert(ctx_sc || ctx);
Radek Krejci327de162019-06-14 12:52:07 +02001031
Michal Vasko33ff9422020-07-03 09:50:39 +02001032 if (!ctx_sc) {
1033 context.ctx = ctx;
1034 context.mod = module;
Radek Krejci120d8542020-08-12 09:29:16 +02001035 context.mod_def = module;
Michal Vasko33ff9422020-07-03 09:50:39 +02001036 context.path_len = 1;
1037 context.path[0] = '/';
1038 ctx_sc = &context;
1039 }
Radek Krejci19a96102018-11-15 13:38:09 +01001040
Michal Vasko33ff9422020-07-03 09:50:39 +02001041 if (!identities_p) {
1042 return LY_SUCCESS;
1043 }
1044 if (*identities) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001045 offset = LY_ARRAY_COUNT(*identities);
Michal Vasko33ff9422020-07-03 09:50:39 +02001046 }
1047
1048 lysc_update_path(ctx_sc, NULL, "{identity}");
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001049 LY_ARRAY_CREATE_RET(ctx_sc->ctx, *identities, LY_ARRAY_COUNT(identities_p), LY_EMEM);
Michal Vasko33ff9422020-07-03 09:50:39 +02001050 LY_ARRAY_FOR(identities_p, u) {
1051 lysc_update_path(ctx_sc, NULL, identities_p[u].name);
1052
1053 LY_ARRAY_INCREMENT(*identities);
1054 COMPILE_CHECK_UNIQUENESS_ARRAY(ctx_sc, *identities, name, &(*identities)[offset + u], "identity", identities_p[u].name);
Radek Krejci011e4aa2020-09-04 15:22:31 +02001055 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].name, (*identities)[offset + u].name, ret, done);
1056 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].dsc, (*identities)[offset + u].dsc, ret, done);
1057 DUP_STRING_GOTO(ctx_sc->ctx, identities_p[u].ref, (*identities)[offset + u].ref, ret, done);
Michal Vasko33ff9422020-07-03 09:50:39 +02001058 (*identities)[offset + u].module = ctx_sc->mod;
1059 COMPILE_ARRAY_GOTO(ctx_sc, identities_p[u].iffeatures, (*identities)[offset + u].iffeatures, v,
1060 lys_compile_iffeature, ret, done);
1061 /* backlinks (derived) can be added no sooner than when all the identities in the current module are present */
1062 COMPILE_EXTS_GOTO(ctx_sc, identities_p[u].exts, (*identities)[offset + u].exts, &(*identities)[offset + u],
1063 LYEXT_PAR_IDENT, ret, done);
1064 (*identities)[offset + u].flags = identities_p[u].flags;
1065
1066 lysc_update_path(ctx_sc, NULL, NULL);
1067 }
1068 lysc_update_path(ctx_sc, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01001069done:
1070 return ret;
1071}
1072
Radek Krejcib56c7502019-02-13 14:19:54 +01001073/**
1074 * @brief Check circular dependency of identities - identity MUST NOT reference itself (via their base statement).
1075 *
1076 * The function works in the same way as lys_compile_feature_circular_check() with different structures and error messages.
1077 *
1078 * @param[in] ctx Compile context for logging.
1079 * @param[in] ident The base identity (its derived list is being extended by the identity being currently processed).
1080 * @param[in] derived The list of derived identities of the identity being currently processed (not the one provided as @p ident)
1081 * @return LY_SUCCESS if everything is ok.
1082 * @return LY_EVALID if the identity is derived from itself.
1083 */
Radek Krejci38222632019-02-12 16:55:05 +01001084static LY_ERR
1085lys_compile_identity_circular_check(struct lysc_ctx *ctx, struct lysc_ident *ident, struct lysc_ident **derived)
1086{
Radek Krejciba03a5a2020-08-27 14:40:41 +02001087 LY_ERR ret = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001088 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci38222632019-02-12 16:55:05 +01001089 struct ly_set recursion = {0};
1090 struct lysc_ident *drv;
1091
1092 if (!derived) {
1093 return LY_SUCCESS;
1094 }
1095
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001096 for (u = 0; u < LY_ARRAY_COUNT(derived); ++u) {
Radek Krejci38222632019-02-12 16:55:05 +01001097 if (ident == derived[u]) {
1098 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1099 "Identity \"%s\" is indirectly derived from itself.", ident->name);
Radek Krejciba03a5a2020-08-27 14:40:41 +02001100 ret = LY_EVALID;
Radek Krejci38222632019-02-12 16:55:05 +01001101 goto cleanup;
1102 }
Radek Krejciba03a5a2020-08-27 14:40:41 +02001103 ret = ly_set_add(&recursion, derived[u], 0, NULL);
1104 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci38222632019-02-12 16:55:05 +01001105 }
1106
1107 for (v = 0; v < recursion.count; ++v) {
1108 drv = recursion.objs[v];
1109 if (!drv->derived) {
1110 continue;
1111 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001112 for (u = 0; u < LY_ARRAY_COUNT(drv->derived); ++u) {
Radek Krejci38222632019-02-12 16:55:05 +01001113 if (ident == drv->derived[u]) {
1114 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1115 "Identity \"%s\" is indirectly derived from itself.", ident->name);
Radek Krejciba03a5a2020-08-27 14:40:41 +02001116 ret = LY_EVALID;
Radek Krejci38222632019-02-12 16:55:05 +01001117 goto cleanup;
1118 }
Radek Krejciba03a5a2020-08-27 14:40:41 +02001119 ret = ly_set_add(&recursion, drv->derived[u], 0, NULL);
1120 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci38222632019-02-12 16:55:05 +01001121 }
1122 }
Radek Krejci38222632019-02-12 16:55:05 +01001123
1124cleanup:
1125 ly_set_erase(&recursion, NULL);
1126 return ret;
1127}
1128
Radek Krejcia3045382018-11-22 14:30:31 +01001129/**
1130 * @brief Find and process the referenced base identities from another identity or identityref
1131 *
Radek Krejciaca74032019-06-04 08:53:06 +02001132 * For bases in identity set backlinks to them from the base identities. For identityref, store
Radek Krejcia3045382018-11-22 14:30:31 +01001133 * the array of pointers to the base identities. So one of the ident or bases parameter must be set
1134 * to distinguish these two use cases.
1135 *
1136 * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes.
1137 * @param[in] bases_p Array of names (including prefix if necessary) of base identities.
Michal Vasko33ff9422020-07-03 09:50:39 +02001138 * @param[in] ident Referencing identity to work with, NULL for identityref.
Radek Krejcia3045382018-11-22 14:30:31 +01001139 * @param[in] bases Array of bases of identityref to fill in.
1140 * @return LY_ERR value.
1141 */
Radek Krejci19a96102018-11-15 13:38:09 +01001142static LY_ERR
Michal Vasko33ff9422020-07-03 09:50:39 +02001143lys_compile_identity_bases(struct lysc_ctx *ctx, struct lys_module *context_module, const char **bases_p,
Radek Krejci0f969882020-08-21 16:56:47 +02001144 struct lysc_ident *ident, struct lysc_ident ***bases)
Radek Krejci19a96102018-11-15 13:38:09 +01001145{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001146 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci19a96102018-11-15 13:38:09 +01001147 const char *s, *name;
Radek Krejcie86bf772018-12-14 11:39:53 +01001148 struct lys_module *mod;
Radek Krejci80d281e2020-09-14 17:42:54 +02001149 struct lysc_ident **idref;
Radek Krejci555cb5b2018-11-16 14:54:33 +01001150
1151 assert(ident || bases);
1152
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001153 if (LY_ARRAY_COUNT(bases_p) > 1 && ctx->mod_def->version < 2) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01001154 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1155 "Multiple bases in %s are allowed only in YANG 1.1 modules.", ident ? "identity" : "identityref type");
1156 return LY_EVALID;
1157 }
1158
Michal Vasko33ff9422020-07-03 09:50:39 +02001159 LY_ARRAY_FOR(bases_p, u) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01001160 s = strchr(bases_p[u], ':');
1161 if (s) {
1162 /* prefixed identity */
1163 name = &s[1];
Radek Krejci0a33b042020-05-27 10:05:06 +02001164 mod = lys_module_find_prefix(context_module, bases_p[u], s - bases_p[u]);
Radek Krejci555cb5b2018-11-16 14:54:33 +01001165 } else {
1166 name = bases_p[u];
Radek Krejci0a33b042020-05-27 10:05:06 +02001167 mod = context_module;
Radek Krejci555cb5b2018-11-16 14:54:33 +01001168 }
1169 if (!mod) {
1170 if (ident) {
1171 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1172 "Invalid prefix used for base (%s) of identity \"%s\".", bases_p[u], ident->name);
1173 } else {
1174 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1175 "Invalid prefix used for base (%s) of identityref.", bases_p[u]);
1176 }
1177 return LY_EVALID;
1178 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001179
Radek Krejci555cb5b2018-11-16 14:54:33 +01001180 idref = NULL;
Radek Krejci80d281e2020-09-14 17:42:54 +02001181 LY_ARRAY_FOR(mod->identities, v) {
1182 if (!strcmp(name, mod->identities[v].name)) {
Michal Vasko33ff9422020-07-03 09:50:39 +02001183 if (ident) {
Radek Krejci80d281e2020-09-14 17:42:54 +02001184 if (ident == &mod->identities[v]) {
Michal Vasko33ff9422020-07-03 09:50:39 +02001185 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1186 "Identity \"%s\" is derived from itself.", ident->name);
1187 return LY_EVALID;
Radek Krejci555cb5b2018-11-16 14:54:33 +01001188 }
Radek Krejci80d281e2020-09-14 17:42:54 +02001189 LY_CHECK_RET(lys_compile_identity_circular_check(ctx, &mod->identities[v], ident->derived));
Michal Vasko33ff9422020-07-03 09:50:39 +02001190 /* we have match! store the backlink */
Radek Krejci80d281e2020-09-14 17:42:54 +02001191 LY_ARRAY_NEW_RET(ctx->ctx, mod->identities[v].derived, idref, LY_EMEM);
Michal Vasko33ff9422020-07-03 09:50:39 +02001192 *idref = ident;
1193 } else {
1194 /* we have match! store the found identity */
1195 LY_ARRAY_NEW_RET(ctx->ctx, *bases, idref, LY_EMEM);
Radek Krejci80d281e2020-09-14 17:42:54 +02001196 *idref = &mod->identities[v];
Radek Krejci555cb5b2018-11-16 14:54:33 +01001197 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001198 break;
Radek Krejci555cb5b2018-11-16 14:54:33 +01001199 }
1200 }
1201 if (!idref || !(*idref)) {
1202 if (ident) {
1203 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1204 "Unable to find base (%s) of identity \"%s\".", bases_p[u], ident->name);
1205 } else {
1206 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1207 "Unable to find base (%s) of identityref.", bases_p[u]);
1208 }
1209 return LY_EVALID;
1210 }
1211 }
1212 return LY_SUCCESS;
1213}
1214
Radek Krejcia3045382018-11-22 14:30:31 +01001215/**
1216 * @brief For the given array of identities, set the backlinks from all their base identities.
1217 * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes.
1218 * @param[in] idents_p Array of identities definitions from the parsed schema structure.
1219 * @param[in] idents Array of referencing identities to which the backlinks are supposed to be set.
1220 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
1221 */
Radek Krejci555cb5b2018-11-16 14:54:33 +01001222static LY_ERR
1223lys_compile_identities_derived(struct lysc_ctx *ctx, struct lysp_ident *idents_p, struct lysc_ident *idents)
1224{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001225 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01001226
Michal Vasko33ff9422020-07-03 09:50:39 +02001227 lysc_update_path(ctx, NULL, "{identity}");
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001228 for (u = 0; u < LY_ARRAY_COUNT(idents_p); ++u) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001229 if (!idents_p[u].bases) {
Radek Krejci19a96102018-11-15 13:38:09 +01001230 continue;
1231 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001232 lysc_update_path(ctx, NULL, idents[u].name);
Radek Krejci0a33b042020-05-27 10:05:06 +02001233 LY_CHECK_RET(lys_compile_identity_bases(ctx, idents[u].module, idents_p[u].bases, &idents[u], NULL));
Radek Krejci327de162019-06-14 12:52:07 +02001234 lysc_update_path(ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01001235 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001236 lysc_update_path(ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01001237 return LY_SUCCESS;
1238}
1239
Radek Krejci0af46292019-01-11 16:02:31 +01001240LY_ERR
Michal Vasko33ff9422020-07-03 09:50:39 +02001241lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module,
Radek Krejci0f969882020-08-21 16:56:47 +02001242 struct lysp_feature *features_p, struct lysc_feature **features)
Radek Krejci0af46292019-01-11 16:02:31 +01001243{
Radek Krejci011e4aa2020-09-04 15:22:31 +02001244 LY_ERR ret = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001245 LY_ARRAY_COUNT_TYPE offset = 0, u;
Radek Krejci0af46292019-01-11 16:02:31 +01001246 struct lysc_ctx context = {0};
1247
Radek Krejci327de162019-06-14 12:52:07 +02001248 assert(ctx_sc || ctx);
1249
1250 if (!ctx_sc) {
1251 context.ctx = ctx;
1252 context.mod = module;
1253 context.path_len = 1;
1254 context.path[0] = '/';
1255 ctx_sc = &context;
1256 }
Radek Krejci0af46292019-01-11 16:02:31 +01001257
1258 if (!features_p) {
1259 return LY_SUCCESS;
1260 }
1261 if (*features) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001262 offset = LY_ARRAY_COUNT(*features);
Radek Krejci0af46292019-01-11 16:02:31 +01001263 }
1264
Radek Krejci327de162019-06-14 12:52:07 +02001265 lysc_update_path(ctx_sc, NULL, "{feature}");
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001266 LY_ARRAY_CREATE_RET(ctx_sc->ctx, *features, LY_ARRAY_COUNT(features_p), LY_EMEM);
Radek Krejci0af46292019-01-11 16:02:31 +01001267 LY_ARRAY_FOR(features_p, u) {
Radek Krejci327de162019-06-14 12:52:07 +02001268 lysc_update_path(ctx_sc, NULL, features_p[u].name);
1269
Radek Krejci0af46292019-01-11 16:02:31 +01001270 LY_ARRAY_INCREMENT(*features);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01001271 COMPILE_CHECK_UNIQUENESS_ARRAY(ctx_sc, *features, name, &(*features)[offset + u], "feature", features_p[u].name);
Radek Krejci011e4aa2020-09-04 15:22:31 +02001272 DUP_STRING_GOTO(ctx_sc->ctx, features_p[u].name, (*features)[offset + u].name, ret, done);
1273 DUP_STRING_GOTO(ctx_sc->ctx, features_p[u].dsc, (*features)[offset + u].dsc, ret, done);
1274 DUP_STRING_GOTO(ctx_sc->ctx, features_p[u].ref, (*features)[offset + u].ref, ret, done);
Radek Krejci0af46292019-01-11 16:02:31 +01001275 (*features)[offset + u].flags = features_p[u].flags;
Radek Krejci327de162019-06-14 12:52:07 +02001276 (*features)[offset + u].module = ctx_sc->mod;
1277
1278 lysc_update_path(ctx_sc, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01001279 }
Radek Krejci327de162019-06-14 12:52:07 +02001280 lysc_update_path(ctx_sc, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01001281
Radek Krejci011e4aa2020-09-04 15:22:31 +02001282done:
1283 return ret;
Radek Krejci0af46292019-01-11 16:02:31 +01001284}
1285
Radek Krejcia3045382018-11-22 14:30:31 +01001286/**
Radek Krejci09a1fc52019-02-13 10:55:17 +01001287 * @brief Check circular dependency of features - feature MUST NOT reference itself (via their if-feature statement).
Radek Krejcib56c7502019-02-13 14:19:54 +01001288 *
1289 * The function works in the same way as lys_compile_identity_circular_check() with different structures and error messages.
1290 *
Radek Krejci09a1fc52019-02-13 10:55:17 +01001291 * @param[in] ctx Compile context for logging.
Radek Krejcib56c7502019-02-13 14:19:54 +01001292 * @param[in] feature The feature referenced in if-feature statement (its depfeatures list is being extended by the feature
1293 * being currently processed).
1294 * @param[in] depfeatures The list of depending features of the feature being currently processed (not the one provided as @p feature)
Radek Krejci09a1fc52019-02-13 10:55:17 +01001295 * @return LY_SUCCESS if everything is ok.
1296 * @return LY_EVALID if the feature references indirectly itself.
1297 */
1298static LY_ERR
1299lys_compile_feature_circular_check(struct lysc_ctx *ctx, struct lysc_feature *feature, struct lysc_feature **depfeatures)
1300{
Radek Krejciba03a5a2020-08-27 14:40:41 +02001301 LY_ERR ret = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001302 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci09a1fc52019-02-13 10:55:17 +01001303 struct ly_set recursion = {0};
1304 struct lysc_feature *drv;
1305
1306 if (!depfeatures) {
1307 return LY_SUCCESS;
1308 }
1309
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001310 for (u = 0; u < LY_ARRAY_COUNT(depfeatures); ++u) {
Radek Krejci09a1fc52019-02-13 10:55:17 +01001311 if (feature == depfeatures[u]) {
1312 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1313 "Feature \"%s\" is indirectly referenced from itself.", feature->name);
Radek Krejciba03a5a2020-08-27 14:40:41 +02001314 ret = LY_EVALID;
Radek Krejci09a1fc52019-02-13 10:55:17 +01001315 goto cleanup;
1316 }
Radek Krejciba03a5a2020-08-27 14:40:41 +02001317 ret = ly_set_add(&recursion, depfeatures[u], 0, NULL);
1318 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci09a1fc52019-02-13 10:55:17 +01001319 }
1320
1321 for (v = 0; v < recursion.count; ++v) {
1322 drv = recursion.objs[v];
1323 if (!drv->depfeatures) {
1324 continue;
1325 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001326 for (u = 0; u < LY_ARRAY_COUNT(drv->depfeatures); ++u) {
Radek Krejci09a1fc52019-02-13 10:55:17 +01001327 if (feature == drv->depfeatures[u]) {
1328 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1329 "Feature \"%s\" is indirectly referenced from itself.", feature->name);
Radek Krejciba03a5a2020-08-27 14:40:41 +02001330 ret = LY_EVALID;
Radek Krejci09a1fc52019-02-13 10:55:17 +01001331 goto cleanup;
1332 }
Radek Krejciba03a5a2020-08-27 14:40:41 +02001333 ly_set_add(&recursion, drv->depfeatures[u], 0, NULL);
1334 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci09a1fc52019-02-13 10:55:17 +01001335 }
1336 }
Radek Krejci09a1fc52019-02-13 10:55:17 +01001337
1338cleanup:
1339 ly_set_erase(&recursion, NULL);
1340 return ret;
1341}
1342
1343/**
Radek Krejci0af46292019-01-11 16:02:31 +01001344 * @brief Create pre-compiled features array.
1345 *
1346 * See lys_feature_precompile() for more details.
1347 *
Radek Krejcia3045382018-11-22 14:30:31 +01001348 * @param[in] ctx Compile context.
1349 * @param[in] feature_p Parsed feature definition to compile.
Radek Krejci0af46292019-01-11 16:02:31 +01001350 * @param[in,out] features List of already (pre)compiled features to find the corresponding precompiled feature structure.
Radek Krejcia3045382018-11-22 14:30:31 +01001351 * @return LY_ERR value.
1352 */
Radek Krejci19a96102018-11-15 13:38:09 +01001353static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02001354lys_feature_precompile_finish(struct lysc_ctx *ctx, struct lysp_feature *feature_p, struct lysc_feature *features)
Radek Krejci19a96102018-11-15 13:38:09 +01001355{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001356 LY_ARRAY_COUNT_TYPE u, v, x;
Radek Krejci0af46292019-01-11 16:02:31 +01001357 struct lysc_feature *feature, **df;
Radek Krejci19a96102018-11-15 13:38:09 +01001358 LY_ERR ret = LY_SUCCESS;
Radek Krejci19a96102018-11-15 13:38:09 +01001359
Radek Krejci0af46292019-01-11 16:02:31 +01001360 /* find the preprecompiled feature */
1361 LY_ARRAY_FOR(features, x) {
1362 if (strcmp(features[x].name, feature_p->name)) {
1363 continue;
1364 }
1365 feature = &features[x];
Radek Krejci327de162019-06-14 12:52:07 +02001366 lysc_update_path(ctx, NULL, "{feature}");
1367 lysc_update_path(ctx, NULL, feature_p->name);
Radek Krejci19a96102018-11-15 13:38:09 +01001368
Radek Krejci0af46292019-01-11 16:02:31 +01001369 /* finish compilation started in lys_feature_precompile() */
Radek Krejci0935f412019-08-20 16:15:18 +02001370 COMPILE_EXTS_GOTO(ctx, feature_p->exts, feature->exts, feature, LYEXT_PAR_FEATURE, ret, done);
Radek Krejciec4da802019-05-02 13:02:41 +02001371 COMPILE_ARRAY_GOTO(ctx, feature_p->iffeatures, feature->iffeatures, u, lys_compile_iffeature, ret, done);
Radek Krejci0af46292019-01-11 16:02:31 +01001372 if (feature->iffeatures) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001373 for (u = 0; u < LY_ARRAY_COUNT(feature->iffeatures); ++u) {
Radek Krejci0af46292019-01-11 16:02:31 +01001374 if (feature->iffeatures[u].features) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001375 for (v = 0; v < LY_ARRAY_COUNT(feature->iffeatures[u].features); ++v) {
Radek Krejci09a1fc52019-02-13 10:55:17 +01001376 /* check for circular dependency - direct reference first,... */
1377 if (feature == feature->iffeatures[u].features[v]) {
1378 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1379 "Feature \"%s\" is referenced from itself.", feature->name);
1380 return LY_EVALID;
1381 }
1382 /* ... and indirect circular reference */
1383 LY_CHECK_RET(lys_compile_feature_circular_check(ctx, feature->iffeatures[u].features[v], feature->depfeatures));
1384
Radek Krejci0af46292019-01-11 16:02:31 +01001385 /* add itself into the dependants list */
1386 LY_ARRAY_NEW_RET(ctx->ctx, feature->iffeatures[u].features[v]->depfeatures, df, LY_EMEM);
1387 *df = feature;
1388 }
Radek Krejci19a96102018-11-15 13:38:09 +01001389 }
Radek Krejci19a96102018-11-15 13:38:09 +01001390 }
1391 }
Radek Krejci327de162019-06-14 12:52:07 +02001392 lysc_update_path(ctx, NULL, NULL);
1393 lysc_update_path(ctx, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01001394 done:
1395 return ret;
Radek Krejci19a96102018-11-15 13:38:09 +01001396 }
Radek Krejci0af46292019-01-11 16:02:31 +01001397
1398 LOGINT(ctx->ctx);
1399 return LY_EINT;
Radek Krejci19a96102018-11-15 13:38:09 +01001400}
1401
Radek Krejcib56c7502019-02-13 14:19:54 +01001402/**
1403 * @brief Revert compiled list of features back to the precompiled state.
1404 *
1405 * Function is needed in case the compilation failed and the schema is expected to revert back to the non-compiled status.
Radek Krejcib56c7502019-02-13 14:19:54 +01001406 *
1407 * @param[in] ctx Compilation context.
Michal Vasko7f45cf22020-10-01 12:49:44 +02001408 * @param[in] mod The module structure with the features to decompile.
Radek Krejcib56c7502019-02-13 14:19:54 +01001409 */
Radek Krejci95710c92019-02-11 15:49:55 +01001410static void
1411lys_feature_precompile_revert(struct lysc_ctx *ctx, struct lys_module *mod)
1412{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001413 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci95710c92019-02-11 15:49:55 +01001414
Michal Vasko33ff9422020-07-03 09:50:39 +02001415 /* in the dis_features list, remove all the parts (from finished compiling process)
Radek Krejci95710c92019-02-11 15:49:55 +01001416 * which may points into the data being freed here */
Radek Krejci14915cc2020-09-14 17:28:13 +02001417 LY_ARRAY_FOR(mod->features, u) {
1418 LY_ARRAY_FOR(mod->features[u].iffeatures, v) {
1419 lysc_iffeature_free(ctx->ctx, &mod->features[u].iffeatures[v]);
Radek Krejci95710c92019-02-11 15:49:55 +01001420 }
Radek Krejci14915cc2020-09-14 17:28:13 +02001421 LY_ARRAY_FREE(mod->features[u].iffeatures);
1422 mod->features[u].iffeatures = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01001423
Radek Krejci14915cc2020-09-14 17:28:13 +02001424 LY_ARRAY_FOR(mod->features[u].exts, v) {
1425 lysc_ext_instance_free(ctx->ctx, &(mod->features[u].exts)[v]);
Radek Krejci95710c92019-02-11 15:49:55 +01001426 }
Radek Krejci14915cc2020-09-14 17:28:13 +02001427 LY_ARRAY_FREE(mod->features[u].exts);
1428 mod->features[u].exts = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01001429 }
1430}
1431
Radek Krejcia3045382018-11-22 14:30:31 +01001432/**
1433 * @brief Validate and normalize numeric value from a range definition.
1434 * @param[in] ctx Compile context.
1435 * @param[in] basetype Base YANG built-in type of the node connected with the range restriction. Actually only LY_TYPE_DEC64 is important to
1436 * allow processing of the fractions. The fraction point is extracted from the value which is then normalize according to given frdigits into
1437 * valcopy to allow easy parsing and storing of the value. libyang stores decimal number without the decimal point which is always recovered from
1438 * the known fraction-digits value. So, with fraction-digits 2, number 3.14 is stored as 314 and number 1 is stored as 100.
1439 * @param[in] frdigits The fraction-digits of the type in case of LY_TYPE_DEC64.
1440 * @param[in] value String value of the range boundary.
1441 * @param[out] len Number of the processed bytes from the value. Processing stops on the first character which is not part of the number boundary.
1442 * @param[out] valcopy NULL-terminated string with the numeric value to parse and store.
1443 * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID (no number) or LY_EINVAL (decimal64 not matching fraction-digits value).
1444 */
Radek Krejcie88beef2019-05-30 15:47:19 +02001445LY_ERR
Radek Krejci6cba4292018-11-15 17:33:29 +01001446range_part_check_value_syntax(struct lysc_ctx *ctx, LY_DATA_TYPE basetype, uint8_t frdigits, const char *value, size_t *len, char **valcopy)
Radek Krejci19a96102018-11-15 13:38:09 +01001447{
Radek Krejci6cba4292018-11-15 17:33:29 +01001448 size_t fraction = 0, size;
1449
Radek Krejci19a96102018-11-15 13:38:09 +01001450 *len = 0;
1451
1452 assert(value);
1453 /* parse value */
1454 if (!isdigit(value[*len]) && (value[*len] != '-') && (value[*len] != '+')) {
1455 return LY_EVALID;
1456 }
1457
1458 if ((value[*len] == '-') || (value[*len] == '+')) {
1459 ++(*len);
1460 }
1461
1462 while (isdigit(value[*len])) {
1463 ++(*len);
1464 }
1465
1466 if ((basetype != LY_TYPE_DEC64) || (value[*len] != '.') || !isdigit(value[*len + 1])) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001467 if (basetype == LY_TYPE_DEC64) {
1468 goto decimal;
1469 } else {
1470 *valcopy = strndup(value, *len);
1471 return LY_SUCCESS;
1472 }
Radek Krejci19a96102018-11-15 13:38:09 +01001473 }
1474 fraction = *len;
1475
1476 ++(*len);
1477 while (isdigit(value[*len])) {
1478 ++(*len);
1479 }
1480
Radek Krejci6cba4292018-11-15 17:33:29 +01001481 if (basetype == LY_TYPE_DEC64) {
1482decimal:
1483 assert(frdigits);
Radek Krejci943177f2019-06-14 16:32:43 +02001484 if (fraction && (*len - 1 - fraction > frdigits)) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001485 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1486 "Range boundary \"%.*s\" of decimal64 type exceeds defined number (%u) of fraction digits.",
1487 *len, value, frdigits);
1488 return LY_EINVAL;
1489 }
1490 if (fraction) {
1491 size = (*len) + (frdigits - ((*len) - 1 - fraction));
1492 } else {
1493 size = (*len) + frdigits + 1;
1494 }
1495 *valcopy = malloc(size * sizeof **valcopy);
Radek Krejci19a96102018-11-15 13:38:09 +01001496 LY_CHECK_ERR_RET(!(*valcopy), LOGMEM(ctx->ctx), LY_EMEM);
1497
Radek Krejci6cba4292018-11-15 17:33:29 +01001498 (*valcopy)[size - 1] = '\0';
1499 if (fraction) {
1500 memcpy(&(*valcopy)[0], &value[0], fraction);
1501 memcpy(&(*valcopy)[fraction], &value[fraction + 1], (*len) - 1 - (fraction));
1502 memset(&(*valcopy)[(*len) - 1], '0', frdigits - ((*len) - 1 - fraction));
1503 } else {
1504 memcpy(&(*valcopy)[0], &value[0], *len);
1505 memset(&(*valcopy)[*len], '0', frdigits);
1506 }
Radek Krejci19a96102018-11-15 13:38:09 +01001507 }
1508 return LY_SUCCESS;
1509}
1510
Radek Krejcia3045382018-11-22 14:30:31 +01001511/**
1512 * @brief Check that values in range are in ascendant order.
1513 * @param[in] unsigned_value Flag to note that we are working with unsigned values.
Radek Krejci5969f272018-11-23 10:03:58 +01001514 * @param[in] max Flag to distinguish if checking min or max value. min value must be strictly higher than previous,
1515 * max can be also equal.
Radek Krejcia3045382018-11-22 14:30:31 +01001516 * @param[in] value Current value to check.
1517 * @param[in] prev_value The last seen value.
1518 * @return LY_SUCCESS or LY_EEXIST for invalid order.
1519 */
Radek Krejci19a96102018-11-15 13:38:09 +01001520static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001521range_part_check_ascendancy(ly_bool unsigned_value, ly_bool max, int64_t value, int64_t prev_value)
Radek Krejci19a96102018-11-15 13:38:09 +01001522{
1523 if (unsigned_value) {
Radek Krejci5969f272018-11-23 10:03:58 +01001524 if ((max && (uint64_t)prev_value > (uint64_t)value) || (!max && (uint64_t)prev_value >= (uint64_t)value)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001525 return LY_EEXIST;
1526 }
1527 } else {
Radek Krejci5969f272018-11-23 10:03:58 +01001528 if ((max && prev_value > value) || (!max && prev_value >= value)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001529 return LY_EEXIST;
1530 }
1531 }
1532 return LY_SUCCESS;
1533}
1534
Radek Krejcia3045382018-11-22 14:30:31 +01001535/**
1536 * @brief Set min/max value of the range part.
1537 * @param[in] ctx Compile context.
1538 * @param[in] part Range part structure to fill.
1539 * @param[in] max Flag to distinguish if storing min or max value.
1540 * @param[in] prev The last seen value to check that all values in range are specified in ascendant order.
1541 * @param[in] basetype Type of the value to get know implicit min/max values and other checking rules.
1542 * @param[in] first Flag for the first value of the range to avoid ascendancy order.
1543 * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging.
1544 * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype.
Radek Krejci5969f272018-11-23 10:03:58 +01001545 * @param[in] base_range Range from the type from which the current type is derived (if not built-in) to get type's min and max values.
Radek Krejcia3045382018-11-22 14:30:31 +01001546 * @param[in,out] value Numeric range value to be stored, if not provided the type's min/max value is set.
1547 * @return LY_ERR value - LY_SUCCESS, LY_EDENIED (value brokes type's boundaries), LY_EVALID (not a number),
1548 * LY_EEXIST (value is smaller than the previous one), LY_EINVAL (decimal64 value does not corresponds with the
1549 * frdigits value), LY_EMEM.
1550 */
Radek Krejci19a96102018-11-15 13:38:09 +01001551static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001552range_part_minmax(struct lysc_ctx *ctx, struct lysc_range_part *part, ly_bool max, int64_t prev, LY_DATA_TYPE basetype,
1553 ly_bool first, ly_bool length_restr, uint8_t frdigits, struct lysc_range *base_range, const char **value)
Radek Krejci19a96102018-11-15 13:38:09 +01001554{
1555 LY_ERR ret = LY_SUCCESS;
1556 char *valcopy = NULL;
1557 size_t len;
1558
1559 if (value) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001560 ret = range_part_check_value_syntax(ctx, basetype, frdigits, *value, &len, &valcopy);
Radek Krejci5969f272018-11-23 10:03:58 +01001561 LY_CHECK_GOTO(ret, finalize);
1562 }
1563 if (!valcopy && base_range) {
1564 if (max) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001565 part->max_64 = base_range->parts[LY_ARRAY_COUNT(base_range->parts) - 1].max_64;
Radek Krejci5969f272018-11-23 10:03:58 +01001566 } else {
1567 part->min_64 = base_range->parts[0].min_64;
1568 }
1569 if (!first) {
1570 ret = range_part_check_ascendancy(basetype <= LY_TYPE_STRING ? 1 : 0, max, max ? part->max_64 : part->min_64, prev);
1571 }
1572 goto finalize;
Radek Krejci19a96102018-11-15 13:38:09 +01001573 }
1574
1575 switch (basetype) {
Radek Krejci19a96102018-11-15 13:38:09 +01001576 case LY_TYPE_INT8: /* range */
1577 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001578 ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-128), INT64_C(127), 10, max ? &part->max_64 : &part->min_64);
Radek Krejci19a96102018-11-15 13:38:09 +01001579 } else if (max) {
1580 part->max_64 = INT64_C(127);
1581 } else {
1582 part->min_64 = INT64_C(-128);
1583 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001584 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001585 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001586 }
1587 break;
1588 case LY_TYPE_INT16: /* range */
1589 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001590 ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-32768), INT64_C(32767), 10, max ? &part->max_64 : &part->min_64);
Radek Krejci19a96102018-11-15 13:38:09 +01001591 } else if (max) {
1592 part->max_64 = INT64_C(32767);
1593 } else {
1594 part->min_64 = INT64_C(-32768);
1595 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001596 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001597 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001598 }
1599 break;
1600 case LY_TYPE_INT32: /* range */
1601 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001602 ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-2147483648), INT64_C(2147483647), 10, max ? &part->max_64 : &part->min_64);
Radek Krejci19a96102018-11-15 13:38:09 +01001603 } else if (max) {
1604 part->max_64 = INT64_C(2147483647);
1605 } else {
1606 part->min_64 = INT64_C(-2147483648);
1607 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001608 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001609 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001610 }
1611 break;
1612 case LY_TYPE_INT64: /* range */
Radek Krejci25cfef72018-11-23 14:15:52 +01001613 case LY_TYPE_DEC64: /* range */
Radek Krejci19a96102018-11-15 13:38:09 +01001614 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001615 ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-9223372036854775807) - INT64_C(1), INT64_C(9223372036854775807), 10,
Radek Krejci19a96102018-11-15 13:38:09 +01001616 max ? &part->max_64 : &part->min_64);
1617 } else if (max) {
1618 part->max_64 = INT64_C(9223372036854775807);
1619 } else {
1620 part->min_64 = INT64_C(-9223372036854775807) - INT64_C(1);
1621 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001622 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001623 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001624 }
1625 break;
1626 case LY_TYPE_UINT8: /* range */
1627 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001628 ret = ly_parse_uint(valcopy, strlen(valcopy), UINT64_C(255), 10, max ? &part->max_u64 : &part->min_u64);
Radek Krejci19a96102018-11-15 13:38:09 +01001629 } else if (max) {
1630 part->max_u64 = UINT64_C(255);
1631 } else {
1632 part->min_u64 = UINT64_C(0);
1633 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001634 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001635 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001636 }
1637 break;
1638 case LY_TYPE_UINT16: /* range */
1639 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001640 ret = ly_parse_uint(valcopy, strlen(valcopy), UINT64_C(65535), 10, max ? &part->max_u64 : &part->min_u64);
Radek Krejci19a96102018-11-15 13:38:09 +01001641 } else if (max) {
1642 part->max_u64 = UINT64_C(65535);
1643 } else {
1644 part->min_u64 = UINT64_C(0);
1645 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001646 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001647 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001648 }
1649 break;
1650 case LY_TYPE_UINT32: /* range */
1651 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001652 ret = ly_parse_uint(valcopy, strlen(valcopy), UINT64_C(4294967295), 10, max ? &part->max_u64 : &part->min_u64);
Radek Krejci19a96102018-11-15 13:38:09 +01001653 } else if (max) {
1654 part->max_u64 = UINT64_C(4294967295);
1655 } else {
1656 part->min_u64 = UINT64_C(0);
1657 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001658 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001659 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001660 }
1661 break;
1662 case LY_TYPE_UINT64: /* range */
Radek Krejci19a96102018-11-15 13:38:09 +01001663 case LY_TYPE_STRING: /* length */
Radek Krejci25cfef72018-11-23 14:15:52 +01001664 case LY_TYPE_BINARY: /* length */
Radek Krejci19a96102018-11-15 13:38:09 +01001665 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001666 ret = ly_parse_uint(valcopy, strlen(valcopy), UINT64_C(18446744073709551615), 10, max ? &part->max_u64 : &part->min_u64);
Radek Krejci19a96102018-11-15 13:38:09 +01001667 } else if (max) {
1668 part->max_u64 = UINT64_C(18446744073709551615);
1669 } else {
1670 part->min_u64 = UINT64_C(0);
1671 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001672 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001673 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001674 }
1675 break;
1676 default:
1677 LOGINT(ctx->ctx);
1678 ret = LY_EINT;
1679 }
1680
Radek Krejci5969f272018-11-23 10:03:58 +01001681finalize:
Radek Krejci19a96102018-11-15 13:38:09 +01001682 if (ret == LY_EDENIED) {
1683 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1684 "Invalid %s restriction - value \"%s\" does not fit the type limitations.",
1685 length_restr ? "length" : "range", valcopy ? valcopy : *value);
1686 } else if (ret == LY_EVALID) {
1687 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1688 "Invalid %s restriction - invalid value \"%s\".",
1689 length_restr ? "length" : "range", valcopy ? valcopy : *value);
1690 } else if (ret == LY_EEXIST) {
1691 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1692 "Invalid %s restriction - values are not in ascending order (%s).",
Radek Krejci6cba4292018-11-15 17:33:29 +01001693 length_restr ? "length" : "range",
Radek Krejci0f969882020-08-21 16:56:47 +02001694 (valcopy && basetype != LY_TYPE_DEC64) ? valcopy : value ? *value : max ? "max" : "min");
Radek Krejci19a96102018-11-15 13:38:09 +01001695 } else if (!ret && value) {
1696 *value = *value + len;
1697 }
1698 free(valcopy);
1699 return ret;
1700}
1701
Radek Krejcia3045382018-11-22 14:30:31 +01001702/**
1703 * @brief Compile the parsed range restriction.
1704 * @param[in] ctx Compile context.
1705 * @param[in] range_p Parsed range structure to compile.
1706 * @param[in] basetype Base YANG built-in type of the node with the range restriction.
1707 * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging.
1708 * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype.
1709 * @param[in] base_range Range restriction of the type from which the current type is derived. The current
1710 * range restriction must be more restrictive than the base_range.
1711 * @param[in,out] range Pointer to the created current range structure.
1712 * @return LY_ERR value.
1713 */
Radek Krejci19a96102018-11-15 13:38:09 +01001714static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02001715lys_compile_type_range(struct lysc_ctx *ctx, struct lysp_restr *range_p, LY_DATA_TYPE basetype, ly_bool length_restr,
Radek Krejci0f969882020-08-21 16:56:47 +02001716 uint8_t frdigits, struct lysc_range *base_range, struct lysc_range **range)
Radek Krejci19a96102018-11-15 13:38:09 +01001717{
1718 LY_ERR ret = LY_EVALID;
1719 const char *expr;
1720 struct lysc_range_part *parts = NULL, *part;
Radek Krejci857189e2020-09-01 13:26:36 +02001721 ly_bool range_expected = 0, uns;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001722 LY_ARRAY_COUNT_TYPE parts_done = 0, u, v;
Radek Krejci19a96102018-11-15 13:38:09 +01001723
1724 assert(range);
1725 assert(range_p);
1726
Michal Vasko7f45cf22020-10-01 12:49:44 +02001727 expr = range_p->arg.str;
Michal Vaskod989ba02020-08-24 10:59:24 +02001728 while (1) {
Radek Krejci19a96102018-11-15 13:38:09 +01001729 if (isspace(*expr)) {
1730 ++expr;
1731 } else if (*expr == '\0') {
1732 if (range_expected) {
1733 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1734 "Invalid %s restriction - unexpected end of the expression after \"..\" (%s).",
1735 length_restr ? "length" : "range", range_p->arg);
1736 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001737 } else if (!parts || parts_done == LY_ARRAY_COUNT(parts)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001738 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1739 "Invalid %s restriction - unexpected end of the expression (%s).",
1740 length_restr ? "length" : "range", range_p->arg);
1741 goto cleanup;
1742 }
1743 parts_done++;
1744 break;
1745 } else if (!strncmp(expr, "min", 3)) {
1746 if (parts) {
1747 /* min cannot be used elsewhere than in the first part */
1748 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1749 "Invalid %s restriction - unexpected data before min keyword (%.*s).", length_restr ? "length" : "range",
Michal Vasko7f45cf22020-10-01 12:49:44 +02001750 expr - range_p->arg.str, range_p->arg.str);
Radek Krejci19a96102018-11-15 13:38:09 +01001751 goto cleanup;
1752 }
1753 expr += 3;
1754
1755 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Radek Krejci5969f272018-11-23 10:03:58 +01001756 LY_CHECK_GOTO(range_part_minmax(ctx, part, 0, 0, basetype, 1, length_restr, frdigits, base_range, NULL), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001757 part->max_64 = part->min_64;
1758 } else if (*expr == '|') {
1759 if (!parts || range_expected) {
1760 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1761 "Invalid %s restriction - unexpected beginning of the expression (%s).", length_restr ? "length" : "range", expr);
1762 goto cleanup;
1763 }
1764 expr++;
1765 parts_done++;
1766 /* process next part of the expression */
1767 } else if (!strncmp(expr, "..", 2)) {
1768 expr += 2;
1769 while (isspace(*expr)) {
1770 expr++;
1771 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001772 if (!parts || LY_ARRAY_COUNT(parts) == parts_done) {
Radek Krejci19a96102018-11-15 13:38:09 +01001773 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1774 "Invalid %s restriction - unexpected \"..\" without a lower bound.", length_restr ? "length" : "range");
1775 goto cleanup;
1776 }
1777 /* continue expecting the upper boundary */
1778 range_expected = 1;
1779 } else if (isdigit(*expr) || (*expr == '-') || (*expr == '+')) {
1780 /* number */
1781 if (range_expected) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001782 part = &parts[LY_ARRAY_COUNT(parts) - 1];
Radek Krejci5969f272018-11-23 10:03:58 +01001783 LY_CHECK_GOTO(range_part_minmax(ctx, part, 1, part->min_64, basetype, 0, length_restr, frdigits, NULL, &expr), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001784 range_expected = 0;
1785 } else {
1786 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001787 LY_CHECK_GOTO(range_part_minmax(ctx, part, 0, parts_done ? parts[LY_ARRAY_COUNT(parts) - 2].max_64 : 0,
Radek Krejci5969f272018-11-23 10:03:58 +01001788 basetype, parts_done ? 0 : 1, length_restr, frdigits, NULL, &expr), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001789 part->max_64 = part->min_64;
1790 }
1791
1792 /* continue with possible another expression part */
1793 } else if (!strncmp(expr, "max", 3)) {
1794 expr += 3;
1795 while (isspace(*expr)) {
1796 expr++;
1797 }
1798 if (*expr != '\0') {
1799 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data after max keyword (%s).",
1800 length_restr ? "length" : "range", expr);
1801 goto cleanup;
1802 }
1803 if (range_expected) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001804 part = &parts[LY_ARRAY_COUNT(parts) - 1];
Radek Krejci5969f272018-11-23 10:03:58 +01001805 LY_CHECK_GOTO(range_part_minmax(ctx, part, 1, part->min_64, basetype, 0, length_restr, frdigits, base_range, NULL), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001806 range_expected = 0;
1807 } else {
1808 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001809 LY_CHECK_GOTO(range_part_minmax(ctx, part, 1, parts_done ? parts[LY_ARRAY_COUNT(parts) - 2].max_64 : 0,
Radek Krejci5969f272018-11-23 10:03:58 +01001810 basetype, parts_done ? 0 : 1, length_restr, frdigits, base_range, NULL), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001811 part->min_64 = part->max_64;
1812 }
1813 } else {
1814 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data (%s).",
1815 length_restr ? "length" : "range", expr);
1816 goto cleanup;
1817 }
1818 }
1819
1820 /* check with the previous range/length restriction */
1821 if (base_range) {
1822 switch (basetype) {
1823 case LY_TYPE_BINARY:
1824 case LY_TYPE_UINT8:
1825 case LY_TYPE_UINT16:
1826 case LY_TYPE_UINT32:
1827 case LY_TYPE_UINT64:
1828 case LY_TYPE_STRING:
1829 uns = 1;
1830 break;
1831 case LY_TYPE_DEC64:
1832 case LY_TYPE_INT8:
1833 case LY_TYPE_INT16:
1834 case LY_TYPE_INT32:
1835 case LY_TYPE_INT64:
1836 uns = 0;
1837 break;
1838 default:
1839 LOGINT(ctx->ctx);
1840 ret = LY_EINT;
1841 goto cleanup;
1842 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001843 for (u = v = 0; u < parts_done && v < LY_ARRAY_COUNT(base_range->parts); ++u) {
Radek Krejci19a96102018-11-15 13:38:09 +01001844 if ((uns && parts[u].min_u64 < base_range->parts[v].min_u64) || (!uns && parts[u].min_64 < base_range->parts[v].min_64)) {
1845 goto baseerror;
1846 }
1847 /* current lower bound is not lower than the base */
1848 if (base_range->parts[v].min_64 == base_range->parts[v].max_64) {
1849 /* base has single value */
1850 if (base_range->parts[v].min_64 == parts[u].min_64) {
1851 /* both lower bounds are the same */
1852 if (parts[u].min_64 != parts[u].max_64) {
1853 /* current continues with a range */
1854 goto baseerror;
1855 } else {
1856 /* equal single values, move both forward */
1857 ++v;
1858 continue;
1859 }
1860 } else {
1861 /* base is single value lower than current range, so the
1862 * value from base range is removed in the current,
1863 * move only base and repeat checking */
1864 ++v;
1865 --u;
1866 continue;
1867 }
1868 } else {
1869 /* base is the range */
1870 if (parts[u].min_64 == parts[u].max_64) {
1871 /* current is a single value */
1872 if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) {
1873 /* current is behind the base range, so base range is omitted,
1874 * move the base and keep the current for further check */
1875 ++v;
1876 --u;
1877 } /* else it is within the base range, so move the current, but keep the base */
1878 continue;
1879 } else {
1880 /* both are ranges - check the higher bound, the lower was already checked */
1881 if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) {
1882 /* higher bound is higher than the current higher bound */
1883 if ((uns && parts[u].min_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].min_64 > base_range->parts[v].max_64)) {
1884 /* but the current lower bound is also higher, so the base range is omitted,
1885 * continue with the same current, but move the base */
1886 --u;
1887 ++v;
1888 continue;
1889 }
1890 /* current range starts within the base range but end behind it */
1891 goto baseerror;
1892 } else {
1893 /* current range is smaller than the base,
1894 * move current, but stay with the base */
1895 continue;
1896 }
1897 }
1898 }
1899 }
1900 if (u != parts_done) {
1901baseerror:
1902 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1903 "Invalid %s restriction - the derived restriction (%s) is not equally or more limiting.",
1904 length_restr ? "length" : "range", range_p->arg);
1905 goto cleanup;
1906 }
1907 }
1908
1909 if (!(*range)) {
1910 *range = calloc(1, sizeof **range);
1911 LY_CHECK_ERR_RET(!(*range), LOGMEM(ctx->ctx), LY_EMEM);
1912 }
1913
Radek Krejcic8b31002019-01-08 10:24:45 +01001914 /* we rewrite the following values as the types chain is being processed */
Radek Krejci19a96102018-11-15 13:38:09 +01001915 if (range_p->eapptag) {
1916 lydict_remove(ctx->ctx, (*range)->eapptag);
Radek Krejci011e4aa2020-09-04 15:22:31 +02001917 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, range_p->eapptag, 0, &(*range)->eapptag), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001918 }
1919 if (range_p->emsg) {
1920 lydict_remove(ctx->ctx, (*range)->emsg);
Radek Krejci011e4aa2020-09-04 15:22:31 +02001921 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, range_p->emsg, 0, &(*range)->emsg), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001922 }
Radek Krejcic8b31002019-01-08 10:24:45 +01001923 if (range_p->dsc) {
1924 lydict_remove(ctx->ctx, (*range)->dsc);
Radek Krejci011e4aa2020-09-04 15:22:31 +02001925 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, range_p->dsc, 0, &(*range)->dsc), cleanup);
Radek Krejcic8b31002019-01-08 10:24:45 +01001926 }
1927 if (range_p->ref) {
1928 lydict_remove(ctx->ctx, (*range)->ref);
Radek Krejci011e4aa2020-09-04 15:22:31 +02001929 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, range_p->ref, 0, &(*range)->ref), cleanup);
Radek Krejcic8b31002019-01-08 10:24:45 +01001930 }
Radek Krejci19a96102018-11-15 13:38:09 +01001931 /* extensions are taken only from the last range by the caller */
1932
1933 (*range)->parts = parts;
1934 parts = NULL;
1935 ret = LY_SUCCESS;
1936cleanup:
Radek Krejci19a96102018-11-15 13:38:09 +01001937 LY_ARRAY_FREE(parts);
1938
1939 return ret;
1940}
1941
1942/**
1943 * @brief Checks pattern syntax.
1944 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02001945 * @param[in] ctx Context.
1946 * @param[in] log_path Path for logging errors.
Radek Krejci19a96102018-11-15 13:38:09 +01001947 * @param[in] pattern Pattern to check.
Radek Krejci54579462019-04-30 12:47:06 +02001948 * @param[in,out] pcre2_code Compiled PCRE2 pattern. If NULL, the compiled information used to validate pattern are freed.
Radek Krejcia3045382018-11-22 14:30:31 +01001949 * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID.
Radek Krejci19a96102018-11-15 13:38:09 +01001950 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001951LY_ERR
1952lys_compile_type_pattern_check(struct ly_ctx *ctx, const char *log_path, const char *pattern, pcre2_code **code)
Radek Krejci19a96102018-11-15 13:38:09 +01001953{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001954 size_t idx, idx2, start, end, size, brack;
Radek Krejci19a96102018-11-15 13:38:09 +01001955 char *perl_regex, *ptr;
Radek Krejci54579462019-04-30 12:47:06 +02001956 int err_code;
1957 const char *orig_ptr;
1958 PCRE2_SIZE err_offset;
1959 pcre2_code *code_local;
Radek Krejci19a96102018-11-15 13:38:09 +01001960#define URANGE_LEN 19
1961 char *ublock2urange[][2] = {
1962 {"BasicLatin", "[\\x{0000}-\\x{007F}]"},
1963 {"Latin-1Supplement", "[\\x{0080}-\\x{00FF}]"},
1964 {"LatinExtended-A", "[\\x{0100}-\\x{017F}]"},
1965 {"LatinExtended-B", "[\\x{0180}-\\x{024F}]"},
1966 {"IPAExtensions", "[\\x{0250}-\\x{02AF}]"},
1967 {"SpacingModifierLetters", "[\\x{02B0}-\\x{02FF}]"},
1968 {"CombiningDiacriticalMarks", "[\\x{0300}-\\x{036F}]"},
1969 {"Greek", "[\\x{0370}-\\x{03FF}]"},
1970 {"Cyrillic", "[\\x{0400}-\\x{04FF}]"},
1971 {"Armenian", "[\\x{0530}-\\x{058F}]"},
1972 {"Hebrew", "[\\x{0590}-\\x{05FF}]"},
1973 {"Arabic", "[\\x{0600}-\\x{06FF}]"},
1974 {"Syriac", "[\\x{0700}-\\x{074F}]"},
1975 {"Thaana", "[\\x{0780}-\\x{07BF}]"},
1976 {"Devanagari", "[\\x{0900}-\\x{097F}]"},
1977 {"Bengali", "[\\x{0980}-\\x{09FF}]"},
1978 {"Gurmukhi", "[\\x{0A00}-\\x{0A7F}]"},
1979 {"Gujarati", "[\\x{0A80}-\\x{0AFF}]"},
1980 {"Oriya", "[\\x{0B00}-\\x{0B7F}]"},
1981 {"Tamil", "[\\x{0B80}-\\x{0BFF}]"},
1982 {"Telugu", "[\\x{0C00}-\\x{0C7F}]"},
1983 {"Kannada", "[\\x{0C80}-\\x{0CFF}]"},
1984 {"Malayalam", "[\\x{0D00}-\\x{0D7F}]"},
1985 {"Sinhala", "[\\x{0D80}-\\x{0DFF}]"},
1986 {"Thai", "[\\x{0E00}-\\x{0E7F}]"},
1987 {"Lao", "[\\x{0E80}-\\x{0EFF}]"},
1988 {"Tibetan", "[\\x{0F00}-\\x{0FFF}]"},
1989 {"Myanmar", "[\\x{1000}-\\x{109F}]"},
1990 {"Georgian", "[\\x{10A0}-\\x{10FF}]"},
1991 {"HangulJamo", "[\\x{1100}-\\x{11FF}]"},
1992 {"Ethiopic", "[\\x{1200}-\\x{137F}]"},
1993 {"Cherokee", "[\\x{13A0}-\\x{13FF}]"},
1994 {"UnifiedCanadianAboriginalSyllabics", "[\\x{1400}-\\x{167F}]"},
1995 {"Ogham", "[\\x{1680}-\\x{169F}]"},
1996 {"Runic", "[\\x{16A0}-\\x{16FF}]"},
1997 {"Khmer", "[\\x{1780}-\\x{17FF}]"},
1998 {"Mongolian", "[\\x{1800}-\\x{18AF}]"},
1999 {"LatinExtendedAdditional", "[\\x{1E00}-\\x{1EFF}]"},
2000 {"GreekExtended", "[\\x{1F00}-\\x{1FFF}]"},
2001 {"GeneralPunctuation", "[\\x{2000}-\\x{206F}]"},
2002 {"SuperscriptsandSubscripts", "[\\x{2070}-\\x{209F}]"},
2003 {"CurrencySymbols", "[\\x{20A0}-\\x{20CF}]"},
2004 {"CombiningMarksforSymbols", "[\\x{20D0}-\\x{20FF}]"},
2005 {"LetterlikeSymbols", "[\\x{2100}-\\x{214F}]"},
2006 {"NumberForms", "[\\x{2150}-\\x{218F}]"},
2007 {"Arrows", "[\\x{2190}-\\x{21FF}]"},
2008 {"MathematicalOperators", "[\\x{2200}-\\x{22FF}]"},
2009 {"MiscellaneousTechnical", "[\\x{2300}-\\x{23FF}]"},
2010 {"ControlPictures", "[\\x{2400}-\\x{243F}]"},
2011 {"OpticalCharacterRecognition", "[\\x{2440}-\\x{245F}]"},
2012 {"EnclosedAlphanumerics", "[\\x{2460}-\\x{24FF}]"},
2013 {"BoxDrawing", "[\\x{2500}-\\x{257F}]"},
2014 {"BlockElements", "[\\x{2580}-\\x{259F}]"},
2015 {"GeometricShapes", "[\\x{25A0}-\\x{25FF}]"},
2016 {"MiscellaneousSymbols", "[\\x{2600}-\\x{26FF}]"},
2017 {"Dingbats", "[\\x{2700}-\\x{27BF}]"},
2018 {"BraillePatterns", "[\\x{2800}-\\x{28FF}]"},
2019 {"CJKRadicalsSupplement", "[\\x{2E80}-\\x{2EFF}]"},
2020 {"KangxiRadicals", "[\\x{2F00}-\\x{2FDF}]"},
2021 {"IdeographicDescriptionCharacters", "[\\x{2FF0}-\\x{2FFF}]"},
2022 {"CJKSymbolsandPunctuation", "[\\x{3000}-\\x{303F}]"},
2023 {"Hiragana", "[\\x{3040}-\\x{309F}]"},
2024 {"Katakana", "[\\x{30A0}-\\x{30FF}]"},
2025 {"Bopomofo", "[\\x{3100}-\\x{312F}]"},
2026 {"HangulCompatibilityJamo", "[\\x{3130}-\\x{318F}]"},
2027 {"Kanbun", "[\\x{3190}-\\x{319F}]"},
2028 {"BopomofoExtended", "[\\x{31A0}-\\x{31BF}]"},
2029 {"EnclosedCJKLettersandMonths", "[\\x{3200}-\\x{32FF}]"},
2030 {"CJKCompatibility", "[\\x{3300}-\\x{33FF}]"},
2031 {"CJKUnifiedIdeographsExtensionA", "[\\x{3400}-\\x{4DB5}]"},
2032 {"CJKUnifiedIdeographs", "[\\x{4E00}-\\x{9FFF}]"},
2033 {"YiSyllables", "[\\x{A000}-\\x{A48F}]"},
2034 {"YiRadicals", "[\\x{A490}-\\x{A4CF}]"},
2035 {"HangulSyllables", "[\\x{AC00}-\\x{D7A3}]"},
2036 {"PrivateUse", "[\\x{E000}-\\x{F8FF}]"},
2037 {"CJKCompatibilityIdeographs", "[\\x{F900}-\\x{FAFF}]"},
2038 {"AlphabeticPresentationForms", "[\\x{FB00}-\\x{FB4F}]"},
2039 {"ArabicPresentationForms-A", "[\\x{FB50}-\\x{FDFF}]"},
2040 {"CombiningHalfMarks", "[\\x{FE20}-\\x{FE2F}]"},
2041 {"CJKCompatibilityForms", "[\\x{FE30}-\\x{FE4F}]"},
2042 {"SmallFormVariants", "[\\x{FE50}-\\x{FE6F}]"},
2043 {"ArabicPresentationForms-B", "[\\x{FE70}-\\x{FEFE}]"},
2044 {"HalfwidthandFullwidthForms", "[\\x{FF00}-\\x{FFEF}]"},
2045 {NULL, NULL}
2046 };
2047
2048 /* adjust the expression to a Perl equivalent
2049 * http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#regexs */
2050
Michal Vasko40a00082020-05-27 15:20:01 +02002051 /* allocate space for the transformed pattern */
2052 size = strlen(pattern) + 1;
2053 perl_regex = malloc(size);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002054 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01002055 perl_regex[0] = '\0';
2056
Michal Vasko40a00082020-05-27 15:20:01 +02002057 /* we need to replace all "$" and "^" (that are not in "[]") with "\$" and "\^" */
2058 brack = 0;
2059 idx = 0;
2060 orig_ptr = pattern;
2061 while (orig_ptr[0]) {
2062 switch (orig_ptr[0]) {
2063 case '$':
2064 case '^':
2065 if (!brack) {
2066 /* make space for the extra character */
2067 ++size;
2068 perl_regex = ly_realloc(perl_regex, size);
2069 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01002070
Michal Vasko40a00082020-05-27 15:20:01 +02002071 /* print escape slash */
2072 perl_regex[idx] = '\\';
2073 ++idx;
2074 }
2075 break;
2076 case '[':
2077 /* must not be escaped */
2078 if ((orig_ptr == pattern) || (orig_ptr[-1] != '\\')) {
2079 ++brack;
2080 }
2081 break;
2082 case ']':
2083 if ((orig_ptr == pattern) || (orig_ptr[-1] != '\\')) {
2084 /* pattern was checked and compiled already */
2085 assert(brack);
2086 --brack;
2087 }
2088 break;
2089 default:
2090 break;
Radek Krejci19a96102018-11-15 13:38:09 +01002091 }
Michal Vasko40a00082020-05-27 15:20:01 +02002092
2093 /* copy char */
2094 perl_regex[idx] = orig_ptr[0];
2095
2096 ++idx;
2097 ++orig_ptr;
Radek Krejci19a96102018-11-15 13:38:09 +01002098 }
Michal Vasko40a00082020-05-27 15:20:01 +02002099 perl_regex[idx] = '\0';
Radek Krejci19a96102018-11-15 13:38:09 +01002100
2101 /* substitute Unicode Character Blocks with exact Character Ranges */
2102 while ((ptr = strstr(perl_regex, "\\p{Is"))) {
2103 start = ptr - perl_regex;
2104
2105 ptr = strchr(ptr, '}');
2106 if (!ptr) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002107 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP,
Radek Krejci19a96102018-11-15 13:38:09 +01002108 pattern, perl_regex + start + 2, "unterminated character property");
2109 free(perl_regex);
2110 return LY_EVALID;
2111 }
2112 end = (ptr - perl_regex) + 1;
2113
2114 /* need more space */
2115 if (end - start < URANGE_LEN) {
2116 perl_regex = ly_realloc(perl_regex, strlen(perl_regex) + (URANGE_LEN - (end - start)) + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002117 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx); free(perl_regex), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01002118 }
2119
2120 /* find our range */
2121 for (idx = 0; ublock2urange[idx][0]; ++idx) {
2122 if (!strncmp(perl_regex + start + 5, ublock2urange[idx][0], strlen(ublock2urange[idx][0]))) {
2123 break;
2124 }
2125 }
2126 if (!ublock2urange[idx][0]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002127 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP,
Radek Krejci19a96102018-11-15 13:38:09 +01002128 pattern, perl_regex + start + 5, "unknown block name");
2129 free(perl_regex);
2130 return LY_EVALID;
2131 }
2132
2133 /* make the space in the string and replace the block (but we cannot include brackets if it was already enclosed in them) */
Michal Vasko40a00082020-05-27 15:20:01 +02002134 for (idx2 = 0, idx = 0; idx2 < start; ++idx2) {
Radek Krejci19a96102018-11-15 13:38:09 +01002135 if ((perl_regex[idx2] == '[') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) {
Michal Vasko40a00082020-05-27 15:20:01 +02002136 ++idx;
Radek Krejci19a96102018-11-15 13:38:09 +01002137 }
2138 if ((perl_regex[idx2] == ']') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) {
Michal Vasko40a00082020-05-27 15:20:01 +02002139 --idx;
Radek Krejci19a96102018-11-15 13:38:09 +01002140 }
2141 }
Michal Vasko40a00082020-05-27 15:20:01 +02002142 if (idx) {
Radek Krejci19a96102018-11-15 13:38:09 +01002143 /* skip brackets */
2144 memmove(perl_regex + start + (URANGE_LEN - 2), perl_regex + end, strlen(perl_regex + end) + 1);
2145 memcpy(perl_regex + start, ublock2urange[idx][1] + 1, URANGE_LEN - 2);
2146 } else {
2147 memmove(perl_regex + start + URANGE_LEN, perl_regex + end, strlen(perl_regex + end) + 1);
2148 memcpy(perl_regex + start, ublock2urange[idx][1], URANGE_LEN);
2149 }
2150 }
2151
2152 /* must return 0, already checked during parsing */
Radek Krejci5819f7c2019-05-31 14:53:29 +02002153 code_local = pcre2_compile((PCRE2_SPTR)perl_regex, PCRE2_ZERO_TERMINATED,
2154 PCRE2_UTF | PCRE2_ANCHORED | PCRE2_ENDANCHORED | PCRE2_DOLLAR_ENDONLY | PCRE2_NO_AUTO_CAPTURE,
Radek Krejci54579462019-04-30 12:47:06 +02002155 &err_code, &err_offset, NULL);
2156 if (!code_local) {
2157 PCRE2_UCHAR err_msg[256] = {0};
2158 pcre2_get_error_message(err_code, err_msg, 256);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002159 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP, pattern, perl_regex + err_offset, err_msg);
Radek Krejci19a96102018-11-15 13:38:09 +01002160 free(perl_regex);
2161 return LY_EVALID;
2162 }
2163 free(perl_regex);
2164
Radek Krejci54579462019-04-30 12:47:06 +02002165 if (code) {
2166 *code = code_local;
Radek Krejci19a96102018-11-15 13:38:09 +01002167 } else {
Radek Krejci54579462019-04-30 12:47:06 +02002168 free(code_local);
Radek Krejci19a96102018-11-15 13:38:09 +01002169 }
2170
2171 return LY_SUCCESS;
2172
2173#undef URANGE_LEN
2174}
2175
Radek Krejcia3045382018-11-22 14:30:31 +01002176/**
2177 * @brief Compile parsed pattern restriction in conjunction with the patterns from base type.
2178 * @param[in] ctx Compile context.
2179 * @param[in] patterns_p Array of parsed patterns from the current type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002180 * @param[in] base_patterns Compiled patterns from the type from which the current type is derived.
2181 * Patterns from the base type are inherited to have all the patterns that have to match at one place.
2182 * @param[out] patterns Pointer to the storage for the patterns of the current type.
2183 * @return LY_ERR LY_SUCCESS, LY_EMEM, LY_EVALID.
2184 */
Radek Krejci19a96102018-11-15 13:38:09 +01002185static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02002186lys_compile_type_patterns(struct lysc_ctx *ctx, struct lysp_restr *patterns_p,
Radek Krejci0f969882020-08-21 16:56:47 +02002187 struct lysc_pattern **base_patterns, struct lysc_pattern ***patterns)
Radek Krejci19a96102018-11-15 13:38:09 +01002188{
2189 struct lysc_pattern **pattern;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002190 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01002191 LY_ERR ret = LY_SUCCESS;
2192
2193 /* first, copy the patterns from the base type */
2194 if (base_patterns) {
2195 *patterns = lysc_patterns_dup(ctx->ctx, base_patterns);
2196 LY_CHECK_ERR_RET(!(*patterns), LOGMEM(ctx->ctx), LY_EMEM);
2197 }
2198
2199 LY_ARRAY_FOR(patterns_p, u) {
2200 LY_ARRAY_NEW_RET(ctx->ctx, (*patterns), pattern, LY_EMEM);
2201 *pattern = calloc(1, sizeof **pattern);
2202 ++(*pattern)->refcount;
2203
Michal Vasko7f45cf22020-10-01 12:49:44 +02002204 ret = lys_compile_type_pattern_check(ctx->ctx, ctx->path, &patterns_p[u].arg.str[1], &(*pattern)->code);
Radek Krejci19a96102018-11-15 13:38:09 +01002205 LY_CHECK_RET(ret);
Radek Krejci19a96102018-11-15 13:38:09 +01002206
Michal Vasko7f45cf22020-10-01 12:49:44 +02002207 if (patterns_p[u].arg.str[0] == 0x15) {
Radek Krejci19a96102018-11-15 13:38:09 +01002208 (*pattern)->inverted = 1;
2209 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02002210 DUP_STRING_GOTO(ctx->ctx, &patterns_p[u].arg.str[1], (*pattern)->expr, ret, done);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002211 DUP_STRING_GOTO(ctx->ctx, patterns_p[u].eapptag, (*pattern)->eapptag, ret, done);
2212 DUP_STRING_GOTO(ctx->ctx, patterns_p[u].emsg, (*pattern)->emsg, ret, done);
2213 DUP_STRING_GOTO(ctx->ctx, patterns_p[u].dsc, (*pattern)->dsc, ret, done);
2214 DUP_STRING_GOTO(ctx->ctx, patterns_p[u].ref, (*pattern)->ref, ret, done);
Radek Krejci0935f412019-08-20 16:15:18 +02002215 COMPILE_EXTS_GOTO(ctx, patterns_p[u].exts, (*pattern)->exts, (*pattern), LYEXT_PAR_PATTERN, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +01002216 }
2217done:
2218 return ret;
2219}
2220
Radek Krejcia3045382018-11-22 14:30:31 +01002221/**
2222 * @brief map of the possible restrictions combination for the specific built-in type.
2223 */
Radek Krejci19a96102018-11-15 13:38:09 +01002224static uint16_t type_substmt_map[LY_DATA_TYPE_COUNT] = {
2225 0 /* LY_TYPE_UNKNOWN */,
2226 LYS_SET_LENGTH /* LY_TYPE_BINARY */,
Radek Krejci5969f272018-11-23 10:03:58 +01002227 LYS_SET_RANGE /* LY_TYPE_UINT8 */,
2228 LYS_SET_RANGE /* LY_TYPE_UINT16 */,
2229 LYS_SET_RANGE /* LY_TYPE_UINT32 */,
2230 LYS_SET_RANGE /* LY_TYPE_UINT64 */,
2231 LYS_SET_LENGTH | LYS_SET_PATTERN /* LY_TYPE_STRING */,
Radek Krejci19a96102018-11-15 13:38:09 +01002232 LYS_SET_BIT /* LY_TYPE_BITS */,
2233 0 /* LY_TYPE_BOOL */,
2234 LYS_SET_FRDIGITS | LYS_SET_RANGE /* LY_TYPE_DEC64 */,
2235 0 /* LY_TYPE_EMPTY */,
2236 LYS_SET_ENUM /* LY_TYPE_ENUM */,
2237 LYS_SET_BASE /* LY_TYPE_IDENT */,
2238 LYS_SET_REQINST /* LY_TYPE_INST */,
2239 LYS_SET_REQINST | LYS_SET_PATH /* LY_TYPE_LEAFREF */,
Radek Krejci19a96102018-11-15 13:38:09 +01002240 LYS_SET_TYPE /* LY_TYPE_UNION */,
2241 LYS_SET_RANGE /* LY_TYPE_INT8 */,
Radek Krejci19a96102018-11-15 13:38:09 +01002242 LYS_SET_RANGE /* LY_TYPE_INT16 */,
Radek Krejci19a96102018-11-15 13:38:09 +01002243 LYS_SET_RANGE /* LY_TYPE_INT32 */,
Radek Krejci5969f272018-11-23 10:03:58 +01002244 LYS_SET_RANGE /* LY_TYPE_INT64 */
2245};
2246
2247/**
2248 * @brief stringification of the YANG built-in data types
2249 */
Michal Vasko22df3f02020-08-24 13:29:22 +02002250const char *ly_data_type2str[LY_DATA_TYPE_COUNT] = {"unknown", "binary", "8bit unsigned integer", "16bit unsigned integer",
Radek Krejci5969f272018-11-23 10:03:58 +01002251 "32bit unsigned integer", "64bit unsigned integer", "string", "bits", "boolean", "decimal64", "empty", "enumeration",
Radek Krejci0f969882020-08-21 16:56:47 +02002252 "identityref", "instance-identifier", "leafref", "union", "8bit integer", "16bit integer", "32bit integer", "64bit integer"};
Radek Krejci19a96102018-11-15 13:38:09 +01002253
Radek Krejcia3045382018-11-22 14:30:31 +01002254/**
2255 * @brief Compile parsed type's enum structures (for enumeration and bits types).
2256 * @param[in] ctx Compile context.
2257 * @param[in] enums_p Array of the parsed enum structures to compile.
2258 * @param[in] basetype Base YANG built-in type from which the current type is derived. Only LY_TYPE_ENUM and LY_TYPE_BITS are expected.
Radek Krejcia3045382018-11-22 14:30:31 +01002259 * @param[in] base_enums Array of the compiled enums information from the (latest) base type to check if the current enums are compatible.
2260 * @param[out] enums Newly created array of the compiled enums information for the current type.
2261 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
2262 */
Radek Krejci19a96102018-11-15 13:38:09 +01002263static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02002264lys_compile_type_enums(struct lysc_ctx *ctx, struct lysp_type_enum *enums_p, LY_DATA_TYPE basetype,
Radek Krejci0f969882020-08-21 16:56:47 +02002265 struct lysc_type_bitenum_item *base_enums, struct lysc_type_bitenum_item **enums)
Radek Krejci19a96102018-11-15 13:38:09 +01002266{
2267 LY_ERR ret = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002268 LY_ARRAY_COUNT_TYPE u, v, match = 0;
Radek Krejci19a96102018-11-15 13:38:09 +01002269 int32_t value = 0;
2270 uint32_t position = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02002271 struct lysc_type_bitenum_item *e, storage;
Radek Krejci19a96102018-11-15 13:38:09 +01002272
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002273 if (base_enums && ctx->mod_def->version < 2) {
Radek Krejci19a96102018-11-15 13:38:09 +01002274 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "%s type can be subtyped only in YANG 1.1 modules.",
2275 basetype == LY_TYPE_ENUM ? "Enumeration" : "Bits");
2276 return LY_EVALID;
2277 }
2278
2279 LY_ARRAY_FOR(enums_p, u) {
2280 LY_ARRAY_NEW_RET(ctx->ctx, *enums, e, LY_EMEM);
Radek Krejci011e4aa2020-09-04 15:22:31 +02002281 DUP_STRING_GOTO(ctx->ctx, enums_p[u].name, e->name, ret, done);
2282 DUP_STRING_GOTO(ctx->ctx, enums_p[u].ref, e->dsc, ret, done);
2283 DUP_STRING_GOTO(ctx->ctx, enums_p[u].ref, e->ref, ret, done);
Radek Krejci693262f2019-04-29 15:23:20 +02002284 e->flags = enums_p[u].flags & LYS_FLAGS_COMPILED_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +01002285 if (base_enums) {
2286 /* check the enum/bit presence in the base type - the set of enums/bits in the derived type must be a subset */
2287 LY_ARRAY_FOR(base_enums, v) {
2288 if (!strcmp(e->name, base_enums[v].name)) {
2289 break;
2290 }
2291 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002292 if (v == LY_ARRAY_COUNT(base_enums)) {
Radek Krejci19a96102018-11-15 13:38:09 +01002293 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2294 "Invalid %s - derived type adds new item \"%s\".",
2295 basetype == LY_TYPE_ENUM ? "enumeration" : "bits", e->name);
2296 return LY_EVALID;
2297 }
2298 match = v;
2299 }
2300
2301 if (basetype == LY_TYPE_ENUM) {
Radek Krejci693262f2019-04-29 15:23:20 +02002302 e->flags |= LYS_ISENUM;
Radek Krejci19a96102018-11-15 13:38:09 +01002303 if (enums_p[u].flags & LYS_SET_VALUE) {
2304 e->value = (int32_t)enums_p[u].value;
2305 if (!u || e->value >= value) {
2306 value = e->value + 1;
2307 }
2308 /* check collision with other values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002309 for (v = 0; v < LY_ARRAY_COUNT(*enums) - 1; ++v) {
Radek Krejci19a96102018-11-15 13:38:09 +01002310 if (e->value == (*enums)[v].value) {
2311 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2312 "Invalid enumeration - value %d collide in items \"%s\" and \"%s\".",
2313 e->value, e->name, (*enums)[v].name);
2314 return LY_EVALID;
2315 }
2316 }
2317 } else if (base_enums) {
2318 /* inherit the assigned value */
2319 e->value = base_enums[match].value;
2320 if (!u || e->value >= value) {
2321 value = e->value + 1;
2322 }
2323 } else {
2324 /* assign value automatically */
2325 if (u && value == INT32_MIN) {
2326 /* counter overflow */
2327 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2328 "Invalid enumeration - it is not possible to auto-assign enum value for "
2329 "\"%s\" since the highest value is already 2147483647.", e->name);
2330 return LY_EVALID;
2331 }
2332 e->value = value++;
2333 }
2334 } else { /* LY_TYPE_BITS */
2335 if (enums_p[u].flags & LYS_SET_VALUE) {
2336 e->value = (int32_t)enums_p[u].value;
2337 if (!u || (uint32_t)e->value >= position) {
2338 position = (uint32_t)e->value + 1;
2339 }
2340 /* check collision with other values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002341 for (v = 0; v < LY_ARRAY_COUNT(*enums) - 1; ++v) {
Radek Krejci19a96102018-11-15 13:38:09 +01002342 if (e->value == (*enums)[v].value) {
2343 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2344 "Invalid bits - position %u collide in items \"%s\" and \"%s\".",
Radek Krejci0f969882020-08-21 16:56:47 +02002345 (uint32_t)e->value, e->name, (*enums)[v].name);
Radek Krejci19a96102018-11-15 13:38:09 +01002346 return LY_EVALID;
2347 }
2348 }
2349 } else if (base_enums) {
2350 /* inherit the assigned value */
2351 e->value = base_enums[match].value;
2352 if (!u || (uint32_t)e->value >= position) {
2353 position = (uint32_t)e->value + 1;
2354 }
2355 } else {
2356 /* assign value automatically */
2357 if (u && position == 0) {
2358 /* counter overflow */
2359 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2360 "Invalid bits - it is not possible to auto-assign bit position for "
2361 "\"%s\" since the highest value is already 4294967295.", e->name);
2362 return LY_EVALID;
2363 }
2364 e->value = position++;
2365 }
2366 }
2367
2368 if (base_enums) {
2369 /* the assigned values must not change from the derived type */
2370 if (e->value != base_enums[match].value) {
2371 if (basetype == LY_TYPE_ENUM) {
2372 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2373 "Invalid enumeration - value of the item \"%s\" has changed from %d to %d in the derived type.",
2374 e->name, base_enums[match].value, e->value);
2375 } else {
2376 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2377 "Invalid bits - position of the item \"%s\" has changed from %u to %u in the derived type.",
2378 e->name, (uint32_t)base_enums[match].value, (uint32_t)e->value);
2379 }
2380 return LY_EVALID;
2381 }
2382 }
2383
Radek Krejciec4da802019-05-02 13:02:41 +02002384 COMPILE_ARRAY_GOTO(ctx, enums_p[u].iffeatures, e->iffeatures, v, lys_compile_iffeature, ret, done);
Radek Krejci0935f412019-08-20 16:15:18 +02002385 COMPILE_EXTS_GOTO(ctx, enums_p[u].exts, e->exts, e, basetype == LY_TYPE_ENUM ? LYEXT_PAR_TYPE_ENUM : LYEXT_PAR_TYPE_BIT, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +01002386
2387 if (basetype == LY_TYPE_BITS) {
2388 /* keep bits ordered by position */
Radek Krejci1e008d22020-08-17 11:37:37 +02002389 for (v = u; v && (*enums)[v - 1].value > e->value; --v) {}
Radek Krejci19a96102018-11-15 13:38:09 +01002390 if (v != u) {
2391 memcpy(&storage, e, sizeof *e);
2392 memmove(&(*enums)[v + 1], &(*enums)[v], (u - v) * sizeof **enums);
2393 memcpy(&(*enums)[v], &storage, sizeof storage);
2394 }
2395 }
2396 }
2397
2398done:
2399 return ret;
2400}
2401
Radek Krejcia3045382018-11-22 14:30:31 +01002402/**
2403 * @brief Parse path-arg (leafref). Get tokens of the path by repetitive calls of the function.
2404 *
2405 * path-arg = absolute-path / relative-path
2406 * absolute-path = 1*("/" (node-identifier *path-predicate))
2407 * relative-path = 1*(".." "/") descendant-path
2408 *
2409 * @param[in,out] path Path to parse.
2410 * @param[out] prefix Prefix of the token, NULL if there is not any.
2411 * @param[out] pref_len Length of the prefix, 0 if there is not any.
2412 * @param[out] name Name of the token.
2413 * @param[out] nam_len Length of the name.
2414 * @param[out] parent_times Number of leading ".." in the path. Must be 0 on the first call,
2415 * must not be changed between consecutive calls. -1 if the
2416 * path is absolute.
2417 * @param[out] has_predicate Flag to mark whether there is a predicate specified.
2418 * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the path.
2419 */
Radek Krejci2d7a47b2019-05-16 13:34:10 +02002420LY_ERR
Radek Krejcia3045382018-11-22 14:30:31 +01002421lys_path_token(const char **path, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len,
Radek Krejci857189e2020-09-01 13:26:36 +02002422 int32_t *parent_times, ly_bool *has_predicate)
Radek Krejcia3045382018-11-22 14:30:31 +01002423{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002424 int32_t par_times = 0;
Radek Krejcia3045382018-11-22 14:30:31 +01002425
2426 assert(path && *path);
2427 assert(parent_times);
2428 assert(prefix);
2429 assert(prefix_len);
2430 assert(name);
2431 assert(name_len);
2432 assert(has_predicate);
2433
2434 *prefix = NULL;
2435 *prefix_len = 0;
2436 *name = NULL;
2437 *name_len = 0;
2438 *has_predicate = 0;
2439
2440 if (!*parent_times) {
2441 if (!strncmp(*path, "..", 2)) {
2442 *path += 2;
2443 ++par_times;
2444 while (!strncmp(*path, "/..", 3)) {
2445 *path += 3;
2446 ++par_times;
2447 }
2448 }
2449 if (par_times) {
2450 *parent_times = par_times;
2451 } else {
2452 *parent_times = -1;
2453 }
2454 }
2455
2456 if (**path != '/') {
2457 return LY_EINVAL;
2458 }
2459 /* skip '/' */
2460 ++(*path);
2461
2462 /* node-identifier ([prefix:]name) */
Radek Krejcib4a4a272019-06-10 12:44:52 +02002463 LY_CHECK_RET(ly_parse_nodeid(path, prefix, prefix_len, name, name_len));
Radek Krejcia3045382018-11-22 14:30:31 +01002464
2465 if ((**path == '/' && (*path)[1]) || !**path) {
2466 /* path continues by another token or this is the last token */
2467 return LY_SUCCESS;
2468 } else if ((*path)[0] != '[') {
2469 /* unexpected character */
2470 return LY_EINVAL;
2471 } else {
2472 /* predicate starting with [ */
2473 *has_predicate = 1;
2474 return LY_SUCCESS;
2475 }
2476}
2477
2478/**
Radek Krejci58d171e2018-11-23 13:50:55 +01002479 * @brief Check the features used in if-feature statements applicable to the leafref and its target.
2480 *
2481 * The set of features used for target must be a subset of features used for the leafref.
2482 * This is not a perfect, we should compare the truth tables but it could require too much resources
2483 * and RFC 7950 does not require it explicitely, so we simplify that.
2484 *
2485 * @param[in] refnode The leafref node.
2486 * @param[in] target Tha target node of the leafref.
2487 * @return LY_SUCCESS or LY_EVALID;
2488 */
2489static LY_ERR
2490lys_compile_leafref_features_validate(const struct lysc_node *refnode, const struct lysc_node *target)
2491{
2492 LY_ERR ret = LY_EVALID;
2493 const struct lysc_node *iter;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002494 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci58d171e2018-11-23 13:50:55 +01002495 struct ly_set features = {0};
2496
2497 for (iter = refnode; iter; iter = iter->parent) {
Radek Krejci056d0a82018-12-06 16:57:25 +01002498 if (iter->iffeatures) {
2499 LY_ARRAY_FOR(iter->iffeatures, u) {
2500 LY_ARRAY_FOR(iter->iffeatures[u].features, v) {
Radek Krejciba03a5a2020-08-27 14:40:41 +02002501 LY_CHECK_GOTO(ly_set_add(&features, iter->iffeatures[u].features[v], 0, NULL), cleanup);
Radek Krejci58d171e2018-11-23 13:50:55 +01002502 }
2503 }
2504 }
2505 }
2506
2507 /* we should have, in features set, a superset of features applicable to the target node.
Radek Krejciba03a5a2020-08-27 14:40:41 +02002508 * If the feature is not present, we don;t have a subset of features applicable
Radek Krejci58d171e2018-11-23 13:50:55 +01002509 * to the leafref itself. */
Radek Krejci58d171e2018-11-23 13:50:55 +01002510 for (iter = target; iter; iter = iter->parent) {
Radek Krejci056d0a82018-12-06 16:57:25 +01002511 if (iter->iffeatures) {
2512 LY_ARRAY_FOR(iter->iffeatures, u) {
2513 LY_ARRAY_FOR(iter->iffeatures[u].features, v) {
Radek Krejciba03a5a2020-08-27 14:40:41 +02002514 if (!ly_set_contains(&features, iter->iffeatures[u].features[v], NULL)) {
2515 /* feature not present */
Radek Krejci58d171e2018-11-23 13:50:55 +01002516 goto cleanup;
2517 }
2518 }
2519 }
2520 }
2521 }
2522 ret = LY_SUCCESS;
2523
2524cleanup:
2525 ly_set_erase(&features, NULL);
2526 return ret;
2527}
2528
Michal Vasko7f45cf22020-10-01 12:49:44 +02002529static LY_ERR lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_pnode, uint16_t context_flags,
Radek Krejci0f969882020-08-21 16:56:47 +02002530 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p,
Michal Vasko7f45cf22020-10-01 12:49:44 +02002531 struct lysc_type **type, const char **units, struct lysp_qname **dflt);
Radek Krejcia3045382018-11-22 14:30:31 +01002532
Radek Krejcia3045382018-11-22 14:30:31 +01002533/**
2534 * @brief The core of the lys_compile_type() - compile information about the given type (from typedef or leaf/leaf-list).
2535 * @param[in] ctx Compile context.
Michal Vasko7f45cf22020-10-01 12:49:44 +02002536 * @param[in] context_pnode Schema node where the type/typedef is placed to correctly find the base types.
Radek Krejcicdfecd92018-11-26 11:27:32 +01002537 * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2538 * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2539 * @param[in] context_name Name of the context node or referencing typedef for logging.
Radek Krejcia3045382018-11-22 14:30:31 +01002540 * @param[in] type_p Parsed type to compile.
2541 * @param[in] basetype Base YANG built-in type of the type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002542 * @param[in] tpdfname Name of the type's typedef, serves as a flag - if it is leaf/leaf-list's type, it is NULL.
2543 * @param[in] base The latest base (compiled) type from which the current type is being derived.
2544 * @param[out] type Newly created type structure with the filled information about the type.
2545 * @return LY_ERR value.
2546 */
Radek Krejci19a96102018-11-15 13:38:09 +01002547static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02002548lys_compile_type_(struct lysc_ctx *ctx, struct lysp_node *context_pnode, uint16_t context_flags,
Michal Vaskoe9c050f2020-10-06 14:01:23 +02002549 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p, LY_DATA_TYPE basetype,
2550 const char *tpdfname, struct lysc_type *base, struct lysc_type **type)
Radek Krejcic5c27e52018-11-15 14:38:11 +01002551{
2552 LY_ERR ret = LY_SUCCESS;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002553 struct lysc_type_bin *bin;
2554 struct lysc_type_num *num;
2555 struct lysc_type_str *str;
2556 struct lysc_type_bits *bits;
2557 struct lysc_type_enum *enumeration;
Radek Krejci6cba4292018-11-15 17:33:29 +01002558 struct lysc_type_dec *dec;
Radek Krejci555cb5b2018-11-16 14:54:33 +01002559 struct lysc_type_identityref *idref;
Michal Vasko004d3152020-06-11 19:59:22 +02002560 struct lysc_type_leafref *lref;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002561 struct lysc_type_union *un, *un_aux;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002562
2563 switch (basetype) {
2564 case LY_TYPE_BINARY:
Michal Vasko22df3f02020-08-24 13:29:22 +02002565 bin = (struct lysc_type_bin *)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002566
2567 /* RFC 7950 9.8.1, 9.4.4 - length, number of octets it contains */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002568 if (type_p->length) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002569 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->length, basetype, 1, 0,
Michal Vasko22df3f02020-08-24 13:29:22 +02002570 base ? ((struct lysc_type_bin *)base)->length : NULL, &bin->length));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002571 if (!tpdfname) {
Michal Vasko1734be92020-09-22 08:55:10 +02002572 COMPILE_EXTS_GOTO(ctx, type_p->length->exts, bin->length->exts, bin->length, LYEXT_PAR_LENGTH, ret, cleanup);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002573 }
2574 }
Radek Krejcic5c27e52018-11-15 14:38:11 +01002575 break;
2576 case LY_TYPE_BITS:
2577 /* RFC 7950 9.7 - bits */
Michal Vasko22df3f02020-08-24 13:29:22 +02002578 bits = (struct lysc_type_bits *)(*type);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002579 if (type_p->bits) {
Radek Krejciec4da802019-05-02 13:02:41 +02002580 LY_CHECK_RET(lys_compile_type_enums(ctx, type_p->bits, basetype,
Michal Vasko22df3f02020-08-24 13:29:22 +02002581 base ? (struct lysc_type_bitenum_item *)((struct lysc_type_bits *)base)->bits : NULL,
2582 (struct lysc_type_bitenum_item **)&bits->bits));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002583 }
2584
Radek Krejci555cb5b2018-11-16 14:54:33 +01002585 if (!base && !type_p->flags) {
Radek Krejcic5c27e52018-11-15 14:38:11 +01002586 /* type derived from bits built-in type must contain at least one bit */
Radek Krejci6cba4292018-11-15 17:33:29 +01002587 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002588 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type ", tpdfname);
Radek Krejci6cba4292018-11-15 17:33:29 +01002589 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002590 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type", "");
Radek Krejcic5c27e52018-11-15 14:38:11 +01002591 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002592 return LY_EVALID;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002593 }
Radek Krejcic5c27e52018-11-15 14:38:11 +01002594 break;
Radek Krejci6cba4292018-11-15 17:33:29 +01002595 case LY_TYPE_DEC64:
Radek Krejci115a74d2020-08-14 22:18:12 +02002596 dec = (struct lysc_type_dec *)(*type);
Radek Krejci6cba4292018-11-15 17:33:29 +01002597
2598 /* RFC 7950 9.3.4 - fraction-digits */
Radek Krejci555cb5b2018-11-16 14:54:33 +01002599 if (!base) {
Radek Krejci643c8242018-11-15 17:51:11 +01002600 if (!type_p->fraction_digits) {
2601 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002602 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "fraction-digits", "decimal64 type ", tpdfname);
Radek Krejci643c8242018-11-15 17:51:11 +01002603 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002604 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "fraction-digits", "decimal64 type", "");
Radek Krejci643c8242018-11-15 17:51:11 +01002605 }
2606 return LY_EVALID;
2607 }
Radek Krejci115a74d2020-08-14 22:18:12 +02002608 dec->fraction_digits = type_p->fraction_digits;
2609 } else {
2610 if (type_p->fraction_digits) {
2611 /* fraction digits is prohibited in types not directly derived from built-in decimal64 */
2612 if (tpdfname) {
2613 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2614 "Invalid fraction-digits substatement for type \"%s\" not directly derived from decimal64 built-in type.",
2615 tpdfname);
2616 } else {
2617 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2618 "Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type.");
Radek Krejci115a74d2020-08-14 22:18:12 +02002619 }
2620 return LY_EVALID;
Radek Krejci6cba4292018-11-15 17:33:29 +01002621 }
Radek Krejci115a74d2020-08-14 22:18:12 +02002622 dec->fraction_digits = ((struct lysc_type_dec *)base)->fraction_digits;
Radek Krejci6cba4292018-11-15 17:33:29 +01002623 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002624
2625 /* RFC 7950 9.2.4 - range */
2626 if (type_p->range) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002627 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->range, basetype, 0, dec->fraction_digits,
Radek Krejci115a74d2020-08-14 22:18:12 +02002628 base ? ((struct lysc_type_dec *)base)->range : NULL, &dec->range));
Radek Krejci6cba4292018-11-15 17:33:29 +01002629 if (!tpdfname) {
Michal Vasko1734be92020-09-22 08:55:10 +02002630 COMPILE_EXTS_GOTO(ctx, type_p->range->exts, dec->range->exts, dec->range, LYEXT_PAR_RANGE, ret, cleanup);
Radek Krejci6cba4292018-11-15 17:33:29 +01002631 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002632 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002633 break;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002634 case LY_TYPE_STRING:
Michal Vasko22df3f02020-08-24 13:29:22 +02002635 str = (struct lysc_type_str *)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002636
2637 /* RFC 7950 9.4.4 - length */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002638 if (type_p->length) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002639 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->length, basetype, 1, 0,
Michal Vasko22df3f02020-08-24 13:29:22 +02002640 base ? ((struct lysc_type_str *)base)->length : NULL, &str->length));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002641 if (!tpdfname) {
Michal Vasko1734be92020-09-22 08:55:10 +02002642 COMPILE_EXTS_GOTO(ctx, type_p->length->exts, str->length->exts, str->length, LYEXT_PAR_LENGTH, ret, cleanup);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002643 }
Michal Vasko22df3f02020-08-24 13:29:22 +02002644 } else if (base && ((struct lysc_type_str *)base)->length) {
2645 str->length = lysc_range_dup(ctx->ctx, ((struct lysc_type_str *)base)->length);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002646 }
2647
2648 /* RFC 7950 9.4.5 - pattern */
2649 if (type_p->patterns) {
Radek Krejciec4da802019-05-02 13:02:41 +02002650 LY_CHECK_RET(lys_compile_type_patterns(ctx, type_p->patterns,
Michal Vasko22df3f02020-08-24 13:29:22 +02002651 base ? ((struct lysc_type_str *)base)->patterns : NULL, &str->patterns));
2652 } else if (base && ((struct lysc_type_str *)base)->patterns) {
2653 str->patterns = lysc_patterns_dup(ctx->ctx, ((struct lysc_type_str *)base)->patterns);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002654 }
Radek Krejcic5c27e52018-11-15 14:38:11 +01002655 break;
2656 case LY_TYPE_ENUM:
Michal Vasko22df3f02020-08-24 13:29:22 +02002657 enumeration = (struct lysc_type_enum *)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002658
2659 /* RFC 7950 9.6 - enum */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002660 if (type_p->enums) {
Radek Krejciec4da802019-05-02 13:02:41 +02002661 LY_CHECK_RET(lys_compile_type_enums(ctx, type_p->enums, basetype,
Michal Vasko22df3f02020-08-24 13:29:22 +02002662 base ? ((struct lysc_type_enum *)base)->enums : NULL, &enumeration->enums));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002663 }
2664
Radek Krejci555cb5b2018-11-16 14:54:33 +01002665 if (!base && !type_p->flags) {
Radek Krejcic5c27e52018-11-15 14:38:11 +01002666 /* type derived from enumerations built-in type must contain at least one enum */
Radek Krejci6cba4292018-11-15 17:33:29 +01002667 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002668 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type ", tpdfname);
Radek Krejci6cba4292018-11-15 17:33:29 +01002669 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002670 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type", "");
Radek Krejcic5c27e52018-11-15 14:38:11 +01002671 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002672 return LY_EVALID;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002673 }
Radek Krejcic5c27e52018-11-15 14:38:11 +01002674 break;
2675 case LY_TYPE_INT8:
2676 case LY_TYPE_UINT8:
2677 case LY_TYPE_INT16:
2678 case LY_TYPE_UINT16:
2679 case LY_TYPE_INT32:
2680 case LY_TYPE_UINT32:
2681 case LY_TYPE_INT64:
2682 case LY_TYPE_UINT64:
Michal Vasko22df3f02020-08-24 13:29:22 +02002683 num = (struct lysc_type_num *)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002684
2685 /* RFC 6020 9.2.4 - range */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002686 if (type_p->range) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002687 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->range, basetype, 0, 0,
Michal Vasko22df3f02020-08-24 13:29:22 +02002688 base ? ((struct lysc_type_num *)base)->range : NULL, &num->range));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002689 if (!tpdfname) {
Michal Vasko1734be92020-09-22 08:55:10 +02002690 COMPILE_EXTS_GOTO(ctx, type_p->range->exts, num->range->exts, num->range, LYEXT_PAR_RANGE, ret, cleanup);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002691 }
2692 }
Radek Krejcic5c27e52018-11-15 14:38:11 +01002693 break;
Radek Krejci555cb5b2018-11-16 14:54:33 +01002694 case LY_TYPE_IDENT:
Michal Vasko22df3f02020-08-24 13:29:22 +02002695 idref = (struct lysc_type_identityref *)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002696
2697 /* RFC 7950 9.10.2 - base */
2698 if (type_p->bases) {
2699 if (base) {
2700 /* only the directly derived identityrefs can contain base specification */
2701 if (tpdfname) {
2702 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Radek Krejcicdfecd92018-11-26 11:27:32 +01002703 "Invalid base substatement for the type \"%s\" not directly derived from identityref built-in type.",
Radek Krejci555cb5b2018-11-16 14:54:33 +01002704 tpdfname);
2705 } else {
2706 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Radek Krejcicdfecd92018-11-26 11:27:32 +01002707 "Invalid base substatement for the type not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01002708 }
2709 return LY_EVALID;
2710 }
Michal Vaskoe9c050f2020-10-06 14:01:23 +02002711 LY_CHECK_RET(lys_compile_identity_bases(ctx, type_p->mod, type_p->bases, NULL, &idref->bases));
Radek Krejci555cb5b2018-11-16 14:54:33 +01002712 }
2713
2714 if (!base && !type_p->flags) {
2715 /* type derived from identityref built-in type must contain at least one base */
2716 if (tpdfname) {
2717 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type ", tpdfname);
2718 } else {
2719 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type", "");
Radek Krejci555cb5b2018-11-16 14:54:33 +01002720 }
2721 return LY_EVALID;
2722 }
Radek Krejci555cb5b2018-11-16 14:54:33 +01002723 break;
Radek Krejcia3045382018-11-22 14:30:31 +01002724 case LY_TYPE_LEAFREF:
Michal Vasko22df3f02020-08-24 13:29:22 +02002725 lref = (struct lysc_type_leafref *)*type;
Michal Vasko004d3152020-06-11 19:59:22 +02002726
Radek Krejcia3045382018-11-22 14:30:31 +01002727 /* RFC 7950 9.9.3 - require-instance */
2728 if (type_p->flags & LYS_SET_REQINST) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002729 if (context_mod->mod->version < LYS_VERSION_1_1) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002730 if (tpdfname) {
2731 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
2732 "Leafref type \"%s\" can be restricted by require-instance statement only in YANG 1.1 modules.", tpdfname);
2733 } else {
2734 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
2735 "Leafref type can be restricted by require-instance statement only in YANG 1.1 modules.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002736 }
2737 return LY_EVALID;
2738 }
Michal Vasko004d3152020-06-11 19:59:22 +02002739 lref->require_instance = type_p->require_instance;
Radek Krejci412ddfa2018-11-23 11:44:11 +01002740 } else if (base) {
2741 /* inherit */
Michal Vasko004d3152020-06-11 19:59:22 +02002742 lref->require_instance = ((struct lysc_type_leafref *)base)->require_instance;
Radek Krejcia3045382018-11-22 14:30:31 +01002743 } else {
2744 /* default is true */
Michal Vasko004d3152020-06-11 19:59:22 +02002745 lref->require_instance = 1;
Radek Krejcia3045382018-11-22 14:30:31 +01002746 }
2747 if (type_p->path) {
Michal Vasko1734be92020-09-22 08:55:10 +02002748 LY_CHECK_RET(lyxp_expr_dup(ctx->ctx, type_p->path, &lref->path));
Michal Vaskoe9c050f2020-10-06 14:01:23 +02002749 lref->path_mod = type_p->mod;
Radek Krejcia3045382018-11-22 14:30:31 +01002750 } else if (base) {
Michal Vasko1734be92020-09-22 08:55:10 +02002751 LY_CHECK_RET(lyxp_expr_dup(ctx->ctx, ((struct lysc_type_leafref *)base)->path, &lref->path));
Michal Vasko22df3f02020-08-24 13:29:22 +02002752 lref->path_context = ((struct lysc_type_leafref *)base)->path_context;
Radek Krejcia3045382018-11-22 14:30:31 +01002753 } else if (tpdfname) {
2754 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type ", tpdfname);
2755 return LY_EVALID;
2756 } else {
2757 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type", "");
Radek Krejcia3045382018-11-22 14:30:31 +01002758 return LY_EVALID;
2759 }
Radek Krejcia3045382018-11-22 14:30:31 +01002760 break;
Radek Krejci16c0f822018-11-16 10:46:10 +01002761 case LY_TYPE_INST:
2762 /* RFC 7950 9.9.3 - require-instance */
2763 if (type_p->flags & LYS_SET_REQINST) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002764 ((struct lysc_type_instanceid *)(*type))->require_instance = type_p->require_instance;
Radek Krejci16c0f822018-11-16 10:46:10 +01002765 } else {
2766 /* default is true */
Michal Vasko22df3f02020-08-24 13:29:22 +02002767 ((struct lysc_type_instanceid *)(*type))->require_instance = 1;
Radek Krejci16c0f822018-11-16 10:46:10 +01002768 }
Radek Krejci16c0f822018-11-16 10:46:10 +01002769 break;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002770 case LY_TYPE_UNION:
Michal Vasko22df3f02020-08-24 13:29:22 +02002771 un = (struct lysc_type_union *)(*type);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002772
2773 /* RFC 7950 7.4 - type */
2774 if (type_p->types) {
2775 if (base) {
2776 /* only the directly derived union can contain types specification */
2777 if (tpdfname) {
2778 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2779 "Invalid type substatement for the type \"%s\" not directly derived from union built-in type.",
2780 tpdfname);
2781 } else {
2782 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2783 "Invalid type substatement for the type not directly derived from union built-in type.");
Radek Krejcicdfecd92018-11-26 11:27:32 +01002784 }
2785 return LY_EVALID;
2786 }
2787 /* compile the type */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002788 LY_ARRAY_CREATE_RET(ctx->ctx, un->types, LY_ARRAY_COUNT(type_p->types), LY_EVALID);
2789 for (LY_ARRAY_COUNT_TYPE u = 0, additional = 0; u < LY_ARRAY_COUNT(type_p->types); ++u) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02002790 LY_CHECK_RET(lys_compile_type(ctx, context_pnode, context_flags, context_mod, context_name,
2791 &type_p->types[u], &un->types[u + additional], NULL, NULL));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002792 if (un->types[u + additional]->basetype == LY_TYPE_UNION) {
2793 /* add space for additional types from the union subtype */
2794 un_aux = (struct lysc_type_union *)un->types[u + additional];
Michal Vasko22df3f02020-08-24 13:29:22 +02002795 LY_ARRAY_RESIZE_ERR_RET(ctx->ctx, un->types, (*((uint64_t *)(type_p->types) - 1)) + additional + LY_ARRAY_COUNT(un_aux->types) - 1,
2796 lysc_type_free(ctx->ctx, (struct lysc_type *)un_aux), LY_EMEM);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002797
2798 /* copy subtypes of the subtype union */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002799 for (LY_ARRAY_COUNT_TYPE v = 0; v < LY_ARRAY_COUNT(un_aux->types); ++v) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002800 if (un_aux->types[v]->basetype == LY_TYPE_LEAFREF) {
2801 /* duplicate the whole structure because of the instance-specific path resolving for realtype */
2802 un->types[u + additional] = calloc(1, sizeof(struct lysc_type_leafref));
Michal Vasko22df3f02020-08-24 13:29:22 +02002803 LY_CHECK_ERR_RET(!un->types[u + additional], LOGMEM(ctx->ctx); lysc_type_free(ctx->ctx, (struct lysc_type *)un_aux), LY_EMEM);
Michal Vasko004d3152020-06-11 19:59:22 +02002804 lref = (struct lysc_type_leafref *)un->types[u + additional];
2805
2806 lref->basetype = LY_TYPE_LEAFREF;
Michal Vasko1734be92020-09-22 08:55:10 +02002807 LY_CHECK_RET(lyxp_expr_dup(ctx->ctx, ((struct lysc_type_leafref *)un_aux->types[v])->path, &lref->path));
Michal Vasko004d3152020-06-11 19:59:22 +02002808 lref->refcount = 1;
Michal Vasko22df3f02020-08-24 13:29:22 +02002809 lref->require_instance = ((struct lysc_type_leafref *)un_aux->types[v])->require_instance;
2810 lref->path_context = ((struct lysc_type_leafref *)un_aux->types[v])->path_context;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002811 /* TODO extensions */
2812
2813 } else {
2814 un->types[u + additional] = un_aux->types[v];
2815 ++un_aux->types[v]->refcount;
2816 }
2817 ++additional;
2818 LY_ARRAY_INCREMENT(un->types);
2819 }
2820 /* compensate u increment in main loop */
2821 --additional;
2822
2823 /* free the replaced union subtype */
Michal Vasko22df3f02020-08-24 13:29:22 +02002824 lysc_type_free(ctx->ctx, (struct lysc_type *)un_aux);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002825 } else {
2826 LY_ARRAY_INCREMENT(un->types);
2827 }
Radek Krejcicdfecd92018-11-26 11:27:32 +01002828 }
2829 }
2830
2831 if (!base && !type_p->flags) {
2832 /* type derived from union built-in type must contain at least one type */
2833 if (tpdfname) {
2834 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type ", tpdfname);
2835 } else {
2836 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type", "");
Radek Krejcicdfecd92018-11-26 11:27:32 +01002837 }
2838 return LY_EVALID;
2839 }
Radek Krejcicdfecd92018-11-26 11:27:32 +01002840 break;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002841 case LY_TYPE_BOOL:
2842 case LY_TYPE_EMPTY:
2843 case LY_TYPE_UNKNOWN: /* just to complete switch */
2844 break;
2845 }
Michal Vasko1734be92020-09-22 08:55:10 +02002846
2847 if (tpdfname) {
2848 switch (basetype) {
2849 case LY_TYPE_BINARY:
2850 type_p->compiled = *type;
2851 *type = calloc(1, sizeof(struct lysc_type_bin));
2852 break;
2853 case LY_TYPE_BITS:
2854 type_p->compiled = *type;
2855 *type = calloc(1, sizeof(struct lysc_type_bits));
2856 break;
2857 case LY_TYPE_DEC64:
2858 type_p->compiled = *type;
2859 *type = calloc(1, sizeof(struct lysc_type_dec));
2860 break;
2861 case LY_TYPE_STRING:
2862 type_p->compiled = *type;
2863 *type = calloc(1, sizeof(struct lysc_type_str));
2864 break;
2865 case LY_TYPE_ENUM:
2866 type_p->compiled = *type;
2867 *type = calloc(1, sizeof(struct lysc_type_enum));
2868 break;
2869 case LY_TYPE_INT8:
2870 case LY_TYPE_UINT8:
2871 case LY_TYPE_INT16:
2872 case LY_TYPE_UINT16:
2873 case LY_TYPE_INT32:
2874 case LY_TYPE_UINT32:
2875 case LY_TYPE_INT64:
2876 case LY_TYPE_UINT64:
2877 type_p->compiled = *type;
2878 *type = calloc(1, sizeof(struct lysc_type_num));
2879 break;
2880 case LY_TYPE_IDENT:
2881 type_p->compiled = *type;
2882 *type = calloc(1, sizeof(struct lysc_type_identityref));
2883 break;
2884 case LY_TYPE_LEAFREF:
2885 type_p->compiled = *type;
2886 *type = calloc(1, sizeof(struct lysc_type_leafref));
2887 break;
2888 case LY_TYPE_INST:
2889 type_p->compiled = *type;
2890 *type = calloc(1, sizeof(struct lysc_type_instanceid));
2891 break;
2892 case LY_TYPE_UNION:
2893 type_p->compiled = *type;
2894 *type = calloc(1, sizeof(struct lysc_type_union));
2895 break;
2896 case LY_TYPE_BOOL:
2897 case LY_TYPE_EMPTY:
2898 case LY_TYPE_UNKNOWN: /* just to complete switch */
2899 break;
2900 }
2901 }
Radek Krejcic5c27e52018-11-15 14:38:11 +01002902 LY_CHECK_ERR_RET(!(*type), LOGMEM(ctx->ctx), LY_EMEM);
Michal Vasko1734be92020-09-22 08:55:10 +02002903
2904cleanup:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002905 return ret;
2906}
2907
Radek Krejcia3045382018-11-22 14:30:31 +01002908/**
2909 * @brief Compile information about the leaf/leaf-list's type.
2910 * @param[in] ctx Compile context.
Michal Vasko7f45cf22020-10-01 12:49:44 +02002911 * @param[in] context_pnode Schema node where the type/typedef is placed to correctly find the base types.
Radek Krejcicdfecd92018-11-26 11:27:32 +01002912 * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2913 * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2914 * @param[in] context_name Name of the context node or referencing typedef for logging.
2915 * @param[in] type_p Parsed type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002916 * @param[out] type Newly created (or reused with increased refcount) type structure with the filled information about the type.
Radek Krejcicdfecd92018-11-26 11:27:32 +01002917 * @param[out] units Storage for inheriting units value from the typedefs the current type derives from.
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002918 * @param[out] dflt Default value for the type.
Radek Krejcia3045382018-11-22 14:30:31 +01002919 * @return LY_ERR value.
2920 */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002921static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02002922lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_pnode, uint16_t context_flags,
Radek Krejci0f969882020-08-21 16:56:47 +02002923 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p,
Michal Vasko7f45cf22020-10-01 12:49:44 +02002924 struct lysc_type **type, const char **units, struct lysp_qname **dflt)
Radek Krejci19a96102018-11-15 13:38:09 +01002925{
2926 LY_ERR ret = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +02002927 ly_bool dummyloops = 0;
Radek Krejci19a96102018-11-15 13:38:09 +01002928 struct type_context {
2929 const struct lysp_tpdf *tpdf;
2930 struct lysp_node *node;
2931 struct lysp_module *mod;
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002932 } *tctx, *tctx_prev = NULL, *tctx_iter;
Radek Krejci19a96102018-11-15 13:38:09 +01002933 LY_DATA_TYPE basetype = LY_TYPE_UNKNOWN;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002934 struct lysc_type *base = NULL, *prev_type;
Radek Krejci19a96102018-11-15 13:38:09 +01002935 struct ly_set tpdf_chain = {0};
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002936
Radek Krejci19a96102018-11-15 13:38:09 +01002937 (*type) = NULL;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002938 if (dflt) {
2939 *dflt = NULL;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002940 }
Radek Krejci19a96102018-11-15 13:38:09 +01002941
2942 tctx = calloc(1, sizeof *tctx);
2943 LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM);
Michal Vasko7f45cf22020-10-01 12:49:44 +02002944 for (ret = lysp_type_find(type_p->name, context_pnode, ctx->mod_def->parsed,
Radek Krejci19a96102018-11-15 13:38:09 +01002945 &basetype, &tctx->tpdf, &tctx->node, &tctx->mod);
2946 ret == LY_SUCCESS;
2947 ret = lysp_type_find(tctx_prev->tpdf->type.name, tctx_prev->node, tctx_prev->mod,
2948 &basetype, &tctx->tpdf, &tctx->node, &tctx->mod)) {
2949 if (basetype) {
2950 break;
2951 }
2952
2953 /* check status */
Radek Krejcicdfecd92018-11-26 11:27:32 +01002954 ret = lysc_check_status(ctx, context_flags, context_mod, context_name,
2955 tctx->tpdf->flags, tctx->mod, tctx->node ? tctx->node->name : tctx->tpdf->name);
Radek Krejci87e25252020-09-15 13:28:31 +02002956 LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01002957
Radek Krejcicdfecd92018-11-26 11:27:32 +01002958 if (units && !*units) {
2959 /* inherit units */
Radek Krejci87e25252020-09-15 13:28:31 +02002960 DUP_STRING(ctx->ctx, tctx->tpdf->units, *units, ret);
2961 LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002962 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02002963 if (dflt && !*dflt && tctx->tpdf->dflt.str) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002964 /* inherit default */
Michal Vasko7f45cf22020-10-01 12:49:44 +02002965 *dflt = (struct lysp_qname *)&tctx->tpdf->dflt;
Michal Vaskoe9c050f2020-10-06 14:01:23 +02002966 assert((*dflt)->mod);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002967 }
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002968 if (dummyloops && (!units || *units) && dflt && *dflt) {
Michal Vasko22df3f02020-08-24 13:29:22 +02002969 basetype = ((struct type_context *)tpdf_chain.objs[tpdf_chain.count - 1])->tpdf->type.compiled->basetype;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002970 break;
2971 }
2972
Radek Krejci19a96102018-11-15 13:38:09 +01002973 if (tctx->tpdf->type.compiled) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002974 /* it is not necessary to continue, the rest of the chain was already compiled,
2975 * but we still may need to inherit default and units values, so start dummy loops */
Radek Krejci19a96102018-11-15 13:38:09 +01002976 basetype = tctx->tpdf->type.compiled->basetype;
Radek Krejciba03a5a2020-08-27 14:40:41 +02002977 ret = ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST, NULL);
Radek Krejci87e25252020-09-15 13:28:31 +02002978 LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup);
Radek Krejciba03a5a2020-08-27 14:40:41 +02002979
Michal Vaskoba99a3e2020-08-18 15:50:05 +02002980 if ((units && !*units) || (dflt && !*dflt)) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002981 dummyloops = 1;
2982 goto preparenext;
2983 } else {
2984 tctx = NULL;
2985 break;
2986 }
Radek Krejci19a96102018-11-15 13:38:09 +01002987 }
2988
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002989 /* circular typedef reference detection */
Radek Krejci1deb5be2020-08-26 16:43:36 +02002990 for (uint32_t u = 0; u < tpdf_chain.count; u++) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002991 /* local part */
Michal Vasko22df3f02020-08-24 13:29:22 +02002992 tctx_iter = (struct type_context *)tpdf_chain.objs[u];
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002993 if (tctx_iter->mod == tctx->mod && tctx_iter->node == tctx->node && tctx_iter->tpdf == tctx->tpdf) {
2994 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
2995 "Invalid \"%s\" type reference - circular chain of types detected.", tctx->tpdf->name);
2996 free(tctx);
2997 ret = LY_EVALID;
2998 goto cleanup;
2999 }
3000 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02003001 for (uint32_t u = 0; u < ctx->tpdf_chain.count; u++) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003002 /* global part for unions corner case */
Michal Vasko22df3f02020-08-24 13:29:22 +02003003 tctx_iter = (struct type_context *)ctx->tpdf_chain.objs[u];
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003004 if (tctx_iter->mod == tctx->mod && tctx_iter->node == tctx->node && tctx_iter->tpdf == tctx->tpdf) {
3005 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3006 "Invalid \"%s\" type reference - circular chain of types detected.", tctx->tpdf->name);
3007 free(tctx);
3008 ret = LY_EVALID;
3009 goto cleanup;
3010 }
3011 }
3012
Radek Krejci19a96102018-11-15 13:38:09 +01003013 /* store information for the following processing */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003014 ret = ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST, NULL);
Radek Krejci87e25252020-09-15 13:28:31 +02003015 LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01003016
Radek Krejcicdfecd92018-11-26 11:27:32 +01003017preparenext:
Radek Krejci19a96102018-11-15 13:38:09 +01003018 /* prepare next loop */
3019 tctx_prev = tctx;
3020 tctx = calloc(1, sizeof *tctx);
3021 LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM);
3022 }
3023 free(tctx);
3024
3025 /* allocate type according to the basetype */
3026 switch (basetype) {
3027 case LY_TYPE_BINARY:
3028 *type = calloc(1, sizeof(struct lysc_type_bin));
Radek Krejci19a96102018-11-15 13:38:09 +01003029 break;
3030 case LY_TYPE_BITS:
3031 *type = calloc(1, sizeof(struct lysc_type_bits));
Radek Krejci19a96102018-11-15 13:38:09 +01003032 break;
3033 case LY_TYPE_BOOL:
3034 case LY_TYPE_EMPTY:
3035 *type = calloc(1, sizeof(struct lysc_type));
3036 break;
3037 case LY_TYPE_DEC64:
3038 *type = calloc(1, sizeof(struct lysc_type_dec));
3039 break;
3040 case LY_TYPE_ENUM:
3041 *type = calloc(1, sizeof(struct lysc_type_enum));
Radek Krejci19a96102018-11-15 13:38:09 +01003042 break;
3043 case LY_TYPE_IDENT:
3044 *type = calloc(1, sizeof(struct lysc_type_identityref));
3045 break;
3046 case LY_TYPE_INST:
3047 *type = calloc(1, sizeof(struct lysc_type_instanceid));
3048 break;
3049 case LY_TYPE_LEAFREF:
3050 *type = calloc(1, sizeof(struct lysc_type_leafref));
3051 break;
3052 case LY_TYPE_STRING:
3053 *type = calloc(1, sizeof(struct lysc_type_str));
Radek Krejci19a96102018-11-15 13:38:09 +01003054 break;
3055 case LY_TYPE_UNION:
3056 *type = calloc(1, sizeof(struct lysc_type_union));
3057 break;
3058 case LY_TYPE_INT8:
3059 case LY_TYPE_UINT8:
3060 case LY_TYPE_INT16:
3061 case LY_TYPE_UINT16:
3062 case LY_TYPE_INT32:
3063 case LY_TYPE_UINT32:
3064 case LY_TYPE_INT64:
3065 case LY_TYPE_UINT64:
3066 *type = calloc(1, sizeof(struct lysc_type_num));
Radek Krejci19a96102018-11-15 13:38:09 +01003067 break;
3068 case LY_TYPE_UNKNOWN:
3069 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3070 "Referenced type \"%s\" not found.", tctx_prev ? tctx_prev->tpdf->type.name : type_p->name);
3071 ret = LY_EVALID;
3072 goto cleanup;
3073 }
3074 LY_CHECK_ERR_GOTO(!(*type), LOGMEM(ctx->ctx), cleanup);
Radek Krejcicdfecd92018-11-26 11:27:32 +01003075 if (~type_substmt_map[basetype] & type_p->flags) {
Radek Krejci19a96102018-11-15 13:38:09 +01003076 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type restrictions for %s type.",
3077 ly_data_type2str[basetype]);
3078 free(*type);
3079 (*type) = NULL;
3080 ret = LY_EVALID;
3081 goto cleanup;
3082 }
3083
3084 /* get restrictions from the referred typedefs */
Radek Krejci1deb5be2020-08-26 16:43:36 +02003085 for (uint32_t u = tpdf_chain.count - 1; u + 1 > 0; --u) {
Michal Vasko22df3f02020-08-24 13:29:22 +02003086 tctx = (struct type_context *)tpdf_chain.objs[u];
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003087
3088 /* remember the typedef context for circular check */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003089 ret = ly_set_add(&ctx->tpdf_chain, tctx, LY_SET_OPT_USEASLIST, NULL);
3090 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003091
Radek Krejci43699232018-11-23 14:59:46 +01003092 if (tctx->tpdf->type.compiled) {
Radek Krejci19a96102018-11-15 13:38:09 +01003093 base = tctx->tpdf->type.compiled;
3094 continue;
Radek Krejci43699232018-11-23 14:59:46 +01003095 } else if (basetype != LY_TYPE_LEAFREF && (u != tpdf_chain.count - 1) && !(tctx->tpdf->type.flags)) {
Radek Krejci19a96102018-11-15 13:38:09 +01003096 /* no change, just use the type information from the base */
Michal Vasko22df3f02020-08-24 13:29:22 +02003097 base = ((struct lysp_tpdf *)tctx->tpdf)->type.compiled = ((struct type_context *)tpdf_chain.objs[u + 1])->tpdf->type.compiled;
Radek Krejci19a96102018-11-15 13:38:09 +01003098 ++base->refcount;
3099 continue;
3100 }
3101
3102 ++(*type)->refcount;
Radek Krejci43699232018-11-23 14:59:46 +01003103 if (~type_substmt_map[basetype] & tctx->tpdf->type.flags) {
3104 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type \"%s\" restriction(s) for %s type.",
3105 tctx->tpdf->name, ly_data_type2str[basetype]);
3106 ret = LY_EVALID;
3107 goto cleanup;
Michal Vasko7f45cf22020-10-01 12:49:44 +02003108 } else if (basetype == LY_TYPE_EMPTY && tctx->tpdf->dflt.str) {
Radek Krejci43699232018-11-23 14:59:46 +01003109 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3110 "Invalid type \"%s\" - \"empty\" type must not have a default value (%s).",
Michal Vasko7f45cf22020-10-01 12:49:44 +02003111 tctx->tpdf->name, tctx->tpdf->dflt.str);
Radek Krejci43699232018-11-23 14:59:46 +01003112 ret = LY_EVALID;
3113 goto cleanup;
3114 }
3115
Radek Krejci19a96102018-11-15 13:38:09 +01003116 (*type)->basetype = basetype;
Radek Krejcie7b95092019-05-15 11:03:07 +02003117 /* TODO user type plugins */
3118 (*type)->plugin = &ly_builtin_type_plugins[basetype];
Radek Krejcic5c27e52018-11-15 14:38:11 +01003119 prev_type = *type;
Michal Vaskoe9c050f2020-10-06 14:01:23 +02003120 ret = lys_compile_type_(ctx, tctx->node, tctx->tpdf->flags, tctx->mod, tctx->tpdf->name,
3121 &((struct lysp_tpdf *)tctx->tpdf)->type, basetype, tctx->tpdf->name, base, type);
Radek Krejcic5c27e52018-11-15 14:38:11 +01003122 LY_CHECK_GOTO(ret, cleanup);
3123 base = prev_type;
Radek Krejci19a96102018-11-15 13:38:09 +01003124 }
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003125 /* remove the processed typedef contexts from the stack for circular check */
3126 ctx->tpdf_chain.count = ctx->tpdf_chain.count - tpdf_chain.count;
Radek Krejci19a96102018-11-15 13:38:09 +01003127
Radek Krejcic5c27e52018-11-15 14:38:11 +01003128 /* process the type definition in leaf */
Radek Krejcicdfecd92018-11-26 11:27:32 +01003129 if (type_p->flags || !base || basetype == LY_TYPE_LEAFREF) {
Radek Krejcia3045382018-11-22 14:30:31 +01003130 /* get restrictions from the node itself */
Radek Krejci19a96102018-11-15 13:38:09 +01003131 (*type)->basetype = basetype;
Radek Krejcie7b95092019-05-15 11:03:07 +02003132 /* TODO user type plugins */
3133 (*type)->plugin = &ly_builtin_type_plugins[basetype];
Radek Krejci19a96102018-11-15 13:38:09 +01003134 ++(*type)->refcount;
Michal Vaskoe9c050f2020-10-06 14:01:23 +02003135 ret = lys_compile_type_(ctx, context_pnode, context_flags, context_mod, context_name, type_p, basetype, NULL,
3136 base, type);
Radek Krejcic5c27e52018-11-15 14:38:11 +01003137 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci90b148f2020-05-06 17:49:40 +02003138 } else if (basetype != LY_TYPE_BOOL && basetype != LY_TYPE_EMPTY) {
Radek Krejci19a96102018-11-15 13:38:09 +01003139 /* no specific restriction in leaf's type definition, copy from the base */
3140 free(*type);
3141 (*type) = base;
3142 ++(*type)->refcount;
Radek Krejci19a96102018-11-15 13:38:09 +01003143 }
3144
Radek Krejci0935f412019-08-20 16:15:18 +02003145 COMPILE_EXTS_GOTO(ctx, type_p->exts, (*type)->exts, (*type), LYEXT_PAR_TYPE, ret, cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01003146
3147cleanup:
3148 ly_set_erase(&tpdf_chain, free);
3149 return ret;
3150}
3151
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003152/**
3153 * @brief Compile status information of the given node.
3154 *
3155 * To simplify getting status of the node, the flags are set following inheritance rules, so all the nodes
3156 * has the status correctly set during the compilation.
3157 *
3158 * @param[in] ctx Compile context
3159 * @param[in,out] node_flags Flags of the compiled node which status is supposed to be resolved.
3160 * If the status was set explicitly on the node, it is already set in the flags value and we just check
3161 * the compatibility with the parent's status value.
3162 * @param[in] parent_flags Flags of the parent node to check/inherit the status value.
3163 * @return LY_ERR value.
3164 */
3165static LY_ERR
3166lys_compile_status(struct lysc_ctx *ctx, uint16_t *node_flags, uint16_t parent_flags)
3167{
3168 /* status - it is not inherited by specification, but it does not make sense to have
3169 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
3170 if (!((*node_flags) & LYS_STATUS_MASK)) {
3171 if (parent_flags & (LYS_STATUS_DEPRC | LYS_STATUS_OBSLT)) {
3172 if ((parent_flags & 0x3) != 0x3) {
3173 /* do not print the warning when inheriting status from uses - the uses_status value has a special
3174 * combination of bits (0x3) which marks the uses_status value */
3175 LOGWRN(ctx->ctx, "Missing explicit \"%s\" status that was already specified in parent, inheriting.",
Radek Krejci0f969882020-08-21 16:56:47 +02003176 (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003177 }
3178 (*node_flags) |= parent_flags & LYS_STATUS_MASK;
3179 } else {
3180 (*node_flags) |= LYS_STATUS_CURR;
3181 }
3182 } else if (parent_flags & LYS_STATUS_MASK) {
3183 /* check status compatibility with the parent */
3184 if ((parent_flags & LYS_STATUS_MASK) > ((*node_flags) & LYS_STATUS_MASK)) {
3185 if ((*node_flags) & LYS_STATUS_CURR) {
3186 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3187 "A \"current\" status is in conflict with the parent's \"%s\" status.",
Radek Krejci0f969882020-08-21 16:56:47 +02003188 (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003189 } else { /* LYS_STATUS_DEPRC */
3190 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3191 "A \"deprecated\" status is in conflict with the parent's \"obsolete\" status.");
3192 }
3193 return LY_EVALID;
3194 }
3195 }
3196 return LY_SUCCESS;
3197}
3198
Radek Krejci8cce8532019-03-05 11:27:45 +01003199/**
3200 * @brief Check uniqness of the node/action/notification name.
3201 *
3202 * Data nodes, actions/RPCs and Notifications are stored separately (in distinguish lists) in the schema
3203 * structures, but they share the namespace so we need to check their name collisions.
3204 *
3205 * @param[in] ctx Compile context.
Michal Vasko20424b42020-08-31 12:29:38 +02003206 * @param[in] parent Parent of the nodes to check, can be NULL.
Radek Krejci8cce8532019-03-05 11:27:45 +01003207 * @param[in] name Name of the item to find in the given lists.
Michal Vasko20424b42020-08-31 12:29:38 +02003208 * @param[in] exclude Node that was just added that should be excluded from the name checking.
Radek Krejci8cce8532019-03-05 11:27:45 +01003209 * @return LY_SUCCESS in case of unique name, LY_EEXIST otherwise.
3210 */
3211static LY_ERR
Michal Vasko20424b42020-08-31 12:29:38 +02003212lys_compile_node_uniqness(struct lysc_ctx *ctx, const struct lysc_node *parent, const char *name,
3213 const struct lysc_node *exclude)
Radek Krejci8cce8532019-03-05 11:27:45 +01003214{
Michal Vasko20424b42020-08-31 12:29:38 +02003215 const struct lysc_node *iter, *iter2;
3216 const struct lysc_action *actions;
3217 const struct lysc_notif *notifs;
3218 uint32_t getnext_flags;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003219 LY_ARRAY_COUNT_TYPE u;
Radek Krejci8cce8532019-03-05 11:27:45 +01003220
Michal Vasko20424b42020-08-31 12:29:38 +02003221#define CHECK_NODE(iter, exclude, name) (iter != (void *)exclude && (iter)->module == exclude->module && !strcmp(name, (iter)->name))
3222
3223 if (exclude->nodetype == LYS_CASE) {
3224 /* check restricted only to all the cases */
3225 assert(parent->nodetype == LYS_CHOICE);
3226 LY_LIST_FOR(lysc_node_children(parent, 0), iter) {
3227 if (CHECK_NODE(iter, exclude, name)) {
3228 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, name, "case");
3229 return LY_EEXIST;
3230 }
3231 }
3232
3233 return LY_SUCCESS;
3234 }
3235
3236 /* no reason for our parent to be choice anymore */
3237 assert(!parent || (parent->nodetype != LYS_CHOICE));
3238
3239 if (parent && (parent->nodetype == LYS_CASE)) {
3240 /* move to the first data definition parent */
3241 parent = lysc_data_parent(parent);
3242 }
3243
3244 getnext_flags = LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCHOICE;
3245 if (parent && (parent->nodetype & (LYS_RPC | LYS_ACTION)) && (exclude->flags & LYS_CONFIG_R)) {
3246 getnext_flags |= LYS_GETNEXT_OUTPUT;
3247 }
3248
3249 iter = NULL;
3250 while ((iter = lys_getnext(iter, parent, ctx->mod->compiled, getnext_flags))) {
3251 if (CHECK_NODE(iter, exclude, name)) {
Radek Krejci8cce8532019-03-05 11:27:45 +01003252 goto error;
3253 }
Michal Vasko20424b42020-08-31 12:29:38 +02003254
3255 /* we must compare with both the choice and all its nested data-definiition nodes (but not recursively) */
3256 if (iter->nodetype == LYS_CHOICE) {
3257 iter2 = NULL;
3258 while ((iter2 = lys_getnext(iter2, iter, NULL, LYS_GETNEXT_NOSTATECHECK))) {
3259 if (CHECK_NODE(iter2, exclude, name)) {
3260 goto error;
3261 }
3262 }
3263 }
Radek Krejci8cce8532019-03-05 11:27:45 +01003264 }
Michal Vasko20424b42020-08-31 12:29:38 +02003265
3266 actions = parent ? lysc_node_actions(parent) : ctx->mod->compiled->rpcs;
Radek Krejci8cce8532019-03-05 11:27:45 +01003267 LY_ARRAY_FOR(actions, u) {
Michal Vasko20424b42020-08-31 12:29:38 +02003268 if (CHECK_NODE(&actions[u], exclude, name)) {
Radek Krejci8cce8532019-03-05 11:27:45 +01003269 goto error;
3270 }
3271 }
Michal Vasko20424b42020-08-31 12:29:38 +02003272
3273 notifs = parent ? lysc_node_notifs(parent) : ctx->mod->compiled->notifs;
Radek Krejci8cce8532019-03-05 11:27:45 +01003274 LY_ARRAY_FOR(notifs, u) {
Michal Vasko20424b42020-08-31 12:29:38 +02003275 if (CHECK_NODE(&notifs[u], exclude, name)) {
Radek Krejci8cce8532019-03-05 11:27:45 +01003276 goto error;
3277 }
3278 }
3279 return LY_SUCCESS;
Michal Vasko20424b42020-08-31 12:29:38 +02003280
Radek Krejci8cce8532019-03-05 11:27:45 +01003281error:
Michal Vaskoa3881362020-01-21 15:57:35 +01003282 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, name, "data definition/RPC/action/notification");
Radek Krejci8cce8532019-03-05 11:27:45 +01003283 return LY_EEXIST;
Michal Vasko20424b42020-08-31 12:29:38 +02003284
3285#undef CHECK_NODE
Radek Krejci8cce8532019-03-05 11:27:45 +01003286}
3287
Michal Vasko7f45cf22020-10-01 12:49:44 +02003288static LY_ERR lys_compile_node(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *parent,
3289 uint16_t uses_status, struct ly_set *child_set);
3290
3291static LY_ERR lys_compile_node_deviations_refines(struct lysc_ctx *ctx, const struct lysp_node *pnode,
3292 const struct lysc_node *parent, struct lysp_node **dev_pnode, ly_bool *not_supported);
3293
3294static LY_ERR lys_compile_node_augments(struct lysc_ctx *ctx, struct lysc_node *node);
3295
3296static void lysp_dev_node_free(const struct ly_ctx *ctx, struct lysp_node *dev_pnode);
Radek Krejci19a96102018-11-15 13:38:09 +01003297
Radek Krejcia3045382018-11-22 14:30:31 +01003298/**
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003299 * @brief Compile parsed RPC/action schema node information.
3300 * @param[in] ctx Compile context
Radek Krejci43981a32019-04-12 09:44:11 +02003301 * @param[in] action_p Parsed RPC/action schema node.
Radek Krejci43981a32019-04-12 09:44:11 +02003302 * @param[in] parent Parent node of the action, NULL in case of RPC (top-level action)
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003303 * @param[in,out] action Prepared (empty) compiled action structure to fill.
3304 * @param[in] uses_status If the RPC/action is being placed instead of uses, here we have the uses's status value (as node's flags).
3305 * Zero means no uses, non-zero value with no status bit set mean the default status.
Michal Vasko7f45cf22020-10-01 12:49:44 +02003306 * @return LY_SUCCESS on success,
3307 * @return LY_EVALID on validation error,
3308 * @return LY_EDENIED on not-supported deviation.
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003309 */
3310static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003311lys_compile_action(struct lysc_ctx *ctx, struct lysp_action *action_p,
Radek Krejci0f969882020-08-21 16:56:47 +02003312 struct lysc_node *parent, struct lysc_action *action, uint16_t uses_status)
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003313{
3314 LY_ERR ret = LY_SUCCESS;
Michal Vasko7f45cf22020-10-01 12:49:44 +02003315 struct lysp_node *child_p, *dev_pnode = NULL, *dev_input_p = NULL, *dev_output_p = NULL;
3316 struct lysp_action *orig_action_p = action_p;
3317 struct lysp_action_inout *inout_p;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003318 LY_ARRAY_COUNT_TYPE u;
Michal Vasko7f45cf22020-10-01 12:49:44 +02003319 ly_bool not_supported;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003320 uint32_t opt_prev = ctx->options;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003321
Radek Krejci327de162019-06-14 12:52:07 +02003322 lysc_update_path(ctx, parent, action_p->name);
3323
Michal Vasko7f45cf22020-10-01 12:49:44 +02003324 /* apply deviation on the action/RPC */
3325 LY_CHECK_RET(lys_compile_node_deviations_refines(ctx, (struct lysp_node *)action_p, parent, &dev_pnode, &not_supported));
3326 if (not_supported) {
3327 lysc_update_path(ctx, NULL, NULL);
3328 return LY_EDENIED;
3329 } else if (dev_pnode) {
3330 action_p = (struct lysp_action *)dev_pnode;
3331 }
3332
Michal Vasko20424b42020-08-31 12:29:38 +02003333 /* member needed for uniqueness check lys_getnext() */
3334 action->nodetype = parent ? LYS_ACTION : LYS_RPC;
3335 action->module = ctx->mod;
3336 action->parent = parent;
3337
3338 LY_CHECK_RET(lys_compile_node_uniqness(ctx, parent, action_p->name, (struct lysc_node *)action));
Radek Krejci8cce8532019-03-05 11:27:45 +01003339
Radek Krejciec4da802019-05-02 13:02:41 +02003340 if (ctx->options & (LYSC_OPT_RPC_MASK | LYSC_OPT_NOTIFICATION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +01003341 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejcifc11bd72019-04-11 16:00:05 +02003342 "Action \"%s\" is placed inside %s.", action_p->name,
Michal Vaskoa3881362020-01-21 15:57:35 +01003343 ctx->options & LYSC_OPT_RPC_MASK ? "another RPC/action" : "notification");
Radek Krejci05b774b2019-02-25 13:26:18 +01003344 return LY_EVALID;
3345 }
3346
Radek Krejciec4da802019-05-02 13:02:41 +02003347 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02003348 action->sp = orig_action_p;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003349 }
3350 action->flags = action_p->flags & LYS_FLAGS_COMPILED_MASK;
3351
3352 /* status - it is not inherited by specification, but it does not make sense to have
3353 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
Michal Vaskocc048b22020-03-27 15:52:38 +01003354 LY_CHECK_RET(lys_compile_status(ctx, &action->flags, uses_status ? uses_status : (parent ? parent->flags : 0)));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003355
Radek Krejci011e4aa2020-09-04 15:22:31 +02003356 DUP_STRING_GOTO(ctx->ctx, action_p->name, action->name, ret, cleanup);
3357 DUP_STRING_GOTO(ctx->ctx, action_p->dsc, action->dsc, ret, cleanup);
3358 DUP_STRING_GOTO(ctx->ctx, action_p->ref, action->ref, ret, cleanup);
Radek Krejciec4da802019-05-02 13:02:41 +02003359 COMPILE_ARRAY_GOTO(ctx, action_p->iffeatures, action->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejci0935f412019-08-20 16:15:18 +02003360 COMPILE_EXTS_GOTO(ctx, action_p->exts, action->exts, action, LYEXT_PAR_NODE, ret, cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003361
Michal Vasko7f45cf22020-10-01 12:49:44 +02003362 /* connect any action augments */
3363 LY_CHECK_RET(lys_compile_node_augments(ctx, (struct lysc_node *)action));
3364
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003365 /* input */
Michal Vasko22df3f02020-08-24 13:29:22 +02003366 lysc_update_path(ctx, (struct lysc_node *)action, "input");
Michal Vasko7f45cf22020-10-01 12:49:44 +02003367
3368 /* apply deviations on input */
3369 LY_CHECK_RET(lys_compile_node_deviations_refines(ctx, (struct lysp_node *)&action_p->input, (struct lysc_node *)action,
3370 &dev_input_p, &not_supported));
3371 if (not_supported) {
3372 inout_p = NULL;
3373 } else if (dev_input_p) {
3374 inout_p = (struct lysp_action_inout *)dev_input_p;
3375 } else {
3376 inout_p = &action_p->input;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003377 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02003378
3379 if (inout_p) {
3380 action->input.nodetype = LYS_INPUT;
3381 COMPILE_ARRAY_GOTO(ctx, inout_p->musts, action->input.musts, u, lys_compile_must, ret, cleanup);
3382 COMPILE_EXTS_GOTO(ctx, inout_p->exts, action->input_exts, &action->input, LYEXT_PAR_INPUT, ret, cleanup);
3383 ctx->options |= LYSC_OPT_RPC_INPUT;
3384
3385 /* connect any input augments */
3386 LY_CHECK_RET(lys_compile_node_augments(ctx, (struct lysc_node *)&action->input));
3387
3388 LY_LIST_FOR(inout_p->data, child_p) {
3389 LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node *)action, uses_status, NULL));
3390 }
3391 ctx->options = opt_prev;
3392 }
3393
Radek Krejci327de162019-06-14 12:52:07 +02003394 lysc_update_path(ctx, NULL, NULL);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003395
3396 /* output */
Michal Vasko22df3f02020-08-24 13:29:22 +02003397 lysc_update_path(ctx, (struct lysc_node *)action, "output");
Michal Vasko7f45cf22020-10-01 12:49:44 +02003398
3399 /* apply deviations on output */
3400 LY_CHECK_RET(lys_compile_node_deviations_refines(ctx, (struct lysp_node *)&action_p->output, (struct lysc_node *)action,
3401 &dev_output_p, &not_supported));
3402 if (not_supported) {
3403 inout_p = NULL;
3404 } else if (dev_output_p) {
3405 inout_p = (struct lysp_action_inout *)dev_output_p;
3406 } else {
3407 inout_p = &action_p->output;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003408 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02003409
3410 if (inout_p) {
3411 action->output.nodetype = LYS_OUTPUT;
3412 COMPILE_ARRAY_GOTO(ctx, inout_p->musts, action->output.musts, u, lys_compile_must, ret, cleanup);
3413 COMPILE_EXTS_GOTO(ctx, inout_p->exts, action->output_exts, &action->output, LYEXT_PAR_OUTPUT, ret, cleanup);
3414 ctx->options |= LYSC_OPT_RPC_OUTPUT;
3415
3416 /* connect any output augments */
3417 LY_CHECK_RET(lys_compile_node_augments(ctx, (struct lysc_node *)&action->output));
3418
3419 LY_LIST_FOR(inout_p->data, child_p) {
3420 LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node *)action, uses_status, NULL));
3421 }
3422 ctx->options = opt_prev;
3423 }
3424
Radek Krejci327de162019-06-14 12:52:07 +02003425 lysc_update_path(ctx, NULL, NULL);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003426
Michal Vasko7f45cf22020-10-01 12:49:44 +02003427 if ((action->input.musts || action->output.musts) && !(ctx->options & LYSC_OPT_GROUPING)) {
Michal Vasko5d8756a2019-11-07 15:21:00 +01003428 /* do not check "must" semantics in a grouping */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003429 ret = ly_set_add(&ctx->xpath, action, 0, NULL);
3430 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003431 }
3432
Michal Vasko7f45cf22020-10-01 12:49:44 +02003433 lysc_update_path(ctx, NULL, NULL);
3434
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003435cleanup:
Michal Vasko7f45cf22020-10-01 12:49:44 +02003436 lysp_dev_node_free(ctx->ctx, dev_pnode);
3437 lysp_dev_node_free(ctx->ctx, dev_input_p);
3438 lysp_dev_node_free(ctx->ctx, dev_output_p);
Radek Krejciec4da802019-05-02 13:02:41 +02003439 ctx->options = opt_prev;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003440 return ret;
3441}
3442
3443/**
Radek Krejci43981a32019-04-12 09:44:11 +02003444 * @brief Compile parsed Notification schema node information.
Radek Krejcifc11bd72019-04-11 16:00:05 +02003445 * @param[in] ctx Compile context
Radek Krejci43981a32019-04-12 09:44:11 +02003446 * @param[in] notif_p Parsed Notification schema node.
Radek Krejci43981a32019-04-12 09:44:11 +02003447 * @param[in] parent Parent node of the Notification, NULL in case of top-level Notification
3448 * @param[in,out] notif Prepared (empty) compiled notification structure to fill.
3449 * @param[in] uses_status If the Notification is being placed instead of uses, here we have the uses's status value (as node's flags).
Radek Krejcifc11bd72019-04-11 16:00:05 +02003450 * Zero means no uses, non-zero value with no status bit set mean the default status.
Michal Vasko7f45cf22020-10-01 12:49:44 +02003451 * @return LY_SUCCESS on success,
3452 * @return LY_EVALID on validation error,
3453 * @return LY_EDENIED on not-supported deviation.
Radek Krejcifc11bd72019-04-11 16:00:05 +02003454 */
3455static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003456lys_compile_notif(struct lysc_ctx *ctx, struct lysp_notif *notif_p,
Radek Krejci0f969882020-08-21 16:56:47 +02003457 struct lysc_node *parent, struct lysc_notif *notif, uint16_t uses_status)
Radek Krejcifc11bd72019-04-11 16:00:05 +02003458{
3459 LY_ERR ret = LY_SUCCESS;
Michal Vasko7f45cf22020-10-01 12:49:44 +02003460 struct lysp_node *child_p, *dev_pnode = NULL;
3461 struct lysp_notif *orig_notif_p = notif_p;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003462 LY_ARRAY_COUNT_TYPE u;
Michal Vasko7f45cf22020-10-01 12:49:44 +02003463 ly_bool not_supported;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003464 uint32_t opt_prev = ctx->options;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003465
Radek Krejci327de162019-06-14 12:52:07 +02003466 lysc_update_path(ctx, parent, notif_p->name);
3467
Michal Vasko7f45cf22020-10-01 12:49:44 +02003468 LY_CHECK_RET(lys_compile_node_deviations_refines(ctx, (struct lysp_node *)notif_p, parent, &dev_pnode, &not_supported));
3469 if (not_supported) {
3470 lysc_update_path(ctx, NULL, NULL);
3471 return LY_EDENIED;
3472 } else if (dev_pnode) {
3473 notif_p = (struct lysp_notif *)dev_pnode;
3474 }
3475
Michal Vasko20424b42020-08-31 12:29:38 +02003476 /* member needed for uniqueness check lys_getnext() */
3477 notif->nodetype = LYS_NOTIF;
3478 notif->module = ctx->mod;
3479 notif->parent = parent;
3480
3481 LY_CHECK_RET(lys_compile_node_uniqness(ctx, parent, notif_p->name, (struct lysc_node *)notif));
Radek Krejcifc11bd72019-04-11 16:00:05 +02003482
Radek Krejciec4da802019-05-02 13:02:41 +02003483 if (ctx->options & (LYSC_OPT_RPC_MASK | LYSC_OPT_NOTIFICATION)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02003484 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3485 "Notification \"%s\" is placed inside %s.", notif_p->name,
Michal Vaskoa3881362020-01-21 15:57:35 +01003486 ctx->options & LYSC_OPT_RPC_MASK ? "RPC/action" : "another notification");
Radek Krejcifc11bd72019-04-11 16:00:05 +02003487 return LY_EVALID;
3488 }
3489
Radek Krejciec4da802019-05-02 13:02:41 +02003490 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02003491 notif->sp = orig_notif_p;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003492 }
3493 notif->flags = notif_p->flags & LYS_FLAGS_COMPILED_MASK;
3494
3495 /* status - it is not inherited by specification, but it does not make sense to have
3496 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003497 ret = lys_compile_status(ctx, &notif->flags, uses_status ? uses_status : (parent ? parent->flags : 0));
3498 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02003499
Radek Krejci011e4aa2020-09-04 15:22:31 +02003500 DUP_STRING_GOTO(ctx->ctx, notif_p->name, notif->name, ret, cleanup);
3501 DUP_STRING_GOTO(ctx->ctx, notif_p->dsc, notif->dsc, ret, cleanup);
3502 DUP_STRING_GOTO(ctx->ctx, notif_p->ref, notif->ref, ret, cleanup);
Radek Krejciec4da802019-05-02 13:02:41 +02003503 COMPILE_ARRAY_GOTO(ctx, notif_p->iffeatures, notif->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003504 COMPILE_ARRAY_GOTO(ctx, notif_p->musts, notif->musts, u, lys_compile_must, ret, cleanup);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003505 if (notif_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3506 /* do not check "must" semantics in a grouping */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003507 ret = ly_set_add(&ctx->xpath, notif, 0, NULL);
3508 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003509 }
Radek Krejci0935f412019-08-20 16:15:18 +02003510 COMPILE_EXTS_GOTO(ctx, notif_p->exts, notif->exts, notif, LYEXT_PAR_NODE, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02003511
Radek Krejciec4da802019-05-02 13:02:41 +02003512 ctx->options |= LYSC_OPT_NOTIFICATION;
Michal Vasko7f45cf22020-10-01 12:49:44 +02003513
3514 /* connect any notification augments */
3515 LY_CHECK_RET(lys_compile_node_augments(ctx, (struct lysc_node *)notif));
3516
Radek Krejcifc11bd72019-04-11 16:00:05 +02003517 LY_LIST_FOR(notif_p->data, child_p) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02003518 ret = lys_compile_node(ctx, child_p, (struct lysc_node *)notif, uses_status, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003519 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02003520 }
3521
Radek Krejci327de162019-06-14 12:52:07 +02003522 lysc_update_path(ctx, NULL, NULL);
Michal Vasko7f45cf22020-10-01 12:49:44 +02003523
Radek Krejcifc11bd72019-04-11 16:00:05 +02003524cleanup:
Michal Vasko7f45cf22020-10-01 12:49:44 +02003525 lysp_dev_node_free(ctx->ctx, dev_pnode);
Radek Krejciec4da802019-05-02 13:02:41 +02003526 ctx->options = opt_prev;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003527 return ret;
3528}
3529
3530/**
Radek Krejcia3045382018-11-22 14:30:31 +01003531 * @brief Compile parsed container node information.
3532 * @param[in] ctx Compile context
Michal Vasko7f45cf22020-10-01 12:49:44 +02003533 * @param[in] pnode Parsed container node.
Radek Krejcia3045382018-11-22 14:30:31 +01003534 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3535 * is enriched with the container-specific information.
3536 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3537 */
Radek Krejci19a96102018-11-15 13:38:09 +01003538static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02003539lys_compile_node_container(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node)
Radek Krejci19a96102018-11-15 13:38:09 +01003540{
Michal Vasko7f45cf22020-10-01 12:49:44 +02003541 struct lysp_node_container *cont_p = (struct lysp_node_container *)pnode;
Michal Vasko22df3f02020-08-24 13:29:22 +02003542 struct lysc_node_container *cont = (struct lysc_node_container *)node;
Radek Krejci19a96102018-11-15 13:38:09 +01003543 struct lysp_node *child_p;
Michal Vaskoba417ac2020-08-06 14:48:20 +02003544 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01003545 LY_ERR ret = LY_SUCCESS;
3546
Radek Krejcife909632019-02-12 15:34:42 +01003547 if (cont_p->presence) {
Michal Vaskoba417ac2020-08-06 14:48:20 +02003548 /* explicit presence */
Radek Krejcife909632019-02-12 15:34:42 +01003549 cont->flags |= LYS_PRESENCE;
Michal Vaskoba417ac2020-08-06 14:48:20 +02003550 } else if (cont_p->musts) {
3551 /* container with a must condition */
Radek Krejci175f25b2020-08-13 12:02:36 +02003552 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"must\" condition.", cont_p->name);
3553 cont->flags |= LYS_PRESENCE;
3554 } else if (cont_p->when) {
3555 /* container with a when condition */
3556 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"when\" condition.", cont_p->name);
Michal Vaskoba417ac2020-08-06 14:48:20 +02003557 cont->flags |= LYS_PRESENCE;
3558 } else if (cont_p->parent) {
3559 if (cont_p->parent->nodetype == LYS_CHOICE) {
3560 /* container is an implicit case, so its existence decides the existence of the whole case */
Radek Krejci175f25b2020-08-13 12:02:36 +02003561 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning as a case of choice \"%s\".",
Michal Vaskoba417ac2020-08-06 14:48:20 +02003562 cont_p->name, cont_p->parent->name);
3563 cont->flags |= LYS_PRESENCE;
3564 } else if ((cont_p->parent->nodetype == LYS_CASE)
Michal Vasko7f45cf22020-10-01 12:49:44 +02003565 && (((struct lysp_node_case *)cont_p->parent)->child == pnode) && !cont_p->next) {
Michal Vaskoba417ac2020-08-06 14:48:20 +02003566 /* container is the only node in a case, so its existence decides the existence of the whole case */
Radek Krejci175f25b2020-08-13 12:02:36 +02003567 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning as a case of choice \"%s\".",
Michal Vaskoba417ac2020-08-06 14:48:20 +02003568 cont_p->name, cont_p->parent->name);
3569 cont->flags |= LYS_PRESENCE;
3570 }
Radek Krejcife909632019-02-12 15:34:42 +01003571 }
3572
Michal Vaskoba417ac2020-08-06 14:48:20 +02003573 /* more cases when the container has meaning but is kept NP for convenience:
3574 * - when condition
3575 * - direct child action/notification
3576 */
3577
Radek Krejci19a96102018-11-15 13:38:09 +01003578 LY_LIST_FOR(cont_p->child, child_p) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02003579 ret = lys_compile_node(ctx, child_p, node, 0, NULL);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003580 LY_CHECK_GOTO(ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +01003581 }
3582
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003583 COMPILE_ARRAY_GOTO(ctx, cont_p->musts, cont->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003584 if (cont_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3585 /* do not check "must" semantics in a grouping */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003586 ret = ly_set_add(&ctx->xpath, cont, 0, NULL);
3587 LY_CHECK_GOTO(ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003588 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02003589 COMPILE_OP_ARRAY_GOTO(ctx, cont_p->actions, cont->actions, node, u, lys_compile_action, 0, ret, done);
3590 COMPILE_OP_ARRAY_GOTO(ctx, cont_p->notifs, cont->notifs, node, u, lys_compile_notif, 0, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +01003591
3592done:
3593 return ret;
3594}
3595
Radek Krejci33f72892019-02-21 10:36:58 +01003596/*
3597 * @brief Compile type in leaf/leaf-list node and do all the necessary checks.
3598 * @param[in] ctx Compile context.
3599 * @param[in] context_node Schema node where the type/typedef is placed to correctly find the base types.
3600 * @param[in] type_p Parsed type to compile.
Radek Krejci33f72892019-02-21 10:36:58 +01003601 * @param[in,out] leaf Compiled leaf structure (possibly cast leaf-list) to provide node information and to store the compiled type information.
3602 * @return LY_ERR value.
3603 */
3604static LY_ERR
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003605lys_compile_node_type(struct lysc_ctx *ctx, struct lysp_node *context_node, struct lysp_type *type_p,
Radek Krejci0f969882020-08-21 16:56:47 +02003606 struct lysc_node_leaf *leaf)
Radek Krejci33f72892019-02-21 10:36:58 +01003607{
Michal Vasko7f45cf22020-10-01 12:49:44 +02003608 struct lysp_qname *dflt;
Radek Krejci33f72892019-02-21 10:36:58 +01003609
Radek Krejciec4da802019-05-02 13:02:41 +02003610 LY_CHECK_RET(lys_compile_type(ctx, context_node, leaf->flags, ctx->mod_def->parsed, leaf->name, type_p, &leaf->type,
Michal Vasko7f45cf22020-10-01 12:49:44 +02003611 leaf->units ? NULL : &leaf->units, &dflt));
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003612
3613 /* store default value, if any */
3614 if (dflt && !(leaf->flags & LYS_SET_DFLT)) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02003615 LY_CHECK_RET(lysc_unres_leaf_dflt_add(ctx, leaf, dflt));
Radek Krejci33f72892019-02-21 10:36:58 +01003616 }
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003617
Radek Krejci33f72892019-02-21 10:36:58 +01003618 if (leaf->type->basetype == LY_TYPE_LEAFREF) {
3619 /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003620 LY_CHECK_RET(ly_set_add(&ctx->leafrefs, leaf, 0, NULL));
Radek Krejci33f72892019-02-21 10:36:58 +01003621 } else if (leaf->type->basetype == LY_TYPE_UNION) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003622 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003623 LY_ARRAY_FOR(((struct lysc_type_union *)leaf->type)->types, u) {
3624 if (((struct lysc_type_union *)leaf->type)->types[u]->basetype == LY_TYPE_LEAFREF) {
Radek Krejci33f72892019-02-21 10:36:58 +01003625 /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003626 LY_CHECK_RET(ly_set_add(&ctx->leafrefs, leaf, 0, NULL));
Radek Krejci33f72892019-02-21 10:36:58 +01003627 }
3628 }
3629 } else if (leaf->type->basetype == LY_TYPE_EMPTY) {
Radek Krejci33f72892019-02-21 10:36:58 +01003630 if (leaf->nodetype == LYS_LEAFLIST && ctx->mod_def->version < LYS_VERSION_1_1) {
3631 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3632 "Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules.");
3633 return LY_EVALID;
3634 }
3635 }
3636
Radek Krejci33f72892019-02-21 10:36:58 +01003637 return LY_SUCCESS;
3638}
3639
Radek Krejcia3045382018-11-22 14:30:31 +01003640/**
3641 * @brief Compile parsed leaf node information.
3642 * @param[in] ctx Compile context
Michal Vasko7f45cf22020-10-01 12:49:44 +02003643 * @param[in] pnode Parsed leaf node.
Radek Krejcia3045382018-11-22 14:30:31 +01003644 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3645 * is enriched with the leaf-specific information.
3646 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3647 */
Radek Krejci19a96102018-11-15 13:38:09 +01003648static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02003649lys_compile_node_leaf(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node)
Radek Krejci19a96102018-11-15 13:38:09 +01003650{
Michal Vasko7f45cf22020-10-01 12:49:44 +02003651 struct lysp_node_leaf *leaf_p = (struct lysp_node_leaf *)pnode;
Michal Vasko22df3f02020-08-24 13:29:22 +02003652 struct lysc_node_leaf *leaf = (struct lysc_node_leaf *)node;
Michal Vasko7c8439f2020-08-05 13:25:19 +02003653 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01003654 LY_ERR ret = LY_SUCCESS;
3655
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003656 COMPILE_ARRAY_GOTO(ctx, leaf_p->musts, leaf->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003657 if (leaf_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3658 /* do not check "must" semantics in a grouping */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003659 ret = ly_set_add(&ctx->xpath, leaf, 0, NULL);
3660 LY_CHECK_GOTO(ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003661 }
Radek Krejciccd20f12019-02-15 14:12:27 +01003662 if (leaf_p->units) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02003663 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, leaf_p->units, 0, &leaf->units), done);
Radek Krejciccd20f12019-02-15 14:12:27 +01003664 leaf->flags |= LYS_SET_UNITS;
3665 }
Radek Krejcia1911222019-07-22 17:24:50 +02003666
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003667 /* compile type */
Michal Vasko7f45cf22020-10-01 12:49:44 +02003668 ret = lys_compile_node_type(ctx, pnode, &leaf_p->type, leaf);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003669 LY_CHECK_GOTO(ret, done);
Radek Krejcia1911222019-07-22 17:24:50 +02003670
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003671 /* store/update default value */
Michal Vasko7f45cf22020-10-01 12:49:44 +02003672 if (leaf_p->dflt.str) {
3673 LY_CHECK_RET(lysc_unres_leaf_dflt_add(ctx, leaf, &leaf_p->dflt));
Radek Krejci76b3e962018-12-14 17:01:25 +01003674 leaf->flags |= LYS_SET_DFLT;
3675 }
Radek Krejci43699232018-11-23 14:59:46 +01003676
Michal Vasko7f45cf22020-10-01 12:49:44 +02003677 /* checks */
3678 if ((leaf->flags & LYS_SET_DFLT) && (leaf->flags & LYS_MAND_TRUE)) {
3679 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3680 "Invalid mandatory leaf with a default value.");
3681 return LY_EVALID;
3682 }
3683
Radek Krejci19a96102018-11-15 13:38:09 +01003684done:
3685 return ret;
3686}
3687
Radek Krejcia3045382018-11-22 14:30:31 +01003688/**
Radek Krejci0e5d8382018-11-28 16:37:53 +01003689 * @brief Compile parsed leaf-list node information.
3690 * @param[in] ctx Compile context
Michal Vasko7f45cf22020-10-01 12:49:44 +02003691 * @param[in] pnode Parsed leaf-list node.
Radek Krejci0e5d8382018-11-28 16:37:53 +01003692 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3693 * is enriched with the leaf-list-specific information.
3694 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3695 */
3696static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02003697lys_compile_node_leaflist(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node)
Radek Krejci0e5d8382018-11-28 16:37:53 +01003698{
Michal Vasko7f45cf22020-10-01 12:49:44 +02003699 struct lysp_node_leaflist *llist_p = (struct lysp_node_leaflist *)pnode;
Michal Vasko22df3f02020-08-24 13:29:22 +02003700 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist *)node;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003701 LY_ARRAY_COUNT_TYPE u;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003702 LY_ERR ret = LY_SUCCESS;
3703
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003704 COMPILE_ARRAY_GOTO(ctx, llist_p->musts, llist->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003705 if (llist_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3706 /* do not check "must" semantics in a grouping */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003707 ret = ly_set_add(&ctx->xpath, llist, 0, NULL);
3708 LY_CHECK_GOTO(ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003709 }
Radek Krejciccd20f12019-02-15 14:12:27 +01003710 if (llist_p->units) {
Radek Krejci011e4aa2020-09-04 15:22:31 +02003711 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, llist_p->units, 0, &llist->units), done);
Radek Krejciccd20f12019-02-15 14:12:27 +01003712 llist->flags |= LYS_SET_UNITS;
3713 }
Radek Krejci0e5d8382018-11-28 16:37:53 +01003714
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003715 /* compile type */
Michal Vasko7f45cf22020-10-01 12:49:44 +02003716 ret = lys_compile_node_type(ctx, pnode, &llist_p->type, (struct lysc_node_leaf *)llist);
Radek Krejciba03a5a2020-08-27 14:40:41 +02003717 LY_CHECK_GOTO(ret, done);
Michal Vasko6a044b22020-01-15 12:25:39 +01003718
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003719 /* store/update default values */
Radek Krejci0e5d8382018-11-28 16:37:53 +01003720 if (llist_p->dflts) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02003721 if (ctx->mod_def->version < LYS_VERSION_1_1) {
3722 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3723 "Leaf-list default values are allowed only in YANG 1.1 modules.");
3724 return LY_EVALID;
3725 }
3726
3727 LY_CHECK_GOTO(lysc_unres_llist_dflts_add(ctx, llist, llist_p->dflts), done);
Radek Krejciccd20f12019-02-15 14:12:27 +01003728 llist->flags |= LYS_SET_DFLT;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003729 }
3730
3731 llist->min = llist_p->min;
Radek Krejcife909632019-02-12 15:34:42 +01003732 if (llist->min) {
3733 llist->flags |= LYS_MAND_TRUE;
3734 }
Radek Krejcib7408632018-11-28 17:12:11 +01003735 llist->max = llist_p->max ? llist_p->max : (uint32_t)-1;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003736
Michal Vasko7f45cf22020-10-01 12:49:44 +02003737 /* checks */
3738 if ((llist->flags & LYS_SET_DFLT) && (llist->flags & LYS_MAND_TRUE)) {
3739 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3740 "Invalid mandatory leaf-list with default value(s).");
3741 return LY_EVALID;
3742 }
3743
3744 if (llist->min > llist->max) {
3745 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Leaf-list min-elements %u is bigger than max-elements %u.",
3746 llist->min, llist->max);
3747 return LY_EVALID;
3748 }
3749
Radek Krejci0e5d8382018-11-28 16:37:53 +01003750done:
3751 return ret;
3752}
3753
3754/**
Radek Krejci7af64242019-02-18 13:07:53 +01003755 * @brief Compile information about list's uniques.
3756 * @param[in] ctx Compile context.
Radek Krejci7af64242019-02-18 13:07:53 +01003757 * @param[in] uniques Sized array list of unique statements.
3758 * @param[in] list Compiled list where the uniques are supposed to be resolved and stored.
3759 * @return LY_ERR value.
3760 */
3761static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02003762lys_compile_node_list_unique(struct lysc_ctx *ctx, struct lysp_qname *uniques, struct lysc_node_list *list)
Radek Krejci7af64242019-02-18 13:07:53 +01003763{
3764 LY_ERR ret = LY_SUCCESS;
3765 struct lysc_node_leaf **key, ***unique;
Michal Vasko14654712020-02-06 08:35:21 +01003766 struct lysc_node *parent;
Radek Krejci7af64242019-02-18 13:07:53 +01003767 const char *keystr, *delim;
3768 size_t len;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003769 LY_ARRAY_COUNT_TYPE v;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003770 int8_t config; /* -1 - not yet seen; 0 - LYS_CONFIG_R; 1 - LYS_CONFIG_W */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003771 uint16_t flags;
Radek Krejci7af64242019-02-18 13:07:53 +01003772
Michal Vasko7f45cf22020-10-01 12:49:44 +02003773 LY_ARRAY_FOR(uniques, v) {
Radek Krejci7af64242019-02-18 13:07:53 +01003774 config = -1;
3775 LY_ARRAY_NEW_RET(ctx->ctx, list->uniques, unique, LY_EMEM);
Michal Vasko7f45cf22020-10-01 12:49:44 +02003776 keystr = uniques[v].str;
Radek Krejci7af64242019-02-18 13:07:53 +01003777 while (keystr) {
3778 delim = strpbrk(keystr, " \t\n");
3779 if (delim) {
3780 len = delim - keystr;
3781 while (isspace(*delim)) {
3782 ++delim;
3783 }
3784 } else {
3785 len = strlen(keystr);
3786 }
3787
3788 /* unique node must be present */
3789 LY_ARRAY_NEW_RET(ctx->ctx, *unique, key, LY_EMEM);
Michal Vasko7f45cf22020-10-01 12:49:44 +02003790 ret = lysc_resolve_schema_nodeid(ctx, keystr, len, (struct lysc_node *)list, uniques[v].mod, LYS_LEAF,
Michal Vasko22df3f02020-08-24 13:29:22 +02003791 (const struct lysc_node **)key, &flags);
Radek Krejci7af64242019-02-18 13:07:53 +01003792 if (ret != LY_SUCCESS) {
3793 if (ret == LY_EDENIED) {
3794 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003795 "Unique's descendant-schema-nodeid \"%.*s\" refers to %s node instead of a leaf.",
Radek Krejci7af64242019-02-18 13:07:53 +01003796 len, keystr, lys_nodetype2str((*key)->nodetype));
3797 }
3798 return LY_EVALID;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003799 } else if (flags) {
3800 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3801 "Unique's descendant-schema-nodeid \"%.*s\" refers into %s node.",
Michal Vaskoa3881362020-01-21 15:57:35 +01003802 len, keystr, flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003803 return LY_EVALID;
Radek Krejci7af64242019-02-18 13:07:53 +01003804 }
3805
3806 /* all referenced leafs must be of the same config type */
3807 if (config != -1 && ((((*key)->flags & LYS_CONFIG_W) && config == 0) || (((*key)->flags & LYS_CONFIG_R) && config == 1))) {
3808 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vasko7f45cf22020-10-01 12:49:44 +02003809 "Unique statement \"%s\" refers to leaves with different config type.", uniques[v].str);
Radek Krejci7af64242019-02-18 13:07:53 +01003810 return LY_EVALID;
3811 } else if ((*key)->flags & LYS_CONFIG_W) {
3812 config = 1;
3813 } else { /* LYS_CONFIG_R */
3814 config = 0;
3815 }
3816
Michal Vasko14654712020-02-06 08:35:21 +01003817 /* we forbid referencing nested lists because it is unspecified what instance of such a list to use */
3818 for (parent = (*key)->parent; parent != (struct lysc_node *)list; parent = parent->parent) {
3819 if (parent->nodetype == LYS_LIST) {
3820 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vasko7f45cf22020-10-01 12:49:44 +02003821 "Unique statement \"%s\" refers to a leaf in nested list \"%s\".", uniques[v].str, parent->name);
Michal Vasko14654712020-02-06 08:35:21 +01003822 return LY_EVALID;
3823 }
3824 }
3825
Radek Krejci7af64242019-02-18 13:07:53 +01003826 /* check status */
3827 LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name,
Radek Krejci0f969882020-08-21 16:56:47 +02003828 (*key)->flags, (*key)->module, (*key)->name));
Radek Krejci7af64242019-02-18 13:07:53 +01003829
3830 /* mark leaf as unique */
3831 (*key)->flags |= LYS_UNIQUE;
3832
3833 /* next unique value in line */
3834 keystr = delim;
3835 }
3836 /* next unique definition */
3837 }
3838
3839 return LY_SUCCESS;
3840}
3841
3842/**
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003843 * @brief Compile parsed list node information.
3844 * @param[in] ctx Compile context
Michal Vasko7f45cf22020-10-01 12:49:44 +02003845 * @param[in] pnode Parsed list node.
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003846 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3847 * is enriched with the list-specific information.
3848 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3849 */
3850static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02003851lys_compile_node_list(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node)
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003852{
Michal Vasko7f45cf22020-10-01 12:49:44 +02003853 struct lysp_node_list *list_p = (struct lysp_node_list *)pnode;
Michal Vasko22df3f02020-08-24 13:29:22 +02003854 struct lysc_node_list *list = (struct lysc_node_list *)node;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003855 struct lysp_node *child_p;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003856 struct lysc_node_leaf *key, *prev_key = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003857 size_t len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02003858 LY_ARRAY_COUNT_TYPE u;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003859 const char *keystr, *delim;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003860 LY_ERR ret = LY_SUCCESS;
3861
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003862 list->min = list_p->min;
Radek Krejcife909632019-02-12 15:34:42 +01003863 if (list->min) {
3864 list->flags |= LYS_MAND_TRUE;
3865 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003866 list->max = list_p->max ? list_p->max : (uint32_t)-1;
3867
3868 LY_LIST_FOR(list_p->child, child_p) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02003869 LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0, NULL));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003870 }
3871
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003872 COMPILE_ARRAY_GOTO(ctx, list_p->musts, list->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003873 if (list_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3874 /* do not check "must" semantics in a grouping */
Radek Krejciba03a5a2020-08-27 14:40:41 +02003875 LY_CHECK_RET(ly_set_add(&ctx->xpath, list, 0, NULL));
Michal Vasko5d8756a2019-11-07 15:21:00 +01003876 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003877
3878 /* keys */
3879 if ((list->flags & LYS_CONFIG_W) && (!list_p->key || !list_p->key[0])) {
3880 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Missing key in list representing configuration data.");
3881 return LY_EVALID;
3882 }
3883
3884 /* find all the keys (must be direct children) */
3885 keystr = list_p->key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003886 if (!keystr) {
3887 /* keyless list */
3888 list->flags |= LYS_KEYLESS;
3889 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003890 while (keystr) {
3891 delim = strpbrk(keystr, " \t\n");
3892 if (delim) {
3893 len = delim - keystr;
3894 while (isspace(*delim)) {
3895 ++delim;
3896 }
3897 } else {
3898 len = strlen(keystr);
3899 }
3900
3901 /* key node must be present */
Michal Vasko22df3f02020-08-24 13:29:22 +02003902 key = (struct lysc_node_leaf *)lys_find_child(node, node->module, keystr, len, LYS_LEAF, LYS_GETNEXT_NOCHOICE | LYS_GETNEXT_NOSTATECHECK);
Radek Krejci0fe9b512019-07-26 17:51:05 +02003903 if (!(key)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003904 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3905 "The list's key \"%.*s\" not found.", len, keystr);
3906 return LY_EVALID;
3907 }
3908 /* keys must be unique */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003909 if (key->flags & LYS_KEY) {
3910 /* the node was already marked as a key */
3911 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3912 "Duplicated key identifier \"%.*s\".", len, keystr);
3913 return LY_EVALID;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003914 }
Radek Krejci0fe9b512019-07-26 17:51:05 +02003915
Michal Vasko22df3f02020-08-24 13:29:22 +02003916 lysc_update_path(ctx, (struct lysc_node *)list, key->name);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003917 /* key must have the same config flag as the list itself */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003918 if ((list->flags & LYS_CONFIG_MASK) != (key->flags & LYS_CONFIG_MASK)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003919 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Key of the configuration list must not be status leaf.");
3920 return LY_EVALID;
3921 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +01003922 if (ctx->mod_def->version < LYS_VERSION_1_1) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003923 /* YANG 1.0 denies key to be of empty type */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003924 if (key->type->basetype == LY_TYPE_EMPTY) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003925 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003926 "List's key cannot be of \"empty\" type until it is in YANG 1.1 module.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003927 return LY_EVALID;
3928 }
3929 } else {
3930 /* when and if-feature are illegal on list keys */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003931 if (key->when) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003932 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003933 "List's key must not have any \"when\" statement.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003934 return LY_EVALID;
3935 }
Radek Krejci0fe9b512019-07-26 17:51:05 +02003936 if (key->iffeatures) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003937 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003938 "List's key must not have any \"if-feature\" statement.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003939 return LY_EVALID;
3940 }
3941 }
Radek Krejci76b3e962018-12-14 17:01:25 +01003942
3943 /* check status */
3944 LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name,
Radek Krejci0fe9b512019-07-26 17:51:05 +02003945 key->flags, key->module, key->name));
Radek Krejci76b3e962018-12-14 17:01:25 +01003946
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003947 /* ignore default values of the key */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003948 if (key->dflt) {
3949 key->dflt->realtype->plugin->free(ctx->ctx, key->dflt);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02003950 lysc_type_free(ctx->ctx, (struct lysc_type *)key->dflt->realtype);
Radek Krejci0fe9b512019-07-26 17:51:05 +02003951 free(key->dflt);
3952 key->dflt = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003953 }
3954 /* mark leaf as key */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003955 key->flags |= LYS_KEY;
3956
3957 /* move it to the correct position */
Michal Vasko22df3f02020-08-24 13:29:22 +02003958 if ((prev_key && (struct lysc_node *)prev_key != key->prev) || (!prev_key && key->prev->next)) {
Radek Krejci0fe9b512019-07-26 17:51:05 +02003959 /* fix links in closest previous siblings of the key */
3960 if (key->next) {
3961 key->next->prev = key->prev;
3962 } else {
3963 /* last child */
3964 list->child->prev = key->prev;
3965 }
3966 if (key->prev->next) {
3967 key->prev->next = key->next;
3968 }
3969 /* fix links in the key */
3970 if (prev_key) {
Michal Vasko22df3f02020-08-24 13:29:22 +02003971 key->prev = (struct lysc_node *)prev_key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003972 key->next = prev_key->next;
3973 } else {
3974 key->prev = list->child->prev;
3975 key->next = list->child;
3976 }
3977 /* fix links in closes future siblings of the key */
3978 if (prev_key) {
3979 if (prev_key->next) {
Michal Vasko22df3f02020-08-24 13:29:22 +02003980 prev_key->next->prev = (struct lysc_node *)key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003981 } else {
Michal Vasko22df3f02020-08-24 13:29:22 +02003982 list->child->prev = (struct lysc_node *)key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003983 }
Michal Vasko22df3f02020-08-24 13:29:22 +02003984 prev_key->next = (struct lysc_node *)key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003985 } else {
Michal Vasko22df3f02020-08-24 13:29:22 +02003986 list->child->prev = (struct lysc_node *)key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003987 }
3988 /* fix links in parent */
3989 if (!key->prev->next) {
Michal Vasko22df3f02020-08-24 13:29:22 +02003990 list->child = (struct lysc_node *)key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003991 }
3992 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003993
3994 /* next key value */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003995 prev_key = key;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003996 keystr = delim;
Radek Krejci327de162019-06-14 12:52:07 +02003997 lysc_update_path(ctx, NULL, NULL);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003998 }
3999
4000 /* uniques */
4001 if (list_p->uniques) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004002 LY_CHECK_RET(lys_compile_node_list_unique(ctx, list_p->uniques, list));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01004003 }
4004
Michal Vasko7f45cf22020-10-01 12:49:44 +02004005 COMPILE_OP_ARRAY_GOTO(ctx, list_p->actions, list->actions, node, u, lys_compile_action, 0, ret, done);
4006 COMPILE_OP_ARRAY_GOTO(ctx, list_p->notifs, list->notifs, node, u, lys_compile_notif, 0, ret, done);
4007
4008 /* checks */
4009 if (list->min > list->max) {
4010 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "List min-elements %u is bigger than max-elements %u.",
4011 list->min, list->max);
4012 return LY_EVALID;
4013 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01004014
4015done:
4016 return ret;
4017}
4018
Radek Krejcib56c7502019-02-13 14:19:54 +01004019/**
4020 * @brief Do some checks and set the default choice's case.
4021 *
4022 * Selects (and stores into ::lysc_node_choice#dflt) the default case and set LYS_SET_DFLT flag on it.
4023 *
4024 * @param[in] ctx Compile context.
Michal Vasko7f45cf22020-10-01 12:49:44 +02004025 * @param[in] dflt Name of the default branch. Can even contain a prefix.
Radek Krejcib56c7502019-02-13 14:19:54 +01004026 * @param[in,out] ch The compiled choice node, its dflt member is filled to point to the default case node of the choice.
4027 * @return LY_ERR value.
4028 */
Radek Krejci76b3e962018-12-14 17:01:25 +01004029static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02004030lys_compile_node_choice_dflt(struct lysc_ctx *ctx, struct lysp_qname *dflt, struct lysc_node_choice *ch)
Radek Krejci76b3e962018-12-14 17:01:25 +01004031{
Michal Vasko22df3f02020-08-24 13:29:22 +02004032 struct lysc_node *iter, *node = (struct lysc_node *)ch;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004033 const struct lys_module *mod;
Radek Krejci76b3e962018-12-14 17:01:25 +01004034 const char *prefix = NULL, *name;
4035 size_t prefix_len = 0;
4036
4037 /* could use lys_parse_nodeid(), but it checks syntax which is already done in this case by the parsers */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004038 name = strchr(dflt->str, ':');
Radek Krejci76b3e962018-12-14 17:01:25 +01004039 if (name) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004040 prefix = dflt->str;
Radek Krejci76b3e962018-12-14 17:01:25 +01004041 prefix_len = name - prefix;
4042 ++name;
4043 } else {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004044 name = dflt->str;
Radek Krejci76b3e962018-12-14 17:01:25 +01004045 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004046 if (prefix) {
4047 mod = ly_resolve_prefix(ctx->ctx, prefix, prefix_len, LY_PREF_SCHEMA, (void *)dflt->mod);
4048 if (!mod) {
4049 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4050 "Default case prefix \"%.*s\" not found in imports of \"%s\".", prefix_len, prefix, dflt->mod->name);
4051 return LY_EVALID;
4052 }
4053 } else {
4054 mod = node->module;
Radek Krejci76b3e962018-12-14 17:01:25 +01004055 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004056
4057 ch->dflt = (struct lysc_node_case *)lys_find_child(node, mod, name, 0, LYS_CASE, LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCASE);
Radek Krejci76b3e962018-12-14 17:01:25 +01004058 if (!ch->dflt) {
4059 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vasko7f45cf22020-10-01 12:49:44 +02004060 "Default case \"%s\" not found.", dflt->str);
Radek Krejci76b3e962018-12-14 17:01:25 +01004061 return LY_EVALID;
4062 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004063
Radek Krejci76b3e962018-12-14 17:01:25 +01004064 /* no mandatory nodes directly under the default case */
4065 LY_LIST_FOR(ch->dflt->child, iter) {
Michal Vasko22df3f02020-08-24 13:29:22 +02004066 if (iter->parent != (struct lysc_node *)ch->dflt) {
Radek Krejcife13da42019-02-15 14:51:01 +01004067 break;
4068 }
Radek Krejci76b3e962018-12-14 17:01:25 +01004069 if (iter->flags & LYS_MAND_TRUE) {
4070 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vasko7f45cf22020-10-01 12:49:44 +02004071 "Mandatory node \"%s\" under the default case \"%s\".", iter->name, dflt->str);
Radek Krejci76b3e962018-12-14 17:01:25 +01004072 return LY_EVALID;
4073 }
4074 }
Radek Krejci76b3e962018-12-14 17:01:25 +01004075
Michal Vasko7f45cf22020-10-01 12:49:44 +02004076 if (ch->flags & LYS_MAND_TRUE) {
4077 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid mandatory choice with a default case.");
Radek Krejciccd20f12019-02-15 14:12:27 +01004078 return LY_EVALID;
4079 }
4080
Michal Vasko7f45cf22020-10-01 12:49:44 +02004081 ch->dflt->flags |= LYS_SET_DFLT;
Radek Krejciccd20f12019-02-15 14:12:27 +01004082 return LY_SUCCESS;
4083}
4084
Radek Krejci9bb94eb2018-12-04 16:48:35 +01004085/**
Michal Vasko20424b42020-08-31 12:29:38 +02004086 * @brief Compile choice children.
4087 *
4088 * @param[in] ctx Compile context
4089 * @param[in] child_p Parsed choice children nodes.
4090 * @param[in] node Compiled choice node to compile and add children to.
4091 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4092 */
4093static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02004094lys_compile_node_choice_child(struct lysc_ctx *ctx, struct lysp_node *child_p, struct lysc_node *node,
4095 struct ly_set *child_set)
Michal Vasko20424b42020-08-31 12:29:38 +02004096{
4097 LY_ERR ret = LY_SUCCESS;
Radek Krejci8f5fad22020-09-15 16:50:54 +02004098 struct lysp_node *child_p_next = child_p->next;
Michal Vasko20424b42020-08-31 12:29:38 +02004099 struct lysp_node_case *cs_p;
4100
4101 if (child_p->nodetype == LYS_CASE) {
4102 /* standard case under choice */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004103 ret = lys_compile_node(ctx, child_p, node, 0, child_set);
Michal Vasko20424b42020-08-31 12:29:38 +02004104 } else {
4105 /* we need the implicit case first, so create a fake parsed case */
4106 cs_p = calloc(1, sizeof *cs_p);
4107 cs_p->nodetype = LYS_CASE;
Radek Krejci87e25252020-09-15 13:28:31 +02004108 DUP_STRING_GOTO(ctx->ctx, child_p->name, cs_p->name, ret, free_fake_node);
Michal Vasko20424b42020-08-31 12:29:38 +02004109 cs_p->child = child_p;
4110
4111 /* make the child the only case child */
Michal Vasko20424b42020-08-31 12:29:38 +02004112 child_p->next = NULL;
4113
4114 /* compile it normally */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004115 ret = lys_compile_node(ctx, (struct lysp_node *)cs_p, node, 0, child_set);
Michal Vasko20424b42020-08-31 12:29:38 +02004116
Radek Krejci87e25252020-09-15 13:28:31 +02004117free_fake_node:
Michal Vasko20424b42020-08-31 12:29:38 +02004118 /* free the fake parsed node and correct pointers back */
4119 cs_p->child = NULL;
4120 lysp_node_free(ctx->ctx, (struct lysp_node *)cs_p);
Radek Krejci8f5fad22020-09-15 16:50:54 +02004121 child_p->next = child_p_next;
Michal Vasko20424b42020-08-31 12:29:38 +02004122 }
4123
4124 return ret;
4125}
4126
4127/**
Radek Krejci056d0a82018-12-06 16:57:25 +01004128 * @brief Compile parsed choice node information.
Michal Vasko20424b42020-08-31 12:29:38 +02004129 *
Radek Krejci056d0a82018-12-06 16:57:25 +01004130 * @param[in] ctx Compile context
Michal Vasko7f45cf22020-10-01 12:49:44 +02004131 * @param[in] pnode Parsed choice node.
Radek Krejci056d0a82018-12-06 16:57:25 +01004132 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
Radek Krejci76b3e962018-12-14 17:01:25 +01004133 * is enriched with the choice-specific information.
Radek Krejci056d0a82018-12-06 16:57:25 +01004134 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4135 */
4136static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02004137lys_compile_node_choice(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01004138{
Michal Vasko7f45cf22020-10-01 12:49:44 +02004139 struct lysp_node_choice *ch_p = (struct lysp_node_choice *)pnode;
Michal Vasko22df3f02020-08-24 13:29:22 +02004140 struct lysc_node_choice *ch = (struct lysc_node_choice *)node;
Michal Vasko20424b42020-08-31 12:29:38 +02004141 struct lysp_node *child_p;
Radek Krejci056d0a82018-12-06 16:57:25 +01004142 LY_ERR ret = LY_SUCCESS;
4143
Michal Vasko20424b42020-08-31 12:29:38 +02004144 assert(node->nodetype == LYS_CHOICE);
4145
Radek Krejci056d0a82018-12-06 16:57:25 +01004146 LY_LIST_FOR(ch_p->child, child_p) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004147 LY_CHECK_RET(lys_compile_node_choice_child(ctx, child_p, node, NULL));
Radek Krejci056d0a82018-12-06 16:57:25 +01004148 }
4149
4150 /* default branch */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004151 if (ch_p->dflt.str) {
4152 LY_CHECK_RET(lys_compile_node_choice_dflt(ctx, &ch_p->dflt, ch));
Radek Krejcia9026eb2018-12-12 16:04:47 +01004153 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004154
Radek Krejci9800fb82018-12-13 14:26:23 +01004155 return ret;
4156}
4157
4158/**
4159 * @brief Compile parsed anydata or anyxml node information.
4160 * @param[in] ctx Compile context
Michal Vasko7f45cf22020-10-01 12:49:44 +02004161 * @param[in] pnode Parsed anydata or anyxml node.
Radek Krejci9800fb82018-12-13 14:26:23 +01004162 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
4163 * is enriched with the any-specific information.
4164 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4165 */
4166static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02004167lys_compile_node_any(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node)
Radek Krejci9800fb82018-12-13 14:26:23 +01004168{
Michal Vasko7f45cf22020-10-01 12:49:44 +02004169 struct lysp_node_anydata *any_p = (struct lysp_node_anydata *)pnode;
Michal Vasko22df3f02020-08-24 13:29:22 +02004170 struct lysc_node_anydata *any = (struct lysc_node_anydata *)node;
Radek Krejci1deb5be2020-08-26 16:43:36 +02004171 LY_ARRAY_COUNT_TYPE u;
Radek Krejci9800fb82018-12-13 14:26:23 +01004172 LY_ERR ret = LY_SUCCESS;
4173
Radek Krejcic71ac5b2019-09-10 15:34:22 +02004174 COMPILE_ARRAY_GOTO(ctx, any_p->musts, any->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01004175 if (any_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
4176 /* do not check "must" semantics in a grouping */
Radek Krejciba03a5a2020-08-27 14:40:41 +02004177 ret = ly_set_add(&ctx->xpath, any, 0, NULL);
4178 LY_CHECK_GOTO(ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01004179 }
Radek Krejci9800fb82018-12-13 14:26:23 +01004180
4181 if (any->flags & LYS_CONFIG_W) {
Radek Krejci5c4ed7b2020-08-12 11:29:44 +02004182 LOGWRN(ctx->ctx, "Use of %s to define configuration data is not recommended. %s",
4183 ly_stmt2str(any->nodetype == LYS_ANYDATA ? LY_STMT_ANYDATA : LY_STMT_ANYXML), ctx->path);
Radek Krejci9800fb82018-12-13 14:26:23 +01004184 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004185done:
4186 return ret;
4187}
4188
Radek Krejcib56c7502019-02-13 14:19:54 +01004189/**
Michal Vasko795b3752020-07-13 15:24:27 +02004190 * @brief Connect the node into the siblings list and check its name uniqueness. Also,
4191 * keep specific order of augments targetting the same node.
Radek Krejci056d0a82018-12-06 16:57:25 +01004192 *
4193 * @param[in] ctx Compile context
4194 * @param[in] parent Parent node holding the children list, in case of node from a choice's case,
4195 * the choice itself is expected instead of a specific case node.
4196 * @param[in] node Schema node to connect into the list.
4197 * @return LY_ERR value - LY_SUCCESS or LY_EEXIST.
Radek Krejci1c54f462020-05-12 17:25:34 +02004198 * In case of LY_EEXIST, the node is actually kept in the tree, so do not free it directly.
Radek Krejci056d0a82018-12-06 16:57:25 +01004199 */
4200static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004201lys_compile_node_connect(struct lysc_ctx *ctx, struct lysc_node *parent, struct lysc_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01004202{
Michal Vasko7f45cf22020-10-01 12:49:44 +02004203 struct lysc_node **children, *anchor = NULL;
4204 int insert_after = 0;
Radek Krejci056d0a82018-12-06 16:57:25 +01004205
Michal Vasko20424b42020-08-31 12:29:38 +02004206 node->parent = parent;
4207
4208 if (parent) {
4209 if (parent->nodetype == LYS_CHOICE) {
4210 assert(node->nodetype == LYS_CASE);
4211 children = (struct lysc_node **)&((struct lysc_node_choice *)parent)->cases;
4212 } else {
4213 children = lysc_node_children_p(parent, ctx->options);
4214 }
4215 assert(children);
4216
Radek Krejci056d0a82018-12-06 16:57:25 +01004217 if (!(*children)) {
4218 /* first child */
4219 *children = node;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004220 } else if (node->flags & LYS_KEY) {
4221 /* special handling of adding keys */
4222 assert(node->module == parent->module);
4223 anchor = *children;
4224 if (anchor->flags & LYS_KEY) {
4225 while ((anchor->flags & LYS_KEY) && anchor->next) {
4226 anchor = anchor->next;
4227 }
4228 /* insert after the last key */
4229 insert_after = 1;
4230 } /* else insert before anchor (at the beginning) */
4231 } else if ((*children)->prev->module == node->module) {
4232 /* last child is from the same module, keep the order and insert at the end */
4233 anchor = (*children)->prev;
4234 insert_after = 1;
4235 } else if (parent->module == node->module) {
4236 /* adding module child after some augments were connected */
4237 for (anchor = *children; anchor->module == node->module; anchor = anchor->next) {}
4238 } else {
4239 /* some augments are already connected and we are connecting new ones,
4240 * keep module name order and insert the node into the children list */
4241 anchor = *children;
4242 do {
4243 anchor = anchor->prev;
Michal Vasko795b3752020-07-13 15:24:27 +02004244
Michal Vasko7f45cf22020-10-01 12:49:44 +02004245 /* check that we have not found the last augment node from our module or
4246 * the first augment node from a "smaller" module or
4247 * the first node from a local module */
4248 if ((anchor->module == node->module) || (strcmp(anchor->module->name, node->module->name) < 0)
4249 || (anchor->module == parent->module)) {
4250 /* insert after */
4251 insert_after = 1;
4252 break;
4253 }
4254
4255 /* we have traversed all the nodes, insert before anchor (as the first node) */
4256 } while (anchor->prev->next);
4257 }
4258
4259 /* insert */
4260 if (anchor) {
4261 if (insert_after) {
4262 node->next = anchor->next;
4263 node->prev = anchor;
4264 anchor->next = node;
4265 if (node->next) {
4266 /* middle node */
4267 node->next->prev = node;
4268 } else {
4269 /* last node */
4270 (*children)->prev = node;
4271 }
Michal Vasko795b3752020-07-13 15:24:27 +02004272 } else {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004273 node->next = anchor;
4274 node->prev = anchor->prev;
4275 anchor->prev = node;
4276 if (anchor == *children) {
4277 /* first node */
4278 *children = node;
4279 } else {
4280 /* middle node */
4281 node->prev->next = node;
4282 }
Michal Vasko795b3752020-07-13 15:24:27 +02004283 }
Michal Vasko20424b42020-08-31 12:29:38 +02004284 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004285
Michal Vasko20424b42020-08-31 12:29:38 +02004286 /* check the name uniqueness (even for an only child, it may be in case) */
4287 if (lys_compile_node_uniqness(ctx, parent, node->name, node)) {
4288 return LY_EEXIST;
4289 }
4290 } else {
4291 /* top-level element */
4292 if (!ctx->mod->compiled->data) {
4293 ctx->mod->compiled->data = node;
4294 } else {
4295 /* insert at the end of the module's top-level nodes list */
4296 ctx->mod->compiled->data->prev->next = node;
4297 node->prev = ctx->mod->compiled->data->prev;
4298 ctx->mod->compiled->data->prev = node;
4299 }
4300
4301 /* check the name uniqueness on top-level */
4302 if (lys_compile_node_uniqness(ctx, NULL, node->name, node)) {
4303 return LY_EEXIST;
Radek Krejci056d0a82018-12-06 16:57:25 +01004304 }
4305 }
Michal Vasko20424b42020-08-31 12:29:38 +02004306
Radek Krejci056d0a82018-12-06 16:57:25 +01004307 return LY_SUCCESS;
4308}
4309
Radek Krejci95710c92019-02-11 15:49:55 +01004310/**
Radek Krejcib56c7502019-02-13 14:19:54 +01004311 * @brief Prepare the case structure in choice node for the new data node.
4312 *
4313 * It is able to handle implicit as well as explicit cases and the situation when the case has multiple data nodes and the case was already
4314 * created in the choice when the first child was processed.
4315 *
4316 * @param[in] ctx Compile context.
Michal Vasko7f45cf22020-10-01 12:49:44 +02004317 * @param[in] pnode Node image from the parsed tree. If the case is explicit, it is the LYS_CASE node, but in case of implicit case,
Radek Krejci39424802020-08-12 09:31:00 +02004318 * it is the LYS_CHOICE, LYS_AUGMENT or LYS_GROUPING node.
Radek Krejcib56c7502019-02-13 14:19:54 +01004319 * @param[in] ch The compiled choice structure where the new case structures are created (if needed).
4320 * @param[in] child The new data node being part of a case (no matter if explicit or implicit).
4321 * @return The case structure where the child node belongs to, NULL in case of error. Note that the child is not connected into the siblings list,
4322 * it is linked from the case structure only in case it is its first child.
Radek Krejci95710c92019-02-11 15:49:55 +01004323 */
Michal Vasko20424b42020-08-31 12:29:38 +02004324static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02004325lys_compile_node_case(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01004326{
Michal Vasko20424b42020-08-31 12:29:38 +02004327 struct lysp_node *child_p;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004328 struct lysp_node_case *cs_p = (struct lysp_node_case *)pnode;
Radek Krejci056d0a82018-12-06 16:57:25 +01004329
Michal Vasko7f45cf22020-10-01 12:49:44 +02004330 if (pnode->nodetype & (LYS_CHOICE | LYS_AUGMENT | LYS_GROUPING)) {
Radek Krejci056d0a82018-12-06 16:57:25 +01004331 /* we have to add an implicit case node into the parent choice */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004332 } else if (pnode->nodetype == LYS_CASE) {
Michal Vasko20424b42020-08-31 12:29:38 +02004333 /* explicit parent case */
4334 LY_LIST_FOR(cs_p->child, child_p) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004335 LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0, NULL));
Radek Krejci056d0a82018-12-06 16:57:25 +01004336 }
Radek Krejci95710c92019-02-11 15:49:55 +01004337 } else {
Michal Vasko20424b42020-08-31 12:29:38 +02004338 LOGINT_RET(ctx->ctx);
Radek Krejci056d0a82018-12-06 16:57:25 +01004339 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004340
Michal Vasko20424b42020-08-31 12:29:38 +02004341 return LY_SUCCESS;
Radek Krejci056d0a82018-12-06 16:57:25 +01004342}
4343
Radek Krejcib56c7502019-02-13 14:19:54 +01004344/**
Radek Krejcib56c7502019-02-13 14:19:54 +01004345 * @brief Set LYS_MAND_TRUE flag for the non-presence container parents.
4346 *
4347 * A non-presence container is mandatory in case it has at least one mandatory children. This function propagate
4348 * the flag to such parents from a mandatory children.
4349 *
4350 * @param[in] parent A schema node to be examined if the mandatory child make it also mandatory.
4351 * @param[in] add Flag to distinguish adding the mandatory flag (new mandatory children appeared) or removing the flag
4352 * (mandatory children was removed).
4353 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02004354static void
Radek Krejci857189e2020-09-01 13:26:36 +02004355lys_compile_mandatory_parents(struct lysc_node *parent, ly_bool add)
Radek Krejcife909632019-02-12 15:34:42 +01004356{
4357 struct lysc_node *iter;
4358
4359 if (add) { /* set flag */
Michal Vaskod989ba02020-08-24 10:59:24 +02004360 for ( ; parent && parent->nodetype == LYS_CONTAINER && !(parent->flags & LYS_MAND_TRUE) && !(parent->flags & LYS_PRESENCE);
Radek Krejcife909632019-02-12 15:34:42 +01004361 parent = parent->parent) {
4362 parent->flags |= LYS_MAND_TRUE;
4363 }
4364 } else { /* unset flag */
Michal Vaskod989ba02020-08-24 10:59:24 +02004365 for ( ; parent && parent->nodetype == LYS_CONTAINER && (parent->flags & LYS_MAND_TRUE); parent = parent->parent) {
Michal Vasko22df3f02020-08-24 13:29:22 +02004366 for (iter = (struct lysc_node *)lysc_node_children(parent, 0); iter; iter = iter->next) {
Radek Krejcif1421c22019-02-19 13:05:20 +01004367 if (iter->flags & LYS_MAND_TRUE) {
Radek Krejcife909632019-02-12 15:34:42 +01004368 /* there is another mandatory node */
4369 return;
4370 }
4371 }
4372 /* unset mandatory flag - there is no mandatory children in the non-presence container */
4373 parent->flags &= ~LYS_MAND_TRUE;
4374 }
4375 }
4376}
4377
Radek Krejci056d0a82018-12-06 16:57:25 +01004378/**
Radek Krejci3641f562019-02-13 15:38:40 +01004379 * @brief Compile the parsed augment connecting it into its target.
4380 *
4381 * It is expected that all the data referenced in path are present - augments are ordered so that augment B
4382 * targeting data from augment A is being compiled after augment A. Also the modules referenced in the path
4383 * are already implemented and compiled.
4384 *
4385 * @param[in] ctx Compile context.
4386 * @param[in] aug_p Parsed augment to compile.
Michal Vasko7f45cf22020-10-01 12:49:44 +02004387 * @param[in] target Target node of the augment.
Radek Krejci3641f562019-02-13 15:38:40 +01004388 * @return LY_SUCCESS on success.
4389 * @return LY_EVALID on failure.
4390 */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004391static LY_ERR
4392lys_compile_augment(struct lysc_ctx *ctx, struct lysp_augment *aug_p, struct lysc_node *target)
Radek Krejci3641f562019-02-13 15:38:40 +01004393{
Michal Vasko7f45cf22020-10-01 12:49:44 +02004394 LY_ERR ret = LY_SUCCESS;
4395 struct lysp_node *pnode;
Radek Krejci3641f562019-02-13 15:38:40 +01004396 struct lysc_node *node;
Radek Krejci3641f562019-02-13 15:38:40 +01004397 struct lysc_when **when, *when_shared;
Radek Krejci857189e2020-09-01 13:26:36 +02004398 ly_bool allow_mandatory = 0;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004399 LY_ARRAY_COUNT_TYPE u;
4400 struct ly_set child_set = {0};
4401 uint32_t i;
Radek Krejci3641f562019-02-13 15:38:40 +01004402
Michal Vasko7f45cf22020-10-01 12:49:44 +02004403 if (!(target->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT | LYS_NOTIF))) {
4404 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4405 "Augment's %s-schema-nodeid \"%s\" refers to a %s node which is not an allowed augment's target.",
4406 aug_p->nodeid[0] == '/' ? "absolute" : "descendant", aug_p->nodeid, lys_nodetype2str(target->nodetype));
4407 ret = LY_EVALID;
4408 goto cleanup;
Radek Krejci3641f562019-02-13 15:38:40 +01004409 }
4410
4411 /* check for mandatory nodes
4412 * - new cases augmenting some choice can have mandatory nodes
4413 * - mandatory nodes are allowed only in case the augmentation is made conditional with a when statement
4414 */
Radek Krejci733988a2019-02-15 15:12:44 +01004415 if (aug_p->when || target->nodetype == LYS_CHOICE || ctx->mod == target->module) {
Radek Krejci3641f562019-02-13 15:38:40 +01004416 allow_mandatory = 1;
4417 }
4418
4419 when_shared = NULL;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004420 LY_LIST_FOR(aug_p->child, pnode) {
Radek Krejci3641f562019-02-13 15:38:40 +01004421 /* check if the subnode can be connected to the found target (e.g. case cannot be inserted into container) */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004422 if ((pnode->nodetype == LYS_CASE && target->nodetype != LYS_CHOICE)
4423 || ((pnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && !(target->nodetype & (LYS_CONTAINER | LYS_LIST)))
4424 || (pnode->nodetype == LYS_USES && target->nodetype == LYS_CHOICE)) {
Radek Krejci3641f562019-02-13 15:38:40 +01004425 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004426 "Invalid augment of %s node which is not allowed to contain %s node \"%s\".",
Michal Vasko7f45cf22020-10-01 12:49:44 +02004427 lys_nodetype2str(target->nodetype), lys_nodetype2str(pnode->nodetype), pnode->name);
4428 ret = LY_EVALID;
4429 goto cleanup;
Radek Krejci3641f562019-02-13 15:38:40 +01004430 }
4431
4432 /* compile the children */
Michal Vasko20424b42020-08-31 12:29:38 +02004433 if (target->nodetype == LYS_CHOICE) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004434 LY_CHECK_GOTO(ret = lys_compile_node_choice_child(ctx, pnode, target, &child_set), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004435 } else {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004436 LY_CHECK_GOTO(ret = lys_compile_node(ctx, pnode, target, 0, &child_set), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004437 }
4438
Michal Vasko7f45cf22020-10-01 12:49:44 +02004439 /* since the augment node is not present in the compiled tree, we need to pass some of its
4440 * statements to all its children */
4441 for (i = 0; i < child_set.count; ++i) {
4442 node = child_set.snodes[i];
4443 if (!allow_mandatory && (node->flags & LYS_CONFIG_W) && (node->flags & LYS_MAND_TRUE)) {
4444 node->flags &= ~LYS_MAND_TRUE;
4445 lys_compile_mandatory_parents(target, 0);
4446 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4447 "Invalid augment adding mandatory node \"%s\" without making it conditional via when statement.", node->name);
4448 ret = LY_EVALID;
4449 goto cleanup;
Radek Krejci7c7783d2020-04-08 15:34:39 +02004450 }
Radek Krejci3641f562019-02-13 15:38:40 +01004451
Michal Vasko7f45cf22020-10-01 12:49:44 +02004452 /* pass augment's when to all the children TODO this way even action and notif should have "when" (code below) */
4453 if (aug_p->when) {
4454 LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, cleanup);
4455 if (!when_shared) {
4456 LY_CHECK_GOTO(ret = lys_compile_when(ctx, aug_p->when, aug_p->flags, target, when), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004457
Michal Vasko7f45cf22020-10-01 12:49:44 +02004458 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4459 /* do not check "when" semantics in a grouping */
4460 LY_CHECK_GOTO(ret = ly_set_add(&ctx->xpath, node, 0, NULL), cleanup);
4461 }
Michal Vasko175012e2019-11-06 15:49:14 +01004462
Michal Vasko7f45cf22020-10-01 12:49:44 +02004463 when_shared = *when;
4464 } else {
4465 ++when_shared->refcount;
4466 (*when) = when_shared;
Michal Vasko175012e2019-11-06 15:49:14 +01004467
Michal Vasko7f45cf22020-10-01 12:49:44 +02004468 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4469 /* in this case check "when" again for all children because of dummy node check */
4470 LY_CHECK_GOTO(ret = ly_set_add(&ctx->xpath, node, 0, NULL), cleanup);
4471 }
Michal Vasko5c4e5892019-11-14 12:31:38 +01004472 }
Radek Krejci3641f562019-02-13 15:38:40 +01004473 }
4474 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004475 ly_set_erase(&child_set, NULL);
Radek Krejci3641f562019-02-13 15:38:40 +01004476 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004477
4478 switch (target->nodetype) {
4479 case LYS_CONTAINER:
Michal Vasko7f45cf22020-10-01 12:49:44 +02004480 COMPILE_OP_ARRAY_GOTO(ctx, aug_p->actions, ((struct lysc_node_container *)target)->actions, target,
4481 u, lys_compile_action, 0, ret, cleanup);
4482 COMPILE_OP_ARRAY_GOTO(ctx, aug_p->notifs, ((struct lysc_node_container *)target)->notifs, target,
4483 u, lys_compile_notif, 0, ret, cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004484 break;
4485 case LYS_LIST:
Michal Vasko7f45cf22020-10-01 12:49:44 +02004486 COMPILE_OP_ARRAY_GOTO(ctx, aug_p->actions, ((struct lysc_node_list *)target)->actions, target,
4487 u, lys_compile_action, 0, ret, cleanup);
4488 COMPILE_OP_ARRAY_GOTO(ctx, aug_p->notifs, ((struct lysc_node_list *)target)->notifs, target,
4489 u, lys_compile_notif, 0, ret, cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004490 break;
4491 default:
4492 if (aug_p->actions) {
4493 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004494 "Invalid augment of %s node which is not allowed to contain RPC/action node \"%s\".",
4495 lys_nodetype2str(target->nodetype), aug_p->actions[0].name);
Michal Vasko7f45cf22020-10-01 12:49:44 +02004496 ret = LY_EVALID;
4497 goto cleanup;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004498 }
4499 if (aug_p->notifs) {
4500 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Michal Vaskoa3881362020-01-21 15:57:35 +01004501 "Invalid augment of %s node which is not allowed to contain notification node \"%s\".",
Radek Krejci327de162019-06-14 12:52:07 +02004502 lys_nodetype2str(target->nodetype), aug_p->notifs[0].name);
Michal Vasko7f45cf22020-10-01 12:49:44 +02004503 ret = LY_EVALID;
4504 goto cleanup;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004505 }
4506 }
Radek Krejci3641f562019-02-13 15:38:40 +01004507
Michal Vasko7f45cf22020-10-01 12:49:44 +02004508cleanup:
4509 ly_set_erase(&child_set, NULL);
Radek Krejci3641f562019-02-13 15:38:40 +01004510 return ret;
4511}
4512
4513/**
Michal Vasko601ddb32020-08-31 16:25:35 +02004514 * @brief Find grouping for a uses.
Radek Krejcie86bf772018-12-14 11:39:53 +01004515 *
Michal Vasko601ddb32020-08-31 16:25:35 +02004516 * @param[in] ctx Compile context.
4517 * @param[in] uses_p Parsed uses node.
4518 * @param[out] gpr_p Found grouping on success.
4519 * @param[out] grp_mod Module of @p grp_p on success.
4520 * @return LY_ERR value.
Radek Krejcie86bf772018-12-14 11:39:53 +01004521 */
4522static LY_ERR
Michal Vasko601ddb32020-08-31 16:25:35 +02004523lys_compile_uses_find_grouping(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, struct lysp_grp **grp_p,
4524 struct lys_module **grp_mod)
Radek Krejcie86bf772018-12-14 11:39:53 +01004525{
Michal Vasko7f45cf22020-10-01 12:49:44 +02004526 struct lysp_node *pnode;
Michal Vasko601ddb32020-08-31 16:25:35 +02004527 struct lysp_grp *grp;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004528 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci857189e2020-09-01 13:26:36 +02004529 ly_bool found = 0;
Radek Krejcie86bf772018-12-14 11:39:53 +01004530 const char *id, *name, *prefix;
4531 size_t prefix_len, name_len;
Michal Vasko601ddb32020-08-31 16:25:35 +02004532 struct lys_module *mod;
4533
4534 *grp_p = NULL;
4535 *grp_mod = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01004536
4537 /* search for the grouping definition */
Radek Krejcie86bf772018-12-14 11:39:53 +01004538 id = uses_p->name;
Radek Krejcib4a4a272019-06-10 12:44:52 +02004539 LY_CHECK_RET(ly_parse_nodeid(&id, &prefix, &prefix_len, &name, &name_len), LY_EVALID);
Radek Krejcie86bf772018-12-14 11:39:53 +01004540 if (prefix) {
4541 mod = lys_module_find_prefix(ctx->mod_def, prefix, prefix_len);
4542 if (!mod) {
4543 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004544 "Invalid prefix used for grouping reference.", uses_p->name);
Radek Krejcie86bf772018-12-14 11:39:53 +01004545 return LY_EVALID;
4546 }
4547 } else {
4548 mod = ctx->mod_def;
4549 }
4550 if (mod == ctx->mod_def) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02004551 for (pnode = uses_p->parent; !found && pnode; pnode = pnode->parent) {
4552 grp = (struct lysp_grp *)lysp_node_groupings(pnode);
Radek Krejcie86bf772018-12-14 11:39:53 +01004553 LY_ARRAY_FOR(grp, u) {
4554 if (!strcmp(grp[u].name, name)) {
4555 grp = &grp[u];
4556 found = 1;
4557 break;
4558 }
4559 }
4560 }
4561 }
4562 if (!found) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004563 /* search in top-level groupings of the main module ... */
Radek Krejcie86bf772018-12-14 11:39:53 +01004564 grp = mod->parsed->groupings;
Michal Vasko601ddb32020-08-31 16:25:35 +02004565 LY_ARRAY_FOR(grp, u) {
4566 if (!strcmp(grp[u].name, name)) {
4567 grp = &grp[u];
4568 found = 1;
4569 break;
Radek Krejci76b3e962018-12-14 17:01:25 +01004570 }
4571 }
Michal Vasko601ddb32020-08-31 16:25:35 +02004572 if (!found) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004573 /* ... and all the submodules */
Michal Vasko601ddb32020-08-31 16:25:35 +02004574 LY_ARRAY_FOR(mod->parsed->includes, u) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004575 grp = mod->parsed->includes[u].submodule->groupings;
Michal Vasko601ddb32020-08-31 16:25:35 +02004576 LY_ARRAY_FOR(grp, v) {
4577 if (!strcmp(grp[v].name, name)) {
4578 grp = &grp[v];
4579 found = 1;
4580 break;
Radek Krejci76b3e962018-12-14 17:01:25 +01004581 }
4582 }
Michal Vasko601ddb32020-08-31 16:25:35 +02004583 if (found) {
4584 break;
4585 }
Radek Krejcie86bf772018-12-14 11:39:53 +01004586 }
4587 }
4588 }
4589 if (!found) {
4590 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4591 "Grouping \"%s\" referenced by a uses statement not found.", uses_p->name);
4592 return LY_EVALID;
4593 }
4594
Radek Krejcif2de0ed2019-05-02 14:13:18 +02004595 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4596 /* remember that the grouping is instantiated to avoid its standalone validation */
4597 grp->flags |= LYS_USED_GRP;
4598 }
Radek Krejcie86bf772018-12-14 11:39:53 +01004599
Michal Vasko601ddb32020-08-31 16:25:35 +02004600 *grp_p = grp;
4601 *grp_mod = mod;
4602 return LY_SUCCESS;
4603}
Radek Krejcie86bf772018-12-14 11:39:53 +01004604
Michal Vasko7f45cf22020-10-01 12:49:44 +02004605static const struct lys_module *lys_schema_node_get_module(const struct ly_ctx *ctx, const char *nametest,
4606 size_t nametest_len, const struct lys_module *local_mod, const char **name, size_t *name_len);
4607
Michal Vasko601ddb32020-08-31 16:25:35 +02004608static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02004609lys_nodeid_check(struct lysc_ctx *ctx, const char *nodeid, ly_bool abs, struct lys_module **target_mod,
4610 struct lyxp_expr **expr)
Michal Vasko601ddb32020-08-31 16:25:35 +02004611{
Michal Vasko601ddb32020-08-31 16:25:35 +02004612 LY_ERR ret = LY_SUCCESS;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004613 struct lyxp_expr *e = NULL;
4614 struct lys_module *tmod = NULL, *mod;
4615 const char *nodeid_type = abs ? "absolute-schema-nodeid" : "descendant-schema-nodeid";
4616 uint32_t i;
Radek Krejcie86bf772018-12-14 11:39:53 +01004617
Michal Vasko7f45cf22020-10-01 12:49:44 +02004618 /* parse */
4619 ret = lyxp_expr_parse(ctx->ctx, nodeid, strlen(nodeid), 0, &e);
4620 if (ret) {
4621 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s value \"%s\" - invalid syntax.",
4622 nodeid_type, nodeid);
4623 ret = LY_EVALID;
4624 goto cleanup;
Radek Krejci01342af2019-01-03 15:18:08 +01004625 }
Radek Krejcie86bf772018-12-14 11:39:53 +01004626
Michal Vasko7f45cf22020-10-01 12:49:44 +02004627 if (abs) {
4628 /* absolute schema nodeid */
4629 i = 0;
4630 } else {
4631 /* descendant schema nodeid */
4632 if (e->tokens[0] != LYXP_TOKEN_NAMETEST) {
4633 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid %s value \"%s\" - name test expected instead of \"%.*s\".",
4634 nodeid_type, nodeid, e->tok_len[0], e->expr + e->tok_pos[0]);
Michal Vasko20424b42020-08-31 12:29:38 +02004635 ret = LY_EVALID;
Radek Krejcifc11bd72019-04-11 16:00:05 +02004636 goto cleanup;
Radek Krejcif2271f12019-01-07 16:42:23 +01004637 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004638 i = 1;
4639 }
Radek Krejcif2271f12019-01-07 16:42:23 +01004640
Michal Vasko7f45cf22020-10-01 12:49:44 +02004641 /* check all the tokens */
4642 for ( ; i < e->used; i += 2) {
4643 if (e->tokens[i] != LYXP_TOKEN_OPER_PATH) {
4644 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid %s value \"%s\" - \"/\" expected instead of \"%.*s\".",
4645 nodeid_type, nodeid, e->tok_len[i], e->expr + e->tok_pos[i]);
4646 ret = LY_EVALID;
4647 goto cleanup;
4648 } else if (e->used == i + 1) {
4649 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4650 "Invalid %s value \"%s\" - unexpected end of expression.", nodeid_type, e->expr);
4651 ret = LY_EVALID;
4652 goto cleanup;
4653 } else if (e->tokens[i + 1] != LYXP_TOKEN_NAMETEST) {
4654 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid %s value \"%s\" - name test expected instead of \"%.*s\".",
4655 nodeid_type, nodeid, e->tok_len[i + 1], e->expr + e->tok_pos[i + 1]);
4656 ret = LY_EVALID;
4657 goto cleanup;
4658 } else if (abs) {
4659 mod = (struct lys_module *)lys_schema_node_get_module(ctx->ctx, e->expr + e->tok_pos[i + 1],
4660 e->tok_len[i + 1], ctx->mod_def, NULL, NULL);
4661 LY_CHECK_ERR_GOTO(!mod, ret = LY_EVALID, cleanup);
4662
4663 /* only keep the first module */
4664 if (!tmod) {
4665 tmod = mod;
Radek Krejcif2271f12019-01-07 16:42:23 +01004666 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004667
4668 /* all the modules must be implemented */
4669 if (!mod->implemented) {
Michal Vasko89b5c072020-10-06 13:52:44 +02004670 ret = lys_set_implemented(mod);
Michal Vasko7f45cf22020-10-01 12:49:44 +02004671 LY_CHECK_GOTO(ret, cleanup);
4672 }
4673 }
4674 }
4675
4676cleanup:
4677 if (ret || !expr) {
4678 lyxp_expr_free(ctx->ctx, e);
4679 e = NULL;
4680 }
4681 if (expr) {
4682 *expr = ret ? NULL : e;
4683 }
4684 if (target_mod) {
4685 *target_mod = ret ? NULL : tmod;
4686 }
4687 return ret;
4688}
4689
4690/**
4691 * @brief Check whether 2 schema nodeids match.
4692 *
4693 * @param[in] ctx libyang context.
4694 * @param[in] exp1 First schema nodeid.
4695 * @param[in] exp1_mod Module of @p exp1 nodes without any prefix.
4696 * @param[in] exp2 Second schema nodeid.
4697 * @param[in] exp2_mod Module of @p exp2 nodes without any prefix.
4698 * @return Whether the schema nodeids match or not.
4699 */
4700static ly_bool
4701lys_abs_schema_nodeid_match(const struct ly_ctx *ctx, const struct lyxp_expr *exp1, const struct lys_module *exp1_mod,
4702 const struct lyxp_expr *exp2, const struct lys_module *exp2_mod)
4703{
4704 uint32_t i;
4705 const struct lys_module *mod1, *mod2;
4706 const char *name1, *name2;
4707 size_t name1_len, name2_len;
4708
4709 if (exp1->used != exp2->used) {
4710 return 0;
4711 }
4712
4713 for (i = 0; i < exp1->used; ++i) {
4714 assert(exp1->tokens[i] == exp2->tokens[i]);
4715
4716 if (exp1->tokens[i] == LYXP_TOKEN_NAMETEST) {
4717 /* check modules of all the nodes in the node ID */
4718 mod1 = lys_schema_node_get_module(ctx, exp1->expr + exp1->tok_pos[i], exp1->tok_len[i], exp1_mod,
4719 &name1, &name1_len);
4720 assert(mod1);
4721 mod2 = lys_schema_node_get_module(ctx, exp2->expr + exp2->tok_pos[i], exp2->tok_len[i], exp2_mod,
4722 &name2, &name2_len);
4723 assert(mod2);
4724
4725 /* compare modules */
4726 if (mod1 != mod2) {
4727 return 0;
4728 }
4729
4730 /* compare names */
4731 if ((name1_len != name2_len) || strncmp(name1, name2, name1_len)) {
4732 return 0;
4733 }
4734 }
4735 }
4736
4737 return 1;
4738}
4739
4740/**
4741 * @brief Prepare any uses augments and refines in the context to be applied during uses descendant node compilation.
4742 *
4743 * @param[in] ctx Compile context.
4744 * @param[in] uses_p Parsed uses structure with augments and refines.
4745 * @param[in] ctx_node Context node of @p uses_p meaning its first data definiition parent.
4746 * @return LY_ERR value.
4747 */
4748static LY_ERR
4749lys_precompile_uses_augments_refines(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, const struct lysc_node *ctx_node)
4750{
4751 LY_ERR ret = LY_SUCCESS;
4752 LY_ARRAY_COUNT_TYPE u;
4753 struct lyxp_expr *exp = NULL;
4754 struct lysc_augment *aug;
4755 struct lysc_refine *rfn;
4756 struct lysp_refine **new_rfn;
4757 uint32_t i;
4758
4759 LY_ARRAY_FOR(uses_p->augments, u) {
4760 lysc_update_path(ctx, NULL, "{augment}");
4761 lysc_update_path(ctx, NULL, uses_p->augments[u].nodeid);
4762
4763 /* parse the nodeid */
4764 LY_CHECK_GOTO(ret = lys_nodeid_check(ctx, uses_p->augments[u].nodeid, 0, NULL, &exp), cleanup);
4765
4766 /* allocate new compiled augment and store it in the set */
4767 aug = calloc(1, sizeof *aug);
4768 LY_CHECK_ERR_GOTO(!aug, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
4769 LY_CHECK_GOTO(ret = ly_set_add(&ctx->uses_augs, aug, LY_SET_OPT_USEASLIST, NULL), cleanup);
4770
4771 aug->nodeid = exp;
4772 exp = NULL;
4773 aug->nodeid_ctx_node = ctx_node;
4774 aug->aug_p = &uses_p->augments[u];
4775
4776 lysc_update_path(ctx, NULL, NULL);
4777 lysc_update_path(ctx, NULL, NULL);
4778 }
4779
4780 LY_ARRAY_FOR(uses_p->refines, u) {
4781 lysc_update_path(ctx, NULL, "{refine}");
4782 lysc_update_path(ctx, NULL, uses_p->refines[u].nodeid);
4783
4784 /* parse the nodeid */
4785 LY_CHECK_GOTO(ret = lys_nodeid_check(ctx, uses_p->refines[u].nodeid, 0, NULL, &exp), cleanup);
4786
4787 /* try to find the node in already compiled refines */
4788 rfn = NULL;
4789 for (i = 0; i < ctx->uses_rfns.count; ++i) {
4790 if (lys_abs_schema_nodeid_match(ctx->ctx, exp, ctx->mod_def, ((struct lysc_refine *)ctx->uses_rfns.objs[i])->nodeid,
4791 ctx->mod_def)) {
4792 rfn = ctx->uses_rfns.objs[i];
4793 break;
Radek Krejcif2271f12019-01-07 16:42:23 +01004794 }
4795 }
Michal Vasko601ddb32020-08-31 16:25:35 +02004796
Michal Vasko7f45cf22020-10-01 12:49:44 +02004797 if (!rfn) {
4798 /* allocate new compiled refine */
4799 rfn = calloc(1, sizeof *rfn);
4800 LY_CHECK_ERR_GOTO(!rfn, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
4801 LY_CHECK_GOTO(ret = ly_set_add(&ctx->uses_rfns, rfn, LY_SET_OPT_USEASLIST, NULL), cleanup);
4802
4803 rfn->nodeid = exp;
4804 exp = NULL;
4805 rfn->nodeid_ctx_node = ctx_node;
4806 } else {
4807 /* just free exp */
4808 lyxp_expr_free(ctx->ctx, exp);
4809 exp = NULL;
4810 }
4811
4812 /* add new parsed refine structure */
4813 LY_ARRAY_NEW_GOTO(ctx->ctx, rfn->rfns, new_rfn, ret, cleanup);
4814 *new_rfn = &uses_p->refines[u];
4815
4816 lysc_update_path(ctx, NULL, NULL);
Michal Vasko601ddb32020-08-31 16:25:35 +02004817 lysc_update_path(ctx, NULL, NULL);
Radek Krejcif2271f12019-01-07 16:42:23 +01004818 }
4819
Michal Vasko601ddb32020-08-31 16:25:35 +02004820cleanup:
Michal Vasko7f45cf22020-10-01 12:49:44 +02004821 lyxp_expr_free(ctx->ctx, exp);
Michal Vasko601ddb32020-08-31 16:25:35 +02004822 return ret;
4823}
4824
4825/**
4826 * @brief Compile parsed uses statement - resolve target grouping and connect its content into parent.
4827 * If present, also apply uses's modificators.
4828 *
4829 * @param[in] ctx Compile context
4830 * @param[in] uses_p Parsed uses schema node.
4831 * @param[in] parent Compiled parent node where the content of the referenced grouping is supposed to be connected. It is
4832 * NULL for top-level nodes, in such a case the module where the node will be connected is taken from
4833 * the compile context.
4834 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4835 */
4836static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02004837lys_compile_uses(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, struct lysc_node *parent, struct ly_set *child_set)
Michal Vasko601ddb32020-08-31 16:25:35 +02004838{
Michal Vasko7f45cf22020-10-01 12:49:44 +02004839 struct lysp_node *pnode;
4840 struct lysc_node *child;
Michal Vasko601ddb32020-08-31 16:25:35 +02004841 struct lysp_grp *grp = NULL;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004842 uint32_t i, grp_stack_count;
Michal Vaskoaf702452020-10-02 09:02:55 +02004843 struct lys_module *grp_mod, *mod_old = ctx->mod_def;
Michal Vasko601ddb32020-08-31 16:25:35 +02004844 LY_ERR ret = LY_SUCCESS;
4845 struct lysc_when **when, *when_shared;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004846 LY_ARRAY_COUNT_TYPE u;
Michal Vasko601ddb32020-08-31 16:25:35 +02004847 struct lysc_notif **notifs = NULL;
4848 struct lysc_action **actions = NULL;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004849 struct ly_set uses_child_set = {0};
Michal Vasko601ddb32020-08-31 16:25:35 +02004850
4851 /* find the referenced grouping */
4852 LY_CHECK_RET(lys_compile_uses_find_grouping(ctx, uses_p, &grp, &grp_mod));
4853
4854 /* grouping must not reference themselves - stack in ctx maintains list of groupings currently being applied */
4855 grp_stack_count = ctx->groupings.count;
4856 LY_CHECK_RET(ly_set_add(&ctx->groupings, (void *)grp, 0, NULL));
4857 if (grp_stack_count == ctx->groupings.count) {
4858 /* the target grouping is already in the stack, so we are already inside it -> circular dependency */
4859 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4860 "Grouping \"%s\" references itself through a uses statement.", grp->name);
4861 return LY_EVALID;
4862 }
4863
Michal Vasko7f45cf22020-10-01 12:49:44 +02004864 /* check status */
4865 ret = lysc_check_status(ctx, uses_p->flags, ctx->mod_def, uses_p->name, grp->flags, grp_mod, grp->name);
4866 LY_CHECK_GOTO(ret, cleanup);
4867
4868 /* compile any augments and refines so they can be applied during the grouping nodes compilation */
4869 ret = lys_precompile_uses_augments_refines(ctx, uses_p, parent);
4870 LY_CHECK_GOTO(ret, cleanup);
4871
Michal Vasko601ddb32020-08-31 16:25:35 +02004872 /* switch context's mod_def */
Michal Vasko601ddb32020-08-31 16:25:35 +02004873 ctx->mod_def = grp_mod;
4874
Michal Vasko601ddb32020-08-31 16:25:35 +02004875 /* compile data nodes */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004876 LY_LIST_FOR(grp->data, pnode) {
Michal Vasko601ddb32020-08-31 16:25:35 +02004877 /* 0x3 in uses_status is a special bits combination to be able to detect status flags from uses */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004878 ret = lys_compile_node(ctx, pnode, parent, (uses_p->flags & LYS_STATUS_MASK) | 0x3, &uses_child_set);
Michal Vasko601ddb32020-08-31 16:25:35 +02004879 LY_CHECK_GOTO(ret, cleanup);
4880 }
4881
Michal Vasko7f45cf22020-10-01 12:49:44 +02004882 if (child_set) {
4883 /* add these children to our compiled child_set as well since uses is a schema-only node */
4884 LY_CHECK_GOTO(ret = ly_set_merge(child_set, &uses_child_set, LY_SET_OPT_USEASLIST, NULL), cleanup);
Michal Vasko601ddb32020-08-31 16:25:35 +02004885 }
4886
Michal Vasko7f45cf22020-10-01 12:49:44 +02004887 if (uses_p->when) {
Michal Vasko601ddb32020-08-31 16:25:35 +02004888 /* pass uses's when to all the data children, actions and notifications are ignored */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004889 when_shared = NULL;
4890 for (i = 0; i < uses_child_set.count; ++i) {
4891 child = uses_child_set.snodes[i];
4892
4893 LY_ARRAY_NEW_GOTO(ctx->ctx, child->when, when, ret, cleanup);
Michal Vasko601ddb32020-08-31 16:25:35 +02004894 if (!when_shared) {
4895 ret = lys_compile_when(ctx, uses_p->when, uses_p->flags, parent, when);
4896 LY_CHECK_GOTO(ret, cleanup);
4897
4898 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4899 /* do not check "when" semantics in a grouping */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004900 ret = ly_set_add(&ctx->xpath, child, 0, NULL);
Michal Vasko601ddb32020-08-31 16:25:35 +02004901 LY_CHECK_GOTO(ret, cleanup);
4902 }
4903
4904 when_shared = *when;
4905 } else {
4906 ++when_shared->refcount;
4907 (*when) = when_shared;
4908
4909 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4910 /* in this case check "when" again for all children because of dummy node check */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004911 ret = ly_set_add(&ctx->xpath, child, 0, NULL);
Michal Vasko601ddb32020-08-31 16:25:35 +02004912 LY_CHECK_GOTO(ret, cleanup);
4913 }
4914 }
4915 }
4916 }
4917
4918 /* compile actions */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004919 if (grp->actions) {
4920 actions = parent ? lysc_node_actions_p(parent) : &ctx->mod->compiled->rpcs;
4921 if (!actions) {
4922 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid child %s \"%s\" of uses parent %s \"%s\" node.",
4923 grp->actions[0].name, lys_nodetype2str(grp->actions[0].nodetype), parent->name,
4924 lys_nodetype2str(parent->nodetype));
4925 ret = LY_EVALID;
4926 goto cleanup;
Michal Vasko601ddb32020-08-31 16:25:35 +02004927 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004928 COMPILE_OP_ARRAY_GOTO(ctx, grp->actions, *actions, parent, u, lys_compile_action, 0, ret, cleanup);
Michal Vasko601ddb32020-08-31 16:25:35 +02004929 }
4930
4931 /* compile notifications */
Michal Vasko7f45cf22020-10-01 12:49:44 +02004932 if (grp->notifs) {
4933 notifs = parent ? lysc_node_notifs_p(parent) : &ctx->mod->compiled->notifs;
4934 if (!notifs) {
4935 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid child %s \"%s\" of uses parent %s \"%s\" node.",
4936 grp->notifs[0].name, lys_nodetype2str(grp->notifs[0].nodetype), parent->name,
4937 lys_nodetype2str(parent->nodetype));
4938 ret = LY_EVALID;
4939 goto cleanup;
Michal Vasko601ddb32020-08-31 16:25:35 +02004940 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004941 COMPILE_OP_ARRAY_GOTO(ctx, grp->notifs, *notifs, parent, u, lys_compile_notif, 0, ret, cleanup);
Michal Vasko601ddb32020-08-31 16:25:35 +02004942 }
4943
Michal Vasko7f45cf22020-10-01 12:49:44 +02004944 /* check that all augments were applied */
4945 for (i = 0; i < ctx->uses_augs.count; ++i) {
4946 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4947 "Augment target node \"%s\" in grouping \"%s\" was not found.",
4948 ((struct lysc_augment *)ctx->uses_augs.objs[i])->nodeid->expr, grp->name);
4949 ret = LY_ENOTFOUND;
Michal Vasko601ddb32020-08-31 16:25:35 +02004950 }
Michal Vasko601ddb32020-08-31 16:25:35 +02004951 LY_CHECK_GOTO(ret, cleanup);
4952
Michal Vasko7f45cf22020-10-01 12:49:44 +02004953 /* check that all refines were applied */
4954 for (i = 0; i < ctx->uses_rfns.count; ++i) {
4955 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4956 "Refine(s) target node \"%s\" in grouping \"%s\" was not found.",
4957 ((struct lysc_refine *)ctx->uses_rfns.objs[i])->nodeid->expr, grp->name);
4958 ret = LY_ENOTFOUND;
Radek Krejcic6b4f442020-08-12 14:45:18 +02004959 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02004960 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004961
4962cleanup:
Radek Krejcie86bf772018-12-14 11:39:53 +01004963 /* reload previous context's mod_def */
4964 ctx->mod_def = mod_old;
Michal Vasko7f45cf22020-10-01 12:49:44 +02004965
Radek Krejcie86bf772018-12-14 11:39:53 +01004966 /* remove the grouping from the stack for circular groupings dependency check */
4967 ly_set_rm_index(&ctx->groupings, ctx->groupings.count - 1, NULL);
4968 assert(ctx->groupings.count == grp_stack_count);
4969
Michal Vasko7f45cf22020-10-01 12:49:44 +02004970 ly_set_erase(&uses_child_set, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01004971 return ret;
4972}
4973
Radek Krejci327de162019-06-14 12:52:07 +02004974static int
4975lys_compile_grouping_pathlog(struct lysc_ctx *ctx, struct lysp_node *node, char **path)
4976{
4977 struct lysp_node *iter;
4978 int len = 0;
4979
4980 *path = NULL;
4981 for (iter = node; iter && len >= 0; iter = iter->parent) {
4982 char *s = *path;
4983 char *id;
4984
4985 switch (iter->nodetype) {
4986 case LYS_USES:
Radek Krejci200f1062020-07-11 22:51:03 +02004987 LY_CHECK_RET(asprintf(&id, "{uses='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02004988 break;
4989 case LYS_GROUPING:
Radek Krejci200f1062020-07-11 22:51:03 +02004990 LY_CHECK_RET(asprintf(&id, "{grouping='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02004991 break;
4992 case LYS_AUGMENT:
Radek Krejci200f1062020-07-11 22:51:03 +02004993 LY_CHECK_RET(asprintf(&id, "{augment='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02004994 break;
4995 default:
4996 id = strdup(iter->name);
4997 break;
4998 }
4999
5000 if (!iter->parent) {
5001 /* print prefix */
5002 len = asprintf(path, "/%s:%s%s", ctx->mod->name, id, s ? s : "");
5003 } else {
5004 /* prefix is the same as in parent */
5005 len = asprintf(path, "/%s%s", id, s ? s : "");
5006 }
5007 free(s);
5008 free(id);
5009 }
5010
5011 if (len < 0) {
5012 free(*path);
5013 *path = NULL;
5014 } else if (len == 0) {
5015 *path = strdup("/");
5016 len = 1;
5017 }
5018 return len;
5019}
5020
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005021/**
5022 * @brief Validate groupings that were defined but not directly used in the schema itself.
5023 *
5024 * The grouping does not need to be compiled (and it is compiled here, but the result is forgotten immediately),
5025 * but to have the complete result of the schema validity, even such groupings are supposed to be checked.
5026 */
5027static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02005028lys_compile_grouping(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysp_grp *grp)
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005029{
5030 LY_ERR ret;
Radek Krejci327de162019-06-14 12:52:07 +02005031 char *path;
5032 int len;
5033
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005034 struct lysp_node_uses fake_uses = {
Michal Vasko7f45cf22020-10-01 12:49:44 +02005035 .parent = pnode,
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005036 .nodetype = LYS_USES,
5037 .flags = 0, .next = NULL,
5038 .name = grp->name,
5039 .dsc = NULL, .ref = NULL, .when = NULL, .iffeatures = NULL, .exts = NULL,
5040 .refines = NULL, .augments = NULL
5041 };
5042 struct lysc_node_container fake_container = {
5043 .nodetype = LYS_CONTAINER,
Michal Vasko7f45cf22020-10-01 12:49:44 +02005044 .flags = pnode ? (pnode->flags & LYS_FLAGS_COMPILED_MASK) : 0,
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005045 .module = ctx->mod,
5046 .sp = NULL, .parent = NULL, .next = NULL,
Michal Vasko22df3f02020-08-24 13:29:22 +02005047 .prev = (struct lysc_node *)&fake_container,
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005048 .name = "fake",
5049 .dsc = NULL, .ref = NULL, .exts = NULL, .iffeatures = NULL, .when = NULL,
5050 .child = NULL, .musts = NULL, .actions = NULL, .notifs = NULL
5051 };
5052
5053 if (grp->parent) {
5054 LOGWRN(ctx->ctx, "Locally scoped grouping \"%s\" not used.", grp->name);
5055 }
Radek Krejci327de162019-06-14 12:52:07 +02005056
5057 len = lys_compile_grouping_pathlog(ctx, grp->parent, &path);
5058 if (len < 0) {
5059 LOGMEM(ctx->ctx);
5060 return LY_EMEM;
5061 }
5062 strncpy(ctx->path, path, LYSC_CTX_BUFSIZE - 1);
Radek Krejci1deb5be2020-08-26 16:43:36 +02005063 ctx->path_len = (uint32_t)len;
Radek Krejci327de162019-06-14 12:52:07 +02005064 free(path);
5065
5066 lysc_update_path(ctx, NULL, "{grouping}");
5067 lysc_update_path(ctx, NULL, grp->name);
Michal Vasko22df3f02020-08-24 13:29:22 +02005068 ret = lys_compile_uses(ctx, &fake_uses, (struct lysc_node *)&fake_container, NULL);
Radek Krejci327de162019-06-14 12:52:07 +02005069 lysc_update_path(ctx, NULL, NULL);
5070 lysc_update_path(ctx, NULL, NULL);
5071
5072 ctx->path_len = 1;
5073 ctx->path[1] = '\0';
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005074
5075 /* cleanup */
5076 lysc_node_container_free(ctx->ctx, &fake_container);
5077
5078 return ret;
5079}
Radek Krejcife909632019-02-12 15:34:42 +01005080
Radek Krejcie86bf772018-12-14 11:39:53 +01005081/**
Michal Vasko20424b42020-08-31 12:29:38 +02005082 * @brief Set config flags for a node.
5083 *
5084 * @param[in] ctx Compile context.
5085 * @param[in] node Compiled node config to set.
5086 * @param[in] parent Parent of @p node.
5087 * @return LY_ERR value.
5088 */
5089static LY_ERR
5090lys_compile_config(struct lysc_ctx *ctx, struct lysc_node *node, struct lysc_node *parent)
5091{
5092 if (node->nodetype == LYS_CASE) {
5093 /* case never has any config */
5094 assert(!(node->flags & LYS_CONFIG_MASK));
5095 return LY_SUCCESS;
5096 }
5097
5098 /* adjust parent to always get the ancestor with config */
5099 if (parent && (parent->nodetype == LYS_CASE)) {
5100 parent = parent->parent;
5101 assert(parent);
5102 }
5103
5104 if (ctx->options & (LYSC_OPT_RPC_INPUT | LYSC_OPT_RPC_OUTPUT)) {
5105 /* ignore config statements inside RPC/action data */
5106 node->flags &= ~LYS_CONFIG_MASK;
5107 node->flags |= (ctx->options & LYSC_OPT_RPC_INPUT) ? LYS_CONFIG_W : LYS_CONFIG_R;
5108 } else if (ctx->options & LYSC_OPT_NOTIFICATION) {
5109 /* ignore config statements inside Notification data */
5110 node->flags &= ~LYS_CONFIG_MASK;
5111 node->flags |= LYS_CONFIG_R;
5112 } else if (!(node->flags & LYS_CONFIG_MASK)) {
5113 /* config not explicitely set, inherit it from parent */
5114 if (parent) {
5115 node->flags |= parent->flags & LYS_CONFIG_MASK;
5116 } else {
5117 /* default is config true */
5118 node->flags |= LYS_CONFIG_W;
5119 }
5120 } else {
5121 /* config set explicitely */
5122 node->flags |= LYS_SET_CONFIG;
5123 }
5124
5125 if (parent && (parent->flags & LYS_CONFIG_R) && (node->flags & LYS_CONFIG_W)) {
5126 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
5127 "Configuration node cannot be child of any state data node.");
5128 return LY_EVALID;
5129 }
5130
5131 return LY_SUCCESS;
5132}
5133
Michal Vasko7f45cf22020-10-01 12:49:44 +02005134static LY_ERR
5135lysp_ext_dup(const struct ly_ctx *ctx, struct lysp_ext_instance *ext, const struct lysp_ext_instance *orig_ext)
5136{
5137 LY_ERR ret = LY_SUCCESS;
5138
5139 *ext = *orig_ext;
5140 DUP_STRING(ctx, orig_ext->name, ext->name, ret);
5141 DUP_STRING(ctx, orig_ext->argument, ext->argument, ret);
5142
5143 return ret;
5144}
5145
5146static LY_ERR
5147lysp_restr_dup(const struct ly_ctx *ctx, struct lysp_restr *restr, const struct lysp_restr *orig_restr)
5148{
5149 LY_ERR ret = LY_SUCCESS;
5150
5151 if (orig_restr) {
5152 DUP_STRING(ctx, orig_restr->arg.str, restr->arg.str, ret);
5153 restr->arg.mod = orig_restr->arg.mod;
5154 DUP_STRING(ctx, orig_restr->emsg, restr->emsg, ret);
5155 DUP_STRING(ctx, orig_restr->eapptag, restr->eapptag, ret);
5156 DUP_STRING(ctx, orig_restr->dsc, restr->dsc, ret);
5157 DUP_STRING(ctx, orig_restr->ref, restr->ref, ret);
5158 DUP_ARRAY(ctx, orig_restr->exts, restr->exts, lysp_ext_dup);
5159 }
5160
5161 return ret;
5162}
5163
5164static LY_ERR
5165lysp_string_dup(const struct ly_ctx *ctx, const char **str, const char **orig_str)
5166{
5167 LY_ERR ret = LY_SUCCESS;
5168
5169 DUP_STRING(ctx, *orig_str, *str, ret);
5170
5171 return ret;
5172}
5173
5174static LY_ERR
5175lysp_qname_dup(const struct ly_ctx *ctx, struct lysp_qname *qname, const struct lysp_qname *orig_qname)
5176{
5177 LY_ERR ret = LY_SUCCESS;
5178
Michal Vaskoe9c050f2020-10-06 14:01:23 +02005179 if (!orig_qname->str) {
5180 return LY_SUCCESS;
5181 }
5182
Michal Vasko7f45cf22020-10-01 12:49:44 +02005183 DUP_STRING(ctx, orig_qname->str, qname->str, ret);
Michal Vaskoe9c050f2020-10-06 14:01:23 +02005184 assert(orig_qname->mod);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005185 qname->mod = orig_qname->mod;
5186
5187 return ret;
5188}
5189
5190static LY_ERR
5191lysp_type_enum_dup(const struct ly_ctx *ctx, struct lysp_type_enum *enm, const struct lysp_type_enum *orig_enm)
5192{
5193 LY_ERR ret = LY_SUCCESS;
5194
5195 DUP_STRING(ctx, orig_enm->name, enm->name, ret);
5196 DUP_STRING(ctx, orig_enm->dsc, enm->dsc, ret);
5197 DUP_STRING(ctx, orig_enm->ref, enm->ref, ret);
5198 enm->value = orig_enm->value;
5199 DUP_ARRAY(ctx, orig_enm->iffeatures, enm->iffeatures, lysp_qname_dup);
5200 DUP_ARRAY(ctx, orig_enm->exts, enm->exts, lysp_ext_dup);
5201 enm->flags = orig_enm->flags;
5202
5203 return ret;
5204}
5205
5206static LY_ERR
5207lysp_type_dup(const struct ly_ctx *ctx, struct lysp_type *type, const struct lysp_type *orig_type)
5208{
5209 LY_ERR ret = LY_SUCCESS;
5210
5211 DUP_STRING_GOTO(ctx, orig_type->name, type->name, ret, done);
5212
5213 if (orig_type->range) {
5214 type->range = calloc(1, sizeof *type->range);
5215 LY_CHECK_ERR_RET(!type->range, LOGMEM(ctx), LY_EMEM);
5216 LY_CHECK_RET(lysp_restr_dup(ctx, type->range, orig_type->range));
5217 }
5218
5219 if (orig_type->length) {
5220 type->length = calloc(1, sizeof *type->length);
5221 LY_CHECK_ERR_RET(!type->length, LOGMEM(ctx), LY_EMEM);
5222 LY_CHECK_RET(lysp_restr_dup(ctx, type->length, orig_type->length));
5223 }
5224
5225 DUP_ARRAY(ctx, orig_type->patterns, type->patterns, lysp_restr_dup);
5226 DUP_ARRAY(ctx, orig_type->enums, type->enums, lysp_type_enum_dup);
5227 DUP_ARRAY(ctx, orig_type->bits, type->bits, lysp_type_enum_dup);
5228 LY_CHECK_GOTO(ret = lyxp_expr_dup(ctx, orig_type->path, &type->path), done);
5229 DUP_ARRAY(ctx, orig_type->bases, type->bases, lysp_string_dup);
5230 DUP_ARRAY(ctx, orig_type->types, type->types, lysp_type_dup);
5231 DUP_ARRAY(ctx, orig_type->exts, type->exts, lysp_ext_dup);
5232
Michal Vaskoe9c050f2020-10-06 14:01:23 +02005233 type->mod = orig_type->mod;
Michal Vasko7f45cf22020-10-01 12:49:44 +02005234 type->compiled = orig_type->compiled;
5235
5236 type->fraction_digits = orig_type->fraction_digits;
5237 type->require_instance = orig_type->require_instance;
5238 type->flags = orig_type->flags;
5239
5240done:
5241 return ret;
5242}
5243
5244static LY_ERR
5245lysp_when_dup(const struct ly_ctx *ctx, struct lysp_when *when, const struct lysp_when *orig_when)
5246{
5247 LY_ERR ret = LY_SUCCESS;
5248
5249 DUP_STRING(ctx, orig_when->cond, when->cond, ret);
5250 DUP_STRING(ctx, orig_when->dsc, when->dsc, ret);
5251 DUP_STRING(ctx, orig_when->ref, when->ref, ret);
5252 DUP_ARRAY(ctx, orig_when->exts, when->exts, lysp_ext_dup);
5253
5254 return ret;
5255}
5256
5257static LY_ERR
5258lysp_node_common_dup(const struct ly_ctx *ctx, struct lysp_node *node, const struct lysp_node *orig)
5259{
5260 LY_ERR ret = LY_SUCCESS;
5261
5262 node->parent = NULL;
5263 node->nodetype = orig->nodetype;
5264 node->flags = orig->flags;
5265 node->next = NULL;
5266 DUP_STRING(ctx, orig->name, node->name, ret);
5267 DUP_STRING(ctx, orig->dsc, node->dsc, ret);
5268 DUP_STRING(ctx, orig->ref, node->ref, ret);
5269
5270 if (orig->when) {
5271 node->when = calloc(1, sizeof *node->when);
5272 LY_CHECK_ERR_RET(!node->when, LOGMEM(ctx), LY_EMEM);
5273 LY_CHECK_RET(lysp_when_dup(ctx, node->when, orig->when));
5274 }
5275
5276 DUP_ARRAY(ctx, orig->iffeatures, node->iffeatures, lysp_qname_dup);
5277 DUP_ARRAY(ctx, orig->exts, node->exts, lysp_ext_dup);
5278
5279 return ret;
5280}
5281
5282static LY_ERR
5283lysp_node_dup(const struct ly_ctx *ctx, struct lysp_node *node, const struct lysp_node *orig)
5284{
5285 LY_ERR ret = LY_SUCCESS;
5286 struct lysp_node_container *cont;
5287 const struct lysp_node_container *orig_cont;
5288 struct lysp_node_leaf *leaf;
5289 const struct lysp_node_leaf *orig_leaf;
5290 struct lysp_node_leaflist *llist;
5291 const struct lysp_node_leaflist *orig_llist;
5292 struct lysp_node_list *list;
5293 const struct lysp_node_list *orig_list;
5294 struct lysp_node_choice *choice;
5295 const struct lysp_node_choice *orig_choice;
5296 struct lysp_node_case *cas;
5297 const struct lysp_node_case *orig_cas;
5298 struct lysp_node_anydata *any;
5299 const struct lysp_node_anydata *orig_any;
5300
5301 assert(orig->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_ANYDATA));
5302
5303 /* common part */
5304 LY_CHECK_RET(lysp_node_common_dup(ctx, node, orig));
5305
5306 /* specific part */
5307 switch (node->nodetype) {
5308 case LYS_CONTAINER:
5309 cont = (struct lysp_node_container *)node;
5310 orig_cont = (const struct lysp_node_container *)orig;
5311
5312 DUP_ARRAY(ctx, orig_cont->musts, cont->musts, lysp_restr_dup);
5313 DUP_STRING(ctx, orig_cont->presence, cont->presence, ret);
5314 /* we do not need the rest */
5315 break;
5316 case LYS_LEAF:
5317 leaf = (struct lysp_node_leaf *)node;
5318 orig_leaf = (const struct lysp_node_leaf *)orig;
5319
5320 DUP_ARRAY(ctx, orig_leaf->musts, leaf->musts, lysp_restr_dup);
5321 LY_CHECK_RET(lysp_type_dup(ctx, &leaf->type, &orig_leaf->type));
5322 DUP_STRING(ctx, orig_leaf->units, leaf->units, ret);
Michal Vaskoe9c050f2020-10-06 14:01:23 +02005323 LY_CHECK_RET(lysp_qname_dup(ctx, &leaf->dflt, &orig_leaf->dflt));
Michal Vasko7f45cf22020-10-01 12:49:44 +02005324 break;
5325 case LYS_LEAFLIST:
5326 llist = (struct lysp_node_leaflist *)node;
5327 orig_llist = (const struct lysp_node_leaflist *)orig;
5328
5329 DUP_ARRAY(ctx, orig_llist->musts, llist->musts, lysp_restr_dup);
5330 LY_CHECK_RET(lysp_type_dup(ctx, &llist->type, &orig_llist->type));
5331 DUP_STRING(ctx, orig_llist->units, llist->units, ret);
5332 DUP_ARRAY(ctx, orig_llist->dflts, llist->dflts, lysp_qname_dup);
5333 llist->min = orig_llist->min;
5334 llist->max = orig_llist->max;
5335 break;
5336 case LYS_LIST:
5337 list = (struct lysp_node_list *)node;
5338 orig_list = (const struct lysp_node_list *)orig;
5339
5340 DUP_ARRAY(ctx, orig_list->musts, list->musts, lysp_restr_dup);
5341 DUP_STRING(ctx, orig_list->key, list->key, ret);
5342 /* we do not need these arrays */
5343 DUP_ARRAY(ctx, orig_list->uniques, list->uniques, lysp_qname_dup);
5344 list->min = orig_list->min;
5345 list->max = orig_list->max;
5346 break;
5347 case LYS_CHOICE:
5348 choice = (struct lysp_node_choice *)node;
5349 orig_choice = (const struct lysp_node_choice *)orig;
5350
5351 /* we do not need children */
5352 LY_CHECK_RET(lysp_qname_dup(ctx, &choice->dflt, &orig_choice->dflt));
5353 break;
5354 case LYS_CASE:
5355 cas = (struct lysp_node_case *)node;
5356 orig_cas = (const struct lysp_node_case *)orig;
5357
5358 /* we do not need children */
5359 (void)cas;
5360 (void)orig_cas;
5361 break;
5362 case LYS_ANYDATA:
5363 case LYS_ANYXML:
5364 any = (struct lysp_node_anydata *)node;
5365 orig_any = (const struct lysp_node_anydata *)orig;
5366
5367 DUP_ARRAY(ctx, orig_any->musts, any->musts, lysp_restr_dup);
5368 break;
5369 default:
5370 LOGINT_RET(ctx);
5371 }
5372
5373 return ret;
5374}
5375
5376static LY_ERR
5377lysp_action_inout_dup(const struct ly_ctx *ctx, struct lysp_action_inout *inout, const struct lysp_action_inout *orig)
5378{
5379 inout->parent = NULL;
5380 inout->nodetype = orig->nodetype;
5381 DUP_ARRAY(ctx, orig->musts, inout->musts, lysp_restr_dup);
5382 /* we dot need these arrays */
5383 DUP_ARRAY(ctx, orig->exts, inout->exts, lysp_ext_dup);
5384
5385 return LY_SUCCESS;
5386}
5387
5388static LY_ERR
5389lysp_action_dup(const struct ly_ctx *ctx, struct lysp_action *act, const struct lysp_action *orig)
5390{
5391 LY_ERR ret = LY_SUCCESS;
5392
5393 act->parent = NULL;
5394 act->nodetype = orig->nodetype;
5395 act->flags = orig->flags;
5396 DUP_STRING(ctx, orig->name, act->name, ret);
5397 DUP_STRING(ctx, orig->dsc, act->dsc, ret);
5398 DUP_STRING(ctx, orig->ref, act->ref, ret);
5399 DUP_ARRAY(ctx, orig->iffeatures, act->iffeatures, lysp_qname_dup);
5400
5401 act->input.nodetype = orig->input.nodetype;
5402 act->output.nodetype = orig->output.nodetype;
5403 /* we do not need choldren of in/out */
5404 DUP_ARRAY(ctx, orig->exts, act->exts, lysp_ext_dup);
5405
5406 return ret;
5407}
5408
5409static LY_ERR
5410lysp_notif_dup(const struct ly_ctx *ctx, struct lysp_notif *notif, const struct lysp_notif *orig)
5411{
5412 LY_ERR ret = LY_SUCCESS;
5413
5414 notif->parent = NULL;
5415 notif->nodetype = orig->nodetype;
5416 notif->flags = orig->flags;
5417 DUP_STRING(ctx, orig->name, notif->name, ret);
5418 DUP_STRING(ctx, orig->dsc, notif->dsc, ret);
5419 DUP_STRING(ctx, orig->ref, notif->ref, ret);
5420 DUP_ARRAY(ctx, orig->iffeatures, notif->iffeatures, lysp_qname_dup);
5421 DUP_ARRAY(ctx, orig->musts, notif->musts, lysp_restr_dup);
5422 /* we do not need these arrays */
5423 DUP_ARRAY(ctx, orig->exts, notif->exts, lysp_ext_dup);
5424
5425 return ret;
5426}
5427
5428/**
5429 * @brief Duplicate a single parsed node. Only attributes that are used in compilation are copied.
5430 *
5431 * @param[in] ctx libyang context.
5432 * @param[in] pnode Node to duplicate.
5433 * @param[in] with_links Whether to also copy any links (child, parent pointers).
5434 * @param[out] dup_p Duplicated parsed node.
5435 * @return LY_ERR value.
5436 */
5437static LY_ERR
5438lysp_dup_single(const struct ly_ctx *ctx, const struct lysp_node *pnode, ly_bool with_links, struct lysp_node **dup_p)
5439{
Michal Vaskoaf702452020-10-02 09:02:55 +02005440 LY_ERR ret = LY_SUCCESS;
5441 void *mem = NULL;
Michal Vasko7f45cf22020-10-01 12:49:44 +02005442
5443 if (!pnode) {
5444 *dup_p = NULL;
5445 return LY_SUCCESS;
5446 }
5447
5448 switch (pnode->nodetype) {
5449 case LYS_CONTAINER:
5450 mem = calloc(1, sizeof(struct lysp_node_container));
Michal Vaskoaf702452020-10-02 09:02:55 +02005451 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5452 LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005453 break;
5454 case LYS_LEAF:
5455 mem = calloc(1, sizeof(struct lysp_node_leaf));
Michal Vaskoaf702452020-10-02 09:02:55 +02005456 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5457 LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005458 break;
5459 case LYS_LEAFLIST:
5460 mem = calloc(1, sizeof(struct lysp_node_leaflist));
Michal Vaskoaf702452020-10-02 09:02:55 +02005461 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5462 LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005463 break;
5464 case LYS_LIST:
5465 mem = calloc(1, sizeof(struct lysp_node_list));
Michal Vaskoaf702452020-10-02 09:02:55 +02005466 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5467 LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005468 break;
5469 case LYS_CHOICE:
5470 mem = calloc(1, sizeof(struct lysp_node_choice));
Michal Vaskoaf702452020-10-02 09:02:55 +02005471 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5472 LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005473 break;
5474 case LYS_CASE:
5475 mem = calloc(1, sizeof(struct lysp_node_case));
Michal Vaskoaf702452020-10-02 09:02:55 +02005476 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5477 LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005478 break;
5479 case LYS_ANYDATA:
5480 case LYS_ANYXML:
5481 mem = calloc(1, sizeof(struct lysp_node_anydata));
Michal Vaskoaf702452020-10-02 09:02:55 +02005482 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5483 LY_CHECK_GOTO(ret = lysp_node_dup(ctx, mem, pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005484 break;
5485 case LYS_INPUT:
5486 case LYS_OUTPUT:
5487 mem = calloc(1, sizeof(struct lysp_action_inout));
Michal Vaskoaf702452020-10-02 09:02:55 +02005488 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5489 LY_CHECK_GOTO(ret = lysp_action_inout_dup(ctx, mem, (struct lysp_action_inout *)pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005490 break;
5491 case LYS_ACTION:
5492 case LYS_RPC:
5493 mem = calloc(1, sizeof(struct lysp_action));
Michal Vaskoaf702452020-10-02 09:02:55 +02005494 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5495 LY_CHECK_GOTO(ret = lysp_action_dup(ctx, mem, (struct lysp_action *)pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005496 break;
5497 case LYS_NOTIF:
5498 mem = calloc(1, sizeof(struct lysp_notif));
Michal Vaskoaf702452020-10-02 09:02:55 +02005499 LY_CHECK_ERR_GOTO(!mem, LOGMEM(ctx); ret = LY_EMEM, cleanup);
5500 LY_CHECK_GOTO(ret = lysp_notif_dup(ctx, mem, (struct lysp_notif *)pnode), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02005501 break;
5502 default:
5503 LOGINT_RET(ctx);
5504 }
5505
5506 if (with_links) {
5507 /* copy also parent and child pointers */
5508 ((struct lysp_node *)mem)->parent = pnode->parent;
5509 switch (pnode->nodetype) {
5510 case LYS_CONTAINER:
5511 ((struct lysp_node_container *)mem)->child = ((struct lysp_node_container *)pnode)->child;
5512 break;
5513 case LYS_LIST:
5514 ((struct lysp_node_list *)mem)->child = ((struct lysp_node_list *)pnode)->child;
5515 break;
5516 case LYS_CHOICE:
5517 ((struct lysp_node_choice *)mem)->child = ((struct lysp_node_choice *)pnode)->child;
5518 break;
5519 case LYS_CASE:
5520 ((struct lysp_node_case *)mem)->child = ((struct lysp_node_case *)pnode)->child;
5521 break;
5522 default:
5523 break;
5524 }
5525 }
5526
Michal Vaskoaf702452020-10-02 09:02:55 +02005527cleanup:
5528 if (ret) {
5529 free(mem);
5530 } else {
5531 *dup_p = mem;
5532 }
5533 return ret;
Michal Vasko7f45cf22020-10-01 12:49:44 +02005534}
5535
5536#define AMEND_WRONG_NODETYPE(AMEND_STR, OP_STR, PROPERTY) \
5537 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid %s of %s node - it is not possible to %s \"%s\" property.", \
5538 AMEND_STR, lys_nodetype2str(target->nodetype), OP_STR, PROPERTY);\
5539 ret = LY_EVALID; \
5540 goto cleanup;
5541
5542#define AMEND_CHECK_CARDINALITY(ARRAY, MAX, AMEND_STR, PROPERTY) \
5543 if (LY_ARRAY_COUNT(ARRAY) > MAX) { \
5544 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid %s of %s with too many (%"LY_PRI_ARRAY_COUNT_TYPE") %s properties.", \
5545 AMEND_STR, lys_nodetype2str(target->nodetype), LY_ARRAY_COUNT(ARRAY), PROPERTY); \
5546 ret = LY_EVALID; \
5547 goto cleanup; \
5548 }
5549
5550/**
5551 * @brief Apply refine.
5552 *
5553 * @param[in] ctx Compile context.
5554 * @param[in] rfn Refine to apply.
5555 * @param[in,out] target Refine target.
5556 * @return LY_ERR value.
5557 */
5558static LY_ERR
5559lys_apply_refine(struct lysc_ctx *ctx, struct lysp_refine *rfn, struct lysp_node *target)
5560{
5561 LY_ERR ret = LY_SUCCESS;
5562 LY_ARRAY_COUNT_TYPE u;
5563 struct lysp_qname *qname;
5564 struct lysp_restr **musts, *must;
5565 uint32_t *num;
5566
5567 /* default value */
5568 if (rfn->dflts) {
5569 switch (target->nodetype) {
5570 case LYS_LEAF:
5571 AMEND_CHECK_CARDINALITY(rfn->dflts, 1, "refine", "default");
5572
5573 FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str);
5574 DUP_STRING_GOTO(ctx->ctx, rfn->dflts[0], ((struct lysp_node_leaf *)target)->dflt.str, ret, cleanup);
5575 ((struct lysp_node_leaf *)target)->dflt.mod = ctx->mod;
5576 break;
5577 case LYS_LEAFLIST:
5578 if (ctx->mod->version < LYS_VERSION_1_1) {
5579 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
5580 "Invalid refine of default in leaf-list - the default statement is allowed only in YANG 1.1 modules.");
5581 ret = LY_EVALID;
5582 goto cleanup;
5583 }
5584
5585 FREE_ARRAY(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, lysp_qname_free);
5586 ((struct lysp_node_leaflist *)target)->dflts = NULL;
5587 LY_ARRAY_FOR(rfn->dflts, u) {
5588 LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, qname, ret, cleanup);
5589 DUP_STRING_GOTO(ctx->ctx, rfn->dflts[u], qname->str, ret, cleanup);
5590 qname->mod = ctx->mod;
5591 }
5592 break;
5593 case LYS_CHOICE:
5594 AMEND_CHECK_CARDINALITY(rfn->dflts, 1, "refine", "default");
5595
5596 FREE_STRING(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str);
5597 DUP_STRING_GOTO(ctx->ctx, rfn->dflts[0], ((struct lysp_node_choice *)target)->dflt.str, ret, cleanup);
5598 ((struct lysp_node_choice *)target)->dflt.mod = ctx->mod;
5599 break;
5600 default:
5601 AMEND_WRONG_NODETYPE("refine", "replace", "default");
5602 }
5603 }
5604
5605 /* description */
5606 if (rfn->dsc) {
5607 FREE_STRING(ctx->ctx, target->dsc);
5608 DUP_STRING_GOTO(ctx->ctx, rfn->dsc, target->dsc, ret, cleanup);
5609 }
5610
5611 /* reference */
5612 if (rfn->ref) {
5613 FREE_STRING(ctx->ctx, target->ref);
5614 DUP_STRING_GOTO(ctx->ctx, rfn->ref, target->ref, ret, cleanup);
5615 }
5616
5617 /* config */
5618 if (rfn->flags & LYS_CONFIG_MASK) {
5619 if (ctx->options & (LYSC_OPT_NOTIFICATION | LYSC_OPT_RPC_INPUT | LYSC_OPT_RPC_OUTPUT)) {
5620 LOGWRN(ctx->ctx, "Refining config inside %s has no effect (%s).",
5621 ctx->options & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action", ctx->path);
5622 } else {
5623 target->flags &= ~LYS_CONFIG_MASK;
5624 target->flags |= rfn->flags & LYS_CONFIG_MASK;
5625 }
5626 }
5627
5628 /* mandatory */
5629 if (rfn->flags & LYS_MAND_MASK) {
5630 switch (target->nodetype) {
5631 case LYS_LEAF:
5632 case LYS_CHOICE:
5633 case LYS_ANYDATA:
5634 case LYS_ANYXML:
5635 break;
5636 default:
5637 AMEND_WRONG_NODETYPE("refine", "replace", "mandatory");
5638 }
5639
5640 target->flags &= ~LYS_MAND_MASK;
5641 target->flags |= rfn->flags & LYS_MAND_MASK;
5642 }
5643
5644 /* presence */
5645 if (rfn->presence) {
5646 switch (target->nodetype) {
5647 case LYS_CONTAINER:
5648 break;
5649 default:
5650 AMEND_WRONG_NODETYPE("refine", "replace", "presence");
5651 }
5652
5653 FREE_STRING(ctx->ctx, ((struct lysp_node_container *)target)->presence);
5654 DUP_STRING_GOTO(ctx->ctx, rfn->presence, ((struct lysp_node_container *)target)->presence, ret, cleanup);
5655 }
5656
5657 /* must */
5658 if (rfn->musts) {
5659 switch (target->nodetype) {
5660 case LYS_CONTAINER:
5661 case LYS_LIST:
5662 case LYS_LEAF:
5663 case LYS_LEAFLIST:
5664 case LYS_ANYDATA:
5665 case LYS_ANYXML:
5666 musts = &((struct lysp_node_container *)target)->musts;
5667 break;
5668 default:
5669 AMEND_WRONG_NODETYPE("refine", "add", "must");
5670 }
5671
5672 LY_ARRAY_FOR(rfn->musts, u) {
5673 LY_ARRAY_NEW_GOTO(ctx->ctx, *musts, must, ret, cleanup);
5674 LY_CHECK_GOTO(ret = lysp_restr_dup(ctx->ctx, must, &rfn->musts[u]), cleanup);
5675 }
5676 }
5677
5678 /* min-elements */
5679 if (rfn->flags & LYS_SET_MIN) {
5680 switch (target->nodetype) {
5681 case LYS_LEAFLIST:
5682 num = &((struct lysp_node_leaflist *)target)->min;
5683 break;
5684 case LYS_LIST:
5685 num = &((struct lysp_node_list *)target)->min;
5686 break;
5687 default:
5688 AMEND_WRONG_NODETYPE("refine", "replace", "min-elements");
5689 }
5690
5691 *num = rfn->min;
5692 }
5693
5694 /* max-elements */
5695 if (rfn->flags & LYS_SET_MAX) {
5696 switch (target->nodetype) {
5697 case LYS_LEAFLIST:
5698 num = &((struct lysp_node_leaflist *)target)->max;
5699 break;
5700 case LYS_LIST:
5701 num = &((struct lysp_node_list *)target)->max;
5702 break;
5703 default:
5704 AMEND_WRONG_NODETYPE("refine", "replace", "max-elements");
5705 }
5706
5707 *num = rfn->max;
5708 }
5709
5710 /* if-feature */
5711 if (rfn->iffeatures) {
5712 switch (target->nodetype) {
5713 case LYS_LEAF:
5714 case LYS_LEAFLIST:
5715 case LYS_LIST:
5716 case LYS_CONTAINER:
5717 case LYS_CHOICE:
5718 case LYS_CASE:
5719 case LYS_ANYDATA:
5720 case LYS_ANYXML:
5721 break;
5722 default:
5723 AMEND_WRONG_NODETYPE("refine", "add", "if-feature");
5724 }
5725
5726 LY_ARRAY_FOR(rfn->iffeatures, u) {
5727 LY_ARRAY_NEW_GOTO(ctx->ctx, target->iffeatures, qname, ret, cleanup);
5728 DUP_STRING_GOTO(ctx->ctx, rfn->iffeatures[u].str, qname->str, ret, cleanup);
5729 qname->mod = ctx->mod;
5730 }
5731 }
5732
5733 /* extension */
5734 /* TODO refine extensions */
5735
5736cleanup:
5737 return ret;
5738}
5739
5740/**
5741 * @brief Apply deviate add.
5742 *
5743 * @param[in] ctx Compile context.
5744 * @param[in] d Deviate add to apply.
5745 * @param[in,out] target Deviation target.
5746 * @return LY_ERR value.
5747 */
5748static LY_ERR
5749lys_apply_deviate_add(struct lysc_ctx *ctx, struct lysp_deviate_add *d, struct lysp_node *target)
5750{
5751 LY_ERR ret = LY_SUCCESS;
5752 LY_ARRAY_COUNT_TYPE u;
5753 struct lysp_qname *qname;
5754 uint32_t *num;
5755 struct lysp_restr **musts, *must;
5756
5757#define DEV_CHECK_NONPRESENCE(TYPE, MEMBER, PROPERTY, VALUEMEMBER) \
5758 if (((TYPE)target)->MEMBER) { \
5759 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5760 "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", \
5761 PROPERTY, ((TYPE)target)->VALUEMEMBER); \
5762 ret = LY_EVALID; \
5763 goto cleanup; \
5764 }
5765
5766 /* [units-stmt] */
5767 if (d->units) {
5768 switch (target->nodetype) {
5769 case LYS_LEAF:
5770 case LYS_LEAFLIST:
5771 break;
5772 default:
5773 AMEND_WRONG_NODETYPE("deviation", "add", "units");
5774 }
5775
5776 DEV_CHECK_NONPRESENCE(struct lysp_node_leaf *, units, "units", units);
5777 DUP_STRING_GOTO(ctx->ctx, d->units, ((struct lysp_node_leaf *)target)->units, ret, cleanup);
5778 }
5779
5780 /* *must-stmt */
5781 if (d->musts) {
5782 switch (target->nodetype) {
5783 case LYS_CONTAINER:
5784 case LYS_LIST:
5785 case LYS_LEAF:
5786 case LYS_LEAFLIST:
5787 case LYS_ANYDATA:
5788 case LYS_ANYXML:
5789 musts = &((struct lysp_node_container *)target)->musts;
5790 break;
5791 case LYS_NOTIF:
5792 musts = &((struct lysp_notif *)target)->musts;
5793 break;
5794 case LYS_INPUT:
5795 case LYS_OUTPUT:
5796 musts = &((struct lysp_action_inout *)target)->musts;
5797 break;
5798 default:
5799 AMEND_WRONG_NODETYPE("deviation", "add", "must");
5800 }
5801
5802 LY_ARRAY_FOR(d->musts, u) {
5803 LY_ARRAY_NEW_GOTO(ctx->ctx, *musts, must, ret, cleanup);
5804 LY_CHECK_GOTO(ret = lysp_restr_dup(ctx->ctx, must, &d->musts[u]), cleanup);
5805 }
5806 }
5807
5808 /* *unique-stmt */
5809 if (d->uniques) {
5810 switch (target->nodetype) {
5811 case LYS_LIST:
5812 break;
5813 default:
5814 AMEND_WRONG_NODETYPE("deviation", "add", "unique");
5815 }
5816
5817 LY_ARRAY_FOR(d->uniques, u) {
5818 LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_list *)target)->uniques, qname, ret, cleanup);
5819 DUP_STRING_GOTO(ctx->ctx, d->uniques[u], qname->str, ret, cleanup);
5820 qname->mod = ctx->mod;
5821 }
5822 }
5823
5824 /* *default-stmt */
5825 if (d->dflts) {
5826 switch (target->nodetype) {
5827 case LYS_LEAF:
5828 AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default");
5829 DEV_CHECK_NONPRESENCE(struct lysp_node_leaf *, dflt.str, "default", dflt.str);
5830
5831 DUP_STRING_GOTO(ctx->ctx, d->dflts[0], ((struct lysp_node_leaf *)target)->dflt.str, ret, cleanup);
5832 ((struct lysp_node_leaf *)target)->dflt.mod = ctx->mod;
5833 break;
5834 case LYS_LEAFLIST:
5835 LY_ARRAY_FOR(d->dflts, u) {
5836 LY_ARRAY_NEW_GOTO(ctx->ctx, ((struct lysp_node_leaflist *)target)->dflts, qname, ret, cleanup);
5837 DUP_STRING_GOTO(ctx->ctx, d->dflts[u], qname->str, ret, cleanup);
5838 qname->mod = ctx->mod;
5839 }
5840 break;
5841 case LYS_CHOICE:
5842 AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default");
5843 DEV_CHECK_NONPRESENCE(struct lysp_node_choice *, dflt.str, "default", dflt.str);
5844
5845 DUP_STRING_GOTO(ctx->ctx, d->dflts[0], ((struct lysp_node_choice *)target)->dflt.str, ret, cleanup);
5846 ((struct lysp_node_choice *)target)->dflt.mod = ctx->mod;
5847 break;
5848 default:
5849 AMEND_WRONG_NODETYPE("deviation", "add", "default");
5850 }
5851 }
5852
5853 /* [config-stmt] */
5854 if (d->flags & LYS_CONFIG_MASK) {
5855 switch (target->nodetype) {
5856 case LYS_CONTAINER:
5857 case LYS_LEAF:
5858 case LYS_LEAFLIST:
5859 case LYS_LIST:
5860 case LYS_CHOICE:
5861 case LYS_ANYDATA:
5862 case LYS_ANYXML:
5863 break;
5864 default:
5865 AMEND_WRONG_NODETYPE("deviation", "add", "config");
5866 }
5867
5868 if (target->flags & LYS_CONFIG_MASK) {
5869 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5870 "Invalid deviation adding \"config\" property which already exists (with value \"config %s\").",
5871 target->flags & LYS_CONFIG_W ? "true" : "false");
5872 ret = LY_EVALID;
5873 goto cleanup;
5874 }
5875
5876 target->flags |= d->flags & LYS_CONFIG_MASK;
5877 }
5878
5879 /* [mandatory-stmt] */
5880 if (d->flags & LYS_MAND_MASK) {
5881 switch (target->nodetype) {
5882 case LYS_LEAF:
5883 case LYS_CHOICE:
5884 case LYS_ANYDATA:
5885 case LYS_ANYXML:
5886 break;
5887 default:
5888 AMEND_WRONG_NODETYPE("deviation", "add", "mandatory");
5889 }
5890
5891 if (target->flags & LYS_MAND_MASK) {
5892 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5893 "Invalid deviation adding \"mandatory\" property which already exists (with value \"mandatory %s\").",
5894 target->flags & LYS_MAND_TRUE ? "true" : "false");
5895 ret = LY_EVALID;
5896 goto cleanup;
5897 }
5898
5899 target->flags |= d->flags & LYS_MAND_MASK;
5900 }
5901
5902 /* [min-elements-stmt] */
5903 if (d->flags & LYS_SET_MIN) {
5904 switch (target->nodetype) {
5905 case LYS_LEAFLIST:
5906 num = &((struct lysp_node_leaflist *)target)->min;
5907 break;
5908 case LYS_LIST:
5909 num = &((struct lysp_node_list *)target)->min;
5910 break;
5911 default:
5912 AMEND_WRONG_NODETYPE("deviation", "add", "min-elements");
5913 }
5914
5915 if (target->flags & LYS_SET_MIN) {
5916 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5917 "Invalid deviation adding \"min-elements\" property which already exists (with value \"%u\").", *num);
5918 ret = LY_EVALID;
5919 goto cleanup;
5920 }
5921
5922 *num = d->min;
5923 }
5924
5925 /* [max-elements-stmt] */
5926 if (d->flags & LYS_SET_MAX) {
5927 switch (target->nodetype) {
5928 case LYS_LEAFLIST:
5929 num = &((struct lysp_node_leaflist *)target)->max;
5930 break;
5931 case LYS_LIST:
5932 num = &((struct lysp_node_list *)target)->max;
5933 break;
5934 default:
5935 AMEND_WRONG_NODETYPE("deviation", "add", "max-elements");
5936 }
5937
5938 if (target->flags & LYS_SET_MAX) {
5939 if (*num) {
5940 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5941 "Invalid deviation adding \"max-elements\" property which already exists (with value \"%u\").",
5942 *num);
5943 } else {
5944 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5945 "Invalid deviation adding \"max-elements\" property which already exists (with value \"unbounded\").");
5946 }
5947 ret = LY_EVALID;
5948 goto cleanup;
5949 }
5950
5951 *num = d->max;
5952 }
5953
5954cleanup:
5955 return ret;
5956}
5957
5958/**
5959 * @brief Apply deviate delete.
5960 *
5961 * @param[in] ctx Compile context.
5962 * @param[in] d Deviate delete to apply.
5963 * @param[in,out] target Deviation target.
5964 * @return LY_ERR value.
5965 */
5966static LY_ERR
5967lys_apply_deviate_delete(struct lysc_ctx *ctx, struct lysp_deviate_del *d, struct lysp_node *target)
5968{
5969 LY_ERR ret = LY_SUCCESS;
5970 struct lysp_restr **musts;
5971 LY_ARRAY_COUNT_TYPE u, v;
5972 struct lysp_qname **uniques, **dflts;
5973
5974#define DEV_DEL_ARRAY(DEV_ARRAY, ORIG_ARRAY, DEV_MEMBER, ORIG_MEMBER, FREE_FUNC, PROPERTY) \
5975 LY_ARRAY_FOR(d->DEV_ARRAY, u) { \
5976 int found = 0; \
5977 LY_ARRAY_FOR(ORIG_ARRAY, v) { \
5978 if (!strcmp(d->DEV_ARRAY[u]DEV_MEMBER, (ORIG_ARRAY)[v]ORIG_MEMBER)) { \
5979 found = 1; \
5980 break; \
5981 } \
5982 } \
5983 if (!found) { \
5984 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5985 "Invalid deviation deleting \"%s\" property \"%s\" which does not match any of the target's property values.", \
5986 PROPERTY, d->DEV_ARRAY[u]DEV_MEMBER); \
5987 ret = LY_EVALID; \
5988 goto cleanup; \
5989 } \
5990 LY_ARRAY_DECREMENT(ORIG_ARRAY); \
5991 FREE_FUNC(ctx->ctx, &(ORIG_ARRAY)[v]); \
5992 memmove(&(ORIG_ARRAY)[v], &(ORIG_ARRAY)[v + 1], (LY_ARRAY_COUNT(ORIG_ARRAY) - v) * sizeof *(ORIG_ARRAY)); \
5993 } \
5994 if (!LY_ARRAY_COUNT(ORIG_ARRAY)) { \
5995 LY_ARRAY_FREE(ORIG_ARRAY); \
5996 ORIG_ARRAY = NULL; \
5997 }
5998
5999#define DEV_CHECK_PRESENCE_VALUE(TYPE, MEMBER, DEVTYPE, PROPERTY, VALUE) \
6000 if (!((TYPE)target)->MEMBER) { \
6001 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \
6002 ret = LY_EVALID; \
6003 goto cleanup; \
6004 } else if (strcmp(((TYPE)target)->MEMBER, VALUE)) { \
6005 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
6006 "Invalid deviation deleting \"%s\" property \"%s\" which does not match the target's property value \"%s\".", \
6007 PROPERTY, VALUE, ((TYPE)target)->MEMBER); \
6008 ret = LY_EVALID; \
6009 goto cleanup; \
6010 }
6011
6012 /* [units-stmt] */
6013 if (d->units) {
6014 switch (target->nodetype) {
6015 case LYS_LEAF:
6016 case LYS_LEAFLIST:
6017 break;
6018 default:
6019 AMEND_WRONG_NODETYPE("deviation", "delete", "units");
6020 }
6021
6022 DEV_CHECK_PRESENCE_VALUE(struct lysp_node_leaf *, units, "deleting", "units", d->units);
6023 FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->units);
6024 ((struct lysp_node_leaf *)target)->units = NULL;
6025 }
6026
6027 /* *must-stmt */
6028 if (d->musts) {
6029 switch (target->nodetype) {
6030 case LYS_CONTAINER:
6031 case LYS_LIST:
6032 case LYS_LEAF:
6033 case LYS_LEAFLIST:
6034 case LYS_ANYDATA:
6035 case LYS_ANYXML:
6036 musts = &((struct lysp_node_container *)target)->musts;
6037 break;
6038 case LYS_NOTIF:
6039 musts = &((struct lysp_notif *)target)->musts;
6040 break;
6041 case LYS_INPUT:
6042 case LYS_OUTPUT:
6043 musts = &((struct lysp_action_inout *)target)->musts;
6044 break;
6045 default:
6046 AMEND_WRONG_NODETYPE("deviation", "delete", "must");
6047 }
6048
6049 DEV_DEL_ARRAY(musts, *musts, .arg.str, .arg.str, lysp_restr_free, "must");
6050 }
6051
6052 /* *unique-stmt */
6053 if (d->uniques) {
6054 switch (target->nodetype) {
6055 case LYS_LIST:
6056 break;
6057 default:
6058 AMEND_WRONG_NODETYPE("deviation", "delete", "unique");
6059 }
6060
6061 uniques = &((struct lysp_node_list *)target)->uniques;
6062 DEV_DEL_ARRAY(uniques, *uniques, , .str, lysp_qname_free, "unique");
6063 }
6064
6065 /* *default-stmt */
6066 if (d->dflts) {
6067 switch (target->nodetype) {
6068 case LYS_LEAF:
6069 AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default");
6070 DEV_CHECK_PRESENCE_VALUE(struct lysp_node_leaf *, dflt.str, "deleting", "default", d->dflts[0]);
6071
6072 FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str);
6073 ((struct lysp_node_leaf *)target)->dflt.str = NULL;
6074 break;
6075 case LYS_LEAFLIST:
6076 dflts = &((struct lysp_node_leaflist *)target)->dflts;
6077 DEV_DEL_ARRAY(dflts, *dflts, , .str, lysp_qname_free, "default");
6078 break;
6079 case LYS_CHOICE:
6080 AMEND_CHECK_CARDINALITY(d->dflts, 1, "deviation", "default");
6081 DEV_CHECK_PRESENCE_VALUE(struct lysp_node_choice *, dflt.str, "deleting", "default", d->dflts[0]);
6082
6083 FREE_STRING(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str);
6084 ((struct lysp_node_choice *)target)->dflt.str = NULL;
6085 break;
6086 default:
6087 AMEND_WRONG_NODETYPE("deviation", "delete", "default");
6088 }
6089 }
6090
6091cleanup:
6092 return ret;
6093}
6094
6095/**
6096 * @brief Apply deviate replace.
6097 *
6098 * @param[in] ctx Compile context.
6099 * @param[in] d Deviate replace to apply.
6100 * @param[in,out] target Deviation target.
6101 * @return LY_ERR value.
6102 */
6103static LY_ERR
6104lys_apply_deviate_replace(struct lysc_ctx *ctx, struct lysp_deviate_rpl *d, struct lysp_node *target)
6105{
6106 LY_ERR ret = LY_SUCCESS;
6107 uint32_t *num;
6108
6109#define DEV_CHECK_PRESENCE(TYPE, MEMBER, DEVTYPE, PROPERTY, VALUE) \
6110 if (!((TYPE)target)->MEMBER) { \
6111 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \
6112 ret = LY_EVALID; \
6113 goto cleanup; \
6114 }
6115
6116 /* [type-stmt] */
6117 if (d->type) {
6118 switch (target->nodetype) {
6119 case LYS_LEAF:
6120 case LYS_LEAFLIST:
6121 break;
6122 default:
6123 AMEND_WRONG_NODETYPE("deviation", "replace", "type");
6124 }
6125
6126 lysp_type_free(ctx->ctx, &((struct lysp_node_leaf *)target)->type);
6127 lysp_type_dup(ctx->ctx, &((struct lysp_node_leaf *)target)->type, d->type);
6128 }
6129
6130 /* [units-stmt] */
6131 if (d->units) {
6132 switch (target->nodetype) {
6133 case LYS_LEAF:
6134 case LYS_LEAFLIST:
6135 break;
6136 default:
6137 AMEND_WRONG_NODETYPE("deviation", "replace", "units");
6138 }
6139
6140 DEV_CHECK_PRESENCE(struct lysp_node_leaf *, units, "replacing", "units", d->units);
6141 FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->units);
6142 DUP_STRING_GOTO(ctx->ctx, d->units, ((struct lysp_node_leaf *)target)->units, ret, cleanup);
6143 }
6144
6145 /* [default-stmt] */
6146 if (d->dflt) {
6147 switch (target->nodetype) {
6148 case LYS_LEAF:
6149 DEV_CHECK_PRESENCE(struct lysp_node_leaf *, dflt.str, "replacing", "default", d->dflt);
6150
6151 FREE_STRING(ctx->ctx, ((struct lysp_node_leaf *)target)->dflt.str);
6152 DUP_STRING_GOTO(ctx->ctx, d->dflt, ((struct lysp_node_leaf *)target)->dflt.str, ret, cleanup);
6153 ((struct lysp_node_leaf *)target)->dflt.mod = ctx->mod;
6154 break;
6155 case LYS_CHOICE:
6156 DEV_CHECK_PRESENCE(struct lysp_node_choice *, dflt.str, "replacing", "default", d->dflt);
6157
6158 FREE_STRING(ctx->ctx, ((struct lysp_node_choice *)target)->dflt.str);
6159 DUP_STRING_GOTO(ctx->ctx, d->dflt, ((struct lysp_node_choice *)target)->dflt.str, ret, cleanup);
6160 ((struct lysp_node_choice *)target)->dflt.mod = ctx->mod;
6161 break;
6162 default:
6163 AMEND_WRONG_NODETYPE("deviation", "replace", "default");
6164 }
6165 }
6166
6167 /* [config-stmt] */
6168 if (d->flags & LYS_CONFIG_MASK) {
6169 switch (target->nodetype) {
6170 case LYS_CONTAINER:
6171 case LYS_LEAF:
6172 case LYS_LEAFLIST:
6173 case LYS_LIST:
6174 case LYS_CHOICE:
6175 case LYS_ANYDATA:
6176 case LYS_ANYXML:
6177 break;
6178 default:
6179 AMEND_WRONG_NODETYPE("deviation", "replace", "config");
6180 }
6181
6182 if (!(target->flags & LYS_CONFIG_MASK)) {
6183 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT,
6184 "replacing", "config", d->flags & LYS_CONFIG_W ? "config true" : "config false");
6185 ret = LY_EVALID;
6186 goto cleanup;
6187 }
6188
6189 target->flags &= ~LYS_CONFIG_MASK;
6190 target->flags |= d->flags & LYS_CONFIG_MASK;
6191 }
6192
6193 /* [mandatory-stmt] */
6194 if (d->flags & LYS_MAND_MASK) {
6195 switch (target->nodetype) {
6196 case LYS_LEAF:
6197 case LYS_CHOICE:
6198 case LYS_ANYDATA:
6199 case LYS_ANYXML:
6200 break;
6201 default:
6202 AMEND_WRONG_NODETYPE("deviation", "replace", "mandatory");
6203 }
6204
6205 if (!(target->flags & LYS_MAND_MASK)) {
6206 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT,
6207 "replacing", "mandatory", d->flags & LYS_MAND_TRUE ? "mandatory true" : "mandatory false");
6208 ret = LY_EVALID;
6209 goto cleanup;
6210 }
6211
6212 target->flags &= ~LYS_MAND_MASK;
6213 target->flags |= d->flags & LYS_MAND_MASK;
6214 }
6215
6216 /* [min-elements-stmt] */
6217 if (d->flags & LYS_SET_MIN) {
6218 switch (target->nodetype) {
6219 case LYS_LEAFLIST:
6220 num = &((struct lysp_node_leaflist *)target)->min;
6221 break;
6222 case LYS_LIST:
6223 num = &((struct lysp_node_list *)target)->min;
6224 break;
6225 default:
6226 AMEND_WRONG_NODETYPE("deviation", "replace", "min-elements");
6227 }
6228
6229 if (!(target->flags & LYS_SET_MIN)) {
6230 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6231 "Invalid deviation replacing \"min-elements\" property which is not present.");
6232 ret = LY_EVALID;
6233 goto cleanup;
6234 }
6235
6236 *num = d->min;
6237 }
6238
6239 /* [max-elements-stmt] */
6240 if (d->flags & LYS_SET_MAX) {
6241 switch (target->nodetype) {
6242 case LYS_LEAFLIST:
6243 num = &((struct lysp_node_leaflist *)target)->max;
6244 break;
6245 case LYS_LIST:
6246 num = &((struct lysp_node_list *)target)->max;
6247 break;
6248 default:
6249 AMEND_WRONG_NODETYPE("deviation", "replace", "max-elements");
6250 }
6251
6252 if (!(target->flags & LYS_SET_MAX)) {
6253 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6254 "Invalid deviation replacing \"max-elements\" property which is not present.");
6255 ret = LY_EVALID;
6256 goto cleanup;
6257 }
6258
6259 *num = d->max;
6260 }
6261
6262cleanup:
6263 return ret;
6264}
6265
6266/**
6267 * @brief Get module of a single nodeid node name test.
6268 *
6269 * @param[in] ctx libyang context.
6270 * @param[in] nametest Nametest with an optional prefix.
6271 * @param[in] nametest_len Length of @p nametest.
6272 * @param[in] local_mod Module to return in case of no prefix.
6273 * @param[out] name Optional pointer to the name test without the prefix.
6274 * @param[out] name_len Length of @p name.
6275 * @return Resolved module.
6276 */
6277static const struct lys_module *
6278lys_schema_node_get_module(const struct ly_ctx *ctx, const char *nametest, size_t nametest_len,
6279 const struct lys_module *local_mod, const char **name, size_t *name_len)
6280{
6281 const struct lys_module *target_mod;
6282 const char *ptr;
6283
6284 ptr = ly_strnchr(nametest, ':', nametest_len);
6285 if (ptr) {
6286 target_mod = ly_resolve_prefix(ctx, nametest, ptr - nametest, LY_PREF_SCHEMA, (void *)local_mod);
6287 if (!target_mod) {
6288 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE,
6289 "Invalid absolute-schema-nodeid nametest \"%.*s\" - prefix \"%.*s\" not defined in module \"%s\".",
6290 nametest_len, nametest, ptr - nametest, nametest, local_mod->name);
6291 return NULL;
6292 }
6293
6294 if (name) {
6295 *name = ptr + 1;
6296 *name_len = nametest_len - ((ptr - nametest) + 1);
6297 }
6298 } else {
6299 target_mod = local_mod;
6300 if (name) {
6301 *name = nametest;
6302 *name_len = nametest_len;
6303 }
6304 }
6305
6306 return target_mod;
6307}
6308
6309/**
6310 * @brief Check whether a parsed node matches a single schema nodeid name test.
6311 *
6312 * @param[in] pnode Parsed node to consider.
6313 * @param[in] pnode_mod Compiled @p pnode to-be module.
6314 * @param[in] mod Expected module.
6315 * @param[in] name Expected name.
6316 * @param[in] name_len Length of @p name.
6317 * @return Whether it is a match or not.
6318 */
6319static ly_bool
6320lysp_schema_nodeid_match_pnode(const struct lysp_node *pnode, const struct lys_module *pnode_mod,
6321 const struct lys_module *mod, const char *name, size_t name_len)
6322{
6323 const char *pname;
6324
6325 /* compare with the module of the node */
6326 if (pnode_mod != mod) {
6327 return 0;
6328 }
6329
6330 /* compare names */
6331 if (pnode->nodetype & (LYS_ACTION | LYS_RPC)) {
6332 pname = ((struct lysp_action *)pnode)->name;
6333 } else if (pnode->nodetype & (LYS_INPUT | LYS_OUTPUT)) {
6334 pname = (pnode->nodetype & LYS_INPUT) ? "input" : "output";
6335 } else {
6336 pname = pnode->name;
6337 }
6338 if (ly_strncmp(pname, name, name_len)) {
6339 return 0;
6340 }
6341
6342 return 1;
6343}
6344
6345/**
6346 * @brief Check whether a compiled node matches a single schema nodeid name test.
6347 *
6348 * @param[in,out] node Compiled node to consider. On a match it is moved to its parent.
6349 * @param[in] mod Expected module.
6350 * @param[in] name Expected name.
6351 * @param[in] name_len Length of @p name.
6352 * @return Whether it is a match or not.
6353 */
6354static ly_bool
6355lysp_schema_nodeid_match_node(const struct lysc_node **node, const struct lys_module *mod, const char *name,
6356 size_t name_len)
6357{
6358 const struct lys_module *node_mod;
6359 const char *node_name;
6360
6361 /* compare with the module of the node */
6362 if ((*node)->nodetype == LYS_INPUT) {
6363 node_mod = ((struct lysc_node *)(((char *)*node) - offsetof(struct lysc_action, input)))->module;
6364 } else if ((*node)->nodetype == LYS_OUTPUT) {
6365 node_mod = ((struct lysc_node *)(((char *)*node) - offsetof(struct lysc_action, output)))->module;
6366 } else {
6367 node_mod = (*node)->module;
6368 }
6369 if (node_mod != mod) {
6370 return 0;
6371 }
6372
6373 /* compare names */
6374 if ((*node)->nodetype == LYS_INPUT) {
6375 node_name = "input";
6376 } else if ((*node)->nodetype == LYS_OUTPUT) {
6377 node_name = "output";
6378 } else {
6379 node_name = (*node)->name;
6380 }
6381 if (ly_strncmp(node_name, name, name_len)) {
6382 return 0;
6383 }
6384
6385 if ((*node)->nodetype & (LYS_INPUT | LYS_OUTPUT)) {
6386 /* move up from input/output */
6387 if ((*node)->nodetype == LYS_INPUT) {
6388 (*node) = (struct lysc_node *)(((char *)*node) - offsetof(struct lysc_action, input));
6389 } else {
6390 (*node) = (struct lysc_node *)(((char *)*node) - offsetof(struct lysc_action, output));
6391 }
6392 } else if ((*node)->parent && ((*node)->parent->nodetype & (LYS_RPC | LYS_ACTION))) {
6393 /* move to the input/output */
6394 if ((*node)->flags & LYS_CONFIG_W) {
6395 *node = (struct lysc_node *)&((struct lysc_action *)(*node)->parent)->input;
6396 } else {
6397 *node = (struct lysc_node *)&((struct lysc_action *)(*node)->parent)->output;
6398 }
6399 } else {
6400 /* move to next parent */
6401 *node = (*node)->parent;
6402 }
6403
6404 return 1;
6405}
6406
6407/**
6408 * @brief Check whether a node matches specific schema nodeid.
6409 *
6410 * @param[in] exp Parsed nodeid to match.
6411 * @param[in] exp_mod Module to use for nodes in @p exp without a prefix.
6412 * @param[in] ctx_node Initial context node that should match, only for descendant paths.
6413 * @param[in] parent First compiled parent to consider. If @p pnode is NULL, it is condered the node to be matched.
6414 * @param[in] pnode Parsed node to be matched. May be NULL if the target node was already compiled.
6415 * @param[in] pnode_mod Compiled @p pnode to-be module.
6416 * @return Whether it is a match or not.
6417 */
6418static ly_bool
6419lysp_schema_nodeid_match(const struct lyxp_expr *exp, const struct lys_module *exp_mod, const struct lysc_node *ctx_node,
6420 const struct lysc_node *parent, const struct lysp_node *pnode, const struct lys_module *pnode_mod)
6421{
6422 uint32_t i;
6423 const struct lys_module *mod;
6424 const char *name;
6425 size_t name_len;
6426
6427 /* compare last node in the node ID */
6428 i = exp->used - 1;
6429
6430 /* get exp node ID module */
6431 mod = lys_schema_node_get_module(exp_mod->ctx, exp->expr + exp->tok_pos[i], exp->tok_len[i], exp_mod, &name, &name_len);
6432 assert(mod);
6433
6434 if (pnode) {
6435 /* compare on the last parsed-only node */
6436 if (!lysp_schema_nodeid_match_pnode(pnode, pnode_mod, mod, name, name_len)) {
6437 return 0;
6438 }
6439 } else {
6440 /* using parent directly */
6441 if (!lysp_schema_nodeid_match_node(&parent, mod, name, name_len)) {
6442 return 0;
6443 }
6444 }
6445
6446 /* now compare all the compiled parents */
6447 while (i > 1) {
6448 i -= 2;
6449 assert(exp->tokens[i] == LYXP_TOKEN_NAMETEST);
6450
6451 if (!parent) {
6452 /* no more parents but path continues */
6453 return 0;
6454 }
6455
6456 /* get exp node ID module */
6457 mod = lys_schema_node_get_module(exp_mod->ctx, exp->expr + exp->tok_pos[i], exp->tok_len[i], exp_mod, &name,
6458 &name_len);
6459 assert(mod);
6460
6461 /* compare with the parent */
6462 if (!lysp_schema_nodeid_match_node(&parent, mod, name, name_len)) {
6463 return 0;
6464 }
6465 }
6466
6467 if (ctx_node && (ctx_node != parent)) {
6468 /* descendant path has not finished in the context node */
6469 return 0;
6470 } else if (!ctx_node && parent) {
6471 /* some parent was not matched */
6472 return 0;
6473 }
6474
6475 return 1;
6476}
6477
6478static void
6479lysc_augment_free(const struct ly_ctx *ctx, struct lysc_augment *aug)
6480{
6481 if (aug) {
6482 lyxp_expr_free(ctx, aug->nodeid);
6483
6484 free(aug);
6485 }
6486}
6487
6488static void
6489lysc_deviation_free(const struct ly_ctx *ctx, struct lysc_deviation *dev)
6490{
6491 if (dev) {
6492 lyxp_expr_free(ctx, dev->nodeid);
6493 LY_ARRAY_FREE(dev->devs);
6494 LY_ARRAY_FREE(dev->dev_mods);
6495
6496 free(dev);
6497 }
6498}
6499
6500static void
6501lysc_refine_free(const struct ly_ctx *ctx, struct lysc_refine *rfn)
6502{
6503 if (rfn) {
6504 lyxp_expr_free(ctx, rfn->nodeid);
6505 LY_ARRAY_FREE(rfn->rfns);
6506
6507 free(rfn);
6508 }
6509}
6510
6511static void
6512lysp_dev_node_free(const struct ly_ctx *ctx, struct lysp_node *dev_pnode)
6513{
6514 if (!dev_pnode) {
6515 return;
6516 }
6517
6518 switch (dev_pnode->nodetype) {
6519 case LYS_CONTAINER:
6520 ((struct lysp_node_container *)dev_pnode)->child = NULL;
6521 break;
6522 case LYS_LIST:
6523 ((struct lysp_node_list *)dev_pnode)->child = NULL;
6524 break;
6525 case LYS_CHOICE:
6526 ((struct lysp_node_choice *)dev_pnode)->child = NULL;
6527 break;
6528 case LYS_CASE:
6529 ((struct lysp_node_case *)dev_pnode)->child = NULL;
6530 break;
6531 case LYS_LEAF:
6532 case LYS_LEAFLIST:
6533 case LYS_ANYXML:
6534 case LYS_ANYDATA:
6535 /* no children */
6536 break;
6537 case LYS_NOTIF:
6538 ((struct lysp_notif *)dev_pnode)->data = NULL;
6539 lysp_notif_free((struct ly_ctx *)ctx, (struct lysp_notif *)dev_pnode);
6540 free(dev_pnode);
6541 return;
6542 case LYS_RPC:
6543 case LYS_ACTION:
6544 ((struct lysp_action *)dev_pnode)->input.data = NULL;
6545 ((struct lysp_action *)dev_pnode)->output.data = NULL;
6546 lysp_action_free((struct ly_ctx *)ctx, (struct lysp_action *)dev_pnode);
6547 free(dev_pnode);
6548 return;
6549 case LYS_INPUT:
6550 case LYS_OUTPUT:
6551 ((struct lysp_action_inout *)dev_pnode)->data = NULL;
6552 lysp_action_inout_free((struct ly_ctx *)ctx, (struct lysp_action_inout *)dev_pnode);
6553 free(dev_pnode);
6554 return;
6555 default:
6556 LOGINT(ctx);
6557 return;
6558 }
6559
6560 lysp_node_free((struct ly_ctx *)ctx, dev_pnode);
6561}
6562
6563/**
6564 * @brief Compile and apply any precompiled deviations and refines targetting a node.
6565 *
6566 * @param[in] ctx Compile context.
6567 * @param[in] pnode Parsed node to consider.
6568 * @param[in] parent First compiled parent of @p pnode.
6569 * @param[out] dev_pnode Copy of parsed node @p pnode with deviations and refines, if any. NULL if there are none.
6570 * @param[out] no_supported Whether a not-supported deviation is defined for the node.
6571 * @return LY_ERR value.
6572 */
6573static LY_ERR
6574lys_compile_node_deviations_refines(struct lysc_ctx *ctx, const struct lysp_node *pnode, const struct lysc_node *parent,
6575 struct lysp_node **dev_pnode, ly_bool *not_supported)
6576{
6577 LY_ERR ret = LY_SUCCESS;
6578 uint32_t i;
6579 LY_ARRAY_COUNT_TYPE u;
6580 struct lys_module *orig_mod = ctx->mod, *orig_mod_def = ctx->mod_def;
6581 char orig_path[LYSC_CTX_BUFSIZE];
6582 struct lysc_refine *rfn;
6583 struct lysc_deviation *dev;
6584 struct lysp_deviation *dev_p;
6585 struct lysp_deviate *d;
6586
6587 *dev_pnode = NULL;
6588 *not_supported = 0;
6589
6590 for (i = 0; i < ctx->uses_rfns.count; ++i) {
6591 rfn = ctx->uses_rfns.objs[i];
6592
6593 if (!lysp_schema_nodeid_match(rfn->nodeid, ctx->mod, rfn->nodeid_ctx_node, parent, pnode, ctx->mod)) {
6594 /* not our target node */
6595 continue;
6596 }
6597
6598 if (!*dev_pnode) {
6599 /* first refine on this node, create a copy first */
6600 LY_CHECK_GOTO(ret = lysp_dup_single(ctx->ctx, pnode, 1, dev_pnode), cleanup);
6601 }
6602
6603 /* apply all the refines by changing (the copy of) the parsed node */
6604 LY_ARRAY_FOR(rfn->rfns, u) {
6605 /* apply refine, keep the current path and add to it */
6606 lysc_update_path(ctx, NULL, "{refine}");
6607 lysc_update_path(ctx, NULL, rfn->rfns[u]->nodeid);
6608 ret = lys_apply_refine(ctx, rfn->rfns[u], *dev_pnode);
6609 lysc_update_path(ctx, NULL, NULL);
6610 lysc_update_path(ctx, NULL, NULL);
6611 LY_CHECK_GOTO(ret, cleanup);
6612 }
6613
6614 /* refine was applied, remove it */
6615 lysc_refine_free(ctx->ctx, rfn);
6616 ly_set_rm_index(&ctx->uses_rfns, i, NULL);
6617
6618 /* all the refines for one target node are in one structure, we are done */
6619 break;
6620 }
6621
6622 for (i = 0; i < ctx->devs.count; ++i) {
6623 dev = ctx->devs.objs[i];
6624
6625 if (!lysp_schema_nodeid_match(dev->nodeid, dev->nodeid_mod, NULL, parent, pnode, ctx->mod_def)) {
6626 /* not our target node */
6627 continue;
6628 }
6629
6630 if (dev->not_supported) {
6631 /* it is not supported, no more deviations */
6632 *not_supported = 1;
6633 goto dev_applied;
6634 }
6635
6636 if (!*dev_pnode) {
6637 /* first deviation on this node, create a copy first */
6638 LY_CHECK_GOTO(ret = lysp_dup_single(ctx->ctx, pnode, 1, dev_pnode), cleanup);
6639 }
6640
6641 /* apply all the deviates by changing (the copy of) the parsed node */
6642 LY_ARRAY_FOR(dev->devs, u) {
6643 dev_p = dev->devs[u];
6644 LY_LIST_FOR(dev_p->deviates, d) {
6645 /* generate correct path */
6646 strcpy(orig_path, ctx->path);
6647 ctx->path_len = 1;
6648 ctx->mod = (struct lys_module *)dev->dev_mods[u];
6649 ctx->mod_def = (struct lys_module *)dev->dev_mods[u];
6650 lysc_update_path(ctx, NULL, "{deviation}");
6651 lysc_update_path(ctx, NULL, dev_p->nodeid);
6652
6653 switch (d->mod) {
6654 case LYS_DEV_ADD:
6655 ret = lys_apply_deviate_add(ctx, (struct lysp_deviate_add *)d, *dev_pnode);
6656 break;
6657 case LYS_DEV_DELETE:
6658 ret = lys_apply_deviate_delete(ctx, (struct lysp_deviate_del *)d, *dev_pnode);
6659 break;
6660 case LYS_DEV_REPLACE:
6661 ret = lys_apply_deviate_replace(ctx, (struct lysp_deviate_rpl *)d, *dev_pnode);
6662 break;
6663 default:
6664 LOGINT(ctx->ctx);
6665 ret = LY_EINT;
6666 }
6667
6668 /* restore previous path */
6669 strcpy(ctx->path, orig_path);
6670 ctx->path_len = strlen(ctx->path);
6671 ctx->mod = orig_mod;
6672 ctx->mod_def = orig_mod_def;
6673
6674 LY_CHECK_GOTO(ret, cleanup);
6675 }
6676 }
6677
6678dev_applied:
6679 /* deviation was applied, remove it */
6680 lysc_deviation_free(ctx->ctx, dev);
6681 ly_set_rm_index(&ctx->devs, i, NULL);
6682
6683 /* all the deviations for one target node are in one structure, we are done */
6684 break;
6685 }
6686
6687cleanup:
6688 if (ret) {
6689 lysp_dev_node_free(ctx->ctx, *dev_pnode);
6690 *dev_pnode = NULL;
6691 *not_supported = 0;
6692 }
6693 return ret;
6694}
6695
6696/**
6697 * @brief Compile and apply any precompiled top-level or uses augments targetting a node.
6698 *
6699 * @param[in] ctx Compile context.
6700 * @param[in] node Compiled node to consider.
6701 * @return LY_ERR value.
6702 */
6703static LY_ERR
6704lys_compile_node_augments(struct lysc_ctx *ctx, struct lysc_node *node)
6705{
6706 LY_ERR ret = LY_SUCCESS;
6707 struct lys_module *orig_mod = ctx->mod, *orig_mod_def = ctx->mod_def;
6708 uint32_t i;
6709 char orig_path[LYSC_CTX_BUFSIZE];
6710 struct lysc_augment *aug;
6711
6712 /* uses augments */
6713 for (i = 0; i < ctx->uses_augs.count; ) {
6714 aug = ctx->uses_augs.objs[i];
6715
6716 if (!lysp_schema_nodeid_match(aug->nodeid, ctx->mod, aug->nodeid_ctx_node, node, NULL, NULL)) {
6717 /* not our target node */
6718 ++i;
6719 continue;
6720 }
6721
6722 /* apply augment, keep the current path and add to it */
6723 lysc_update_path(ctx, NULL, "{augment}");
6724 lysc_update_path(ctx, NULL, aug->aug_p->nodeid);
6725 ret = lys_compile_augment(ctx, aug->aug_p, node);
6726 lysc_update_path(ctx, NULL, NULL);
6727 lysc_update_path(ctx, NULL, NULL);
6728 LY_CHECK_GOTO(ret, cleanup);
6729
6730 /* augment was applied, remove it (index may have changed because other augments could have been applied) */
Michal Vasko7f45cf22020-10-01 12:49:44 +02006731 ly_set_rm(&ctx->uses_augs, aug, NULL);
Michal Vaskoaf702452020-10-02 09:02:55 +02006732 lysc_augment_free(ctx->ctx, aug);
Michal Vasko7f45cf22020-10-01 12:49:44 +02006733 }
6734
6735 /* top-level augments */
6736 for (i = 0; i < ctx->augs.count; ) {
6737 aug = ctx->augs.objs[i];
6738
6739 if (!lysp_schema_nodeid_match(aug->nodeid, aug->nodeid_mod, NULL, node, NULL, NULL)) {
6740 /* not our target node */
6741 ++i;
6742 continue;
6743 }
6744
6745 /* apply augment, use the path and modules from the augment */
6746 strcpy(orig_path, ctx->path);
6747 ctx->path_len = 1;
6748 lysc_update_path(ctx, NULL, "{augment}");
6749 lysc_update_path(ctx, NULL, aug->aug_p->nodeid);
6750 ctx->mod = (struct lys_module *)aug->nodeid_mod;
6751 ctx->mod_def = (struct lys_module *)aug->nodeid_mod;
6752 ret = lys_compile_augment(ctx, aug->aug_p, node);
6753 strcpy(ctx->path, orig_path);
6754 ctx->path_len = strlen(ctx->path);
6755 LY_CHECK_GOTO(ret, cleanup);
6756
6757 /* augment was applied, remove it */
Michal Vasko7f45cf22020-10-01 12:49:44 +02006758 ly_set_rm(&ctx->augs, aug, NULL);
Michal Vaskoaf702452020-10-02 09:02:55 +02006759 lysc_augment_free(ctx->ctx, aug);
Michal Vasko7f45cf22020-10-01 12:49:44 +02006760 }
6761
6762cleanup:
6763 ctx->mod = orig_mod;
6764 ctx->mod_def = orig_mod_def;
6765 return ret;
6766}
6767
6768/**
6769 * @brief Prepare a top-level augment to be applied during data nodes compilation.
6770 *
6771 * @param[in] ctx Compile context.
6772 * @param[in] aug_p Parsed augment to be applied.
6773 * @param[in] mod_def Local module for @p aug_p.
6774 * @return LY_ERR value.
6775 */
6776static LY_ERR
6777lys_precompile_own_augment(struct lysc_ctx *ctx, struct lysp_augment *aug_p, const struct lys_module *mod_def)
6778{
6779 LY_ERR ret = LY_SUCCESS;
6780 struct lyxp_expr *exp = NULL;
6781 struct lysc_augment *aug;
6782 const struct lys_module *mod;
6783
6784 /* parse its target, it was already parsed and fully checked (except for the existence of the nodes) */
6785 ret = lyxp_expr_parse(ctx->ctx, aug_p->nodeid, strlen(aug_p->nodeid), 0, &exp);
6786 LY_CHECK_GOTO(ret, cleanup);
6787
6788 mod = lys_schema_node_get_module(ctx->ctx, exp->expr + exp->tok_pos[1], exp->tok_len[1], mod_def, NULL, NULL);
6789 LY_CHECK_ERR_GOTO(!mod, LOGINT(ctx->ctx); ret = LY_EINT, cleanup);
6790 if (mod != ctx->mod) {
6791 /* augment for another module, ignore */
6792 goto cleanup;
6793 }
6794
6795 /* allocate new compiled augment and store it in the set */
6796 aug = calloc(1, sizeof *aug);
6797 LY_CHECK_ERR_GOTO(!aug, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
6798 LY_CHECK_GOTO(ret = ly_set_add(&ctx->augs, aug, LY_SET_OPT_USEASLIST, NULL), cleanup);
6799
6800 aug->nodeid = exp;
6801 exp = NULL;
6802 aug->nodeid_mod = mod_def;
6803 aug->aug_p = aug_p;
6804
6805cleanup:
6806 lyxp_expr_free(ctx->ctx, exp);
6807 return ret;
6808}
6809
6810/**
6811 * @brief Prepare all top-level augments for the current module to be applied during data nodes compilation.
6812 *
6813 * @param[in] ctx Compile context.
6814 * @return LY_ERR value.
6815 */
6816static LY_ERR
6817lys_precompile_own_augments(struct lysc_ctx *ctx)
6818{
6819 LY_ARRAY_COUNT_TYPE u, v, w;
6820 const struct lys_module *aug_mod;
6821
6822 LY_ARRAY_FOR(ctx->mod->augmented_by, u) {
6823 aug_mod = ctx->mod->augmented_by[u];
6824
6825 /* collect all module augments */
6826 LY_ARRAY_FOR(aug_mod->parsed->augments, v) {
6827 LY_CHECK_RET(lys_precompile_own_augment(ctx, &aug_mod->parsed->augments[v], aug_mod));
6828 }
6829
6830 /* collect all submodules augments */
6831 LY_ARRAY_FOR(aug_mod->parsed->includes, v) {
6832 LY_ARRAY_FOR(aug_mod->parsed->includes[v].submodule->augments, w) {
6833 LY_CHECK_RET(lys_precompile_own_augment(ctx, &aug_mod->parsed->includes[v].submodule->augments[w], aug_mod));
6834 }
6835 }
6836 }
6837
6838 return LY_SUCCESS;
6839}
6840
6841/**
6842 * @brief Prepare a deviation to be applied during data nodes compilation.
6843 *
6844 * @param[in] ctx Compile context.
6845 * @param[in] dev_p Parsed deviation to be applied.
6846 * @param[in] mod_def Local module for @p dev_p.
6847 * @return LY_ERR value.
6848 */
6849static LY_ERR
6850lys_precompile_own_deviation(struct lysc_ctx *ctx, struct lysp_deviation *dev_p, const struct lys_module *mod_def)
6851{
6852 LY_ERR ret = LY_SUCCESS;
6853 struct lysc_deviation *dev = NULL;
6854 struct lyxp_expr *exp = NULL;
6855 struct lysp_deviation **new_dev;
6856 const struct lys_module *mod, **new_dev_mod;
6857 uint32_t i;
6858
6859 /* parse its target, it was already parsed and fully checked (except for the existence of the nodes) */
6860 ret = lyxp_expr_parse(ctx->ctx, dev_p->nodeid, strlen(dev_p->nodeid), 0, &exp);
6861 LY_CHECK_GOTO(ret, cleanup);
6862
6863 mod = lys_schema_node_get_module(ctx->ctx, exp->expr + exp->tok_pos[1], exp->tok_len[1], mod_def, NULL, NULL);
6864 LY_CHECK_ERR_GOTO(!mod, LOGINT(ctx->ctx); ret = LY_EINT, cleanup);
6865 if (mod != ctx->mod) {
6866 /* deviation for another module, ignore */
6867 goto cleanup;
6868 }
6869
6870 /* try to find the node in already compiled deviations */
6871 for (i = 0; i < ctx->devs.count; ++i) {
6872 if (lys_abs_schema_nodeid_match(ctx->ctx, exp, mod_def, ((struct lysc_deviation *)ctx->devs.objs[i])->nodeid,
6873 ((struct lysc_deviation *)ctx->devs.objs[i])->nodeid_mod)) {
6874 dev = ctx->devs.objs[i];
6875 break;
6876 }
6877 }
6878
6879 if (!dev) {
6880 /* allocate new compiled deviation */
6881 dev = calloc(1, sizeof *dev);
6882 LY_CHECK_ERR_GOTO(!dev, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
6883 LY_CHECK_GOTO(ret = ly_set_add(&ctx->devs, dev, LY_SET_OPT_USEASLIST, NULL), cleanup);
6884
6885 dev->nodeid = exp;
6886 exp = NULL;
6887 dev->nodeid_mod = mod_def;
6888 }
6889
6890 /* add new parsed deviation structure */
6891 LY_ARRAY_NEW_GOTO(ctx->ctx, dev->devs, new_dev, ret, cleanup);
6892 *new_dev = dev_p;
6893 LY_ARRAY_NEW_GOTO(ctx->ctx, dev->dev_mods, new_dev_mod, ret, cleanup);
6894 *new_dev_mod = mod_def;
6895
6896cleanup:
6897 lyxp_expr_free(ctx->ctx, exp);
6898 return ret;
6899}
6900
6901/**
6902 * @brief Prepare all deviations for the current module to be applied during data nodes compilation.
6903 *
6904 * @param[in] ctx Compile context.
6905 * @return LY_ERR value.
6906 */
6907static LY_ERR
6908lys_precompile_own_deviations(struct lysc_ctx *ctx)
6909{
6910 LY_ARRAY_COUNT_TYPE u, v, w;
6911 const struct lys_module *dev_mod;
6912 struct lysc_deviation *dev;
6913 struct lysp_deviate *d;
6914 int not_supported;
6915 uint32_t i;
6916
6917 LY_ARRAY_FOR(ctx->mod->deviated_by, u) {
6918 dev_mod = ctx->mod->deviated_by[u];
6919
6920 /* compile all module deviations */
6921 LY_ARRAY_FOR(dev_mod->parsed->deviations, v) {
6922 LY_CHECK_RET(lys_precompile_own_deviation(ctx, &dev_mod->parsed->deviations[v], dev_mod));
6923 }
6924
6925 /* compile all submodules deviations */
6926 LY_ARRAY_FOR(dev_mod->parsed->includes, v) {
6927 LY_ARRAY_FOR(dev_mod->parsed->includes[v].submodule->deviations, w) {
6928 LY_CHECK_RET(lys_precompile_own_deviation(ctx, &dev_mod->parsed->includes[v].submodule->deviations[w], dev_mod));
6929 }
6930 }
6931 }
6932
6933 /* set not-supported flags for all the deviations */
6934 for (i = 0; i < ctx->devs.count; ++i) {
6935 dev = ctx->devs.objs[i];
6936 not_supported = 0;
6937
6938 LY_ARRAY_FOR(dev->devs, u) {
6939 LY_LIST_FOR(dev->devs[u]->deviates, d) {
6940 if (d->mod == LYS_DEV_NOT_SUPPORTED) {
6941 not_supported = 1;
6942 break;
6943 }
6944 }
6945 if (not_supported) {
6946 break;
6947 }
6948 }
6949 if (not_supported && (LY_ARRAY_COUNT(dev->devs) > 1)) {
6950 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6951 "Multiple deviations of \"%s\" with one of them being \"not-supported\".", dev->nodeid->expr);
6952 return LY_EVALID;
6953 }
6954
6955 dev->not_supported = not_supported;
6956 }
6957
6958 return LY_SUCCESS;
6959}
6960
Michal Vasko20424b42020-08-31 12:29:38 +02006961/**
Radek Krejcia3045382018-11-22 14:30:31 +01006962 * @brief Compile parsed schema node information.
6963 * @param[in] ctx Compile context
Michal Vasko7f45cf22020-10-01 12:49:44 +02006964 * @param[in] pnode Parsed schema node.
Radek Krejcia3045382018-11-22 14:30:31 +01006965 * @param[in] parent Compiled parent node where the current node is supposed to be connected. It is
6966 * NULL for top-level nodes, in such a case the module where the node will be connected is taken from
6967 * the compile context.
Radek Krejcib1b59152019-01-07 13:21:56 +01006968 * @param[in] uses_status If the node is being placed instead of uses, here we have the uses's status value (as node's flags).
6969 * Zero means no uses, non-zero value with no status bit set mean the default status.
Radek Krejcia3045382018-11-22 14:30:31 +01006970 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
6971 */
Radek Krejci19a96102018-11-15 13:38:09 +01006972static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02006973lys_compile_node(struct lysc_ctx *ctx, struct lysp_node *pnode, struct lysc_node *parent, uint16_t uses_status,
6974 struct ly_set *child_set)
Radek Krejci19a96102018-11-15 13:38:09 +01006975{
Radek Krejci1c54f462020-05-12 17:25:34 +02006976 LY_ERR ret = LY_SUCCESS;
Radek Krejcic6b4f442020-08-12 14:45:18 +02006977 struct lysc_node *node = NULL;
Radek Krejci00b874b2019-02-12 10:54:50 +01006978 struct lysc_when **when;
Michal Vasko7f45cf22020-10-01 12:49:44 +02006979 struct lysp_node *dev_pnode = NULL, *orig_pnode = pnode;
Radek Krejci1deb5be2020-08-26 16:43:36 +02006980 LY_ARRAY_COUNT_TYPE u;
Michal Vasko7f45cf22020-10-01 12:49:44 +02006981 ly_bool not_supported;
Michal Vasko22df3f02020-08-24 13:29:22 +02006982 LY_ERR (*node_compile_spec)(struct lysc_ctx *, struct lysp_node *, struct lysc_node *);
Radek Krejci19a96102018-11-15 13:38:09 +01006983
Michal Vasko7f45cf22020-10-01 12:49:44 +02006984 if (pnode->nodetype != LYS_USES) {
6985 lysc_update_path(ctx, parent, pnode->name);
Radek Krejci327de162019-06-14 12:52:07 +02006986 } else {
6987 lysc_update_path(ctx, NULL, "{uses}");
Michal Vasko7f45cf22020-10-01 12:49:44 +02006988 lysc_update_path(ctx, NULL, pnode->name);
Radek Krejci327de162019-06-14 12:52:07 +02006989 }
6990
Michal Vasko7f45cf22020-10-01 12:49:44 +02006991 switch (pnode->nodetype) {
Radek Krejci19a96102018-11-15 13:38:09 +01006992 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02006993 node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_container));
Radek Krejci19a96102018-11-15 13:38:09 +01006994 node_compile_spec = lys_compile_node_container;
6995 break;
6996 case LYS_LEAF:
Michal Vasko22df3f02020-08-24 13:29:22 +02006997 node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_leaf));
Radek Krejci19a96102018-11-15 13:38:09 +01006998 node_compile_spec = lys_compile_node_leaf;
6999 break;
7000 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02007001 node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_list));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01007002 node_compile_spec = lys_compile_node_list;
Radek Krejci19a96102018-11-15 13:38:09 +01007003 break;
7004 case LYS_LEAFLIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02007005 node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_leaflist));
Radek Krejci0e5d8382018-11-28 16:37:53 +01007006 node_compile_spec = lys_compile_node_leaflist;
Radek Krejci19a96102018-11-15 13:38:09 +01007007 break;
Radek Krejci19a96102018-11-15 13:38:09 +01007008 case LYS_CHOICE:
Michal Vasko22df3f02020-08-24 13:29:22 +02007009 node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_choice));
Radek Krejci056d0a82018-12-06 16:57:25 +01007010 node_compile_spec = lys_compile_node_choice;
Radek Krejci19a96102018-11-15 13:38:09 +01007011 break;
Michal Vasko7f45cf22020-10-01 12:49:44 +02007012 case LYS_CASE:
Michal Vasko20424b42020-08-31 12:29:38 +02007013 node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_case));
7014 node_compile_spec = lys_compile_node_case;
7015 break;
Radek Krejci19a96102018-11-15 13:38:09 +01007016 case LYS_ANYXML:
7017 case LYS_ANYDATA:
Michal Vasko22df3f02020-08-24 13:29:22 +02007018 node = (struct lysc_node *)calloc(1, sizeof(struct lysc_node_anydata));
Radek Krejci9800fb82018-12-13 14:26:23 +01007019 node_compile_spec = lys_compile_node_any;
Radek Krejci19a96102018-11-15 13:38:09 +01007020 break;
Radek Krejcie86bf772018-12-14 11:39:53 +01007021 case LYS_USES:
Michal Vasko7f45cf22020-10-01 12:49:44 +02007022 ret = lys_compile_uses(ctx, (struct lysp_node_uses *)pnode, parent, child_set);
Radek Krejci327de162019-06-14 12:52:07 +02007023 lysc_update_path(ctx, NULL, NULL);
7024 lysc_update_path(ctx, NULL, NULL);
7025 return ret;
Radek Krejci19a96102018-11-15 13:38:09 +01007026 default:
7027 LOGINT(ctx->ctx);
7028 return LY_EINT;
7029 }
7030 LY_CHECK_ERR_RET(!node, LOGMEM(ctx->ctx), LY_EMEM);
Michal Vasko7f45cf22020-10-01 12:49:44 +02007031
7032 /* compile any deviations for this node */
7033 LY_CHECK_ERR_RET(ret = lys_compile_node_deviations_refines(ctx, pnode, parent, &dev_pnode, &not_supported),
7034 free(node), ret);
7035 if (not_supported) {
7036 free(node);
7037 lysc_update_path(ctx, NULL, NULL);
7038 return LY_SUCCESS;
7039 } else if (dev_pnode) {
7040 pnode = dev_pnode;
7041 }
7042
7043 node->nodetype = pnode->nodetype;
Radek Krejci19a96102018-11-15 13:38:09 +01007044 node->module = ctx->mod;
7045 node->prev = node;
Michal Vasko7f45cf22020-10-01 12:49:44 +02007046 node->flags = pnode->flags & LYS_FLAGS_COMPILED_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +01007047
7048 /* config */
Michal Vasko20424b42020-08-31 12:29:38 +02007049 ret = lys_compile_config(ctx, node, parent);
7050 LY_CHECK_GOTO(ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01007051
Michal Vasko20424b42020-08-31 12:29:38 +02007052 /* list ordering */
Radek Krejcia6d57732018-11-29 13:40:37 +01007053 if (node->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
7054 if ((node->flags & LYS_CONFIG_R) && (node->flags & LYS_ORDBY_MASK)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02007055 LOGWRN(ctx->ctx, "The ordered-by statement is ignored in lists representing %s (%s).",
Radek Krejci0f969882020-08-21 16:56:47 +02007056 (ctx->options & LYSC_OPT_RPC_OUTPUT) ? "RPC/action output parameters" :
7057 (ctx->options & LYSC_OPT_NOTIFICATION) ? "notification content" : "state data", ctx->path);
Radek Krejcia6d57732018-11-29 13:40:37 +01007058 node->flags &= ~LYS_ORDBY_MASK;
7059 node->flags |= LYS_ORDBY_SYSTEM;
7060 } else if (!(node->flags & LYS_ORDBY_MASK)) {
7061 /* default ordering is system */
7062 node->flags |= LYS_ORDBY_SYSTEM;
7063 }
7064 }
7065
Radek Krejci19a96102018-11-15 13:38:09 +01007066 /* status - it is not inherited by specification, but it does not make sense to have
7067 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
Michal Vasko20424b42020-08-31 12:29:38 +02007068 LY_CHECK_GOTO(ret = lys_compile_status(ctx, &node->flags, uses_status ? uses_status : (parent ? parent->flags : 0)), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007069
Radek Krejciec4da802019-05-02 13:02:41 +02007070 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02007071 node->sp = orig_pnode;
Radek Krejci19a96102018-11-15 13:38:09 +01007072 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02007073 DUP_STRING_GOTO(ctx->ctx, pnode->name, node->name, ret, error);
7074 DUP_STRING_GOTO(ctx->ctx, pnode->dsc, node->dsc, ret, error);
7075 DUP_STRING_GOTO(ctx->ctx, pnode->ref, node->ref, ret, error);
7076 if (pnode->when) {
Radek Krejci00b874b2019-02-12 10:54:50 +01007077 LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error);
Michal Vasko7f45cf22020-10-01 12:49:44 +02007078 LY_CHECK_GOTO(ret = lys_compile_when(ctx, pnode->when, pnode->flags, node, when), error);
Michal Vasko175012e2019-11-06 15:49:14 +01007079
7080 if (!(ctx->options & LYSC_OPT_GROUPING)) {
7081 /* do not check "when" semantics in a grouping */
Michal Vasko7f45cf22020-10-01 12:49:44 +02007082 LY_CHECK_GOTO(ret = ly_set_add(&ctx->xpath, node, 0, NULL), error);
Michal Vasko175012e2019-11-06 15:49:14 +01007083 }
Radek Krejci00b874b2019-02-12 10:54:50 +01007084 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02007085 COMPILE_ARRAY_GOTO(ctx, pnode->iffeatures, node->iffeatures, u, lys_compile_iffeature, ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01007086
Michal Vasko20424b42020-08-31 12:29:38 +02007087 /* insert into parent's children/compiled module (we can no longer free the node separately on error) */
Michal Vasko7f45cf22020-10-01 12:49:44 +02007088 LY_CHECK_GOTO(ret = lys_compile_node_connect(ctx, parent, node), cleanup);
7089
7090 /* connect any augments */
7091 LY_CHECK_GOTO(ret = lys_compile_node_augments(ctx, node), cleanup);
Michal Vasko20424b42020-08-31 12:29:38 +02007092
Radek Krejci19a96102018-11-15 13:38:09 +01007093 /* nodetype-specific part */
Michal Vasko7f45cf22020-10-01 12:49:44 +02007094 LY_CHECK_GOTO(ret = node_compile_spec(ctx, pnode, node), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01007095
Michal Vasko20424b42020-08-31 12:29:38 +02007096 /* final compilation tasks that require the node to be connected */
Michal Vasko7f45cf22020-10-01 12:49:44 +02007097 COMPILE_EXTS_GOTO(ctx, pnode->exts, node->exts, node, LYEXT_PAR_NODE, ret, cleanup);
Radek Krejcife909632019-02-12 15:34:42 +01007098 if (node->flags & LYS_MAND_TRUE) {
Michal Vasko20424b42020-08-31 12:29:38 +02007099 /* inherit LYS_MAND_TRUE in parent containers */
Radek Krejcife909632019-02-12 15:34:42 +01007100 lys_compile_mandatory_parents(parent, 1);
7101 }
7102
Michal Vasko7f45cf22020-10-01 12:49:44 +02007103 if (child_set) {
7104 /* add the new node into set */
7105 LY_CHECK_GOTO(ret = ly_set_add(child_set, node, LY_SET_OPT_USEASLIST, NULL), cleanup);
7106 }
7107
Radek Krejci327de162019-06-14 12:52:07 +02007108 lysc_update_path(ctx, NULL, NULL);
Michal Vasko7f45cf22020-10-01 12:49:44 +02007109 lysp_dev_node_free(ctx->ctx, dev_pnode);
Radek Krejci19a96102018-11-15 13:38:09 +01007110 return LY_SUCCESS;
7111
7112error:
7113 lysc_node_free(ctx->ctx, node);
Michal Vasko7f45cf22020-10-01 12:49:44 +02007114cleanup:
7115 if (dev_pnode) {
7116 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_OTHER, "Compilation of a deviated and/or refined node failed.");
7117 lysp_dev_node_free(ctx->ctx, dev_pnode);
7118 }
Radek Krejci19a96102018-11-15 13:38:09 +01007119 return ret;
7120}
7121
Michal Vaskoccc062a2020-08-13 08:34:50 +02007122/**
Michal Vasko7f45cf22020-10-01 12:49:44 +02007123 * @brief Add a module reference into an array, checks for duplicities.
Michal Vaskoccc062a2020-08-13 08:34:50 +02007124 *
7125 * @param[in] ctx Compile context.
Michal Vasko7f45cf22020-10-01 12:49:44 +02007126 * @param[in] mod Module reference to add.
7127 * @param[in,out] mod_array Module sized array to add to.
Michal Vaskoccc062a2020-08-13 08:34:50 +02007128 * @return LY_ERR value.
7129 */
7130static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02007131lys_array_add_mod_ref(struct lysc_ctx *ctx, struct lys_module *mod, struct lys_module ***mod_array)
Michal Vaskoccc062a2020-08-13 08:34:50 +02007132{
Michal Vasko7f45cf22020-10-01 12:49:44 +02007133 LY_ARRAY_COUNT_TYPE u;
7134 struct lys_module **new_mod;
Michal Vaskoccc062a2020-08-13 08:34:50 +02007135
Michal Vasko7f45cf22020-10-01 12:49:44 +02007136 LY_ARRAY_FOR(*mod_array, u) {
7137 if ((*mod_array)[u] == mod) {
7138 /* already there */
7139 return LY_EEXIST;
Michal Vaskoccc062a2020-08-13 08:34:50 +02007140 }
7141 }
7142
Michal Vasko7f45cf22020-10-01 12:49:44 +02007143 /* add the new module ref */
7144 LY_ARRAY_NEW_RET(ctx->ctx, *mod_array, new_mod, LY_EMEM);
7145 *new_mod = mod;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007146
7147 return LY_SUCCESS;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007148}
7149
Michal Vaskoccc062a2020-08-13 08:34:50 +02007150/**
Michal Vasko7f45cf22020-10-01 12:49:44 +02007151 * @brief Compile top-level augments and deviations defined in the current module.
Michal Vasko89b5c072020-10-06 13:52:44 +02007152 * Generally, just add the module refence to the target modules. But in case
7153 * of foreign augments, they are directly applied.
Michal Vaskoccc062a2020-08-13 08:34:50 +02007154 *
7155 * @param[in] ctx Compile context.
Michal Vaskoccc062a2020-08-13 08:34:50 +02007156 * @return LY_ERR value.
7157 */
7158static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02007159lys_precompile_augments_deviations(struct lysc_ctx *ctx)
Michal Vaskoccc062a2020-08-13 08:34:50 +02007160{
Michal Vasko7f45cf22020-10-01 12:49:44 +02007161 LY_ERR ret = LY_SUCCESS;
7162 LY_ARRAY_COUNT_TYPE u, v;
7163 const struct lysp_module *mod_p;
7164 const struct lysc_node *target;
Michal Vaskoccc062a2020-08-13 08:34:50 +02007165 struct lys_module *mod;
Michal Vasko7f45cf22020-10-01 12:49:44 +02007166 struct lysp_submodule *submod;
7167 ly_bool has_dev = 0;
7168 uint16_t flags;
7169 uint32_t idx, opt_prev = ctx->options;
Michal Vaskoccc062a2020-08-13 08:34:50 +02007170
Michal Vasko89b5c072020-10-06 13:52:44 +02007171 for (idx = 0; idx < ctx->ctx->implementing.count; ++idx) {
7172 if (ctx->mod == ctx->ctx->implementing.objs[idx]) {
7173 break;
7174 }
7175 }
7176 if (idx == ctx->ctx->implementing.count) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02007177 /* it was already implemented and all the augments and deviations fully applied */
7178 return LY_SUCCESS;
Michal Vaskoccc062a2020-08-13 08:34:50 +02007179 }
7180
Michal Vasko89b5c072020-10-06 13:52:44 +02007181 mod_p = ctx->mod->parsed;
7182
Michal Vasko7f45cf22020-10-01 12:49:44 +02007183 LY_ARRAY_FOR(mod_p->augments, u) {
7184 lysc_update_path(ctx, NULL, "{augment}");
7185 lysc_update_path(ctx, NULL, mod_p->augments[u].nodeid);
Michal Vaskoccc062a2020-08-13 08:34:50 +02007186
Michal Vasko7f45cf22020-10-01 12:49:44 +02007187 /* get target module */
7188 ret = lys_nodeid_check(ctx, mod_p->augments[u].nodeid, 1, &mod, NULL);
7189 LY_CHECK_RET(ret);
Michal Vaskoccc062a2020-08-13 08:34:50 +02007190
Michal Vasko7f45cf22020-10-01 12:49:44 +02007191 /* add this module into the target module augmented_by, if not there already from previous augments */
7192 lys_array_add_mod_ref(ctx, ctx->mod, &mod->augmented_by);
Michal Vaskoccc062a2020-08-13 08:34:50 +02007193
Michal Vasko7f45cf22020-10-01 12:49:44 +02007194 /* if we are compiling this module, we cannot add augments to it yet */
7195 if (mod != ctx->mod) {
7196 /* apply the augment, find the target node first */
7197 flags = 0;
7198 ret = lysc_resolve_schema_nodeid(ctx, mod_p->augments[u].nodeid, 0, NULL, ctx->mod_def, 0, &target, &flags);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007199 LY_CHECK_RET(ret);
7200
Michal Vasko7f45cf22020-10-01 12:49:44 +02007201 /* apply the augment */
7202 ctx->options |= flags;
7203 ret = lys_compile_augment(ctx, &mod_p->augments[u], (struct lysc_node *)target);
7204 ctx->options = opt_prev;
7205 LY_CHECK_RET(ret);
Radek Krejciccd20f12019-02-15 14:12:27 +01007206 }
Radek Krejci327de162019-06-14 12:52:07 +02007207
7208 lysc_update_path(ctx, NULL, NULL);
Michal Vasko7f45cf22020-10-01 12:49:44 +02007209 lysc_update_path(ctx, NULL, NULL);
Radek Krejciccd20f12019-02-15 14:12:27 +01007210 }
7211
Michal Vasko7f45cf22020-10-01 12:49:44 +02007212 LY_ARRAY_FOR(mod_p->deviations, u) {
7213 /* get target module */
7214 lysc_update_path(ctx, NULL, "{deviation}");
7215 lysc_update_path(ctx, NULL, mod_p->deviations[u].nodeid);
7216 ret = lys_nodeid_check(ctx, mod_p->deviations[u].nodeid, 1, &mod, NULL);
7217 lysc_update_path(ctx, NULL, NULL);
7218 lysc_update_path(ctx, NULL, NULL);
7219 LY_CHECK_RET(ret);
Radek Krejciba03a5a2020-08-27 14:40:41 +02007220
Michal Vasko7f45cf22020-10-01 12:49:44 +02007221 /* add this module into the target module deviated_by, if not there already from previous deviations */
7222 lys_array_add_mod_ref(ctx, ctx->mod, &mod->deviated_by);
7223
7224 /* new deviation added to the target module */
7225 has_dev = 1;
7226 }
7227
7228 /* the same for augments and deviations in submodules */
7229 LY_ARRAY_FOR(mod_p->includes, v) {
7230 submod = mod_p->includes[v].submodule;
7231 LY_ARRAY_FOR(submod->augments, u) {
7232 lysc_update_path(ctx, NULL, "{augment}");
7233 lysc_update_path(ctx, NULL, submod->augments[u].nodeid);
7234
7235 ret = lys_nodeid_check(ctx, submod->augments[u].nodeid, 1, &mod, NULL);
7236 LY_CHECK_RET(ret);
7237
7238 lys_array_add_mod_ref(ctx, ctx->mod, &mod->augmented_by);
7239 if (mod != ctx->mod) {
7240 flags = 0;
7241 ret = lysc_resolve_schema_nodeid(ctx, mod_p->augments[u].nodeid, 0, NULL, ctx->mod_def, 0, &target, &flags);
7242 LY_CHECK_RET(ret);
7243
7244 ctx->options |= flags;
7245 ret = lys_compile_augment(ctx, &submod->augments[u], (struct lysc_node *)target);
7246 ctx->options = opt_prev;
7247 LY_CHECK_RET(ret);
Radek Krejcif538ce52019-03-05 10:46:14 +01007248 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02007249
7250 lysc_update_path(ctx, NULL, NULL);
7251 lysc_update_path(ctx, NULL, NULL);
Radek Krejcif538ce52019-03-05 10:46:14 +01007252 }
7253
Michal Vasko7f45cf22020-10-01 12:49:44 +02007254 LY_ARRAY_FOR(submod->deviations, u) {
7255 lysc_update_path(ctx, NULL, "{deviation}");
7256 lysc_update_path(ctx, NULL, submod->deviations[u].nodeid);
7257 ret = lys_nodeid_check(ctx, submod->deviations[u].nodeid, 1, &mod, NULL);
7258 lysc_update_path(ctx, NULL, NULL);
7259 lysc_update_path(ctx, NULL, NULL);
7260 LY_CHECK_RET(ret);
Radek Krejcifc11bd72019-04-11 16:00:05 +02007261
Michal Vasko7f45cf22020-10-01 12:49:44 +02007262 lys_array_add_mod_ref(ctx, ctx->mod, &mod->deviated_by);
7263 has_dev = 1;
Michal Vaskoe6143202020-07-03 13:02:08 +02007264 }
Radek Krejciccd20f12019-02-15 14:12:27 +01007265 }
7266
Michal Vasko7f45cf22020-10-01 12:49:44 +02007267 if (!has_dev) {
7268 /* no need to recompile any modules */
7269 return LY_SUCCESS;
7270 }
7271
7272 /* free all the modules in descending order */
7273 idx = ctx->ctx->list.count;
7274 do {
7275 --idx;
7276 mod = ctx->ctx->list.objs[idx];
7277 /* skip this module */
7278 if (mod == mod_p->mod) {
7279 continue;
7280 }
7281
7282 if (mod->implemented && mod->compiled) {
7283 /* keep information about features state in the module */
7284 lys_feature_precompile_revert(ctx, mod);
7285
7286 /* free the module */
7287 lysc_module_free(mod->compiled, NULL);
7288 mod->compiled = NULL;
7289 }
7290 } while (idx);
7291
7292 /* recompile all the modules in ascending order */
7293 for (idx = 0; idx < ctx->ctx->list.count; ++idx) {
7294 mod = ctx->ctx->list.objs[idx];
7295
7296 /* skip this module */
7297 if (mod == mod_p->mod) {
7298 continue;
7299 }
7300
7301 if (mod->implemented) {
7302 /* compile */
Michal Vasko89b5c072020-10-06 13:52:44 +02007303 LY_CHECK_GOTO(ret = lys_compile(mod, 0), cleanup);
Michal Vasko7f45cf22020-10-01 12:49:44 +02007304 }
7305 }
Radek Krejciccd20f12019-02-15 14:12:27 +01007306
7307cleanup:
Radek Krejcid05cbd92018-12-05 14:26:40 +01007308 return ret;
7309}
7310
Radek Krejci335332a2019-09-05 13:03:35 +02007311static void *
7312lys_compile_extension_instance_storage(enum ly_stmt stmt, struct lysc_ext_substmt *substmts)
7313{
Radek Krejci1deb5be2020-08-26 16:43:36 +02007314 for (LY_ARRAY_COUNT_TYPE u = 0; substmts[u].stmt; ++u) {
Radek Krejci335332a2019-09-05 13:03:35 +02007315 if (substmts[u].stmt == stmt) {
7316 return substmts[u].storage;
7317 }
7318 }
7319 return NULL;
7320}
7321
7322LY_ERR
7323lys_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *ext, struct lysc_ext_substmt *substmts)
7324{
7325 LY_ERR ret = LY_EVALID, r;
Radek Krejci1deb5be2020-08-26 16:43:36 +02007326 LY_ARRAY_COUNT_TYPE u;
Radek Krejci335332a2019-09-05 13:03:35 +02007327 struct lysp_stmt *stmt;
Michal Vasko7f45cf22020-10-01 12:49:44 +02007328 struct lysp_qname qname;
Radek Krejci335332a2019-09-05 13:03:35 +02007329 void *parsed = NULL, **compiled = NULL;
Radek Krejci335332a2019-09-05 13:03:35 +02007330
7331 /* check for invalid substatements */
7332 for (stmt = ext->child; stmt; stmt = stmt->next) {
Radek Krejcif56e2a42019-09-09 14:15:25 +02007333 if (stmt->flags & (LYS_YIN_ATTR | LYS_YIN_ARGUMENT)) {
7334 continue;
7335 }
Radek Krejci335332a2019-09-05 13:03:35 +02007336 for (u = 0; substmts[u].stmt; ++u) {
7337 if (substmts[u].stmt == stmt->kw) {
7338 break;
7339 }
7340 }
7341 if (!substmts[u].stmt) {
Radek Krejciad5963b2019-09-06 16:03:05 +02007342 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s%s%s\" extension instance.",
7343 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
Radek Krejci335332a2019-09-05 13:03:35 +02007344 goto cleanup;
7345 }
Radek Krejci335332a2019-09-05 13:03:35 +02007346 }
7347
Radek Krejciad5963b2019-09-06 16:03:05 +02007348 /* TODO store inherited data, e.g. status first, but mark them somehow to allow to overwrite them and not detect duplicity */
7349
Radek Krejci335332a2019-09-05 13:03:35 +02007350 /* keep order of the processing the same as the order in the defined substmts,
7351 * the order is important for some of the statements depending on others (e.g. type needs status and units) */
7352 for (u = 0; substmts[u].stmt; ++u) {
Radek Krejci857189e2020-09-01 13:26:36 +02007353 ly_bool stmt_present = 0;
Radek Krejciad5963b2019-09-06 16:03:05 +02007354
Radek Krejci335332a2019-09-05 13:03:35 +02007355 for (stmt = ext->child; stmt; stmt = stmt->next) {
7356 if (substmts[u].stmt != stmt->kw) {
7357 continue;
7358 }
7359
Radek Krejciad5963b2019-09-06 16:03:05 +02007360 stmt_present = 1;
Radek Krejci335332a2019-09-05 13:03:35 +02007361 if (substmts[u].storage) {
7362 switch (stmt->kw) {
Radek Krejciad5963b2019-09-06 16:03:05 +02007363 case LY_STMT_STATUS:
7364 assert(substmts[u].cardinality < LY_STMT_CARD_SOME);
7365 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &substmts[u].storage, /* TODO */ NULL), ret = r, cleanup);
7366 break;
7367 case LY_STMT_UNITS: {
7368 const char **units;
7369
7370 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
7371 /* single item */
7372 if (*((const char **)substmts[u].storage)) {
7373 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
7374 goto cleanup;
7375 }
7376 units = (const char **)substmts[u].storage;
7377 } else {
7378 /* sized array */
7379 const char ***units_array = (const char ***)substmts[u].storage;
7380 LY_ARRAY_NEW_GOTO(ctx->ctx, *units_array, units, ret, cleanup);
7381 }
Radek Krejci011e4aa2020-09-04 15:22:31 +02007382 r = lydict_insert(ctx->ctx, stmt->arg, 0, units);
7383 LY_CHECK_ERR_GOTO(r, ret = r, cleanup);
Radek Krejciad5963b2019-09-06 16:03:05 +02007384 break;
7385 }
Radek Krejci335332a2019-09-05 13:03:35 +02007386 case LY_STMT_TYPE: {
7387 uint16_t *flags = lys_compile_extension_instance_storage(LY_STMT_STATUS, substmts);
7388 const char **units = lys_compile_extension_instance_storage(LY_STMT_UNITS, substmts);
7389
7390 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
7391 /* single item */
Michal Vasko22df3f02020-08-24 13:29:22 +02007392 if (*(struct lysc_type **)substmts[u].storage) {
Radek Krejci335332a2019-09-05 13:03:35 +02007393 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
7394 goto cleanup;
7395 }
7396 compiled = substmts[u].storage;
7397 } else {
7398 /* sized array */
Michal Vasko22df3f02020-08-24 13:29:22 +02007399 struct lysc_type ***types = (struct lysc_type ***)substmts[u].storage, **type = NULL;
Radek Krejci335332a2019-09-05 13:03:35 +02007400 LY_ARRAY_NEW_GOTO(ctx->ctx, *types, type, ret, cleanup);
Michal Vasko22df3f02020-08-24 13:29:22 +02007401 compiled = (void *)type;
Radek Krejci335332a2019-09-05 13:03:35 +02007402 }
7403
Radek Krejciad5963b2019-09-06 16:03:05 +02007404 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &parsed, NULL), ret = r, cleanup);
Michal Vasko22df3f02020-08-24 13:29:22 +02007405 LY_CHECK_ERR_GOTO(r = lys_compile_type(ctx, ext->parent_type == LYEXT_PAR_NODE ? ((struct lysc_node *)ext->parent)->sp : NULL,
7406 flags ? *flags : 0, ctx->mod_def->parsed, ext->name, parsed, (struct lysc_type **)compiled,
Michal Vasko7f45cf22020-10-01 12:49:44 +02007407 units && !*units ? units : NULL, NULL), lysp_type_free(ctx->ctx, parsed); free(parsed); ret = r, cleanup);
Radek Krejci38d85362019-09-05 16:26:38 +02007408 lysp_type_free(ctx->ctx, parsed);
7409 free(parsed);
Radek Krejci335332a2019-09-05 13:03:35 +02007410 break;
7411 }
Radek Krejciad5963b2019-09-06 16:03:05 +02007412 case LY_STMT_IF_FEATURE: {
7413 struct lysc_iffeature *iff = NULL;
7414
7415 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
7416 /* single item */
Michal Vasko22df3f02020-08-24 13:29:22 +02007417 if (((struct lysc_iffeature *)substmts[u].storage)->features) {
Radek Krejciad5963b2019-09-06 16:03:05 +02007418 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
7419 goto cleanup;
7420 }
Michal Vasko22df3f02020-08-24 13:29:22 +02007421 iff = (struct lysc_iffeature *)substmts[u].storage;
Radek Krejciad5963b2019-09-06 16:03:05 +02007422 } else {
7423 /* sized array */
Michal Vasko22df3f02020-08-24 13:29:22 +02007424 struct lysc_iffeature **iffs = (struct lysc_iffeature **)substmts[u].storage;
Radek Krejciad5963b2019-09-06 16:03:05 +02007425 LY_ARRAY_NEW_GOTO(ctx->ctx, *iffs, iff, ret, cleanup);
7426 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02007427 qname.str = stmt->arg;
7428 qname.mod = ctx->mod_def;
7429 LY_CHECK_ERR_GOTO(r = lys_compile_iffeature(ctx, &qname, iff), ret = r, cleanup);
Radek Krejciad5963b2019-09-06 16:03:05 +02007430 break;
7431 }
7432 /* TODO support other substatements (parse stmt to lysp and then compile lysp to lysc),
7433 * also note that in many statements their extensions are not taken into account */
Radek Krejci335332a2019-09-05 13:03:35 +02007434 default:
Radek Krejciad5963b2019-09-06 16:03:05 +02007435 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Statement \"%s\" is not supported as an extension (found in \"%s%s%s\") substatement.",
7436 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
Radek Krejci335332a2019-09-05 13:03:35 +02007437 goto cleanup;
7438 }
7439 }
Radek Krejci335332a2019-09-05 13:03:35 +02007440 }
Radek Krejci335332a2019-09-05 13:03:35 +02007441
Radek Krejciad5963b2019-09-06 16:03:05 +02007442 if ((substmts[u].cardinality == LY_STMT_CARD_MAND || substmts[u].cardinality == LY_STMT_CARD_SOME) && !stmt_present) {
7443 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s%s%s\".",
7444 ly_stmt2str(substmts[u].stmt), ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
7445 goto cleanup;
7446 }
Radek Krejci335332a2019-09-05 13:03:35 +02007447 }
7448
7449 ret = LY_SUCCESS;
7450
7451cleanup:
Radek Krejci335332a2019-09-05 13:03:35 +02007452 return ret;
7453}
7454
Michal Vasko175012e2019-11-06 15:49:14 +01007455/**
Michal Vaskoecd62de2019-11-13 12:35:11 +01007456 * @brief Check when for cyclic dependencies.
Michal Vasko7f45cf22020-10-01 12:49:44 +02007457 *
Michal Vaskoecd62de2019-11-13 12:35:11 +01007458 * @param[in] set Set with all the referenced nodes.
7459 * @param[in] node Node whose "when" referenced nodes are in @p set.
7460 * @return LY_ERR value
7461 */
7462static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007463lys_compile_unres_when_cyclic(struct lyxp_set *set, const struct lysc_node *node)
Michal Vaskoecd62de2019-11-13 12:35:11 +01007464{
7465 struct lyxp_set tmp_set;
7466 struct lyxp_set_scnode *xp_scnode;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007467 uint32_t i, j;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007468 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoecd62de2019-11-13 12:35:11 +01007469 struct lysc_when *when;
7470 LY_ERR ret = LY_SUCCESS;
7471
7472 memset(&tmp_set, 0, sizeof tmp_set);
7473
7474 /* prepare in_ctx of the set */
Michal Vaskod989ba02020-08-24 10:59:24 +02007475 for (i = 0; i < set->used; ++i) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007476 xp_scnode = &set->val.scnodes[i];
7477
Michal Vasko5c4e5892019-11-14 12:31:38 +01007478 if (xp_scnode->in_ctx != -1) {
7479 /* check node when, skip the context node (it was just checked) */
Michal Vaskoecd62de2019-11-13 12:35:11 +01007480 xp_scnode->in_ctx = 1;
7481 }
7482 }
7483
7484 for (i = 0; i < set->used; ++i) {
7485 xp_scnode = &set->val.scnodes[i];
7486 if (xp_scnode->in_ctx != 1) {
7487 /* already checked */
7488 continue;
7489 }
7490
Michal Vasko1bf09392020-03-27 12:38:10 +01007491 if ((xp_scnode->type != LYXP_NODE_ELEM) || (xp_scnode->scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))
Michal Vasko2ff7efe2019-12-10 14:50:59 +01007492 || !xp_scnode->scnode->when) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007493 /* no when to check */
7494 xp_scnode->in_ctx = 0;
7495 continue;
7496 }
7497
7498 node = xp_scnode->scnode;
7499 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007500 LY_ARRAY_FOR(node->when, u) {
7501 when = node->when[u];
Michal Vaskoc8a230d2020-08-14 12:17:10 +02007502 ret = lyxp_atomize(when->cond, LY_PREF_SCHEMA, when->module, when->context,
Michal Vaskoecd62de2019-11-13 12:35:11 +01007503 when->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, LYXP_SCNODE_SCHEMA);
7504 if (ret != LY_SUCCESS) {
Michal Vaskof6e51882019-12-16 09:59:45 +01007505 LOGVAL(set->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when->cond->expr);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007506 goto cleanup;
7507 }
7508
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007509 for (j = 0; j < tmp_set.used; ++j) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007510 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007511 if (tmp_set.val.scnodes[j].type == LYXP_NODE_ELEM) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01007512 /* try to find this node in our set */
Radek Krejciaa6b53f2020-08-27 15:19:03 +02007513 uint32_t idx;
7514 if (lyxp_set_scnode_contains(set, tmp_set.val.scnodes[j].scnode, LYXP_NODE_ELEM, -1, &idx) && (set->val.scnodes[idx].in_ctx == -1)) {
Michal Vaskof6e51882019-12-16 09:59:45 +01007515 LOGVAL(set->ctx, LY_VLOG_LYSC, node, LY_VCODE_CIRC_WHEN, node->name, set->val.scnodes[idx].scnode->name);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007516 ret = LY_EVALID;
7517 goto cleanup;
7518 }
7519
7520 /* needs to be checked, if in both sets, will be ignored */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007521 tmp_set.val.scnodes[j].in_ctx = 1;
Michal Vaskoecd62de2019-11-13 12:35:11 +01007522 } else {
7523 /* no when, nothing to check */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007524 tmp_set.val.scnodes[j].in_ctx = 0;
Michal Vaskoecd62de2019-11-13 12:35:11 +01007525 }
7526 }
7527
7528 /* merge this set into the global when set */
7529 lyxp_set_scnode_merge(set, &tmp_set);
7530 }
7531
7532 /* check when of non-data parents as well */
7533 node = node->parent;
7534 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
7535
Michal Vasko251f56e2019-11-14 16:06:47 +01007536 /* this node when was checked (xp_scnode could have been reallocd) */
7537 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoecd62de2019-11-13 12:35:11 +01007538 }
7539
7540cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007541 lyxp_set_free_content(&tmp_set);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007542 return ret;
7543}
7544
7545/**
Michal Vasko7f45cf22020-10-01 12:49:44 +02007546 * @brief Check when/must expressions of a node on a complete compiled schema tree.
7547 *
Michal Vasko175012e2019-11-06 15:49:14 +01007548 * @param[in] ctx Compile context.
7549 * @param[in] node Node to check.
7550 * @return LY_ERR value
7551 */
7552static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007553lys_compile_unres_xpath(struct lysc_ctx *ctx, const struct lysc_node *node)
Michal Vasko175012e2019-11-06 15:49:14 +01007554{
Michal Vasko175012e2019-11-06 15:49:14 +01007555 struct lyxp_set tmp_set;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007556 uint32_t i;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007557 LY_ARRAY_COUNT_TYPE u;
Radek Krejci1deb5be2020-08-26 16:43:36 +02007558 uint32_t opts;
Radek Krejci857189e2020-09-01 13:26:36 +02007559 ly_bool input_done = 0;
Michal Vasko175012e2019-11-06 15:49:14 +01007560 struct lysc_when **when = NULL;
7561 struct lysc_must *musts = NULL;
7562 LY_ERR ret = LY_SUCCESS;
Michal Vasko6b26e742020-07-17 15:02:10 +02007563 const struct lysc_node *op;
Michal Vasko175012e2019-11-06 15:49:14 +01007564
7565 memset(&tmp_set, 0, sizeof tmp_set);
Michal Vasko5d8756a2019-11-07 15:21:00 +01007566 opts = LYXP_SCNODE_SCHEMA;
Michal Vasko6b26e742020-07-17 15:02:10 +02007567 if (node->flags & LYS_CONFIG_R) {
7568 for (op = node->parent; op && !(op->nodetype & (LYS_RPC | LYS_ACTION)); op = op->parent);
7569 if (op) {
7570 /* we are actually in output */
7571 opts = LYXP_SCNODE_OUTPUT;
7572 }
7573 }
Michal Vasko175012e2019-11-06 15:49:14 +01007574
7575 switch (node->nodetype) {
7576 case LYS_CONTAINER:
7577 when = ((struct lysc_node_container *)node)->when;
7578 musts = ((struct lysc_node_container *)node)->musts;
7579 break;
7580 case LYS_CHOICE:
7581 when = ((struct lysc_node_choice *)node)->when;
7582 break;
7583 case LYS_LEAF:
7584 when = ((struct lysc_node_leaf *)node)->when;
7585 musts = ((struct lysc_node_leaf *)node)->musts;
7586 break;
7587 case LYS_LEAFLIST:
7588 when = ((struct lysc_node_leaflist *)node)->when;
7589 musts = ((struct lysc_node_leaflist *)node)->musts;
7590 break;
7591 case LYS_LIST:
7592 when = ((struct lysc_node_list *)node)->when;
7593 musts = ((struct lysc_node_list *)node)->musts;
7594 break;
7595 case LYS_ANYXML:
7596 case LYS_ANYDATA:
7597 when = ((struct lysc_node_anydata *)node)->when;
7598 musts = ((struct lysc_node_anydata *)node)->musts;
7599 break;
7600 case LYS_CASE:
7601 when = ((struct lysc_node_case *)node)->when;
7602 break;
7603 case LYS_NOTIF:
7604 musts = ((struct lysc_notif *)node)->musts;
7605 break;
Michal Vasko1bf09392020-03-27 12:38:10 +01007606 case LYS_RPC:
Michal Vasko5d8756a2019-11-07 15:21:00 +01007607 case LYS_ACTION:
7608 /* first process input musts */
7609 musts = ((struct lysc_action *)node)->input.musts;
7610 break;
Michal Vasko175012e2019-11-06 15:49:14 +01007611 default:
7612 /* nothing to check */
7613 break;
7614 }
7615
Michal Vasko175012e2019-11-06 15:49:14 +01007616 /* check "when" */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007617 LY_ARRAY_FOR(when, u) {
Michal Vaskoc8a230d2020-08-14 12:17:10 +02007618 ret = lyxp_atomize(when[u]->cond, LY_PREF_SCHEMA, when[u]->module, when[u]->context ? when[u]->context : node,
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007619 when[u]->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, opts);
Michal Vasko175012e2019-11-06 15:49:14 +01007620 if (ret != LY_SUCCESS) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007621 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when[u]->cond->expr);
Michal Vasko175012e2019-11-06 15:49:14 +01007622 goto cleanup;
7623 }
7624
Michal Vaskodc052f32019-11-07 11:11:38 +01007625 ctx->path[0] = '\0';
7626 lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007627 for (i = 0; i < tmp_set.used; ++i) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01007628 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007629 if ((tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (tmp_set.val.scnodes[i].in_ctx != -1)) {
7630 struct lysc_node *schema = tmp_set.val.scnodes[i].scnode;
Michal Vasko175012e2019-11-06 15:49:14 +01007631
Michal Vaskoecd62de2019-11-13 12:35:11 +01007632 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007633 ret = lysc_check_status(ctx, when[u]->flags, when[u]->module, node->name, schema->flags, schema->module,
Michal Vaskoecd62de2019-11-13 12:35:11 +01007634 schema->name);
7635 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko5c4e5892019-11-14 12:31:38 +01007636
7637 /* check dummy node accessing */
7638 if (schema == node) {
Michal Vaskof6e51882019-12-16 09:59:45 +01007639 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LY_VCODE_DUMMY_WHEN, node->name);
Michal Vasko5c4e5892019-11-14 12:31:38 +01007640 ret = LY_EVALID;
7641 goto cleanup;
7642 }
Michal Vasko175012e2019-11-06 15:49:14 +01007643 }
7644 }
7645
Michal Vaskoecd62de2019-11-13 12:35:11 +01007646 /* check cyclic dependencies */
Michal Vasko004d3152020-06-11 19:59:22 +02007647 ret = lys_compile_unres_when_cyclic(&tmp_set, node);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007648 LY_CHECK_GOTO(ret, cleanup);
7649
Michal Vaskod3678892020-05-21 10:06:58 +02007650 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01007651 }
7652
Michal Vasko5d8756a2019-11-07 15:21:00 +01007653check_musts:
Michal Vasko175012e2019-11-06 15:49:14 +01007654 /* check "must" */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007655 LY_ARRAY_FOR(musts, u) {
Michal Vaskoc8a230d2020-08-14 12:17:10 +02007656 ret = lyxp_atomize(musts[u].cond, LY_PREF_SCHEMA, musts[u].module, node, LYXP_NODE_ELEM, &tmp_set, opts);
Michal Vasko175012e2019-11-06 15:49:14 +01007657 if (ret != LY_SUCCESS) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007658 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid must restriction \"%s\".", musts[u].cond->expr);
Michal Vasko175012e2019-11-06 15:49:14 +01007659 goto cleanup;
7660 }
7661
Michal Vaskodc052f32019-11-07 11:11:38 +01007662 ctx->path[0] = '\0';
7663 lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007664 for (i = 0; i < tmp_set.used; ++i) {
Michal Vasko175012e2019-11-06 15:49:14 +01007665 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007666 if (tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko175012e2019-11-06 15:49:14 +01007667 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007668 ret = lysc_check_status(ctx, node->flags, musts[u].module, node->name, tmp_set.val.scnodes[i].scnode->flags,
7669 tmp_set.val.scnodes[i].scnode->module, tmp_set.val.scnodes[i].scnode->name);
Michal Vasko175012e2019-11-06 15:49:14 +01007670 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko175012e2019-11-06 15:49:14 +01007671 }
7672 }
7673
Michal Vaskod3678892020-05-21 10:06:58 +02007674 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01007675 }
7676
Michal Vasko1bf09392020-03-27 12:38:10 +01007677 if ((node->nodetype & (LYS_RPC | LYS_ACTION)) && !input_done) {
Michal Vasko5d8756a2019-11-07 15:21:00 +01007678 /* now check output musts */
7679 input_done = 1;
7680 musts = ((struct lysc_action *)node)->output.musts;
7681 opts = LYXP_SCNODE_OUTPUT;
7682 goto check_musts;
7683 }
7684
Michal Vasko175012e2019-11-06 15:49:14 +01007685cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007686 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01007687 return ret;
7688}
7689
Michal Vasko7f45cf22020-10-01 12:49:44 +02007690/**
7691 * @brief Check leafref for its target existence on a complete compiled schema tree.
7692 *
7693 * @param[in] ctx Compile context.
7694 * @param[in] node Context node for the leafref.
7695 * @param[in] lref Leafref to resolve.
7696 * @return LY_ERR value.
7697 */
Michal Vasko8d544252020-03-02 10:19:52 +01007698static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007699lys_compile_unres_leafref(struct lysc_ctx *ctx, const struct lysc_node *node, struct lysc_type_leafref *lref)
7700{
Michal Vasko6b26e742020-07-17 15:02:10 +02007701 const struct lysc_node *target = NULL, *siter;
Michal Vasko004d3152020-06-11 19:59:22 +02007702 struct ly_path *p;
7703 struct lysc_type *type;
7704
7705 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
7706
7707 /* try to find the target */
Michal Vasko00cbf532020-06-15 13:58:47 +02007708 LY_CHECK_RET(ly_path_compile(ctx->ctx, node->module, node, lref->path, LY_PATH_LREF_TRUE,
7709 lysc_is_output(node) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY,
Michal Vaskoc8a230d2020-08-14 12:17:10 +02007710 LY_PREF_SCHEMA, lref->path_context, &p));
Michal Vasko004d3152020-06-11 19:59:22 +02007711
7712 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007713 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02007714 ly_path_free(node->module->ctx, p);
7715
7716 if (!(target->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
7717 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7718 "Invalid leafref path \"%s\" - target node is %s instead of leaf or leaf-list.",
7719 lref->path->expr, lys_nodetype2str(target->nodetype));
7720 return LY_EVALID;
7721 }
7722
7723 /* check status */
7724 ctx->path[0] = '\0';
7725 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
7726 ctx->path_len = strlen(ctx->path);
7727 if (lysc_check_status(ctx, node->flags, node->module, node->name, target->flags, target->module, target->name)) {
7728 return LY_EVALID;
7729 }
7730 ctx->path_len = 1;
7731 ctx->path[1] = '\0';
7732
7733 /* check config */
Michal Vasko6b26e742020-07-17 15:02:10 +02007734 if (lref->require_instance) {
Radek Krejci1e008d22020-08-17 11:37:37 +02007735 for (siter = node->parent; siter && !(siter->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); siter = siter->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02007736 if (!siter && (node->flags & LYS_CONFIG_W) && (target->flags & LYS_CONFIG_R)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007737 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE, "Invalid leafref path \"%s\" - target is supposed"
7738 " to represent configuration data (as the leafref does), but it does not.", lref->path->expr);
7739 return LY_EVALID;
7740 }
7741 }
7742
7743 /* store the target's type and check for circular chain of leafrefs */
7744 lref->realtype = ((struct lysc_node_leaf *)target)->type;
7745 for (type = lref->realtype; type && type->basetype == LY_TYPE_LEAFREF; type = ((struct lysc_type_leafref *)type)->realtype) {
7746 if (type == (struct lysc_type *)lref) {
7747 /* circular chain detected */
7748 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7749 "Invalid leafref path \"%s\" - circular chain of leafrefs detected.", lref->path->expr);
7750 return LY_EVALID;
7751 }
7752 }
7753
7754 /* check if leafref and its target are under common if-features */
7755 if (lys_compile_leafref_features_validate(node, target)) {
7756 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7757 "Invalid leafref path \"%s\" - set of features applicable to the leafref target is not a subset of"
7758 " features applicable to the leafref itself.", lref->path->expr);
7759 return LY_EVALID;
7760 }
7761
7762 return LY_SUCCESS;
7763}
7764
7765static LY_ERR
Michal Vasko8d544252020-03-02 10:19:52 +01007766lys_compile_ietf_netconf_wd_annotation(struct lysc_ctx *ctx, struct lys_module *mod)
7767{
7768 struct lysc_ext_instance *ext;
7769 struct lysp_ext_instance *ext_p = NULL;
7770 struct lysp_stmt *stmt;
7771 const struct lys_module *ext_mod;
7772 LY_ERR ret = LY_SUCCESS;
7773
7774 /* create the parsed extension instance manually */
7775 ext_p = calloc(1, sizeof *ext_p);
7776 LY_CHECK_ERR_GOTO(!ext_p, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
Radek Krejci011e4aa2020-09-04 15:22:31 +02007777 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, "md:annotation", 0, &ext_p->name), cleanup);
7778 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, "default", 0, &ext_p->argument), cleanup);
Michal Vasko8d544252020-03-02 10:19:52 +01007779 ext_p->insubstmt = LYEXT_SUBSTMT_SELF;
7780 ext_p->insubstmt_index = 0;
7781
Radek Krejci87e25252020-09-15 13:28:31 +02007782 ext_p->child = stmt = calloc(1, sizeof *ext_p->child);
7783 LY_CHECK_ERR_GOTO(!stmt, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
Radek Krejci011e4aa2020-09-04 15:22:31 +02007784 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, "type", 0, &stmt->stmt), cleanup);
7785 LY_CHECK_GOTO(ret = lydict_insert(ctx->ctx, "boolean", 0, &stmt->arg), cleanup);
Michal Vasko8d544252020-03-02 10:19:52 +01007786 stmt->kw = LY_STMT_TYPE;
Michal Vasko8d544252020-03-02 10:19:52 +01007787
7788 /* allocate new extension instance */
7789 LY_ARRAY_NEW_GOTO(mod->ctx, mod->compiled->exts, ext, ret, cleanup);
7790
7791 /* manually get extension definition module */
7792 ext_mod = ly_ctx_get_module_latest(ctx->ctx, "ietf-yang-metadata");
7793
7794 /* compile the extension instance */
7795 LY_CHECK_GOTO(ret = lys_compile_ext(ctx, ext_p, ext, mod->compiled, LYEXT_PAR_MODULE, ext_mod), cleanup);
7796
7797cleanup:
7798 lysp_ext_instance_free(ctx->ctx, ext_p);
7799 free(ext_p);
7800 return ret;
7801}
7802
Michal Vasko7f45cf22020-10-01 12:49:44 +02007803/**
7804 * @brief Compile default value(s) for leaf or leaf-list expecting a complete compiled schema tree.
7805 *
7806 * @param[in] ctx Compile context.
7807 * @param[in] node Leaf or leaf-list to compile the default value(s) for.
7808 * @param[in] type Type of the default value.
7809 * @param[in] dflt Default value.
7810 * @param[in] dflt_mod Local module for @p dflt.
7811 * @param[in,out] storage Storage for the compiled default value.
7812 * @return LY_ERR value.
7813 */
Michal Vasko004d3152020-06-11 19:59:22 +02007814static LY_ERR
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007815lys_compile_unres_dflt(struct lysc_ctx *ctx, struct lysc_node *node, struct lysc_type *type, const char *dflt,
Radek Krejci0f969882020-08-21 16:56:47 +02007816 const struct lys_module *dflt_mod, struct lyd_value *storage)
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007817{
7818 LY_ERR ret;
7819 struct ly_err_item *err = NULL;
7820
Michal Vaskofeca4fb2020-10-05 08:58:40 +02007821 ret = type->plugin->store(ctx->ctx, type, dflt, strlen(dflt), 0, LY_PREF_SCHEMA, (void *)dflt_mod, LYD_HINT_SCHEMA,
7822 node, storage, &err);
7823 if (ret == LY_EINCOMPLETE) {
7824 /* we have no data so we will not be resolving it */
7825 ret = LY_SUCCESS;
7826 }
7827
7828 if (ret) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007829 ctx->path[0] = '\0';
7830 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Michal Vaskofeca4fb2020-10-05 08:58:40 +02007831 if (err) {
7832 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
7833 "Invalid default - value does not fit the type (%s).", err->msg);
7834 ly_err_free(err);
7835 } else {
7836 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
7837 "Invalid default - value does not fit the type.");
7838 }
7839 return ret;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007840 }
Michal Vaskofeca4fb2020-10-05 08:58:40 +02007841
7842 ++((struct lysc_type *)storage->realtype)->refcount;
7843 return LY_SUCCESS;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007844}
7845
Michal Vasko7f45cf22020-10-01 12:49:44 +02007846/**
7847 * @brief Compile default value of a leaf expecting a complete compiled schema tree.
7848 *
7849 * @param[in] ctx Compile context.
7850 * @param[in] leaf Leaf that the default value is for.
7851 * @param[in] dflt Default value to compile.
7852 * @return LY_ERR value.
7853 */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007854static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02007855lys_compile_unres_leaf_dlft(struct lysc_ctx *ctx, struct lysc_node_leaf *leaf, struct lysp_qname *dflt)
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007856{
7857 LY_ERR ret;
7858
7859 assert(!leaf->dflt);
7860
7861 if (leaf->flags & (LYS_MAND_TRUE | LYS_KEY)) {
7862 /* ignore default values for keys and mandatory leaves */
7863 return LY_SUCCESS;
7864 }
7865
7866 /* allocate the default value */
7867 leaf->dflt = calloc(1, sizeof *leaf->dflt);
7868 LY_CHECK_ERR_RET(!leaf->dflt, LOGMEM(ctx->ctx), LY_EMEM);
7869
7870 /* store the default value */
Michal Vasko7f45cf22020-10-01 12:49:44 +02007871 ret = lys_compile_unres_dflt(ctx, (struct lysc_node *)leaf, leaf->type, dflt->str, dflt->mod, leaf->dflt);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007872 if (ret) {
7873 free(leaf->dflt);
7874 leaf->dflt = NULL;
7875 }
7876
7877 return ret;
7878}
7879
Michal Vasko7f45cf22020-10-01 12:49:44 +02007880/**
7881 * @brief Compile default values of a leaf-list expecting a complete compiled schema tree.
7882 *
7883 * @param[in] ctx Compile context.
7884 * @param[in] llist Leaf-list that the default value(s) are for.
7885 * @param[in] dflt Default value to compile, in case of a single value.
7886 * @param[in] dflts Sized array of default values, in case of more values.
7887 * @return LY_ERR value.
7888 */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007889static LY_ERR
Michal Vasko7f45cf22020-10-01 12:49:44 +02007890lys_compile_unres_llist_dflts(struct lysc_ctx *ctx, struct lysc_node_leaflist *llist, struct lysp_qname *dflt,
7891 struct lysp_qname *dflts)
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007892{
7893 LY_ERR ret;
7894 LY_ARRAY_COUNT_TYPE orig_count, u, v;
7895
7896 assert(dflt || dflts);
7897
7898 if (llist->dflts) {
7899 /* there were already some defaults and we are adding new by deviations */
7900 assert(dflts);
7901 orig_count = LY_ARRAY_COUNT(llist->dflts);
7902 } else {
7903 orig_count = 0;
7904 }
7905
7906 /* allocate new items */
7907 if (dflts) {
7908 LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts, orig_count + LY_ARRAY_COUNT(dflts), LY_EMEM);
7909 } else {
7910 LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts, orig_count + 1, LY_EMEM);
7911 }
7912
7913 /* fill each new default value */
7914 if (dflts) {
7915 LY_ARRAY_FOR(dflts, u) {
7916 llist->dflts[orig_count + u] = calloc(1, sizeof **llist->dflts);
Michal Vasko7f45cf22020-10-01 12:49:44 +02007917 ret = lys_compile_unres_dflt(ctx, (struct lysc_node *)llist, llist->type, dflts[u].str, dflts[u].mod,
7918 llist->dflts[orig_count + u]);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007919 LY_CHECK_ERR_RET(ret, free(llist->dflts[orig_count + u]), ret);
7920 LY_ARRAY_INCREMENT(llist->dflts);
7921 }
7922 } else {
7923 llist->dflts[orig_count] = calloc(1, sizeof **llist->dflts);
Michal Vasko7f45cf22020-10-01 12:49:44 +02007924 ret = lys_compile_unres_dflt(ctx, (struct lysc_node *)llist, llist->type, dflt->str, dflt->mod,
7925 llist->dflts[orig_count]);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007926 LY_CHECK_ERR_RET(ret, free(llist->dflts[orig_count]), ret);
7927 LY_ARRAY_INCREMENT(llist->dflts);
7928 }
7929
7930 /* check default value uniqueness */
7931 if (llist->flags & LYS_CONFIG_W) {
7932 /* configuration data values must be unique - so check the default values */
7933 for (u = orig_count; u < LY_ARRAY_COUNT(llist->dflts); ++u) {
7934 for (v = 0; v < u; ++v) {
7935 if (!llist->dflts[u]->realtype->plugin->compare(llist->dflts[u], llist->dflts[v])) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007936 lysc_update_path(ctx, llist->parent, llist->name);
7937 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vasko7f45cf22020-10-01 12:49:44 +02007938 "Configuration leaf-list has multiple defaults of the same value \"%s\".",
7939 llist->dflts[u]->canonical);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007940 lysc_update_path(ctx, NULL, NULL);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007941 return LY_EVALID;
7942 }
7943 }
7944 }
7945 }
7946
7947 return LY_SUCCESS;
7948}
7949
Michal Vasko7f45cf22020-10-01 12:49:44 +02007950/**
7951 * @brief Finish compilation of all the unres sets of a compile context.
7952 *
7953 * @param[in] ctx Compile context with unres sets.
7954 * @return LY_ERR value.
7955 */
Michal Vaskoba99a3e2020-08-18 15:50:05 +02007956static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007957lys_compile_unres(struct lysc_ctx *ctx)
7958{
7959 struct lysc_node *node;
7960 struct lysc_type *type, *typeiter;
7961 struct lysc_type_leafref *lref;
Michal Vasko7f45cf22020-10-01 12:49:44 +02007962 struct lysc_augment *aug;
7963 struct lysc_deviation *dev;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007964 LY_ARRAY_COUNT_TYPE v;
Michal Vasko004d3152020-06-11 19:59:22 +02007965 uint32_t i;
7966
7967 /* for leafref, we need 2 rounds - first detects circular chain by storing the first referred type (which
7968 * can be also leafref, in case it is already resolved, go through the chain and check that it does not
7969 * point to the starting leafref type). The second round stores the first non-leafref type for later data validation. */
7970 for (i = 0; i < ctx->leafrefs.count; ++i) {
7971 node = ctx->leafrefs.objs[i];
7972 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
7973 type = ((struct lysc_node_leaf *)node)->type;
7974 if (type->basetype == LY_TYPE_LEAFREF) {
7975 LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, (struct lysc_type_leafref *)type));
7976 } else if (type->basetype == LY_TYPE_UNION) {
7977 LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) {
7978 if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
7979 lref = (struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v];
7980 LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, lref));
7981 }
7982 }
7983 }
7984 }
7985 for (i = 0; i < ctx->leafrefs.count; ++i) {
7986 /* store pointer to the real type */
7987 type = ((struct lysc_node_leaf *)ctx->leafrefs.objs[i])->type;
7988 if (type->basetype == LY_TYPE_LEAFREF) {
Michal Vasko22df3f02020-08-24 13:29:22 +02007989 for (typeiter = ((struct lysc_type_leafref *)type)->realtype;
Michal Vasko004d3152020-06-11 19:59:22 +02007990 typeiter->basetype == LY_TYPE_LEAFREF;
Michal Vasko22df3f02020-08-24 13:29:22 +02007991 typeiter = ((struct lysc_type_leafref *)typeiter)->realtype) {}
7992 ((struct lysc_type_leafref *)type)->realtype = typeiter;
Michal Vasko004d3152020-06-11 19:59:22 +02007993 } else if (type->basetype == LY_TYPE_UNION) {
Michal Vasko22df3f02020-08-24 13:29:22 +02007994 LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) {
7995 if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
7996 for (typeiter = ((struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v])->realtype;
Michal Vasko004d3152020-06-11 19:59:22 +02007997 typeiter->basetype == LY_TYPE_LEAFREF;
Michal Vasko22df3f02020-08-24 13:29:22 +02007998 typeiter = ((struct lysc_type_leafref *)typeiter)->realtype) {}
7999 ((struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v])->realtype = typeiter;
Michal Vasko004d3152020-06-11 19:59:22 +02008000 }
8001 }
8002 }
8003 }
8004
8005 /* check xpath */
8006 for (i = 0; i < ctx->xpath.count; ++i) {
8007 LY_CHECK_RET(lys_compile_unres_xpath(ctx, ctx->xpath.objs[i]));
8008 }
8009
8010 /* finish incomplete default values compilation */
8011 for (i = 0; i < ctx->dflts.count; ++i) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02008012 struct lysc_unres_dflt *r = ctx->dflts.objs[i];
Michal Vaskoba99a3e2020-08-18 15:50:05 +02008013 if (r->leaf->nodetype == LYS_LEAF) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02008014 LY_CHECK_RET(lys_compile_unres_leaf_dlft(ctx, r->leaf, r->dflt));
Michal Vaskoba99a3e2020-08-18 15:50:05 +02008015 } else {
Michal Vasko7f45cf22020-10-01 12:49:44 +02008016 LY_CHECK_RET(lys_compile_unres_llist_dflts(ctx, r->llist, r->dflt, r->dflts));
Michal Vasko004d3152020-06-11 19:59:22 +02008017 }
Michal Vasko004d3152020-06-11 19:59:22 +02008018 }
8019
Michal Vasko7f45cf22020-10-01 12:49:44 +02008020 /* check that all augments were applied */
8021 for (i = 0; i < ctx->augs.count; ++i) {
8022 aug = ctx->augs.objs[i];
8023 LOGVAL(ctx->ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE,
8024 "Augment target node \"%s\" from module \"%s\" was not found.", aug->nodeid->expr,
8025 aug->nodeid_mod->name);
8026 }
8027 if (ctx->augs.count) {
8028 return LY_ENOTFOUND;
8029 }
8030
8031 /* check that all deviations were applied */
8032 for (i = 0; i < ctx->devs.count; ++i) {
8033 dev = ctx->devs.objs[i];
8034 LOGVAL(ctx->ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE,
8035 "Deviation(s) target node \"%s\" from module \"%s\" was not found.", dev->nodeid->expr,
8036 dev->nodeid_mod->name);
8037 }
8038 if (ctx->devs.count) {
8039 return LY_ENOTFOUND;
8040 }
8041
8042 return LY_SUCCESS;
8043}
8044
Michal Vasko89b5c072020-10-06 13:52:44 +02008045void
8046lys_precompile_augments_deviations_revert(struct ly_ctx *ctx, const struct lys_module *mod)
Michal Vasko7f45cf22020-10-01 12:49:44 +02008047{
8048 uint32_t i;
8049 LY_ARRAY_COUNT_TYPE u, count;
8050 struct lys_module *m;
8051
Michal Vasko89b5c072020-10-06 13:52:44 +02008052 for (i = 0; i < ctx->list.count; ++i) {
8053 m = ctx->list.objs[i];
Michal Vasko7f45cf22020-10-01 12:49:44 +02008054
8055 if (m->augmented_by) {
8056 count = LY_ARRAY_COUNT(m->augmented_by);
8057 for (u = 0; u < count; ++u) {
8058 if (m->augmented_by[u] == mod) {
8059 /* keep the order */
8060 if (u < count - 1) {
8061 memmove(m->augmented_by + u, m->augmented_by + u + 1, (count - u) * sizeof *m->augmented_by);
8062 }
8063 LY_ARRAY_DECREMENT(m->augmented_by);
8064 break;
8065 }
8066 }
8067 if (!LY_ARRAY_COUNT(m->augmented_by)) {
8068 LY_ARRAY_FREE(m->augmented_by);
8069 m->augmented_by = NULL;
8070 }
8071 }
8072
8073 if (m->deviated_by) {
8074 count = LY_ARRAY_COUNT(m->deviated_by);
8075 for (u = 0; u < count; ++u) {
8076 if (m->deviated_by[u] == mod) {
8077 /* keep the order */
8078 if (u < count - 1) {
8079 memmove(m->deviated_by + u, m->deviated_by + u + 1, (count - u) * sizeof *m->deviated_by);
8080 }
8081 LY_ARRAY_DECREMENT(m->deviated_by);
8082 break;
8083 }
8084 }
8085 if (!LY_ARRAY_COUNT(m->deviated_by)) {
8086 LY_ARRAY_FREE(m->deviated_by);
8087 m->deviated_by = NULL;
8088 }
8089 }
8090 }
8091}
8092
8093/**
8094 * @brief Compile features in the current module and all its submodules.
8095 *
8096 * @param[in] ctx Compile context.
8097 * @return LY_ERR value.
8098 */
8099static LY_ERR
8100lys_compile_features(struct lysc_ctx *ctx)
8101{
8102 struct lysp_submodule *submod;
8103 LY_ARRAY_COUNT_TYPE u, v;
8104
8105 if (!ctx->mod->features) {
8106 /* features are compiled directly into the module structure,
8107 * but it must be done in two steps to allow forward references (via if-feature) between the features themselves */
8108 LY_CHECK_RET(lys_feature_precompile(ctx, NULL, NULL, ctx->mod->parsed->features, &ctx->mod->features));
8109 LY_ARRAY_FOR(ctx->mod->parsed->includes, v) {
8110 submod = ctx->mod->parsed->includes[v].submodule;
8111 LY_CHECK_RET(lys_feature_precompile(ctx, NULL, NULL, submod->features, &ctx->mod->features));
8112 }
8113 }
8114
8115 /* finish feature compilation, not only for the main module, but also for the submodules.
8116 * Due to possible forward references, it must be done when all the features (including submodules)
8117 * are present. */
8118 LY_ARRAY_FOR(ctx->mod->parsed->features, u) {
8119 LY_CHECK_RET(lys_feature_precompile_finish(ctx, &ctx->mod->parsed->features[u], ctx->mod->features));
8120 }
8121
8122 lysc_update_path(ctx, NULL, "{submodule}");
8123 LY_ARRAY_FOR(ctx->mod->parsed->includes, v) {
8124 submod = ctx->mod->parsed->includes[v].submodule;
8125
8126 lysc_update_path(ctx, NULL, submod->name);
8127 LY_ARRAY_FOR(submod->features, u) {
8128 LY_CHECK_RET(lys_feature_precompile_finish(ctx, &submod->features[u], ctx->mod->features));
8129 }
8130 lysc_update_path(ctx, NULL, NULL);
8131 }
8132 lysc_update_path(ctx, NULL, NULL);
8133
8134 return LY_SUCCESS;
8135}
8136
8137/**
8138 * @brief Compile identites in the current module and all its submodules.
8139 *
8140 * @param[in] ctx Compile context.
8141 * @return LY_ERR value.
8142 */
8143static LY_ERR
8144lys_compile_identities(struct lysc_ctx *ctx)
8145{
8146 struct lysp_submodule *submod;
8147 LY_ARRAY_COUNT_TYPE u;
8148
8149 if (!ctx->mod->identities) {
8150 LY_CHECK_RET(lys_identity_precompile(ctx, NULL, NULL, ctx->mod->parsed->identities, &ctx->mod->identities));
8151 LY_ARRAY_FOR(ctx->mod->parsed->includes, u) {
8152 submod = ctx->mod->parsed->includes[u].submodule;
8153 LY_CHECK_RET(lys_identity_precompile(ctx, NULL, NULL, submod->identities, &ctx->mod->identities));
8154 }
8155 }
8156
8157 if (ctx->mod->parsed->identities) {
8158 LY_CHECK_RET(lys_compile_identities_derived(ctx, ctx->mod->parsed->identities, ctx->mod->identities));
8159 }
8160 lysc_update_path(ctx, NULL, "{submodule}");
8161 LY_ARRAY_FOR(ctx->mod->parsed->includes, u) {
8162
8163 submod = ctx->mod->parsed->includes[u].submodule;
8164 if (submod->identities) {
8165 lysc_update_path(ctx, NULL, submod->name);
8166 LY_CHECK_RET(lys_compile_identities_derived(ctx, submod->identities, ctx->mod->identities));
8167 lysc_update_path(ctx, NULL, NULL);
8168 }
8169 }
8170 lysc_update_path(ctx, NULL, NULL);
8171
Michal Vasko004d3152020-06-11 19:59:22 +02008172 return LY_SUCCESS;
8173}
8174
Radek Krejci19a96102018-11-15 13:38:09 +01008175LY_ERR
Michal Vasko7a0b0762020-09-02 16:37:01 +02008176lys_compile(struct lys_module *mod, uint32_t options)
Radek Krejci19a96102018-11-15 13:38:09 +01008177{
8178 struct lysc_ctx ctx = {0};
8179 struct lysc_module *mod_c;
8180 struct lysp_module *sp;
Michal Vasko7f45cf22020-10-01 12:49:44 +02008181 struct lysp_submodule *submod;
8182 struct lysp_node *pnode;
Radek Krejcif2de0ed2019-05-02 14:13:18 +02008183 struct lysp_grp *grps;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02008184 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02008185 uint32_t i;
Radek Krejcid05cbd92018-12-05 14:26:40 +01008186 LY_ERR ret = LY_SUCCESS;
Radek Krejci19a96102018-11-15 13:38:09 +01008187
Michal Vasko7a0b0762020-09-02 16:37:01 +02008188 LY_CHECK_ARG_RET(NULL, mod, mod->parsed, !mod->compiled, mod->ctx, LY_EINVAL);
Radek Krejci096235c2019-01-11 11:12:19 +01008189
Michal Vasko7a0b0762020-09-02 16:37:01 +02008190 if (!mod->implemented) {
Radek Krejci096235c2019-01-11 11:12:19 +01008191 /* just imported modules are not compiled */
8192 return LY_SUCCESS;
8193 }
8194
Michal Vasko7f45cf22020-10-01 12:49:44 +02008195 /* context will be changed */
8196 ++mod->ctx->module_set_id;
8197
Michal Vasko7a0b0762020-09-02 16:37:01 +02008198 sp = mod->parsed;
Radek Krejci19a96102018-11-15 13:38:09 +01008199
Michal Vasko7a0b0762020-09-02 16:37:01 +02008200 ctx.ctx = mod->ctx;
8201 ctx.mod = mod;
8202 ctx.mod_def = mod;
Radek Krejciec4da802019-05-02 13:02:41 +02008203 ctx.options = options;
Radek Krejci327de162019-06-14 12:52:07 +02008204 ctx.path_len = 1;
8205 ctx.path[0] = '/';
Radek Krejci19a96102018-11-15 13:38:09 +01008206
Michal Vasko7a0b0762020-09-02 16:37:01 +02008207 mod->compiled = mod_c = calloc(1, sizeof *mod_c);
8208 LY_CHECK_ERR_RET(!mod_c, LOGMEM(mod->ctx), LY_EMEM);
8209 mod_c->mod = mod;
Radek Krejci19a96102018-11-15 13:38:09 +01008210
Michal Vasko7f45cf22020-10-01 12:49:44 +02008211 /* process imports */
Michal Vasko7c8439f2020-08-05 13:25:19 +02008212 LY_ARRAY_FOR(sp->imports, u) {
8213 LY_CHECK_GOTO(ret = lys_compile_import(&ctx, &sp->imports[u]), error);
8214 }
Radek Krejci0935f412019-08-20 16:15:18 +02008215
Michal Vasko7f45cf22020-10-01 12:49:44 +02008216 /* features */
8217 LY_CHECK_GOTO(ret = lys_compile_features(&ctx), error);
Radek Krejci14915cc2020-09-14 17:28:13 +02008218
8219 /* identities, work similarly to features with the precompilation */
Michal Vasko7f45cf22020-10-01 12:49:44 +02008220 LY_CHECK_GOTO(ret = lys_compile_identities(&ctx), error);
8221
8222 /* augments and deviations */
8223 LY_CHECK_GOTO(ret = lys_precompile_augments_deviations(&ctx), error);
8224
8225 /* compile augments and deviations of our module from other modules so they can be applied during compilation */
8226 LY_CHECK_GOTO(ret = lys_precompile_own_augments(&ctx), error);
8227 LY_CHECK_GOTO(ret = lys_precompile_own_deviations(&ctx), error);
Radek Krejci19a96102018-11-15 13:38:09 +01008228
Radek Krejci95710c92019-02-11 15:49:55 +01008229 /* data nodes */
Michal Vasko7f45cf22020-10-01 12:49:44 +02008230 LY_LIST_FOR(sp->data, pnode) {
8231 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL), error);
Radek Krejci19a96102018-11-15 13:38:09 +01008232 }
Radek Krejci95710c92019-02-11 15:49:55 +01008233
Michal Vasko7f45cf22020-10-01 12:49:44 +02008234 /* top-level RPCs and notifications */
8235 COMPILE_OP_ARRAY_GOTO(&ctx, sp->rpcs, mod_c->rpcs, NULL, u, lys_compile_action, 0, ret, error);
8236 COMPILE_OP_ARRAY_GOTO(&ctx, sp->notifs, mod_c->notifs, NULL, u, lys_compile_notif, 0, ret, error);
Radek Krejciccd20f12019-02-15 14:12:27 +01008237
Michal Vasko7f45cf22020-10-01 12:49:44 +02008238 /* extension instances */
Radek Krejci0935f412019-08-20 16:15:18 +02008239 COMPILE_EXTS_GOTO(&ctx, sp->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01008240
Michal Vasko7f45cf22020-10-01 12:49:44 +02008241 /* the same for submodules */
8242 LY_ARRAY_FOR(sp->includes, u) {
8243 submod = sp->includes[u].submodule;
8244 LY_LIST_FOR(submod->data, pnode) {
8245 ret = lys_compile_node(&ctx, pnode, NULL, 0, NULL);
8246 LY_CHECK_GOTO(ret, error);
8247 }
8248
8249 COMPILE_OP_ARRAY_GOTO(&ctx, submod->rpcs, mod_c->rpcs, NULL, v, lys_compile_action, 0, ret, error);
8250 COMPILE_OP_ARRAY_GOTO(&ctx, submod->notifs, mod_c->notifs, NULL, v, lys_compile_notif, 0, ret, error);
8251
8252 COMPILE_EXTS_GOTO(&ctx, submod->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error);
8253 }
8254
Michal Vasko004d3152020-06-11 19:59:22 +02008255 /* finish compilation for all unresolved items in the context */
8256 LY_CHECK_GOTO(ret = lys_compile_unres(&ctx), error);
Radek Krejci474f9b82019-07-24 11:36:37 +02008257
Radek Krejcif2de0ed2019-05-02 14:13:18 +02008258 /* validate non-instantiated groupings from the parsed schema,
8259 * without it we would accept even the schemas with invalid grouping specification */
8260 ctx.options |= LYSC_OPT_GROUPING;
8261 LY_ARRAY_FOR(sp->groupings, u) {
8262 if (!(sp->groupings[u].flags & LYS_USED_GRP)) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02008263 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, &sp->groupings[u]), error);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02008264 }
8265 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02008266 LY_LIST_FOR(sp->data, pnode) {
8267 grps = (struct lysp_grp *)lysp_node_groupings(pnode);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02008268 LY_ARRAY_FOR(grps, u) {
8269 if (!(grps[u].flags & LYS_USED_GRP)) {
Michal Vasko7f45cf22020-10-01 12:49:44 +02008270 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, &grps[u]), error);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02008271 }
8272 }
8273 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02008274 LY_ARRAY_FOR(sp->includes, u) {
8275 submod = sp->includes[u].submodule;
8276 LY_ARRAY_FOR(submod->groupings, u) {
8277 if (!(submod->groupings[u].flags & LYS_USED_GRP)) {
8278 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, &submod->groupings[u]), error);
8279 }
8280 }
8281 LY_LIST_FOR(submod->data, pnode) {
8282 grps = (struct lysp_grp *)lysp_node_groupings(pnode);
8283 LY_ARRAY_FOR(grps, u) {
8284 if (!(grps[u].flags & LYS_USED_GRP)) {
8285 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, pnode, &grps[u]), error);
8286 }
8287 }
8288 }
Radek Krejci474f9b82019-07-24 11:36:37 +02008289 }
8290
Michal Vasko8d544252020-03-02 10:19:52 +01008291#if 0
8292 /* hack for NETCONF's edit-config's operation attribute. It is not defined in the schema, but since libyang
8293 * implements YANG metadata (annotations), we need its definition. Because the ietf-netconf schema is not the
8294 * internal part of libyang, we cannot add the annotation into the schema source, but we do it here to have
8295 * the anotation definitions available in the internal schema structure. */
8296 if (ly_strequal(mod->name, "ietf-netconf", 0)) {
8297 if (lyp_add_ietf_netconf_annotations(mod)) {
8298 lys_free(mod, NULL, 1, 1);
8299 return NULL;
8300 }
8301 }
8302#endif
8303
8304 /* add ietf-netconf-with-defaults "default" metadata to the compiled module */
Michal Vasko7a0b0762020-09-02 16:37:01 +02008305 if (!strcmp(mod->name, "ietf-netconf-with-defaults")) {
8306 LY_CHECK_GOTO(ret = lys_compile_ietf_netconf_wd_annotation(&ctx, mod), error);
Michal Vasko8d544252020-03-02 10:19:52 +01008307 }
8308
Michal Vasko7f45cf22020-10-01 12:49:44 +02008309 /* there can be no leftover deviations */
8310 LY_CHECK_ERR_GOTO(ctx.devs.count, LOGINT(ctx.ctx); ret = LY_EINT, error);
8311
8312 for (i = 0; i < ctx.dflts.count; ++i) {
8313 lysc_unres_dflt_free(ctx.ctx, ctx.dflts.objs[i]);
8314 }
8315 ly_set_erase(&ctx.dflts, NULL);
Michal Vasko004d3152020-06-11 19:59:22 +02008316 ly_set_erase(&ctx.xpath, NULL);
8317 ly_set_erase(&ctx.leafrefs, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01008318 ly_set_erase(&ctx.groupings, NULL);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02008319 ly_set_erase(&ctx.tpdf_chain, NULL);
Michal Vasko7f45cf22020-10-01 12:49:44 +02008320 ly_set_erase(&ctx.augs, NULL);
8321 ly_set_erase(&ctx.devs, NULL);
8322 ly_set_erase(&ctx.uses_augs, NULL);
8323 ly_set_erase(&ctx.uses_rfns, NULL);
Radek Krejcia3045382018-11-22 14:30:31 +01008324
Radek Krejciec4da802019-05-02 13:02:41 +02008325 if (ctx.options & LYSC_OPT_FREE_SP) {
Michal Vasko7a0b0762020-09-02 16:37:01 +02008326 lysp_module_free(mod->parsed);
8327 mod->parsed = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +01008328 }
8329
Radek Krejci19a96102018-11-15 13:38:09 +01008330 return LY_SUCCESS;
8331
8332error:
Michal Vasko89b5c072020-10-06 13:52:44 +02008333 lys_precompile_augments_deviations_revert(ctx.ctx, mod);
Michal Vasko7a0b0762020-09-02 16:37:01 +02008334 lys_feature_precompile_revert(&ctx, mod);
Michal Vasko7f45cf22020-10-01 12:49:44 +02008335 for (i = 0; i < ctx.dflts.count; ++i) {
8336 lysc_unres_dflt_free(ctx.ctx, ctx.dflts.objs[i]);
8337 }
8338 ly_set_erase(&ctx.dflts, NULL);
Michal Vasko004d3152020-06-11 19:59:22 +02008339 ly_set_erase(&ctx.xpath, NULL);
8340 ly_set_erase(&ctx.leafrefs, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01008341 ly_set_erase(&ctx.groupings, NULL);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02008342 ly_set_erase(&ctx.tpdf_chain, NULL);
Michal Vasko7f45cf22020-10-01 12:49:44 +02008343 for (i = 0; i < ctx.augs.count; ++i) {
8344 lysc_augment_free(ctx.ctx, ctx.augs.objs[i]);
8345 }
8346 ly_set_erase(&ctx.augs, NULL);
8347 for (i = 0; i < ctx.devs.count; ++i) {
8348 lysc_deviation_free(ctx.ctx, ctx.devs.objs[i]);
8349 }
8350 ly_set_erase(&ctx.devs, NULL);
8351 for (i = 0; i < ctx.uses_augs.count; ++i) {
8352 lysc_augment_free(ctx.ctx, ctx.uses_augs.objs[i]);
8353 }
8354 ly_set_erase(&ctx.uses_augs, NULL);
8355 for (i = 0; i < ctx.uses_rfns.count; ++i) {
8356 lysc_refine_free(ctx.ctx, ctx.uses_rfns.objs[i]);
8357 }
8358 ly_set_erase(&ctx.uses_rfns, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01008359 lysc_module_free(mod_c, NULL);
Michal Vasko7a0b0762020-09-02 16:37:01 +02008360 mod->compiled = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01008361
Radek Krejci19a96102018-11-15 13:38:09 +01008362 return ret;
8363}