blob: b5fe792c51115390934d9b5c88a059a220a82d2e [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,
45 void *parent, LYEXT_PARENT parent_type, const struct lys_module *ext_mod);
46
Radek Krejci19a96102018-11-15 13:38:09 +010047/**
48 * @brief Duplicate string into dictionary
49 * @param[in] CTX libyang context of the dictionary.
50 * @param[in] ORIG String to duplicate.
51 * @param[out] DUP Where to store the result.
52 */
53#define DUP_STRING(CTX, ORIG, DUP) if (ORIG) {DUP = lydict_insert(CTX, ORIG, 0);}
54
Radek Krejciec4da802019-05-02 13:02:41 +020055#define COMPILE_ARRAY_GOTO(CTX, ARRAY_P, ARRAY_C, ITER, FUNC, RET, GOTO) \
Radek Krejci19a96102018-11-15 13:38:09 +010056 if (ARRAY_P) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020057 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
58 LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \
59 for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \
Radek Krejci19a96102018-11-15 13:38:09 +010060 LY_ARRAY_INCREMENT(ARRAY_C); \
Radek Krejciec4da802019-05-02 13:02:41 +020061 RET = FUNC(CTX, &(ARRAY_P)[ITER], &(ARRAY_C)[ITER + __array_offset]); \
Radek Krejcid05cbd92018-12-05 14:26:40 +010062 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
63 } \
64 }
65
Radek Krejciec4da802019-05-02 13:02:41 +020066#define COMPILE_ARRAY1_GOTO(CTX, ARRAY_P, ARRAY_C, PARENT, ITER, FUNC, USES_STATUS, RET, GOTO) \
Radek Krejci6eeb58f2019-02-22 16:29:37 +010067 if (ARRAY_P) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020068 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
69 LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \
70 for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \
Radek Krejci6eeb58f2019-02-22 16:29:37 +010071 LY_ARRAY_INCREMENT(ARRAY_C); \
Radek Krejciec4da802019-05-02 13:02:41 +020072 RET = FUNC(CTX, &(ARRAY_P)[ITER], PARENT, &(ARRAY_C)[ITER + __array_offset], USES_STATUS); \
Radek Krejci6eeb58f2019-02-22 16:29:37 +010073 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
74 } \
75 }
76
Radek Krejci0935f412019-08-20 16:15:18 +020077#define COMPILE_EXTS_GOTO(CTX, EXTS_P, EXT_C, PARENT, PARENT_TYPE, RET, GOTO) \
78 if (EXTS_P) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020079 LY_ARRAY_CREATE_GOTO((CTX)->ctx, EXT_C, LY_ARRAY_COUNT(EXTS_P), RET, GOTO); \
80 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 +020081 LY_ARRAY_INCREMENT(EXT_C); \
Michal Vasko8d544252020-03-02 10:19:52 +010082 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 +020083 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
84 } \
85 }
86
Radek Krejciec4da802019-05-02 13:02:41 +020087#define COMPILE_ARRAY_UNIQUE_GOTO(CTX, ARRAY_P, ARRAY_C, ITER, FUNC, RET, GOTO) \
Radek Krejcid05cbd92018-12-05 14:26:40 +010088 if (ARRAY_P) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +020089 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, LY_ARRAY_COUNT(ARRAY_P), RET, GOTO); \
90 LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \
91 for (ITER = 0; ITER < LY_ARRAY_COUNT(ARRAY_P); ++ITER) { \
Radek Krejcid05cbd92018-12-05 14:26:40 +010092 LY_ARRAY_INCREMENT(ARRAY_C); \
Radek Krejciec4da802019-05-02 13:02:41 +020093 RET = FUNC(CTX, &(ARRAY_P)[ITER], ARRAY_C, &(ARRAY_C)[ITER + __array_offset]); \
Radek Krejci19a96102018-11-15 13:38:09 +010094 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
95 } \
96 }
97
Radek Krejciec4da802019-05-02 13:02:41 +020098#define COMPILE_MEMBER_GOTO(CTX, MEMBER_P, MEMBER_C, FUNC, RET, GOTO) \
Radek Krejci19a96102018-11-15 13:38:09 +010099 if (MEMBER_P) { \
100 MEMBER_C = calloc(1, sizeof *(MEMBER_C)); \
101 LY_CHECK_ERR_GOTO(!(MEMBER_C), LOGMEM((CTX)->ctx); RET = LY_EMEM, GOTO); \
Radek Krejciec4da802019-05-02 13:02:41 +0200102 RET = FUNC(CTX, MEMBER_P, MEMBER_C); \
Radek Krejci19a96102018-11-15 13:38:09 +0100103 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
104 }
105
Radek Krejciec4da802019-05-02 13:02:41 +0200106#define COMPILE_MEMBER_ARRAY_GOTO(CTX, MEMBER_P, ARRAY_C, FUNC, RET, GOTO) \
Radek Krejci00b874b2019-02-12 10:54:50 +0100107 if (MEMBER_P) { \
108 LY_ARRAY_CREATE_GOTO((CTX)->ctx, ARRAY_C, 1, RET, GOTO); \
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200109 LY_ARRAY_COUNT_TYPE __array_offset = LY_ARRAY_COUNT(ARRAY_C); \
Radek Krejci00b874b2019-02-12 10:54:50 +0100110 LY_ARRAY_INCREMENT(ARRAY_C); \
Radek Krejciec4da802019-05-02 13:02:41 +0200111 RET = FUNC(CTX, MEMBER_P, &(ARRAY_C)[__array_offset]); \
Radek Krejci00b874b2019-02-12 10:54:50 +0100112 LY_CHECK_GOTO(RET != LY_SUCCESS, GOTO); \
113 }
114
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100115#define COMPILE_CHECK_UNIQUENESS_ARRAY(CTX, ARRAY, MEMBER, EXCL, STMT, IDENT) \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100116 if (ARRAY) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200117 for (LY_ARRAY_COUNT_TYPE u__ = 0; u__ < LY_ARRAY_COUNT(ARRAY); ++u__) { \
Radek Krejci0af46292019-01-11 16:02:31 +0100118 if (&(ARRAY)[u__] != EXCL && (void*)((ARRAY)[u__].MEMBER) == (void*)(IDENT)) { \
Radek Krejcid05cbd92018-12-05 14:26:40 +0100119 LOGVAL((CTX)->ctx, LY_VLOG_STR, (CTX)->path, LY_VCODE_DUPIDENT, IDENT, STMT); \
120 return LY_EVALID; \
121 } \
122 } \
123 }
124
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100125#define COMPILE_CHECK_UNIQUENESS_PARRAY(CTX, ARRAY, MEMBER, EXCL, STMT, IDENT) \
126 if (ARRAY) { \
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200127 for (LY_ARRAY_COUNT_TYPE u__ = 0; u__ < LY_ARRAY_COUNT(ARRAY); ++u__) { \
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100128 if (&(ARRAY)[u__] != EXCL && (void*)((ARRAY)[u__]->MEMBER) == (void*)(IDENT)) { \
129 LOGVAL((CTX)->ctx, LY_VLOG_STR, (CTX)->path, LY_VCODE_DUPIDENT, IDENT, STMT); \
130 return LY_EVALID; \
131 } \
132 } \
133 }
134
135struct lysc_ext *
136lysc_ext_dup(struct lysc_ext *orig)
137{
138 ++orig->refcount;
139 return orig;
140}
141
Radek Krejci19a96102018-11-15 13:38:09 +0100142static struct lysc_ext_instance *
143lysc_ext_instance_dup(struct ly_ctx *ctx, struct lysc_ext_instance *orig)
144{
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100145 /* TODO - extensions, increase refcount */
Radek Krejci19a96102018-11-15 13:38:09 +0100146 (void) ctx;
147 (void) orig;
148 return NULL;
149}
150
Radek Krejcib56c7502019-02-13 14:19:54 +0100151/**
Radek Krejci474f9b82019-07-24 11:36:37 +0200152 * @brief Add record into the compile context's list of incomplete default values.
153 * @param[in] ctx Compile context with the incomplete default values list.
154 * @param[in] context_node Context schema node to store in the record.
155 * @param[in] dflt Incomplete default value to store in the record.
156 * @param[in] dflt_mod Module of the default value definition to store in the record.
157 * @return LY_EMEM in case of memory allocation failure.
158 * @return LY_SUCCESS
159 */
160static LY_ERR
161lysc_incomplete_dflts_add(struct lysc_ctx *ctx, struct lysc_node *context_node, struct lyd_value *dflt, struct lys_module *dflt_mod)
162{
163 struct lysc_incomplete_dflt *r;
164 r = malloc(sizeof *r);
165 LY_CHECK_ERR_RET(!r, LOGMEM(ctx->ctx), LY_EMEM);
166 r->context_node = context_node;
167 r->dflt = dflt;
168 r->dflt_mod = dflt_mod;
169 ly_set_add(&ctx->dflts, r, LY_SET_OPT_USEASLIST);
170
171 return LY_SUCCESS;
172}
173
174/**
175 * @brief Remove record of the given default value from the compile context's list of incomplete default values.
176 * @param[in] ctx Compile context with the incomplete default values list.
177 * @param[in] dflt Incomplete default values identifying the record to remove.
178 */
179static void
180lysc_incomplete_dflts_remove(struct lysc_ctx *ctx, struct lyd_value *dflt)
181{
182 unsigned int u;
183 struct lysc_incomplete_dflt *r;
184
185 for (u = 0; u < ctx->dflts.count; ++u) {
186 r = (struct lysc_incomplete_dflt*)ctx->dflts.objs[u];
187 if (r->dflt == dflt) {
188 free(ctx->dflts.objs[u]);
189 memmove(&ctx->dflts.objs[u], &ctx->dflts.objs[u + 1], (ctx->dflts.count - (u + 1)) * sizeof *ctx->dflts.objs);
190 --ctx->dflts.count;
191 return;
192 }
193 }
194}
195
Radek Krejci0e59c312019-08-15 15:34:15 +0200196void
Radek Krejci327de162019-06-14 12:52:07 +0200197lysc_update_path(struct lysc_ctx *ctx, struct lysc_node *parent, const char *name)
198{
199 int len;
200 int nextlevel = 0; /* 0 - no starttag, 1 - '/' starttag, 2 - '=' starttag + '}' endtag */
201
202 if (!name) {
203 /* removing last path segment */
204 if (ctx->path[ctx->path_len - 1] == '}') {
205 for (; ctx->path[ctx->path_len] != '=' && ctx->path[ctx->path_len] != '{'; --ctx->path_len);
206 if (ctx->path[ctx->path_len] == '=') {
207 ctx->path[ctx->path_len++] = '}';
208 } else {
209 /* not a top-level special tag, remove also preceiding '/' */
210 goto remove_nodelevel;
211 }
212 } else {
213remove_nodelevel:
214 for (; ctx->path[ctx->path_len] != '/' ; --ctx->path_len);
215 if (ctx->path_len == 0) {
216 /* top-level (last segment) */
Radek Krejciacc79042019-07-25 14:14:57 +0200217 ctx->path_len = 1;
Radek Krejci327de162019-06-14 12:52:07 +0200218 }
219 }
220 /* set new terminating NULL-byte */
221 ctx->path[ctx->path_len] = '\0';
222 } else {
223 if (ctx->path_len > 1) {
224 if (!parent && ctx->path[ctx->path_len - 1] == '}' && ctx->path[ctx->path_len - 2] != '\'') {
225 /* extension of the special tag */
226 nextlevel = 2;
227 --ctx->path_len;
228 } else {
229 /* there is already some path, so add next level */
230 nextlevel = 1;
231 }
232 } /* else the path is just initiated with '/', so do not add additional slash in case of top-level nodes */
233
234 if (nextlevel != 2) {
235 if ((parent && parent->module == ctx->mod) || (!parent && ctx->path_len > 1 && name[0] == '{')) {
236 /* module not changed, print the name unprefixed */
Radek Krejci70ee9152019-07-25 11:27:27 +0200237 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "%s%s", nextlevel ? "/" : "", name);
Radek Krejci327de162019-06-14 12:52:07 +0200238 } else {
Radek Krejci70ee9152019-07-25 11:27:27 +0200239 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 +0200240 }
241 } else {
Radek Krejci70ee9152019-07-25 11:27:27 +0200242 len = snprintf(&ctx->path[ctx->path_len], LYSC_CTX_BUFSIZE - ctx->path_len, "='%s'}", name);
Radek Krejci327de162019-06-14 12:52:07 +0200243 }
Radek Krejciacc79042019-07-25 14:14:57 +0200244 if (len >= LYSC_CTX_BUFSIZE - ctx->path_len) {
245 /* output truncated */
246 ctx->path_len = LYSC_CTX_BUFSIZE - 1;
247 } else {
248 ctx->path_len += len;
249 }
Radek Krejci327de162019-06-14 12:52:07 +0200250 }
251}
252
253/**
Radek Krejcib56c7502019-02-13 14:19:54 +0100254 * @brief Duplicate the compiled pattern structure.
255 *
256 * Instead of duplicating memory, the reference counter in the @p orig is increased.
257 *
258 * @param[in] orig The pattern structure to duplicate.
259 * @return The duplicated structure to use.
260 */
Radek Krejci19a96102018-11-15 13:38:09 +0100261static struct lysc_pattern*
262lysc_pattern_dup(struct lysc_pattern *orig)
263{
264 ++orig->refcount;
265 return orig;
266}
267
Radek Krejcib56c7502019-02-13 14:19:54 +0100268/**
269 * @brief Duplicate the array of compiled patterns.
270 *
271 * The sized array itself is duplicated, but the pattern structures are just shadowed by increasing their reference counter.
272 *
273 * @param[in] ctx Libyang context for logging.
274 * @param[in] orig The patterns sized array to duplicate.
275 * @return New sized array as a copy of @p orig.
276 * @return NULL in case of memory allocation error.
277 */
Radek Krejci19a96102018-11-15 13:38:09 +0100278static struct lysc_pattern**
279lysc_patterns_dup(struct ly_ctx *ctx, struct lysc_pattern **orig)
280{
Radek Krejcid05cbd92018-12-05 14:26:40 +0100281 struct lysc_pattern **dup = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200282 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +0100283
Radek Krejcib56c7502019-02-13 14:19:54 +0100284 assert(orig);
285
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200286 LY_ARRAY_CREATE_RET(ctx, dup, LY_ARRAY_COUNT(orig), NULL);
Radek Krejci19a96102018-11-15 13:38:09 +0100287 LY_ARRAY_FOR(orig, u) {
288 dup[u] = lysc_pattern_dup(orig[u]);
289 LY_ARRAY_INCREMENT(dup);
290 }
291 return dup;
292}
293
Radek Krejcib56c7502019-02-13 14:19:54 +0100294/**
295 * @brief Duplicate compiled range structure.
296 *
297 * @param[in] ctx Libyang context for logging.
298 * @param[in] orig The range structure to be duplicated.
299 * @return New compiled range structure as a copy of @p orig.
300 * @return NULL in case of memory allocation error.
301 */
Radek Krejci19a96102018-11-15 13:38:09 +0100302struct lysc_range*
303lysc_range_dup(struct ly_ctx *ctx, const struct lysc_range *orig)
304{
305 struct lysc_range *dup;
306 LY_ERR ret;
307
Radek Krejcib56c7502019-02-13 14:19:54 +0100308 assert(orig);
309
Radek Krejci19a96102018-11-15 13:38:09 +0100310 dup = calloc(1, sizeof *dup);
311 LY_CHECK_ERR_RET(!dup, LOGMEM(ctx), NULL);
312 if (orig->parts) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200313 LY_ARRAY_CREATE_GOTO(ctx, dup->parts, LY_ARRAY_COUNT(orig->parts), ret, cleanup);
314 LY_ARRAY_COUNT(dup->parts) = LY_ARRAY_COUNT(orig->parts);
315 memcpy(dup->parts, orig->parts, LY_ARRAY_COUNT(dup->parts) * sizeof *dup->parts);
Radek Krejci19a96102018-11-15 13:38:09 +0100316 }
317 DUP_STRING(ctx, orig->eapptag, dup->eapptag);
318 DUP_STRING(ctx, orig->emsg, dup->emsg);
319 dup->exts = lysc_ext_instance_dup(ctx, orig->exts);
320
321 return dup;
322cleanup:
323 free(dup);
324 (void) ret; /* set but not used due to the return type */
325 return NULL;
326}
327
Radek Krejcib56c7502019-02-13 14:19:54 +0100328/**
329 * @brief Stack for processing if-feature expressions.
330 */
Radek Krejci19a96102018-11-15 13:38:09 +0100331struct iff_stack {
Radek Krejcib56c7502019-02-13 14:19:54 +0100332 int size; /**< number of items in the stack */
333 int index; /**< first empty item */
334 uint8_t *stack;/**< stack - array of @ref ifftokens to create the if-feature expression in prefix format */
Radek Krejci19a96102018-11-15 13:38:09 +0100335};
336
Radek Krejcib56c7502019-02-13 14:19:54 +0100337/**
338 * @brief Add @ref ifftokens into the stack.
339 * @param[in] stack The if-feature stack to use.
340 * @param[in] value One of the @ref ifftokens to store in the stack.
341 * @return LY_EMEM in case of memory allocation error
342 * @return LY_ESUCCESS if the value successfully stored.
343 */
Radek Krejci19a96102018-11-15 13:38:09 +0100344static LY_ERR
345iff_stack_push(struct iff_stack *stack, uint8_t value)
346{
347 if (stack->index == stack->size) {
348 stack->size += 4;
349 stack->stack = ly_realloc(stack->stack, stack->size * sizeof *stack->stack);
350 LY_CHECK_ERR_RET(!stack->stack, LOGMEM(NULL); stack->size = 0, LY_EMEM);
351 }
352 stack->stack[stack->index++] = value;
353 return LY_SUCCESS;
354}
355
Radek Krejcib56c7502019-02-13 14:19:54 +0100356/**
357 * @brief Get (and remove) the last item form the stack.
358 * @param[in] stack The if-feature stack to use.
359 * @return The value from the top of the stack.
360 */
Radek Krejci19a96102018-11-15 13:38:09 +0100361static uint8_t
362iff_stack_pop(struct iff_stack *stack)
363{
Radek Krejcib56c7502019-02-13 14:19:54 +0100364 assert(stack && stack->index);
365
Radek Krejci19a96102018-11-15 13:38:09 +0100366 stack->index--;
367 return stack->stack[stack->index];
368}
369
Radek Krejcib56c7502019-02-13 14:19:54 +0100370/**
371 * @brief Clean up the stack.
372 * @param[in] stack The if-feature stack to use.
373 */
Radek Krejci19a96102018-11-15 13:38:09 +0100374static void
375iff_stack_clean(struct iff_stack *stack)
376{
377 stack->size = 0;
378 free(stack->stack);
379}
380
Radek Krejcib56c7502019-02-13 14:19:54 +0100381/**
382 * @brief Store the @ref ifftokens (@p op) on the given position in the 2bits array
383 * (libyang format of the if-feature expression).
384 * @param[in,out] list The 2bits array to modify.
385 * @param[in] op The operand (@ref ifftokens) to store.
386 * @param[in] pos Position (0-based) where to store the given @p op.
387 */
Radek Krejci19a96102018-11-15 13:38:09 +0100388static void
389iff_setop(uint8_t *list, uint8_t op, int pos)
390{
391 uint8_t *item;
392 uint8_t mask = 3;
393
394 assert(pos >= 0);
395 assert(op <= 3); /* max 2 bits */
396
397 item = &list[pos / 4];
398 mask = mask << 2 * (pos % 4);
399 *item = (*item) & ~mask;
400 *item = (*item) | (op << 2 * (pos % 4));
401}
402
Radek Krejcib56c7502019-02-13 14:19:54 +0100403#define LYS_IFF_LP 0x04 /**< Additional, temporary, value of @ref ifftokens: ( */
404#define LYS_IFF_RP 0x08 /**< Additional, temporary, value of @ref ifftokens: ) */
Radek Krejci19a96102018-11-15 13:38:09 +0100405
Radek Krejci0af46292019-01-11 16:02:31 +0100406/**
407 * @brief Find a feature of the given name and referenced in the given module.
408 *
409 * If the compiled schema is available (the schema is implemented), the feature from the compiled schema is
410 * returned. Otherwise, the special array of pre-compiled features is used to search for the feature. Such
411 * features are always disabled (feature from not implemented schema cannot be enabled), but in case the schema
412 * will be made implemented in future (no matter if implicitly via augmenting/deviating it or explicitly via
413 * ly_ctx_module_implement()), the compilation of these feature structure is finished, but the pointers
414 * assigned till that time will be still valid.
415 *
416 * @param[in] mod Module where the feature was referenced (used to resolve prefix of the feature).
417 * @param[in] name Name of the feature including possible prefix.
418 * @param[in] len Length of the string representing the feature identifier in the name variable (mandatory!).
419 * @return Pointer to the feature structure if found, NULL otherwise.
420 */
Radek Krejci19a96102018-11-15 13:38:09 +0100421static struct lysc_feature *
Radek Krejci0af46292019-01-11 16:02:31 +0100422lys_feature_find(struct lys_module *mod, const char *name, size_t len)
Radek Krejci19a96102018-11-15 13:38:09 +0100423{
424 size_t i;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200425 LY_ARRAY_COUNT_TYPE u;
Radek Krejci0af46292019-01-11 16:02:31 +0100426 struct lysc_feature *f, *flist;
Radek Krejci19a96102018-11-15 13:38:09 +0100427
Radek Krejci120d8542020-08-12 09:29:16 +0200428 assert(mod);
429
Radek Krejci19a96102018-11-15 13:38:09 +0100430 for (i = 0; i < len; ++i) {
431 if (name[i] == ':') {
432 /* we have a prefixed feature */
Radek Krejci0af46292019-01-11 16:02:31 +0100433 mod = lys_module_find_prefix(mod, name, i);
Radek Krejci19a96102018-11-15 13:38:09 +0100434 LY_CHECK_RET(!mod, NULL);
435
436 name = &name[i + 1];
437 len = len - i - 1;
438 }
439 }
440
441 /* we have the correct module, get the feature */
Radek Krejci0af46292019-01-11 16:02:31 +0100442 if (mod->implemented) {
443 /* module is implemented so there is already the compiled schema */
444 flist = mod->compiled->features;
445 } else {
Michal Vasko33ff9422020-07-03 09:50:39 +0200446 flist = mod->dis_features;
Radek Krejci0af46292019-01-11 16:02:31 +0100447 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200448 LY_ARRAY_FOR(flist, u) {
449 f = &flist[u];
Radek Krejci7f9b6512019-09-18 13:11:09 +0200450 if (!ly_strncmp(f->name, name, len)) {
Radek Krejci19a96102018-11-15 13:38:09 +0100451 return f;
452 }
453 }
454
455 return NULL;
456}
457
Michal Vasko8d544252020-03-02 10:19:52 +0100458/**
Michal Vasko5fe75f12020-03-02 13:52:37 +0100459 * @brief Fill in the prepared compiled extensions definition structure according to the parsed extension definition.
460 */
461static LY_ERR
462lys_compile_extension(struct lysc_ctx *ctx, const struct lys_module *ext_mod, struct lysp_ext *ext_p, struct lysc_ext **ext)
463{
464 LY_ERR ret = LY_SUCCESS;
465
466 if (!ext_p->compiled) {
467 lysc_update_path(ctx, NULL, "{extension}");
468 lysc_update_path(ctx, NULL, ext_p->name);
469
470 /* compile the extension definition */
471 ext_p->compiled = calloc(1, sizeof **ext);
472 ext_p->compiled->refcount = 1;
473 DUP_STRING(ctx->ctx, ext_p->name, ext_p->compiled->name);
474 DUP_STRING(ctx->ctx, ext_p->argument, ext_p->compiled->argument);
475 ext_p->compiled->module = (struct lys_module *)ext_mod;
476 COMPILE_EXTS_GOTO(ctx, ext_p->exts, ext_p->compiled->exts, *ext, LYEXT_PAR_EXT, ret, done);
477
478 lysc_update_path(ctx, NULL, NULL);
479 lysc_update_path(ctx, NULL, NULL);
480
481 /* find extension definition plugin */
482 ext_p->compiled->plugin = lyext_get_plugin(ext_p->compiled);
483 }
484
485 *ext = lysc_ext_dup(ext_p->compiled);
486
487done:
488 return ret;
489}
490
491/**
Michal Vasko8d544252020-03-02 10:19:52 +0100492 * @brief Fill in the prepared compiled extension instance structure according to the parsed extension instance.
493 *
494 * @param[in] ctx Compilation context.
495 * @param[in] ext_p Parsed extension instance.
496 * @param[in,out] ext Prepared compiled extension instance.
497 * @param[in] parent Extension instance parent.
498 * @param[in] parent_type Extension instance parent type.
499 * @param[in] ext_mod Optional module with the extension instance extension definition, set only for internal annotations.
500 */
Radek Krejci19a96102018-11-15 13:38:09 +0100501static LY_ERR
Michal Vasko8d544252020-03-02 10:19:52 +0100502lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysc_ext_instance *ext, void *parent,
503 LYEXT_PARENT parent_type, const struct lys_module *ext_mod)
Radek Krejci19a96102018-11-15 13:38:09 +0100504{
Radek Krejci7c960162019-09-18 14:16:12 +0200505 LY_ERR ret = LY_EVALID;
Radek Krejci19a96102018-11-15 13:38:09 +0100506 const char *name;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200507 size_t u;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200508 LY_ARRAY_COUNT_TYPE v;
Radek Krejci7c960162019-09-18 14:16:12 +0200509 const char *prefixed_name = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +0100510
511 DUP_STRING(ctx->ctx, ext_p->argument, ext->argument);
512 ext->insubstmt = ext_p->insubstmt;
513 ext->insubstmt_index = ext_p->insubstmt_index;
Radek Krejci28681fa2019-09-06 13:08:45 +0200514 ext->module = ctx->mod_def;
Radek Krejci0935f412019-08-20 16:15:18 +0200515 ext->parent = parent;
516 ext->parent_type = parent_type;
Radek Krejci19a96102018-11-15 13:38:09 +0100517
Radek Krejcif56e2a42019-09-09 14:15:25 +0200518 lysc_update_path(ctx, ext->parent_type == LYEXT_PAR_NODE ? (struct lysc_node*)ext->parent : NULL, "{extension}");
Radek Krejcif56e2a42019-09-09 14:15:25 +0200519
Radek Krejci19a96102018-11-15 13:38:09 +0100520 /* get module where the extension definition should be placed */
Radek Krejci7c960162019-09-18 14:16:12 +0200521 for (u = strlen(ext_p->name); u && ext_p->name[u - 1] != ':'; --u);
522 if (ext_p->yin) {
523 /* YIN parser has to replace prefixes by the namespace - XML namespace/prefix pairs may differs form the YANG schema's
524 * namespace/prefix pair. YIN parser does not have the imports available, so mapping from XML namespace to the
525 * YANG (import) prefix must be done here. */
526 if (!ly_strncmp(ctx->mod_def->ns, ext_p->name, u - 1)) {
527 prefixed_name = lydict_insert(ctx->ctx, &ext_p->name[u], 0);
528 u = 0;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200529 } else {
530 assert(ctx->mod_def->parsed);
531 LY_ARRAY_FOR(ctx->mod_def->parsed->imports, v) {
532 if (!ly_strncmp(ctx->mod_def->parsed->imports[v].module->ns, ext_p->name, u - 1)) {
Radek Krejci7c960162019-09-18 14:16:12 +0200533 char *s;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200534 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 +0200535 ret = LY_EMEM, cleanup);
Radek Krejci7c960162019-09-18 14:16:12 +0200536 prefixed_name = lydict_insert_zc(ctx->ctx, s);
Michal Vasko7c8439f2020-08-05 13:25:19 +0200537 u = strlen(ctx->mod_def->parsed->imports[v].prefix) + 1; /* add semicolon */
Radek Krejci7c960162019-09-18 14:16:12 +0200538 break;
539 }
540 }
541 }
542 if (!prefixed_name) {
543 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
544 "Invalid XML prefix of \"%.*s\" namespace used for extension instance identifier.", u, ext_p->name);
545 goto cleanup;
546 }
547 } else {
548 prefixed_name = ext_p->name;
549 }
550 lysc_update_path(ctx, NULL, prefixed_name);
551
Michal Vasko8d544252020-03-02 10:19:52 +0100552 if (!ext_mod) {
Radek Krejci63f55512020-05-20 14:37:18 +0200553 ext_mod = u ? lys_module_find_prefix(ctx->mod_def, prefixed_name, u - 1) : ctx->mod_def;
Michal Vasko8d544252020-03-02 10:19:52 +0100554 if (!ext_mod) {
555 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
556 "Invalid prefix \"%.*s\" used for extension instance identifier.", u, prefixed_name);
557 goto cleanup;
558 } else if (!ext_mod->parsed->extensions) {
559 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
560 "Extension instance \"%s\" refers \"%s\" module that does not contain extension definitions.",
561 prefixed_name, ext_mod->name);
562 goto cleanup;
563 }
Radek Krejci7c960162019-09-18 14:16:12 +0200564 }
565 name = &prefixed_name[u];
Radek Krejci0935f412019-08-20 16:15:18 +0200566
Michal Vasko5fe75f12020-03-02 13:52:37 +0100567 /* find the parsed extension definition there */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200568 LY_ARRAY_FOR(ext_mod->parsed->extensions, v) {
569 if (!strcmp(name, ext_mod->parsed->extensions[v].name)) {
Michal Vasko5fe75f12020-03-02 13:52:37 +0100570 /* compile extension definition and assign it */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200571 LY_CHECK_RET(lys_compile_extension(ctx, ext_mod, &ext_mod->parsed->extensions[v], &ext->def));
Radek Krejci19a96102018-11-15 13:38:09 +0100572 break;
573 }
574 }
Radek Krejci7c960162019-09-18 14:16:12 +0200575 if (!ext->def) {
576 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
577 "Extension definition of extension instance \"%s\" not found.", prefixed_name);
578 goto cleanup;
579 }
Radek Krejci0935f412019-08-20 16:15:18 +0200580
Radek Krejcif56e2a42019-09-09 14:15:25 +0200581 /* unify the parsed extension from YIN and YANG sources. Without extension definition, it is not possible
582 * to get extension's argument from YIN source, so it is stored as one of the substatements. Here we have
583 * to find it, mark it with LYS_YIN_ARGUMENT and store it in the compiled structure. */
Radek Krejci7c960162019-09-18 14:16:12 +0200584 if (ext_p->yin && ext->def->argument && !ext->argument) {
Radek Krejcif56e2a42019-09-09 14:15:25 +0200585 /* Schema was parsed from YIN and an argument is expected, ... */
586 struct lysp_stmt *stmt = NULL;
587
588 if (ext->def->flags & LYS_YINELEM_TRUE) {
589 /* ... argument was the first XML child element */
590 if (ext_p->child && !(ext_p->child->flags & LYS_YIN_ATTR)) {
591 /* TODO check namespace of the statement */
592 if (!strcmp(ext_p->child->stmt, ext->def->argument)) {
593 stmt = ext_p->child;
594 }
595 }
596 } else {
597 /* ... argument was one of the XML attributes which are represented as child stmt
598 * with LYS_YIN_ATTR flag */
599 for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {
600 if (!strcmp(stmt->stmt, ext->def->argument)) {
601 /* this is the extension's argument */
Radek Krejcif56e2a42019-09-09 14:15:25 +0200602 break;
603 }
604 }
605 }
606 if (!stmt) {
607 /* missing extension's argument */
608 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci7c960162019-09-18 14:16:12 +0200609 "Extension instance \"%s\" misses argument \"%s\".", prefixed_name, ext->def->argument);
610 goto cleanup;
Radek Krejcif56e2a42019-09-09 14:15:25 +0200611
612 }
613 ext->argument = lydict_insert(ctx->ctx, stmt->arg, 0);
614 stmt->flags |= LYS_YIN_ARGUMENT;
615 }
Radek Krejci7c960162019-09-18 14:16:12 +0200616 if (prefixed_name != ext_p->name) {
617 lydict_remove(ctx->ctx, ext_p->name);
618 ext_p->name = prefixed_name;
619 if (!ext_p->argument && ext->argument) {
620 ext_p->argument = lydict_insert(ctx->ctx, ext->argument, 0);
621 }
622 }
Radek Krejcif56e2a42019-09-09 14:15:25 +0200623
Radek Krejci0935f412019-08-20 16:15:18 +0200624 if (ext->def->plugin && ext->def->plugin->compile) {
Radek Krejciad5963b2019-09-06 16:03:05 +0200625 if (ext->argument) {
626 lysc_update_path(ctx, (struct lysc_node*)ext, ext->argument);
627 }
Radek Krejci7c960162019-09-18 14:16:12 +0200628 LY_CHECK_GOTO(ext->def->plugin->compile(ctx, ext_p, ext), cleanup);
Radek Krejciad5963b2019-09-06 16:03:05 +0200629 if (ext->argument) {
630 lysc_update_path(ctx, NULL, NULL);
631 }
Radek Krejci0935f412019-08-20 16:15:18 +0200632 }
Radek Krejcif56e2a42019-09-09 14:15:25 +0200633 ext_p->compiled = ext;
634
Radek Krejci7c960162019-09-18 14:16:12 +0200635 ret = LY_SUCCESS;
636cleanup:
637 if (prefixed_name && prefixed_name != ext_p->name) {
638 lydict_remove(ctx->ctx, prefixed_name);
639 }
640
Radek Krejcif56e2a42019-09-09 14:15:25 +0200641 lysc_update_path(ctx, NULL, NULL);
642 lysc_update_path(ctx, NULL, NULL);
Radek Krejci0935f412019-08-20 16:15:18 +0200643
Radek Krejci7c960162019-09-18 14:16:12 +0200644 return ret;
Radek Krejci0935f412019-08-20 16:15:18 +0200645}
646
647/**
Radek Krejcib56c7502019-02-13 14:19:54 +0100648 * @brief Compile information from the if-feature statement
649 * @param[in] ctx Compile context.
650 * @param[in] value The if-feature argument to process. It is pointer-to-pointer-to-char just to unify the compile functions.
Radek Krejcib56c7502019-02-13 14:19:54 +0100651 * @param[in,out] iff Prepared (empty) compiled if-feature structure to fill.
652 * @return LY_ERR value.
653 */
Radek Krejci19a96102018-11-15 13:38:09 +0100654static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +0200655lys_compile_iffeature(struct lysc_ctx *ctx, const char **value, struct lysc_iffeature *iff)
Radek Krejci19a96102018-11-15 13:38:09 +0100656{
657 const char *c = *value;
658 int r, rc = EXIT_FAILURE;
659 int i, j, last_not, checkversion = 0;
660 unsigned int f_size = 0, expr_size = 0, f_exp = 1;
661 uint8_t op;
662 struct iff_stack stack = {0, 0, NULL};
663 struct lysc_feature *f;
664
665 assert(c);
666
667 /* pre-parse the expression to get sizes for arrays, also do some syntax checks of the expression */
668 for (i = j = last_not = 0; c[i]; i++) {
669 if (c[i] == '(') {
670 j++;
671 checkversion = 1;
672 continue;
673 } else if (c[i] == ')') {
674 j--;
675 continue;
676 } else if (isspace(c[i])) {
677 checkversion = 1;
678 continue;
679 }
680
681 if (!strncmp(&c[i], "not", r = 3) || !strncmp(&c[i], "and", r = 3) || !strncmp(&c[i], "or", r = 2)) {
Radek Krejci6788abc2019-06-14 13:56:49 +0200682 int sp;
683 for(sp = 0; c[i + r + sp] && isspace(c[i + r + sp]); sp++);
684 if (c[i + r + sp] == '\0') {
Radek Krejci19a96102018-11-15 13:38:09 +0100685 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
686 "Invalid value \"%s\" of if-feature - unexpected end of expression.", *value);
687 return LY_EVALID;
688 } else if (!isspace(c[i + r])) {
689 /* feature name starting with the not/and/or */
690 last_not = 0;
691 f_size++;
692 } else if (c[i] == 'n') { /* not operation */
693 if (last_not) {
694 /* double not */
695 expr_size = expr_size - 2;
696 last_not = 0;
697 } else {
698 last_not = 1;
699 }
700 } else { /* and, or */
Radek Krejci6788abc2019-06-14 13:56:49 +0200701 if (f_exp != f_size) {
702 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
703 "Invalid value \"%s\" of if-feature - missing feature/expression before \"%.*s\" operation.", *value, r, &c[i]);
704 return LY_EVALID;
705 }
Radek Krejci19a96102018-11-15 13:38:09 +0100706 f_exp++;
Radek Krejci6788abc2019-06-14 13:56:49 +0200707
Radek Krejci19a96102018-11-15 13:38:09 +0100708 /* not a not operation */
709 last_not = 0;
710 }
711 i += r;
712 } else {
713 f_size++;
714 last_not = 0;
715 }
716 expr_size++;
717
718 while (!isspace(c[i])) {
Radek Krejci6788abc2019-06-14 13:56:49 +0200719 if (!c[i] || c[i] == ')' || c[i] == '(') {
Radek Krejci19a96102018-11-15 13:38:09 +0100720 i--;
721 break;
722 }
723 i++;
724 }
725 }
Radek Krejci6788abc2019-06-14 13:56:49 +0200726 if (j) {
Radek Krejci19a96102018-11-15 13:38:09 +0100727 /* not matching count of ( and ) */
728 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
729 "Invalid value \"%s\" of if-feature - non-matching opening and closing parentheses.", *value);
730 return LY_EVALID;
731 }
Radek Krejci6788abc2019-06-14 13:56:49 +0200732 if (f_exp != f_size) {
733 /* features do not match the needed arguments for the logical operations */
734 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
735 "Invalid value \"%s\" of if-feature - number of features in expression does not match "
736 "the required number of operands for the operations.", *value);
737 return LY_EVALID;
738 }
Radek Krejci19a96102018-11-15 13:38:09 +0100739
740 if (checkversion || expr_size > 1) {
741 /* check that we have 1.1 module */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100742 if (ctx->mod_def->version != LYS_VERSION_1_1) {
Radek Krejci19a96102018-11-15 13:38:09 +0100743 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
744 "Invalid value \"%s\" of if-feature - YANG 1.1 expression in YANG 1.0 module.", *value);
745 return LY_EVALID;
746 }
747 }
748
749 /* allocate the memory */
750 LY_ARRAY_CREATE_RET(ctx->ctx, iff->features, f_size, LY_EMEM);
751 iff->expr = calloc((j = (expr_size / 4) + ((expr_size % 4) ? 1 : 0)), sizeof *iff->expr);
752 stack.stack = malloc(expr_size * sizeof *stack.stack);
753 LY_CHECK_ERR_GOTO(!stack.stack || !iff->expr, LOGMEM(ctx->ctx), error);
754
755 stack.size = expr_size;
756 f_size--; expr_size--; /* used as indexes from now */
757
758 for (i--; i >= 0; i--) {
759 if (c[i] == ')') {
760 /* push it on stack */
761 iff_stack_push(&stack, LYS_IFF_RP);
762 continue;
763 } else if (c[i] == '(') {
764 /* pop from the stack into result all operators until ) */
765 while((op = iff_stack_pop(&stack)) != LYS_IFF_RP) {
766 iff_setop(iff->expr, op, expr_size--);
767 }
768 continue;
769 } else if (isspace(c[i])) {
770 continue;
771 }
772
773 /* end of operator or operand -> find beginning and get what is it */
774 j = i + 1;
775 while (i >= 0 && !isspace(c[i]) && c[i] != '(') {
776 i--;
777 }
778 i++; /* go back by one step */
779
780 if (!strncmp(&c[i], "not", 3) && isspace(c[i + 3])) {
781 if (stack.index && stack.stack[stack.index - 1] == LYS_IFF_NOT) {
782 /* double not */
783 iff_stack_pop(&stack);
784 } else {
785 /* not has the highest priority, so do not pop from the stack
786 * as in case of AND and OR */
787 iff_stack_push(&stack, LYS_IFF_NOT);
788 }
789 } else if (!strncmp(&c[i], "and", 3) && isspace(c[i + 3])) {
790 /* as for OR - pop from the stack all operators with the same or higher
791 * priority and store them to the result, then push the AND to the stack */
792 while (stack.index && stack.stack[stack.index - 1] <= LYS_IFF_AND) {
793 op = iff_stack_pop(&stack);
794 iff_setop(iff->expr, op, expr_size--);
795 }
796 iff_stack_push(&stack, LYS_IFF_AND);
797 } else if (!strncmp(&c[i], "or", 2) && isspace(c[i + 2])) {
798 while (stack.index && stack.stack[stack.index - 1] <= LYS_IFF_OR) {
799 op = iff_stack_pop(&stack);
800 iff_setop(iff->expr, op, expr_size--);
801 }
802 iff_stack_push(&stack, LYS_IFF_OR);
803 } else {
804 /* feature name, length is j - i */
805
806 /* add it to the expression */
807 iff_setop(iff->expr, LYS_IFF_F, expr_size--);
808
809 /* now get the link to the feature definition */
Radek Krejci0af46292019-01-11 16:02:31 +0100810 f = lys_feature_find(ctx->mod_def, &c[i], j - i);
811 LY_CHECK_ERR_GOTO(!f, LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
812 "Invalid value \"%s\" of if-feature - unable to find feature \"%.*s\".", *value, j - i, &c[i]);
813 rc = LY_EVALID, error)
Radek Krejci19a96102018-11-15 13:38:09 +0100814 iff->features[f_size] = f;
815 LY_ARRAY_INCREMENT(iff->features);
816 f_size--;
817 }
818 }
819 while (stack.index) {
820 op = iff_stack_pop(&stack);
821 iff_setop(iff->expr, op, expr_size--);
822 }
823
824 if (++expr_size || ++f_size) {
825 /* not all expected operators and operands found */
826 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
827 "Invalid value \"%s\" of if-feature - processing error.", *value);
828 rc = LY_EINT;
829 } else {
830 rc = LY_SUCCESS;
831 }
832
833error:
834 /* cleanup */
835 iff_stack_clean(&stack);
836
837 return rc;
838}
839
Radek Krejcib56c7502019-02-13 14:19:54 +0100840/**
Michal Vasko175012e2019-11-06 15:49:14 +0100841 * @brief Get the XPath context node for the given schema node.
842 * @param[in] start The schema node where the XPath expression appears.
843 * @return The context node to evaluate XPath expression in given schema node.
844 * @return NULL in case the context node is the root node.
845 */
846static struct lysc_node *
847lysc_xpath_context(struct lysc_node *start)
848{
Michal Vasko1bf09392020-03-27 12:38:10 +0100849 for (; start && !(start->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA | LYS_RPC | LYS_ACTION | LYS_NOTIF));
Michal Vasko175012e2019-11-06 15:49:14 +0100850 start = start->parent);
851 return start;
852}
853
854/**
Radek Krejcib56c7502019-02-13 14:19:54 +0100855 * @brief Compile information from the when statement
856 * @param[in] ctx Compile context.
857 * @param[in] when_p The parsed when statement structure.
Michal Vasko175012e2019-11-06 15:49:14 +0100858 * @param[in] flags Flags of the node with the "when" defiition.
859 * @param[in] node Node that inherited the "when" definition, must be connected to parents.
Radek Krejcib56c7502019-02-13 14:19:54 +0100860 * @param[out] when Pointer where to store pointer to the created compiled when structure.
861 * @return LY_ERR value.
862 */
Radek Krejci19a96102018-11-15 13:38:09 +0100863static LY_ERR
Michal Vasko175012e2019-11-06 15:49:14 +0100864lys_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 +0100865{
Radek Krejci19a96102018-11-15 13:38:09 +0100866 LY_ERR ret = LY_SUCCESS;
867
Radek Krejci00b874b2019-02-12 10:54:50 +0100868 *when = calloc(1, sizeof **when);
869 (*when)->refcount = 1;
Michal Vasko004d3152020-06-11 19:59:22 +0200870 (*when)->cond = lyxp_expr_parse(ctx->ctx, when_p->cond, 0, 1);
Radek Krejcia0f704a2019-09-09 16:12:23 +0200871 (*when)->module = ctx->mod_def;
Michal Vasko175012e2019-11-06 15:49:14 +0100872 (*when)->context = lysc_xpath_context(node);
Radek Krejci00b874b2019-02-12 10:54:50 +0100873 DUP_STRING(ctx->ctx, when_p->dsc, (*when)->dsc);
874 DUP_STRING(ctx->ctx, when_p->ref, (*when)->ref);
875 LY_CHECK_ERR_GOTO(!(*when)->cond, ret = ly_errcode(ctx->ctx), done);
Radek Krejci0935f412019-08-20 16:15:18 +0200876 COMPILE_EXTS_GOTO(ctx, when_p->exts, (*when)->exts, (*when), LYEXT_PAR_WHEN, ret, done);
Michal Vasko175012e2019-11-06 15:49:14 +0100877 (*when)->flags = flags & LYS_STATUS_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +0100878
879done:
880 return ret;
881}
882
Radek Krejcib56c7502019-02-13 14:19:54 +0100883/**
884 * @brief Compile information from the must statement
885 * @param[in] ctx Compile context.
886 * @param[in] must_p The parsed must statement structure.
Radek Krejcib56c7502019-02-13 14:19:54 +0100887 * @param[in,out] must Prepared (empty) compiled must structure to fill.
888 * @return LY_ERR value.
889 */
Radek Krejci19a96102018-11-15 13:38:09 +0100890static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +0200891lys_compile_must(struct lysc_ctx *ctx, struct lysp_restr *must_p, struct lysc_must *must)
Radek Krejci19a96102018-11-15 13:38:09 +0100892{
Radek Krejci19a96102018-11-15 13:38:09 +0100893 LY_ERR ret = LY_SUCCESS;
894
Michal Vasko004d3152020-06-11 19:59:22 +0200895 must->cond = lyxp_expr_parse(ctx->ctx, must_p->arg, 0, 1);
Radek Krejci19a96102018-11-15 13:38:09 +0100896 LY_CHECK_ERR_GOTO(!must->cond, ret = ly_errcode(ctx->ctx), done);
Radek Krejci462cf252019-07-24 09:49:08 +0200897 must->module = ctx->mod_def;
Radek Krejci19a96102018-11-15 13:38:09 +0100898 DUP_STRING(ctx->ctx, must_p->eapptag, must->eapptag);
899 DUP_STRING(ctx->ctx, must_p->emsg, must->emsg);
Radek Krejcic8b31002019-01-08 10:24:45 +0100900 DUP_STRING(ctx->ctx, must_p->dsc, must->dsc);
901 DUP_STRING(ctx->ctx, must_p->ref, must->ref);
Radek Krejci0935f412019-08-20 16:15:18 +0200902 COMPILE_EXTS_GOTO(ctx, must_p->exts, must->exts, must, LYEXT_PAR_MUST, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +0100903
904done:
905 return ret;
906}
907
Radek Krejcib56c7502019-02-13 14:19:54 +0100908/**
Michal Vasko7c8439f2020-08-05 13:25:19 +0200909 * @brief Compile information in the import statement - make sure there is the target module
Radek Krejcib56c7502019-02-13 14:19:54 +0100910 * @param[in] ctx Compile context.
Michal Vasko7c8439f2020-08-05 13:25:19 +0200911 * @param[in] imp_p The parsed import statement structure to fill the module to.
Radek Krejcib56c7502019-02-13 14:19:54 +0100912 * @return LY_ERR value.
913 */
Radek Krejci19a96102018-11-15 13:38:09 +0100914static LY_ERR
Michal Vasko7c8439f2020-08-05 13:25:19 +0200915lys_compile_import(struct lysc_ctx *ctx, struct lysp_import *imp_p)
Radek Krejci19a96102018-11-15 13:38:09 +0100916{
Michal Vasko3a41dff2020-07-15 14:30:28 +0200917 const struct lys_module *mod = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +0100918 LY_ERR ret = LY_SUCCESS;
919
Radek Krejci7f2a5362018-11-28 13:05:37 +0100920 /* make sure that we have the parsed version (lysp_) of the imported module to import groupings or typedefs.
921 * The compiled version is needed only for augments, deviates and leafrefs, so they are checked (and added,
Radek Krejci0e5d8382018-11-28 16:37:53 +0100922 * if needed) when these nodes are finally being instantiated and validated at the end of schema compilation. */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200923 if (!imp_p->module->parsed) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100924 /* try to use filepath if present */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200925 if (imp_p->module->filepath) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200926 struct ly_in *in;
Michal Vasko7c8439f2020-08-05 13:25:19 +0200927 if (ly_in_new_filepath(imp_p->module->filepath, 0, &in)) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200928 LOGINT(ctx->ctx);
929 } else {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200930 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 +0200931 ".yin") ? LYS_IN_YIN : LYS_IN_YANG, &mod));
Michal Vasko7c8439f2020-08-05 13:25:19 +0200932 if (mod != imp_p->module) {
Michal Vasko3a41dff2020-07-15 14:30:28 +0200933 LOGERR(ctx->ctx, LY_EINT, "Filepath \"%s\" of the module \"%s\" does not match.",
Michal Vasko7c8439f2020-08-05 13:25:19 +0200934 imp_p->module->filepath, imp_p->module->name);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200935 mod = NULL;
936 }
Radek Krejci19a96102018-11-15 13:38:09 +0100937 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200938 ly_in_free(in, 1);
Radek Krejci19a96102018-11-15 13:38:09 +0100939 }
940 if (!mod) {
Michal Vasko7c8439f2020-08-05 13:25:19 +0200941 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 +0100942 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 +0200943 imp_p->module->name, ctx->mod->name);
Radek Krejci19a96102018-11-15 13:38:09 +0100944 return LY_ENOTFOUND;
945 }
946 }
Radek Krejci19a96102018-11-15 13:38:09 +0100947 }
948
Radek Krejci19a96102018-11-15 13:38:09 +0100949 return ret;
950}
951
Michal Vasko33ff9422020-07-03 09:50:39 +0200952LY_ERR
953lys_identity_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module,
954 struct lysp_ident *identities_p, struct lysc_ident **identities)
Radek Krejci19a96102018-11-15 13:38:09 +0100955{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200956 LY_ARRAY_COUNT_TYPE offset = 0, u, v;
Michal Vasko33ff9422020-07-03 09:50:39 +0200957 struct lysc_ctx context = {0};
Radek Krejci19a96102018-11-15 13:38:09 +0100958 LY_ERR ret = LY_SUCCESS;
959
Michal Vasko33ff9422020-07-03 09:50:39 +0200960 assert(ctx_sc || ctx);
Radek Krejci327de162019-06-14 12:52:07 +0200961
Michal Vasko33ff9422020-07-03 09:50:39 +0200962 if (!ctx_sc) {
963 context.ctx = ctx;
964 context.mod = module;
Radek Krejci120d8542020-08-12 09:29:16 +0200965 context.mod_def = module;
Michal Vasko33ff9422020-07-03 09:50:39 +0200966 context.path_len = 1;
967 context.path[0] = '/';
968 ctx_sc = &context;
969 }
Radek Krejci19a96102018-11-15 13:38:09 +0100970
Michal Vasko33ff9422020-07-03 09:50:39 +0200971 if (!identities_p) {
972 return LY_SUCCESS;
973 }
974 if (*identities) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200975 offset = LY_ARRAY_COUNT(*identities);
Michal Vasko33ff9422020-07-03 09:50:39 +0200976 }
977
978 lysc_update_path(ctx_sc, NULL, "{identity}");
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200979 LY_ARRAY_CREATE_RET(ctx_sc->ctx, *identities, LY_ARRAY_COUNT(identities_p), LY_EMEM);
Michal Vasko33ff9422020-07-03 09:50:39 +0200980 LY_ARRAY_FOR(identities_p, u) {
981 lysc_update_path(ctx_sc, NULL, identities_p[u].name);
982
983 LY_ARRAY_INCREMENT(*identities);
984 COMPILE_CHECK_UNIQUENESS_ARRAY(ctx_sc, *identities, name, &(*identities)[offset + u], "identity", identities_p[u].name);
985 DUP_STRING(ctx_sc->ctx, identities_p[u].name, (*identities)[offset + u].name);
986 DUP_STRING(ctx_sc->ctx, identities_p[u].dsc, (*identities)[offset + u].dsc);
987 DUP_STRING(ctx_sc->ctx, identities_p[u].ref, (*identities)[offset + u].ref);
988 (*identities)[offset + u].module = ctx_sc->mod;
989 COMPILE_ARRAY_GOTO(ctx_sc, identities_p[u].iffeatures, (*identities)[offset + u].iffeatures, v,
990 lys_compile_iffeature, ret, done);
991 /* backlinks (derived) can be added no sooner than when all the identities in the current module are present */
992 COMPILE_EXTS_GOTO(ctx_sc, identities_p[u].exts, (*identities)[offset + u].exts, &(*identities)[offset + u],
993 LYEXT_PAR_IDENT, ret, done);
994 (*identities)[offset + u].flags = identities_p[u].flags;
995
996 lysc_update_path(ctx_sc, NULL, NULL);
997 }
998 lysc_update_path(ctx_sc, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +0100999done:
1000 return ret;
1001}
1002
Radek Krejcib56c7502019-02-13 14:19:54 +01001003/**
1004 * @brief Check circular dependency of identities - identity MUST NOT reference itself (via their base statement).
1005 *
1006 * The function works in the same way as lys_compile_feature_circular_check() with different structures and error messages.
1007 *
1008 * @param[in] ctx Compile context for logging.
1009 * @param[in] ident The base identity (its derived list is being extended by the identity being currently processed).
1010 * @param[in] derived The list of derived identities of the identity being currently processed (not the one provided as @p ident)
1011 * @return LY_SUCCESS if everything is ok.
1012 * @return LY_EVALID if the identity is derived from itself.
1013 */
Radek Krejci38222632019-02-12 16:55:05 +01001014static LY_ERR
1015lys_compile_identity_circular_check(struct lysc_ctx *ctx, struct lysc_ident *ident, struct lysc_ident **derived)
1016{
1017 LY_ERR ret = LY_EVALID;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001018 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci38222632019-02-12 16:55:05 +01001019 struct ly_set recursion = {0};
1020 struct lysc_ident *drv;
1021
1022 if (!derived) {
1023 return LY_SUCCESS;
1024 }
1025
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001026 for (u = 0; u < LY_ARRAY_COUNT(derived); ++u) {
Radek Krejci38222632019-02-12 16:55:05 +01001027 if (ident == derived[u]) {
1028 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1029 "Identity \"%s\" is indirectly derived from itself.", ident->name);
1030 goto cleanup;
1031 }
1032 ly_set_add(&recursion, derived[u], 0);
1033 }
1034
1035 for (v = 0; v < recursion.count; ++v) {
1036 drv = recursion.objs[v];
1037 if (!drv->derived) {
1038 continue;
1039 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001040 for (u = 0; u < LY_ARRAY_COUNT(drv->derived); ++u) {
Radek Krejci38222632019-02-12 16:55:05 +01001041 if (ident == drv->derived[u]) {
1042 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1043 "Identity \"%s\" is indirectly derived from itself.", ident->name);
1044 goto cleanup;
1045 }
1046 ly_set_add(&recursion, drv->derived[u], 0);
1047 }
1048 }
1049 ret = LY_SUCCESS;
1050
1051cleanup:
1052 ly_set_erase(&recursion, NULL);
1053 return ret;
1054}
1055
Radek Krejcia3045382018-11-22 14:30:31 +01001056/**
1057 * @brief Find and process the referenced base identities from another identity or identityref
1058 *
Radek Krejciaca74032019-06-04 08:53:06 +02001059 * For bases in identity set backlinks to them from the base identities. For identityref, store
Radek Krejcia3045382018-11-22 14:30:31 +01001060 * the array of pointers to the base identities. So one of the ident or bases parameter must be set
1061 * to distinguish these two use cases.
1062 *
1063 * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes.
1064 * @param[in] bases_p Array of names (including prefix if necessary) of base identities.
Michal Vasko33ff9422020-07-03 09:50:39 +02001065 * @param[in] ident Referencing identity to work with, NULL for identityref.
Radek Krejcia3045382018-11-22 14:30:31 +01001066 * @param[in] bases Array of bases of identityref to fill in.
1067 * @return LY_ERR value.
1068 */
Radek Krejci19a96102018-11-15 13:38:09 +01001069static LY_ERR
Michal Vasko33ff9422020-07-03 09:50:39 +02001070lys_compile_identity_bases(struct lysc_ctx *ctx, struct lys_module *context_module, const char **bases_p,
1071 struct lysc_ident *ident, struct lysc_ident ***bases)
Radek Krejci19a96102018-11-15 13:38:09 +01001072{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001073 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci19a96102018-11-15 13:38:09 +01001074 const char *s, *name;
Radek Krejcie86bf772018-12-14 11:39:53 +01001075 struct lys_module *mod;
Michal Vasko33ff9422020-07-03 09:50:39 +02001076 struct lysc_ident **idref, *identities;
Radek Krejci555cb5b2018-11-16 14:54:33 +01001077
1078 assert(ident || bases);
1079
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001080 if (LY_ARRAY_COUNT(bases_p) > 1 && ctx->mod_def->version < 2) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01001081 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1082 "Multiple bases in %s are allowed only in YANG 1.1 modules.", ident ? "identity" : "identityref type");
1083 return LY_EVALID;
1084 }
1085
Michal Vasko33ff9422020-07-03 09:50:39 +02001086 LY_ARRAY_FOR(bases_p, u) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01001087 s = strchr(bases_p[u], ':');
1088 if (s) {
1089 /* prefixed identity */
1090 name = &s[1];
Radek Krejci0a33b042020-05-27 10:05:06 +02001091 mod = lys_module_find_prefix(context_module, bases_p[u], s - bases_p[u]);
Radek Krejci555cb5b2018-11-16 14:54:33 +01001092 } else {
1093 name = bases_p[u];
Radek Krejci0a33b042020-05-27 10:05:06 +02001094 mod = context_module;
Radek Krejci555cb5b2018-11-16 14:54:33 +01001095 }
1096 if (!mod) {
1097 if (ident) {
1098 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1099 "Invalid prefix used for base (%s) of identity \"%s\".", bases_p[u], ident->name);
1100 } else {
1101 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1102 "Invalid prefix used for base (%s) of identityref.", bases_p[u]);
1103 }
1104 return LY_EVALID;
1105 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001106
Radek Krejci555cb5b2018-11-16 14:54:33 +01001107 idref = NULL;
Michal Vasko33ff9422020-07-03 09:50:39 +02001108 if (mod->compiled) {
1109 identities = mod->compiled->identities;
1110 } else {
1111 identities = mod->dis_identities;
1112 }
1113 LY_ARRAY_FOR(identities, v) {
1114 if (!strcmp(name, identities[v].name)) {
1115 if (ident) {
1116 if (ident == &identities[v]) {
1117 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1118 "Identity \"%s\" is derived from itself.", ident->name);
1119 return LY_EVALID;
Radek Krejci555cb5b2018-11-16 14:54:33 +01001120 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001121 LY_CHECK_RET(lys_compile_identity_circular_check(ctx, &identities[v], ident->derived));
1122 /* we have match! store the backlink */
1123 LY_ARRAY_NEW_RET(ctx->ctx, identities[v].derived, idref, LY_EMEM);
1124 *idref = ident;
1125 } else {
1126 /* we have match! store the found identity */
1127 LY_ARRAY_NEW_RET(ctx->ctx, *bases, idref, LY_EMEM);
1128 *idref = &identities[v];
Radek Krejci555cb5b2018-11-16 14:54:33 +01001129 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001130 break;
Radek Krejci555cb5b2018-11-16 14:54:33 +01001131 }
1132 }
1133 if (!idref || !(*idref)) {
1134 if (ident) {
1135 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1136 "Unable to find base (%s) of identity \"%s\".", bases_p[u], ident->name);
1137 } else {
1138 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1139 "Unable to find base (%s) of identityref.", bases_p[u]);
1140 }
1141 return LY_EVALID;
1142 }
1143 }
1144 return LY_SUCCESS;
1145}
1146
Radek Krejcia3045382018-11-22 14:30:31 +01001147/**
1148 * @brief For the given array of identities, set the backlinks from all their base identities.
1149 * @param[in] ctx Compile context, not only for logging but also to get the current module to resolve prefixes.
1150 * @param[in] idents_p Array of identities definitions from the parsed schema structure.
1151 * @param[in] idents Array of referencing identities to which the backlinks are supposed to be set.
1152 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
1153 */
Radek Krejci555cb5b2018-11-16 14:54:33 +01001154static LY_ERR
1155lys_compile_identities_derived(struct lysc_ctx *ctx, struct lysp_ident *idents_p, struct lysc_ident *idents)
1156{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001157 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01001158
Michal Vasko33ff9422020-07-03 09:50:39 +02001159 lysc_update_path(ctx, NULL, "{identity}");
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001160 for (u = 0; u < LY_ARRAY_COUNT(idents_p); ++u) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001161 if (!idents_p[u].bases) {
Radek Krejci19a96102018-11-15 13:38:09 +01001162 continue;
1163 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001164 lysc_update_path(ctx, NULL, idents[u].name);
Radek Krejci0a33b042020-05-27 10:05:06 +02001165 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 +02001166 lysc_update_path(ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01001167 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001168 lysc_update_path(ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01001169 return LY_SUCCESS;
1170}
1171
Radek Krejci0af46292019-01-11 16:02:31 +01001172LY_ERR
Michal Vasko33ff9422020-07-03 09:50:39 +02001173lys_feature_precompile(struct lysc_ctx *ctx_sc, struct ly_ctx *ctx, struct lys_module *module,
1174 struct lysp_feature *features_p, struct lysc_feature **features)
Radek Krejci0af46292019-01-11 16:02:31 +01001175{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001176 LY_ARRAY_COUNT_TYPE offset = 0, u;
Radek Krejci0af46292019-01-11 16:02:31 +01001177 struct lysc_ctx context = {0};
1178
Radek Krejci327de162019-06-14 12:52:07 +02001179 assert(ctx_sc || ctx);
1180
1181 if (!ctx_sc) {
1182 context.ctx = ctx;
1183 context.mod = module;
1184 context.path_len = 1;
1185 context.path[0] = '/';
1186 ctx_sc = &context;
1187 }
Radek Krejci0af46292019-01-11 16:02:31 +01001188
1189 if (!features_p) {
1190 return LY_SUCCESS;
1191 }
1192 if (*features) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001193 offset = LY_ARRAY_COUNT(*features);
Radek Krejci0af46292019-01-11 16:02:31 +01001194 }
1195
Radek Krejci327de162019-06-14 12:52:07 +02001196 lysc_update_path(ctx_sc, NULL, "{feature}");
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001197 LY_ARRAY_CREATE_RET(ctx_sc->ctx, *features, LY_ARRAY_COUNT(features_p), LY_EMEM);
Radek Krejci0af46292019-01-11 16:02:31 +01001198 LY_ARRAY_FOR(features_p, u) {
Radek Krejci327de162019-06-14 12:52:07 +02001199 lysc_update_path(ctx_sc, NULL, features_p[u].name);
1200
Radek Krejci0af46292019-01-11 16:02:31 +01001201 LY_ARRAY_INCREMENT(*features);
Michal Vasko6f4cbb62020-02-28 11:15:47 +01001202 COMPILE_CHECK_UNIQUENESS_ARRAY(ctx_sc, *features, name, &(*features)[offset + u], "feature", features_p[u].name);
Radek Krejci327de162019-06-14 12:52:07 +02001203 DUP_STRING(ctx_sc->ctx, features_p[u].name, (*features)[offset + u].name);
1204 DUP_STRING(ctx_sc->ctx, features_p[u].dsc, (*features)[offset + u].dsc);
1205 DUP_STRING(ctx_sc->ctx, features_p[u].ref, (*features)[offset + u].ref);
Radek Krejci0af46292019-01-11 16:02:31 +01001206 (*features)[offset + u].flags = features_p[u].flags;
Radek Krejci327de162019-06-14 12:52:07 +02001207 (*features)[offset + u].module = ctx_sc->mod;
1208
1209 lysc_update_path(ctx_sc, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01001210 }
Radek Krejci327de162019-06-14 12:52:07 +02001211 lysc_update_path(ctx_sc, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01001212
1213 return LY_SUCCESS;
1214}
1215
Radek Krejcia3045382018-11-22 14:30:31 +01001216/**
Radek Krejci09a1fc52019-02-13 10:55:17 +01001217 * @brief Check circular dependency of features - feature MUST NOT reference itself (via their if-feature statement).
Radek Krejcib56c7502019-02-13 14:19:54 +01001218 *
1219 * The function works in the same way as lys_compile_identity_circular_check() with different structures and error messages.
1220 *
Radek Krejci09a1fc52019-02-13 10:55:17 +01001221 * @param[in] ctx Compile context for logging.
Radek Krejcib56c7502019-02-13 14:19:54 +01001222 * @param[in] feature The feature referenced in if-feature statement (its depfeatures list is being extended by the feature
1223 * being currently processed).
1224 * @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 +01001225 * @return LY_SUCCESS if everything is ok.
1226 * @return LY_EVALID if the feature references indirectly itself.
1227 */
1228static LY_ERR
1229lys_compile_feature_circular_check(struct lysc_ctx *ctx, struct lysc_feature *feature, struct lysc_feature **depfeatures)
1230{
1231 LY_ERR ret = LY_EVALID;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001232 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci09a1fc52019-02-13 10:55:17 +01001233 struct ly_set recursion = {0};
1234 struct lysc_feature *drv;
1235
1236 if (!depfeatures) {
1237 return LY_SUCCESS;
1238 }
1239
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001240 for (u = 0; u < LY_ARRAY_COUNT(depfeatures); ++u) {
Radek Krejci09a1fc52019-02-13 10:55:17 +01001241 if (feature == depfeatures[u]) {
1242 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1243 "Feature \"%s\" is indirectly referenced from itself.", feature->name);
1244 goto cleanup;
1245 }
1246 ly_set_add(&recursion, depfeatures[u], 0);
1247 }
1248
1249 for (v = 0; v < recursion.count; ++v) {
1250 drv = recursion.objs[v];
1251 if (!drv->depfeatures) {
1252 continue;
1253 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001254 for (u = 0; u < LY_ARRAY_COUNT(drv->depfeatures); ++u) {
Radek Krejci09a1fc52019-02-13 10:55:17 +01001255 if (feature == drv->depfeatures[u]) {
1256 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1257 "Feature \"%s\" is indirectly referenced from itself.", feature->name);
1258 goto cleanup;
1259 }
1260 ly_set_add(&recursion, drv->depfeatures[u], 0);
1261 }
1262 }
1263 ret = LY_SUCCESS;
1264
1265cleanup:
1266 ly_set_erase(&recursion, NULL);
1267 return ret;
1268}
1269
1270/**
Radek Krejci0af46292019-01-11 16:02:31 +01001271 * @brief Create pre-compiled features array.
1272 *
1273 * See lys_feature_precompile() for more details.
1274 *
Radek Krejcia3045382018-11-22 14:30:31 +01001275 * @param[in] ctx Compile context.
1276 * @param[in] feature_p Parsed feature definition to compile.
Radek Krejci0af46292019-01-11 16:02:31 +01001277 * @param[in,out] features List of already (pre)compiled features to find the corresponding precompiled feature structure.
Radek Krejcia3045382018-11-22 14:30:31 +01001278 * @return LY_ERR value.
1279 */
Radek Krejci19a96102018-11-15 13:38:09 +01001280static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02001281lys_feature_precompile_finish(struct lysc_ctx *ctx, struct lysp_feature *feature_p, struct lysc_feature *features)
Radek Krejci19a96102018-11-15 13:38:09 +01001282{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001283 LY_ARRAY_COUNT_TYPE u, v, x;
Radek Krejci0af46292019-01-11 16:02:31 +01001284 struct lysc_feature *feature, **df;
Radek Krejci19a96102018-11-15 13:38:09 +01001285 LY_ERR ret = LY_SUCCESS;
Radek Krejci19a96102018-11-15 13:38:09 +01001286
Radek Krejci327de162019-06-14 12:52:07 +02001287
Radek Krejci0af46292019-01-11 16:02:31 +01001288 /* find the preprecompiled feature */
1289 LY_ARRAY_FOR(features, x) {
1290 if (strcmp(features[x].name, feature_p->name)) {
1291 continue;
1292 }
1293 feature = &features[x];
Radek Krejci327de162019-06-14 12:52:07 +02001294 lysc_update_path(ctx, NULL, "{feature}");
1295 lysc_update_path(ctx, NULL, feature_p->name);
Radek Krejci19a96102018-11-15 13:38:09 +01001296
Radek Krejci0af46292019-01-11 16:02:31 +01001297 /* finish compilation started in lys_feature_precompile() */
Radek Krejci0935f412019-08-20 16:15:18 +02001298 COMPILE_EXTS_GOTO(ctx, feature_p->exts, feature->exts, feature, LYEXT_PAR_FEATURE, ret, done);
Radek Krejciec4da802019-05-02 13:02:41 +02001299 COMPILE_ARRAY_GOTO(ctx, feature_p->iffeatures, feature->iffeatures, u, lys_compile_iffeature, ret, done);
Radek Krejci0af46292019-01-11 16:02:31 +01001300 if (feature->iffeatures) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001301 for (u = 0; u < LY_ARRAY_COUNT(feature->iffeatures); ++u) {
Radek Krejci0af46292019-01-11 16:02:31 +01001302 if (feature->iffeatures[u].features) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001303 for (v = 0; v < LY_ARRAY_COUNT(feature->iffeatures[u].features); ++v) {
Radek Krejci09a1fc52019-02-13 10:55:17 +01001304 /* check for circular dependency - direct reference first,... */
1305 if (feature == feature->iffeatures[u].features[v]) {
1306 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
1307 "Feature \"%s\" is referenced from itself.", feature->name);
1308 return LY_EVALID;
1309 }
1310 /* ... and indirect circular reference */
1311 LY_CHECK_RET(lys_compile_feature_circular_check(ctx, feature->iffeatures[u].features[v], feature->depfeatures));
1312
Radek Krejci0af46292019-01-11 16:02:31 +01001313 /* add itself into the dependants list */
1314 LY_ARRAY_NEW_RET(ctx->ctx, feature->iffeatures[u].features[v]->depfeatures, df, LY_EMEM);
1315 *df = feature;
1316 }
Radek Krejci19a96102018-11-15 13:38:09 +01001317 }
Radek Krejci19a96102018-11-15 13:38:09 +01001318 }
1319 }
Radek Krejci327de162019-06-14 12:52:07 +02001320 lysc_update_path(ctx, NULL, NULL);
1321 lysc_update_path(ctx, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01001322 done:
1323 return ret;
Radek Krejci19a96102018-11-15 13:38:09 +01001324 }
Radek Krejci0af46292019-01-11 16:02:31 +01001325
1326 LOGINT(ctx->ctx);
1327 return LY_EINT;
Radek Krejci19a96102018-11-15 13:38:09 +01001328}
1329
Radek Krejcib56c7502019-02-13 14:19:54 +01001330/**
1331 * @brief Revert compiled list of features back to the precompiled state.
1332 *
1333 * Function is needed in case the compilation failed and the schema is expected to revert back to the non-compiled status.
Michal Vasko33ff9422020-07-03 09:50:39 +02001334 * The features are supposed to be stored again as dis_features in ::lys_module structure.
Radek Krejcib56c7502019-02-13 14:19:54 +01001335 *
1336 * @param[in] ctx Compilation context.
1337 * @param[in] mod The module structure still holding the compiled (but possibly not finished, only the list of compiled features is taken) schema
Michal Vasko33ff9422020-07-03 09:50:39 +02001338 * and supposed to hold the dis_features list.
Radek Krejcib56c7502019-02-13 14:19:54 +01001339 */
Radek Krejci95710c92019-02-11 15:49:55 +01001340static void
1341lys_feature_precompile_revert(struct lysc_ctx *ctx, struct lys_module *mod)
1342{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001343 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci95710c92019-02-11 15:49:55 +01001344
Michal Vasko33ff9422020-07-03 09:50:39 +02001345 /* keep the dis_features list until the complete lys_module is freed */
1346 mod->dis_features = mod->compiled->features;
Radek Krejci95710c92019-02-11 15:49:55 +01001347 mod->compiled->features = NULL;
1348
Michal Vasko33ff9422020-07-03 09:50:39 +02001349 /* in the dis_features list, remove all the parts (from finished compiling process)
Radek Krejci95710c92019-02-11 15:49:55 +01001350 * which may points into the data being freed here */
Michal Vasko33ff9422020-07-03 09:50:39 +02001351 LY_ARRAY_FOR(mod->dis_features, u) {
1352 LY_ARRAY_FOR(mod->dis_features[u].iffeatures, v) {
1353 lysc_iffeature_free(ctx->ctx, &mod->dis_features[u].iffeatures[v]);
Radek Krejci95710c92019-02-11 15:49:55 +01001354 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001355 LY_ARRAY_FREE(mod->dis_features[u].iffeatures);
1356 mod->dis_features[u].iffeatures = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01001357
Michal Vasko33ff9422020-07-03 09:50:39 +02001358 LY_ARRAY_FOR(mod->dis_features[u].exts, v) {
1359 lysc_ext_instance_free(ctx->ctx, &(mod->dis_features[u].exts)[v]);
Radek Krejci95710c92019-02-11 15:49:55 +01001360 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001361 LY_ARRAY_FREE(mod->dis_features[u].exts);
1362 mod->dis_features[u].exts = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01001363 }
1364}
1365
Radek Krejcia3045382018-11-22 14:30:31 +01001366/**
1367 * @brief Validate and normalize numeric value from a range definition.
1368 * @param[in] ctx Compile context.
1369 * @param[in] basetype Base YANG built-in type of the node connected with the range restriction. Actually only LY_TYPE_DEC64 is important to
1370 * allow processing of the fractions. The fraction point is extracted from the value which is then normalize according to given frdigits into
1371 * valcopy to allow easy parsing and storing of the value. libyang stores decimal number without the decimal point which is always recovered from
1372 * the known fraction-digits value. So, with fraction-digits 2, number 3.14 is stored as 314 and number 1 is stored as 100.
1373 * @param[in] frdigits The fraction-digits of the type in case of LY_TYPE_DEC64.
1374 * @param[in] value String value of the range boundary.
1375 * @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.
1376 * @param[out] valcopy NULL-terminated string with the numeric value to parse and store.
1377 * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID (no number) or LY_EINVAL (decimal64 not matching fraction-digits value).
1378 */
Radek Krejcie88beef2019-05-30 15:47:19 +02001379LY_ERR
Radek Krejci6cba4292018-11-15 17:33:29 +01001380range_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 +01001381{
Radek Krejci6cba4292018-11-15 17:33:29 +01001382 size_t fraction = 0, size;
1383
Radek Krejci19a96102018-11-15 13:38:09 +01001384 *len = 0;
1385
1386 assert(value);
1387 /* parse value */
1388 if (!isdigit(value[*len]) && (value[*len] != '-') && (value[*len] != '+')) {
1389 return LY_EVALID;
1390 }
1391
1392 if ((value[*len] == '-') || (value[*len] == '+')) {
1393 ++(*len);
1394 }
1395
1396 while (isdigit(value[*len])) {
1397 ++(*len);
1398 }
1399
1400 if ((basetype != LY_TYPE_DEC64) || (value[*len] != '.') || !isdigit(value[*len + 1])) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001401 if (basetype == LY_TYPE_DEC64) {
1402 goto decimal;
1403 } else {
1404 *valcopy = strndup(value, *len);
1405 return LY_SUCCESS;
1406 }
Radek Krejci19a96102018-11-15 13:38:09 +01001407 }
1408 fraction = *len;
1409
1410 ++(*len);
1411 while (isdigit(value[*len])) {
1412 ++(*len);
1413 }
1414
Radek Krejci6cba4292018-11-15 17:33:29 +01001415 if (basetype == LY_TYPE_DEC64) {
1416decimal:
1417 assert(frdigits);
Radek Krejci943177f2019-06-14 16:32:43 +02001418 if (fraction && (*len - 1 - fraction > frdigits)) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001419 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1420 "Range boundary \"%.*s\" of decimal64 type exceeds defined number (%u) of fraction digits.",
1421 *len, value, frdigits);
1422 return LY_EINVAL;
1423 }
1424 if (fraction) {
1425 size = (*len) + (frdigits - ((*len) - 1 - fraction));
1426 } else {
1427 size = (*len) + frdigits + 1;
1428 }
1429 *valcopy = malloc(size * sizeof **valcopy);
Radek Krejci19a96102018-11-15 13:38:09 +01001430 LY_CHECK_ERR_RET(!(*valcopy), LOGMEM(ctx->ctx), LY_EMEM);
1431
Radek Krejci6cba4292018-11-15 17:33:29 +01001432 (*valcopy)[size - 1] = '\0';
1433 if (fraction) {
1434 memcpy(&(*valcopy)[0], &value[0], fraction);
1435 memcpy(&(*valcopy)[fraction], &value[fraction + 1], (*len) - 1 - (fraction));
1436 memset(&(*valcopy)[(*len) - 1], '0', frdigits - ((*len) - 1 - fraction));
1437 } else {
1438 memcpy(&(*valcopy)[0], &value[0], *len);
1439 memset(&(*valcopy)[*len], '0', frdigits);
1440 }
Radek Krejci19a96102018-11-15 13:38:09 +01001441 }
1442 return LY_SUCCESS;
1443}
1444
Radek Krejcia3045382018-11-22 14:30:31 +01001445/**
1446 * @brief Check that values in range are in ascendant order.
1447 * @param[in] unsigned_value Flag to note that we are working with unsigned values.
Radek Krejci5969f272018-11-23 10:03:58 +01001448 * @param[in] max Flag to distinguish if checking min or max value. min value must be strictly higher than previous,
1449 * max can be also equal.
Radek Krejcia3045382018-11-22 14:30:31 +01001450 * @param[in] value Current value to check.
1451 * @param[in] prev_value The last seen value.
1452 * @return LY_SUCCESS or LY_EEXIST for invalid order.
1453 */
Radek Krejci19a96102018-11-15 13:38:09 +01001454static LY_ERR
Radek Krejci5969f272018-11-23 10:03:58 +01001455range_part_check_ascendancy(int unsigned_value, int max, int64_t value, int64_t prev_value)
Radek Krejci19a96102018-11-15 13:38:09 +01001456{
1457 if (unsigned_value) {
Radek Krejci5969f272018-11-23 10:03:58 +01001458 if ((max && (uint64_t)prev_value > (uint64_t)value) || (!max && (uint64_t)prev_value >= (uint64_t)value)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001459 return LY_EEXIST;
1460 }
1461 } else {
Radek Krejci5969f272018-11-23 10:03:58 +01001462 if ((max && prev_value > value) || (!max && prev_value >= value)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001463 return LY_EEXIST;
1464 }
1465 }
1466 return LY_SUCCESS;
1467}
1468
Radek Krejcia3045382018-11-22 14:30:31 +01001469/**
1470 * @brief Set min/max value of the range part.
1471 * @param[in] ctx Compile context.
1472 * @param[in] part Range part structure to fill.
1473 * @param[in] max Flag to distinguish if storing min or max value.
1474 * @param[in] prev The last seen value to check that all values in range are specified in ascendant order.
1475 * @param[in] basetype Type of the value to get know implicit min/max values and other checking rules.
1476 * @param[in] first Flag for the first value of the range to avoid ascendancy order.
1477 * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging.
1478 * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype.
Radek Krejci5969f272018-11-23 10:03:58 +01001479 * @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 +01001480 * @param[in,out] value Numeric range value to be stored, if not provided the type's min/max value is set.
1481 * @return LY_ERR value - LY_SUCCESS, LY_EDENIED (value brokes type's boundaries), LY_EVALID (not a number),
1482 * LY_EEXIST (value is smaller than the previous one), LY_EINVAL (decimal64 value does not corresponds with the
1483 * frdigits value), LY_EMEM.
1484 */
Radek Krejci19a96102018-11-15 13:38:09 +01001485static LY_ERR
Michal Vaskoba417ac2020-08-06 14:48:20 +02001486range_part_minmax(struct lysc_ctx *ctx, struct lysc_range_part *part, int max, int64_t prev, LY_DATA_TYPE basetype,
1487 int first, int length_restr, uint8_t frdigits, struct lysc_range *base_range, const char **value)
Radek Krejci19a96102018-11-15 13:38:09 +01001488{
1489 LY_ERR ret = LY_SUCCESS;
1490 char *valcopy = NULL;
1491 size_t len;
1492
1493 if (value) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001494 ret = range_part_check_value_syntax(ctx, basetype, frdigits, *value, &len, &valcopy);
Radek Krejci5969f272018-11-23 10:03:58 +01001495 LY_CHECK_GOTO(ret, finalize);
1496 }
1497 if (!valcopy && base_range) {
1498 if (max) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001499 part->max_64 = base_range->parts[LY_ARRAY_COUNT(base_range->parts) - 1].max_64;
Radek Krejci5969f272018-11-23 10:03:58 +01001500 } else {
1501 part->min_64 = base_range->parts[0].min_64;
1502 }
1503 if (!first) {
1504 ret = range_part_check_ascendancy(basetype <= LY_TYPE_STRING ? 1 : 0, max, max ? part->max_64 : part->min_64, prev);
1505 }
1506 goto finalize;
Radek Krejci19a96102018-11-15 13:38:09 +01001507 }
1508
1509 switch (basetype) {
Radek Krejci19a96102018-11-15 13:38:09 +01001510 case LY_TYPE_INT8: /* range */
1511 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001512 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 +01001513 } else if (max) {
1514 part->max_64 = INT64_C(127);
1515 } else {
1516 part->min_64 = INT64_C(-128);
1517 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001518 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001519 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001520 }
1521 break;
1522 case LY_TYPE_INT16: /* range */
1523 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001524 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 +01001525 } else if (max) {
1526 part->max_64 = INT64_C(32767);
1527 } else {
1528 part->min_64 = INT64_C(-32768);
1529 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001530 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001531 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001532 }
1533 break;
1534 case LY_TYPE_INT32: /* range */
1535 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001536 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 +01001537 } else if (max) {
1538 part->max_64 = INT64_C(2147483647);
1539 } else {
1540 part->min_64 = INT64_C(-2147483648);
1541 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001542 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001543 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001544 }
1545 break;
1546 case LY_TYPE_INT64: /* range */
Radek Krejci25cfef72018-11-23 14:15:52 +01001547 case LY_TYPE_DEC64: /* range */
Radek Krejci19a96102018-11-15 13:38:09 +01001548 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001549 ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-9223372036854775807) - INT64_C(1), INT64_C(9223372036854775807), 10,
Radek Krejci19a96102018-11-15 13:38:09 +01001550 max ? &part->max_64 : &part->min_64);
1551 } else if (max) {
1552 part->max_64 = INT64_C(9223372036854775807);
1553 } else {
1554 part->min_64 = INT64_C(-9223372036854775807) - INT64_C(1);
1555 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001556 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001557 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001558 }
1559 break;
1560 case LY_TYPE_UINT8: /* range */
1561 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001562 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 +01001563 } else if (max) {
1564 part->max_u64 = UINT64_C(255);
1565 } else {
1566 part->min_u64 = UINT64_C(0);
1567 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001568 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001569 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001570 }
1571 break;
1572 case LY_TYPE_UINT16: /* range */
1573 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001574 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 +01001575 } else if (max) {
1576 part->max_u64 = UINT64_C(65535);
1577 } else {
1578 part->min_u64 = UINT64_C(0);
1579 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001580 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001581 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001582 }
1583 break;
1584 case LY_TYPE_UINT32: /* range */
1585 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001586 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 +01001587 } else if (max) {
1588 part->max_u64 = UINT64_C(4294967295);
1589 } else {
1590 part->min_u64 = UINT64_C(0);
1591 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001592 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001593 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001594 }
1595 break;
1596 case LY_TYPE_UINT64: /* range */
Radek Krejci19a96102018-11-15 13:38:09 +01001597 case LY_TYPE_STRING: /* length */
Radek Krejci25cfef72018-11-23 14:15:52 +01001598 case LY_TYPE_BINARY: /* length */
Radek Krejci19a96102018-11-15 13:38:09 +01001599 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001600 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 +01001601 } else if (max) {
1602 part->max_u64 = UINT64_C(18446744073709551615);
1603 } else {
1604 part->min_u64 = UINT64_C(0);
1605 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001606 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001607 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001608 }
1609 break;
1610 default:
1611 LOGINT(ctx->ctx);
1612 ret = LY_EINT;
1613 }
1614
Radek Krejci5969f272018-11-23 10:03:58 +01001615finalize:
Radek Krejci19a96102018-11-15 13:38:09 +01001616 if (ret == LY_EDENIED) {
1617 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1618 "Invalid %s restriction - value \"%s\" does not fit the type limitations.",
1619 length_restr ? "length" : "range", valcopy ? valcopy : *value);
1620 } else if (ret == LY_EVALID) {
1621 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1622 "Invalid %s restriction - invalid value \"%s\".",
1623 length_restr ? "length" : "range", valcopy ? valcopy : *value);
1624 } else if (ret == LY_EEXIST) {
1625 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1626 "Invalid %s restriction - values are not in ascending order (%s).",
Radek Krejci6cba4292018-11-15 17:33:29 +01001627 length_restr ? "length" : "range",
Radek Krejci5969f272018-11-23 10:03:58 +01001628 (valcopy && basetype != LY_TYPE_DEC64) ? valcopy : value ? *value : max ? "max" : "min");
Radek Krejci19a96102018-11-15 13:38:09 +01001629 } else if (!ret && value) {
1630 *value = *value + len;
1631 }
1632 free(valcopy);
1633 return ret;
1634}
1635
Radek Krejcia3045382018-11-22 14:30:31 +01001636/**
1637 * @brief Compile the parsed range restriction.
1638 * @param[in] ctx Compile context.
1639 * @param[in] range_p Parsed range structure to compile.
1640 * @param[in] basetype Base YANG built-in type of the node with the range restriction.
1641 * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging.
1642 * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype.
1643 * @param[in] base_range Range restriction of the type from which the current type is derived. The current
1644 * range restriction must be more restrictive than the base_range.
1645 * @param[in,out] range Pointer to the created current range structure.
1646 * @return LY_ERR value.
1647 */
Radek Krejci19a96102018-11-15 13:38:09 +01001648static LY_ERR
Michal Vaskoba417ac2020-08-06 14:48:20 +02001649lys_compile_type_range(struct lysc_ctx *ctx, struct lysp_restr *range_p, LY_DATA_TYPE basetype, int length_restr,
1650 uint8_t frdigits, struct lysc_range *base_range, struct lysc_range **range)
Radek Krejci19a96102018-11-15 13:38:09 +01001651{
1652 LY_ERR ret = LY_EVALID;
1653 const char *expr;
1654 struct lysc_range_part *parts = NULL, *part;
1655 int range_expected = 0, uns;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001656 LY_ARRAY_COUNT_TYPE parts_done = 0, u, v;
Radek Krejci19a96102018-11-15 13:38:09 +01001657
1658 assert(range);
1659 assert(range_p);
1660
1661 expr = range_p->arg;
1662 while(1) {
1663 if (isspace(*expr)) {
1664 ++expr;
1665 } else if (*expr == '\0') {
1666 if (range_expected) {
1667 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1668 "Invalid %s restriction - unexpected end of the expression after \"..\" (%s).",
1669 length_restr ? "length" : "range", range_p->arg);
1670 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001671 } else if (!parts || parts_done == LY_ARRAY_COUNT(parts)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001672 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1673 "Invalid %s restriction - unexpected end of the expression (%s).",
1674 length_restr ? "length" : "range", range_p->arg);
1675 goto cleanup;
1676 }
1677 parts_done++;
1678 break;
1679 } else if (!strncmp(expr, "min", 3)) {
1680 if (parts) {
1681 /* min cannot be used elsewhere than in the first part */
1682 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1683 "Invalid %s restriction - unexpected data before min keyword (%.*s).", length_restr ? "length" : "range",
1684 expr - range_p->arg, range_p->arg);
1685 goto cleanup;
1686 }
1687 expr += 3;
1688
1689 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Radek Krejci5969f272018-11-23 10:03:58 +01001690 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 +01001691 part->max_64 = part->min_64;
1692 } else if (*expr == '|') {
1693 if (!parts || range_expected) {
1694 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1695 "Invalid %s restriction - unexpected beginning of the expression (%s).", length_restr ? "length" : "range", expr);
1696 goto cleanup;
1697 }
1698 expr++;
1699 parts_done++;
1700 /* process next part of the expression */
1701 } else if (!strncmp(expr, "..", 2)) {
1702 expr += 2;
1703 while (isspace(*expr)) {
1704 expr++;
1705 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001706 if (!parts || LY_ARRAY_COUNT(parts) == parts_done) {
Radek Krejci19a96102018-11-15 13:38:09 +01001707 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1708 "Invalid %s restriction - unexpected \"..\" without a lower bound.", length_restr ? "length" : "range");
1709 goto cleanup;
1710 }
1711 /* continue expecting the upper boundary */
1712 range_expected = 1;
1713 } else if (isdigit(*expr) || (*expr == '-') || (*expr == '+')) {
1714 /* number */
1715 if (range_expected) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001716 part = &parts[LY_ARRAY_COUNT(parts) - 1];
Radek Krejci5969f272018-11-23 10:03:58 +01001717 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 +01001718 range_expected = 0;
1719 } else {
1720 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001721 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 +01001722 basetype, parts_done ? 0 : 1, length_restr, frdigits, NULL, &expr), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001723 part->max_64 = part->min_64;
1724 }
1725
1726 /* continue with possible another expression part */
1727 } else if (!strncmp(expr, "max", 3)) {
1728 expr += 3;
1729 while (isspace(*expr)) {
1730 expr++;
1731 }
1732 if (*expr != '\0') {
1733 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data after max keyword (%s).",
1734 length_restr ? "length" : "range", expr);
1735 goto cleanup;
1736 }
1737 if (range_expected) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001738 part = &parts[LY_ARRAY_COUNT(parts) - 1];
Radek Krejci5969f272018-11-23 10:03:58 +01001739 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 +01001740 range_expected = 0;
1741 } else {
1742 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001743 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 +01001744 basetype, parts_done ? 0 : 1, length_restr, frdigits, base_range, NULL), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001745 part->min_64 = part->max_64;
1746 }
1747 } else {
1748 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data (%s).",
1749 length_restr ? "length" : "range", expr);
1750 goto cleanup;
1751 }
1752 }
1753
1754 /* check with the previous range/length restriction */
1755 if (base_range) {
1756 switch (basetype) {
1757 case LY_TYPE_BINARY:
1758 case LY_TYPE_UINT8:
1759 case LY_TYPE_UINT16:
1760 case LY_TYPE_UINT32:
1761 case LY_TYPE_UINT64:
1762 case LY_TYPE_STRING:
1763 uns = 1;
1764 break;
1765 case LY_TYPE_DEC64:
1766 case LY_TYPE_INT8:
1767 case LY_TYPE_INT16:
1768 case LY_TYPE_INT32:
1769 case LY_TYPE_INT64:
1770 uns = 0;
1771 break;
1772 default:
1773 LOGINT(ctx->ctx);
1774 ret = LY_EINT;
1775 goto cleanup;
1776 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001777 for (u = v = 0; u < parts_done && v < LY_ARRAY_COUNT(base_range->parts); ++u) {
Radek Krejci19a96102018-11-15 13:38:09 +01001778 if ((uns && parts[u].min_u64 < base_range->parts[v].min_u64) || (!uns && parts[u].min_64 < base_range->parts[v].min_64)) {
1779 goto baseerror;
1780 }
1781 /* current lower bound is not lower than the base */
1782 if (base_range->parts[v].min_64 == base_range->parts[v].max_64) {
1783 /* base has single value */
1784 if (base_range->parts[v].min_64 == parts[u].min_64) {
1785 /* both lower bounds are the same */
1786 if (parts[u].min_64 != parts[u].max_64) {
1787 /* current continues with a range */
1788 goto baseerror;
1789 } else {
1790 /* equal single values, move both forward */
1791 ++v;
1792 continue;
1793 }
1794 } else {
1795 /* base is single value lower than current range, so the
1796 * value from base range is removed in the current,
1797 * move only base and repeat checking */
1798 ++v;
1799 --u;
1800 continue;
1801 }
1802 } else {
1803 /* base is the range */
1804 if (parts[u].min_64 == parts[u].max_64) {
1805 /* current is a single value */
1806 if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) {
1807 /* current is behind the base range, so base range is omitted,
1808 * move the base and keep the current for further check */
1809 ++v;
1810 --u;
1811 } /* else it is within the base range, so move the current, but keep the base */
1812 continue;
1813 } else {
1814 /* both are ranges - check the higher bound, the lower was already checked */
1815 if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) {
1816 /* higher bound is higher than the current higher bound */
1817 if ((uns && parts[u].min_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].min_64 > base_range->parts[v].max_64)) {
1818 /* but the current lower bound is also higher, so the base range is omitted,
1819 * continue with the same current, but move the base */
1820 --u;
1821 ++v;
1822 continue;
1823 }
1824 /* current range starts within the base range but end behind it */
1825 goto baseerror;
1826 } else {
1827 /* current range is smaller than the base,
1828 * move current, but stay with the base */
1829 continue;
1830 }
1831 }
1832 }
1833 }
1834 if (u != parts_done) {
1835baseerror:
1836 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1837 "Invalid %s restriction - the derived restriction (%s) is not equally or more limiting.",
1838 length_restr ? "length" : "range", range_p->arg);
1839 goto cleanup;
1840 }
1841 }
1842
1843 if (!(*range)) {
1844 *range = calloc(1, sizeof **range);
1845 LY_CHECK_ERR_RET(!(*range), LOGMEM(ctx->ctx), LY_EMEM);
1846 }
1847
Radek Krejcic8b31002019-01-08 10:24:45 +01001848 /* we rewrite the following values as the types chain is being processed */
Radek Krejci19a96102018-11-15 13:38:09 +01001849 if (range_p->eapptag) {
1850 lydict_remove(ctx->ctx, (*range)->eapptag);
1851 (*range)->eapptag = lydict_insert(ctx->ctx, range_p->eapptag, 0);
1852 }
1853 if (range_p->emsg) {
1854 lydict_remove(ctx->ctx, (*range)->emsg);
1855 (*range)->emsg = lydict_insert(ctx->ctx, range_p->emsg, 0);
1856 }
Radek Krejcic8b31002019-01-08 10:24:45 +01001857 if (range_p->dsc) {
1858 lydict_remove(ctx->ctx, (*range)->dsc);
1859 (*range)->dsc = lydict_insert(ctx->ctx, range_p->dsc, 0);
1860 }
1861 if (range_p->ref) {
1862 lydict_remove(ctx->ctx, (*range)->ref);
1863 (*range)->ref = lydict_insert(ctx->ctx, range_p->ref, 0);
1864 }
Radek Krejci19a96102018-11-15 13:38:09 +01001865 /* extensions are taken only from the last range by the caller */
1866
1867 (*range)->parts = parts;
1868 parts = NULL;
1869 ret = LY_SUCCESS;
1870cleanup:
Radek Krejci19a96102018-11-15 13:38:09 +01001871 LY_ARRAY_FREE(parts);
1872
1873 return ret;
1874}
1875
1876/**
1877 * @brief Checks pattern syntax.
1878 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02001879 * @param[in] ctx Context.
1880 * @param[in] log_path Path for logging errors.
Radek Krejci19a96102018-11-15 13:38:09 +01001881 * @param[in] pattern Pattern to check.
Radek Krejci54579462019-04-30 12:47:06 +02001882 * @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 +01001883 * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID.
Radek Krejci19a96102018-11-15 13:38:09 +01001884 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001885LY_ERR
1886lys_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 +01001887{
Michal Vasko40a00082020-05-27 15:20:01 +02001888 int idx, idx2, start, end, size, brack;
Radek Krejci19a96102018-11-15 13:38:09 +01001889 char *perl_regex, *ptr;
Radek Krejci54579462019-04-30 12:47:06 +02001890 int err_code;
1891 const char *orig_ptr;
1892 PCRE2_SIZE err_offset;
1893 pcre2_code *code_local;
Radek Krejci19a96102018-11-15 13:38:09 +01001894#define URANGE_LEN 19
1895 char *ublock2urange[][2] = {
1896 {"BasicLatin", "[\\x{0000}-\\x{007F}]"},
1897 {"Latin-1Supplement", "[\\x{0080}-\\x{00FF}]"},
1898 {"LatinExtended-A", "[\\x{0100}-\\x{017F}]"},
1899 {"LatinExtended-B", "[\\x{0180}-\\x{024F}]"},
1900 {"IPAExtensions", "[\\x{0250}-\\x{02AF}]"},
1901 {"SpacingModifierLetters", "[\\x{02B0}-\\x{02FF}]"},
1902 {"CombiningDiacriticalMarks", "[\\x{0300}-\\x{036F}]"},
1903 {"Greek", "[\\x{0370}-\\x{03FF}]"},
1904 {"Cyrillic", "[\\x{0400}-\\x{04FF}]"},
1905 {"Armenian", "[\\x{0530}-\\x{058F}]"},
1906 {"Hebrew", "[\\x{0590}-\\x{05FF}]"},
1907 {"Arabic", "[\\x{0600}-\\x{06FF}]"},
1908 {"Syriac", "[\\x{0700}-\\x{074F}]"},
1909 {"Thaana", "[\\x{0780}-\\x{07BF}]"},
1910 {"Devanagari", "[\\x{0900}-\\x{097F}]"},
1911 {"Bengali", "[\\x{0980}-\\x{09FF}]"},
1912 {"Gurmukhi", "[\\x{0A00}-\\x{0A7F}]"},
1913 {"Gujarati", "[\\x{0A80}-\\x{0AFF}]"},
1914 {"Oriya", "[\\x{0B00}-\\x{0B7F}]"},
1915 {"Tamil", "[\\x{0B80}-\\x{0BFF}]"},
1916 {"Telugu", "[\\x{0C00}-\\x{0C7F}]"},
1917 {"Kannada", "[\\x{0C80}-\\x{0CFF}]"},
1918 {"Malayalam", "[\\x{0D00}-\\x{0D7F}]"},
1919 {"Sinhala", "[\\x{0D80}-\\x{0DFF}]"},
1920 {"Thai", "[\\x{0E00}-\\x{0E7F}]"},
1921 {"Lao", "[\\x{0E80}-\\x{0EFF}]"},
1922 {"Tibetan", "[\\x{0F00}-\\x{0FFF}]"},
1923 {"Myanmar", "[\\x{1000}-\\x{109F}]"},
1924 {"Georgian", "[\\x{10A0}-\\x{10FF}]"},
1925 {"HangulJamo", "[\\x{1100}-\\x{11FF}]"},
1926 {"Ethiopic", "[\\x{1200}-\\x{137F}]"},
1927 {"Cherokee", "[\\x{13A0}-\\x{13FF}]"},
1928 {"UnifiedCanadianAboriginalSyllabics", "[\\x{1400}-\\x{167F}]"},
1929 {"Ogham", "[\\x{1680}-\\x{169F}]"},
1930 {"Runic", "[\\x{16A0}-\\x{16FF}]"},
1931 {"Khmer", "[\\x{1780}-\\x{17FF}]"},
1932 {"Mongolian", "[\\x{1800}-\\x{18AF}]"},
1933 {"LatinExtendedAdditional", "[\\x{1E00}-\\x{1EFF}]"},
1934 {"GreekExtended", "[\\x{1F00}-\\x{1FFF}]"},
1935 {"GeneralPunctuation", "[\\x{2000}-\\x{206F}]"},
1936 {"SuperscriptsandSubscripts", "[\\x{2070}-\\x{209F}]"},
1937 {"CurrencySymbols", "[\\x{20A0}-\\x{20CF}]"},
1938 {"CombiningMarksforSymbols", "[\\x{20D0}-\\x{20FF}]"},
1939 {"LetterlikeSymbols", "[\\x{2100}-\\x{214F}]"},
1940 {"NumberForms", "[\\x{2150}-\\x{218F}]"},
1941 {"Arrows", "[\\x{2190}-\\x{21FF}]"},
1942 {"MathematicalOperators", "[\\x{2200}-\\x{22FF}]"},
1943 {"MiscellaneousTechnical", "[\\x{2300}-\\x{23FF}]"},
1944 {"ControlPictures", "[\\x{2400}-\\x{243F}]"},
1945 {"OpticalCharacterRecognition", "[\\x{2440}-\\x{245F}]"},
1946 {"EnclosedAlphanumerics", "[\\x{2460}-\\x{24FF}]"},
1947 {"BoxDrawing", "[\\x{2500}-\\x{257F}]"},
1948 {"BlockElements", "[\\x{2580}-\\x{259F}]"},
1949 {"GeometricShapes", "[\\x{25A0}-\\x{25FF}]"},
1950 {"MiscellaneousSymbols", "[\\x{2600}-\\x{26FF}]"},
1951 {"Dingbats", "[\\x{2700}-\\x{27BF}]"},
1952 {"BraillePatterns", "[\\x{2800}-\\x{28FF}]"},
1953 {"CJKRadicalsSupplement", "[\\x{2E80}-\\x{2EFF}]"},
1954 {"KangxiRadicals", "[\\x{2F00}-\\x{2FDF}]"},
1955 {"IdeographicDescriptionCharacters", "[\\x{2FF0}-\\x{2FFF}]"},
1956 {"CJKSymbolsandPunctuation", "[\\x{3000}-\\x{303F}]"},
1957 {"Hiragana", "[\\x{3040}-\\x{309F}]"},
1958 {"Katakana", "[\\x{30A0}-\\x{30FF}]"},
1959 {"Bopomofo", "[\\x{3100}-\\x{312F}]"},
1960 {"HangulCompatibilityJamo", "[\\x{3130}-\\x{318F}]"},
1961 {"Kanbun", "[\\x{3190}-\\x{319F}]"},
1962 {"BopomofoExtended", "[\\x{31A0}-\\x{31BF}]"},
1963 {"EnclosedCJKLettersandMonths", "[\\x{3200}-\\x{32FF}]"},
1964 {"CJKCompatibility", "[\\x{3300}-\\x{33FF}]"},
1965 {"CJKUnifiedIdeographsExtensionA", "[\\x{3400}-\\x{4DB5}]"},
1966 {"CJKUnifiedIdeographs", "[\\x{4E00}-\\x{9FFF}]"},
1967 {"YiSyllables", "[\\x{A000}-\\x{A48F}]"},
1968 {"YiRadicals", "[\\x{A490}-\\x{A4CF}]"},
1969 {"HangulSyllables", "[\\x{AC00}-\\x{D7A3}]"},
1970 {"PrivateUse", "[\\x{E000}-\\x{F8FF}]"},
1971 {"CJKCompatibilityIdeographs", "[\\x{F900}-\\x{FAFF}]"},
1972 {"AlphabeticPresentationForms", "[\\x{FB00}-\\x{FB4F}]"},
1973 {"ArabicPresentationForms-A", "[\\x{FB50}-\\x{FDFF}]"},
1974 {"CombiningHalfMarks", "[\\x{FE20}-\\x{FE2F}]"},
1975 {"CJKCompatibilityForms", "[\\x{FE30}-\\x{FE4F}]"},
1976 {"SmallFormVariants", "[\\x{FE50}-\\x{FE6F}]"},
1977 {"ArabicPresentationForms-B", "[\\x{FE70}-\\x{FEFE}]"},
1978 {"HalfwidthandFullwidthForms", "[\\x{FF00}-\\x{FFEF}]"},
1979 {NULL, NULL}
1980 };
1981
1982 /* adjust the expression to a Perl equivalent
1983 * http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#regexs */
1984
Michal Vasko40a00082020-05-27 15:20:01 +02001985 /* allocate space for the transformed pattern */
1986 size = strlen(pattern) + 1;
1987 perl_regex = malloc(size);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001988 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01001989 perl_regex[0] = '\0';
1990
Michal Vasko40a00082020-05-27 15:20:01 +02001991 /* we need to replace all "$" and "^" (that are not in "[]") with "\$" and "\^" */
1992 brack = 0;
1993 idx = 0;
1994 orig_ptr = pattern;
1995 while (orig_ptr[0]) {
1996 switch (orig_ptr[0]) {
1997 case '$':
1998 case '^':
1999 if (!brack) {
2000 /* make space for the extra character */
2001 ++size;
2002 perl_regex = ly_realloc(perl_regex, size);
2003 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01002004
Michal Vasko40a00082020-05-27 15:20:01 +02002005 /* print escape slash */
2006 perl_regex[idx] = '\\';
2007 ++idx;
2008 }
2009 break;
2010 case '[':
2011 /* must not be escaped */
2012 if ((orig_ptr == pattern) || (orig_ptr[-1] != '\\')) {
2013 ++brack;
2014 }
2015 break;
2016 case ']':
2017 if ((orig_ptr == pattern) || (orig_ptr[-1] != '\\')) {
2018 /* pattern was checked and compiled already */
2019 assert(brack);
2020 --brack;
2021 }
2022 break;
2023 default:
2024 break;
Radek Krejci19a96102018-11-15 13:38:09 +01002025 }
Michal Vasko40a00082020-05-27 15:20:01 +02002026
2027 /* copy char */
2028 perl_regex[idx] = orig_ptr[0];
2029
2030 ++idx;
2031 ++orig_ptr;
Radek Krejci19a96102018-11-15 13:38:09 +01002032 }
Michal Vasko40a00082020-05-27 15:20:01 +02002033 perl_regex[idx] = '\0';
Radek Krejci19a96102018-11-15 13:38:09 +01002034
2035 /* substitute Unicode Character Blocks with exact Character Ranges */
2036 while ((ptr = strstr(perl_regex, "\\p{Is"))) {
2037 start = ptr - perl_regex;
2038
2039 ptr = strchr(ptr, '}');
2040 if (!ptr) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002041 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP,
Radek Krejci19a96102018-11-15 13:38:09 +01002042 pattern, perl_regex + start + 2, "unterminated character property");
2043 free(perl_regex);
2044 return LY_EVALID;
2045 }
2046 end = (ptr - perl_regex) + 1;
2047
2048 /* need more space */
2049 if (end - start < URANGE_LEN) {
2050 perl_regex = ly_realloc(perl_regex, strlen(perl_regex) + (URANGE_LEN - (end - start)) + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002051 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx); free(perl_regex), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01002052 }
2053
2054 /* find our range */
2055 for (idx = 0; ublock2urange[idx][0]; ++idx) {
2056 if (!strncmp(perl_regex + start + 5, ublock2urange[idx][0], strlen(ublock2urange[idx][0]))) {
2057 break;
2058 }
2059 }
2060 if (!ublock2urange[idx][0]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002061 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP,
Radek Krejci19a96102018-11-15 13:38:09 +01002062 pattern, perl_regex + start + 5, "unknown block name");
2063 free(perl_regex);
2064 return LY_EVALID;
2065 }
2066
2067 /* 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 +02002068 for (idx2 = 0, idx = 0; idx2 < start; ++idx2) {
Radek Krejci19a96102018-11-15 13:38:09 +01002069 if ((perl_regex[idx2] == '[') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) {
Michal Vasko40a00082020-05-27 15:20:01 +02002070 ++idx;
Radek Krejci19a96102018-11-15 13:38:09 +01002071 }
2072 if ((perl_regex[idx2] == ']') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) {
Michal Vasko40a00082020-05-27 15:20:01 +02002073 --idx;
Radek Krejci19a96102018-11-15 13:38:09 +01002074 }
2075 }
Michal Vasko40a00082020-05-27 15:20:01 +02002076 if (idx) {
Radek Krejci19a96102018-11-15 13:38:09 +01002077 /* skip brackets */
2078 memmove(perl_regex + start + (URANGE_LEN - 2), perl_regex + end, strlen(perl_regex + end) + 1);
2079 memcpy(perl_regex + start, ublock2urange[idx][1] + 1, URANGE_LEN - 2);
2080 } else {
2081 memmove(perl_regex + start + URANGE_LEN, perl_regex + end, strlen(perl_regex + end) + 1);
2082 memcpy(perl_regex + start, ublock2urange[idx][1], URANGE_LEN);
2083 }
2084 }
2085
2086 /* must return 0, already checked during parsing */
Radek Krejci5819f7c2019-05-31 14:53:29 +02002087 code_local = pcre2_compile((PCRE2_SPTR)perl_regex, PCRE2_ZERO_TERMINATED,
2088 PCRE2_UTF | PCRE2_ANCHORED | PCRE2_ENDANCHORED | PCRE2_DOLLAR_ENDONLY | PCRE2_NO_AUTO_CAPTURE,
Radek Krejci54579462019-04-30 12:47:06 +02002089 &err_code, &err_offset, NULL);
2090 if (!code_local) {
2091 PCRE2_UCHAR err_msg[256] = {0};
2092 pcre2_get_error_message(err_code, err_msg, 256);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002093 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP, pattern, perl_regex + err_offset, err_msg);
Radek Krejci19a96102018-11-15 13:38:09 +01002094 free(perl_regex);
2095 return LY_EVALID;
2096 }
2097 free(perl_regex);
2098
Radek Krejci54579462019-04-30 12:47:06 +02002099 if (code) {
2100 *code = code_local;
Radek Krejci19a96102018-11-15 13:38:09 +01002101 } else {
Radek Krejci54579462019-04-30 12:47:06 +02002102 free(code_local);
Radek Krejci19a96102018-11-15 13:38:09 +01002103 }
2104
2105 return LY_SUCCESS;
2106
2107#undef URANGE_LEN
2108}
2109
Radek Krejcia3045382018-11-22 14:30:31 +01002110/**
2111 * @brief Compile parsed pattern restriction in conjunction with the patterns from base type.
2112 * @param[in] ctx Compile context.
2113 * @param[in] patterns_p Array of parsed patterns from the current type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002114 * @param[in] base_patterns Compiled patterns from the type from which the current type is derived.
2115 * Patterns from the base type are inherited to have all the patterns that have to match at one place.
2116 * @param[out] patterns Pointer to the storage for the patterns of the current type.
2117 * @return LY_ERR LY_SUCCESS, LY_EMEM, LY_EVALID.
2118 */
Radek Krejci19a96102018-11-15 13:38:09 +01002119static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02002120lys_compile_type_patterns(struct lysc_ctx *ctx, struct lysp_restr *patterns_p,
Radek Krejci19a96102018-11-15 13:38:09 +01002121 struct lysc_pattern **base_patterns, struct lysc_pattern ***patterns)
2122{
2123 struct lysc_pattern **pattern;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002124 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01002125 LY_ERR ret = LY_SUCCESS;
2126
2127 /* first, copy the patterns from the base type */
2128 if (base_patterns) {
2129 *patterns = lysc_patterns_dup(ctx->ctx, base_patterns);
2130 LY_CHECK_ERR_RET(!(*patterns), LOGMEM(ctx->ctx), LY_EMEM);
2131 }
2132
2133 LY_ARRAY_FOR(patterns_p, u) {
2134 LY_ARRAY_NEW_RET(ctx->ctx, (*patterns), pattern, LY_EMEM);
2135 *pattern = calloc(1, sizeof **pattern);
2136 ++(*pattern)->refcount;
2137
Michal Vasko03ff5a72019-09-11 13:49:33 +02002138 ret = lys_compile_type_pattern_check(ctx->ctx, ctx->path, &patterns_p[u].arg[1], &(*pattern)->code);
Radek Krejci19a96102018-11-15 13:38:09 +01002139 LY_CHECK_RET(ret);
Radek Krejci19a96102018-11-15 13:38:09 +01002140
2141 if (patterns_p[u].arg[0] == 0x15) {
2142 (*pattern)->inverted = 1;
2143 }
Radek Krejci54579462019-04-30 12:47:06 +02002144 DUP_STRING(ctx->ctx, &patterns_p[u].arg[1], (*pattern)->expr);
Radek Krejci19a96102018-11-15 13:38:09 +01002145 DUP_STRING(ctx->ctx, patterns_p[u].eapptag, (*pattern)->eapptag);
2146 DUP_STRING(ctx->ctx, patterns_p[u].emsg, (*pattern)->emsg);
Radek Krejcic8b31002019-01-08 10:24:45 +01002147 DUP_STRING(ctx->ctx, patterns_p[u].dsc, (*pattern)->dsc);
2148 DUP_STRING(ctx->ctx, patterns_p[u].ref, (*pattern)->ref);
Radek Krejci0935f412019-08-20 16:15:18 +02002149 COMPILE_EXTS_GOTO(ctx, patterns_p[u].exts, (*pattern)->exts, (*pattern), LYEXT_PAR_PATTERN, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +01002150 }
2151done:
2152 return ret;
2153}
2154
Radek Krejcia3045382018-11-22 14:30:31 +01002155/**
2156 * @brief map of the possible restrictions combination for the specific built-in type.
2157 */
Radek Krejci19a96102018-11-15 13:38:09 +01002158static uint16_t type_substmt_map[LY_DATA_TYPE_COUNT] = {
2159 0 /* LY_TYPE_UNKNOWN */,
2160 LYS_SET_LENGTH /* LY_TYPE_BINARY */,
Radek Krejci5969f272018-11-23 10:03:58 +01002161 LYS_SET_RANGE /* LY_TYPE_UINT8 */,
2162 LYS_SET_RANGE /* LY_TYPE_UINT16 */,
2163 LYS_SET_RANGE /* LY_TYPE_UINT32 */,
2164 LYS_SET_RANGE /* LY_TYPE_UINT64 */,
2165 LYS_SET_LENGTH | LYS_SET_PATTERN /* LY_TYPE_STRING */,
Radek Krejci19a96102018-11-15 13:38:09 +01002166 LYS_SET_BIT /* LY_TYPE_BITS */,
2167 0 /* LY_TYPE_BOOL */,
2168 LYS_SET_FRDIGITS | LYS_SET_RANGE /* LY_TYPE_DEC64 */,
2169 0 /* LY_TYPE_EMPTY */,
2170 LYS_SET_ENUM /* LY_TYPE_ENUM */,
2171 LYS_SET_BASE /* LY_TYPE_IDENT */,
2172 LYS_SET_REQINST /* LY_TYPE_INST */,
2173 LYS_SET_REQINST | LYS_SET_PATH /* LY_TYPE_LEAFREF */,
Radek Krejci19a96102018-11-15 13:38:09 +01002174 LYS_SET_TYPE /* LY_TYPE_UNION */,
2175 LYS_SET_RANGE /* LY_TYPE_INT8 */,
Radek Krejci19a96102018-11-15 13:38:09 +01002176 LYS_SET_RANGE /* LY_TYPE_INT16 */,
Radek Krejci19a96102018-11-15 13:38:09 +01002177 LYS_SET_RANGE /* LY_TYPE_INT32 */,
Radek Krejci5969f272018-11-23 10:03:58 +01002178 LYS_SET_RANGE /* LY_TYPE_INT64 */
2179};
2180
2181/**
2182 * @brief stringification of the YANG built-in data types
2183 */
2184const char* ly_data_type2str[LY_DATA_TYPE_COUNT] = {"unknown", "binary", "8bit unsigned integer", "16bit unsigned integer",
2185 "32bit unsigned integer", "64bit unsigned integer", "string", "bits", "boolean", "decimal64", "empty", "enumeration",
2186 "identityref", "instance-identifier", "leafref", "union", "8bit integer", "16bit integer", "32bit integer", "64bit integer"
Radek Krejci19a96102018-11-15 13:38:09 +01002187};
2188
Radek Krejcia3045382018-11-22 14:30:31 +01002189/**
2190 * @brief Compile parsed type's enum structures (for enumeration and bits types).
2191 * @param[in] ctx Compile context.
2192 * @param[in] enums_p Array of the parsed enum structures to compile.
2193 * @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 +01002194 * @param[in] base_enums Array of the compiled enums information from the (latest) base type to check if the current enums are compatible.
2195 * @param[out] enums Newly created array of the compiled enums information for the current type.
2196 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
2197 */
Radek Krejci19a96102018-11-15 13:38:09 +01002198static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02002199lys_compile_type_enums(struct lysc_ctx *ctx, struct lysp_type_enum *enums_p, LY_DATA_TYPE basetype,
Radek Krejci693262f2019-04-29 15:23:20 +02002200 struct lysc_type_bitenum_item *base_enums, struct lysc_type_bitenum_item **enums)
Radek Krejci19a96102018-11-15 13:38:09 +01002201{
2202 LY_ERR ret = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002203 LY_ARRAY_COUNT_TYPE u, v, match = 0;
Radek Krejci19a96102018-11-15 13:38:09 +01002204 int32_t value = 0;
2205 uint32_t position = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02002206 struct lysc_type_bitenum_item *e, storage;
Radek Krejci19a96102018-11-15 13:38:09 +01002207
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002208 if (base_enums && ctx->mod_def->version < 2) {
Radek Krejci19a96102018-11-15 13:38:09 +01002209 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "%s type can be subtyped only in YANG 1.1 modules.",
2210 basetype == LY_TYPE_ENUM ? "Enumeration" : "Bits");
2211 return LY_EVALID;
2212 }
2213
2214 LY_ARRAY_FOR(enums_p, u) {
2215 LY_ARRAY_NEW_RET(ctx->ctx, *enums, e, LY_EMEM);
2216 DUP_STRING(ctx->ctx, enums_p[u].name, e->name);
Radek Krejcic8b31002019-01-08 10:24:45 +01002217 DUP_STRING(ctx->ctx, enums_p[u].ref, e->dsc);
2218 DUP_STRING(ctx->ctx, enums_p[u].ref, e->ref);
Radek Krejci693262f2019-04-29 15:23:20 +02002219 e->flags = enums_p[u].flags & LYS_FLAGS_COMPILED_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +01002220 if (base_enums) {
2221 /* check the enum/bit presence in the base type - the set of enums/bits in the derived type must be a subset */
2222 LY_ARRAY_FOR(base_enums, v) {
2223 if (!strcmp(e->name, base_enums[v].name)) {
2224 break;
2225 }
2226 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002227 if (v == LY_ARRAY_COUNT(base_enums)) {
Radek Krejci19a96102018-11-15 13:38:09 +01002228 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2229 "Invalid %s - derived type adds new item \"%s\".",
2230 basetype == LY_TYPE_ENUM ? "enumeration" : "bits", e->name);
2231 return LY_EVALID;
2232 }
2233 match = v;
2234 }
2235
2236 if (basetype == LY_TYPE_ENUM) {
Radek Krejci693262f2019-04-29 15:23:20 +02002237 e->flags |= LYS_ISENUM;
Radek Krejci19a96102018-11-15 13:38:09 +01002238 if (enums_p[u].flags & LYS_SET_VALUE) {
2239 e->value = (int32_t)enums_p[u].value;
2240 if (!u || e->value >= value) {
2241 value = e->value + 1;
2242 }
2243 /* check collision with other values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002244 for (v = 0; v < LY_ARRAY_COUNT(*enums) - 1; ++v) {
Radek Krejci19a96102018-11-15 13:38:09 +01002245 if (e->value == (*enums)[v].value) {
2246 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2247 "Invalid enumeration - value %d collide in items \"%s\" and \"%s\".",
2248 e->value, e->name, (*enums)[v].name);
2249 return LY_EVALID;
2250 }
2251 }
2252 } else if (base_enums) {
2253 /* inherit the assigned value */
2254 e->value = base_enums[match].value;
2255 if (!u || e->value >= value) {
2256 value = e->value + 1;
2257 }
2258 } else {
2259 /* assign value automatically */
2260 if (u && value == INT32_MIN) {
2261 /* counter overflow */
2262 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2263 "Invalid enumeration - it is not possible to auto-assign enum value for "
2264 "\"%s\" since the highest value is already 2147483647.", e->name);
2265 return LY_EVALID;
2266 }
2267 e->value = value++;
2268 }
2269 } else { /* LY_TYPE_BITS */
2270 if (enums_p[u].flags & LYS_SET_VALUE) {
2271 e->value = (int32_t)enums_p[u].value;
2272 if (!u || (uint32_t)e->value >= position) {
2273 position = (uint32_t)e->value + 1;
2274 }
2275 /* check collision with other values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002276 for (v = 0; v < LY_ARRAY_COUNT(*enums) - 1; ++v) {
Radek Krejci19a96102018-11-15 13:38:09 +01002277 if (e->value == (*enums)[v].value) {
2278 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2279 "Invalid bits - position %u collide in items \"%s\" and \"%s\".",
2280 (uint32_t)e->value, e->name, (*enums)[v].name);
2281 return LY_EVALID;
2282 }
2283 }
2284 } else if (base_enums) {
2285 /* inherit the assigned value */
2286 e->value = base_enums[match].value;
2287 if (!u || (uint32_t)e->value >= position) {
2288 position = (uint32_t)e->value + 1;
2289 }
2290 } else {
2291 /* assign value automatically */
2292 if (u && position == 0) {
2293 /* counter overflow */
2294 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2295 "Invalid bits - it is not possible to auto-assign bit position for "
2296 "\"%s\" since the highest value is already 4294967295.", e->name);
2297 return LY_EVALID;
2298 }
2299 e->value = position++;
2300 }
2301 }
2302
2303 if (base_enums) {
2304 /* the assigned values must not change from the derived type */
2305 if (e->value != base_enums[match].value) {
2306 if (basetype == LY_TYPE_ENUM) {
2307 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2308 "Invalid enumeration - value of the item \"%s\" has changed from %d to %d in the derived type.",
2309 e->name, base_enums[match].value, e->value);
2310 } else {
2311 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2312 "Invalid bits - position of the item \"%s\" has changed from %u to %u in the derived type.",
2313 e->name, (uint32_t)base_enums[match].value, (uint32_t)e->value);
2314 }
2315 return LY_EVALID;
2316 }
2317 }
2318
Radek Krejciec4da802019-05-02 13:02:41 +02002319 COMPILE_ARRAY_GOTO(ctx, enums_p[u].iffeatures, e->iffeatures, v, lys_compile_iffeature, ret, done);
Radek Krejci0935f412019-08-20 16:15:18 +02002320 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 +01002321
2322 if (basetype == LY_TYPE_BITS) {
2323 /* keep bits ordered by position */
2324 for (v = u; v && (*enums)[v - 1].value > e->value; --v);
2325 if (v != u) {
2326 memcpy(&storage, e, sizeof *e);
2327 memmove(&(*enums)[v + 1], &(*enums)[v], (u - v) * sizeof **enums);
2328 memcpy(&(*enums)[v], &storage, sizeof storage);
2329 }
2330 }
2331 }
2332
2333done:
2334 return ret;
2335}
2336
Radek Krejcia3045382018-11-22 14:30:31 +01002337/**
2338 * @brief Parse path-arg (leafref). Get tokens of the path by repetitive calls of the function.
2339 *
2340 * path-arg = absolute-path / relative-path
2341 * absolute-path = 1*("/" (node-identifier *path-predicate))
2342 * relative-path = 1*(".." "/") descendant-path
2343 *
2344 * @param[in,out] path Path to parse.
2345 * @param[out] prefix Prefix of the token, NULL if there is not any.
2346 * @param[out] pref_len Length of the prefix, 0 if there is not any.
2347 * @param[out] name Name of the token.
2348 * @param[out] nam_len Length of the name.
2349 * @param[out] parent_times Number of leading ".." in the path. Must be 0 on the first call,
2350 * must not be changed between consecutive calls. -1 if the
2351 * path is absolute.
2352 * @param[out] has_predicate Flag to mark whether there is a predicate specified.
2353 * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the path.
2354 */
Radek Krejci2d7a47b2019-05-16 13:34:10 +02002355LY_ERR
Radek Krejcia3045382018-11-22 14:30:31 +01002356lys_path_token(const char **path, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len,
2357 int *parent_times, int *has_predicate)
2358{
2359 int par_times = 0;
2360
2361 assert(path && *path);
2362 assert(parent_times);
2363 assert(prefix);
2364 assert(prefix_len);
2365 assert(name);
2366 assert(name_len);
2367 assert(has_predicate);
2368
2369 *prefix = NULL;
2370 *prefix_len = 0;
2371 *name = NULL;
2372 *name_len = 0;
2373 *has_predicate = 0;
2374
2375 if (!*parent_times) {
2376 if (!strncmp(*path, "..", 2)) {
2377 *path += 2;
2378 ++par_times;
2379 while (!strncmp(*path, "/..", 3)) {
2380 *path += 3;
2381 ++par_times;
2382 }
2383 }
2384 if (par_times) {
2385 *parent_times = par_times;
2386 } else {
2387 *parent_times = -1;
2388 }
2389 }
2390
2391 if (**path != '/') {
2392 return LY_EINVAL;
2393 }
2394 /* skip '/' */
2395 ++(*path);
2396
2397 /* node-identifier ([prefix:]name) */
Radek Krejcib4a4a272019-06-10 12:44:52 +02002398 LY_CHECK_RET(ly_parse_nodeid(path, prefix, prefix_len, name, name_len));
Radek Krejcia3045382018-11-22 14:30:31 +01002399
2400 if ((**path == '/' && (*path)[1]) || !**path) {
2401 /* path continues by another token or this is the last token */
2402 return LY_SUCCESS;
2403 } else if ((*path)[0] != '[') {
2404 /* unexpected character */
2405 return LY_EINVAL;
2406 } else {
2407 /* predicate starting with [ */
2408 *has_predicate = 1;
2409 return LY_SUCCESS;
2410 }
2411}
2412
2413/**
Radek Krejci58d171e2018-11-23 13:50:55 +01002414 * @brief Check the features used in if-feature statements applicable to the leafref and its target.
2415 *
2416 * The set of features used for target must be a subset of features used for the leafref.
2417 * This is not a perfect, we should compare the truth tables but it could require too much resources
2418 * and RFC 7950 does not require it explicitely, so we simplify that.
2419 *
2420 * @param[in] refnode The leafref node.
2421 * @param[in] target Tha target node of the leafref.
2422 * @return LY_SUCCESS or LY_EVALID;
2423 */
2424static LY_ERR
2425lys_compile_leafref_features_validate(const struct lysc_node *refnode, const struct lysc_node *target)
2426{
2427 LY_ERR ret = LY_EVALID;
2428 const struct lysc_node *iter;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002429 LY_ARRAY_COUNT_TYPE u, v, count;
Radek Krejci58d171e2018-11-23 13:50:55 +01002430 struct ly_set features = {0};
2431
2432 for (iter = refnode; iter; iter = iter->parent) {
Radek Krejci056d0a82018-12-06 16:57:25 +01002433 if (iter->iffeatures) {
2434 LY_ARRAY_FOR(iter->iffeatures, u) {
2435 LY_ARRAY_FOR(iter->iffeatures[u].features, v) {
2436 LY_CHECK_GOTO(ly_set_add(&features, iter->iffeatures[u].features[v], 0) == -1, cleanup);
Radek Krejci58d171e2018-11-23 13:50:55 +01002437 }
2438 }
2439 }
2440 }
2441
2442 /* we should have, in features set, a superset of features applicable to the target node.
2443 * So when adding features applicable to the target into the features set, we should not be
2444 * able to actually add any new feature, otherwise it is not a subset of features applicable
2445 * to the leafref itself. */
2446 count = features.count;
2447 for (iter = target; iter; iter = iter->parent) {
Radek Krejci056d0a82018-12-06 16:57:25 +01002448 if (iter->iffeatures) {
2449 LY_ARRAY_FOR(iter->iffeatures, u) {
2450 LY_ARRAY_FOR(iter->iffeatures[u].features, v) {
2451 if ((unsigned int)ly_set_add(&features, iter->iffeatures[u].features[v], 0) >= count) {
Radek Krejci58d171e2018-11-23 13:50:55 +01002452 /* new feature was added (or LY_EMEM) */
2453 goto cleanup;
2454 }
2455 }
2456 }
2457 }
2458 }
2459 ret = LY_SUCCESS;
2460
2461cleanup:
2462 ly_set_erase(&features, NULL);
2463 return ret;
2464}
2465
Michal Vasko004d3152020-06-11 19:59:22 +02002466static LY_ERR lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags,
2467 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p,
2468 struct lysc_type **type, const char **units);
Radek Krejcia3045382018-11-22 14:30:31 +01002469
Radek Krejcia3045382018-11-22 14:30:31 +01002470/**
2471 * @brief The core of the lys_compile_type() - compile information about the given type (from typedef or leaf/leaf-list).
2472 * @param[in] ctx Compile context.
Radek Krejcicdfecd92018-11-26 11:27:32 +01002473 * @param[in] context_node_p Schema node where the type/typedef is placed to correctly find the base types.
2474 * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2475 * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2476 * @param[in] context_name Name of the context node or referencing typedef for logging.
Radek Krejcia3045382018-11-22 14:30:31 +01002477 * @param[in] type_p Parsed type to compile.
Radek Krejci0a33b042020-05-27 10:05:06 +02002478 * @param[in] module Context module for the leafref path and identityref (to correctly resolve prefixes)
Radek Krejcia3045382018-11-22 14:30:31 +01002479 * @param[in] basetype Base YANG built-in type of the type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002480 * @param[in] tpdfname Name of the type's typedef, serves as a flag - if it is leaf/leaf-list's type, it is NULL.
2481 * @param[in] base The latest base (compiled) type from which the current type is being derived.
2482 * @param[out] type Newly created type structure with the filled information about the type.
2483 * @return LY_ERR value.
2484 */
Radek Krejci19a96102018-11-15 13:38:09 +01002485static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002486lys_compile_type_(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags,
2487 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p,
2488 struct lys_module *module, LY_DATA_TYPE basetype, const char *tpdfname, struct lysc_type *base,
2489 struct lysc_type **type)
Radek Krejcic5c27e52018-11-15 14:38:11 +01002490{
2491 LY_ERR ret = LY_SUCCESS;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002492 struct lysc_type_bin *bin;
2493 struct lysc_type_num *num;
2494 struct lysc_type_str *str;
2495 struct lysc_type_bits *bits;
2496 struct lysc_type_enum *enumeration;
Radek Krejci6cba4292018-11-15 17:33:29 +01002497 struct lysc_type_dec *dec;
Radek Krejci555cb5b2018-11-16 14:54:33 +01002498 struct lysc_type_identityref *idref;
Michal Vasko004d3152020-06-11 19:59:22 +02002499 struct lysc_type_leafref *lref;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002500 struct lysc_type_union *un, *un_aux;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002501
2502 switch (basetype) {
2503 case LY_TYPE_BINARY:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002504 bin = (struct lysc_type_bin*)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002505
2506 /* RFC 7950 9.8.1, 9.4.4 - length, number of octets it contains */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002507 if (type_p->length) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002508 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->length, basetype, 1, 0,
2509 base ? ((struct lysc_type_bin*)base)->length : NULL, &bin->length));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002510 if (!tpdfname) {
Radek Krejci0935f412019-08-20 16:15:18 +02002511 COMPILE_EXTS_GOTO(ctx, type_p->length->exts, bin->length->exts, bin->length, LYEXT_PAR_LENGTH, ret, done);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002512 }
2513 }
2514
2515 if (tpdfname) {
2516 type_p->compiled = *type;
2517 *type = calloc(1, sizeof(struct lysc_type_bin));
2518 }
2519 break;
2520 case LY_TYPE_BITS:
2521 /* RFC 7950 9.7 - bits */
2522 bits = (struct lysc_type_bits*)(*type);
2523 if (type_p->bits) {
Radek Krejciec4da802019-05-02 13:02:41 +02002524 LY_CHECK_RET(lys_compile_type_enums(ctx, type_p->bits, basetype,
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002525 base ? (struct lysc_type_bitenum_item*)((struct lysc_type_bits*)base)->bits : NULL,
2526 (struct lysc_type_bitenum_item**)&bits->bits));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002527 }
2528
Radek Krejci555cb5b2018-11-16 14:54:33 +01002529 if (!base && !type_p->flags) {
Radek Krejcic5c27e52018-11-15 14:38:11 +01002530 /* type derived from bits built-in type must contain at least one bit */
Radek Krejci6cba4292018-11-15 17:33:29 +01002531 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002532 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type ", tpdfname);
Radek Krejci6cba4292018-11-15 17:33:29 +01002533 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002534 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type", "");
Radek Krejci6cba4292018-11-15 17:33:29 +01002535 free(*type);
2536 *type = NULL;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002537 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002538 return LY_EVALID;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002539 }
2540
2541 if (tpdfname) {
2542 type_p->compiled = *type;
2543 *type = calloc(1, sizeof(struct lysc_type_bits));
2544 }
2545 break;
Radek Krejci6cba4292018-11-15 17:33:29 +01002546 case LY_TYPE_DEC64:
2547 dec = (struct lysc_type_dec*)(*type);
2548
2549 /* RFC 7950 9.3.4 - fraction-digits */
Radek Krejci555cb5b2018-11-16 14:54:33 +01002550 if (!base) {
Radek Krejci643c8242018-11-15 17:51:11 +01002551 if (!type_p->fraction_digits) {
2552 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002553 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "fraction-digits", "decimal64 type ", tpdfname);
Radek Krejci643c8242018-11-15 17:51:11 +01002554 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002555 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "fraction-digits", "decimal64 type", "");
Radek Krejci643c8242018-11-15 17:51:11 +01002556 free(*type);
2557 *type = NULL;
2558 }
2559 return LY_EVALID;
2560 }
2561 } else if (type_p->fraction_digits) {
2562 /* fraction digits is prohibited in types not directly derived from built-in decimal64 */
Radek Krejci6cba4292018-11-15 17:33:29 +01002563 if (tpdfname) {
Radek Krejci643c8242018-11-15 17:51:11 +01002564 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2565 "Invalid fraction-digits substatement for type \"%s\" not directly derived from decimal64 built-in type.",
Radek Krejci6cba4292018-11-15 17:33:29 +01002566 tpdfname);
2567 } else {
Radek Krejci643c8242018-11-15 17:51:11 +01002568 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2569 "Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type.");
Radek Krejci6cba4292018-11-15 17:33:29 +01002570 free(*type);
2571 *type = NULL;
2572 }
2573 return LY_EVALID;
2574 }
2575 dec->fraction_digits = type_p->fraction_digits;
2576
2577 /* RFC 7950 9.2.4 - range */
2578 if (type_p->range) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002579 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->range, basetype, 0, dec->fraction_digits,
2580 base ? ((struct lysc_type_dec*)base)->range : NULL, &dec->range));
Radek Krejci6cba4292018-11-15 17:33:29 +01002581 if (!tpdfname) {
Radek Krejci0935f412019-08-20 16:15:18 +02002582 COMPILE_EXTS_GOTO(ctx, type_p->range->exts, dec->range->exts, dec->range, LYEXT_PAR_RANGE, ret, done);
Radek Krejci6cba4292018-11-15 17:33:29 +01002583 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002584 }
2585
2586 if (tpdfname) {
2587 type_p->compiled = *type;
2588 *type = calloc(1, sizeof(struct lysc_type_dec));
2589 }
2590 break;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002591 case LY_TYPE_STRING:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002592 str = (struct lysc_type_str*)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002593
2594 /* RFC 7950 9.4.4 - length */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002595 if (type_p->length) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002596 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->length, basetype, 1, 0,
2597 base ? ((struct lysc_type_str*)base)->length : NULL, &str->length));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002598 if (!tpdfname) {
Radek Krejci0935f412019-08-20 16:15:18 +02002599 COMPILE_EXTS_GOTO(ctx, type_p->length->exts, str->length->exts, str->length, LYEXT_PAR_LENGTH, ret, done);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002600 }
2601 } else if (base && ((struct lysc_type_str*)base)->length) {
2602 str->length = lysc_range_dup(ctx->ctx, ((struct lysc_type_str*)base)->length);
2603 }
2604
2605 /* RFC 7950 9.4.5 - pattern */
2606 if (type_p->patterns) {
Radek Krejciec4da802019-05-02 13:02:41 +02002607 LY_CHECK_RET(lys_compile_type_patterns(ctx, type_p->patterns,
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002608 base ? ((struct lysc_type_str*)base)->patterns : NULL, &str->patterns));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002609 } else if (base && ((struct lysc_type_str*)base)->patterns) {
2610 str->patterns = lysc_patterns_dup(ctx->ctx, ((struct lysc_type_str*)base)->patterns);
2611 }
2612
2613 if (tpdfname) {
2614 type_p->compiled = *type;
2615 *type = calloc(1, sizeof(struct lysc_type_str));
2616 }
2617 break;
2618 case LY_TYPE_ENUM:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002619 enumeration = (struct lysc_type_enum*)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002620
2621 /* RFC 7950 9.6 - enum */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002622 if (type_p->enums) {
Radek Krejciec4da802019-05-02 13:02:41 +02002623 LY_CHECK_RET(lys_compile_type_enums(ctx, type_p->enums, basetype,
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002624 base ? ((struct lysc_type_enum*)base)->enums : NULL, &enumeration->enums));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002625 }
2626
Radek Krejci555cb5b2018-11-16 14:54:33 +01002627 if (!base && !type_p->flags) {
Radek Krejcic5c27e52018-11-15 14:38:11 +01002628 /* type derived from enumerations built-in type must contain at least one enum */
Radek Krejci6cba4292018-11-15 17:33:29 +01002629 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002630 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type ", tpdfname);
Radek Krejci6cba4292018-11-15 17:33:29 +01002631 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002632 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type", "");
Radek Krejci6cba4292018-11-15 17:33:29 +01002633 free(*type);
2634 *type = NULL;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002635 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002636 return LY_EVALID;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002637 }
2638
2639 if (tpdfname) {
2640 type_p->compiled = *type;
2641 *type = calloc(1, sizeof(struct lysc_type_enum));
2642 }
2643 break;
2644 case LY_TYPE_INT8:
2645 case LY_TYPE_UINT8:
2646 case LY_TYPE_INT16:
2647 case LY_TYPE_UINT16:
2648 case LY_TYPE_INT32:
2649 case LY_TYPE_UINT32:
2650 case LY_TYPE_INT64:
2651 case LY_TYPE_UINT64:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002652 num = (struct lysc_type_num*)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002653
2654 /* RFC 6020 9.2.4 - range */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002655 if (type_p->range) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002656 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->range, basetype, 0, 0,
2657 base ? ((struct lysc_type_num*)base)->range : NULL, &num->range));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002658 if (!tpdfname) {
Radek Krejci0935f412019-08-20 16:15:18 +02002659 COMPILE_EXTS_GOTO(ctx, type_p->range->exts, num->range->exts, num->range, LYEXT_PAR_RANGE, ret, done);
Radek Krejcic5c27e52018-11-15 14:38:11 +01002660 }
2661 }
2662
2663 if (tpdfname) {
2664 type_p->compiled = *type;
2665 *type = calloc(1, sizeof(struct lysc_type_num));
2666 }
2667 break;
Radek Krejci555cb5b2018-11-16 14:54:33 +01002668 case LY_TYPE_IDENT:
2669 idref = (struct lysc_type_identityref*)(*type);
2670
2671 /* RFC 7950 9.10.2 - base */
2672 if (type_p->bases) {
2673 if (base) {
2674 /* only the directly derived identityrefs can contain base specification */
2675 if (tpdfname) {
2676 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Radek Krejcicdfecd92018-11-26 11:27:32 +01002677 "Invalid base substatement for the type \"%s\" not directly derived from identityref built-in type.",
Radek Krejci555cb5b2018-11-16 14:54:33 +01002678 tpdfname);
2679 } else {
2680 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Radek Krejcicdfecd92018-11-26 11:27:32 +01002681 "Invalid base substatement for the type not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01002682 free(*type);
2683 *type = NULL;
2684 }
2685 return LY_EVALID;
2686 }
Radek Krejci0a33b042020-05-27 10:05:06 +02002687 LY_CHECK_RET(lys_compile_identity_bases(ctx, module, type_p->bases, NULL, &idref->bases));
Radek Krejci555cb5b2018-11-16 14:54:33 +01002688 }
2689
2690 if (!base && !type_p->flags) {
2691 /* type derived from identityref built-in type must contain at least one base */
2692 if (tpdfname) {
2693 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type ", tpdfname);
2694 } else {
2695 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type", "");
2696 free(*type);
2697 *type = NULL;
2698 }
2699 return LY_EVALID;
2700 }
2701
2702 if (tpdfname) {
2703 type_p->compiled = *type;
2704 *type = calloc(1, sizeof(struct lysc_type_identityref));
2705 }
2706 break;
Radek Krejcia3045382018-11-22 14:30:31 +01002707 case LY_TYPE_LEAFREF:
Michal Vasko004d3152020-06-11 19:59:22 +02002708 lref = (struct lysc_type_leafref*)*type;
2709
Radek Krejcia3045382018-11-22 14:30:31 +01002710 /* RFC 7950 9.9.3 - require-instance */
2711 if (type_p->flags & LYS_SET_REQINST) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002712 if (context_mod->mod->version < LYS_VERSION_1_1) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002713 if (tpdfname) {
2714 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
2715 "Leafref type \"%s\" can be restricted by require-instance statement only in YANG 1.1 modules.", tpdfname);
2716 } else {
2717 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
2718 "Leafref type can be restricted by require-instance statement only in YANG 1.1 modules.");
2719 free(*type);
2720 *type = NULL;
2721 }
2722 return LY_EVALID;
2723 }
Michal Vasko004d3152020-06-11 19:59:22 +02002724 lref->require_instance = type_p->require_instance;
Radek Krejci412ddfa2018-11-23 11:44:11 +01002725 } else if (base) {
2726 /* inherit */
Michal Vasko004d3152020-06-11 19:59:22 +02002727 lref->require_instance = ((struct lysc_type_leafref *)base)->require_instance;
Radek Krejcia3045382018-11-22 14:30:31 +01002728 } else {
2729 /* default is true */
Michal Vasko004d3152020-06-11 19:59:22 +02002730 lref->require_instance = 1;
Radek Krejcia3045382018-11-22 14:30:31 +01002731 }
2732 if (type_p->path) {
Michal Vasko004d3152020-06-11 19:59:22 +02002733 lref->path = lyxp_expr_dup(ctx->ctx, type_p->path);
2734 lref->path_context = module;
Radek Krejcia3045382018-11-22 14:30:31 +01002735 } else if (base) {
Michal Vasko004d3152020-06-11 19:59:22 +02002736 lref->path = lyxp_expr_dup(ctx->ctx, ((struct lysc_type_leafref*)base)->path);
2737 lref->path_context = ((struct lysc_type_leafref*)base)->path_context;
Radek Krejcia3045382018-11-22 14:30:31 +01002738 } else if (tpdfname) {
2739 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type ", tpdfname);
2740 return LY_EVALID;
2741 } else {
2742 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type", "");
2743 free(*type);
2744 *type = NULL;
2745 return LY_EVALID;
2746 }
2747 if (tpdfname) {
2748 type_p->compiled = *type;
2749 *type = calloc(1, sizeof(struct lysc_type_leafref));
2750 }
2751 break;
Radek Krejci16c0f822018-11-16 10:46:10 +01002752 case LY_TYPE_INST:
2753 /* RFC 7950 9.9.3 - require-instance */
2754 if (type_p->flags & LYS_SET_REQINST) {
2755 ((struct lysc_type_instanceid*)(*type))->require_instance = type_p->require_instance;
2756 } else {
2757 /* default is true */
2758 ((struct lysc_type_instanceid*)(*type))->require_instance = 1;
2759 }
2760
2761 if (tpdfname) {
2762 type_p->compiled = *type;
2763 *type = calloc(1, sizeof(struct lysc_type_instanceid));
2764 }
2765 break;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002766 case LY_TYPE_UNION:
2767 un = (struct lysc_type_union*)(*type);
2768
2769 /* RFC 7950 7.4 - type */
2770 if (type_p->types) {
2771 if (base) {
2772 /* only the directly derived union can contain types specification */
2773 if (tpdfname) {
2774 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2775 "Invalid type substatement for the type \"%s\" not directly derived from union built-in type.",
2776 tpdfname);
2777 } else {
2778 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2779 "Invalid type substatement for the type not directly derived from union built-in type.");
2780 free(*type);
2781 *type = NULL;
2782 }
2783 return LY_EVALID;
2784 }
2785 /* compile the type */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002786 LY_ARRAY_CREATE_RET(ctx->ctx, un->types, LY_ARRAY_COUNT(type_p->types), LY_EVALID);
2787 for (LY_ARRAY_COUNT_TYPE u = 0, additional = 0; u < LY_ARRAY_COUNT(type_p->types); ++u) {
Michal Vasko004d3152020-06-11 19:59:22 +02002788 LY_CHECK_RET(lys_compile_type(ctx, context_node_p, context_flags, context_mod, context_name,
2789 &type_p->types[u], &un->types[u + additional], NULL));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002790 if (un->types[u + additional]->basetype == LY_TYPE_UNION) {
2791 /* add space for additional types from the union subtype */
2792 un_aux = (struct lysc_type_union *)un->types[u + additional];
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002793 LY_ARRAY_RESIZE_ERR_RET(ctx->ctx, un->types, (*((uint64_t*)(type_p->types) - 1)) + additional + LY_ARRAY_COUNT(un_aux->types) - 1,
Radek Krejcic4fa0292020-05-14 10:54:49 +02002794 lysc_type_free(ctx->ctx, (struct lysc_type*)un_aux), LY_EMEM);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002795
2796 /* copy subtypes of the subtype union */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002797 for (LY_ARRAY_COUNT_TYPE v = 0; v < LY_ARRAY_COUNT(un_aux->types); ++v) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002798 if (un_aux->types[v]->basetype == LY_TYPE_LEAFREF) {
2799 /* duplicate the whole structure because of the instance-specific path resolving for realtype */
2800 un->types[u + additional] = calloc(1, sizeof(struct lysc_type_leafref));
2801 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 +02002802 lref = (struct lysc_type_leafref *)un->types[u + additional];
2803
2804 lref->basetype = LY_TYPE_LEAFREF;
2805 lref->path = lyxp_expr_dup(ctx->ctx, ((struct lysc_type_leafref*)un_aux->types[v])->path);
2806 lref->refcount = 1;
2807 lref->require_instance = ((struct lysc_type_leafref*)un_aux->types[v])->require_instance;
2808 lref->path_context = ((struct lysc_type_leafref*)un_aux->types[v])->path_context;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002809 /* TODO extensions */
2810
2811 } else {
2812 un->types[u + additional] = un_aux->types[v];
2813 ++un_aux->types[v]->refcount;
2814 }
2815 ++additional;
2816 LY_ARRAY_INCREMENT(un->types);
2817 }
2818 /* compensate u increment in main loop */
2819 --additional;
2820
2821 /* free the replaced union subtype */
2822 lysc_type_free(ctx->ctx, (struct lysc_type*)un_aux);
2823 } else {
2824 LY_ARRAY_INCREMENT(un->types);
2825 }
Radek Krejcicdfecd92018-11-26 11:27:32 +01002826 }
2827 }
2828
2829 if (!base && !type_p->flags) {
2830 /* type derived from union built-in type must contain at least one type */
2831 if (tpdfname) {
2832 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type ", tpdfname);
2833 } else {
2834 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type", "");
2835 free(*type);
2836 *type = NULL;
2837 }
2838 return LY_EVALID;
2839 }
2840
2841 if (tpdfname) {
2842 type_p->compiled = *type;
2843 *type = calloc(1, sizeof(struct lysc_type_union));
2844 }
2845 break;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002846 case LY_TYPE_BOOL:
2847 case LY_TYPE_EMPTY:
2848 case LY_TYPE_UNKNOWN: /* just to complete switch */
2849 break;
2850 }
2851 LY_CHECK_ERR_RET(!(*type), LOGMEM(ctx->ctx), LY_EMEM);
2852done:
2853 return ret;
2854}
2855
Radek Krejcia3045382018-11-22 14:30:31 +01002856/**
2857 * @brief Compile information about the leaf/leaf-list's type.
2858 * @param[in] ctx Compile context.
Radek Krejcicdfecd92018-11-26 11:27:32 +01002859 * @param[in] context_node_p Schema node where the type/typedef is placed to correctly find the base types.
2860 * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2861 * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2862 * @param[in] context_name Name of the context node or referencing typedef for logging.
2863 * @param[in] type_p Parsed type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002864 * @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 +01002865 * @param[out] units Storage for inheriting units value from the typedefs the current type derives from.
Radek Krejcia3045382018-11-22 14:30:31 +01002866 * @return LY_ERR value.
2867 */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002868static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002869lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags,
2870 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p,
2871 struct lysc_type **type, const char **units)
Radek Krejci19a96102018-11-15 13:38:09 +01002872{
2873 LY_ERR ret = LY_SUCCESS;
2874 unsigned int u;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002875 int dummyloops = 0;
Radek Krejci19a96102018-11-15 13:38:09 +01002876 struct type_context {
2877 const struct lysp_tpdf *tpdf;
2878 struct lysp_node *node;
2879 struct lysp_module *mod;
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002880 } *tctx, *tctx_prev = NULL, *tctx_iter;
Radek Krejci19a96102018-11-15 13:38:09 +01002881 LY_DATA_TYPE basetype = LY_TYPE_UNKNOWN;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002882 struct lysc_type *base = NULL, *prev_type;
Radek Krejci19a96102018-11-15 13:38:09 +01002883 struct ly_set tpdf_chain = {0};
Radek Krejci01342af2019-01-03 15:18:08 +01002884 const char *dflt = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02002885 struct lys_module *dflt_mod = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +01002886
2887 (*type) = NULL;
2888
2889 tctx = calloc(1, sizeof *tctx);
2890 LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM);
Radek Krejcie86bf772018-12-14 11:39:53 +01002891 for (ret = lysp_type_find(type_p->name, context_node_p, ctx->mod_def->parsed,
Radek Krejci19a96102018-11-15 13:38:09 +01002892 &basetype, &tctx->tpdf, &tctx->node, &tctx->mod);
2893 ret == LY_SUCCESS;
2894 ret = lysp_type_find(tctx_prev->tpdf->type.name, tctx_prev->node, tctx_prev->mod,
2895 &basetype, &tctx->tpdf, &tctx->node, &tctx->mod)) {
2896 if (basetype) {
2897 break;
2898 }
2899
2900 /* check status */
Radek Krejcicdfecd92018-11-26 11:27:32 +01002901 ret = lysc_check_status(ctx, context_flags, context_mod, context_name,
2902 tctx->tpdf->flags, tctx->mod, tctx->node ? tctx->node->name : tctx->tpdf->name);
Radek Krejci19a96102018-11-15 13:38:09 +01002903 LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup);
2904
Radek Krejcicdfecd92018-11-26 11:27:32 +01002905 if (units && !*units) {
2906 /* inherit units */
2907 DUP_STRING(ctx->ctx, tctx->tpdf->units, *units);
2908 }
Radek Krejci01342af2019-01-03 15:18:08 +01002909 if (!dflt) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002910 /* inherit default */
Radek Krejci01342af2019-01-03 15:18:08 +01002911 dflt = tctx->tpdf->dflt;
Radek Krejcia1911222019-07-22 17:24:50 +02002912 dflt_mod = tctx->mod->mod;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002913 }
Radek Krejci01342af2019-01-03 15:18:08 +01002914 if (dummyloops && (!units || *units) && dflt) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002915 basetype = ((struct type_context*)tpdf_chain.objs[tpdf_chain.count - 1])->tpdf->type.compiled->basetype;
2916 break;
2917 }
2918
Radek Krejci19a96102018-11-15 13:38:09 +01002919 if (tctx->tpdf->type.compiled) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002920 /* it is not necessary to continue, the rest of the chain was already compiled,
2921 * but we still may need to inherit default and units values, so start dummy loops */
Radek Krejci19a96102018-11-15 13:38:09 +01002922 basetype = tctx->tpdf->type.compiled->basetype;
2923 ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST);
Radek Krejci01342af2019-01-03 15:18:08 +01002924 if ((units && !*units) || !dflt) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002925 dummyloops = 1;
2926 goto preparenext;
2927 } else {
2928 tctx = NULL;
2929 break;
2930 }
Radek Krejci19a96102018-11-15 13:38:09 +01002931 }
2932
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002933 /* circular typedef reference detection */
2934 for (u = 0; u < tpdf_chain.count; u++) {
2935 /* local part */
2936 tctx_iter = (struct type_context*)tpdf_chain.objs[u];
2937 if (tctx_iter->mod == tctx->mod && tctx_iter->node == tctx->node && tctx_iter->tpdf == tctx->tpdf) {
2938 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
2939 "Invalid \"%s\" type reference - circular chain of types detected.", tctx->tpdf->name);
2940 free(tctx);
2941 ret = LY_EVALID;
2942 goto cleanup;
2943 }
2944 }
2945 for (u = 0; u < ctx->tpdf_chain.count; u++) {
2946 /* global part for unions corner case */
2947 tctx_iter = (struct type_context*)ctx->tpdf_chain.objs[u];
2948 if (tctx_iter->mod == tctx->mod && tctx_iter->node == tctx->node && tctx_iter->tpdf == tctx->tpdf) {
2949 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
2950 "Invalid \"%s\" type reference - circular chain of types detected.", tctx->tpdf->name);
2951 free(tctx);
2952 ret = LY_EVALID;
2953 goto cleanup;
2954 }
2955 }
2956
Radek Krejci19a96102018-11-15 13:38:09 +01002957 /* store information for the following processing */
2958 ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST);
2959
Radek Krejcicdfecd92018-11-26 11:27:32 +01002960preparenext:
Radek Krejci19a96102018-11-15 13:38:09 +01002961 /* prepare next loop */
2962 tctx_prev = tctx;
2963 tctx = calloc(1, sizeof *tctx);
2964 LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM);
2965 }
2966 free(tctx);
2967
2968 /* allocate type according to the basetype */
2969 switch (basetype) {
2970 case LY_TYPE_BINARY:
2971 *type = calloc(1, sizeof(struct lysc_type_bin));
Radek Krejci19a96102018-11-15 13:38:09 +01002972 break;
2973 case LY_TYPE_BITS:
2974 *type = calloc(1, sizeof(struct lysc_type_bits));
Radek Krejci19a96102018-11-15 13:38:09 +01002975 break;
2976 case LY_TYPE_BOOL:
2977 case LY_TYPE_EMPTY:
2978 *type = calloc(1, sizeof(struct lysc_type));
2979 break;
2980 case LY_TYPE_DEC64:
2981 *type = calloc(1, sizeof(struct lysc_type_dec));
2982 break;
2983 case LY_TYPE_ENUM:
2984 *type = calloc(1, sizeof(struct lysc_type_enum));
Radek Krejci19a96102018-11-15 13:38:09 +01002985 break;
2986 case LY_TYPE_IDENT:
2987 *type = calloc(1, sizeof(struct lysc_type_identityref));
2988 break;
2989 case LY_TYPE_INST:
2990 *type = calloc(1, sizeof(struct lysc_type_instanceid));
2991 break;
2992 case LY_TYPE_LEAFREF:
2993 *type = calloc(1, sizeof(struct lysc_type_leafref));
2994 break;
2995 case LY_TYPE_STRING:
2996 *type = calloc(1, sizeof(struct lysc_type_str));
Radek Krejci19a96102018-11-15 13:38:09 +01002997 break;
2998 case LY_TYPE_UNION:
2999 *type = calloc(1, sizeof(struct lysc_type_union));
3000 break;
3001 case LY_TYPE_INT8:
3002 case LY_TYPE_UINT8:
3003 case LY_TYPE_INT16:
3004 case LY_TYPE_UINT16:
3005 case LY_TYPE_INT32:
3006 case LY_TYPE_UINT32:
3007 case LY_TYPE_INT64:
3008 case LY_TYPE_UINT64:
3009 *type = calloc(1, sizeof(struct lysc_type_num));
Radek Krejci19a96102018-11-15 13:38:09 +01003010 break;
3011 case LY_TYPE_UNKNOWN:
3012 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3013 "Referenced type \"%s\" not found.", tctx_prev ? tctx_prev->tpdf->type.name : type_p->name);
3014 ret = LY_EVALID;
3015 goto cleanup;
3016 }
3017 LY_CHECK_ERR_GOTO(!(*type), LOGMEM(ctx->ctx), cleanup);
Radek Krejcicdfecd92018-11-26 11:27:32 +01003018 if (~type_substmt_map[basetype] & type_p->flags) {
Radek Krejci19a96102018-11-15 13:38:09 +01003019 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type restrictions for %s type.",
3020 ly_data_type2str[basetype]);
3021 free(*type);
3022 (*type) = NULL;
3023 ret = LY_EVALID;
3024 goto cleanup;
3025 }
3026
3027 /* get restrictions from the referred typedefs */
3028 for (u = tpdf_chain.count - 1; u + 1 > 0; --u) {
3029 tctx = (struct type_context*)tpdf_chain.objs[u];
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003030
3031 /* remember the typedef context for circular check */
3032 ly_set_add(&ctx->tpdf_chain, tctx, LY_SET_OPT_USEASLIST);
3033
Radek Krejci43699232018-11-23 14:59:46 +01003034 if (tctx->tpdf->type.compiled) {
Radek Krejci19a96102018-11-15 13:38:09 +01003035 base = tctx->tpdf->type.compiled;
3036 continue;
Radek Krejci43699232018-11-23 14:59:46 +01003037 } else if (basetype != LY_TYPE_LEAFREF && (u != tpdf_chain.count - 1) && !(tctx->tpdf->type.flags)) {
Radek Krejci19a96102018-11-15 13:38:09 +01003038 /* no change, just use the type information from the base */
3039 base = ((struct lysp_tpdf*)tctx->tpdf)->type.compiled = ((struct type_context*)tpdf_chain.objs[u + 1])->tpdf->type.compiled;
3040 ++base->refcount;
3041 continue;
3042 }
3043
3044 ++(*type)->refcount;
Radek Krejci43699232018-11-23 14:59:46 +01003045 if (~type_substmt_map[basetype] & tctx->tpdf->type.flags) {
3046 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type \"%s\" restriction(s) for %s type.",
3047 tctx->tpdf->name, ly_data_type2str[basetype]);
3048 ret = LY_EVALID;
3049 goto cleanup;
3050 } else if (basetype == LY_TYPE_EMPTY && tctx->tpdf->dflt) {
3051 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3052 "Invalid type \"%s\" - \"empty\" type must not have a default value (%s).",
3053 tctx->tpdf->name, tctx->tpdf->dflt);
3054 ret = LY_EVALID;
3055 goto cleanup;
3056 }
3057
Radek Krejci19a96102018-11-15 13:38:09 +01003058 (*type)->basetype = basetype;
Radek Krejcie7b95092019-05-15 11:03:07 +02003059 /* TODO user type plugins */
3060 (*type)->plugin = &ly_builtin_type_plugins[basetype];
Radek Krejcic5c27e52018-11-15 14:38:11 +01003061 prev_type = *type;
Radek Krejcicdfecd92018-11-26 11:27:32 +01003062 ret = lys_compile_type_(ctx, tctx->node, tctx->tpdf->flags, tctx->mod, tctx->tpdf->name, &((struct lysp_tpdf*)tctx->tpdf)->type,
Radek Krejci96a0bfd2018-11-22 15:25:06 +01003063 basetype & (LY_TYPE_LEAFREF | LY_TYPE_UNION) ? lysp_find_module(ctx->ctx, tctx->mod) : NULL,
Radek Krejciec4da802019-05-02 13:02:41 +02003064 basetype, tctx->tpdf->name, base, type);
Radek Krejcic5c27e52018-11-15 14:38:11 +01003065 LY_CHECK_GOTO(ret, cleanup);
3066 base = prev_type;
Radek Krejci19a96102018-11-15 13:38:09 +01003067 }
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003068 /* remove the processed typedef contexts from the stack for circular check */
3069 ctx->tpdf_chain.count = ctx->tpdf_chain.count - tpdf_chain.count;
Radek Krejci19a96102018-11-15 13:38:09 +01003070
Radek Krejcic5c27e52018-11-15 14:38:11 +01003071 /* process the type definition in leaf */
Radek Krejcicdfecd92018-11-26 11:27:32 +01003072 if (type_p->flags || !base || basetype == LY_TYPE_LEAFREF) {
Radek Krejcia3045382018-11-22 14:30:31 +01003073 /* get restrictions from the node itself */
Radek Krejci19a96102018-11-15 13:38:09 +01003074 (*type)->basetype = basetype;
Radek Krejcie7b95092019-05-15 11:03:07 +02003075 /* TODO user type plugins */
3076 (*type)->plugin = &ly_builtin_type_plugins[basetype];
Radek Krejci19a96102018-11-15 13:38:09 +01003077 ++(*type)->refcount;
Radek Krejciec4da802019-05-02 13:02:41 +02003078 ret = lys_compile_type_(ctx, context_node_p, context_flags, context_mod, context_name, type_p, ctx->mod_def, basetype, NULL, base, type);
Radek Krejcic5c27e52018-11-15 14:38:11 +01003079 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci90b148f2020-05-06 17:49:40 +02003080 } else if (basetype != LY_TYPE_BOOL && basetype != LY_TYPE_EMPTY) {
Radek Krejci19a96102018-11-15 13:38:09 +01003081 /* no specific restriction in leaf's type definition, copy from the base */
3082 free(*type);
3083 (*type) = base;
3084 ++(*type)->refcount;
Radek Krejci19a96102018-11-15 13:38:09 +01003085 }
Radek Krejcia1911222019-07-22 17:24:50 +02003086 if (dflt && !(*type)->dflt) {
3087 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003088 (*type)->dflt_mod = dflt_mod;
Radek Krejcia1911222019-07-22 17:24:50 +02003089 (*type)->dflt = calloc(1, sizeof *(*type)->dflt);
3090 (*type)->dflt->realtype = (*type);
3091 ret = (*type)->plugin->store(ctx->ctx, (*type), dflt, strlen(dflt),
3092 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003093 lys_resolve_prefix, (void*)(*type)->dflt_mod, LYD_XML, NULL, NULL, (*type)->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02003094 if (err) {
3095 ly_err_print(err);
3096 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3097 "Invalid type's default value \"%s\" which does not fit the type (%s).", dflt, err->msg);
3098 ly_err_free(err);
3099 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02003100 if (ret == LY_EINCOMPLETE) {
3101 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02003102 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, NULL, (*type)->dflt, (*type)->dflt_mod), cleanup);
Radek Krejci1c0c3442019-07-23 16:08:47 +02003103
3104 /* but in general result is so far ok */
3105 ret = LY_SUCCESS;
3106 }
Radek Krejcia1911222019-07-22 17:24:50 +02003107 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci01342af2019-01-03 15:18:08 +01003108 }
Radek Krejci19a96102018-11-15 13:38:09 +01003109
Radek Krejci0935f412019-08-20 16:15:18 +02003110 COMPILE_EXTS_GOTO(ctx, type_p->exts, (*type)->exts, (*type), LYEXT_PAR_TYPE, ret, cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01003111
3112cleanup:
3113 ly_set_erase(&tpdf_chain, free);
3114 return ret;
3115}
3116
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003117/**
3118 * @brief Compile status information of the given node.
3119 *
3120 * To simplify getting status of the node, the flags are set following inheritance rules, so all the nodes
3121 * has the status correctly set during the compilation.
3122 *
3123 * @param[in] ctx Compile context
3124 * @param[in,out] node_flags Flags of the compiled node which status is supposed to be resolved.
3125 * If the status was set explicitly on the node, it is already set in the flags value and we just check
3126 * the compatibility with the parent's status value.
3127 * @param[in] parent_flags Flags of the parent node to check/inherit the status value.
3128 * @return LY_ERR value.
3129 */
3130static LY_ERR
3131lys_compile_status(struct lysc_ctx *ctx, uint16_t *node_flags, uint16_t parent_flags)
3132{
3133 /* status - it is not inherited by specification, but it does not make sense to have
3134 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
3135 if (!((*node_flags) & LYS_STATUS_MASK)) {
3136 if (parent_flags & (LYS_STATUS_DEPRC | LYS_STATUS_OBSLT)) {
3137 if ((parent_flags & 0x3) != 0x3) {
3138 /* do not print the warning when inheriting status from uses - the uses_status value has a special
3139 * combination of bits (0x3) which marks the uses_status value */
3140 LOGWRN(ctx->ctx, "Missing explicit \"%s\" status that was already specified in parent, inheriting.",
3141 (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete");
3142 }
3143 (*node_flags) |= parent_flags & LYS_STATUS_MASK;
3144 } else {
3145 (*node_flags) |= LYS_STATUS_CURR;
3146 }
3147 } else if (parent_flags & LYS_STATUS_MASK) {
3148 /* check status compatibility with the parent */
3149 if ((parent_flags & LYS_STATUS_MASK) > ((*node_flags) & LYS_STATUS_MASK)) {
3150 if ((*node_flags) & LYS_STATUS_CURR) {
3151 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3152 "A \"current\" status is in conflict with the parent's \"%s\" status.",
3153 (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete");
3154 } else { /* LYS_STATUS_DEPRC */
3155 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3156 "A \"deprecated\" status is in conflict with the parent's \"obsolete\" status.");
3157 }
3158 return LY_EVALID;
3159 }
3160 }
3161 return LY_SUCCESS;
3162}
3163
Radek Krejci8cce8532019-03-05 11:27:45 +01003164/**
3165 * @brief Check uniqness of the node/action/notification name.
3166 *
3167 * Data nodes, actions/RPCs and Notifications are stored separately (in distinguish lists) in the schema
3168 * structures, but they share the namespace so we need to check their name collisions.
3169 *
3170 * @param[in] ctx Compile context.
3171 * @param[in] children List (linked list) of data nodes to go through.
3172 * @param[in] actions List (sized array) of actions or RPCs to go through.
3173 * @param[in] notifs List (sized array) of Notifications to go through.
3174 * @param[in] name Name of the item to find in the given lists.
3175 * @param[in] exclude Pointer to an object to exclude from the name checking - for the case that the object
3176 * with the @p name being checked is already inserted into one of the list so we need to skip it when searching for duplicity.
3177 * @return LY_SUCCESS in case of unique name, LY_EEXIST otherwise.
3178 */
3179static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02003180lys_compile_node_uniqness(struct lysc_ctx *ctx, const struct lysc_node *children, const struct lysc_action *actions,
3181 const struct lysc_notif *notifs, const char *name, void *exclude)
Radek Krejci8cce8532019-03-05 11:27:45 +01003182{
3183 const struct lysc_node *iter;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003184 LY_ARRAY_COUNT_TYPE u;
Radek Krejci8cce8532019-03-05 11:27:45 +01003185
3186 LY_LIST_FOR(children, iter) {
3187 if (iter != exclude && iter->module == ctx->mod && !strcmp(name, iter->name)) {
3188 goto error;
3189 }
3190 }
3191 LY_ARRAY_FOR(actions, u) {
3192 if (&actions[u] != exclude && actions[u].module == ctx->mod && !strcmp(name, actions[u].name)) {
3193 goto error;
3194 }
3195 }
3196 LY_ARRAY_FOR(notifs, u) {
3197 if (&notifs[u] != exclude && notifs[u].module == ctx->mod && !strcmp(name, notifs[u].name)) {
3198 goto error;
3199 }
3200 }
3201 return LY_SUCCESS;
3202error:
Michal Vaskoa3881362020-01-21 15:57:35 +01003203 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, name, "data definition/RPC/action/notification");
Radek Krejci8cce8532019-03-05 11:27:45 +01003204 return LY_EEXIST;
3205}
3206
Radek Krejciec4da802019-05-02 13:02:41 +02003207static LY_ERR lys_compile_node(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *parent, uint16_t uses_status);
Radek Krejci19a96102018-11-15 13:38:09 +01003208
Radek Krejcia3045382018-11-22 14:30:31 +01003209/**
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003210 * @brief Compile parsed RPC/action schema node information.
3211 * @param[in] ctx Compile context
Radek Krejci43981a32019-04-12 09:44:11 +02003212 * @param[in] action_p Parsed RPC/action schema node.
Radek Krejci43981a32019-04-12 09:44:11 +02003213 * @param[in] parent Parent node of the action, NULL in case of RPC (top-level action)
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003214 * @param[in,out] action Prepared (empty) compiled action structure to fill.
3215 * @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).
3216 * Zero means no uses, non-zero value with no status bit set mean the default status.
3217 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3218 */
3219static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003220lys_compile_action(struct lysc_ctx *ctx, struct lysp_action *action_p,
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003221 struct lysc_node *parent, struct lysc_action *action, uint16_t uses_status)
3222{
3223 LY_ERR ret = LY_SUCCESS;
3224 struct lysp_node *child_p;
3225 unsigned int u;
Radek Krejciec4da802019-05-02 13:02:41 +02003226 int opt_prev = ctx->options;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003227
Radek Krejci327de162019-06-14 12:52:07 +02003228 lysc_update_path(ctx, parent, action_p->name);
3229
Radek Krejci8cce8532019-03-05 11:27:45 +01003230 if (lys_compile_node_uniqness(ctx, parent ? lysc_node_children(parent, 0) : ctx->mod->compiled->data,
3231 parent ? lysc_node_actions(parent) : ctx->mod->compiled->rpcs,
3232 parent ? lysc_node_notifs(parent) : ctx->mod->compiled->notifs,
3233 action_p->name, action)) {
3234 return LY_EVALID;
3235 }
3236
Radek Krejciec4da802019-05-02 13:02:41 +02003237 if (ctx->options & (LYSC_OPT_RPC_MASK | LYSC_OPT_NOTIFICATION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +01003238 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejcifc11bd72019-04-11 16:00:05 +02003239 "Action \"%s\" is placed inside %s.", action_p->name,
Michal Vaskoa3881362020-01-21 15:57:35 +01003240 ctx->options & LYSC_OPT_RPC_MASK ? "another RPC/action" : "notification");
Radek Krejci05b774b2019-02-25 13:26:18 +01003241 return LY_EVALID;
3242 }
3243
Michal Vasko1bf09392020-03-27 12:38:10 +01003244 action->nodetype = parent ? LYS_ACTION : LYS_RPC;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003245 action->module = ctx->mod;
3246 action->parent = parent;
Radek Krejciec4da802019-05-02 13:02:41 +02003247 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003248 action->sp = action_p;
3249 }
3250 action->flags = action_p->flags & LYS_FLAGS_COMPILED_MASK;
3251
3252 /* status - it is not inherited by specification, but it does not make sense to have
3253 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
Michal Vaskocc048b22020-03-27 15:52:38 +01003254 LY_CHECK_RET(lys_compile_status(ctx, &action->flags, uses_status ? uses_status : (parent ? parent->flags : 0)));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003255
3256 DUP_STRING(ctx->ctx, action_p->name, action->name);
3257 DUP_STRING(ctx->ctx, action_p->dsc, action->dsc);
3258 DUP_STRING(ctx->ctx, action_p->ref, action->ref);
Radek Krejciec4da802019-05-02 13:02:41 +02003259 COMPILE_ARRAY_GOTO(ctx, action_p->iffeatures, action->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejci0935f412019-08-20 16:15:18 +02003260 COMPILE_EXTS_GOTO(ctx, action_p->exts, action->exts, action, LYEXT_PAR_NODE, ret, cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003261
3262 /* input */
Radek Krejci327de162019-06-14 12:52:07 +02003263 lysc_update_path(ctx, (struct lysc_node*)action, "input");
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003264 COMPILE_ARRAY_GOTO(ctx, action_p->input.musts, action->input.musts, u, lys_compile_must, ret, cleanup);
Radek Krejci0935f412019-08-20 16:15:18 +02003265 COMPILE_EXTS_GOTO(ctx, action_p->input.exts, action->input_exts, &action->input, LYEXT_PAR_INPUT, ret, cleanup);
Radek Krejciec4da802019-05-02 13:02:41 +02003266 ctx->options |= LYSC_OPT_RPC_INPUT;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003267 LY_LIST_FOR(action_p->input.data, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003268 LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node*)action, uses_status));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003269 }
Radek Krejci327de162019-06-14 12:52:07 +02003270 lysc_update_path(ctx, NULL, NULL);
Radek Krejciec4da802019-05-02 13:02:41 +02003271 ctx->options = opt_prev;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003272
3273 /* output */
Radek Krejci327de162019-06-14 12:52:07 +02003274 lysc_update_path(ctx, (struct lysc_node*)action, "output");
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003275 COMPILE_ARRAY_GOTO(ctx, action_p->output.musts, action->output.musts, u, lys_compile_must, ret, cleanup);
Radek Krejci0935f412019-08-20 16:15:18 +02003276 COMPILE_EXTS_GOTO(ctx, action_p->output.exts, action->output_exts, &action->output, LYEXT_PAR_OUTPUT, ret, cleanup);
Radek Krejciec4da802019-05-02 13:02:41 +02003277 ctx->options |= LYSC_OPT_RPC_OUTPUT;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003278 LY_LIST_FOR(action_p->output.data, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003279 LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node*)action, uses_status));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003280 }
Radek Krejci327de162019-06-14 12:52:07 +02003281 lysc_update_path(ctx, NULL, NULL);
Radek Krejci327de162019-06-14 12:52:07 +02003282 lysc_update_path(ctx, NULL, NULL);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003283
3284 if ((action_p->input.musts || action_p->output.musts) && !(ctx->options & LYSC_OPT_GROUPING)) {
3285 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003286 ly_set_add(&ctx->xpath, action, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003287 }
3288
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003289cleanup:
Radek Krejciec4da802019-05-02 13:02:41 +02003290 ctx->options = opt_prev;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003291 return ret;
3292}
3293
3294/**
Radek Krejci43981a32019-04-12 09:44:11 +02003295 * @brief Compile parsed Notification schema node information.
Radek Krejcifc11bd72019-04-11 16:00:05 +02003296 * @param[in] ctx Compile context
Radek Krejci43981a32019-04-12 09:44:11 +02003297 * @param[in] notif_p Parsed Notification schema node.
Radek Krejci43981a32019-04-12 09:44:11 +02003298 * @param[in] parent Parent node of the Notification, NULL in case of top-level Notification
3299 * @param[in,out] notif Prepared (empty) compiled notification structure to fill.
3300 * @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 +02003301 * Zero means no uses, non-zero value with no status bit set mean the default status.
3302 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3303 */
3304static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003305lys_compile_notif(struct lysc_ctx *ctx, struct lysp_notif *notif_p,
Radek Krejcifc11bd72019-04-11 16:00:05 +02003306 struct lysc_node *parent, struct lysc_notif *notif, uint16_t uses_status)
3307{
3308 LY_ERR ret = LY_SUCCESS;
3309 struct lysp_node *child_p;
3310 unsigned int u;
Radek Krejciec4da802019-05-02 13:02:41 +02003311 int opt_prev = ctx->options;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003312
Radek Krejci327de162019-06-14 12:52:07 +02003313 lysc_update_path(ctx, parent, notif_p->name);
3314
Radek Krejcifc11bd72019-04-11 16:00:05 +02003315 if (lys_compile_node_uniqness(ctx, parent ? lysc_node_children(parent, 0) : ctx->mod->compiled->data,
3316 parent ? lysc_node_actions(parent) : ctx->mod->compiled->rpcs,
3317 parent ? lysc_node_notifs(parent) : ctx->mod->compiled->notifs,
3318 notif_p->name, notif)) {
3319 return LY_EVALID;
3320 }
3321
Radek Krejciec4da802019-05-02 13:02:41 +02003322 if (ctx->options & (LYSC_OPT_RPC_MASK | LYSC_OPT_NOTIFICATION)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02003323 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3324 "Notification \"%s\" is placed inside %s.", notif_p->name,
Michal Vaskoa3881362020-01-21 15:57:35 +01003325 ctx->options & LYSC_OPT_RPC_MASK ? "RPC/action" : "another notification");
Radek Krejcifc11bd72019-04-11 16:00:05 +02003326 return LY_EVALID;
3327 }
3328
3329 notif->nodetype = LYS_NOTIF;
3330 notif->module = ctx->mod;
3331 notif->parent = parent;
Radek Krejciec4da802019-05-02 13:02:41 +02003332 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02003333 notif->sp = notif_p;
3334 }
3335 notif->flags = notif_p->flags & LYS_FLAGS_COMPILED_MASK;
3336
3337 /* status - it is not inherited by specification, but it does not make sense to have
3338 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
3339 LY_CHECK_RET(lys_compile_status(ctx, &notif->flags, uses_status ? uses_status : (parent ? parent->flags : 0)));
3340
3341 DUP_STRING(ctx->ctx, notif_p->name, notif->name);
3342 DUP_STRING(ctx->ctx, notif_p->dsc, notif->dsc);
3343 DUP_STRING(ctx->ctx, notif_p->ref, notif->ref);
Radek Krejciec4da802019-05-02 13:02:41 +02003344 COMPILE_ARRAY_GOTO(ctx, notif_p->iffeatures, notif->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003345 COMPILE_ARRAY_GOTO(ctx, notif_p->musts, notif->musts, u, lys_compile_must, ret, cleanup);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003346 if (notif_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3347 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003348 ly_set_add(&ctx->xpath, notif, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003349 }
Radek Krejci0935f412019-08-20 16:15:18 +02003350 COMPILE_EXTS_GOTO(ctx, notif_p->exts, notif->exts, notif, LYEXT_PAR_NODE, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02003351
Radek Krejciec4da802019-05-02 13:02:41 +02003352 ctx->options |= LYSC_OPT_NOTIFICATION;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003353 LY_LIST_FOR(notif_p->data, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003354 LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node*)notif, uses_status));
Radek Krejcifc11bd72019-04-11 16:00:05 +02003355 }
3356
Radek Krejci327de162019-06-14 12:52:07 +02003357 lysc_update_path(ctx, NULL, NULL);
Radek Krejcifc11bd72019-04-11 16:00:05 +02003358cleanup:
Radek Krejciec4da802019-05-02 13:02:41 +02003359 ctx->options = opt_prev;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003360 return ret;
3361}
3362
3363/**
Radek Krejcia3045382018-11-22 14:30:31 +01003364 * @brief Compile parsed container node information.
3365 * @param[in] ctx Compile context
3366 * @param[in] node_p Parsed container node.
Radek Krejcia3045382018-11-22 14:30:31 +01003367 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3368 * is enriched with the container-specific information.
3369 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3370 */
Radek Krejci19a96102018-11-15 13:38:09 +01003371static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003372lys_compile_node_container(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci19a96102018-11-15 13:38:09 +01003373{
3374 struct lysp_node_container *cont_p = (struct lysp_node_container*)node_p;
3375 struct lysc_node_container *cont = (struct lysc_node_container*)node;
3376 struct lysp_node *child_p;
Michal Vaskoba417ac2020-08-06 14:48:20 +02003377 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01003378 LY_ERR ret = LY_SUCCESS;
3379
Radek Krejcife909632019-02-12 15:34:42 +01003380 if (cont_p->presence) {
Michal Vaskoba417ac2020-08-06 14:48:20 +02003381 /* explicit presence */
Radek Krejcife909632019-02-12 15:34:42 +01003382 cont->flags |= LYS_PRESENCE;
Michal Vaskoba417ac2020-08-06 14:48:20 +02003383 } else if (cont_p->musts) {
3384 /* container with a must condition */
3385 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a \"must\" condition.", cont_p->name);
3386 cont->flags |= LYS_PRESENCE;
3387 } else if (cont_p->parent) {
3388 if (cont_p->parent->nodetype == LYS_CHOICE) {
3389 /* container is an implicit case, so its existence decides the existence of the whole case */
3390 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it is an implicit case of choice \"%s\".",
3391 cont_p->name, cont_p->parent->name);
3392 cont->flags |= LYS_PRESENCE;
3393 } else if ((cont_p->parent->nodetype == LYS_CASE)
3394 && (((struct lysp_node_case *)cont_p->parent)->child == node_p) && !cont_p->next) {
3395 /* container is the only node in a case, so its existence decides the existence of the whole case */
3396 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it is the only data node of case \"%s\".",
3397 cont_p->name, cont_p->parent->name);
3398 cont->flags |= LYS_PRESENCE;
3399 }
Radek Krejcife909632019-02-12 15:34:42 +01003400 }
3401
Michal Vaskoba417ac2020-08-06 14:48:20 +02003402 /* more cases when the container has meaning but is kept NP for convenience:
3403 * - when condition
3404 * - direct child action/notification
3405 */
3406
Radek Krejci19a96102018-11-15 13:38:09 +01003407 LY_LIST_FOR(cont_p->child, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003408 LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0));
Radek Krejci19a96102018-11-15 13:38:09 +01003409 }
3410
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003411 COMPILE_ARRAY_GOTO(ctx, cont_p->musts, cont->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003412 if (cont_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3413 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003414 ly_set_add(&ctx->xpath, cont, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003415 }
Radek Krejciec4da802019-05-02 13:02:41 +02003416 COMPILE_ARRAY1_GOTO(ctx, cont_p->actions, cont->actions, node, u, lys_compile_action, 0, ret, done);
3417 COMPILE_ARRAY1_GOTO(ctx, cont_p->notifs, cont->notifs, node, u, lys_compile_notif, 0, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +01003418
3419done:
3420 return ret;
3421}
3422
Radek Krejci33f72892019-02-21 10:36:58 +01003423/*
3424 * @brief Compile type in leaf/leaf-list node and do all the necessary checks.
3425 * @param[in] ctx Compile context.
3426 * @param[in] context_node Schema node where the type/typedef is placed to correctly find the base types.
3427 * @param[in] type_p Parsed type to compile.
Radek Krejci33f72892019-02-21 10:36:58 +01003428 * @param[in,out] leaf Compiled leaf structure (possibly cast leaf-list) to provide node information and to store the compiled type information.
3429 * @return LY_ERR value.
3430 */
3431static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003432lys_compile_node_type(struct lysc_ctx *ctx, struct lysp_node *context_node, struct lysp_type *type_p, struct lysc_node_leaf *leaf)
Radek Krejci33f72892019-02-21 10:36:58 +01003433{
Radek Krejci33f72892019-02-21 10:36:58 +01003434 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)leaf;
3435
Radek Krejciec4da802019-05-02 13:02:41 +02003436 LY_CHECK_RET(lys_compile_type(ctx, context_node, leaf->flags, ctx->mod_def->parsed, leaf->name, type_p, &leaf->type,
Radek Krejci33f72892019-02-21 10:36:58 +01003437 leaf->units ? NULL : &leaf->units));
3438 if (leaf->nodetype == LYS_LEAFLIST) {
3439 if (llist->type->dflt && !llist->dflts && !llist->min) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003440 LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts_mods, 1, LY_EMEM);
3441 llist->dflts_mods[0] = llist->type->dflt_mod;
Radek Krejci33f72892019-02-21 10:36:58 +01003442 LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts, 1, LY_EMEM);
Radek Krejcia1911222019-07-22 17:24:50 +02003443 llist->dflts[0] = calloc(1, sizeof *llist->dflts[0]);
3444 llist->dflts[0]->realtype = llist->type->dflt->realtype;
3445 llist->dflts[0]->realtype->plugin->duplicate(ctx->ctx, llist->type->dflt, llist->dflts[0]);
3446 llist->dflts[0]->realtype->refcount++;
Radek Krejci33f72892019-02-21 10:36:58 +01003447 LY_ARRAY_INCREMENT(llist->dflts);
3448 }
3449 } else {
3450 if (leaf->type->dflt && !leaf->dflt && !(leaf->flags & LYS_MAND_TRUE)) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003451 leaf->dflt_mod = leaf->type->dflt_mod;
Radek Krejcia1911222019-07-22 17:24:50 +02003452 leaf->dflt = calloc(1, sizeof *leaf->dflt);
3453 leaf->dflt->realtype = leaf->type->dflt->realtype;
3454 leaf->dflt->realtype->plugin->duplicate(ctx->ctx, leaf->type->dflt, leaf->dflt);
3455 leaf->dflt->realtype->refcount++;
Radek Krejci33f72892019-02-21 10:36:58 +01003456 }
3457 }
3458 if (leaf->type->basetype == LY_TYPE_LEAFREF) {
3459 /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */
Michal Vasko004d3152020-06-11 19:59:22 +02003460 ly_set_add(&ctx->leafrefs, leaf, 0);
Radek Krejci33f72892019-02-21 10:36:58 +01003461 } else if (leaf->type->basetype == LY_TYPE_UNION) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003462 LY_ARRAY_COUNT_TYPE u;
Radek Krejci33f72892019-02-21 10:36:58 +01003463 LY_ARRAY_FOR(((struct lysc_type_union*)leaf->type)->types, u) {
3464 if (((struct lysc_type_union*)leaf->type)->types[u]->basetype == LY_TYPE_LEAFREF) {
3465 /* store to validate the path in the current context at the end of schema compiling when all the nodes are present */
Michal Vasko004d3152020-06-11 19:59:22 +02003466 ly_set_add(&ctx->leafrefs, leaf, 0);
Radek Krejci33f72892019-02-21 10:36:58 +01003467 }
3468 }
3469 } else if (leaf->type->basetype == LY_TYPE_EMPTY) {
Radek Krejci33f72892019-02-21 10:36:58 +01003470 if (leaf->nodetype == LYS_LEAFLIST && ctx->mod_def->version < LYS_VERSION_1_1) {
3471 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3472 "Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules.");
3473 return LY_EVALID;
3474 }
3475 }
3476
Radek Krejci33f72892019-02-21 10:36:58 +01003477 return LY_SUCCESS;
3478}
3479
Radek Krejcia3045382018-11-22 14:30:31 +01003480/**
3481 * @brief Compile parsed leaf node information.
3482 * @param[in] ctx Compile context
3483 * @param[in] node_p Parsed leaf node.
Radek Krejcia3045382018-11-22 14:30:31 +01003484 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3485 * is enriched with the leaf-specific information.
3486 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3487 */
Radek Krejci19a96102018-11-15 13:38:09 +01003488static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003489lys_compile_node_leaf(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci19a96102018-11-15 13:38:09 +01003490{
3491 struct lysp_node_leaf *leaf_p = (struct lysp_node_leaf*)node_p;
3492 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
Michal Vasko7c8439f2020-08-05 13:25:19 +02003493 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01003494 LY_ERR ret = LY_SUCCESS;
3495
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003496 COMPILE_ARRAY_GOTO(ctx, leaf_p->musts, leaf->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003497 if (leaf_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3498 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003499 ly_set_add(&ctx->xpath, leaf, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003500 }
Radek Krejciccd20f12019-02-15 14:12:27 +01003501 if (leaf_p->units) {
3502 leaf->units = lydict_insert(ctx->ctx, leaf_p->units, 0);
3503 leaf->flags |= LYS_SET_UNITS;
3504 }
Radek Krejcia1911222019-07-22 17:24:50 +02003505
3506 /* the dflt member is just filled to avoid getting the default value from the type */
3507 leaf->dflt = (void*)leaf_p->dflt;
3508 ret = lys_compile_node_type(ctx, node_p, &leaf_p->type, leaf);
Radek Krejci812a5bf2019-09-09 09:18:05 +02003509 if (ret) {
3510 leaf->dflt = NULL;
3511 return ret;
3512 }
Radek Krejcia1911222019-07-22 17:24:50 +02003513
Radek Krejciccd20f12019-02-15 14:12:27 +01003514 if (leaf_p->dflt) {
Radek Krejcia1911222019-07-22 17:24:50 +02003515 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003516 leaf->dflt_mod = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02003517 leaf->dflt = calloc(1, sizeof *leaf->dflt);
3518 leaf->dflt->realtype = leaf->type;
3519 ret = leaf->type->plugin->store(ctx->ctx, leaf->type, leaf_p->dflt, strlen(leaf_p->dflt),
3520 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02003521 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, node, NULL, leaf->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02003522 leaf->dflt->realtype->refcount++;
3523 if (err) {
3524 ly_err_print(err);
3525 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3526 "Invalid leaf's default value \"%s\" which does not fit the type (%s).", leaf_p->dflt, err->msg);
3527 ly_err_free(err);
3528 }
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003529 if (ret == LY_EINCOMPLETE) {
Radek Krejci1c0c3442019-07-23 16:08:47 +02003530 /* postpone default compilation when the tree is complete */
Radek Krejcib5bc93e2019-09-09 09:11:23 +02003531 LY_CHECK_RET(lysc_incomplete_dflts_add(ctx, node, leaf->dflt, leaf->dflt_mod));
Radek Krejci1c0c3442019-07-23 16:08:47 +02003532
3533 /* but in general result is so far ok */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003534 ret = LY_SUCCESS;
3535 }
Radek Krejcib5bc93e2019-09-09 09:11:23 +02003536 LY_CHECK_RET(ret);
Radek Krejci76b3e962018-12-14 17:01:25 +01003537 leaf->flags |= LYS_SET_DFLT;
3538 }
Radek Krejci43699232018-11-23 14:59:46 +01003539
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01003540
Radek Krejci19a96102018-11-15 13:38:09 +01003541done:
3542 return ret;
3543}
3544
Radek Krejcia3045382018-11-22 14:30:31 +01003545/**
Radek Krejci0e5d8382018-11-28 16:37:53 +01003546 * @brief Compile parsed leaf-list node information.
3547 * @param[in] ctx Compile context
3548 * @param[in] node_p Parsed leaf-list node.
Radek Krejci0e5d8382018-11-28 16:37:53 +01003549 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3550 * is enriched with the leaf-list-specific information.
3551 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3552 */
3553static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003554lys_compile_node_leaflist(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci0e5d8382018-11-28 16:37:53 +01003555{
3556 struct lysp_node_leaflist *llist_p = (struct lysp_node_leaflist*)node_p;
3557 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)node;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003558 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003559 LY_ERR ret = LY_SUCCESS;
3560
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003561 COMPILE_ARRAY_GOTO(ctx, llist_p->musts, llist->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003562 if (llist_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3563 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003564 ly_set_add(&ctx->xpath, llist, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003565 }
Radek Krejciccd20f12019-02-15 14:12:27 +01003566 if (llist_p->units) {
3567 llist->units = lydict_insert(ctx->ctx, llist_p->units, 0);
3568 llist->flags |= LYS_SET_UNITS;
3569 }
Radek Krejci0e5d8382018-11-28 16:37:53 +01003570
Radek Krejcia1911222019-07-22 17:24:50 +02003571 /* the dflts member is just filled to avoid getting the default value from the type */
3572 llist->dflts = (void*)llist_p->dflts;
3573 ret = lys_compile_node_type(ctx, node_p, &llist_p->type, (struct lysc_node_leaf*)llist);
Michal Vasko6a044b22020-01-15 12:25:39 +01003574 if (ret != LY_SUCCESS) {
3575 /* make sure the defaults are freed correctly */
3576 if (llist_p->dflts) {
3577 llist->dflts = NULL;
3578 }
3579 return ret;
3580 }
3581
Radek Krejci0e5d8382018-11-28 16:37:53 +01003582 if (llist_p->dflts) {
Radek Krejcia1911222019-07-22 17:24:50 +02003583 llist->dflts = NULL; /* reset the temporary llist_p->dflts */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003584 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts_mods, LY_ARRAY_COUNT(llist_p->dflts), ret, done);
3585 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_COUNT(llist_p->dflts), ret, done);
Radek Krejci0e5d8382018-11-28 16:37:53 +01003586 LY_ARRAY_FOR(llist_p->dflts, u) {
Radek Krejcia1911222019-07-22 17:24:50 +02003587 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003588 LY_ARRAY_INCREMENT(llist->dflts_mods);
3589 llist->dflts_mods[u] = ctx->mod_def;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003590 LY_ARRAY_INCREMENT(llist->dflts);
Radek Krejcia1911222019-07-22 17:24:50 +02003591 llist->dflts[u] = calloc(1, sizeof *llist->dflts[u]);
3592 llist->dflts[u]->realtype = llist->type;
3593 ret = llist->type->plugin->store(ctx->ctx, llist->type, llist_p->dflts[u], strlen(llist_p->dflts[u]),
3594 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02003595 lys_resolve_prefix, (void*)llist->dflts_mods[u], LYD_XML, node, NULL, llist->dflts[u], NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02003596 llist->dflts[u]->realtype->refcount++;
3597 if (err) {
3598 ly_err_print(err);
3599 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3600 "Invalid leaf-lists's default value \"%s\" which does not fit the type (%s).", llist_p->dflts[u], err->msg);
3601 ly_err_free(err);
3602 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02003603 if (ret == LY_EINCOMPLETE) {
3604 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02003605 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, node, llist->dflts[u], llist->dflts_mods[u]), done);
Radek Krejci1c0c3442019-07-23 16:08:47 +02003606
3607 /* but in general result is so far ok */
3608 ret = LY_SUCCESS;
3609 }
Radek Krejcia1911222019-07-22 17:24:50 +02003610 LY_CHECK_GOTO(ret, done);
Radek Krejci0e5d8382018-11-28 16:37:53 +01003611 }
Radek Krejciccd20f12019-02-15 14:12:27 +01003612 llist->flags |= LYS_SET_DFLT;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003613 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003614 if ((llist->flags & LYS_CONFIG_W) && llist->dflts && LY_ARRAY_COUNT(llist->dflts)) {
Radek Krejcia1911222019-07-22 17:24:50 +02003615 /* configuration data values must be unique - so check the default values */
3616 LY_ARRAY_FOR(llist->dflts, u) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003617 for (v = u + 1; v < LY_ARRAY_COUNT(llist->dflts); ++v) {
Radek Krejcia1911222019-07-22 17:24:50 +02003618 if (!llist->type->plugin->compare(llist->dflts[u], llist->dflts[v])) {
3619 int dynamic = 0;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003620 const char *val = llist->type->plugin->print(llist->dflts[v], LYD_XML, lys_get_prefix, llist->dflts_mods[v], &dynamic);
Radek Krejcia1911222019-07-22 17:24:50 +02003621 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3622 "Configuration leaf-list has multiple defaults of the same value \"%s\".", val);
3623 if (dynamic) {
3624 free((char*)val);
3625 }
3626 return LY_EVALID;
3627 }
3628 }
3629 }
3630 }
3631
3632 /* TODO validate default value according to the type, possibly postpone the check when the leafref target is known */
Radek Krejci0e5d8382018-11-28 16:37:53 +01003633
3634 llist->min = llist_p->min;
Radek Krejcife909632019-02-12 15:34:42 +01003635 if (llist->min) {
3636 llist->flags |= LYS_MAND_TRUE;
3637 }
Radek Krejcib7408632018-11-28 17:12:11 +01003638 llist->max = llist_p->max ? llist_p->max : (uint32_t)-1;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003639
Radek Krejci0e5d8382018-11-28 16:37:53 +01003640done:
3641 return ret;
3642}
3643
3644/**
Radek Krejci7af64242019-02-18 13:07:53 +01003645 * @brief Compile information about list's uniques.
3646 * @param[in] ctx Compile context.
3647 * @param[in] context_module Module where the prefixes are going to be resolved.
3648 * @param[in] uniques Sized array list of unique statements.
3649 * @param[in] list Compiled list where the uniques are supposed to be resolved and stored.
3650 * @return LY_ERR value.
3651 */
3652static LY_ERR
3653lys_compile_node_list_unique(struct lysc_ctx *ctx, struct lys_module *context_module, const char **uniques, struct lysc_node_list *list)
3654{
3655 LY_ERR ret = LY_SUCCESS;
3656 struct lysc_node_leaf **key, ***unique;
Michal Vasko14654712020-02-06 08:35:21 +01003657 struct lysc_node *parent;
Radek Krejci7af64242019-02-18 13:07:53 +01003658 const char *keystr, *delim;
3659 size_t len;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003660 LY_ARRAY_COUNT_TYPE v;
Radek Krejci7af64242019-02-18 13:07:53 +01003661 int config;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003662 uint16_t flags;
Radek Krejci7af64242019-02-18 13:07:53 +01003663
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003664 for (v = 0; v < LY_ARRAY_COUNT(uniques); ++v) {
Radek Krejci7af64242019-02-18 13:07:53 +01003665 config = -1;
3666 LY_ARRAY_NEW_RET(ctx->ctx, list->uniques, unique, LY_EMEM);
3667 keystr = uniques[v];
3668 while (keystr) {
3669 delim = strpbrk(keystr, " \t\n");
3670 if (delim) {
3671 len = delim - keystr;
3672 while (isspace(*delim)) {
3673 ++delim;
3674 }
3675 } else {
3676 len = strlen(keystr);
3677 }
3678
3679 /* unique node must be present */
3680 LY_ARRAY_NEW_RET(ctx->ctx, *unique, key, LY_EMEM);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003681 ret = lys_resolve_schema_nodeid(ctx, keystr, len, (struct lysc_node*)list, context_module, LYS_LEAF, 0,
3682 (const struct lysc_node**)key, &flags);
Radek Krejci7af64242019-02-18 13:07:53 +01003683 if (ret != LY_SUCCESS) {
3684 if (ret == LY_EDENIED) {
3685 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003686 "Unique's descendant-schema-nodeid \"%.*s\" refers to %s node instead of a leaf.",
Radek Krejci7af64242019-02-18 13:07:53 +01003687 len, keystr, lys_nodetype2str((*key)->nodetype));
3688 }
3689 return LY_EVALID;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003690 } else if (flags) {
3691 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3692 "Unique's descendant-schema-nodeid \"%.*s\" refers into %s node.",
Michal Vaskoa3881362020-01-21 15:57:35 +01003693 len, keystr, flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003694 return LY_EVALID;
Radek Krejci7af64242019-02-18 13:07:53 +01003695 }
3696
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003697
Radek Krejci7af64242019-02-18 13:07:53 +01003698 /* all referenced leafs must be of the same config type */
3699 if (config != -1 && ((((*key)->flags & LYS_CONFIG_W) && config == 0) || (((*key)->flags & LYS_CONFIG_R) && config == 1))) {
3700 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vasko14654712020-02-06 08:35:21 +01003701 "Unique statement \"%s\" refers to leaves with different config type.", uniques[v]);
Radek Krejci7af64242019-02-18 13:07:53 +01003702 return LY_EVALID;
3703 } else if ((*key)->flags & LYS_CONFIG_W) {
3704 config = 1;
3705 } else { /* LYS_CONFIG_R */
3706 config = 0;
3707 }
3708
Michal Vasko14654712020-02-06 08:35:21 +01003709 /* we forbid referencing nested lists because it is unspecified what instance of such a list to use */
3710 for (parent = (*key)->parent; parent != (struct lysc_node *)list; parent = parent->parent) {
3711 if (parent->nodetype == LYS_LIST) {
3712 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3713 "Unique statement \"%s\" refers to a leaf in nested list \"%s\".", uniques[v], parent->name);
3714 return LY_EVALID;
3715 }
3716 }
3717
Radek Krejci7af64242019-02-18 13:07:53 +01003718 /* check status */
3719 LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name,
3720 (*key)->flags, (*key)->module, (*key)->name));
3721
3722 /* mark leaf as unique */
3723 (*key)->flags |= LYS_UNIQUE;
3724
3725 /* next unique value in line */
3726 keystr = delim;
3727 }
3728 /* next unique definition */
3729 }
3730
3731 return LY_SUCCESS;
3732}
3733
3734/**
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003735 * @brief Compile parsed list node information.
3736 * @param[in] ctx Compile context
3737 * @param[in] node_p Parsed list node.
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003738 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3739 * is enriched with the list-specific information.
3740 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3741 */
3742static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003743lys_compile_node_list(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003744{
3745 struct lysp_node_list *list_p = (struct lysp_node_list*)node_p;
3746 struct lysc_node_list *list = (struct lysc_node_list*)node;
3747 struct lysp_node *child_p;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003748 struct lysc_node_leaf *key, *prev_key = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003749 size_t len;
Radek Krejci7af64242019-02-18 13:07:53 +01003750 unsigned int u;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003751 const char *keystr, *delim;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003752 LY_ERR ret = LY_SUCCESS;
3753
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003754 list->min = list_p->min;
Radek Krejcife909632019-02-12 15:34:42 +01003755 if (list->min) {
3756 list->flags |= LYS_MAND_TRUE;
3757 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003758 list->max = list_p->max ? list_p->max : (uint32_t)-1;
3759
3760 LY_LIST_FOR(list_p->child, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003761 LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003762 }
3763
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003764 COMPILE_ARRAY_GOTO(ctx, list_p->musts, list->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003765 if (list_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3766 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003767 ly_set_add(&ctx->xpath, list, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003768 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003769
3770 /* keys */
3771 if ((list->flags & LYS_CONFIG_W) && (!list_p->key || !list_p->key[0])) {
3772 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Missing key in list representing configuration data.");
3773 return LY_EVALID;
3774 }
3775
3776 /* find all the keys (must be direct children) */
3777 keystr = list_p->key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003778 if (!keystr) {
3779 /* keyless list */
3780 list->flags |= LYS_KEYLESS;
3781 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003782 while (keystr) {
3783 delim = strpbrk(keystr, " \t\n");
3784 if (delim) {
3785 len = delim - keystr;
3786 while (isspace(*delim)) {
3787 ++delim;
3788 }
3789 } else {
3790 len = strlen(keystr);
3791 }
3792
3793 /* key node must be present */
Michal Vaskoe444f752020-02-10 12:20:06 +01003794 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 +02003795 if (!(key)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003796 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3797 "The list's key \"%.*s\" not found.", len, keystr);
3798 return LY_EVALID;
3799 }
3800 /* keys must be unique */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003801 if (key->flags & LYS_KEY) {
3802 /* the node was already marked as a key */
3803 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3804 "Duplicated key identifier \"%.*s\".", len, keystr);
3805 return LY_EVALID;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003806 }
Radek Krejci0fe9b512019-07-26 17:51:05 +02003807
3808 lysc_update_path(ctx, (struct lysc_node*)list, key->name);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003809 /* key must have the same config flag as the list itself */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003810 if ((list->flags & LYS_CONFIG_MASK) != (key->flags & LYS_CONFIG_MASK)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003811 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Key of the configuration list must not be status leaf.");
3812 return LY_EVALID;
3813 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +01003814 if (ctx->mod_def->version < LYS_VERSION_1_1) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003815 /* YANG 1.0 denies key to be of empty type */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003816 if (key->type->basetype == LY_TYPE_EMPTY) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003817 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003818 "List's key cannot be of \"empty\" type until it is in YANG 1.1 module.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003819 return LY_EVALID;
3820 }
3821 } else {
3822 /* when and if-feature are illegal on list keys */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003823 if (key->when) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003824 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003825 "List's key must not have any \"when\" statement.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003826 return LY_EVALID;
3827 }
Radek Krejci0fe9b512019-07-26 17:51:05 +02003828 if (key->iffeatures) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003829 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003830 "List's key must not have any \"if-feature\" statement.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003831 return LY_EVALID;
3832 }
3833 }
Radek Krejci76b3e962018-12-14 17:01:25 +01003834
3835 /* check status */
3836 LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name,
Radek Krejci0fe9b512019-07-26 17:51:05 +02003837 key->flags, key->module, key->name));
Radek Krejci76b3e962018-12-14 17:01:25 +01003838
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003839 /* ignore default values of the key */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003840 if (key->dflt) {
3841 key->dflt->realtype->plugin->free(ctx->ctx, key->dflt);
3842 lysc_type_free(ctx->ctx, key->dflt->realtype);
3843 free(key->dflt);
3844 key->dflt = NULL;
3845 key->dflt_mod = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003846 }
3847 /* mark leaf as key */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003848 key->flags |= LYS_KEY;
3849
3850 /* move it to the correct position */
3851 if ((prev_key && (struct lysc_node*)prev_key != key->prev) || (!prev_key && key->prev->next)) {
3852 /* fix links in closest previous siblings of the key */
3853 if (key->next) {
3854 key->next->prev = key->prev;
3855 } else {
3856 /* last child */
3857 list->child->prev = key->prev;
3858 }
3859 if (key->prev->next) {
3860 key->prev->next = key->next;
3861 }
3862 /* fix links in the key */
3863 if (prev_key) {
3864 key->prev = (struct lysc_node*)prev_key;
3865 key->next = prev_key->next;
3866 } else {
3867 key->prev = list->child->prev;
3868 key->next = list->child;
3869 }
3870 /* fix links in closes future siblings of the key */
3871 if (prev_key) {
3872 if (prev_key->next) {
3873 prev_key->next->prev = (struct lysc_node*)key;
3874 } else {
3875 list->child->prev = (struct lysc_node*)key;
3876 }
3877 prev_key->next = (struct lysc_node*)key;
3878 } else {
3879 list->child->prev = (struct lysc_node*)key;
3880 }
3881 /* fix links in parent */
3882 if (!key->prev->next) {
3883 list->child = (struct lysc_node*)key;
3884 }
3885 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003886
3887 /* next key value */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003888 prev_key = key;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003889 keystr = delim;
Radek Krejci327de162019-06-14 12:52:07 +02003890 lysc_update_path(ctx, NULL, NULL);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003891 }
3892
3893 /* uniques */
3894 if (list_p->uniques) {
Radek Krejci7af64242019-02-18 13:07:53 +01003895 LY_CHECK_RET(lys_compile_node_list_unique(ctx, list->module, list_p->uniques, list));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003896 }
3897
Radek Krejciec4da802019-05-02 13:02:41 +02003898 COMPILE_ARRAY1_GOTO(ctx, list_p->actions, list->actions, node, u, lys_compile_action, 0, ret, done);
3899 COMPILE_ARRAY1_GOTO(ctx, list_p->notifs, list->notifs, node, u, lys_compile_notif, 0, ret, done);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003900
3901done:
3902 return ret;
3903}
3904
Radek Krejcib56c7502019-02-13 14:19:54 +01003905/**
3906 * @brief Do some checks and set the default choice's case.
3907 *
3908 * Selects (and stores into ::lysc_node_choice#dflt) the default case and set LYS_SET_DFLT flag on it.
3909 *
3910 * @param[in] ctx Compile context.
3911 * @param[in] dflt Name of the default branch. Can contain even the prefix, but it make sense only in case it is the prefix of the module itself,
3912 * not the reference to the imported module.
3913 * @param[in,out] ch The compiled choice node, its dflt member is filled to point to the default case node of the choice.
3914 * @return LY_ERR value.
3915 */
Radek Krejci76b3e962018-12-14 17:01:25 +01003916static LY_ERR
3917lys_compile_node_choice_dflt(struct lysc_ctx *ctx, const char *dflt, struct lysc_node_choice *ch)
3918{
3919 struct lysc_node *iter, *node = (struct lysc_node*)ch;
3920 const char *prefix = NULL, *name;
3921 size_t prefix_len = 0;
3922
3923 /* could use lys_parse_nodeid(), but it checks syntax which is already done in this case by the parsers */
3924 name = strchr(dflt, ':');
3925 if (name) {
3926 prefix = dflt;
3927 prefix_len = name - prefix;
3928 ++name;
3929 } else {
3930 name = dflt;
3931 }
Radek Krejci7f9b6512019-09-18 13:11:09 +02003932 if (prefix && ly_strncmp(node->module->prefix, prefix, prefix_len)) {
Radek Krejci76b3e962018-12-14 17:01:25 +01003933 /* prefixed default case make sense only for the prefix of the schema itself */
3934 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3935 "Invalid default case referencing a case from different YANG module (by prefix \"%.*s\").",
3936 prefix_len, prefix);
3937 return LY_EVALID;
3938 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003939 ch->dflt = (struct lysc_node_case*)lys_find_child(node, node->module, name, 0, LYS_CASE, LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCASE);
Radek Krejci76b3e962018-12-14 17:01:25 +01003940 if (!ch->dflt) {
3941 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3942 "Default case \"%s\" not found.", dflt);
3943 return LY_EVALID;
3944 }
3945 /* no mandatory nodes directly under the default case */
3946 LY_LIST_FOR(ch->dflt->child, iter) {
Radek Krejcife13da42019-02-15 14:51:01 +01003947 if (iter->parent != (struct lysc_node*)ch->dflt) {
3948 break;
3949 }
Radek Krejci76b3e962018-12-14 17:01:25 +01003950 if (iter->flags & LYS_MAND_TRUE) {
3951 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3952 "Mandatory node \"%s\" under the default case \"%s\".", iter->name, dflt);
3953 return LY_EVALID;
3954 }
3955 }
Radek Krejci01342af2019-01-03 15:18:08 +01003956 ch->dflt->flags |= LYS_SET_DFLT;
Radek Krejci76b3e962018-12-14 17:01:25 +01003957 return LY_SUCCESS;
3958}
3959
Radek Krejciccd20f12019-02-15 14:12:27 +01003960static LY_ERR
Radek Krejci327de162019-06-14 12:52:07 +02003961lys_compile_deviation_set_choice_dflt(struct lysc_ctx *ctx, const char *dflt, struct lysc_node_choice *ch)
Radek Krejciccd20f12019-02-15 14:12:27 +01003962{
3963 struct lys_module *mod;
3964 const char *prefix = NULL, *name;
3965 size_t prefix_len = 0;
3966 struct lysc_node_case *cs;
3967 struct lysc_node *node;
3968
3969 /* could use lys_parse_nodeid(), but it checks syntax which is already done in this case by the parsers */
3970 name = strchr(dflt, ':');
3971 if (name) {
3972 prefix = dflt;
3973 prefix_len = name - prefix;
3974 ++name;
3975 } else {
3976 name = dflt;
3977 }
3978 /* this code is for deviation, so we allow as the default case even the cases from other modules than the choice (augments) */
3979 if (prefix) {
3980 if (!(mod = lys_module_find_prefix(ctx->mod, prefix, prefix_len))) {
3981 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02003982 "Invalid deviation adding \"default\" property \"%s\" of choice. "
3983 "The prefix does not match any imported module of the deviation module.", dflt);
Radek Krejciccd20f12019-02-15 14:12:27 +01003984 return LY_EVALID;
3985 }
3986 } else {
3987 mod = ctx->mod;
3988 }
3989 /* get the default case */
Michal Vaskoe444f752020-02-10 12:20:06 +01003990 cs = (struct lysc_node_case*)lys_find_child((struct lysc_node*)ch, mod, name, 0, LYS_CASE, LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCASE);
Radek Krejciccd20f12019-02-15 14:12:27 +01003991 if (!cs) {
3992 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02003993 "Invalid deviation adding \"default\" property \"%s\" of choice - the specified case does not exists.", dflt);
Radek Krejciccd20f12019-02-15 14:12:27 +01003994 return LY_EVALID;
3995 }
3996
3997 /* check that there is no mandatory node */
3998 LY_LIST_FOR(cs->child, node) {
Radek Krejcife13da42019-02-15 14:51:01 +01003999 if (node->parent != (struct lysc_node*)cs) {
4000 break;
4001 }
Radek Krejciccd20f12019-02-15 14:12:27 +01004002 if (node->flags & LYS_MAND_TRUE) {
4003 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004004 "Invalid deviation adding \"default\" property \"%s\" of choice - "
4005 "mandatory node \"%s\" under the default case.", dflt, node->name);
Radek Krejciccd20f12019-02-15 14:12:27 +01004006 return LY_EVALID;
4007 }
4008 }
4009
4010 /* set the default case in choice */
4011 ch->dflt = cs;
4012 cs->flags |= LYS_SET_DFLT;
4013
4014 return LY_SUCCESS;
4015}
4016
Radek Krejci9bb94eb2018-12-04 16:48:35 +01004017/**
Radek Krejci056d0a82018-12-06 16:57:25 +01004018 * @brief Compile parsed choice node information.
4019 * @param[in] ctx Compile context
4020 * @param[in] node_p Parsed choice node.
Radek Krejci056d0a82018-12-06 16:57:25 +01004021 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
Radek Krejci76b3e962018-12-14 17:01:25 +01004022 * is enriched with the choice-specific information.
Radek Krejci056d0a82018-12-06 16:57:25 +01004023 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4024 */
4025static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004026lys_compile_node_choice(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01004027{
4028 struct lysp_node_choice *ch_p = (struct lysp_node_choice*)node_p;
4029 struct lysc_node_choice *ch = (struct lysc_node_choice*)node;
4030 struct lysp_node *child_p, *case_child_p;
Radek Krejci056d0a82018-12-06 16:57:25 +01004031 LY_ERR ret = LY_SUCCESS;
4032
Radek Krejci056d0a82018-12-06 16:57:25 +01004033 LY_LIST_FOR(ch_p->child, child_p) {
4034 if (child_p->nodetype == LYS_CASE) {
4035 LY_LIST_FOR(((struct lysp_node_case*)child_p)->child, case_child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02004036 LY_CHECK_RET(lys_compile_node(ctx, case_child_p, node, 0));
Radek Krejci056d0a82018-12-06 16:57:25 +01004037 }
4038 } else {
Radek Krejciec4da802019-05-02 13:02:41 +02004039 LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0));
Radek Krejci056d0a82018-12-06 16:57:25 +01004040 }
4041 }
4042
4043 /* default branch */
Radek Krejcia9026eb2018-12-12 16:04:47 +01004044 if (ch_p->dflt) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004045 LY_CHECK_RET(lys_compile_node_choice_dflt(ctx, ch_p->dflt, ch));
Radek Krejcia9026eb2018-12-12 16:04:47 +01004046 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004047
Radek Krejci9800fb82018-12-13 14:26:23 +01004048 return ret;
4049}
4050
4051/**
4052 * @brief Compile parsed anydata or anyxml node information.
4053 * @param[in] ctx Compile context
4054 * @param[in] node_p Parsed anydata or anyxml node.
Radek Krejci9800fb82018-12-13 14:26:23 +01004055 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
4056 * is enriched with the any-specific information.
4057 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4058 */
4059static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004060lys_compile_node_any(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci9800fb82018-12-13 14:26:23 +01004061{
4062 struct lysp_node_anydata *any_p = (struct lysp_node_anydata*)node_p;
4063 struct lysc_node_anydata *any = (struct lysc_node_anydata*)node;
4064 unsigned int u;
4065 LY_ERR ret = LY_SUCCESS;
4066
Radek Krejcic71ac5b2019-09-10 15:34:22 +02004067 COMPILE_ARRAY_GOTO(ctx, any_p->musts, any->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01004068 if (any_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
4069 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02004070 ly_set_add(&ctx->xpath, any, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01004071 }
Radek Krejci9800fb82018-12-13 14:26:23 +01004072
4073 if (any->flags & LYS_CONFIG_W) {
Radek Krejci5c4ed7b2020-08-12 11:29:44 +02004074 LOGWRN(ctx->ctx, "Use of %s to define configuration data is not recommended. %s",
4075 ly_stmt2str(any->nodetype == LYS_ANYDATA ? LY_STMT_ANYDATA : LY_STMT_ANYXML), ctx->path);
Radek Krejci9800fb82018-12-13 14:26:23 +01004076 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004077done:
4078 return ret;
4079}
4080
Radek Krejcib56c7502019-02-13 14:19:54 +01004081/**
Michal Vasko795b3752020-07-13 15:24:27 +02004082 * @brief Connect the node into the siblings list and check its name uniqueness. Also,
4083 * keep specific order of augments targetting the same node.
Radek Krejci056d0a82018-12-06 16:57:25 +01004084 *
4085 * @param[in] ctx Compile context
4086 * @param[in] parent Parent node holding the children list, in case of node from a choice's case,
4087 * the choice itself is expected instead of a specific case node.
4088 * @param[in] node Schema node to connect into the list.
4089 * @return LY_ERR value - LY_SUCCESS or LY_EEXIST.
Radek Krejci1c54f462020-05-12 17:25:34 +02004090 * 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 +01004091 */
4092static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004093lys_compile_node_connect(struct lysc_ctx *ctx, struct lysc_node *parent, struct lysc_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01004094{
Michal Vasko795b3752020-07-13 15:24:27 +02004095 struct lysc_node **children, *start, *end;
4096 const struct lys_module *mod;
Radek Krejci056d0a82018-12-06 16:57:25 +01004097
4098 if (node->nodetype == LYS_CASE) {
4099 children = (struct lysc_node**)&((struct lysc_node_choice*)parent)->cases;
4100 } else {
Radek Krejciec4da802019-05-02 13:02:41 +02004101 children = lysc_node_children_p(parent, ctx->options);
Radek Krejci056d0a82018-12-06 16:57:25 +01004102 }
4103 if (children) {
4104 if (!(*children)) {
4105 /* first child */
4106 *children = node;
4107 } else if (*children != node) {
4108 /* by the condition in previous branch we cover the choice/case children
4109 * - the children list is shared by the choice and the the first case, in addition
4110 * the first child of each case must be referenced from the case node. So the node is
4111 * actually always already inserted in case it is the first children - so here such
4112 * a situation actually corresponds to the first branch */
Michal Vasko795b3752020-07-13 15:24:27 +02004113 if (((*children)->prev->module != (*children)->module) && (node->module != (*children)->module)
4114 && (strcmp((*children)->prev->module->name, node->module->name) > 0)) {
4115 /* some augments are already connected and we are connecting new ones,
4116 * keep module name order and insert the node into the children list */
4117 end = (*children);
4118 do {
4119 end = end->prev;
4120 mod = end->module;
4121 while (end->prev->module == mod) {
4122 end = end->prev;
4123 }
4124 } while ((end->prev->module != (*children)->module) && (end->prev->module != node->module)
4125 && (strcmp(mod->name, node->module->name) > 0));
4126
4127 /* we have the last existing node after our node, easily get the first before and connect it */
4128 start = end->prev;
4129 start->next = node;
4130 node->next = end;
4131 end->prev = node;
4132 node->prev = start;
4133 } else {
4134 /* insert at the end of the parent's children list */
4135 (*children)->prev->next = node;
4136 node->prev = (*children)->prev;
4137 (*children)->prev = node;
4138 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004139
4140 /* check the name uniqueness */
4141 if (lys_compile_node_uniqness(ctx, *children, lysc_node_actions(parent),
4142 lysc_node_notifs(parent), node->name, node)) {
4143 return LY_EEXIST;
4144 }
4145 }
4146 }
4147 return LY_SUCCESS;
4148}
4149
Radek Krejci95710c92019-02-11 15:49:55 +01004150/**
Radek Krejcib56c7502019-02-13 14:19:54 +01004151 * @brief Prepare the case structure in choice node for the new data node.
4152 *
4153 * 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
4154 * created in the choice when the first child was processed.
4155 *
4156 * @param[in] ctx Compile context.
Radek Krejci95710c92019-02-11 15:49:55 +01004157 * @param[in] node_p 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 +02004158 * it is the LYS_CHOICE, LYS_AUGMENT or LYS_GROUPING node.
Radek Krejcib56c7502019-02-13 14:19:54 +01004159 * @param[in] ch The compiled choice structure where the new case structures are created (if needed).
4160 * @param[in] child The new data node being part of a case (no matter if explicit or implicit).
4161 * @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,
4162 * it is linked from the case structure only in case it is its first child.
Radek Krejci95710c92019-02-11 15:49:55 +01004163 */
Radek Krejci056d0a82018-12-06 16:57:25 +01004164static struct lysc_node_case*
Radek Krejciec4da802019-05-02 13:02:41 +02004165lys_compile_node_case(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node_choice *ch, struct lysc_node *child)
Radek Krejci056d0a82018-12-06 16:57:25 +01004166{
4167 struct lysc_node *iter;
Radek Krejci98b1a662019-04-23 10:25:50 +02004168 struct lysc_node_case *cs = NULL;
Radek Krejci00b874b2019-02-12 10:54:50 +01004169 struct lysc_when **when;
Radek Krejci056d0a82018-12-06 16:57:25 +01004170 unsigned int u;
4171 LY_ERR ret;
4172
Radek Krejci95710c92019-02-11 15:49:55 +01004173#define UNIQUE_CHECK(NAME, MOD) \
Radek Krejci056d0a82018-12-06 16:57:25 +01004174 LY_LIST_FOR((struct lysc_node*)ch->cases, iter) { \
Radek Krejci95710c92019-02-11 15:49:55 +01004175 if (iter->module == MOD && !strcmp(iter->name, NAME)) { \
Radek Krejci056d0a82018-12-06 16:57:25 +01004176 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, NAME, "case"); \
4177 return NULL; \
4178 } \
4179 }
4180
Radek Krejci39424802020-08-12 09:31:00 +02004181 if (node_p->nodetype & (LYS_CHOICE | LYS_AUGMENT | LYS_GROUPING)) {
Radek Krejci95710c92019-02-11 15:49:55 +01004182 UNIQUE_CHECK(child->name, ctx->mod);
Radek Krejci056d0a82018-12-06 16:57:25 +01004183
4184 /* we have to add an implicit case node into the parent choice */
4185 cs = calloc(1, sizeof(struct lysc_node_case));
4186 DUP_STRING(ctx->ctx, child->name, cs->name);
Michal Vasko175012e2019-11-06 15:49:14 +01004187 cs->parent = (struct lysc_node*)ch;
Radek Krejci056d0a82018-12-06 16:57:25 +01004188 cs->flags = ch->flags & LYS_STATUS_MASK;
Radek Krejci95710c92019-02-11 15:49:55 +01004189 } else if (node_p->nodetype == LYS_CASE) {
Radek Krejci056d0a82018-12-06 16:57:25 +01004190 if (ch->cases && (node_p == ch->cases->prev->sp)) {
4191 /* the case is already present since the child is not its first children */
4192 return (struct lysc_node_case*)ch->cases->prev;
4193 }
Radek Krejci95710c92019-02-11 15:49:55 +01004194 UNIQUE_CHECK(node_p->name, ctx->mod);
Radek Krejci056d0a82018-12-06 16:57:25 +01004195
4196 /* explicit parent case is not present (this is its first child) */
4197 cs = calloc(1, sizeof(struct lysc_node_case));
4198 DUP_STRING(ctx->ctx, node_p->name, cs->name);
Michal Vasko175012e2019-11-06 15:49:14 +01004199 cs->parent = (struct lysc_node*)ch;
Radek Krejci056d0a82018-12-06 16:57:25 +01004200 cs->flags = LYS_STATUS_MASK & node_p->flags;
4201 cs->sp = node_p;
4202
Radek Krejcib1b59152019-01-07 13:21:56 +01004203 /* check the case's status (don't need to solve uses_status since case statement cannot be directly in grouping statement */
Radek Krejcibae745f2019-04-09 16:28:00 +02004204 LY_CHECK_GOTO(lys_compile_status(ctx, &cs->flags, ch->flags), error);
Radek Krejci00b874b2019-02-12 10:54:50 +01004205
4206 if (node_p->when) {
4207 LY_ARRAY_NEW_GOTO(ctx->ctx, cs->when, when, ret, error);
Michal Vasko175012e2019-11-06 15:49:14 +01004208 ret = lys_compile_when(ctx, node_p->when, node_p->flags, (struct lysc_node *)cs, when);
Radek Krejci00b874b2019-02-12 10:54:50 +01004209 LY_CHECK_GOTO(ret, error);
Michal Vasko175012e2019-11-06 15:49:14 +01004210
4211 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4212 /* do not check "when" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02004213 ly_set_add(&ctx->xpath, cs, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01004214 }
Radek Krejci00b874b2019-02-12 10:54:50 +01004215 }
Radek Krejciec4da802019-05-02 13:02:41 +02004216 COMPILE_ARRAY_GOTO(ctx, node_p->iffeatures, cs->iffeatures, u, lys_compile_iffeature, ret, error);
Radek Krejci95710c92019-02-11 15:49:55 +01004217 } else {
4218 LOGINT(ctx->ctx);
4219 goto error;
Radek Krejci056d0a82018-12-06 16:57:25 +01004220 }
4221 cs->module = ctx->mod;
4222 cs->prev = (struct lysc_node*)cs;
4223 cs->nodetype = LYS_CASE;
Radek Krejciec4da802019-05-02 13:02:41 +02004224 lys_compile_node_connect(ctx, (struct lysc_node*)ch, (struct lysc_node*)cs);
Radek Krejci056d0a82018-12-06 16:57:25 +01004225 cs->child = child;
4226
4227 return cs;
4228error:
Radek Krejci1b1e9252019-04-24 08:45:50 +02004229 if (cs) {
4230 lysc_node_free(ctx->ctx, (struct lysc_node*)cs);
4231 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004232 return NULL;
4233
4234#undef UNIQUE_CHECK
4235}
4236
Radek Krejcib56c7502019-02-13 14:19:54 +01004237/**
Radek Krejci93dcc392019-02-19 10:43:38 +01004238 * @brief Apply refined or deviated config to the target node.
Radek Krejcib56c7502019-02-13 14:19:54 +01004239 *
4240 * @param[in] ctx Compile context.
Radek Krejci93dcc392019-02-19 10:43:38 +01004241 * @param[in] node Target node where the config is supposed to be changed.
4242 * @param[in] config_flag Node's config flag to be applied to the @p node.
Radek Krejcib56c7502019-02-13 14:19:54 +01004243 * @param[in] inheriting Flag (inverted) to check the refined config compatibility with the node's parent. This is
4244 * done only on the node for which the refine was created. The function applies also recursively to apply the config change
Radek Krejci93dcc392019-02-19 10:43:38 +01004245 * to the complete subtree (except the subnodes with explicit config set) and the test is not needed for the subnodes.
4246 * @param[in] refine_flag Flag to distinguish if the change is caused by refine (flag set) or deviation (for logging).
Radek Krejcib56c7502019-02-13 14:19:54 +01004247 * @return LY_ERR value.
4248 */
Radek Krejci76b3e962018-12-14 17:01:25 +01004249static LY_ERR
Radek Krejci93dcc392019-02-19 10:43:38 +01004250lys_compile_change_config(struct lysc_ctx *ctx, struct lysc_node *node, uint16_t config_flag,
Radek Krejci327de162019-06-14 12:52:07 +02004251 int inheriting, int refine_flag)
Radek Krejci76b3e962018-12-14 17:01:25 +01004252{
4253 struct lysc_node *child;
Radek Krejci93dcc392019-02-19 10:43:38 +01004254 uint16_t config = config_flag & LYS_CONFIG_MASK;
Radek Krejci76b3e962018-12-14 17:01:25 +01004255
4256 if (config == (node->flags & LYS_CONFIG_MASK)) {
4257 /* nothing to do */
4258 return LY_SUCCESS;
4259 }
4260
4261 if (!inheriting) {
Radek Krejci93dcc392019-02-19 10:43:38 +01004262 /* explicit change */
Radek Krejci76b3e962018-12-14 17:01:25 +01004263 if (config == LYS_CONFIG_W && node->parent && (node->parent->flags & LYS_CONFIG_R)) {
4264 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004265 "Invalid %s of config - configuration node cannot be child of any state data node.",
4266 refine_flag ? "refine" : "deviation");
Radek Krejci76b3e962018-12-14 17:01:25 +01004267 return LY_EVALID;
4268 }
Radek Krejci93dcc392019-02-19 10:43:38 +01004269 node->flags |= LYS_SET_CONFIG;
4270 } else {
4271 if (node->flags & LYS_SET_CONFIG) {
4272 if ((node->flags & LYS_CONFIG_W) && (config == LYS_CONFIG_R)) {
4273 /* setting config flags, but have node with explicit config true */
4274 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004275 "Invalid %s of config - configuration node cannot be child of any state data node.",
4276 refine_flag ? "refine" : "deviation");
Radek Krejci93dcc392019-02-19 10:43:38 +01004277 return LY_EVALID;
4278 }
4279 /* do not change config on nodes where the config is explicitely set, this does not apply to
4280 * nodes, which are being changed explicitly (targets of refine or deviation) */
4281 return LY_SUCCESS;
4282 }
Radek Krejci76b3e962018-12-14 17:01:25 +01004283 }
4284 node->flags &= ~LYS_CONFIG_MASK;
4285 node->flags |= config;
4286
4287 /* inherit the change into the children */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004288 LY_LIST_FOR((struct lysc_node*)lysc_node_children(node, 0), child) {
Radek Krejci327de162019-06-14 12:52:07 +02004289 LY_CHECK_RET(lys_compile_change_config(ctx, child, config_flag, 1, refine_flag));
Radek Krejci76b3e962018-12-14 17:01:25 +01004290 }
4291
Radek Krejci76b3e962018-12-14 17:01:25 +01004292 return LY_SUCCESS;
4293}
4294
Radek Krejcib56c7502019-02-13 14:19:54 +01004295/**
4296 * @brief Set LYS_MAND_TRUE flag for the non-presence container parents.
4297 *
4298 * A non-presence container is mandatory in case it has at least one mandatory children. This function propagate
4299 * the flag to such parents from a mandatory children.
4300 *
4301 * @param[in] parent A schema node to be examined if the mandatory child make it also mandatory.
4302 * @param[in] add Flag to distinguish adding the mandatory flag (new mandatory children appeared) or removing the flag
4303 * (mandatory children was removed).
4304 */
Radek Krejcife909632019-02-12 15:34:42 +01004305void
4306lys_compile_mandatory_parents(struct lysc_node *parent, int add)
4307{
4308 struct lysc_node *iter;
4309
4310 if (add) { /* set flag */
4311 for (; parent && parent->nodetype == LYS_CONTAINER && !(parent->flags & LYS_MAND_TRUE) && !(parent->flags & LYS_PRESENCE);
4312 parent = parent->parent) {
4313 parent->flags |= LYS_MAND_TRUE;
4314 }
4315 } else { /* unset flag */
4316 for (; parent && parent->nodetype == LYS_CONTAINER && (parent->flags & LYS_MAND_TRUE); parent = parent->parent) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004317 for (iter = (struct lysc_node*)lysc_node_children(parent, 0); iter; iter = iter->next) {
Radek Krejcif1421c22019-02-19 13:05:20 +01004318 if (iter->flags & LYS_MAND_TRUE) {
Radek Krejcife909632019-02-12 15:34:42 +01004319 /* there is another mandatory node */
4320 return;
4321 }
4322 }
4323 /* unset mandatory flag - there is no mandatory children in the non-presence container */
4324 parent->flags &= ~LYS_MAND_TRUE;
4325 }
4326 }
4327}
4328
Radek Krejci056d0a82018-12-06 16:57:25 +01004329/**
Radek Krejci3641f562019-02-13 15:38:40 +01004330 * @brief Internal sorting process for the lys_compile_augment_sort().
4331 * @param[in] aug_p The parsed augment structure to insert into the sorter sized array @p result.
4332 * @param[in,out] result Sized array to store the sorted list of augments. The array is expected
4333 * to be allocated to hold the complete list, its size is just incremented by adding another item.
4334 */
4335static void
4336lys_compile_augment_sort_(struct lysp_augment *aug_p, struct lysp_augment **result)
4337{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004338 LY_ARRAY_COUNT_TYPE v;
Radek Krejci3641f562019-02-13 15:38:40 +01004339 size_t len;
4340
4341 len = strlen(aug_p->nodeid);
4342 LY_ARRAY_FOR(result, v) {
4343 if (strlen(result[v]->nodeid) <= len) {
4344 continue;
4345 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004346 if (v < LY_ARRAY_COUNT(result)) {
Radek Krejci3641f562019-02-13 15:38:40 +01004347 /* move the rest of array */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004348 memmove(&result[v + 1], &result[v], (LY_ARRAY_COUNT(result) - v) * sizeof *result);
Radek Krejci3641f562019-02-13 15:38:40 +01004349 break;
4350 }
4351 }
4352 result[v] = aug_p;
4353 LY_ARRAY_INCREMENT(result);
4354}
4355
4356/**
4357 * @brief Sort augments to apply /a/b before /a/b/c (where the /a/b/c was added by the first augment).
4358 *
4359 * The sorting is based only on the length of the augment's path since it guarantee the correct order
4360 * (it doesn't matter the /a/x is done before /a/b/c from the example above).
4361 *
4362 * @param[in] ctx Compile context.
4363 * @param[in] mod_p Parsed module with the global augments (also augments from the submodules are taken).
4364 * @param[in] aug_p Parsed sized array of augments to sort (no matter if global or uses's)
4365 * @param[in] inc_p In case of global augments, sized array of module includes (submodules) to get global augments from submodules.
4366 * @param[out] augments Resulting sorted sized array of pointers to the augments.
4367 * @return LY_ERR value.
4368 */
4369LY_ERR
4370lys_compile_augment_sort(struct lysc_ctx *ctx, struct lysp_augment *aug_p, struct lysp_include *inc_p, struct lysp_augment ***augments)
4371{
4372 struct lysp_augment **result = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004373 LY_ARRAY_COUNT_TYPE u, v, count = 0;
Radek Krejci3641f562019-02-13 15:38:40 +01004374
4375 assert(augments);
4376
4377 /* get count of the augments in module and all its submodules */
4378 if (aug_p) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004379 count += LY_ARRAY_COUNT(aug_p);
Radek Krejci3641f562019-02-13 15:38:40 +01004380 }
4381 LY_ARRAY_FOR(inc_p, u) {
4382 if (inc_p[u].submodule->augments) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004383 count += LY_ARRAY_COUNT(inc_p[u].submodule->augments);
Radek Krejci3641f562019-02-13 15:38:40 +01004384 }
4385 }
4386
4387 if (!count) {
4388 *augments = NULL;
4389 return LY_SUCCESS;
4390 }
4391 LY_ARRAY_CREATE_RET(ctx->ctx, result, count, LY_EMEM);
4392
4393 /* sort by the length of schema-nodeid - we need to solve /x before /x/xy. It is not necessary to group them
4394 * together, so there can be even /z/y betwwen them. */
4395 LY_ARRAY_FOR(aug_p, u) {
4396 lys_compile_augment_sort_(&aug_p[u], result);
4397 }
4398 LY_ARRAY_FOR(inc_p, u) {
4399 LY_ARRAY_FOR(inc_p[u].submodule->augments, v) {
4400 lys_compile_augment_sort_(&inc_p[u].submodule->augments[v], result);
4401 }
4402 }
4403
4404 *augments = result;
4405 return LY_SUCCESS;
4406}
4407
4408/**
4409 * @brief Compile the parsed augment connecting it into its target.
4410 *
4411 * It is expected that all the data referenced in path are present - augments are ordered so that augment B
4412 * targeting data from augment A is being compiled after augment A. Also the modules referenced in the path
4413 * are already implemented and compiled.
4414 *
4415 * @param[in] ctx Compile context.
4416 * @param[in] aug_p Parsed augment to compile.
Radek Krejci3641f562019-02-13 15:38:40 +01004417 * @param[in] parent Parent node to provide the augment's context. It is NULL for the top level augments and a node holding uses's
4418 * children in case of the augmenting uses data.
4419 * @return LY_SUCCESS on success.
4420 * @return LY_EVALID on failure.
4421 */
4422LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004423lys_compile_augment(struct lysc_ctx *ctx, struct lysp_augment *aug_p, const struct lysc_node *parent)
Radek Krejci3641f562019-02-13 15:38:40 +01004424{
Michal Vaskoe6143202020-07-03 13:02:08 +02004425 LY_ERR ret = LY_SUCCESS, rc;
Radek Krejci3641f562019-02-13 15:38:40 +01004426 struct lysp_node *node_p, *case_node_p;
4427 struct lysc_node *target; /* target target of the augment */
4428 struct lysc_node *node;
Radek Krejci3641f562019-02-13 15:38:40 +01004429 struct lysc_when **when, *when_shared;
Michal Vaskoa3af5982020-06-29 11:51:37 +02004430 struct lys_module **aug_mod;
Radek Krejci3641f562019-02-13 15:38:40 +01004431 int allow_mandatory = 0;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004432 uint16_t flags = 0;
Michal Vaskoe6143202020-07-03 13:02:08 +02004433 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejciec4da802019-05-02 13:02:41 +02004434 int opt_prev = ctx->options;
Radek Krejci3641f562019-02-13 15:38:40 +01004435
Radek Krejci327de162019-06-14 12:52:07 +02004436 lysc_update_path(ctx, NULL, "{augment}");
4437 lysc_update_path(ctx, NULL, aug_p->nodeid);
4438
Radek Krejci7af64242019-02-18 13:07:53 +01004439 ret = lys_resolve_schema_nodeid(ctx, aug_p->nodeid, 0, parent, parent ? parent->module : ctx->mod_def,
Radek Krejci3641f562019-02-13 15:38:40 +01004440 LYS_CONTAINER | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_INOUT | LYS_NOTIF,
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004441 1, (const struct lysc_node**)&target, &flags);
Radek Krejci3641f562019-02-13 15:38:40 +01004442 if (ret != LY_SUCCESS) {
4443 if (ret == LY_EDENIED) {
4444 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4445 "Augment's %s-schema-nodeid \"%s\" refers to a %s node which is not an allowed augment's target.",
4446 parent ? "descendant" : "absolute", aug_p->nodeid, lys_nodetype2str(target->nodetype));
4447 }
4448 return LY_EVALID;
4449 }
4450
4451 /* check for mandatory nodes
4452 * - new cases augmenting some choice can have mandatory nodes
4453 * - mandatory nodes are allowed only in case the augmentation is made conditional with a when statement
4454 */
Radek Krejci733988a2019-02-15 15:12:44 +01004455 if (aug_p->when || target->nodetype == LYS_CHOICE || ctx->mod == target->module) {
Radek Krejci3641f562019-02-13 15:38:40 +01004456 allow_mandatory = 1;
4457 }
4458
4459 when_shared = NULL;
4460 LY_LIST_FOR(aug_p->child, node_p) {
4461 /* check if the subnode can be connected to the found target (e.g. case cannot be inserted into container) */
4462 if (!(target->nodetype == LYS_CHOICE && node_p->nodetype == LYS_CASE)
Michal Vasko1bf09392020-03-27 12:38:10 +01004463 && !((target->nodetype & (LYS_CONTAINER | LYS_LIST)) && (node_p->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)))
Radek Krejci2d56a892019-02-19 09:05:26 +01004464 && !(target->nodetype != LYS_CHOICE && node_p->nodetype == LYS_USES)
4465 && !(node_p->nodetype & (LYS_ANYDATA | LYS_CONTAINER | LYS_CHOICE | LYS_LEAF | LYS_LIST | LYS_LEAFLIST))) {
Radek Krejci3641f562019-02-13 15:38:40 +01004466 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004467 "Invalid augment of %s node which is not allowed to contain %s node \"%s\".",
4468 lys_nodetype2str(target->nodetype), lys_nodetype2str(node_p->nodetype), node_p->name);
Radek Krejci3641f562019-02-13 15:38:40 +01004469 return LY_EVALID;
4470 }
4471
4472 /* compile the children */
Radek Krejciec4da802019-05-02 13:02:41 +02004473 ctx->options |= flags;
Radek Krejci3641f562019-02-13 15:38:40 +01004474 if (node_p->nodetype != LYS_CASE) {
Radek Krejciec4da802019-05-02 13:02:41 +02004475 LY_CHECK_RET(lys_compile_node(ctx, node_p, target, 0));
Radek Krejci3641f562019-02-13 15:38:40 +01004476 } else {
4477 LY_LIST_FOR(((struct lysp_node_case *)node_p)->child, case_node_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02004478 LY_CHECK_RET(lys_compile_node(ctx, case_node_p, target, 0));
Radek Krejci3641f562019-02-13 15:38:40 +01004479 }
4480 }
Radek Krejciec4da802019-05-02 13:02:41 +02004481 ctx->options = opt_prev;
Radek Krejci3641f562019-02-13 15:38:40 +01004482
Radek Krejcife13da42019-02-15 14:51:01 +01004483 /* since the augment node is not present in the compiled tree, we need to pass some of its statements to all its children,
4484 * here we gets the last created node as last children of our parent */
Radek Krejci3641f562019-02-13 15:38:40 +01004485 if (target->nodetype == LYS_CASE) {
Radek Krejcife13da42019-02-15 14:51:01 +01004486 /* the compiled node is the last child of the target (but it is a case, so we have to be careful and stop) */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004487 for (node = (struct lysc_node*)lysc_node_children(target, flags); node->next && node->next->parent == node->parent; node = node->next);
Radek Krejci3641f562019-02-13 15:38:40 +01004488 } else if (target->nodetype == LYS_CHOICE) {
4489 /* to pass when statement, we need the last case no matter if it is explicit or implicit case */
4490 node = ((struct lysc_node_choice*)target)->cases->prev;
4491 } else {
4492 /* the compiled node is the last child of the target */
Radek Krejci7c7783d2020-04-08 15:34:39 +02004493 node = (struct lysc_node*)lysc_node_children(target, flags);
4494 if (!node) {
4495 /* there is no data children (compiled nodes is e.g. notification or action or nothing) */
4496 break;
4497 }
4498 node = node->prev;
Radek Krejci3641f562019-02-13 15:38:40 +01004499 }
4500
Radek Krejci733988a2019-02-15 15:12:44 +01004501 if (!allow_mandatory && (node->flags & LYS_CONFIG_W) && (node->flags & LYS_MAND_TRUE)) {
Radek Krejci3641f562019-02-13 15:38:40 +01004502 node->flags &= ~LYS_MAND_TRUE;
4503 lys_compile_mandatory_parents(target, 0);
4504 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004505 "Invalid augment adding mandatory node \"%s\" without making it conditional via when statement.", node->name);
Radek Krejci3641f562019-02-13 15:38:40 +01004506 return LY_EVALID;
4507 }
4508
4509 /* pass augment's when to all the children */
4510 if (aug_p->when) {
4511 LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error);
4512 if (!when_shared) {
Michal Vasko175012e2019-11-06 15:49:14 +01004513 ret = lys_compile_when(ctx, aug_p->when, aug_p->flags, target, when);
Radek Krejci3641f562019-02-13 15:38:40 +01004514 LY_CHECK_GOTO(ret, error);
Michal Vasko175012e2019-11-06 15:49:14 +01004515
4516 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4517 /* do not check "when" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02004518 ly_set_add(&ctx->xpath, node, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01004519 }
4520
Radek Krejci3641f562019-02-13 15:38:40 +01004521 when_shared = *when;
4522 } else {
4523 ++when_shared->refcount;
4524 (*when) = when_shared;
Michal Vasko5c4e5892019-11-14 12:31:38 +01004525
4526 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4527 /* in this case check "when" again for all children because of dummy node check */
Michal Vasko004d3152020-06-11 19:59:22 +02004528 ly_set_add(&ctx->xpath, node, 0);
Michal Vasko5c4e5892019-11-14 12:31:38 +01004529 }
Radek Krejci3641f562019-02-13 15:38:40 +01004530 }
4531 }
4532 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004533
Radek Krejciec4da802019-05-02 13:02:41 +02004534 ctx->options |= flags;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004535 switch (target->nodetype) {
4536 case LYS_CONTAINER:
Radek Krejci05b774b2019-02-25 13:26:18 +01004537 COMPILE_ARRAY1_GOTO(ctx, aug_p->actions, ((struct lysc_node_container*)target)->actions, target,
Radek Krejciec4da802019-05-02 13:02:41 +02004538 u, lys_compile_action, 0, ret, error);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004539 COMPILE_ARRAY1_GOTO(ctx, aug_p->notifs, ((struct lysc_node_container*)target)->notifs, target,
Radek Krejciec4da802019-05-02 13:02:41 +02004540 u, lys_compile_notif, 0, ret, error);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004541 break;
4542 case LYS_LIST:
Radek Krejci05b774b2019-02-25 13:26:18 +01004543 COMPILE_ARRAY1_GOTO(ctx, aug_p->actions, ((struct lysc_node_list*)target)->actions, target,
Radek Krejciec4da802019-05-02 13:02:41 +02004544 u, lys_compile_action, 0, ret, error);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004545 COMPILE_ARRAY1_GOTO(ctx, aug_p->notifs, ((struct lysc_node_list*)target)->notifs, target,
Radek Krejciec4da802019-05-02 13:02:41 +02004546 u, lys_compile_notif, 0, ret, error);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004547 break;
4548 default:
Radek Krejciec4da802019-05-02 13:02:41 +02004549 ctx->options = opt_prev;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004550 if (aug_p->actions) {
4551 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004552 "Invalid augment of %s node which is not allowed to contain RPC/action node \"%s\".",
4553 lys_nodetype2str(target->nodetype), aug_p->actions[0].name);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004554 return LY_EVALID;
4555 }
4556 if (aug_p->notifs) {
4557 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Michal Vaskoa3881362020-01-21 15:57:35 +01004558 "Invalid augment of %s node which is not allowed to contain notification node \"%s\".",
Radek Krejci327de162019-06-14 12:52:07 +02004559 lys_nodetype2str(target->nodetype), aug_p->notifs[0].name);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004560 return LY_EVALID;
4561 }
4562 }
Radek Krejci3641f562019-02-13 15:38:40 +01004563
Michal Vaskoe6143202020-07-03 13:02:08 +02004564 /* add this module into the target module augmented_by, if not there already */
4565 rc = LY_SUCCESS;
4566 LY_ARRAY_FOR(target->module->compiled->augmented_by, v) {
4567 if (target->module->compiled->augmented_by[v] == ctx->mod) {
4568 rc = LY_EEXIST;
4569 break;
4570 }
4571 }
4572 if (!rc) {
4573 LY_ARRAY_NEW_GOTO(ctx->ctx, target->module->compiled->augmented_by, aug_mod, ret, error);
4574 *aug_mod = ctx->mod;
4575 }
Michal Vaskoa3af5982020-06-29 11:51:37 +02004576
Radek Krejci327de162019-06-14 12:52:07 +02004577 lysc_update_path(ctx, NULL, NULL);
4578 lysc_update_path(ctx, NULL, NULL);
Michal Vaskoa3af5982020-06-29 11:51:37 +02004579
Radek Krejci3641f562019-02-13 15:38:40 +01004580error:
Radek Krejciec4da802019-05-02 13:02:41 +02004581 ctx->options = opt_prev;
Radek Krejci3641f562019-02-13 15:38:40 +01004582 return ret;
4583}
4584
4585/**
Radek Krejcif1421c22019-02-19 13:05:20 +01004586 * @brief Apply refined or deviated mandatory flag to the target node.
4587 *
4588 * @param[in] ctx Compile context.
4589 * @param[in] node Target node where the mandatory property is supposed to be changed.
4590 * @param[in] mandatory_flag Node's mandatory flag to be applied to the @p node.
Radek Krejcif1421c22019-02-19 13:05:20 +01004591 * @param[in] refine_flag Flag to distinguish if the change is caused by refine (flag set) or deviation (for logging).
Radek Krejci551b12c2019-02-19 16:11:21 +01004592 * @param[in] It is also used as a flag for testing for compatibility with default statement. In case of deviations,
4593 * there can be some other deviations of the default properties that we are testing here. To avoid false positive failure,
4594 * the tests are skipped here, but they are supposed to be performed after all the deviations are applied.
Radek Krejcif1421c22019-02-19 13:05:20 +01004595 * @return LY_ERR value.
4596 */
4597static LY_ERR
Radek Krejci327de162019-06-14 12:52:07 +02004598lys_compile_change_mandatory(struct lysc_ctx *ctx, struct lysc_node *node, uint16_t mandatory_flag, int refine_flag)
Radek Krejcif1421c22019-02-19 13:05:20 +01004599{
4600 if (!(node->nodetype & (LYS_LEAF | LYS_ANYDATA | LYS_ANYXML | LYS_CHOICE))) {
4601 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004602 "Invalid %s of mandatory - %s cannot hold mandatory statement.",
4603 refine_flag ? "refine" : "deviation", lys_nodetype2str(node->nodetype));
Radek Krejcif1421c22019-02-19 13:05:20 +01004604 return LY_EVALID;
4605 }
4606
4607 if (mandatory_flag & LYS_MAND_TRUE) {
4608 /* check if node has default value */
4609 if (node->nodetype & LYS_LEAF) {
4610 if (node->flags & LYS_SET_DFLT) {
Radek Krejci551b12c2019-02-19 16:11:21 +01004611 if (refine_flag) {
4612 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004613 "Invalid refine of mandatory - leaf already has \"default\" statement.");
Radek Krejci551b12c2019-02-19 16:11:21 +01004614 return LY_EVALID;
4615 }
Radek Krejcia1911222019-07-22 17:24:50 +02004616 } else if (((struct lysc_node_leaf*)node)->dflt) {
Radek Krejcif1421c22019-02-19 13:05:20 +01004617 /* remove the default value taken from the leaf's type */
Radek Krejcia1911222019-07-22 17:24:50 +02004618 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
Radek Krejci474f9b82019-07-24 11:36:37 +02004619
4620 /* update the list of incomplete default values if needed */
4621 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
4622
Radek Krejcia1911222019-07-22 17:24:50 +02004623 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
4624 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
4625 free(leaf->dflt);
4626 leaf->dflt = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004627 leaf->dflt_mod = NULL;
Radek Krejcif1421c22019-02-19 13:05:20 +01004628 }
4629 } else if ((node->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)node)->dflt) {
Radek Krejci551b12c2019-02-19 16:11:21 +01004630 if (refine_flag) {
4631 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004632 "Invalid refine of mandatory - choice already has \"default\" statement.");
Radek Krejci551b12c2019-02-19 16:11:21 +01004633 return LY_EVALID;
4634 }
Radek Krejcif1421c22019-02-19 13:05:20 +01004635 }
Radek Krejci551b12c2019-02-19 16:11:21 +01004636 if (refine_flag && node->parent && (node->parent->flags & LYS_SET_DFLT)) {
Radek Krejci327de162019-06-14 12:52:07 +02004637 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid refine of mandatory under the default case.");
Radek Krejcif1421c22019-02-19 13:05:20 +01004638 return LY_EVALID;
4639 }
4640
4641 node->flags &= ~LYS_MAND_FALSE;
4642 node->flags |= LYS_MAND_TRUE;
4643 lys_compile_mandatory_parents(node->parent, 1);
4644 } else {
4645 /* make mandatory false */
4646 node->flags &= ~LYS_MAND_TRUE;
4647 node->flags |= LYS_MAND_FALSE;
4648 lys_compile_mandatory_parents(node->parent, 0);
Radek Krejcia1911222019-07-22 17:24:50 +02004649 if ((node->nodetype & LYS_LEAF) && !((struct lysc_node_leaf*)node)->dflt && ((struct lysc_node_leaf*)node)->type->dflt) {
Radek Krejcif1421c22019-02-19 13:05:20 +01004650 /* get the type's default value if any */
Radek Krejcia1911222019-07-22 17:24:50 +02004651 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004652 leaf->dflt_mod = leaf->type->dflt_mod;
Radek Krejcia1911222019-07-22 17:24:50 +02004653 leaf->dflt = calloc(1, sizeof *leaf->dflt);
4654 leaf->dflt->realtype = leaf->type->dflt->realtype;
4655 leaf->dflt->realtype->plugin->duplicate(ctx->ctx, leaf->type->dflt, leaf->dflt);
4656 leaf->dflt->realtype->refcount++;
Radek Krejcif1421c22019-02-19 13:05:20 +01004657 }
4658 }
4659 return LY_SUCCESS;
4660}
4661
4662/**
Radek Krejcie86bf772018-12-14 11:39:53 +01004663 * @brief Compile parsed uses statement - resolve target grouping and connect its content into parent.
4664 * If present, also apply uses's modificators.
4665 *
4666 * @param[in] ctx Compile context
4667 * @param[in] uses_p Parsed uses schema node.
Radek Krejcie86bf772018-12-14 11:39:53 +01004668 * @param[in] parent Compiled parent node where the content of the referenced grouping is supposed to be connected. It is
4669 * NULL for top-level nodes, in such a case the module where the node will be connected is taken from
4670 * the compile context.
4671 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4672 */
4673static LY_ERR
Radek Krejcic6b4f442020-08-12 14:45:18 +02004674lys_compile_uses(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, struct lysc_node *parent, struct lysc_node **first_p)
Radek Krejcie86bf772018-12-14 11:39:53 +01004675{
4676 struct lysp_node *node_p;
Radek Krejcic6b4f442020-08-12 14:45:18 +02004677 struct lysc_node *node, *child, *iter;
Radek Krejci12fb9142019-01-08 09:45:30 +01004678 /* context_node_fake allows us to temporarily isolate the nodes inserted from the grouping instead of uses */
Radek Krejci01342af2019-01-03 15:18:08 +01004679 struct lysc_node_container context_node_fake =
4680 {.nodetype = LYS_CONTAINER,
4681 .module = ctx->mod,
4682 .flags = parent ? parent->flags : 0,
4683 .child = NULL, .next = NULL,
Radek Krejcifc11bd72019-04-11 16:00:05 +02004684 .prev = (struct lysc_node*)&context_node_fake,
4685 .actions = NULL, .notifs = NULL};
Radek Krejciec4da802019-05-02 13:02:41 +02004686 struct lysp_grp *grp = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004687 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02004688 uint32_t grp_stack_count;
Radek Krejcie86bf772018-12-14 11:39:53 +01004689 int found;
4690 const char *id, *name, *prefix;
4691 size_t prefix_len, name_len;
4692 struct lys_module *mod, *mod_old;
Radek Krejci76b3e962018-12-14 17:01:25 +01004693 struct lysp_refine *rfn;
Radek Krejcia1911222019-07-22 17:24:50 +02004694 LY_ERR ret = LY_EVALID, rc;
Radek Krejcif2271f12019-01-07 16:42:23 +01004695 uint32_t min, max;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004696 uint16_t flags;
Radek Krejcif2271f12019-01-07 16:42:23 +01004697 struct ly_set refined = {0};
Radek Krejci00b874b2019-02-12 10:54:50 +01004698 struct lysc_when **when, *when_shared;
Radek Krejci3641f562019-02-13 15:38:40 +01004699 struct lysp_augment **augments = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004700 LY_ARRAY_COUNT_TYPE actions_index = 0, notifs_index = 0;
Radek Krejcifc11bd72019-04-11 16:00:05 +02004701 struct lysc_notif **notifs = NULL;
4702 struct lysc_action **actions = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01004703
4704 /* search for the grouping definition */
4705 found = 0;
4706 id = uses_p->name;
Radek Krejcib4a4a272019-06-10 12:44:52 +02004707 LY_CHECK_RET(ly_parse_nodeid(&id, &prefix, &prefix_len, &name, &name_len), LY_EVALID);
Radek Krejcie86bf772018-12-14 11:39:53 +01004708 if (prefix) {
4709 mod = lys_module_find_prefix(ctx->mod_def, prefix, prefix_len);
4710 if (!mod) {
4711 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004712 "Invalid prefix used for grouping reference.", uses_p->name);
Radek Krejcie86bf772018-12-14 11:39:53 +01004713 return LY_EVALID;
4714 }
4715 } else {
4716 mod = ctx->mod_def;
4717 }
4718 if (mod == ctx->mod_def) {
4719 for (node_p = uses_p->parent; !found && node_p; node_p = node_p->parent) {
Radek Krejciec4da802019-05-02 13:02:41 +02004720 grp = (struct lysp_grp*)lysp_node_groupings(node_p);
Radek Krejcie86bf772018-12-14 11:39:53 +01004721 LY_ARRAY_FOR(grp, u) {
4722 if (!strcmp(grp[u].name, name)) {
4723 grp = &grp[u];
4724 found = 1;
4725 break;
4726 }
4727 }
4728 }
4729 }
4730 if (!found) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004731 /* search in top-level groupings of the main module ... */
Radek Krejcie86bf772018-12-14 11:39:53 +01004732 grp = mod->parsed->groupings;
Radek Krejci76b3e962018-12-14 17:01:25 +01004733 if (grp) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004734 for (u = 0; !found && u < LY_ARRAY_COUNT(grp); ++u) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004735 if (!strcmp(grp[u].name, name)) {
4736 grp = &grp[u];
4737 found = 1;
4738 }
4739 }
4740 }
4741 if (!found && mod->parsed->includes) {
4742 /* ... and all the submodules */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004743 for (u = 0; !found && u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004744 grp = mod->parsed->includes[u].submodule->groupings;
4745 if (grp) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004746 for (v = 0; !found && v < LY_ARRAY_COUNT(grp); ++v) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004747 if (!strcmp(grp[v].name, name)) {
4748 grp = &grp[v];
4749 found = 1;
4750 }
4751 }
4752 }
Radek Krejcie86bf772018-12-14 11:39:53 +01004753 }
4754 }
4755 }
4756 if (!found) {
4757 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4758 "Grouping \"%s\" referenced by a uses statement not found.", uses_p->name);
4759 return LY_EVALID;
4760 }
4761
4762 /* grouping must not reference themselves - stack in ctx maintains list of groupings currently being applied */
4763 grp_stack_count = ctx->groupings.count;
4764 ly_set_add(&ctx->groupings, (void*)grp, 0);
4765 if (grp_stack_count == ctx->groupings.count) {
4766 /* the target grouping is already in the stack, so we are already inside it -> circular dependency */
4767 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4768 "Grouping \"%s\" references itself through a uses statement.", grp->name);
4769 return LY_EVALID;
4770 }
Radek Krejcif2de0ed2019-05-02 14:13:18 +02004771 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4772 /* remember that the grouping is instantiated to avoid its standalone validation */
4773 grp->flags |= LYS_USED_GRP;
4774 }
Radek Krejcie86bf772018-12-14 11:39:53 +01004775
4776 /* switch context's mod_def */
4777 mod_old = ctx->mod_def;
4778 ctx->mod_def = mod;
4779
4780 /* check status */
Radek Krejcifc11bd72019-04-11 16:00:05 +02004781 LY_CHECK_GOTO(lysc_check_status(ctx, uses_p->flags, mod_old, uses_p->name, grp->flags, mod, grp->name), cleanup);
Radek Krejcie86bf772018-12-14 11:39:53 +01004782
Radek Krejcic6b4f442020-08-12 14:45:18 +02004783 /* remember the currently last child before processing the uses - it is needed to split the siblings to corretly
4784 * applu refine and augment only to the nodes from the uses */
4785 if (parent) {
4786 if (parent->nodetype == LYS_CASE) {
4787 child = (struct lysc_node*)lysc_node_children(parent->parent, ctx->options & LYSC_OPT_RPC_MASK);
4788 } else {
4789 child = (struct lysc_node*)lysc_node_children(parent, ctx->options & LYSC_OPT_RPC_MASK);
4790 }
4791 } else if (ctx->mod->compiled->data) {
4792 child = ctx->mod->compiled->data;
4793 } else {
4794 child = NULL;
4795 }
4796 /* remember the last child */
4797 if (child) {
4798 child = child->prev;
4799 }
4800
Radek Krejcifc11bd72019-04-11 16:00:05 +02004801 /* compile data nodes */
Radek Krejcie86bf772018-12-14 11:39:53 +01004802 LY_LIST_FOR(grp->data, node_p) {
Radek Krejcib1b59152019-01-07 13:21:56 +01004803 /* 0x3 in uses_status is a special bits combination to be able to detect status flags from uses */
Radek Krejciec4da802019-05-02 13:02:41 +02004804 LY_CHECK_GOTO(lys_compile_node(ctx, node_p, parent, (uses_p->flags & LYS_STATUS_MASK) | 0x3), cleanup);
Radek Krejci01342af2019-01-03 15:18:08 +01004805 }
Radek Krejcic6b4f442020-08-12 14:45:18 +02004806
4807 /* split the children and add the uses's data into the fake context node */
4808 if (child) {
4809 context_node_fake.child = child->next;
4810 } else if (parent) {
4811 context_node_fake.child = (struct lysc_node*)lysc_node_children(parent, ctx->options & LYSC_OPT_RPC_MASK);
4812 } else if (ctx->mod->compiled->data) {
4813 context_node_fake.child = ctx->mod->compiled->data;
4814 }
4815 if (context_node_fake.child) {
4816 /* remember child as the last data node added by grouping to fix the list later */
4817 child = context_node_fake.child->prev;
4818 context_node_fake.child->prev = NULL;
4819 }
4820
Radek Krejci00b874b2019-02-12 10:54:50 +01004821 when_shared = NULL;
Radek Krejcic6b4f442020-08-12 14:45:18 +02004822 LY_LIST_FOR(context_node_fake.child, iter) {
4823 iter->parent = (struct lysc_node*)&context_node_fake;
Radek Krejci00b874b2019-02-12 10:54:50 +01004824
Radek Krejcifc11bd72019-04-11 16:00:05 +02004825 /* pass uses's when to all the data children, actions and notifications are ignored */
Radek Krejci00b874b2019-02-12 10:54:50 +01004826 if (uses_p->when) {
Radek Krejcic6b4f442020-08-12 14:45:18 +02004827 LY_ARRAY_NEW_GOTO(ctx->ctx, iter->when, when, ret, cleanup);
Radek Krejci00b874b2019-02-12 10:54:50 +01004828 if (!when_shared) {
Michal Vasko175012e2019-11-06 15:49:14 +01004829 LY_CHECK_GOTO(lys_compile_when(ctx, uses_p->when, uses_p->flags, parent, when), cleanup);
4830
4831 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4832 /* do not check "when" semantics in a grouping */
Radek Krejcic6b4f442020-08-12 14:45:18 +02004833 ly_set_add(&ctx->xpath, iter, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01004834 }
4835
Radek Krejci00b874b2019-02-12 10:54:50 +01004836 when_shared = *when;
4837 } else {
4838 ++when_shared->refcount;
4839 (*when) = when_shared;
Michal Vasko5c4e5892019-11-14 12:31:38 +01004840
4841 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4842 /* in this case check "when" again for all children because of dummy node check */
Radek Krejcic6b4f442020-08-12 14:45:18 +02004843 ly_set_add(&ctx->xpath, iter, 0);
Michal Vasko5c4e5892019-11-14 12:31:38 +01004844 }
Radek Krejci00b874b2019-02-12 10:54:50 +01004845 }
4846 }
Radek Krejci01342af2019-01-03 15:18:08 +01004847 }
Radek Krejci76b3e962018-12-14 17:01:25 +01004848
Radek Krejcifc11bd72019-04-11 16:00:05 +02004849 /* compile actions */
4850 actions = parent ? lysc_node_actions_p(parent) : &ctx->mod->compiled->rpcs;
4851 if (actions) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004852 actions_index = *actions ? LY_ARRAY_COUNT(*actions) : 0;
Radek Krejciec4da802019-05-02 13:02:41 +02004853 COMPILE_ARRAY1_GOTO(ctx, grp->actions, *actions, parent, u, lys_compile_action, 0, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004854 if (*actions && (uses_p->augments || uses_p->refines)) {
4855 /* but for augment and refine, we need to separate the compiled grouping's actions to avoid modification of others */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004856 LY_ARRAY_CREATE_GOTO(ctx->ctx, context_node_fake.actions, LY_ARRAY_COUNT(*actions) - actions_index, ret, cleanup);
4857 LY_ARRAY_COUNT(context_node_fake.actions) = LY_ARRAY_COUNT(*actions) - actions_index;
4858 memcpy(context_node_fake.actions, &(*actions)[actions_index], LY_ARRAY_COUNT(context_node_fake.actions) * sizeof **actions);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004859 }
4860 }
4861
4862 /* compile notifications */
4863 notifs = parent ? lysc_node_notifs_p(parent) : &ctx->mod->compiled->notifs;
4864 if (notifs) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004865 notifs_index = *notifs ? LY_ARRAY_COUNT(*notifs) : 0;
Radek Krejciec4da802019-05-02 13:02:41 +02004866 COMPILE_ARRAY1_GOTO(ctx, grp->notifs, *notifs, parent, u, lys_compile_notif, 0, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004867 if (*notifs && (uses_p->augments || uses_p->refines)) {
4868 /* but for augment and refine, we need to separate the compiled grouping's notification to avoid modification of others */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004869 LY_ARRAY_CREATE_GOTO(ctx->ctx, context_node_fake.notifs, LY_ARRAY_COUNT(*notifs) - notifs_index, ret, cleanup);
4870 LY_ARRAY_COUNT(context_node_fake.notifs) = LY_ARRAY_COUNT(*notifs) - notifs_index;
4871 memcpy(context_node_fake.notifs, &(*notifs)[notifs_index], LY_ARRAY_COUNT(context_node_fake.notifs) * sizeof **notifs);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004872 }
4873 }
4874
4875
Radek Krejci3641f562019-02-13 15:38:40 +01004876 /* sort and apply augments */
Radek Krejcifc11bd72019-04-11 16:00:05 +02004877 LY_CHECK_GOTO(lys_compile_augment_sort(ctx, uses_p->augments, NULL, &augments), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004878 LY_ARRAY_FOR(augments, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02004879 LY_CHECK_GOTO(lys_compile_augment(ctx, augments[u], (struct lysc_node*)&context_node_fake), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004880 }
Radek Krejci12fb9142019-01-08 09:45:30 +01004881
Radek Krejcif0089082019-01-07 16:42:01 +01004882 /* reload previous context's mod_def */
4883 ctx->mod_def = mod_old;
Radek Krejci327de162019-06-14 12:52:07 +02004884 lysc_update_path(ctx, NULL, "{refine}");
Radek Krejcif0089082019-01-07 16:42:01 +01004885
Radek Krejci76b3e962018-12-14 17:01:25 +01004886 /* apply refine */
4887 LY_ARRAY_FOR(uses_p->refines, struct lysp_refine, rfn) {
Radek Krejci327de162019-06-14 12:52:07 +02004888 lysc_update_path(ctx, NULL, rfn->nodeid);
4889
Radek Krejci7af64242019-02-18 13:07:53 +01004890 LY_CHECK_GOTO(lys_resolve_schema_nodeid(ctx, rfn->nodeid, 0, (struct lysc_node*)&context_node_fake, ctx->mod,
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004891 0, 0, (const struct lysc_node**)&node, &flags),
Radek Krejcifc11bd72019-04-11 16:00:05 +02004892 cleanup);
Radek Krejcif2271f12019-01-07 16:42:23 +01004893 ly_set_add(&refined, node, LY_SET_OPT_USEASLIST);
Radek Krejci76b3e962018-12-14 17:01:25 +01004894
4895 /* default value */
4896 if (rfn->dflts) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004897 if ((node->nodetype != LYS_LEAFLIST) && LY_ARRAY_COUNT(rfn->dflts) > 1) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004898 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004899 "Invalid refine of default - %s cannot hold %"LY_PRI_ARRAY_COUNT_TYPE" default values.",
4900 lys_nodetype2str(node->nodetype), LY_ARRAY_COUNT(rfn->dflts));
Radek Krejcifc11bd72019-04-11 16:00:05 +02004901 goto cleanup;
Radek Krejci76b3e962018-12-14 17:01:25 +01004902 }
4903 if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CHOICE))) {
4904 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004905 "Invalid refine of default - %s cannot hold default value(s).",
4906 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02004907 goto cleanup;
Radek Krejci76b3e962018-12-14 17:01:25 +01004908 }
4909 if (node->nodetype == LYS_LEAF) {
Radek Krejcia1911222019-07-22 17:24:50 +02004910 struct ly_err_item *err = NULL;
4911 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
4912 if (leaf->dflt) {
4913 /* remove the previous default value */
Radek Krejci474f9b82019-07-24 11:36:37 +02004914 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
Radek Krejcia1911222019-07-22 17:24:50 +02004915 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
4916 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
4917 } else {
4918 /* prepare a new one */
4919 leaf->dflt = calloc(1, sizeof *leaf->dflt);
4920 leaf->dflt->realtype = leaf->type;
4921 }
4922 /* parse the new one */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004923 leaf->dflt_mod = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02004924 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, rfn->dflts[0], strlen(rfn->dflts[0]),
4925 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02004926 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, node, NULL, leaf->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02004927 leaf->dflt->realtype->refcount++;
4928 if (err) {
4929 ly_err_print(err);
4930 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4931 "Invalid refine of default - value \"%s\" does not fit the type (%s).", rfn->dflts[0], err->msg);
4932 ly_err_free(err);
4933 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02004934 if (rc == LY_EINCOMPLETE) {
4935 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02004936 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, node, leaf->dflt, leaf->dflt_mod), cleanup);
Radek Krejci1c0c3442019-07-23 16:08:47 +02004937
4938 /* but in general result is so far ok */
4939 rc = LY_SUCCESS;
4940 }
Radek Krejcia1911222019-07-22 17:24:50 +02004941 LY_CHECK_GOTO(rc, cleanup);
4942 leaf->flags |= LYS_SET_DFLT;
Radek Krejci76b3e962018-12-14 17:01:25 +01004943 } else if (node->nodetype == LYS_LEAFLIST) {
Radek Krejcia1911222019-07-22 17:24:50 +02004944 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)node;
4945
Radek Krejci0bcdaed2019-01-10 10:21:34 +01004946 if (ctx->mod->version < 2) {
Radek Krejci01342af2019-01-03 15:18:08 +01004947 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4948 "Invalid refine of default in leaf-list - the default statement is allowed only in YANG 1.1 modules.");
Radek Krejcifc11bd72019-04-11 16:00:05 +02004949 goto cleanup;
Radek Krejci01342af2019-01-03 15:18:08 +01004950 }
Radek Krejcia1911222019-07-22 17:24:50 +02004951
4952 /* remove previous set of default values */
4953 LY_ARRAY_FOR(llist->dflts, u) {
Radek Krejci474f9b82019-07-24 11:36:37 +02004954 lysc_incomplete_dflts_remove(ctx, llist->dflts[u]);
Radek Krejcia1911222019-07-22 17:24:50 +02004955 llist->dflts[u]->realtype->plugin->free(ctx->ctx, llist->dflts[u]);
4956 lysc_type_free(ctx->ctx, llist->dflts[u]->realtype);
4957 free(llist->dflts[u]);
Radek Krejci76b3e962018-12-14 17:01:25 +01004958 }
Radek Krejcia1911222019-07-22 17:24:50 +02004959 LY_ARRAY_FREE(llist->dflts);
4960 llist->dflts = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004961 LY_ARRAY_FREE(llist->dflts_mods);
4962 llist->dflts_mods = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02004963
4964 /* create the new set of the default values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004965 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts_mods, LY_ARRAY_COUNT(rfn->dflts), ret, cleanup);
4966 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_COUNT(rfn->dflts), ret, cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01004967 LY_ARRAY_FOR(rfn->dflts, u) {
Radek Krejcia1911222019-07-22 17:24:50 +02004968 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004969 LY_ARRAY_INCREMENT(llist->dflts_mods);
4970 llist->dflts_mods[u] = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02004971 LY_ARRAY_INCREMENT(llist->dflts);
4972 llist->dflts[u] = calloc(1, sizeof *llist->dflts[u]);
4973 llist->dflts[u]->realtype = llist->type;
Radek Krejci1c0c3442019-07-23 16:08:47 +02004974 rc = llist->type->plugin->store(ctx->ctx, llist->type, rfn->dflts[u], strlen(rfn->dflts[u]),
Radek Krejcia1911222019-07-22 17:24:50 +02004975 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02004976 lys_resolve_prefix, (void*)llist->dflts_mods[u], LYD_XML, node, NULL, llist->dflts[u], NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02004977 llist->dflts[u]->realtype->refcount++;
4978 if (err) {
4979 ly_err_print(err);
4980 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4981 "Invalid refine of default in leaf-lists - value \"%s\" does not fit the type (%s).", rfn->dflts[u], err->msg);
4982 ly_err_free(err);
4983 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02004984 if (rc == LY_EINCOMPLETE) {
4985 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02004986 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, node, llist->dflts[u], llist->dflts_mods[u]), cleanup);
Radek Krejci1c0c3442019-07-23 16:08:47 +02004987
4988 /* but in general result is so far ok */
4989 rc = LY_SUCCESS;
4990 }
4991 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01004992 }
Radek Krejcia1911222019-07-22 17:24:50 +02004993 llist->flags |= LYS_SET_DFLT;
Radek Krejci76b3e962018-12-14 17:01:25 +01004994 } else if (node->nodetype == LYS_CHOICE) {
Radek Krejci01342af2019-01-03 15:18:08 +01004995 if (((struct lysc_node_choice*)node)->dflt) {
4996 /* unset LYS_SET_DFLT from the current default case */
4997 ((struct lysc_node_choice*)node)->dflt->flags &= ~LYS_SET_DFLT;
4998 }
Radek Krejcifc11bd72019-04-11 16:00:05 +02004999 LY_CHECK_GOTO(lys_compile_node_choice_dflt(ctx, rfn->dflts[0], (struct lysc_node_choice*)node), cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01005000 }
5001 }
5002
Radek Krejci12fb9142019-01-08 09:45:30 +01005003 /* description */
5004 if (rfn->dsc) {
5005 FREE_STRING(ctx->ctx, node->dsc);
5006 node->dsc = lydict_insert(ctx->ctx, rfn->dsc, 0);
5007 }
5008
5009 /* reference */
5010 if (rfn->ref) {
5011 FREE_STRING(ctx->ctx, node->ref);
5012 node->ref = lydict_insert(ctx->ctx, rfn->ref, 0);
5013 }
Radek Krejci76b3e962018-12-14 17:01:25 +01005014
5015 /* config */
5016 if (rfn->flags & LYS_CONFIG_MASK) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005017 if (!flags) {
Radek Krejci327de162019-06-14 12:52:07 +02005018 LY_CHECK_GOTO(lys_compile_change_config(ctx, node, rfn->flags, 0, 1), cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005019 } else {
5020 LOGWRN(ctx->ctx, "Refining config inside %s has no effect (%s).",
Michal Vaskoa3881362020-01-21 15:57:35 +01005021 flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action", ctx->path);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005022 }
Radek Krejci76b3e962018-12-14 17:01:25 +01005023 }
5024
5025 /* mandatory */
5026 if (rfn->flags & LYS_MAND_MASK) {
Radek Krejci327de162019-06-14 12:52:07 +02005027 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, node, rfn->flags, 1), cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01005028 }
Radek Krejci9a54f1f2019-01-07 13:47:55 +01005029
5030 /* presence */
5031 if (rfn->presence) {
5032 if (node->nodetype != LYS_CONTAINER) {
5033 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005034 "Invalid refine of presence statement - %s cannot hold the presence statement.",
5035 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005036 goto cleanup;
Radek Krejci9a54f1f2019-01-07 13:47:55 +01005037 }
5038 node->flags |= LYS_PRESENCE;
5039 }
Radek Krejci9a564c92019-01-07 14:53:57 +01005040
5041 /* must */
5042 if (rfn->musts) {
5043 switch (node->nodetype) {
5044 case LYS_LEAF:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005045 COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_leaf*)node)->musts, u, lys_compile_must, ret, cleanup);
Radek Krejci9a564c92019-01-07 14:53:57 +01005046 break;
5047 case LYS_LEAFLIST:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005048 COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_leaflist*)node)->musts, u, lys_compile_must, ret, cleanup);
Radek Krejci9a564c92019-01-07 14:53:57 +01005049 break;
5050 case LYS_LIST:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005051 COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_list*)node)->musts, u, lys_compile_must, ret, cleanup);
Radek Krejci9a564c92019-01-07 14:53:57 +01005052 break;
5053 case LYS_CONTAINER:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005054 COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_container*)node)->musts, u, lys_compile_must, ret, cleanup);
Radek Krejci9a564c92019-01-07 14:53:57 +01005055 break;
5056 case LYS_ANYXML:
5057 case LYS_ANYDATA:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005058 COMPILE_ARRAY_GOTO(ctx, rfn->musts, ((struct lysc_node_anydata*)node)->musts, u, lys_compile_must, ret, cleanup);
Radek Krejci9a564c92019-01-07 14:53:57 +01005059 break;
5060 default:
5061 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005062 "Invalid refine of must statement - %s cannot hold any must statement.",
5063 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005064 goto cleanup;
Radek Krejci9a564c92019-01-07 14:53:57 +01005065 }
Michal Vasko004d3152020-06-11 19:59:22 +02005066 ly_set_add(&ctx->xpath, node, 0);
Radek Krejci9a564c92019-01-07 14:53:57 +01005067 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005068
5069 /* min/max-elements */
5070 if (rfn->flags & (LYS_SET_MAX | LYS_SET_MIN)) {
5071 switch (node->nodetype) {
5072 case LYS_LEAFLIST:
5073 if (rfn->flags & LYS_SET_MAX) {
5074 ((struct lysc_node_leaflist*)node)->max = rfn->max ? rfn->max : (uint32_t)-1;
5075 }
5076 if (rfn->flags & LYS_SET_MIN) {
5077 ((struct lysc_node_leaflist*)node)->min = rfn->min;
Radek Krejcife909632019-02-12 15:34:42 +01005078 if (rfn->min) {
5079 node->flags |= LYS_MAND_TRUE;
5080 lys_compile_mandatory_parents(node->parent, 1);
5081 } else {
5082 node->flags &= ~LYS_MAND_TRUE;
5083 lys_compile_mandatory_parents(node->parent, 0);
5084 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005085 }
5086 break;
5087 case LYS_LIST:
5088 if (rfn->flags & LYS_SET_MAX) {
5089 ((struct lysc_node_list*)node)->max = rfn->max ? rfn->max : (uint32_t)-1;
5090 }
5091 if (rfn->flags & LYS_SET_MIN) {
5092 ((struct lysc_node_list*)node)->min = rfn->min;
Radek Krejcife909632019-02-12 15:34:42 +01005093 if (rfn->min) {
5094 node->flags |= LYS_MAND_TRUE;
5095 lys_compile_mandatory_parents(node->parent, 1);
5096 } else {
5097 node->flags &= ~LYS_MAND_TRUE;
5098 lys_compile_mandatory_parents(node->parent, 0);
5099 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005100 }
5101 break;
5102 default:
5103 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005104 "Invalid refine of %s statement - %s cannot hold this statement.",
5105 (rfn->flags & LYS_SET_MAX) ? "max-elements" : "min-elements", lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005106 goto cleanup;
Radek Krejci6b22ab72019-01-07 15:39:20 +01005107 }
5108 }
Radek Krejcif0089082019-01-07 16:42:01 +01005109
5110 /* if-feature */
5111 if (rfn->iffeatures) {
5112 /* any node in compiled tree can get additional if-feature, so do not check nodetype */
Radek Krejciec4da802019-05-02 13:02:41 +02005113 COMPILE_ARRAY_GOTO(ctx, rfn->iffeatures, node->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejcif0089082019-01-07 16:42:01 +01005114 }
Radek Krejci327de162019-06-14 12:52:07 +02005115
5116 lysc_update_path(ctx, NULL, NULL);
Radek Krejci01342af2019-01-03 15:18:08 +01005117 }
Radek Krejcie86bf772018-12-14 11:39:53 +01005118
Radek Krejcif2271f12019-01-07 16:42:23 +01005119 /* do some additional checks of the changed nodes when all the refines are applied */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02005120 for (uint32_t i = 0; i < refined.count; ++i) {
5121 node = (struct lysc_node*)refined.objs[i];
5122 rfn = &uses_p->refines[i];
Radek Krejci327de162019-06-14 12:52:07 +02005123 lysc_update_path(ctx, NULL, rfn->nodeid);
Radek Krejcif2271f12019-01-07 16:42:23 +01005124
5125 /* check possible conflict with default value (default added, mandatory left true) */
5126 if ((node->flags & LYS_MAND_TRUE) &&
5127 (((node->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)node)->dflt) ||
5128 ((node->nodetype & LYS_LEAF) && (node->flags & LYS_SET_DFLT)))) {
5129 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005130 "Invalid refine of default - the node is mandatory.");
Radek Krejcifc11bd72019-04-11 16:00:05 +02005131 goto cleanup;
Radek Krejcif2271f12019-01-07 16:42:23 +01005132 }
5133
5134 if (rfn->flags & (LYS_SET_MAX | LYS_SET_MIN)) {
5135 if (node->nodetype == LYS_LIST) {
5136 min = ((struct lysc_node_list*)node)->min;
5137 max = ((struct lysc_node_list*)node)->max;
5138 } else {
5139 min = ((struct lysc_node_leaflist*)node)->min;
5140 max = ((struct lysc_node_leaflist*)node)->max;
5141 }
5142 if (min > max) {
5143 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005144 "Invalid refine of %s statement - \"min-elements\" is bigger than \"max-elements\".",
5145 (rfn->flags & LYS_SET_MAX) ? "max-elements" : "min-elements");
Radek Krejcifc11bd72019-04-11 16:00:05 +02005146 goto cleanup;
Radek Krejcif2271f12019-01-07 16:42:23 +01005147 }
5148 }
5149 }
5150
Radek Krejcic6b4f442020-08-12 14:45:18 +02005151 if (first_p) {
5152 *first_p = context_node_fake.child;
5153 }
Radek Krejci327de162019-06-14 12:52:07 +02005154 lysc_update_path(ctx, NULL, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01005155 ret = LY_SUCCESS;
Radek Krejcifc11bd72019-04-11 16:00:05 +02005156
5157cleanup:
5158 /* fix connection of the children nodes from fake context node back into the parent */
5159 if (context_node_fake.child) {
5160 context_node_fake.child->prev = child;
5161 }
5162 LY_LIST_FOR(context_node_fake.child, child) {
5163 child->parent = parent;
5164 }
5165
5166 if (uses_p->augments || uses_p->refines) {
5167 /* return back actions and notifications in case they were separated for augment/refine processing */
Radek Krejci65e20e22019-04-12 09:44:37 +02005168 if (context_node_fake.actions) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005169 memcpy(&(*actions)[actions_index], context_node_fake.actions, LY_ARRAY_COUNT(context_node_fake.actions) * sizeof **actions);
Radek Krejcifc11bd72019-04-11 16:00:05 +02005170 LY_ARRAY_FREE(context_node_fake.actions);
5171 }
Radek Krejci65e20e22019-04-12 09:44:37 +02005172 if (context_node_fake.notifs) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005173 memcpy(&(*notifs)[notifs_index], context_node_fake.notifs, LY_ARRAY_COUNT(context_node_fake.notifs) * sizeof **notifs);
Radek Krejcifc11bd72019-04-11 16:00:05 +02005174 LY_ARRAY_FREE(context_node_fake.notifs);
5175 }
5176 }
5177
Radek Krejcie86bf772018-12-14 11:39:53 +01005178 /* reload previous context's mod_def */
5179 ctx->mod_def = mod_old;
5180 /* remove the grouping from the stack for circular groupings dependency check */
5181 ly_set_rm_index(&ctx->groupings, ctx->groupings.count - 1, NULL);
5182 assert(ctx->groupings.count == grp_stack_count);
Radek Krejcif2271f12019-01-07 16:42:23 +01005183 ly_set_erase(&refined, NULL);
Radek Krejci3641f562019-02-13 15:38:40 +01005184 LY_ARRAY_FREE(augments);
Radek Krejcie86bf772018-12-14 11:39:53 +01005185
5186 return ret;
5187}
5188
Radek Krejci327de162019-06-14 12:52:07 +02005189static int
5190lys_compile_grouping_pathlog(struct lysc_ctx *ctx, struct lysp_node *node, char **path)
5191{
5192 struct lysp_node *iter;
5193 int len = 0;
5194
5195 *path = NULL;
5196 for (iter = node; iter && len >= 0; iter = iter->parent) {
5197 char *s = *path;
5198 char *id;
5199
5200 switch (iter->nodetype) {
5201 case LYS_USES:
Radek Krejci200f1062020-07-11 22:51:03 +02005202 LY_CHECK_RET(asprintf(&id, "{uses='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005203 break;
5204 case LYS_GROUPING:
Radek Krejci200f1062020-07-11 22:51:03 +02005205 LY_CHECK_RET(asprintf(&id, "{grouping='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005206 break;
5207 case LYS_AUGMENT:
Radek Krejci200f1062020-07-11 22:51:03 +02005208 LY_CHECK_RET(asprintf(&id, "{augment='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005209 break;
5210 default:
5211 id = strdup(iter->name);
5212 break;
5213 }
5214
5215 if (!iter->parent) {
5216 /* print prefix */
5217 len = asprintf(path, "/%s:%s%s", ctx->mod->name, id, s ? s : "");
5218 } else {
5219 /* prefix is the same as in parent */
5220 len = asprintf(path, "/%s%s", id, s ? s : "");
5221 }
5222 free(s);
5223 free(id);
5224 }
5225
5226 if (len < 0) {
5227 free(*path);
5228 *path = NULL;
5229 } else if (len == 0) {
5230 *path = strdup("/");
5231 len = 1;
5232 }
5233 return len;
5234}
5235
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005236/**
5237 * @brief Validate groupings that were defined but not directly used in the schema itself.
5238 *
5239 * The grouping does not need to be compiled (and it is compiled here, but the result is forgotten immediately),
5240 * but to have the complete result of the schema validity, even such groupings are supposed to be checked.
5241 */
5242static LY_ERR
5243lys_compile_grouping(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysp_grp *grp)
5244{
5245 LY_ERR ret;
Radek Krejci327de162019-06-14 12:52:07 +02005246 char *path;
5247 int len;
5248
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005249 struct lysp_node_uses fake_uses = {
5250 .parent = node_p,
5251 .nodetype = LYS_USES,
5252 .flags = 0, .next = NULL,
5253 .name = grp->name,
5254 .dsc = NULL, .ref = NULL, .when = NULL, .iffeatures = NULL, .exts = NULL,
5255 .refines = NULL, .augments = NULL
5256 };
5257 struct lysc_node_container fake_container = {
5258 .nodetype = LYS_CONTAINER,
5259 .flags = node_p ? (node_p->flags & LYS_FLAGS_COMPILED_MASK) : 0,
5260 .module = ctx->mod,
5261 .sp = NULL, .parent = NULL, .next = NULL,
5262 .prev = (struct lysc_node*)&fake_container,
5263 .name = "fake",
5264 .dsc = NULL, .ref = NULL, .exts = NULL, .iffeatures = NULL, .when = NULL,
5265 .child = NULL, .musts = NULL, .actions = NULL, .notifs = NULL
5266 };
5267
5268 if (grp->parent) {
5269 LOGWRN(ctx->ctx, "Locally scoped grouping \"%s\" not used.", grp->name);
5270 }
Radek Krejci327de162019-06-14 12:52:07 +02005271
5272 len = lys_compile_grouping_pathlog(ctx, grp->parent, &path);
5273 if (len < 0) {
5274 LOGMEM(ctx->ctx);
5275 return LY_EMEM;
5276 }
5277 strncpy(ctx->path, path, LYSC_CTX_BUFSIZE - 1);
5278 ctx->path_len = (uint16_t)len;
5279 free(path);
5280
5281 lysc_update_path(ctx, NULL, "{grouping}");
5282 lysc_update_path(ctx, NULL, grp->name);
Radek Krejcic6b4f442020-08-12 14:45:18 +02005283 ret = lys_compile_uses(ctx, &fake_uses, (struct lysc_node*)&fake_container, NULL);
Radek Krejci327de162019-06-14 12:52:07 +02005284 lysc_update_path(ctx, NULL, NULL);
5285 lysc_update_path(ctx, NULL, NULL);
5286
5287 ctx->path_len = 1;
5288 ctx->path[1] = '\0';
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005289
5290 /* cleanup */
5291 lysc_node_container_free(ctx->ctx, &fake_container);
5292
5293 return ret;
5294}
Radek Krejcife909632019-02-12 15:34:42 +01005295
Radek Krejcie86bf772018-12-14 11:39:53 +01005296/**
Radek Krejcia3045382018-11-22 14:30:31 +01005297 * @brief Compile parsed schema node information.
5298 * @param[in] ctx Compile context
5299 * @param[in] node_p Parsed schema node.
Radek Krejcia3045382018-11-22 14:30:31 +01005300 * @param[in] parent Compiled parent node where the current node is supposed to be connected. It is
5301 * NULL for top-level nodes, in such a case the module where the node will be connected is taken from
5302 * the compile context.
Radek Krejcib1b59152019-01-07 13:21:56 +01005303 * @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).
5304 * Zero means no uses, non-zero value with no status bit set mean the default status.
Radek Krejcia3045382018-11-22 14:30:31 +01005305 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
5306 */
Radek Krejci19a96102018-11-15 13:38:09 +01005307static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02005308lys_compile_node(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *parent, uint16_t uses_status)
Radek Krejci19a96102018-11-15 13:38:09 +01005309{
Radek Krejci1c54f462020-05-12 17:25:34 +02005310 LY_ERR ret = LY_SUCCESS;
Radek Krejcic6b4f442020-08-12 14:45:18 +02005311 struct lysc_node *node = NULL;
5312 struct lysc_node_case *cs = NULL;
Radek Krejci00b874b2019-02-12 10:54:50 +01005313 struct lysc_when **when;
Radek Krejci19a96102018-11-15 13:38:09 +01005314 unsigned int u;
Radek Krejciec4da802019-05-02 13:02:41 +02005315 LY_ERR (*node_compile_spec)(struct lysc_ctx*, struct lysp_node*, struct lysc_node*);
Radek Krejci19a96102018-11-15 13:38:09 +01005316
Radek Krejci327de162019-06-14 12:52:07 +02005317 if (node_p->nodetype != LYS_USES) {
5318 lysc_update_path(ctx, parent, node_p->name);
5319 } else {
5320 lysc_update_path(ctx, NULL, "{uses}");
5321 lysc_update_path(ctx, NULL, node_p->name);
5322 }
5323
Radek Krejci19a96102018-11-15 13:38:09 +01005324 switch (node_p->nodetype) {
5325 case LYS_CONTAINER:
5326 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_container));
5327 node_compile_spec = lys_compile_node_container;
5328 break;
5329 case LYS_LEAF:
5330 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_leaf));
5331 node_compile_spec = lys_compile_node_leaf;
5332 break;
5333 case LYS_LIST:
5334 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_list));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005335 node_compile_spec = lys_compile_node_list;
Radek Krejci19a96102018-11-15 13:38:09 +01005336 break;
5337 case LYS_LEAFLIST:
5338 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_leaflist));
Radek Krejci0e5d8382018-11-28 16:37:53 +01005339 node_compile_spec = lys_compile_node_leaflist;
Radek Krejci19a96102018-11-15 13:38:09 +01005340 break;
Radek Krejci19a96102018-11-15 13:38:09 +01005341 case LYS_CHOICE:
5342 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_choice));
Radek Krejci056d0a82018-12-06 16:57:25 +01005343 node_compile_spec = lys_compile_node_choice;
Radek Krejci19a96102018-11-15 13:38:09 +01005344 break;
Radek Krejci19a96102018-11-15 13:38:09 +01005345 case LYS_ANYXML:
5346 case LYS_ANYDATA:
5347 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_anydata));
Radek Krejci9800fb82018-12-13 14:26:23 +01005348 node_compile_spec = lys_compile_node_any;
Radek Krejci19a96102018-11-15 13:38:09 +01005349 break;
Radek Krejcie86bf772018-12-14 11:39:53 +01005350 case LYS_USES:
Radek Krejcic6b4f442020-08-12 14:45:18 +02005351 if (parent && parent->nodetype == LYS_CHOICE) {
5352 assert(node_p->parent->nodetype == LYS_CASE);
5353 lysc_update_path(ctx, parent, node_p->parent->name);
5354 cs = lys_compile_node_case(ctx, node_p->parent, (struct lysc_node_choice*)parent, NULL);
5355 LY_CHECK_ERR_GOTO(!cs, ret = LY_EVALID, error);
5356 }
5357
5358 ret = lys_compile_uses(ctx, (struct lysp_node_uses*)node_p, cs ? (struct lysc_node*)cs : parent, &node);
5359 if (cs) {
5360 cs->child = node;
5361 lysc_update_path(ctx, NULL, NULL);
5362 }
Radek Krejci327de162019-06-14 12:52:07 +02005363 lysc_update_path(ctx, NULL, NULL);
5364 lysc_update_path(ctx, NULL, NULL);
5365 return ret;
Radek Krejci19a96102018-11-15 13:38:09 +01005366 default:
5367 LOGINT(ctx->ctx);
5368 return LY_EINT;
5369 }
5370 LY_CHECK_ERR_RET(!node, LOGMEM(ctx->ctx), LY_EMEM);
5371 node->nodetype = node_p->nodetype;
5372 node->module = ctx->mod;
5373 node->prev = node;
Radek Krejci0e5d8382018-11-28 16:37:53 +01005374 node->flags = node_p->flags & LYS_FLAGS_COMPILED_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +01005375
5376 /* config */
Radek Krejciec4da802019-05-02 13:02:41 +02005377 if (ctx->options & (LYSC_OPT_RPC_INPUT | LYSC_OPT_RPC_OUTPUT)) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005378 /* ignore config statements inside RPC/action data */
Radek Krejcifc11bd72019-04-11 16:00:05 +02005379 node->flags &= ~LYS_CONFIG_MASK;
Radek Krejciec4da802019-05-02 13:02:41 +02005380 node->flags |= (ctx->options & LYSC_OPT_RPC_INPUT) ? LYS_CONFIG_W : LYS_CONFIG_R;
5381 } else if (ctx->options & LYSC_OPT_NOTIFICATION) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005382 /* ignore config statements inside Notification data */
Radek Krejcifc11bd72019-04-11 16:00:05 +02005383 node->flags &= ~LYS_CONFIG_MASK;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005384 node->flags |= LYS_CONFIG_R;
5385 } else if (!(node->flags & LYS_CONFIG_MASK)) {
Radek Krejci19a96102018-11-15 13:38:09 +01005386 /* config not explicitely set, inherit it from parent */
5387 if (parent) {
5388 node->flags |= parent->flags & LYS_CONFIG_MASK;
5389 } else {
5390 /* default is config true */
5391 node->flags |= LYS_CONFIG_W;
5392 }
Radek Krejci93dcc392019-02-19 10:43:38 +01005393 } else {
5394 /* config set explicitely */
5395 node->flags |= LYS_SET_CONFIG;
Radek Krejci19a96102018-11-15 13:38:09 +01005396 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005397 if (parent && (parent->flags & LYS_CONFIG_R) && (node->flags & LYS_CONFIG_W)) {
5398 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
5399 "Configuration node cannot be child of any state data node.");
Radek Krejci1c54f462020-05-12 17:25:34 +02005400 ret = LY_EVALID;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005401 goto error;
5402 }
Radek Krejci19a96102018-11-15 13:38:09 +01005403
Radek Krejcia6d57732018-11-29 13:40:37 +01005404 /* *list ordering */
5405 if (node->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
5406 if ((node->flags & LYS_CONFIG_R) && (node->flags & LYS_ORDBY_MASK)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02005407 LOGWRN(ctx->ctx, "The ordered-by statement is ignored in lists representing %s (%s).",
Radek Krejciec4da802019-05-02 13:02:41 +02005408 (ctx->options & LYSC_OPT_RPC_OUTPUT) ? "RPC/action output parameters" :
5409 (ctx->options & LYSC_OPT_NOTIFICATION) ? "notification content" : "state data", ctx->path);
Radek Krejcia6d57732018-11-29 13:40:37 +01005410 node->flags &= ~LYS_ORDBY_MASK;
5411 node->flags |= LYS_ORDBY_SYSTEM;
5412 } else if (!(node->flags & LYS_ORDBY_MASK)) {
5413 /* default ordering is system */
5414 node->flags |= LYS_ORDBY_SYSTEM;
5415 }
5416 }
5417
Radek Krejci19a96102018-11-15 13:38:09 +01005418 /* status - it is not inherited by specification, but it does not make sense to have
5419 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
Radek Krejci056d0a82018-12-06 16:57:25 +01005420 if (!parent || parent->nodetype != LYS_CHOICE) {
5421 /* in case of choice/case's children, postpone the check to the moment we know if
5422 * the parent is choice (parent here) or some case (so we have to get its flags to check) */
Radek Krejci1c54f462020-05-12 17:25:34 +02005423 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 +01005424 }
5425
Radek Krejciec4da802019-05-02 13:02:41 +02005426 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Radek Krejci19a96102018-11-15 13:38:09 +01005427 node->sp = node_p;
5428 }
5429 DUP_STRING(ctx->ctx, node_p->name, node->name);
Radek Krejci12fb9142019-01-08 09:45:30 +01005430 DUP_STRING(ctx->ctx, node_p->dsc, node->dsc);
5431 DUP_STRING(ctx->ctx, node_p->ref, node->ref);
Radek Krejci00b874b2019-02-12 10:54:50 +01005432 if (node_p->when) {
5433 LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error);
Radek Krejci1c54f462020-05-12 17:25:34 +02005434 LY_CHECK_GOTO(ret = lys_compile_when(ctx, node_p->when, node_p->flags, node, when), error);
Michal Vasko175012e2019-11-06 15:49:14 +01005435
5436 if (!(ctx->options & LYSC_OPT_GROUPING)) {
5437 /* do not check "when" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02005438 ly_set_add(&ctx->xpath, node, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01005439 }
Radek Krejci00b874b2019-02-12 10:54:50 +01005440 }
Radek Krejciec4da802019-05-02 13:02:41 +02005441 COMPILE_ARRAY_GOTO(ctx, node_p->iffeatures, node->iffeatures, u, lys_compile_iffeature, ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01005442
5443 /* nodetype-specific part */
Radek Krejci1c54f462020-05-12 17:25:34 +02005444 LY_CHECK_GOTO(ret = node_compile_spec(ctx, node_p, node), error);
Radek Krejci19a96102018-11-15 13:38:09 +01005445
Radek Krejci0935f412019-08-20 16:15:18 +02005446 COMPILE_EXTS_GOTO(ctx, node_p->exts, node->exts, node, LYEXT_PAR_NODE, ret, error);
5447
Radek Krejcife909632019-02-12 15:34:42 +01005448 /* inherit LYS_MAND_TRUE in parent containers */
5449 if (node->flags & LYS_MAND_TRUE) {
5450 lys_compile_mandatory_parents(parent, 1);
5451 }
5452
Radek Krejci327de162019-06-14 12:52:07 +02005453 lysc_update_path(ctx, NULL, NULL);
5454
Radek Krejci19a96102018-11-15 13:38:09 +01005455 /* insert into parent's children */
Radek Krejcia3045382018-11-22 14:30:31 +01005456 if (parent) {
5457 if (parent->nodetype == LYS_CHOICE) {
Radek Krejci327de162019-06-14 12:52:07 +02005458 if (node_p->parent->nodetype == LYS_CASE) {
5459 lysc_update_path(ctx, parent, node_p->parent->name);
5460 } else {
5461 lysc_update_path(ctx, parent, node->name);
5462 }
Radek Krejciec4da802019-05-02 13:02:41 +02005463 cs = lys_compile_node_case(ctx, node_p->parent, (struct lysc_node_choice*)parent, node);
Radek Krejci056d0a82018-12-06 16:57:25 +01005464 LY_CHECK_ERR_GOTO(!cs, ret = LY_EVALID, error);
Radek Krejcib1b59152019-01-07 13:21:56 +01005465 if (uses_status) {
5466
5467 }
Radek Krejci056d0a82018-12-06 16:57:25 +01005468 /* the postponed status check of the node and its real parent - in case of implicit case,
Radek Krejcib1b59152019-01-07 13:21:56 +01005469 * it directly gets the same status flags as the choice;
5470 * uses_status cannot be applied here since uses cannot be child statement of choice */
Radek Krejci1c54f462020-05-12 17:25:34 +02005471 LY_CHECK_GOTO(ret = lys_compile_status(ctx, &node->flags, cs->flags), error);
Radek Krejci056d0a82018-12-06 16:57:25 +01005472 node->parent = (struct lysc_node*)cs;
Radek Krejci327de162019-06-14 12:52:07 +02005473 lysc_update_path(ctx, parent, node->name);
Radek Krejci056d0a82018-12-06 16:57:25 +01005474 } else { /* other than choice */
Radek Krejci327de162019-06-14 12:52:07 +02005475 lysc_update_path(ctx, parent, node->name);
Radek Krejci056d0a82018-12-06 16:57:25 +01005476 node->parent = parent;
Radek Krejci19a96102018-11-15 13:38:09 +01005477 }
Radek Krejciec4da802019-05-02 13:02:41 +02005478 LY_CHECK_RET(lys_compile_node_connect(ctx, parent->nodetype == LYS_CASE ? parent->parent : parent, node), LY_EVALID);
Radek Krejci327de162019-06-14 12:52:07 +02005479
5480 if (parent->nodetype == LYS_CHOICE) {
5481 lysc_update_path(ctx, NULL, NULL);
5482 }
Radek Krejci19a96102018-11-15 13:38:09 +01005483 } else {
5484 /* top-level element */
5485 if (!ctx->mod->compiled->data) {
5486 ctx->mod->compiled->data = node;
5487 } else {
5488 /* insert at the end of the module's top-level nodes list */
5489 ctx->mod->compiled->data->prev->next = node;
5490 node->prev = ctx->mod->compiled->data->prev;
5491 ctx->mod->compiled->data->prev = node;
5492 }
Radek Krejci327de162019-06-14 12:52:07 +02005493 lysc_update_path(ctx, parent, node->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01005494 if (lys_compile_node_uniqness(ctx, ctx->mod->compiled->data, ctx->mod->compiled->rpcs,
5495 ctx->mod->compiled->notifs, node->name, node)) {
5496 return LY_EVALID;
5497 }
Radek Krejci19a96102018-11-15 13:38:09 +01005498 }
Radek Krejci327de162019-06-14 12:52:07 +02005499 lysc_update_path(ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01005500
5501 return LY_SUCCESS;
5502
5503error:
5504 lysc_node_free(ctx->ctx, node);
5505 return ret;
5506}
5507
Radek Krejciccd20f12019-02-15 14:12:27 +01005508static void
5509lysc_disconnect(struct lysc_node *node)
5510{
Radek Krejci0a048dd2019-02-18 16:01:43 +01005511 struct lysc_node *parent, *child, *prev = NULL, *next;
5512 struct lysc_node_case *cs = NULL;
Radek Krejciccd20f12019-02-15 14:12:27 +01005513 int remove_cs = 0;
5514
5515 parent = node->parent;
5516
5517 /* parent's first child */
5518 if (!parent) {
5519 return;
5520 }
5521 if (parent->nodetype == LYS_CHOICE) {
Radek Krejci0a048dd2019-02-18 16:01:43 +01005522 cs = (struct lysc_node_case*)node;
5523 } else if (parent->nodetype == LYS_CASE) {
5524 /* disconnecting some node in a case */
5525 cs = (struct lysc_node_case*)parent;
5526 parent = cs->parent;
5527 for (child = cs->child; child && child->parent == (struct lysc_node*)cs; child = child->next) {
5528 if (child == node) {
5529 if (cs->child == child) {
5530 if (!child->next || child->next->parent != (struct lysc_node*)cs) {
5531 /* case with a single child -> remove also the case */
5532 child->parent = NULL;
5533 remove_cs = 1;
5534 } else {
5535 cs->child = child->next;
Radek Krejciccd20f12019-02-15 14:12:27 +01005536 }
5537 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005538 break;
Radek Krejciccd20f12019-02-15 14:12:27 +01005539 }
5540 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005541 if (!remove_cs) {
5542 cs = NULL;
5543 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005544 } else if (lysc_node_children(parent, node->flags) == node) {
5545 *lysc_node_children_p(parent, node->flags) = node->next;
Radek Krejci0a048dd2019-02-18 16:01:43 +01005546 }
5547
5548 if (cs) {
5549 if (remove_cs) {
5550 /* cs has only one child which is being also removed */
5551 lysc_disconnect((struct lysc_node*)cs);
5552 lysc_node_free(cs->module->ctx, (struct lysc_node*)cs);
5553 } else {
Radek Krejciccd20f12019-02-15 14:12:27 +01005554 if (((struct lysc_node_choice*)parent)->dflt == cs) {
5555 /* default case removed */
5556 ((struct lysc_node_choice*)parent)->dflt = NULL;
5557 }
5558 if (((struct lysc_node_choice*)parent)->cases == cs) {
5559 /* first case removed */
5560 ((struct lysc_node_choice*)parent)->cases = (struct lysc_node_case*)cs->next;
5561 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005562 if (cs->child) {
5563 /* cs will be removed and disconnected from its siblings, but we have to take care also about its children */
5564 if (cs->child->prev->parent != (struct lysc_node*)cs) {
5565 prev = cs->child->prev;
5566 } /* else all the children are under a single case */
5567 LY_LIST_FOR_SAFE(cs->child, next, child) {
5568 if (child->parent != (struct lysc_node*)cs) {
5569 break;
5570 }
5571 lysc_node_free(node->module->ctx, child);
5572 }
5573 if (prev) {
5574 if (prev->next) {
5575 prev->next = child;
5576 }
5577 if (child) {
5578 child->prev = prev;
5579 } else {
5580 /* link from the first child under the cases */
5581 ((struct lysc_node_choice*)cs->parent)->cases->child->prev = prev;
5582 }
5583 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005584 }
5585 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005586 }
5587
5588 /* siblings */
Radek Krejci0a048dd2019-02-18 16:01:43 +01005589 if (node->prev->next) {
5590 node->prev->next = node->next;
5591 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005592 if (node->next) {
5593 node->next->prev = node->prev;
Radek Krejci0a048dd2019-02-18 16:01:43 +01005594 } else if (node->nodetype != LYS_CASE) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005595 child = (struct lysc_node*)lysc_node_children(parent, node->flags);
Radek Krejci0a048dd2019-02-18 16:01:43 +01005596 if (child) {
5597 child->prev = node->prev;
5598 }
5599 } else if (((struct lysc_node_choice*)parent)->cases) {
5600 ((struct lysc_node_choice*)parent)->cases->prev = node->prev;
Radek Krejciccd20f12019-02-15 14:12:27 +01005601 }
5602}
5603
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02005604struct lysc_deviation {
5605 const char *nodeid;
5606 struct lysc_node *target; /* target node of the deviation */
5607 struct lysp_deviate** deviates;/* sized array of pointers to parsed deviate statements to apply on target */
5608 uint16_t flags; /* target's flags from lys_resolve_schema_nodeid() */
5609 uint8_t not_supported; /* flag if deviates contains not-supported deviate */
5610};
5611
5612/**
5613 * @brief Apply all deviations of one target node.
5614 *
5615 * @param[in] ctx Compile context.
5616 * @param[in] dev Deviation structure to apply.
5617 * @return LY_ERR value.
5618 */
5619static LY_ERR
5620lys_apply_deviation(struct lysc_ctx *ctx, struct lysc_deviation *dev)
Radek Krejciccd20f12019-02-15 14:12:27 +01005621{
Radek Krejcia1911222019-07-22 17:24:50 +02005622 LY_ERR ret = LY_EVALID, rc;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02005623 struct lysc_node *target = dev->target;
5624 struct lysc_node_leaf *leaf = (struct lysc_node_leaf *)target;
5625 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist *)target;
5626 struct ly_err_item *err = NULL;
Radek Krejci7af64242019-02-18 13:07:53 +01005627 struct lysc_node_list *list;
Radek Krejcifc11bd72019-04-11 16:00:05 +02005628 struct lysc_action *rpcs;
5629 struct lysc_notif *notifs;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02005630 struct lysp_deviate *d;
Radek Krejciccd20f12019-02-15 14:12:27 +01005631 struct lysp_deviate_add *d_add;
5632 struct lysp_deviate_del *d_del;
5633 struct lysp_deviate_rpl *d_rpl;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02005634 LY_ARRAY_COUNT_TYPE v, x, y, z;
5635 int i, changed_type = 0;
Radek Krejciccd20f12019-02-15 14:12:27 +01005636 size_t prefix_len, name_len;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02005637 const char *prefix, *name, *nodeid, *dflt = NULL;
5638 struct lys_module *mod;
Radek Krejci551b12c2019-02-19 16:11:21 +01005639 uint32_t min, max;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02005640
5641 /* MACROS for deviates checking */
5642#define DEV_CHECK_NODETYPE(NODETYPES, DEVTYPE, PROPERTY) \
5643 if (!(target->nodetype & (NODETYPES))) { \
5644 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, lys_nodetype2str(target->nodetype), DEVTYPE, PROPERTY);\
5645 goto cleanup; \
5646 }
5647
5648#define DEV_CHECK_CARDINALITY(ARRAY, MAX, PROPERTY) \
5649 if (LY_ARRAY_COUNT(ARRAY) > MAX) { \
5650 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid deviation of %s with too many (%"LY_PRI_ARRAY_COUNT_TYPE") %s properties.", \
5651 lys_nodetype2str(target->nodetype), LY_ARRAY_COUNT(ARRAY), PROPERTY); \
5652 goto cleanup; \
5653 }
5654
5655
5656#define DEV_CHECK_NONPRESENCE(TYPE, COND, MEMBER, PROPERTY, VALUEMEMBER) \
5657 if (((TYPE)target)->MEMBER && (COND)) { \
5658 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5659 "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", \
5660 PROPERTY, ((TYPE)target)->VALUEMEMBER); \
5661 goto cleanup; \
5662 }
5663
5664#define DEV_CHECK_NONPRESENCE_VALUE(TYPE, COND, MEMBER, PROPERTY, VALUEMEMBER, VALUEMODMEMBER) \
5665 if (((TYPE)target)->MEMBER && (COND)) { \
5666 int dynamic_ = 0; const char *val_; \
5667 val_ = ((TYPE)target)->VALUEMEMBER->realtype->plugin->print(((TYPE)target)->VALUEMEMBER, LYD_XML, \
5668 lys_get_prefix, ((TYPE)target)->VALUEMODMEMBER, &dynamic_); \
5669 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5670 "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", PROPERTY, val_); \
5671 if (dynamic_) {free((void*)val_);} \
5672 goto cleanup; \
5673 }
5674
5675#define DEV_CHECK_NONPRESENCE_UINT(TYPE, COND, MEMBER, PROPERTY) \
5676 if (((TYPE)target)->MEMBER COND) { \
5677 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5678 "Invalid deviation adding \"%s\" property which already exists (with value \"%u\").", \
5679 PROPERTY, ((TYPE)target)->MEMBER); \
5680 goto cleanup; \
5681 }
5682
5683#define DEV_CHECK_PRESENCE(TYPE, COND, MEMBER, DEVTYPE, PROPERTY, VALUE) \
5684 if (!((TYPE)target)->MEMBER || COND) { \
5685 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \
5686 goto cleanup; \
5687 }
5688
5689#define DEV_CHECK_PRESENCE_UINT(TYPE, COND, MEMBER, PROPERTY) \
5690 if (!(((TYPE)target)->MEMBER COND)) { \
5691 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5692 "Invalid deviation replacing with \"%s\" property \"%u\" which is not present.", PROPERTY, d_rpl->MEMBER); \
5693 goto cleanup; \
5694 }
5695
5696#define DEV_DEL_ARRAY(TYPE, ARRAY_TRG, ARRAY_DEV, VALMEMBER, VALMEMBER_CMP, DELFUNC_DEREF, DELFUNC, PROPERTY) \
5697 DEV_CHECK_PRESENCE(TYPE, 0, ARRAY_TRG, "deleting", PROPERTY, d_del->ARRAY_DEV[0]VALMEMBER); \
5698 LY_ARRAY_FOR(d_del->ARRAY_DEV, x) { \
5699 LY_ARRAY_FOR(((TYPE)target)->ARRAY_TRG, y) { \
5700 if (!strcmp(((TYPE)target)->ARRAY_TRG[y]VALMEMBER_CMP, d_del->ARRAY_DEV[x]VALMEMBER)) { break; } \
5701 } \
5702 if (y == LY_ARRAY_COUNT(((TYPE)target)->ARRAY_TRG)) { \
5703 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5704 "Invalid deviation deleting \"%s\" property \"%s\" which does not match any of the target's property values.", \
5705 PROPERTY, d_del->ARRAY_DEV[x]VALMEMBER); \
5706 goto cleanup; \
5707 } \
5708 LY_ARRAY_DECREMENT(((TYPE)target)->ARRAY_TRG); \
5709 DELFUNC(ctx->ctx, DELFUNC_DEREF((TYPE)target)->ARRAY_TRG[y]); \
5710 memmove(&((TYPE)target)->ARRAY_TRG[y], \
5711 &((TYPE)target)->ARRAY_TRG[y + 1], \
5712 (LY_ARRAY_COUNT(((TYPE)target)->ARRAY_TRG) - y) * (sizeof *((TYPE)target)->ARRAY_TRG)); \
5713 } \
5714 if (!LY_ARRAY_COUNT(((TYPE)target)->ARRAY_TRG)) { \
5715 LY_ARRAY_FREE(((TYPE)target)->ARRAY_TRG); \
5716 ((TYPE)target)->ARRAY_TRG = NULL; \
5717 }
5718
5719 lysc_update_path(ctx, NULL, dev->nodeid);
5720
5721 /* not-supported */
5722 if (dev->not_supported) {
5723 if (LY_ARRAY_COUNT(dev->deviates) > 1) {
5724 LOGWRN(ctx->ctx, "Useless multiple (%"LY_PRI_ARRAY_COUNT_TYPE") deviates on node \"%s\" since the node is not-supported.",
5725 LY_ARRAY_COUNT(dev->deviates), dev->nodeid);
5726 }
5727
5728#define REMOVE_NONDATA(ARRAY, TYPE, GETFUNC, FREEFUNC) \
5729 if (target->parent) { \
5730 ARRAY = (TYPE*)GETFUNC(target->parent); \
5731 } else { \
5732 ARRAY = target->module->compiled->ARRAY; \
5733 } \
5734 LY_ARRAY_FOR(ARRAY, x) { \
5735 if (&ARRAY[x] == (TYPE*)target) { break; } \
5736 } \
5737 if (x < LY_ARRAY_COUNT(ARRAY)) { \
5738 FREEFUNC(ctx->ctx, &ARRAY[x]); \
5739 memmove(&ARRAY[x], &ARRAY[x + 1], (LY_ARRAY_COUNT(ARRAY) - (x + 1)) * sizeof *ARRAY); \
5740 LY_ARRAY_DECREMENT(ARRAY); \
5741 }
5742
5743 if (target->nodetype & (LYS_RPC | LYS_ACTION)) {
5744 if (dev->flags & LYSC_OPT_RPC_INPUT) {
5745 /* remove RPC's/action's input */
5746 lysc_action_inout_free(ctx->ctx, &((struct lysc_action*)target)->input);
5747 memset(&((struct lysc_action*)target)->input, 0, sizeof ((struct lysc_action*)target)->input);
5748 FREE_ARRAY(ctx->ctx, ((struct lysc_action*)target)->input_exts, lysc_ext_instance_free);
5749 ((struct lysc_action*)target)->input_exts = NULL;
5750 } else if (dev->flags & LYSC_OPT_RPC_OUTPUT) {
5751 /* remove RPC's/action's output */
5752 lysc_action_inout_free(ctx->ctx, &((struct lysc_action*)target)->output);
5753 memset(&((struct lysc_action*)target)->output, 0, sizeof ((struct lysc_action*)target)->output);
5754 FREE_ARRAY(ctx->ctx, ((struct lysc_action*)target)->output_exts, lysc_ext_instance_free);
5755 ((struct lysc_action*)target)->output_exts = NULL;
5756 } else {
5757 /* remove RPC/action */
5758 REMOVE_NONDATA(rpcs, struct lysc_action, lysc_node_actions, lysc_action_free);
5759 }
5760 } else if (target->nodetype == LYS_NOTIF) {
5761 /* remove Notification */
5762 REMOVE_NONDATA(notifs, struct lysc_notif, lysc_node_notifs, lysc_notif_free);
5763 } else {
5764 /* remove the target node */
5765 lysc_disconnect(target);
5766 lysc_node_free(ctx->ctx, target);
5767 }
5768
5769 /* mark the context for later re-compilation of objects that could reference the curently removed node */
5770 ctx->ctx->flags |= LY_CTX_CHANGED_TREE;
5771 return LY_SUCCESS;
5772 }
5773
5774 /* list of deviates (not-supported is not present in the list) */
5775 LY_ARRAY_FOR(dev->deviates, v) {
5776 d = dev->deviates[v];
5777
5778 switch (d->mod) {
5779 case LYS_DEV_ADD:
5780 d_add = (struct lysp_deviate_add*)d;
5781 /* [units-stmt] */
5782 if (d_add->units) {
5783 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "add", "units");
5784 DEV_CHECK_NONPRESENCE(struct lysc_node_leaf*, (target->flags & LYS_SET_UNITS), units, "units", units);
5785
5786 FREE_STRING(ctx->ctx, ((struct lysc_node_leaf*)target)->units);
5787 DUP_STRING(ctx->ctx, d_add->units, ((struct lysc_node_leaf*)target)->units);
5788 }
5789
5790 /* *must-stmt */
5791 if (d_add->musts) {
5792 switch (target->nodetype) {
5793 case LYS_CONTAINER:
5794 case LYS_LIST:
5795 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_node_container*)target)->musts,
5796 x, lys_compile_must, ret, cleanup);
5797 break;
5798 case LYS_LEAF:
5799 case LYS_LEAFLIST:
5800 case LYS_ANYDATA:
5801 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_node_leaf*)target)->musts,
5802 x, lys_compile_must, ret, cleanup);
5803 break;
5804 case LYS_NOTIF:
5805 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_notif*)target)->musts,
5806 x, lys_compile_must, ret, cleanup);
5807 break;
5808 case LYS_RPC:
5809 case LYS_ACTION:
5810 if (dev->flags & LYSC_OPT_RPC_INPUT) {
5811 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_action*)target)->input.musts,
5812 x, lys_compile_must, ret, cleanup);
5813 break;
5814 } else if (dev->flags & LYSC_OPT_RPC_OUTPUT) {
5815 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_action*)target)->output.musts,
5816 x, lys_compile_must, ret, cleanup);
5817 break;
5818 }
5819 /* fall through */
5820 default:
5821 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5822 lys_nodetype2str(target->nodetype), "add", "must");
5823 goto cleanup;
5824 }
5825 ly_set_add(&ctx->xpath, target, 0);
5826 }
5827
5828 /* *unique-stmt */
5829 if (d_add->uniques) {
5830 DEV_CHECK_NODETYPE(LYS_LIST, "add", "unique");
5831 LY_CHECK_GOTO(lys_compile_node_list_unique(ctx, ctx->mod, d_add->uniques, (struct lysc_node_list*)target), cleanup);
5832 }
5833
5834 /* *default-stmt */
5835 if (d_add->dflts) {
5836 switch (target->nodetype) {
5837 case LYS_LEAF:
5838 DEV_CHECK_CARDINALITY(d_add->dflts, 1, "default");
5839 DEV_CHECK_NONPRESENCE_VALUE(struct lysc_node_leaf*, (target->flags & LYS_SET_DFLT), dflt, "default", dflt, dflt_mod);
5840 if (leaf->dflt) {
5841 /* first, remove the default value taken from the type */
5842 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
5843 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
5844 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
5845 } else {
5846 /* prepare new default value storage */
5847 leaf->dflt = calloc(1, sizeof *leaf->dflt);
5848 }
5849 dflt = d_add->dflts[0];
5850 /* parsing is done at the end after possible replace of the leaf's type */
5851
5852 /* mark the new default values as leaf's own */
5853 target->flags |= LYS_SET_DFLT;
5854 break;
5855 case LYS_LEAFLIST:
5856 if (llist->dflts && !(target->flags & LYS_SET_DFLT)) {
5857 /* first, remove the default value taken from the type */
5858 LY_ARRAY_FOR(llist->dflts, x) {
5859 lysc_incomplete_dflts_remove(ctx, llist->dflts[x]);
5860 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
5861 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
5862 free(llist->dflts[x]);
5863 }
5864 LY_ARRAY_FREE(llist->dflts);
5865 llist->dflts = NULL;
5866 LY_ARRAY_FREE(llist->dflts_mods);
5867 llist->dflts_mods = NULL;
5868 }
5869 /* add new default value(s) */
5870 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts_mods, LY_ARRAY_COUNT(d_add->dflts), ret, cleanup);
5871 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_COUNT(d_add->dflts), ret, cleanup);
5872 for (x = y = LY_ARRAY_COUNT(llist->dflts);
5873 x < LY_ARRAY_COUNT(d_add->dflts) + y; ++x) {
5874 LY_ARRAY_INCREMENT(llist->dflts_mods);
5875 llist->dflts_mods[x] = ctx->mod_def;
5876 LY_ARRAY_INCREMENT(llist->dflts);
5877 llist->dflts[x] = calloc(1, sizeof *llist->dflts[x]);
5878 llist->dflts[x]->realtype = llist->type;
5879 rc = llist->type->plugin->store(ctx->ctx, llist->type, d_add->dflts[x - y], strlen(d_add->dflts[x - y]),
5880 LY_TYPE_OPTS_INCOMPLETE_DATA |LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE, lys_resolve_prefix,
5881 (void*)llist->dflts_mods[x], LYD_XML, target, NULL, llist->dflts[x], NULL, &err);
5882 llist->dflts[x]->realtype->refcount++;
5883 if (err) {
5884 ly_err_print(err);
5885 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
5886 "Invalid deviation adding \"default\" property \"%s\" which does not fit the type (%s).",
5887 d_add->dflts[x - y], err->msg);
5888 ly_err_free(err);
5889 }
5890 if (rc == LY_EINCOMPLETE) {
5891 /* postpone default compilation when the tree is complete */
5892 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, target, llist->dflts[x], llist->dflts_mods[x]), cleanup);
5893
5894 /* but in general result is so far ok */
5895 rc = LY_SUCCESS;
5896 }
5897 LY_CHECK_GOTO(rc, cleanup);
5898 }
5899 /* mark the new default values as leaf-list's own */
5900 target->flags |= LYS_SET_DFLT;
5901 break;
5902 case LYS_CHOICE:
5903 DEV_CHECK_CARDINALITY(d_add->dflts, 1, "default");
5904 DEV_CHECK_NONPRESENCE(struct lysc_node_choice*, 1, dflt, "default", dflt->name);
5905 /* in contrast to delete, here we strictly resolve the prefix in the module of the deviation
5906 * to allow making the default case even the augmented case from the deviating module */
5907 if (lys_compile_deviation_set_choice_dflt(ctx, d_add->dflts[0], (struct lysc_node_choice*)target)) {
5908 goto cleanup;
5909 }
5910 break;
5911 default:
5912 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5913 lys_nodetype2str(target->nodetype), "add", "default");
5914 goto cleanup;
5915 }
5916 }
5917
5918 /* [config-stmt] */
5919 if (d_add->flags & LYS_CONFIG_MASK) {
5920 if (target->nodetype & (LYS_CASE | LYS_INOUT | LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
5921 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5922 lys_nodetype2str(target->nodetype), "add", "config");
5923 goto cleanup;
5924 }
5925 if (dev->flags) {
5926 LOGWRN(ctx->ctx, "Deviating config inside %s has no effect.",
5927 dev->flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action");
5928 }
5929 if (target->flags & LYS_SET_CONFIG) {
5930 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5931 "Invalid deviation adding \"config\" property which already exists (with value \"config %s\").",
5932 target->flags & LYS_CONFIG_W ? "true" : "false");
5933 goto cleanup;
5934 }
5935 LY_CHECK_GOTO(lys_compile_change_config(ctx, target, d_add->flags, 0, 0), cleanup);
5936 }
5937
5938 /* [mandatory-stmt] */
5939 if (d_add->flags & LYS_MAND_MASK) {
5940 if (target->flags & LYS_MAND_MASK) {
5941 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5942 "Invalid deviation adding \"mandatory\" property which already exists (with value \"mandatory %s\").",
5943 target->flags & LYS_MAND_TRUE ? "true" : "false");
5944 goto cleanup;
5945 }
5946 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, target, d_add->flags, 0), cleanup);
5947 }
5948
5949 /* [min-elements-stmt] */
5950 if (d_add->flags & LYS_SET_MIN) {
5951 if (target->nodetype == LYS_LEAFLIST) {
5952 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_leaflist*, > 0, min, "min-elements");
5953 /* change value */
5954 ((struct lysc_node_leaflist*)target)->min = d_add->min;
5955 } else if (target->nodetype == LYS_LIST) {
5956 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_list*, > 0, min, "min-elements");
5957 /* change value */
5958 ((struct lysc_node_list*)target)->min = d_add->min;
5959 } else {
5960 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5961 lys_nodetype2str(target->nodetype), "add", "min-elements");
5962 goto cleanup;
5963 }
5964 if (d_add->min) {
5965 target->flags |= LYS_MAND_TRUE;
5966 }
5967 }
5968
5969 /* [max-elements-stmt] */
5970 if (d_add->flags & LYS_SET_MAX) {
5971 if (target->nodetype == LYS_LEAFLIST) {
5972 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_leaflist*, < (uint32_t)-1, max, "max-elements");
5973 /* change value */
5974 ((struct lysc_node_leaflist*)target)->max = d_add->max ? d_add->max : (uint32_t)-1;
5975 } else if (target->nodetype == LYS_LIST) {
5976 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_list*, < (uint32_t)-1, max, "max-elements");
5977 /* change value */
5978 ((struct lysc_node_list*)target)->max = d_add->max ? d_add->max : (uint32_t)-1;
5979 } else {
5980 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5981 lys_nodetype2str(target->nodetype), "add", "max-elements");
5982 goto cleanup;
5983 }
5984 }
5985
5986 break;
5987 case LYS_DEV_DELETE:
5988 d_del = (struct lysp_deviate_del*)d;
5989
5990 /* [units-stmt] */
5991 if (d_del->units) {
5992 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "delete", "units");
5993 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, 0, units, "deleting", "units", d_del->units);
5994 if (strcmp(((struct lysc_node_leaf*)target)->units, d_del->units)) {
5995 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5996 "Invalid deviation deleting \"units\" property \"%s\" which does not match the target's property value \"%s\".",
5997 d_del->units, ((struct lysc_node_leaf*)target)->units);
5998 goto cleanup;
5999 }
6000 lydict_remove(ctx->ctx, ((struct lysc_node_leaf*)target)->units);
6001 ((struct lysc_node_leaf*)target)->units = NULL;
6002 }
6003
6004 /* *must-stmt */
6005 if (d_del->musts) {
6006 switch (target->nodetype) {
6007 case LYS_CONTAINER:
6008 case LYS_LIST:
6009 DEV_DEL_ARRAY(struct lysc_node_container*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
6010 break;
6011 case LYS_LEAF:
6012 case LYS_LEAFLIST:
6013 case LYS_ANYDATA:
6014 DEV_DEL_ARRAY(struct lysc_node_leaf*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
6015 break;
6016 case LYS_NOTIF:
6017 DEV_DEL_ARRAY(struct lysc_notif*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
6018 break;
6019 case LYS_RPC:
6020 case LYS_ACTION:
6021 if (dev->flags & LYSC_OPT_RPC_INPUT) {
6022 DEV_DEL_ARRAY(struct lysc_action*, input.musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
6023 break;
6024 } else if (dev->flags & LYSC_OPT_RPC_OUTPUT) {
6025 DEV_DEL_ARRAY(struct lysc_action*, output.musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
6026 break;
6027 }
6028 /* fall through */
6029 default:
6030 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6031 lys_nodetype2str(target->nodetype), "delete", "must");
6032 goto cleanup;
6033 }
6034 }
6035
6036 /* *unique-stmt */
6037 if (d_del->uniques) {
6038 DEV_CHECK_NODETYPE(LYS_LIST, "delete", "unique");
6039 list = (struct lysc_node_list*)target; /* shortcut */
6040 LY_ARRAY_FOR(d_del->uniques, x) {
6041 LY_ARRAY_FOR(list->uniques, z) {
6042 for (name = d_del->uniques[x], y = 0; name; name = nodeid, ++y) {
6043 nodeid = strpbrk(name, " \t\n");
6044 if (nodeid) {
6045 if (ly_strncmp(list->uniques[z][y]->name, name, nodeid - name)) {
6046 break;
6047 }
6048 while (isspace(*nodeid)) {
6049 ++nodeid;
6050 }
6051 } else {
6052 if (strcmp(name, list->uniques[z][y]->name)) {
6053 break;
6054 }
6055 }
6056 }
6057 if (!name) {
6058 /* complete match - remove the unique */
6059 LY_ARRAY_DECREMENT(list->uniques);
6060 LY_ARRAY_FREE(list->uniques[z]);
6061 memmove(&list->uniques[z], &list->uniques[z + 1], (LY_ARRAY_COUNT(list->uniques) - z) * (sizeof *list->uniques));
6062 --z;
6063 break;
6064 }
6065 }
6066 if (!list->uniques || z == LY_ARRAY_COUNT(list->uniques)) {
6067 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6068 "Invalid deviation deleting \"unique\" property \"%s\" which does not match any of the target's property values.",
6069 d_del->uniques[x]);
6070 goto cleanup;
6071 }
6072 }
6073 if (!LY_ARRAY_COUNT(list->uniques)) {
6074 LY_ARRAY_FREE(list->uniques);
6075 list->uniques = NULL;
6076 }
6077 }
6078
6079 /* *default-stmt */
6080 if (d_del->dflts) {
6081 switch (target->nodetype) {
6082 case LYS_LEAF:
6083 DEV_CHECK_CARDINALITY(d_del->dflts, 1, "default");
6084 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(target->flags & LYS_SET_DFLT),
6085 dflt, "deleting", "default", d_del->dflts[0]);
6086
6087 /* check that the values matches */
6088 dflt = leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, lys_get_prefix, leaf->dflt_mod, &i);
6089 if (strcmp(dflt, d_del->dflts[0])) {
6090 if (i) {
6091 free((char*)dflt);
6092 }
6093 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6094 "Invalid deviation deleting \"default\" property \"%s\" which does not match the target's property value \"%s\".",
6095 d_del->dflts[0], dflt);
6096 goto cleanup;
6097 }
6098 if (i) {
6099 free((char*)dflt);
6100 }
6101 dflt = NULL;
6102
6103 /* update the list of incomplete default values if needed */
6104 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6105
6106 /* remove the default specification */
6107 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6108 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6109 free(leaf->dflt);
6110 leaf->dflt = NULL;
6111 leaf->dflt_mod = NULL;
6112 target->flags &= ~LYS_SET_DFLT;
6113 break;
6114 case LYS_LEAFLIST:
6115 DEV_CHECK_PRESENCE(struct lysc_node_leaflist*, 0, dflts, "deleting", "default", d_del->dflts[0]);
6116 LY_ARRAY_FOR(d_del->dflts, x) {
6117 LY_ARRAY_FOR(llist->dflts, y) {
6118 dflt = llist->type->plugin->print(llist->dflts[y], LYD_XML, lys_get_prefix, llist->dflts_mods[y], &i);
6119 if (!strcmp(dflt, d_del->dflts[x])) {
6120 if (i) {
6121 free((char*)dflt);
6122 }
6123 dflt = NULL;
6124 break;
6125 }
6126 if (i) {
6127 free((char*)dflt);
6128 }
6129 dflt = NULL;
6130 }
6131 if (y == LY_ARRAY_COUNT(llist->dflts)) {
6132 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid deviation deleting \"default\" property \"%s\" "
6133 "which does not match any of the target's property values.", d_del->dflts[x]);
6134 goto cleanup;
6135 }
6136
6137 /* update the list of incomplete default values if needed */
6138 lysc_incomplete_dflts_remove(ctx, llist->dflts[y]);
6139
6140 LY_ARRAY_DECREMENT(llist->dflts_mods);
6141 LY_ARRAY_DECREMENT(llist->dflts);
6142 llist->dflts[y]->realtype->plugin->free(ctx->ctx, llist->dflts[y]);
6143 lysc_type_free(ctx->ctx, llist->dflts[y]->realtype);
6144 free(llist->dflts[y]);
6145 memmove(&llist->dflts[y], &llist->dflts[y + 1], (LY_ARRAY_COUNT(llist->dflts) - y) * (sizeof *llist->dflts));
6146 memmove(&llist->dflts_mods[y], &llist->dflts_mods[y + 1], (LY_ARRAY_COUNT(llist->dflts_mods) - y) * (sizeof *llist->dflts_mods));
6147 }
6148 if (!LY_ARRAY_COUNT(llist->dflts)) {
6149 LY_ARRAY_FREE(llist->dflts_mods);
6150 llist->dflts_mods = NULL;
6151 LY_ARRAY_FREE(llist->dflts);
6152 llist->dflts = NULL;
6153 llist->flags &= ~LYS_SET_DFLT;
6154 }
6155 break;
6156 case LYS_CHOICE:
6157 DEV_CHECK_CARDINALITY(d_del->dflts, 1, "default");
6158 DEV_CHECK_PRESENCE(struct lysc_node_choice*, 0, dflt, "deleting", "default", d_del->dflts[0]);
6159 nodeid = d_del->dflts[0];
6160 LY_CHECK_GOTO(ly_parse_nodeid(&nodeid, &prefix, &prefix_len, &name, &name_len), cleanup);
6161 if (prefix) {
6162 /* use module prefixes from the deviation module to match the module of the default case */
6163 if (!(mod = lys_module_find_prefix(ctx->mod, prefix, prefix_len))) {
6164 LOGVAL(ctx->ctx,LY_VLOG_STR,ctx->path,LYVE_REFERENCE,
6165 "Invalid deviation deleting \"default\" property \"%s\" of choice. "
6166 "The prefix does not match any imported module of the deviation module.", d_del->dflts[0]);
6167 goto cleanup;
6168 }
6169 if (mod != ((struct lysc_node_choice*)target)->dflt->module) {
6170 LOGVAL(ctx->ctx,LY_VLOG_STR,ctx->path,LYVE_REFERENCE,
6171 "Invalid deviation deleting \"default\" property \"%s\" of choice. "
6172 "The prefix does not match the default case's module.", d_del->dflts[0]);
6173 goto cleanup;
6174 }
6175 }
6176 /* else {
6177 * strictly, the default prefix would point to the deviation module, but the value should actually
6178 * match the default string in the original module (usually unprefixed), so in this case we do not check
6179 * the module of the default case, just matching its name */
6180 if (strcmp(name, ((struct lysc_node_choice*)target)->dflt->name)) {
6181 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6182 "Invalid deviation deleting \"default\" property \"%s\" of choice does not match the default case name \"%s\".",
6183 d_del->dflts[0], ((struct lysc_node_choice*)target)->dflt->name);
6184 goto cleanup;
6185 }
6186 ((struct lysc_node_choice*)target)->dflt->flags &= ~LYS_SET_DFLT;
6187 ((struct lysc_node_choice*)target)->dflt = NULL;
6188 break;
6189 default:
6190 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6191 lys_nodetype2str(target->nodetype), "delete", "default");
6192 goto cleanup;
6193 }
6194 }
6195
6196 break;
6197 case LYS_DEV_REPLACE:
6198 d_rpl = (struct lysp_deviate_rpl*)d;
6199
6200 /* [type-stmt] */
6201 if (d_rpl->type) {
6202 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "replace", "type");
6203 /* type is mandatory, so checking for its presence is not necessary */
6204 lysc_type_free(ctx->ctx, ((struct lysc_node_leaf*)target)->type);
6205
6206 if (leaf->dflt && !(target->flags & LYS_SET_DFLT)) {
6207 /* the target has default from the previous type - remove it */
6208 if (target->nodetype == LYS_LEAF) {
6209 /* update the list of incomplete default values if needed */
6210 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6211
6212 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6213 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6214 free(leaf->dflt);
6215 leaf->dflt = NULL;
6216 leaf->dflt_mod = NULL;
6217 } else { /* LYS_LEAFLIST */
6218 LY_ARRAY_FOR(llist->dflts, x) {
6219 lysc_incomplete_dflts_remove(ctx, llist->dflts[x]);
6220 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
6221 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
6222 free(llist->dflts[x]);
6223 }
6224 LY_ARRAY_FREE(llist->dflts);
6225 llist->dflts = NULL;
6226 LY_ARRAY_FREE(llist->dflts_mods);
6227 llist->dflts_mods = NULL;
6228 }
6229 }
6230 if (!leaf->dflt) {
6231 /* there is no default value, do not set changed_type after type compilation
6232 * which is used to recompile the default value */
6233 changed_type = -1;
6234 }
6235 LY_CHECK_GOTO(lys_compile_node_type(ctx, NULL, d_rpl->type, (struct lysc_node_leaf*)target), cleanup);
6236 changed_type++;
6237 }
6238
6239 /* [units-stmt] */
6240 if (d_rpl->units) {
6241 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "replace", "units");
6242 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(target->flags & LYS_SET_UNITS),
6243 units, "replacing", "units", d_rpl->units);
6244
6245 lydict_remove(ctx->ctx, ((struct lysc_node_leaf*)target)->units);
6246 DUP_STRING(ctx->ctx, d_rpl->units, ((struct lysc_node_leaf*)target)->units);
6247 }
6248
6249 /* [default-stmt] */
6250 if (d_rpl->dflt) {
6251 switch (target->nodetype) {
6252 case LYS_LEAF:
6253 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(target->flags & LYS_SET_DFLT),
6254 dflt, "replacing", "default", d_rpl->dflt);
6255 /* first, remove the default value taken from the type */
6256 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6257 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6258 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6259 dflt = d_rpl->dflt;
6260 /* parsing is done at the end after possible replace of the leaf's type */
6261 break;
6262 case LYS_CHOICE:
6263 DEV_CHECK_PRESENCE(struct lysc_node_choice*, 0, dflt, "replacing", "default", d_rpl->dflt);
6264 if (lys_compile_deviation_set_choice_dflt(ctx, d_rpl->dflt, (struct lysc_node_choice*)target)) {
6265 goto cleanup;
6266 }
6267 break;
6268 default:
6269 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6270 lys_nodetype2str(target->nodetype), "replace", "default");
6271 goto cleanup;
6272 }
6273 }
6274
6275 /* [config-stmt] */
6276 if (d_rpl->flags & LYS_CONFIG_MASK) {
6277 if (target->nodetype & (LYS_CASE | LYS_INOUT | LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
6278 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6279 lys_nodetype2str(target->nodetype), "replace", "config");
6280 goto cleanup;
6281 }
6282 if (!(target->flags & LYS_SET_CONFIG)) {
6283 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT,
6284 "replacing", "config", d_rpl->flags & LYS_CONFIG_W ? "config true" : "config false");
6285 goto cleanup;
6286 }
6287 LY_CHECK_GOTO(lys_compile_change_config(ctx, target, d_rpl->flags, 0, 0), cleanup);
6288 }
6289
6290 /* [mandatory-stmt] */
6291 if (d_rpl->flags & LYS_MAND_MASK) {
6292 if (!(target->flags & LYS_MAND_MASK)) {
6293 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT,
6294 "replacing", "mandatory", d_rpl->flags & LYS_MAND_TRUE ? "mandatory true" : "mandatory false");
6295 goto cleanup;
6296 }
6297 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, target, d_rpl->flags, 0), cleanup);
6298 }
6299
6300 /* [min-elements-stmt] */
6301 if (d_rpl->flags & LYS_SET_MIN) {
6302 if (target->nodetype == LYS_LEAFLIST) {
6303 DEV_CHECK_PRESENCE_UINT(struct lysc_node_leaflist*, > 0, min, "min-elements");
6304 /* change value */
6305 ((struct lysc_node_leaflist*)target)->min = d_rpl->min;
6306 } else if (target->nodetype == LYS_LIST) {
6307 DEV_CHECK_PRESENCE_UINT(struct lysc_node_list*, > 0, min, "min-elements");
6308 /* change value */
6309 ((struct lysc_node_list*)target)->min = d_rpl->min;
6310 } else {
6311 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6312 lys_nodetype2str(target->nodetype), "replace", "min-elements");
6313 goto cleanup;
6314 }
6315 if (d_rpl->min) {
6316 target->flags |= LYS_MAND_TRUE;
6317 }
6318 }
6319
6320 /* [max-elements-stmt] */
6321 if (d_rpl->flags & LYS_SET_MAX) {
6322 if (target->nodetype == LYS_LEAFLIST) {
6323 DEV_CHECK_PRESENCE_UINT(struct lysc_node_leaflist*, < (uint32_t)-1, max, "max-elements");
6324 /* change value */
6325 ((struct lysc_node_leaflist*)target)->max = d_rpl->max ? d_rpl->max : (uint32_t)-1;
6326 } else if (target->nodetype == LYS_LIST) {
6327 DEV_CHECK_PRESENCE_UINT(struct lysc_node_list*, < (uint32_t)-1, max, "max-elements");
6328 /* change value */
6329 ((struct lysc_node_list*)target)->max = d_rpl->max ? d_rpl->max : (uint32_t)-1;
6330 } else {
6331 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6332 lys_nodetype2str(target->nodetype), "replace", "max-elements");
6333 goto cleanup;
6334 }
6335 }
6336
6337 break;
6338 default:
6339 LOGINT(ctx->ctx);
6340 goto cleanup;
6341 }
6342 }
6343
6344 /* final check when all deviations of a single target node are applied */
6345
6346 /* check min-max compatibility */
6347 if (target->nodetype == LYS_LEAFLIST) {
6348 min = ((struct lysc_node_leaflist*)target)->min;
6349 max = ((struct lysc_node_leaflist*)target)->max;
6350 } else if (target->nodetype == LYS_LIST) {
6351 min = ((struct lysc_node_list*)target)->min;
6352 max = ((struct lysc_node_list*)target)->max;
6353 } else {
6354 min = max = 0;
6355 }
6356 if (min > max) {
6357 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid combination of min-elements and max-elements "
6358 "after deviation: min value %u is bigger than max value %u.", min, max);
6359 goto cleanup;
6360 }
6361
6362 if (dflt) {
6363 /* parse added/changed default value after possible change of the type */
6364 leaf->dflt_mod = ctx->mod_def;
6365 leaf->dflt->realtype = leaf->type;
6366 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, dflt, strlen(dflt),
6367 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
6368 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, target, NULL, leaf->dflt, NULL, &err);
6369 leaf->dflt->realtype->refcount++;
6370 if (err) {
6371 ly_err_print(err);
6372 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6373 "Invalid deviation setting \"default\" property \"%s\" which does not fit the type (%s).", dflt, err->msg);
6374 ly_err_free(err);
6375 }
6376 if (rc == LY_EINCOMPLETE) {
6377 /* postpone default compilation when the tree is complete */
6378 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, target, leaf->dflt, leaf->dflt_mod), cleanup);
6379
6380 /* but in general result is so far ok */
6381 rc = LY_SUCCESS;
6382 }
6383 LY_CHECK_GOTO(rc, cleanup);
6384 } else if (changed_type) {
6385 /* the leaf/leaf-list's type has changed, but there is still a default value for the previous type */
6386 int dynamic;
6387 if (target->nodetype == LYS_LEAF) {
6388 dflt = leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, lys_get_prefix, leaf->dflt_mod, &dynamic);
6389
6390 /* update the list of incomplete default values if needed */
6391 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6392
6393 /* remove the previous default */
6394 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6395 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6396 leaf->dflt->realtype = leaf->type;
6397 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, dflt, strlen(dflt),
6398 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
6399 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, target, NULL, leaf->dflt, NULL, &err);
6400 leaf->dflt->realtype->refcount++;
6401 if (err) {
6402 ly_err_print(err);
6403 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6404 "Invalid deviation replacing leaf's type - the leaf's default value \"%s\" does not match the type (%s).", dflt, err->msg);
6405 ly_err_free(err);
6406 }
6407 if (dynamic) {
6408 free((void*)dflt);
6409 }
6410 dflt = NULL;
6411 if (rc == LY_EINCOMPLETE) {
6412 /* postpone default compilation when the tree is complete */
6413 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, target, leaf->dflt, leaf->dflt_mod), cleanup);
6414
6415 /* but in general result is so far ok */
6416 rc = LY_SUCCESS;
6417 }
6418 LY_CHECK_GOTO(rc, cleanup);
6419 } else { /* LYS_LEAFLIST */
6420 LY_ARRAY_FOR(llist->dflts, x) {
6421 dflt = llist->dflts[x]->realtype->plugin->print(llist->dflts[x], LYD_XML, lys_get_prefix, llist->dflts_mods[x], &dynamic);
6422 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
6423 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
6424 llist->dflts[x]->realtype = llist->type;
6425 rc = llist->type->plugin->store(ctx->ctx, llist->type, dflt, strlen(dflt),
6426 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
6427 lys_resolve_prefix, (void*)llist->dflts_mods[x], LYD_XML, target, NULL,
6428 llist->dflts[x], NULL, &err);
6429 llist->dflts[x]->realtype->refcount++;
6430 if (err) {
6431 ly_err_print(err);
6432 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6433 "Invalid deviation replacing leaf-list's type - the leaf-list's default value \"%s\" does not match the type (%s).",
6434 dflt, err->msg);
6435 ly_err_free(err);
6436 }
6437 if (dynamic) {
6438 free((void*)dflt);
6439 }
6440 dflt = NULL;
6441 if (rc == LY_EINCOMPLETE) {
6442 /* postpone default compilation when the tree is complete */
6443 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, target, llist->dflts[x], llist->dflts_mods[x]), cleanup);
6444
6445 /* but in general result is so far ok */
6446 rc = LY_SUCCESS;
6447 }
6448 LY_CHECK_GOTO(rc, cleanup);
6449 }
6450 }
6451 }
6452
6453 /* check mandatory - default compatibility */
6454 if ((target->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (target->flags & LYS_SET_DFLT)
6455 && (target->flags & LYS_MAND_TRUE)) {
6456 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6457 "Invalid deviation combining default value and mandatory %s.", lys_nodetype2str(target->nodetype));
6458 goto cleanup;
6459 } else if ((target->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)target)->dflt
6460 && (target->flags & LYS_MAND_TRUE)) {
6461 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid deviation combining default case and mandatory choice.");
6462 goto cleanup;
6463 }
6464 if (target->parent && (target->parent->flags & LYS_SET_DFLT) && (target->flags & LYS_MAND_TRUE)) {
6465 /* mandatory node under a default case */
6466 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6467 "Invalid deviation combining mandatory %s \"%s\" in a default choice's case \"%s\".",
6468 lys_nodetype2str(target->nodetype), target->name, target->parent->name);
6469 goto cleanup;
6470 }
6471
6472 /* success */
6473 ret = LY_SUCCESS;
6474
6475cleanup:
6476 lysc_update_path(ctx, NULL, NULL);
6477 return ret;
6478}
6479
6480LY_ERR
6481lys_compile_deviations(struct lysc_ctx *ctx, struct lysp_module *mod_p)
6482{
6483 LY_ERR ret = LY_EVALID;
6484 struct ly_set devs_p = {0};
6485 struct ly_set targets = {0};
6486 struct lysc_node *target; /* target target of the deviation */
6487 struct lysp_deviation *dev;
6488 struct lysp_deviate *d, **dp_new;
6489 LY_ARRAY_COUNT_TYPE u, v;
6490 struct lysc_deviation **devs = NULL;
6491 struct lys_module *target_mod, **dev_mod;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006492 uint16_t flags;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006493 int i;
Radek Krejciccd20f12019-02-15 14:12:27 +01006494
6495 /* get all deviations from the module and all its submodules ... */
6496 LY_ARRAY_FOR(mod_p->deviations, u) {
6497 ly_set_add(&devs_p, &mod_p->deviations[u], LY_SET_OPT_USEASLIST);
6498 }
6499 LY_ARRAY_FOR(mod_p->includes, v) {
6500 LY_ARRAY_FOR(mod_p->includes[v].submodule->deviations, u) {
6501 ly_set_add(&devs_p, &mod_p->includes[v].submodule->deviations[u], LY_SET_OPT_USEASLIST);
6502 }
6503 }
6504 if (!devs_p.count) {
6505 /* nothing to do */
6506 return LY_SUCCESS;
6507 }
6508
Radek Krejci327de162019-06-14 12:52:07 +02006509 lysc_update_path(ctx, NULL, "{deviation}");
6510
Radek Krejciccd20f12019-02-15 14:12:27 +01006511 /* ... and group them by the target node */
6512 devs = calloc(devs_p.count, sizeof *devs);
6513 for (u = 0; u < devs_p.count; ++u) {
6514 dev = devs_p.objs[u];
Radek Krejci327de162019-06-14 12:52:07 +02006515 lysc_update_path(ctx, NULL, dev->nodeid);
Radek Krejciccd20f12019-02-15 14:12:27 +01006516
6517 /* resolve the target */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006518 LY_CHECK_GOTO(lys_resolve_schema_nodeid(ctx, dev->nodeid, 0, NULL, ctx->mod, 0, 1,
6519 (const struct lysc_node**)&target, &flags), cleanup);
Michal Vasko1bf09392020-03-27 12:38:10 +01006520 if (target->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejcif538ce52019-03-05 10:46:14 +01006521 /* move the target pointer to input/output to make them different from the action and
6522 * between them. Before the devs[] item is being processed, the target pointer must be fixed
6523 * back to the RPC/action node due to a better compatibility and decision code in this function.
6524 * The LYSC_OPT_INTERNAL is used as a flag to this change. */
6525 if (flags & LYSC_OPT_RPC_INPUT) {
6526 target = (struct lysc_node*)&((struct lysc_action*)target)->input;
6527 flags |= LYSC_OPT_INTERNAL;
6528 } else if (flags & LYSC_OPT_RPC_OUTPUT) {
6529 target = (struct lysc_node*)&((struct lysc_action*)target)->output;
6530 flags |= LYSC_OPT_INTERNAL;
6531 }
6532 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006533 /* insert into the set of targets with duplicity detection */
6534 i = ly_set_add(&targets, target, 0);
6535 if (!devs[i]) {
6536 /* new record */
6537 devs[i] = calloc(1, sizeof **devs);
6538 devs[i]->target = target;
6539 devs[i]->nodeid = dev->nodeid;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006540 devs[i]->flags = flags;
Radek Krejciccd20f12019-02-15 14:12:27 +01006541 }
6542 /* add deviates into the deviation's list of deviates */
6543 for (d = dev->deviates; d; d = d->next) {
6544 LY_ARRAY_NEW_GOTO(ctx->ctx, devs[i]->deviates, dp_new, ret, cleanup);
6545 *dp_new = d;
6546 if (d->mod == LYS_DEV_NOT_SUPPORTED) {
6547 devs[i]->not_supported = 1;
6548 }
6549 }
Radek Krejci327de162019-06-14 12:52:07 +02006550
6551 lysc_update_path(ctx, NULL, NULL);
Radek Krejciccd20f12019-02-15 14:12:27 +01006552 }
6553
Radek Krejciccd20f12019-02-15 14:12:27 +01006554 /* apply deviations */
6555 for (u = 0; u < devs_p.count && devs[u]; ++u) {
Radek Krejcif538ce52019-03-05 10:46:14 +01006556 if (devs[u]->flags & LYSC_OPT_INTERNAL) {
6557 /* fix the target pointer in case of RPC's/action's input/output */
6558 if (devs[u]->flags & LYSC_OPT_RPC_INPUT) {
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006559 devs[u]->target = (struct lysc_node *)((char *)devs[u]->target - offsetof(struct lysc_action, input));
Radek Krejcif538ce52019-03-05 10:46:14 +01006560 } else if (devs[u]->flags & LYSC_OPT_RPC_OUTPUT) {
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006561 devs[u]->target = (struct lysc_node *)((char *)devs[u]->target - offsetof(struct lysc_action, output));
Radek Krejcif538ce52019-03-05 10:46:14 +01006562 }
6563 }
6564
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006565 /* remember target module (the target node may be removed) */
6566 target_mod = devs[u]->target->module;
Radek Krejcifc11bd72019-04-11 16:00:05 +02006567
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006568 /* apply the deviation */
6569 LY_CHECK_GOTO(ret = lys_apply_deviation(ctx, devs[u]), cleanup);
Radek Krejci33f72892019-02-21 10:36:58 +01006570
Michal Vaskoe6143202020-07-03 13:02:08 +02006571 /* add this module into the target module deviated_by, if not there already */
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006572 i = 0;
6573 LY_ARRAY_FOR(target_mod->compiled->deviated_by, v) {
6574 if (target_mod->compiled->deviated_by[v] == mod_p->mod) {
6575 i = 1;
Michal Vaskoe6143202020-07-03 13:02:08 +02006576 break;
6577 }
6578 }
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006579 if (!i) {
6580 LY_ARRAY_NEW_GOTO(ctx->ctx, target_mod->compiled->deviated_by, dev_mod, ret, cleanup);
Michal Vaskoe6143202020-07-03 13:02:08 +02006581 *dev_mod = mod_p->mod;
6582 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006583 }
6584
Radek Krejci327de162019-06-14 12:52:07 +02006585 lysc_update_path(ctx, NULL, NULL);
Radek Krejciccd20f12019-02-15 14:12:27 +01006586 ret = LY_SUCCESS;
6587
6588cleanup:
6589 for (u = 0; u < devs_p.count && devs[u]; ++u) {
6590 LY_ARRAY_FREE(devs[u]->deviates);
6591 free(devs[u]);
6592 }
6593 free(devs);
6594 ly_set_erase(&targets, NULL);
6595 ly_set_erase(&devs_p, NULL);
6596
6597 return ret;
6598}
6599
Radek Krejcib56c7502019-02-13 14:19:54 +01006600/**
Radek Krejcid05cbd92018-12-05 14:26:40 +01006601 * @brief Compile the given YANG submodule into the main module.
6602 * @param[in] ctx Compile context
6603 * @param[in] inc Include structure from the main module defining the submodule.
Radek Krejcid05cbd92018-12-05 14:26:40 +01006604 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
6605 */
6606LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02006607lys_compile_submodule(struct lysc_ctx *ctx, struct lysp_include *inc)
Radek Krejcid05cbd92018-12-05 14:26:40 +01006608{
6609 unsigned int u;
6610 LY_ERR ret = LY_SUCCESS;
6611 /* shortcuts */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01006612 struct lysp_submodule *submod = inc->submodule;
Radek Krejcid05cbd92018-12-05 14:26:40 +01006613 struct lysc_module *mainmod = ctx->mod->compiled;
Radek Krejci474f9b82019-07-24 11:36:37 +02006614 struct lysp_node *node_p;
Radek Krejcid05cbd92018-12-05 14:26:40 +01006615
Michal Vasko33ff9422020-07-03 09:50:39 +02006616 if (!mainmod->mod->dis_features) {
Radek Krejci0af46292019-01-11 16:02:31 +01006617 /* features are compiled directly into the compiled module structure,
6618 * but it must be done in two steps to allow forward references (via if-feature) between the features themselves.
6619 * The features compilation is finished in the main module (lys_compile()). */
Radek Krejci0935f412019-08-20 16:15:18 +02006620 ret = lys_feature_precompile(ctx, NULL, NULL, submod->features, &mainmod->features);
6621 LY_CHECK_GOTO(ret, error);
6622 }
Radek Krejci0af46292019-01-11 16:02:31 +01006623
Michal Vasko33ff9422020-07-03 09:50:39 +02006624 if (!mainmod->mod->dis_identities) {
6625 ret = lys_identity_precompile(ctx, NULL, NULL, submod->identities, &mainmod->identities);
6626 LY_CHECK_GOTO(ret, error);
6627 }
Radek Krejcid05cbd92018-12-05 14:26:40 +01006628
Radek Krejci474f9b82019-07-24 11:36:37 +02006629 /* data nodes */
6630 LY_LIST_FOR(submod->data, node_p) {
6631 ret = lys_compile_node(ctx, node_p, NULL, 0);
6632 LY_CHECK_GOTO(ret, error);
6633 }
Radek Krejci8cce8532019-03-05 11:27:45 +01006634
Radek Krejciec4da802019-05-02 13:02:41 +02006635 COMPILE_ARRAY1_GOTO(ctx, submod->rpcs, mainmod->rpcs, NULL, u, lys_compile_action, 0, ret, error);
6636 COMPILE_ARRAY1_GOTO(ctx, submod->notifs, mainmod->notifs, NULL, u, lys_compile_notif, 0, ret, error);
Radek Krejci8cce8532019-03-05 11:27:45 +01006637
Radek Krejcid05cbd92018-12-05 14:26:40 +01006638error:
6639 return ret;
6640}
6641
Radek Krejci335332a2019-09-05 13:03:35 +02006642static void *
6643lys_compile_extension_instance_storage(enum ly_stmt stmt, struct lysc_ext_substmt *substmts)
6644{
6645 for (unsigned int u = 0; substmts[u].stmt; ++u) {
6646 if (substmts[u].stmt == stmt) {
6647 return substmts[u].storage;
6648 }
6649 }
6650 return NULL;
6651}
6652
6653LY_ERR
6654lys_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *ext, struct lysc_ext_substmt *substmts)
6655{
6656 LY_ERR ret = LY_EVALID, r;
6657 unsigned int u;
6658 struct lysp_stmt *stmt;
6659 void *parsed = NULL, **compiled = NULL;
Radek Krejci335332a2019-09-05 13:03:35 +02006660
6661 /* check for invalid substatements */
6662 for (stmt = ext->child; stmt; stmt = stmt->next) {
Radek Krejcif56e2a42019-09-09 14:15:25 +02006663 if (stmt->flags & (LYS_YIN_ATTR | LYS_YIN_ARGUMENT)) {
6664 continue;
6665 }
Radek Krejci335332a2019-09-05 13:03:35 +02006666 for (u = 0; substmts[u].stmt; ++u) {
6667 if (substmts[u].stmt == stmt->kw) {
6668 break;
6669 }
6670 }
6671 if (!substmts[u].stmt) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006672 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s%s%s\" extension instance.",
6673 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
Radek Krejci335332a2019-09-05 13:03:35 +02006674 goto cleanup;
6675 }
Radek Krejci335332a2019-09-05 13:03:35 +02006676 }
6677
Radek Krejciad5963b2019-09-06 16:03:05 +02006678 /* TODO store inherited data, e.g. status first, but mark them somehow to allow to overwrite them and not detect duplicity */
6679
Radek Krejci335332a2019-09-05 13:03:35 +02006680 /* keep order of the processing the same as the order in the defined substmts,
6681 * the order is important for some of the statements depending on others (e.g. type needs status and units) */
6682 for (u = 0; substmts[u].stmt; ++u) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006683 int stmt_present = 0;
6684
Radek Krejci335332a2019-09-05 13:03:35 +02006685 for (stmt = ext->child; stmt; stmt = stmt->next) {
6686 if (substmts[u].stmt != stmt->kw) {
6687 continue;
6688 }
6689
Radek Krejciad5963b2019-09-06 16:03:05 +02006690 stmt_present = 1;
Radek Krejci335332a2019-09-05 13:03:35 +02006691 if (substmts[u].storage) {
6692 switch (stmt->kw) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006693 case LY_STMT_STATUS:
6694 assert(substmts[u].cardinality < LY_STMT_CARD_SOME);
6695 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &substmts[u].storage, /* TODO */ NULL), ret = r, cleanup);
6696 break;
6697 case LY_STMT_UNITS: {
6698 const char **units;
6699
6700 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6701 /* single item */
6702 if (*((const char **)substmts[u].storage)) {
6703 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6704 goto cleanup;
6705 }
6706 units = (const char **)substmts[u].storage;
6707 } else {
6708 /* sized array */
6709 const char ***units_array = (const char ***)substmts[u].storage;
6710 LY_ARRAY_NEW_GOTO(ctx->ctx, *units_array, units, ret, cleanup);
6711 }
6712 *units = lydict_insert(ctx->ctx, stmt->arg, 0);
6713 break;
6714 }
Radek Krejci335332a2019-09-05 13:03:35 +02006715 case LY_STMT_TYPE: {
6716 uint16_t *flags = lys_compile_extension_instance_storage(LY_STMT_STATUS, substmts);
6717 const char **units = lys_compile_extension_instance_storage(LY_STMT_UNITS, substmts);
6718
6719 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6720 /* single item */
Radek Krejciad5963b2019-09-06 16:03:05 +02006721 if (*(struct lysc_type**)substmts[u].storage) {
Radek Krejci335332a2019-09-05 13:03:35 +02006722 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6723 goto cleanup;
6724 }
6725 compiled = substmts[u].storage;
6726 } else {
6727 /* sized array */
6728 struct lysc_type ***types = (struct lysc_type***)substmts[u].storage, **type = NULL;
6729 LY_ARRAY_NEW_GOTO(ctx->ctx, *types, type, ret, cleanup);
6730 compiled = (void*)type;
6731 }
6732
Radek Krejciad5963b2019-09-06 16:03:05 +02006733 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &parsed, NULL), ret = r, cleanup);
Radek Krejci335332a2019-09-05 13:03:35 +02006734 LY_CHECK_ERR_GOTO(r = lys_compile_type(ctx, ext->parent_type == LYEXT_PAR_NODE ? ((struct lysc_node*)ext->parent)->sp : NULL,
6735 flags ? *flags : 0, ctx->mod_def->parsed, ext->name, parsed, (struct lysc_type**)compiled,
Radek Krejci38d85362019-09-05 16:26:38 +02006736 units && !*units ? units : NULL), lysp_type_free(ctx->ctx, parsed); free(parsed); ret = r, cleanup);
6737 lysp_type_free(ctx->ctx, parsed);
6738 free(parsed);
Radek Krejci335332a2019-09-05 13:03:35 +02006739 break;
6740 }
Radek Krejciad5963b2019-09-06 16:03:05 +02006741 case LY_STMT_IF_FEATURE: {
6742 struct lysc_iffeature *iff = NULL;
6743
6744 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6745 /* single item */
6746 if (((struct lysc_iffeature*)substmts[u].storage)->features) {
6747 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6748 goto cleanup;
6749 }
6750 iff = (struct lysc_iffeature*)substmts[u].storage;
6751 } else {
6752 /* sized array */
6753 struct lysc_iffeature **iffs = (struct lysc_iffeature**)substmts[u].storage;
6754 LY_ARRAY_NEW_GOTO(ctx->ctx, *iffs, iff, ret, cleanup);
6755 }
6756 LY_CHECK_ERR_GOTO(r = lys_compile_iffeature(ctx, &stmt->arg, iff), ret = r, cleanup);
6757 break;
6758 }
6759 /* TODO support other substatements (parse stmt to lysp and then compile lysp to lysc),
6760 * also note that in many statements their extensions are not taken into account */
Radek Krejci335332a2019-09-05 13:03:35 +02006761 default:
Radek Krejciad5963b2019-09-06 16:03:05 +02006762 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.",
6763 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
Radek Krejci335332a2019-09-05 13:03:35 +02006764 goto cleanup;
6765 }
6766 }
Radek Krejci335332a2019-09-05 13:03:35 +02006767 }
Radek Krejci335332a2019-09-05 13:03:35 +02006768
Radek Krejciad5963b2019-09-06 16:03:05 +02006769 if ((substmts[u].cardinality == LY_STMT_CARD_MAND || substmts[u].cardinality == LY_STMT_CARD_SOME) && !stmt_present) {
6770 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s%s%s\".",
6771 ly_stmt2str(substmts[u].stmt), ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
6772 goto cleanup;
6773 }
Radek Krejci335332a2019-09-05 13:03:35 +02006774 }
6775
6776 ret = LY_SUCCESS;
6777
6778cleanup:
Radek Krejci335332a2019-09-05 13:03:35 +02006779 return ret;
6780}
6781
Michal Vasko175012e2019-11-06 15:49:14 +01006782/**
Michal Vaskoecd62de2019-11-13 12:35:11 +01006783 * @brief Check when for cyclic dependencies.
6784 * @param[in] set Set with all the referenced nodes.
6785 * @param[in] node Node whose "when" referenced nodes are in @p set.
6786 * @return LY_ERR value
6787 */
6788static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006789lys_compile_unres_when_cyclic(struct lyxp_set *set, const struct lysc_node *node)
Michal Vaskoecd62de2019-11-13 12:35:11 +01006790{
6791 struct lyxp_set tmp_set;
6792 struct lyxp_set_scnode *xp_scnode;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006793 uint32_t i, j;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006794 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006795 int idx;
6796 struct lysc_when *when;
6797 LY_ERR ret = LY_SUCCESS;
6798
6799 memset(&tmp_set, 0, sizeof tmp_set);
6800
6801 /* prepare in_ctx of the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006802 for ( i = 0; i < set->used; ++i) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006803 xp_scnode = &set->val.scnodes[i];
6804
Michal Vasko5c4e5892019-11-14 12:31:38 +01006805 if (xp_scnode->in_ctx != -1) {
6806 /* check node when, skip the context node (it was just checked) */
Michal Vaskoecd62de2019-11-13 12:35:11 +01006807 xp_scnode->in_ctx = 1;
6808 }
6809 }
6810
6811 for (i = 0; i < set->used; ++i) {
6812 xp_scnode = &set->val.scnodes[i];
6813 if (xp_scnode->in_ctx != 1) {
6814 /* already checked */
6815 continue;
6816 }
6817
Michal Vasko1bf09392020-03-27 12:38:10 +01006818 if ((xp_scnode->type != LYXP_NODE_ELEM) || (xp_scnode->scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))
Michal Vasko2ff7efe2019-12-10 14:50:59 +01006819 || !xp_scnode->scnode->when) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006820 /* no when to check */
6821 xp_scnode->in_ctx = 0;
6822 continue;
6823 }
6824
6825 node = xp_scnode->scnode;
6826 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006827 LY_ARRAY_FOR(node->when, u) {
6828 when = node->when[u];
Michal Vasko52927e22020-03-16 17:26:14 +01006829 ret = lyxp_atomize(when->cond, LYD_SCHEMA, when->module, when->context,
Michal Vaskoecd62de2019-11-13 12:35:11 +01006830 when->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, LYXP_SCNODE_SCHEMA);
6831 if (ret != LY_SUCCESS) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006832 LOGVAL(set->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when->cond->expr);
Michal Vaskoecd62de2019-11-13 12:35:11 +01006833 goto cleanup;
6834 }
6835
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006836 for (j = 0; j < tmp_set.used; ++j) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006837 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006838 if (tmp_set.val.scnodes[j].type == LYXP_NODE_ELEM) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006839 /* try to find this node in our set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006840 idx = lyxp_set_scnode_dup_node_check(set, tmp_set.val.scnodes[j].scnode, LYXP_NODE_ELEM, -1);
Michal Vasko5c4e5892019-11-14 12:31:38 +01006841 if ((idx > -1) && (set->val.scnodes[idx].in_ctx == -1)) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006842 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 +01006843 ret = LY_EVALID;
6844 goto cleanup;
6845 }
6846
6847 /* needs to be checked, if in both sets, will be ignored */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006848 tmp_set.val.scnodes[j].in_ctx = 1;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006849 } else {
6850 /* no when, nothing to check */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006851 tmp_set.val.scnodes[j].in_ctx = 0;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006852 }
6853 }
6854
6855 /* merge this set into the global when set */
6856 lyxp_set_scnode_merge(set, &tmp_set);
6857 }
6858
6859 /* check when of non-data parents as well */
6860 node = node->parent;
6861 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
6862
Michal Vasko251f56e2019-11-14 16:06:47 +01006863 /* this node when was checked (xp_scnode could have been reallocd) */
6864 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006865 }
6866
6867cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02006868 lyxp_set_free_content(&tmp_set);
Michal Vaskoecd62de2019-11-13 12:35:11 +01006869 return ret;
6870}
6871
6872/**
Michal Vasko175012e2019-11-06 15:49:14 +01006873 * @brief Check when/must expressions of a node on a compiled schema tree.
6874 * @param[in] ctx Compile context.
6875 * @param[in] node Node to check.
6876 * @return LY_ERR value
6877 */
6878static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006879lys_compile_unres_xpath(struct lysc_ctx *ctx, const struct lysc_node *node)
Michal Vasko175012e2019-11-06 15:49:14 +01006880{
Michal Vasko175012e2019-11-06 15:49:14 +01006881 struct lyxp_set tmp_set;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006882 uint32_t i;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006883 LY_ARRAY_COUNT_TYPE u;
Michal Vasko5d8756a2019-11-07 15:21:00 +01006884 int opts, input_done = 0;
Michal Vasko175012e2019-11-06 15:49:14 +01006885 struct lysc_when **when = NULL;
6886 struct lysc_must *musts = NULL;
6887 LY_ERR ret = LY_SUCCESS;
Michal Vasko6b26e742020-07-17 15:02:10 +02006888 const struct lysc_node *op;
Michal Vasko175012e2019-11-06 15:49:14 +01006889
6890 memset(&tmp_set, 0, sizeof tmp_set);
Michal Vasko5d8756a2019-11-07 15:21:00 +01006891 opts = LYXP_SCNODE_SCHEMA;
Michal Vasko6b26e742020-07-17 15:02:10 +02006892 if (node->flags & LYS_CONFIG_R) {
6893 for (op = node->parent; op && !(op->nodetype & (LYS_RPC | LYS_ACTION)); op = op->parent);
6894 if (op) {
6895 /* we are actually in output */
6896 opts = LYXP_SCNODE_OUTPUT;
6897 }
6898 }
Michal Vasko175012e2019-11-06 15:49:14 +01006899
6900 switch (node->nodetype) {
6901 case LYS_CONTAINER:
6902 when = ((struct lysc_node_container *)node)->when;
6903 musts = ((struct lysc_node_container *)node)->musts;
6904 break;
6905 case LYS_CHOICE:
6906 when = ((struct lysc_node_choice *)node)->when;
6907 break;
6908 case LYS_LEAF:
6909 when = ((struct lysc_node_leaf *)node)->when;
6910 musts = ((struct lysc_node_leaf *)node)->musts;
6911 break;
6912 case LYS_LEAFLIST:
6913 when = ((struct lysc_node_leaflist *)node)->when;
6914 musts = ((struct lysc_node_leaflist *)node)->musts;
6915 break;
6916 case LYS_LIST:
6917 when = ((struct lysc_node_list *)node)->when;
6918 musts = ((struct lysc_node_list *)node)->musts;
6919 break;
6920 case LYS_ANYXML:
6921 case LYS_ANYDATA:
6922 when = ((struct lysc_node_anydata *)node)->when;
6923 musts = ((struct lysc_node_anydata *)node)->musts;
6924 break;
6925 case LYS_CASE:
6926 when = ((struct lysc_node_case *)node)->when;
6927 break;
6928 case LYS_NOTIF:
6929 musts = ((struct lysc_notif *)node)->musts;
6930 break;
Michal Vasko1bf09392020-03-27 12:38:10 +01006931 case LYS_RPC:
Michal Vasko5d8756a2019-11-07 15:21:00 +01006932 case LYS_ACTION:
6933 /* first process input musts */
6934 musts = ((struct lysc_action *)node)->input.musts;
6935 break;
Michal Vasko175012e2019-11-06 15:49:14 +01006936 default:
6937 /* nothing to check */
6938 break;
6939 }
6940
Michal Vasko175012e2019-11-06 15:49:14 +01006941 /* check "when" */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006942 LY_ARRAY_FOR(when, u) {
Michal Vasko004d3152020-06-11 19:59:22 +02006943 ret = lyxp_atomize(when[u]->cond, LYD_SCHEMA, when[u]->module, when[u]->context ? when[u]->context : node,
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006944 when[u]->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, opts);
Michal Vasko175012e2019-11-06 15:49:14 +01006945 if (ret != LY_SUCCESS) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006946 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when[u]->cond->expr);
Michal Vasko175012e2019-11-06 15:49:14 +01006947 goto cleanup;
6948 }
6949
Michal Vaskodc052f32019-11-07 11:11:38 +01006950 ctx->path[0] = '\0';
6951 lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006952 for (i = 0; i < tmp_set.used; ++i) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006953 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006954 if ((tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (tmp_set.val.scnodes[i].in_ctx != -1)) {
6955 struct lysc_node *schema = tmp_set.val.scnodes[i].scnode;
Michal Vasko175012e2019-11-06 15:49:14 +01006956
Michal Vaskoecd62de2019-11-13 12:35:11 +01006957 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006958 ret = lysc_check_status(ctx, when[u]->flags, when[u]->module, node->name, schema->flags, schema->module,
Michal Vaskoecd62de2019-11-13 12:35:11 +01006959 schema->name);
6960 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko5c4e5892019-11-14 12:31:38 +01006961
6962 /* check dummy node accessing */
6963 if (schema == node) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006964 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LY_VCODE_DUMMY_WHEN, node->name);
Michal Vasko5c4e5892019-11-14 12:31:38 +01006965 ret = LY_EVALID;
6966 goto cleanup;
6967 }
Michal Vasko175012e2019-11-06 15:49:14 +01006968 }
6969 }
6970
Michal Vaskoecd62de2019-11-13 12:35:11 +01006971 /* check cyclic dependencies */
Michal Vasko004d3152020-06-11 19:59:22 +02006972 ret = lys_compile_unres_when_cyclic(&tmp_set, node);
Michal Vaskoecd62de2019-11-13 12:35:11 +01006973 LY_CHECK_GOTO(ret, cleanup);
6974
Michal Vaskod3678892020-05-21 10:06:58 +02006975 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01006976 }
6977
Michal Vasko5d8756a2019-11-07 15:21:00 +01006978check_musts:
Michal Vasko175012e2019-11-06 15:49:14 +01006979 /* check "must" */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006980 LY_ARRAY_FOR(musts, u) {
6981 ret = lyxp_atomize(musts[u].cond, LYD_SCHEMA, musts[u].module, node, LYXP_NODE_ELEM, &tmp_set, opts);
Michal Vasko175012e2019-11-06 15:49:14 +01006982 if (ret != LY_SUCCESS) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006983 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid must restriction \"%s\".", musts[u].cond->expr);
Michal Vasko175012e2019-11-06 15:49:14 +01006984 goto cleanup;
6985 }
6986
Michal Vaskodc052f32019-11-07 11:11:38 +01006987 ctx->path[0] = '\0';
6988 lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006989 for (i = 0; i < tmp_set.used; ++i) {
Michal Vasko175012e2019-11-06 15:49:14 +01006990 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006991 if (tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko175012e2019-11-06 15:49:14 +01006992 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006993 ret = lysc_check_status(ctx, node->flags, musts[u].module, node->name, tmp_set.val.scnodes[i].scnode->flags,
6994 tmp_set.val.scnodes[i].scnode->module, tmp_set.val.scnodes[i].scnode->name);
Michal Vasko175012e2019-11-06 15:49:14 +01006995 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko175012e2019-11-06 15:49:14 +01006996 }
6997 }
6998
Michal Vaskod3678892020-05-21 10:06:58 +02006999 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01007000 }
7001
Michal Vasko1bf09392020-03-27 12:38:10 +01007002 if ((node->nodetype & (LYS_RPC | LYS_ACTION)) && !input_done) {
Michal Vasko5d8756a2019-11-07 15:21:00 +01007003 /* now check output musts */
7004 input_done = 1;
7005 musts = ((struct lysc_action *)node)->output.musts;
7006 opts = LYXP_SCNODE_OUTPUT;
7007 goto check_musts;
7008 }
7009
Michal Vasko175012e2019-11-06 15:49:14 +01007010cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007011 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01007012 return ret;
7013}
7014
Michal Vasko8d544252020-03-02 10:19:52 +01007015static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007016lys_compile_unres_leafref(struct lysc_ctx *ctx, const struct lysc_node *node, struct lysc_type_leafref *lref)
7017{
Michal Vasko6b26e742020-07-17 15:02:10 +02007018 const struct lysc_node *target = NULL, *siter;
Michal Vasko004d3152020-06-11 19:59:22 +02007019 struct ly_path *p;
7020 struct lysc_type *type;
7021
7022 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
7023
7024 /* try to find the target */
Michal Vasko00cbf532020-06-15 13:58:47 +02007025 LY_CHECK_RET(ly_path_compile(ctx->ctx, node->module, node, lref->path, LY_PATH_LREF_TRUE,
7026 lysc_is_output(node) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY,
7027 lys_resolve_prefix, lref->path_context, LYD_SCHEMA, &p));
Michal Vasko004d3152020-06-11 19:59:22 +02007028
7029 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007030 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02007031 ly_path_free(node->module->ctx, p);
7032
7033 if (!(target->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
7034 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7035 "Invalid leafref path \"%s\" - target node is %s instead of leaf or leaf-list.",
7036 lref->path->expr, lys_nodetype2str(target->nodetype));
7037 return LY_EVALID;
7038 }
7039
7040 /* check status */
7041 ctx->path[0] = '\0';
7042 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
7043 ctx->path_len = strlen(ctx->path);
7044 if (lysc_check_status(ctx, node->flags, node->module, node->name, target->flags, target->module, target->name)) {
7045 return LY_EVALID;
7046 }
7047 ctx->path_len = 1;
7048 ctx->path[1] = '\0';
7049
7050 /* check config */
Michal Vasko6b26e742020-07-17 15:02:10 +02007051 if (lref->require_instance) {
7052 for (siter = node->parent; siter && !(siter->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); siter = siter->parent);
7053 if (!siter && (node->flags & LYS_CONFIG_W) && (target->flags & LYS_CONFIG_R)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007054 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE, "Invalid leafref path \"%s\" - target is supposed"
7055 " to represent configuration data (as the leafref does), but it does not.", lref->path->expr);
7056 return LY_EVALID;
7057 }
7058 }
7059
7060 /* store the target's type and check for circular chain of leafrefs */
7061 lref->realtype = ((struct lysc_node_leaf *)target)->type;
7062 for (type = lref->realtype; type && type->basetype == LY_TYPE_LEAFREF; type = ((struct lysc_type_leafref *)type)->realtype) {
7063 if (type == (struct lysc_type *)lref) {
7064 /* circular chain detected */
7065 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7066 "Invalid leafref path \"%s\" - circular chain of leafrefs detected.", lref->path->expr);
7067 return LY_EVALID;
7068 }
7069 }
7070
7071 /* check if leafref and its target are under common if-features */
7072 if (lys_compile_leafref_features_validate(node, target)) {
7073 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7074 "Invalid leafref path \"%s\" - set of features applicable to the leafref target is not a subset of"
7075 " features applicable to the leafref itself.", lref->path->expr);
7076 return LY_EVALID;
7077 }
7078
7079 return LY_SUCCESS;
7080}
7081
7082static LY_ERR
Michal Vasko8d544252020-03-02 10:19:52 +01007083lys_compile_ietf_netconf_wd_annotation(struct lysc_ctx *ctx, struct lys_module *mod)
7084{
7085 struct lysc_ext_instance *ext;
7086 struct lysp_ext_instance *ext_p = NULL;
7087 struct lysp_stmt *stmt;
7088 const struct lys_module *ext_mod;
7089 LY_ERR ret = LY_SUCCESS;
7090
7091 /* create the parsed extension instance manually */
7092 ext_p = calloc(1, sizeof *ext_p);
7093 LY_CHECK_ERR_GOTO(!ext_p, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
7094 ext_p->name = lydict_insert(ctx->ctx, "md:annotation", 0);
7095 ext_p->argument = lydict_insert(ctx->ctx, "default", 0);
7096 ext_p->insubstmt = LYEXT_SUBSTMT_SELF;
7097 ext_p->insubstmt_index = 0;
7098
7099 stmt = calloc(1, sizeof *ext_p->child);
7100 stmt->stmt = lydict_insert(ctx->ctx, "type", 0);
7101 stmt->arg = lydict_insert(ctx->ctx, "boolean", 0);
7102 stmt->kw = LY_STMT_TYPE;
7103 ext_p->child = stmt;
7104
7105 /* allocate new extension instance */
7106 LY_ARRAY_NEW_GOTO(mod->ctx, mod->compiled->exts, ext, ret, cleanup);
7107
7108 /* manually get extension definition module */
7109 ext_mod = ly_ctx_get_module_latest(ctx->ctx, "ietf-yang-metadata");
7110
7111 /* compile the extension instance */
7112 LY_CHECK_GOTO(ret = lys_compile_ext(ctx, ext_p, ext, mod->compiled, LYEXT_PAR_MODULE, ext_mod), cleanup);
7113
7114cleanup:
7115 lysp_ext_instance_free(ctx->ctx, ext_p);
7116 free(ext_p);
7117 return ret;
7118}
7119
Michal Vasko004d3152020-06-11 19:59:22 +02007120static LY_ERR
7121lys_compile_unres(struct lysc_ctx *ctx)
7122{
7123 struct lysc_node *node;
7124 struct lysc_type *type, *typeiter;
7125 struct lysc_type_leafref *lref;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007126 LY_ARRAY_COUNT_TYPE v;
Michal Vasko004d3152020-06-11 19:59:22 +02007127 uint32_t i;
7128
7129 /* for leafref, we need 2 rounds - first detects circular chain by storing the first referred type (which
7130 * can be also leafref, in case it is already resolved, go through the chain and check that it does not
7131 * point to the starting leafref type). The second round stores the first non-leafref type for later data validation. */
7132 for (i = 0; i < ctx->leafrefs.count; ++i) {
7133 node = ctx->leafrefs.objs[i];
7134 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
7135 type = ((struct lysc_node_leaf *)node)->type;
7136 if (type->basetype == LY_TYPE_LEAFREF) {
7137 LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, (struct lysc_type_leafref *)type));
7138 } else if (type->basetype == LY_TYPE_UNION) {
7139 LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) {
7140 if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
7141 lref = (struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v];
7142 LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, lref));
7143 }
7144 }
7145 }
7146 }
7147 for (i = 0; i < ctx->leafrefs.count; ++i) {
7148 /* store pointer to the real type */
7149 type = ((struct lysc_node_leaf *)ctx->leafrefs.objs[i])->type;
7150 if (type->basetype == LY_TYPE_LEAFREF) {
7151 for (typeiter = ((struct lysc_type_leafref*)type)->realtype;
7152 typeiter->basetype == LY_TYPE_LEAFREF;
7153 typeiter = ((struct lysc_type_leafref*)typeiter)->realtype);
7154 ((struct lysc_type_leafref*)type)->realtype = typeiter;
7155 } else if (type->basetype == LY_TYPE_UNION) {
7156 LY_ARRAY_FOR(((struct lysc_type_union*)type)->types, v) {
7157 if (((struct lysc_type_union*)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
7158 for (typeiter = ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v])->realtype;
7159 typeiter->basetype == LY_TYPE_LEAFREF;
7160 typeiter = ((struct lysc_type_leafref*)typeiter)->realtype);
7161 ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v])->realtype = typeiter;
7162 }
7163 }
7164 }
7165 }
7166
7167 /* check xpath */
7168 for (i = 0; i < ctx->xpath.count; ++i) {
7169 LY_CHECK_RET(lys_compile_unres_xpath(ctx, ctx->xpath.objs[i]));
7170 }
7171
7172 /* finish incomplete default values compilation */
7173 for (i = 0; i < ctx->dflts.count; ++i) {
7174 struct ly_err_item *err = NULL;
7175 struct lysc_incomplete_dflt *r = ctx->dflts.objs[i];
7176 LY_ERR ret;
7177 ret = r->dflt->realtype->plugin->store(ctx->ctx, r->dflt->realtype, r->dflt->original, strlen(r->dflt->original),
7178 LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE | LY_TYPE_OPTS_SECOND_CALL, lys_resolve_prefix,
7179 (void*)r->dflt_mod, LYD_XML, r->context_node, NULL, r->dflt, NULL, &err);
7180 if (err) {
7181 ly_err_print(err);
7182 ctx->path[0] = '\0';
7183 lysc_path(r->context_node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
7184 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
7185 "Invalid default - value does not fit the type (%s).", err->msg);
7186 ly_err_free(err);
7187 }
7188 LY_CHECK_RET(ret);
7189 }
7190
7191 return LY_SUCCESS;
7192}
7193
Radek Krejci19a96102018-11-15 13:38:09 +01007194LY_ERR
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007195lys_compile(struct lys_module **mod, int options)
Radek Krejci19a96102018-11-15 13:38:09 +01007196{
7197 struct lysc_ctx ctx = {0};
7198 struct lysc_module *mod_c;
7199 struct lysp_module *sp;
7200 struct lysp_node *node_p;
Radek Krejci95710c92019-02-11 15:49:55 +01007201 struct lysp_augment **augments = NULL;
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007202 struct lysp_grp *grps;
Radek Krejci95710c92019-02-11 15:49:55 +01007203 struct lys_module *m;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007204 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007205 uint32_t i;
Radek Krejcid05cbd92018-12-05 14:26:40 +01007206 LY_ERR ret = LY_SUCCESS;
Radek Krejci19a96102018-11-15 13:38:09 +01007207
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007208 LY_CHECK_ARG_RET(NULL, mod, *mod, (*mod)->parsed, (*mod)->ctx, LY_EINVAL);
Radek Krejci096235c2019-01-11 11:12:19 +01007209
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007210 if (!(*mod)->implemented) {
Radek Krejci096235c2019-01-11 11:12:19 +01007211 /* just imported modules are not compiled */
7212 return LY_SUCCESS;
7213 }
7214
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007215 sp = (*mod)->parsed;
Radek Krejci19a96102018-11-15 13:38:09 +01007216
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007217 ctx.ctx = (*mod)->ctx;
7218 ctx.mod = *mod;
7219 ctx.mod_def = *mod;
Radek Krejciec4da802019-05-02 13:02:41 +02007220 ctx.options = options;
Radek Krejci327de162019-06-14 12:52:07 +02007221 ctx.path_len = 1;
7222 ctx.path[0] = '/';
Radek Krejci19a96102018-11-15 13:38:09 +01007223
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007224 (*mod)->compiled = mod_c = calloc(1, sizeof *mod_c);
7225 LY_CHECK_ERR_RET(!mod_c, LOGMEM((*mod)->ctx), LY_EMEM);
7226 mod_c->mod = *mod;
Radek Krejci19a96102018-11-15 13:38:09 +01007227
Michal Vasko7c8439f2020-08-05 13:25:19 +02007228 LY_ARRAY_FOR(sp->imports, u) {
7229 LY_CHECK_GOTO(ret = lys_compile_import(&ctx, &sp->imports[u]), error);
7230 }
Radek Krejcid05cbd92018-12-05 14:26:40 +01007231 LY_ARRAY_FOR(sp->includes, u) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02007232 LY_CHECK_GOTO(ret = lys_compile_submodule(&ctx, &sp->includes[u]), error);
Radek Krejcid05cbd92018-12-05 14:26:40 +01007233 }
Radek Krejci0935f412019-08-20 16:15:18 +02007234
7235 /* features */
Michal Vasko33ff9422020-07-03 09:50:39 +02007236 if ((*mod)->dis_features) {
Radek Krejci0af46292019-01-11 16:02:31 +01007237 /* there is already precompiled array of features */
Michal Vasko33ff9422020-07-03 09:50:39 +02007238 mod_c->features = (*mod)->dis_features;
7239 (*mod)->dis_features = NULL;
Radek Krejci0af46292019-01-11 16:02:31 +01007240 } else {
7241 /* features are compiled directly into the compiled module structure,
7242 * but it must be done in two steps to allow forward references (via if-feature) between the features themselves */
Radek Krejci327de162019-06-14 12:52:07 +02007243 ret = lys_feature_precompile(&ctx, NULL, NULL, sp->features, &mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007244 LY_CHECK_GOTO(ret, error);
7245 }
Michal Vasko33ff9422020-07-03 09:50:39 +02007246
Radek Krejci0af46292019-01-11 16:02:31 +01007247 /* finish feature compilation, not only for the main module, but also for the submodules.
7248 * Due to possible forward references, it must be done when all the features (including submodules)
7249 * are present. */
7250 LY_ARRAY_FOR(sp->features, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02007251 ret = lys_feature_precompile_finish(&ctx, &sp->features[u], mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007252 LY_CHECK_GOTO(ret != LY_SUCCESS, error);
7253 }
Radek Krejci327de162019-06-14 12:52:07 +02007254 lysc_update_path(&ctx, NULL, "{submodule}");
Radek Krejci0af46292019-01-11 16:02:31 +01007255 LY_ARRAY_FOR(sp->includes, v) {
Radek Krejci327de162019-06-14 12:52:07 +02007256 lysc_update_path(&ctx, NULL, sp->includes[v].name);
Radek Krejci0af46292019-01-11 16:02:31 +01007257 LY_ARRAY_FOR(sp->includes[v].submodule->features, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02007258 ret = lys_feature_precompile_finish(&ctx, &sp->includes[v].submodule->features[u], mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007259 LY_CHECK_GOTO(ret != LY_SUCCESS, error);
7260 }
Radek Krejci327de162019-06-14 12:52:07 +02007261 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01007262 }
Radek Krejci327de162019-06-14 12:52:07 +02007263 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01007264
Michal Vasko33ff9422020-07-03 09:50:39 +02007265 /* identities, work similarly to features with the precompilation */
7266 if ((*mod)->dis_identities) {
7267 mod_c->identities = (*mod)->dis_identities;
7268 (*mod)->dis_identities = NULL;
7269 } else {
7270 ret = lys_identity_precompile(&ctx, NULL, NULL, sp->identities, &mod_c->identities);
7271 LY_CHECK_GOTO(ret, error);
7272 }
Radek Krejci19a96102018-11-15 13:38:09 +01007273 if (sp->identities) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007274 LY_CHECK_GOTO(ret = lys_compile_identities_derived(&ctx, sp->identities, mod_c->identities), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007275 }
Michal Vasko33ff9422020-07-03 09:50:39 +02007276 lysc_update_path(&ctx, NULL, "{submodule}");
7277 LY_ARRAY_FOR(sp->includes, v) {
7278 if (sp->includes[v].submodule->identities) {
7279 lysc_update_path(&ctx, NULL, sp->includes[v].name);
7280 ret = lys_compile_identities_derived(&ctx, sp->includes[v].submodule->identities, mod_c->identities);
7281 LY_CHECK_GOTO(ret, error);
7282 lysc_update_path(&ctx, NULL, NULL);
7283 }
7284 }
Radek Krejci327de162019-06-14 12:52:07 +02007285 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01007286
Radek Krejci95710c92019-02-11 15:49:55 +01007287 /* data nodes */
Radek Krejci19a96102018-11-15 13:38:09 +01007288 LY_LIST_FOR(sp->data, node_p) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007289 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, node_p, NULL, 0), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007290 }
Radek Krejci95710c92019-02-11 15:49:55 +01007291
Radek Krejciec4da802019-05-02 13:02:41 +02007292 COMPILE_ARRAY1_GOTO(&ctx, sp->rpcs, mod_c->rpcs, NULL, u, lys_compile_action, 0, ret, error);
7293 COMPILE_ARRAY1_GOTO(&ctx, sp->notifs, mod_c->notifs, NULL, u, lys_compile_notif, 0, ret, error);
Radek Krejciccd20f12019-02-15 14:12:27 +01007294
Radek Krejci95710c92019-02-11 15:49:55 +01007295 /* augments - sort first to cover augments augmenting other augments */
Radek Krejcid3acfce2019-09-09 14:48:50 +02007296 LY_CHECK_GOTO(ret = lys_compile_augment_sort(&ctx, sp->augments, sp->includes, &augments), error);
Radek Krejci95710c92019-02-11 15:49:55 +01007297 LY_ARRAY_FOR(augments, u) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007298 LY_CHECK_GOTO(ret = lys_compile_augment(&ctx, augments[u], NULL), error);
Radek Krejci95710c92019-02-11 15:49:55 +01007299 }
Radek Krejciccd20f12019-02-15 14:12:27 +01007300
Radek Krejci474f9b82019-07-24 11:36:37 +02007301 /* deviations TODO cover deviations from submodules */
Radek Krejcid3acfce2019-09-09 14:48:50 +02007302 LY_CHECK_GOTO(ret = lys_compile_deviations(&ctx, sp), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007303
Radek Krejci0935f412019-08-20 16:15:18 +02007304 /* extension instances TODO cover extension instances from submodules */
7305 COMPILE_EXTS_GOTO(&ctx, sp->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01007306
Michal Vasko004d3152020-06-11 19:59:22 +02007307 /* finish compilation for all unresolved items in the context */
7308 LY_CHECK_GOTO(ret = lys_compile_unres(&ctx), error);
Radek Krejci474f9b82019-07-24 11:36:37 +02007309
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007310 /* validate non-instantiated groupings from the parsed schema,
7311 * without it we would accept even the schemas with invalid grouping specification */
7312 ctx.options |= LYSC_OPT_GROUPING;
7313 LY_ARRAY_FOR(sp->groupings, u) {
7314 if (!(sp->groupings[u].flags & LYS_USED_GRP)) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007315 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, node_p, &sp->groupings[u]), error);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007316 }
7317 }
7318 LY_LIST_FOR(sp->data, node_p) {
7319 grps = (struct lysp_grp*)lysp_node_groupings(node_p);
7320 LY_ARRAY_FOR(grps, u) {
7321 if (!(grps[u].flags & LYS_USED_GRP)) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007322 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, node_p, &grps[u]), error);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007323 }
7324 }
7325 }
7326
Radek Krejci474f9b82019-07-24 11:36:37 +02007327 if (ctx.ctx->flags & LY_CTX_CHANGED_TREE) {
7328 /* TODO Deviation has changed tree of a module(s) in the context (by deviate-not-supported), it is necessary to recompile
7329 leafref paths, default values and must/when expressions in all schemas of the context to check that they are still valid */
7330 }
7331
Michal Vasko8d544252020-03-02 10:19:52 +01007332#if 0
7333 /* hack for NETCONF's edit-config's operation attribute. It is not defined in the schema, but since libyang
7334 * implements YANG metadata (annotations), we need its definition. Because the ietf-netconf schema is not the
7335 * internal part of libyang, we cannot add the annotation into the schema source, but we do it here to have
7336 * the anotation definitions available in the internal schema structure. */
7337 if (ly_strequal(mod->name, "ietf-netconf", 0)) {
7338 if (lyp_add_ietf_netconf_annotations(mod)) {
7339 lys_free(mod, NULL, 1, 1);
7340 return NULL;
7341 }
7342 }
7343#endif
7344
7345 /* add ietf-netconf-with-defaults "default" metadata to the compiled module */
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007346 if (!strcmp((*mod)->name, "ietf-netconf-with-defaults")) {
7347 LY_CHECK_GOTO(ret = lys_compile_ietf_netconf_wd_annotation(&ctx, *mod), error);
Michal Vasko8d544252020-03-02 10:19:52 +01007348 }
7349
Radek Krejci1c0c3442019-07-23 16:08:47 +02007350 ly_set_erase(&ctx.dflts, free);
Michal Vasko004d3152020-06-11 19:59:22 +02007351 ly_set_erase(&ctx.xpath, NULL);
7352 ly_set_erase(&ctx.leafrefs, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01007353 ly_set_erase(&ctx.groupings, NULL);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02007354 ly_set_erase(&ctx.tpdf_chain, NULL);
Radek Krejci95710c92019-02-11 15:49:55 +01007355 LY_ARRAY_FREE(augments);
Radek Krejcia3045382018-11-22 14:30:31 +01007356
Radek Krejciec4da802019-05-02 13:02:41 +02007357 if (ctx.options & LYSC_OPT_FREE_SP) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007358 lysp_module_free((*mod)->parsed);
7359 (*mod)->parsed = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +01007360 }
7361
Radek Krejciec4da802019-05-02 13:02:41 +02007362 if (!(ctx.options & LYSC_OPT_INTERNAL)) {
Radek Krejci95710c92019-02-11 15:49:55 +01007363 /* remove flag of the modules implemented by dependency */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007364 for (i = 0; i < ctx.ctx->list.count; ++i) {
7365 m = ctx.ctx->list.objs[i];
Radek Krejci95710c92019-02-11 15:49:55 +01007366 if (m->implemented == 2) {
7367 m->implemented = 1;
7368 }
7369 }
7370 }
7371
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007372 (*mod)->compiled = mod_c;
Radek Krejci19a96102018-11-15 13:38:09 +01007373 return LY_SUCCESS;
7374
7375error:
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007376 lys_feature_precompile_revert(&ctx, *mod);
Radek Krejci1c0c3442019-07-23 16:08:47 +02007377 ly_set_erase(&ctx.dflts, free);
Michal Vasko004d3152020-06-11 19:59:22 +02007378 ly_set_erase(&ctx.xpath, NULL);
7379 ly_set_erase(&ctx.leafrefs, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01007380 ly_set_erase(&ctx.groupings, NULL);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02007381 ly_set_erase(&ctx.tpdf_chain, NULL);
Radek Krejci95710c92019-02-11 15:49:55 +01007382 LY_ARRAY_FREE(augments);
Radek Krejci19a96102018-11-15 13:38:09 +01007383 lysc_module_free(mod_c, NULL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007384 (*mod)->compiled = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01007385
7386 /* revert compilation of modules implemented by dependency */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007387 for (i = 0; i < ctx.ctx->list.count; ++i) {
7388 m = ctx.ctx->list.objs[i];
Michal Vasko2947ce12019-12-16 10:37:19 +01007389 if ((m->implemented == 2) && m->compiled) {
Radek Krejci95710c92019-02-11 15:49:55 +01007390 /* revert features list to the precompiled state */
7391 lys_feature_precompile_revert(&ctx, m);
7392 /* mark module as imported-only / not-implemented */
7393 m->implemented = 0;
7394 /* free the compiled version of the module */
7395 lysc_module_free(m->compiled, NULL);
7396 m->compiled = NULL;
7397 }
7398 }
7399
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007400 /* remove the module itself from the context and free it */
7401 ly_set_rm(&ctx.ctx->list, *mod, NULL);
7402 lys_module_free(*mod, NULL);
7403 *mod = NULL;
7404
Radek Krejci19a96102018-11-15 13:38:09 +01007405 return ret;
7406}