blob: 8dfd885aabd1e3fcbb6053abd3e22038d2654d06 [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) {
4074 LOGWRN(ctx->ctx, "Use of %s to define configuration data is not recommended.",
Radek Krejcid6b76452019-09-03 17:03:03 +02004075 ly_stmt2str(any->nodetype == LYS_ANYDATA ? LY_STMT_ANYDATA : LY_STMT_ANYXML));
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,
4158 * it is the LYS_CHOICE node or LYS_AUGMENT 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 Krejci95710c92019-02-11 15:49:55 +01004181 if (node_p->nodetype == LYS_CHOICE || node_p->nodetype == LYS_AUGMENT) {
4182 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 Krejciec4da802019-05-02 13:02:41 +02004674lys_compile_uses(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, struct lysc_node *parent)
Radek Krejcie86bf772018-12-14 11:39:53 +01004675{
4676 struct lysp_node *node_p;
Radek Krejci01342af2019-01-03 15:18:08 +01004677 struct lysc_node *node, *child;
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 Krejcifc11bd72019-04-11 16:00:05 +02004783 /* compile data nodes */
Radek Krejcie86bf772018-12-14 11:39:53 +01004784 LY_LIST_FOR(grp->data, node_p) {
Radek Krejcib1b59152019-01-07 13:21:56 +01004785 /* 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 +02004786 LY_CHECK_GOTO(lys_compile_node(ctx, node_p, parent, (uses_p->flags & LYS_STATUS_MASK) | 0x3), cleanup);
Radek Krejci00b874b2019-02-12 10:54:50 +01004787
4788 /* some preparation for applying refines */
4789 if (grp->data == node_p) {
4790 /* remember the first child */
Radek Krejci684faf22019-05-27 14:31:16 +02004791 if (parent) {
4792 child = (struct lysc_node*)lysc_node_children(parent, ctx->options & LYSC_OPT_RPC_MASK);
4793 } else if (ctx->mod->compiled->data) {
4794 child = ctx->mod->compiled->data;
4795 } else {
4796 child = NULL;
4797 }
4798 context_node_fake.child = child ? child->prev : NULL;
Radek Krejci01342af2019-01-03 15:18:08 +01004799 }
4800 }
Radek Krejci00b874b2019-02-12 10:54:50 +01004801 when_shared = NULL;
Radek Krejci01342af2019-01-03 15:18:08 +01004802 LY_LIST_FOR(context_node_fake.child, child) {
4803 child->parent = (struct lysc_node*)&context_node_fake;
Radek Krejci00b874b2019-02-12 10:54:50 +01004804
Radek Krejcifc11bd72019-04-11 16:00:05 +02004805 /* pass uses's when to all the data children, actions and notifications are ignored */
Radek Krejci00b874b2019-02-12 10:54:50 +01004806 if (uses_p->when) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02004807 LY_ARRAY_NEW_GOTO(ctx->ctx, child->when, when, ret, cleanup);
Radek Krejci00b874b2019-02-12 10:54:50 +01004808 if (!when_shared) {
Michal Vasko175012e2019-11-06 15:49:14 +01004809 LY_CHECK_GOTO(lys_compile_when(ctx, uses_p->when, uses_p->flags, parent, when), cleanup);
4810
4811 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4812 /* do not check "when" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02004813 ly_set_add(&ctx->xpath, child, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01004814 }
4815
Radek Krejci00b874b2019-02-12 10:54:50 +01004816 when_shared = *when;
4817 } else {
4818 ++when_shared->refcount;
4819 (*when) = when_shared;
Michal Vasko5c4e5892019-11-14 12:31:38 +01004820
4821 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4822 /* in this case check "when" again for all children because of dummy node check */
Michal Vasko004d3152020-06-11 19:59:22 +02004823 ly_set_add(&ctx->xpath, child, 0);
Michal Vasko5c4e5892019-11-14 12:31:38 +01004824 }
Radek Krejci00b874b2019-02-12 10:54:50 +01004825 }
4826 }
Radek Krejci01342af2019-01-03 15:18:08 +01004827 }
4828 if (context_node_fake.child) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02004829 /* child is the last data node added by grouping */
Radek Krejci01342af2019-01-03 15:18:08 +01004830 child = context_node_fake.child->prev;
Radek Krejcifc11bd72019-04-11 16:00:05 +02004831 /* fix child link of our fake container to point to the first child of the original list */
Radek Krejciec4da802019-05-02 13:02:41 +02004832 context_node_fake.child->prev = parent ? lysc_node_children(parent, ctx->options & LYSC_OPT_RPC_MASK)->prev : ctx->mod->compiled->data->prev;
Radek Krejci76b3e962018-12-14 17:01:25 +01004833 }
4834
Radek Krejcifc11bd72019-04-11 16:00:05 +02004835 /* compile actions */
4836 actions = parent ? lysc_node_actions_p(parent) : &ctx->mod->compiled->rpcs;
4837 if (actions) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004838 actions_index = *actions ? LY_ARRAY_COUNT(*actions) : 0;
Radek Krejciec4da802019-05-02 13:02:41 +02004839 COMPILE_ARRAY1_GOTO(ctx, grp->actions, *actions, parent, u, lys_compile_action, 0, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004840 if (*actions && (uses_p->augments || uses_p->refines)) {
4841 /* 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 +02004842 LY_ARRAY_CREATE_GOTO(ctx->ctx, context_node_fake.actions, LY_ARRAY_COUNT(*actions) - actions_index, ret, cleanup);
4843 LY_ARRAY_COUNT(context_node_fake.actions) = LY_ARRAY_COUNT(*actions) - actions_index;
4844 memcpy(context_node_fake.actions, &(*actions)[actions_index], LY_ARRAY_COUNT(context_node_fake.actions) * sizeof **actions);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004845 }
4846 }
4847
4848 /* compile notifications */
4849 notifs = parent ? lysc_node_notifs_p(parent) : &ctx->mod->compiled->notifs;
4850 if (notifs) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004851 notifs_index = *notifs ? LY_ARRAY_COUNT(*notifs) : 0;
Radek Krejciec4da802019-05-02 13:02:41 +02004852 COMPILE_ARRAY1_GOTO(ctx, grp->notifs, *notifs, parent, u, lys_compile_notif, 0, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004853 if (*notifs && (uses_p->augments || uses_p->refines)) {
4854 /* 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 +02004855 LY_ARRAY_CREATE_GOTO(ctx->ctx, context_node_fake.notifs, LY_ARRAY_COUNT(*notifs) - notifs_index, ret, cleanup);
4856 LY_ARRAY_COUNT(context_node_fake.notifs) = LY_ARRAY_COUNT(*notifs) - notifs_index;
4857 memcpy(context_node_fake.notifs, &(*notifs)[notifs_index], LY_ARRAY_COUNT(context_node_fake.notifs) * sizeof **notifs);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004858 }
4859 }
4860
4861
Radek Krejci3641f562019-02-13 15:38:40 +01004862 /* sort and apply augments */
Radek Krejcifc11bd72019-04-11 16:00:05 +02004863 LY_CHECK_GOTO(lys_compile_augment_sort(ctx, uses_p->augments, NULL, &augments), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004864 LY_ARRAY_FOR(augments, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02004865 LY_CHECK_GOTO(lys_compile_augment(ctx, augments[u], (struct lysc_node*)&context_node_fake), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004866 }
Radek Krejci12fb9142019-01-08 09:45:30 +01004867
Radek Krejcif0089082019-01-07 16:42:01 +01004868 /* reload previous context's mod_def */
4869 ctx->mod_def = mod_old;
Radek Krejci327de162019-06-14 12:52:07 +02004870 lysc_update_path(ctx, NULL, "{refine}");
Radek Krejcif0089082019-01-07 16:42:01 +01004871
Radek Krejci76b3e962018-12-14 17:01:25 +01004872 /* apply refine */
4873 LY_ARRAY_FOR(uses_p->refines, struct lysp_refine, rfn) {
Radek Krejci327de162019-06-14 12:52:07 +02004874 lysc_update_path(ctx, NULL, rfn->nodeid);
4875
Radek Krejci7af64242019-02-18 13:07:53 +01004876 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 +01004877 0, 0, (const struct lysc_node**)&node, &flags),
Radek Krejcifc11bd72019-04-11 16:00:05 +02004878 cleanup);
Radek Krejcif2271f12019-01-07 16:42:23 +01004879 ly_set_add(&refined, node, LY_SET_OPT_USEASLIST);
Radek Krejci76b3e962018-12-14 17:01:25 +01004880
4881 /* default value */
4882 if (rfn->dflts) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004883 if ((node->nodetype != LYS_LEAFLIST) && LY_ARRAY_COUNT(rfn->dflts) > 1) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004884 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004885 "Invalid refine of default - %s cannot hold %"LY_PRI_ARRAY_COUNT_TYPE" default values.",
4886 lys_nodetype2str(node->nodetype), LY_ARRAY_COUNT(rfn->dflts));
Radek Krejcifc11bd72019-04-11 16:00:05 +02004887 goto cleanup;
Radek Krejci76b3e962018-12-14 17:01:25 +01004888 }
4889 if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CHOICE))) {
4890 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004891 "Invalid refine of default - %s cannot hold default value(s).",
4892 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02004893 goto cleanup;
Radek Krejci76b3e962018-12-14 17:01:25 +01004894 }
4895 if (node->nodetype == LYS_LEAF) {
Radek Krejcia1911222019-07-22 17:24:50 +02004896 struct ly_err_item *err = NULL;
4897 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
4898 if (leaf->dflt) {
4899 /* remove the previous default value */
Radek Krejci474f9b82019-07-24 11:36:37 +02004900 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
Radek Krejcia1911222019-07-22 17:24:50 +02004901 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
4902 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
4903 } else {
4904 /* prepare a new one */
4905 leaf->dflt = calloc(1, sizeof *leaf->dflt);
4906 leaf->dflt->realtype = leaf->type;
4907 }
4908 /* parse the new one */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004909 leaf->dflt_mod = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02004910 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, rfn->dflts[0], strlen(rfn->dflts[0]),
4911 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02004912 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, node, NULL, leaf->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02004913 leaf->dflt->realtype->refcount++;
4914 if (err) {
4915 ly_err_print(err);
4916 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4917 "Invalid refine of default - value \"%s\" does not fit the type (%s).", rfn->dflts[0], err->msg);
4918 ly_err_free(err);
4919 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02004920 if (rc == LY_EINCOMPLETE) {
4921 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02004922 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, node, leaf->dflt, leaf->dflt_mod), cleanup);
Radek Krejci1c0c3442019-07-23 16:08:47 +02004923
4924 /* but in general result is so far ok */
4925 rc = LY_SUCCESS;
4926 }
Radek Krejcia1911222019-07-22 17:24:50 +02004927 LY_CHECK_GOTO(rc, cleanup);
4928 leaf->flags |= LYS_SET_DFLT;
Radek Krejci76b3e962018-12-14 17:01:25 +01004929 } else if (node->nodetype == LYS_LEAFLIST) {
Radek Krejcia1911222019-07-22 17:24:50 +02004930 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)node;
4931
Radek Krejci0bcdaed2019-01-10 10:21:34 +01004932 if (ctx->mod->version < 2) {
Radek Krejci01342af2019-01-03 15:18:08 +01004933 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4934 "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 +02004935 goto cleanup;
Radek Krejci01342af2019-01-03 15:18:08 +01004936 }
Radek Krejcia1911222019-07-22 17:24:50 +02004937
4938 /* remove previous set of default values */
4939 LY_ARRAY_FOR(llist->dflts, u) {
Radek Krejci474f9b82019-07-24 11:36:37 +02004940 lysc_incomplete_dflts_remove(ctx, llist->dflts[u]);
Radek Krejcia1911222019-07-22 17:24:50 +02004941 llist->dflts[u]->realtype->plugin->free(ctx->ctx, llist->dflts[u]);
4942 lysc_type_free(ctx->ctx, llist->dflts[u]->realtype);
4943 free(llist->dflts[u]);
Radek Krejci76b3e962018-12-14 17:01:25 +01004944 }
Radek Krejcia1911222019-07-22 17:24:50 +02004945 LY_ARRAY_FREE(llist->dflts);
4946 llist->dflts = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004947 LY_ARRAY_FREE(llist->dflts_mods);
4948 llist->dflts_mods = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02004949
4950 /* create the new set of the default values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004951 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts_mods, LY_ARRAY_COUNT(rfn->dflts), ret, cleanup);
4952 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_COUNT(rfn->dflts), ret, cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01004953 LY_ARRAY_FOR(rfn->dflts, u) {
Radek Krejcia1911222019-07-22 17:24:50 +02004954 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004955 LY_ARRAY_INCREMENT(llist->dflts_mods);
4956 llist->dflts_mods[u] = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02004957 LY_ARRAY_INCREMENT(llist->dflts);
4958 llist->dflts[u] = calloc(1, sizeof *llist->dflts[u]);
4959 llist->dflts[u]->realtype = llist->type;
Radek Krejci1c0c3442019-07-23 16:08:47 +02004960 rc = llist->type->plugin->store(ctx->ctx, llist->type, rfn->dflts[u], strlen(rfn->dflts[u]),
Radek Krejcia1911222019-07-22 17:24:50 +02004961 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02004962 lys_resolve_prefix, (void*)llist->dflts_mods[u], LYD_XML, node, NULL, llist->dflts[u], NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02004963 llist->dflts[u]->realtype->refcount++;
4964 if (err) {
4965 ly_err_print(err);
4966 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4967 "Invalid refine of default in leaf-lists - value \"%s\" does not fit the type (%s).", rfn->dflts[u], err->msg);
4968 ly_err_free(err);
4969 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02004970 if (rc == LY_EINCOMPLETE) {
4971 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02004972 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, node, llist->dflts[u], llist->dflts_mods[u]), cleanup);
Radek Krejci1c0c3442019-07-23 16:08:47 +02004973
4974 /* but in general result is so far ok */
4975 rc = LY_SUCCESS;
4976 }
4977 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01004978 }
Radek Krejcia1911222019-07-22 17:24:50 +02004979 llist->flags |= LYS_SET_DFLT;
Radek Krejci76b3e962018-12-14 17:01:25 +01004980 } else if (node->nodetype == LYS_CHOICE) {
Radek Krejci01342af2019-01-03 15:18:08 +01004981 if (((struct lysc_node_choice*)node)->dflt) {
4982 /* unset LYS_SET_DFLT from the current default case */
4983 ((struct lysc_node_choice*)node)->dflt->flags &= ~LYS_SET_DFLT;
4984 }
Radek Krejcifc11bd72019-04-11 16:00:05 +02004985 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 +01004986 }
4987 }
4988
Radek Krejci12fb9142019-01-08 09:45:30 +01004989 /* description */
4990 if (rfn->dsc) {
4991 FREE_STRING(ctx->ctx, node->dsc);
4992 node->dsc = lydict_insert(ctx->ctx, rfn->dsc, 0);
4993 }
4994
4995 /* reference */
4996 if (rfn->ref) {
4997 FREE_STRING(ctx->ctx, node->ref);
4998 node->ref = lydict_insert(ctx->ctx, rfn->ref, 0);
4999 }
Radek Krejci76b3e962018-12-14 17:01:25 +01005000
5001 /* config */
5002 if (rfn->flags & LYS_CONFIG_MASK) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005003 if (!flags) {
Radek Krejci327de162019-06-14 12:52:07 +02005004 LY_CHECK_GOTO(lys_compile_change_config(ctx, node, rfn->flags, 0, 1), cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005005 } else {
5006 LOGWRN(ctx->ctx, "Refining config inside %s has no effect (%s).",
Michal Vaskoa3881362020-01-21 15:57:35 +01005007 flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action", ctx->path);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005008 }
Radek Krejci76b3e962018-12-14 17:01:25 +01005009 }
5010
5011 /* mandatory */
5012 if (rfn->flags & LYS_MAND_MASK) {
Radek Krejci327de162019-06-14 12:52:07 +02005013 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, node, rfn->flags, 1), cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01005014 }
Radek Krejci9a54f1f2019-01-07 13:47:55 +01005015
5016 /* presence */
5017 if (rfn->presence) {
5018 if (node->nodetype != LYS_CONTAINER) {
5019 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005020 "Invalid refine of presence statement - %s cannot hold the presence statement.",
5021 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005022 goto cleanup;
Radek Krejci9a54f1f2019-01-07 13:47:55 +01005023 }
5024 node->flags |= LYS_PRESENCE;
5025 }
Radek Krejci9a564c92019-01-07 14:53:57 +01005026
5027 /* must */
5028 if (rfn->musts) {
5029 switch (node->nodetype) {
5030 case LYS_LEAF:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005031 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 +01005032 break;
5033 case LYS_LEAFLIST:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005034 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 +01005035 break;
5036 case LYS_LIST:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005037 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 +01005038 break;
5039 case LYS_CONTAINER:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005040 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 +01005041 break;
5042 case LYS_ANYXML:
5043 case LYS_ANYDATA:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005044 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 +01005045 break;
5046 default:
5047 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005048 "Invalid refine of must statement - %s cannot hold any must statement.",
5049 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005050 goto cleanup;
Radek Krejci9a564c92019-01-07 14:53:57 +01005051 }
Michal Vasko004d3152020-06-11 19:59:22 +02005052 ly_set_add(&ctx->xpath, node, 0);
Radek Krejci9a564c92019-01-07 14:53:57 +01005053 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005054
5055 /* min/max-elements */
5056 if (rfn->flags & (LYS_SET_MAX | LYS_SET_MIN)) {
5057 switch (node->nodetype) {
5058 case LYS_LEAFLIST:
5059 if (rfn->flags & LYS_SET_MAX) {
5060 ((struct lysc_node_leaflist*)node)->max = rfn->max ? rfn->max : (uint32_t)-1;
5061 }
5062 if (rfn->flags & LYS_SET_MIN) {
5063 ((struct lysc_node_leaflist*)node)->min = rfn->min;
Radek Krejcife909632019-02-12 15:34:42 +01005064 if (rfn->min) {
5065 node->flags |= LYS_MAND_TRUE;
5066 lys_compile_mandatory_parents(node->parent, 1);
5067 } else {
5068 node->flags &= ~LYS_MAND_TRUE;
5069 lys_compile_mandatory_parents(node->parent, 0);
5070 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005071 }
5072 break;
5073 case LYS_LIST:
5074 if (rfn->flags & LYS_SET_MAX) {
5075 ((struct lysc_node_list*)node)->max = rfn->max ? rfn->max : (uint32_t)-1;
5076 }
5077 if (rfn->flags & LYS_SET_MIN) {
5078 ((struct lysc_node_list*)node)->min = rfn->min;
Radek Krejcife909632019-02-12 15:34:42 +01005079 if (rfn->min) {
5080 node->flags |= LYS_MAND_TRUE;
5081 lys_compile_mandatory_parents(node->parent, 1);
5082 } else {
5083 node->flags &= ~LYS_MAND_TRUE;
5084 lys_compile_mandatory_parents(node->parent, 0);
5085 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005086 }
5087 break;
5088 default:
5089 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005090 "Invalid refine of %s statement - %s cannot hold this statement.",
5091 (rfn->flags & LYS_SET_MAX) ? "max-elements" : "min-elements", lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005092 goto cleanup;
Radek Krejci6b22ab72019-01-07 15:39:20 +01005093 }
5094 }
Radek Krejcif0089082019-01-07 16:42:01 +01005095
5096 /* if-feature */
5097 if (rfn->iffeatures) {
5098 /* any node in compiled tree can get additional if-feature, so do not check nodetype */
Radek Krejciec4da802019-05-02 13:02:41 +02005099 COMPILE_ARRAY_GOTO(ctx, rfn->iffeatures, node->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejcif0089082019-01-07 16:42:01 +01005100 }
Radek Krejci327de162019-06-14 12:52:07 +02005101
5102 lysc_update_path(ctx, NULL, NULL);
Radek Krejci01342af2019-01-03 15:18:08 +01005103 }
Radek Krejcie86bf772018-12-14 11:39:53 +01005104
Radek Krejcif2271f12019-01-07 16:42:23 +01005105 /* do some additional checks of the changed nodes when all the refines are applied */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02005106 for (uint32_t i = 0; i < refined.count; ++i) {
5107 node = (struct lysc_node*)refined.objs[i];
5108 rfn = &uses_p->refines[i];
Radek Krejci327de162019-06-14 12:52:07 +02005109 lysc_update_path(ctx, NULL, rfn->nodeid);
Radek Krejcif2271f12019-01-07 16:42:23 +01005110
5111 /* check possible conflict with default value (default added, mandatory left true) */
5112 if ((node->flags & LYS_MAND_TRUE) &&
5113 (((node->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)node)->dflt) ||
5114 ((node->nodetype & LYS_LEAF) && (node->flags & LYS_SET_DFLT)))) {
5115 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005116 "Invalid refine of default - the node is mandatory.");
Radek Krejcifc11bd72019-04-11 16:00:05 +02005117 goto cleanup;
Radek Krejcif2271f12019-01-07 16:42:23 +01005118 }
5119
5120 if (rfn->flags & (LYS_SET_MAX | LYS_SET_MIN)) {
5121 if (node->nodetype == LYS_LIST) {
5122 min = ((struct lysc_node_list*)node)->min;
5123 max = ((struct lysc_node_list*)node)->max;
5124 } else {
5125 min = ((struct lysc_node_leaflist*)node)->min;
5126 max = ((struct lysc_node_leaflist*)node)->max;
5127 }
5128 if (min > max) {
5129 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005130 "Invalid refine of %s statement - \"min-elements\" is bigger than \"max-elements\".",
5131 (rfn->flags & LYS_SET_MAX) ? "max-elements" : "min-elements");
Radek Krejcifc11bd72019-04-11 16:00:05 +02005132 goto cleanup;
Radek Krejcif2271f12019-01-07 16:42:23 +01005133 }
5134 }
5135 }
5136
Radek Krejci327de162019-06-14 12:52:07 +02005137 lysc_update_path(ctx, NULL, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01005138 ret = LY_SUCCESS;
Radek Krejcifc11bd72019-04-11 16:00:05 +02005139
5140cleanup:
5141 /* fix connection of the children nodes from fake context node back into the parent */
5142 if (context_node_fake.child) {
5143 context_node_fake.child->prev = child;
5144 }
5145 LY_LIST_FOR(context_node_fake.child, child) {
5146 child->parent = parent;
5147 }
5148
5149 if (uses_p->augments || uses_p->refines) {
5150 /* return back actions and notifications in case they were separated for augment/refine processing */
Radek Krejci65e20e22019-04-12 09:44:37 +02005151 if (context_node_fake.actions) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005152 memcpy(&(*actions)[actions_index], context_node_fake.actions, LY_ARRAY_COUNT(context_node_fake.actions) * sizeof **actions);
Radek Krejcifc11bd72019-04-11 16:00:05 +02005153 LY_ARRAY_FREE(context_node_fake.actions);
5154 }
Radek Krejci65e20e22019-04-12 09:44:37 +02005155 if (context_node_fake.notifs) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005156 memcpy(&(*notifs)[notifs_index], context_node_fake.notifs, LY_ARRAY_COUNT(context_node_fake.notifs) * sizeof **notifs);
Radek Krejcifc11bd72019-04-11 16:00:05 +02005157 LY_ARRAY_FREE(context_node_fake.notifs);
5158 }
5159 }
5160
Radek Krejcie86bf772018-12-14 11:39:53 +01005161 /* reload previous context's mod_def */
5162 ctx->mod_def = mod_old;
5163 /* remove the grouping from the stack for circular groupings dependency check */
5164 ly_set_rm_index(&ctx->groupings, ctx->groupings.count - 1, NULL);
5165 assert(ctx->groupings.count == grp_stack_count);
Radek Krejcif2271f12019-01-07 16:42:23 +01005166 ly_set_erase(&refined, NULL);
Radek Krejci3641f562019-02-13 15:38:40 +01005167 LY_ARRAY_FREE(augments);
Radek Krejcie86bf772018-12-14 11:39:53 +01005168
5169 return ret;
5170}
5171
Radek Krejci327de162019-06-14 12:52:07 +02005172static int
5173lys_compile_grouping_pathlog(struct lysc_ctx *ctx, struct lysp_node *node, char **path)
5174{
5175 struct lysp_node *iter;
5176 int len = 0;
5177
5178 *path = NULL;
5179 for (iter = node; iter && len >= 0; iter = iter->parent) {
5180 char *s = *path;
5181 char *id;
5182
5183 switch (iter->nodetype) {
5184 case LYS_USES:
Radek Krejci200f1062020-07-11 22:51:03 +02005185 LY_CHECK_RET(asprintf(&id, "{uses='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005186 break;
5187 case LYS_GROUPING:
Radek Krejci200f1062020-07-11 22:51:03 +02005188 LY_CHECK_RET(asprintf(&id, "{grouping='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005189 break;
5190 case LYS_AUGMENT:
Radek Krejci200f1062020-07-11 22:51:03 +02005191 LY_CHECK_RET(asprintf(&id, "{augment='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005192 break;
5193 default:
5194 id = strdup(iter->name);
5195 break;
5196 }
5197
5198 if (!iter->parent) {
5199 /* print prefix */
5200 len = asprintf(path, "/%s:%s%s", ctx->mod->name, id, s ? s : "");
5201 } else {
5202 /* prefix is the same as in parent */
5203 len = asprintf(path, "/%s%s", id, s ? s : "");
5204 }
5205 free(s);
5206 free(id);
5207 }
5208
5209 if (len < 0) {
5210 free(*path);
5211 *path = NULL;
5212 } else if (len == 0) {
5213 *path = strdup("/");
5214 len = 1;
5215 }
5216 return len;
5217}
5218
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005219/**
5220 * @brief Validate groupings that were defined but not directly used in the schema itself.
5221 *
5222 * The grouping does not need to be compiled (and it is compiled here, but the result is forgotten immediately),
5223 * but to have the complete result of the schema validity, even such groupings are supposed to be checked.
5224 */
5225static LY_ERR
5226lys_compile_grouping(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysp_grp *grp)
5227{
5228 LY_ERR ret;
Radek Krejci327de162019-06-14 12:52:07 +02005229 char *path;
5230 int len;
5231
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005232 struct lysp_node_uses fake_uses = {
5233 .parent = node_p,
5234 .nodetype = LYS_USES,
5235 .flags = 0, .next = NULL,
5236 .name = grp->name,
5237 .dsc = NULL, .ref = NULL, .when = NULL, .iffeatures = NULL, .exts = NULL,
5238 .refines = NULL, .augments = NULL
5239 };
5240 struct lysc_node_container fake_container = {
5241 .nodetype = LYS_CONTAINER,
5242 .flags = node_p ? (node_p->flags & LYS_FLAGS_COMPILED_MASK) : 0,
5243 .module = ctx->mod,
5244 .sp = NULL, .parent = NULL, .next = NULL,
5245 .prev = (struct lysc_node*)&fake_container,
5246 .name = "fake",
5247 .dsc = NULL, .ref = NULL, .exts = NULL, .iffeatures = NULL, .when = NULL,
5248 .child = NULL, .musts = NULL, .actions = NULL, .notifs = NULL
5249 };
5250
5251 if (grp->parent) {
5252 LOGWRN(ctx->ctx, "Locally scoped grouping \"%s\" not used.", grp->name);
5253 }
Radek Krejci327de162019-06-14 12:52:07 +02005254
5255 len = lys_compile_grouping_pathlog(ctx, grp->parent, &path);
5256 if (len < 0) {
5257 LOGMEM(ctx->ctx);
5258 return LY_EMEM;
5259 }
5260 strncpy(ctx->path, path, LYSC_CTX_BUFSIZE - 1);
5261 ctx->path_len = (uint16_t)len;
5262 free(path);
5263
5264 lysc_update_path(ctx, NULL, "{grouping}");
5265 lysc_update_path(ctx, NULL, grp->name);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005266 ret = lys_compile_uses(ctx, &fake_uses, (struct lysc_node*)&fake_container);
Radek Krejci327de162019-06-14 12:52:07 +02005267 lysc_update_path(ctx, NULL, NULL);
5268 lysc_update_path(ctx, NULL, NULL);
5269
5270 ctx->path_len = 1;
5271 ctx->path[1] = '\0';
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005272
5273 /* cleanup */
5274 lysc_node_container_free(ctx->ctx, &fake_container);
5275
5276 return ret;
5277}
Radek Krejcife909632019-02-12 15:34:42 +01005278
Radek Krejcie86bf772018-12-14 11:39:53 +01005279/**
Radek Krejcia3045382018-11-22 14:30:31 +01005280 * @brief Compile parsed schema node information.
5281 * @param[in] ctx Compile context
5282 * @param[in] node_p Parsed schema node.
Radek Krejcia3045382018-11-22 14:30:31 +01005283 * @param[in] parent Compiled parent node where the current node is supposed to be connected. It is
5284 * NULL for top-level nodes, in such a case the module where the node will be connected is taken from
5285 * the compile context.
Radek Krejcib1b59152019-01-07 13:21:56 +01005286 * @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).
5287 * Zero means no uses, non-zero value with no status bit set mean the default status.
Radek Krejcia3045382018-11-22 14:30:31 +01005288 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
5289 */
Radek Krejci19a96102018-11-15 13:38:09 +01005290static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02005291lys_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 +01005292{
Radek Krejci1c54f462020-05-12 17:25:34 +02005293 LY_ERR ret = LY_SUCCESS;
Radek Krejci056d0a82018-12-06 16:57:25 +01005294 struct lysc_node *node;
5295 struct lysc_node_case *cs;
Radek Krejci00b874b2019-02-12 10:54:50 +01005296 struct lysc_when **when;
Radek Krejci19a96102018-11-15 13:38:09 +01005297 unsigned int u;
Radek Krejciec4da802019-05-02 13:02:41 +02005298 LY_ERR (*node_compile_spec)(struct lysc_ctx*, struct lysp_node*, struct lysc_node*);
Radek Krejci19a96102018-11-15 13:38:09 +01005299
Radek Krejci327de162019-06-14 12:52:07 +02005300 if (node_p->nodetype != LYS_USES) {
5301 lysc_update_path(ctx, parent, node_p->name);
5302 } else {
5303 lysc_update_path(ctx, NULL, "{uses}");
5304 lysc_update_path(ctx, NULL, node_p->name);
5305 }
5306
Radek Krejci19a96102018-11-15 13:38:09 +01005307 switch (node_p->nodetype) {
5308 case LYS_CONTAINER:
5309 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_container));
5310 node_compile_spec = lys_compile_node_container;
5311 break;
5312 case LYS_LEAF:
5313 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_leaf));
5314 node_compile_spec = lys_compile_node_leaf;
5315 break;
5316 case LYS_LIST:
5317 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_list));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005318 node_compile_spec = lys_compile_node_list;
Radek Krejci19a96102018-11-15 13:38:09 +01005319 break;
5320 case LYS_LEAFLIST:
5321 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_leaflist));
Radek Krejci0e5d8382018-11-28 16:37:53 +01005322 node_compile_spec = lys_compile_node_leaflist;
Radek Krejci19a96102018-11-15 13:38:09 +01005323 break;
Radek Krejci19a96102018-11-15 13:38:09 +01005324 case LYS_CHOICE:
5325 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_choice));
Radek Krejci056d0a82018-12-06 16:57:25 +01005326 node_compile_spec = lys_compile_node_choice;
Radek Krejci19a96102018-11-15 13:38:09 +01005327 break;
Radek Krejci19a96102018-11-15 13:38:09 +01005328 case LYS_ANYXML:
5329 case LYS_ANYDATA:
5330 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_anydata));
Radek Krejci9800fb82018-12-13 14:26:23 +01005331 node_compile_spec = lys_compile_node_any;
Radek Krejci19a96102018-11-15 13:38:09 +01005332 break;
Radek Krejcie86bf772018-12-14 11:39:53 +01005333 case LYS_USES:
Radek Krejci327de162019-06-14 12:52:07 +02005334 ret = lys_compile_uses(ctx, (struct lysp_node_uses*)node_p, parent);
5335 lysc_update_path(ctx, NULL, NULL);
5336 lysc_update_path(ctx, NULL, NULL);
5337 return ret;
Radek Krejci19a96102018-11-15 13:38:09 +01005338 default:
5339 LOGINT(ctx->ctx);
5340 return LY_EINT;
5341 }
5342 LY_CHECK_ERR_RET(!node, LOGMEM(ctx->ctx), LY_EMEM);
5343 node->nodetype = node_p->nodetype;
5344 node->module = ctx->mod;
5345 node->prev = node;
Radek Krejci0e5d8382018-11-28 16:37:53 +01005346 node->flags = node_p->flags & LYS_FLAGS_COMPILED_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +01005347
5348 /* config */
Radek Krejciec4da802019-05-02 13:02:41 +02005349 if (ctx->options & (LYSC_OPT_RPC_INPUT | LYSC_OPT_RPC_OUTPUT)) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005350 /* ignore config statements inside RPC/action data */
Radek Krejcifc11bd72019-04-11 16:00:05 +02005351 node->flags &= ~LYS_CONFIG_MASK;
Radek Krejciec4da802019-05-02 13:02:41 +02005352 node->flags |= (ctx->options & LYSC_OPT_RPC_INPUT) ? LYS_CONFIG_W : LYS_CONFIG_R;
5353 } else if (ctx->options & LYSC_OPT_NOTIFICATION) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005354 /* ignore config statements inside Notification data */
Radek Krejcifc11bd72019-04-11 16:00:05 +02005355 node->flags &= ~LYS_CONFIG_MASK;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005356 node->flags |= LYS_CONFIG_R;
5357 } else if (!(node->flags & LYS_CONFIG_MASK)) {
Radek Krejci19a96102018-11-15 13:38:09 +01005358 /* config not explicitely set, inherit it from parent */
5359 if (parent) {
5360 node->flags |= parent->flags & LYS_CONFIG_MASK;
5361 } else {
5362 /* default is config true */
5363 node->flags |= LYS_CONFIG_W;
5364 }
Radek Krejci93dcc392019-02-19 10:43:38 +01005365 } else {
5366 /* config set explicitely */
5367 node->flags |= LYS_SET_CONFIG;
Radek Krejci19a96102018-11-15 13:38:09 +01005368 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005369 if (parent && (parent->flags & LYS_CONFIG_R) && (node->flags & LYS_CONFIG_W)) {
5370 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
5371 "Configuration node cannot be child of any state data node.");
Radek Krejci1c54f462020-05-12 17:25:34 +02005372 ret = LY_EVALID;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005373 goto error;
5374 }
Radek Krejci19a96102018-11-15 13:38:09 +01005375
Radek Krejcia6d57732018-11-29 13:40:37 +01005376 /* *list ordering */
5377 if (node->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
5378 if ((node->flags & LYS_CONFIG_R) && (node->flags & LYS_ORDBY_MASK)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02005379 LOGWRN(ctx->ctx, "The ordered-by statement is ignored in lists representing %s (%s).",
Radek Krejciec4da802019-05-02 13:02:41 +02005380 (ctx->options & LYSC_OPT_RPC_OUTPUT) ? "RPC/action output parameters" :
5381 (ctx->options & LYSC_OPT_NOTIFICATION) ? "notification content" : "state data", ctx->path);
Radek Krejcia6d57732018-11-29 13:40:37 +01005382 node->flags &= ~LYS_ORDBY_MASK;
5383 node->flags |= LYS_ORDBY_SYSTEM;
5384 } else if (!(node->flags & LYS_ORDBY_MASK)) {
5385 /* default ordering is system */
5386 node->flags |= LYS_ORDBY_SYSTEM;
5387 }
5388 }
5389
Radek Krejci19a96102018-11-15 13:38:09 +01005390 /* status - it is not inherited by specification, but it does not make sense to have
5391 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
Radek Krejci056d0a82018-12-06 16:57:25 +01005392 if (!parent || parent->nodetype != LYS_CHOICE) {
5393 /* in case of choice/case's children, postpone the check to the moment we know if
5394 * 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 +02005395 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 +01005396 }
5397
Radek Krejciec4da802019-05-02 13:02:41 +02005398 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Radek Krejci19a96102018-11-15 13:38:09 +01005399 node->sp = node_p;
5400 }
5401 DUP_STRING(ctx->ctx, node_p->name, node->name);
Radek Krejci12fb9142019-01-08 09:45:30 +01005402 DUP_STRING(ctx->ctx, node_p->dsc, node->dsc);
5403 DUP_STRING(ctx->ctx, node_p->ref, node->ref);
Radek Krejci00b874b2019-02-12 10:54:50 +01005404 if (node_p->when) {
5405 LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error);
Radek Krejci1c54f462020-05-12 17:25:34 +02005406 LY_CHECK_GOTO(ret = lys_compile_when(ctx, node_p->when, node_p->flags, node, when), error);
Michal Vasko175012e2019-11-06 15:49:14 +01005407
5408 if (!(ctx->options & LYSC_OPT_GROUPING)) {
5409 /* do not check "when" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02005410 ly_set_add(&ctx->xpath, node, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01005411 }
Radek Krejci00b874b2019-02-12 10:54:50 +01005412 }
Radek Krejciec4da802019-05-02 13:02:41 +02005413 COMPILE_ARRAY_GOTO(ctx, node_p->iffeatures, node->iffeatures, u, lys_compile_iffeature, ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01005414
5415 /* nodetype-specific part */
Radek Krejci1c54f462020-05-12 17:25:34 +02005416 LY_CHECK_GOTO(ret = node_compile_spec(ctx, node_p, node), error);
Radek Krejci19a96102018-11-15 13:38:09 +01005417
Radek Krejci0935f412019-08-20 16:15:18 +02005418 COMPILE_EXTS_GOTO(ctx, node_p->exts, node->exts, node, LYEXT_PAR_NODE, ret, error);
5419
Radek Krejcife909632019-02-12 15:34:42 +01005420 /* inherit LYS_MAND_TRUE in parent containers */
5421 if (node->flags & LYS_MAND_TRUE) {
5422 lys_compile_mandatory_parents(parent, 1);
5423 }
5424
Radek Krejci327de162019-06-14 12:52:07 +02005425 lysc_update_path(ctx, NULL, NULL);
5426
Radek Krejci19a96102018-11-15 13:38:09 +01005427 /* insert into parent's children */
Radek Krejcia3045382018-11-22 14:30:31 +01005428 if (parent) {
5429 if (parent->nodetype == LYS_CHOICE) {
Radek Krejci327de162019-06-14 12:52:07 +02005430 if (node_p->parent->nodetype == LYS_CASE) {
5431 lysc_update_path(ctx, parent, node_p->parent->name);
5432 } else {
5433 lysc_update_path(ctx, parent, node->name);
5434 }
Radek Krejciec4da802019-05-02 13:02:41 +02005435 cs = lys_compile_node_case(ctx, node_p->parent, (struct lysc_node_choice*)parent, node);
Radek Krejci056d0a82018-12-06 16:57:25 +01005436 LY_CHECK_ERR_GOTO(!cs, ret = LY_EVALID, error);
Radek Krejcib1b59152019-01-07 13:21:56 +01005437 if (uses_status) {
5438
5439 }
Radek Krejci056d0a82018-12-06 16:57:25 +01005440 /* the postponed status check of the node and its real parent - in case of implicit case,
Radek Krejcib1b59152019-01-07 13:21:56 +01005441 * it directly gets the same status flags as the choice;
5442 * uses_status cannot be applied here since uses cannot be child statement of choice */
Radek Krejci1c54f462020-05-12 17:25:34 +02005443 LY_CHECK_GOTO(ret = lys_compile_status(ctx, &node->flags, cs->flags), error);
Radek Krejci056d0a82018-12-06 16:57:25 +01005444 node->parent = (struct lysc_node*)cs;
Radek Krejci327de162019-06-14 12:52:07 +02005445 lysc_update_path(ctx, parent, node->name);
Radek Krejci056d0a82018-12-06 16:57:25 +01005446 } else { /* other than choice */
Radek Krejci327de162019-06-14 12:52:07 +02005447 lysc_update_path(ctx, parent, node->name);
Radek Krejci056d0a82018-12-06 16:57:25 +01005448 node->parent = parent;
Radek Krejci19a96102018-11-15 13:38:09 +01005449 }
Radek Krejciec4da802019-05-02 13:02:41 +02005450 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 +02005451
5452 if (parent->nodetype == LYS_CHOICE) {
5453 lysc_update_path(ctx, NULL, NULL);
5454 }
Radek Krejci19a96102018-11-15 13:38:09 +01005455 } else {
5456 /* top-level element */
5457 if (!ctx->mod->compiled->data) {
5458 ctx->mod->compiled->data = node;
5459 } else {
5460 /* insert at the end of the module's top-level nodes list */
5461 ctx->mod->compiled->data->prev->next = node;
5462 node->prev = ctx->mod->compiled->data->prev;
5463 ctx->mod->compiled->data->prev = node;
5464 }
Radek Krejci327de162019-06-14 12:52:07 +02005465 lysc_update_path(ctx, parent, node->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01005466 if (lys_compile_node_uniqness(ctx, ctx->mod->compiled->data, ctx->mod->compiled->rpcs,
5467 ctx->mod->compiled->notifs, node->name, node)) {
5468 return LY_EVALID;
5469 }
Radek Krejci19a96102018-11-15 13:38:09 +01005470 }
Radek Krejci327de162019-06-14 12:52:07 +02005471 lysc_update_path(ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01005472
5473 return LY_SUCCESS;
5474
5475error:
5476 lysc_node_free(ctx->ctx, node);
5477 return ret;
5478}
5479
Radek Krejciccd20f12019-02-15 14:12:27 +01005480static void
5481lysc_disconnect(struct lysc_node *node)
5482{
Radek Krejci0a048dd2019-02-18 16:01:43 +01005483 struct lysc_node *parent, *child, *prev = NULL, *next;
5484 struct lysc_node_case *cs = NULL;
Radek Krejciccd20f12019-02-15 14:12:27 +01005485 int remove_cs = 0;
5486
5487 parent = node->parent;
5488
5489 /* parent's first child */
5490 if (!parent) {
5491 return;
5492 }
5493 if (parent->nodetype == LYS_CHOICE) {
Radek Krejci0a048dd2019-02-18 16:01:43 +01005494 cs = (struct lysc_node_case*)node;
5495 } else if (parent->nodetype == LYS_CASE) {
5496 /* disconnecting some node in a case */
5497 cs = (struct lysc_node_case*)parent;
5498 parent = cs->parent;
5499 for (child = cs->child; child && child->parent == (struct lysc_node*)cs; child = child->next) {
5500 if (child == node) {
5501 if (cs->child == child) {
5502 if (!child->next || child->next->parent != (struct lysc_node*)cs) {
5503 /* case with a single child -> remove also the case */
5504 child->parent = NULL;
5505 remove_cs = 1;
5506 } else {
5507 cs->child = child->next;
Radek Krejciccd20f12019-02-15 14:12:27 +01005508 }
5509 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005510 break;
Radek Krejciccd20f12019-02-15 14:12:27 +01005511 }
5512 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005513 if (!remove_cs) {
5514 cs = NULL;
5515 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005516 } else if (lysc_node_children(parent, node->flags) == node) {
5517 *lysc_node_children_p(parent, node->flags) = node->next;
Radek Krejci0a048dd2019-02-18 16:01:43 +01005518 }
5519
5520 if (cs) {
5521 if (remove_cs) {
5522 /* cs has only one child which is being also removed */
5523 lysc_disconnect((struct lysc_node*)cs);
5524 lysc_node_free(cs->module->ctx, (struct lysc_node*)cs);
5525 } else {
Radek Krejciccd20f12019-02-15 14:12:27 +01005526 if (((struct lysc_node_choice*)parent)->dflt == cs) {
5527 /* default case removed */
5528 ((struct lysc_node_choice*)parent)->dflt = NULL;
5529 }
5530 if (((struct lysc_node_choice*)parent)->cases == cs) {
5531 /* first case removed */
5532 ((struct lysc_node_choice*)parent)->cases = (struct lysc_node_case*)cs->next;
5533 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005534 if (cs->child) {
5535 /* cs will be removed and disconnected from its siblings, but we have to take care also about its children */
5536 if (cs->child->prev->parent != (struct lysc_node*)cs) {
5537 prev = cs->child->prev;
5538 } /* else all the children are under a single case */
5539 LY_LIST_FOR_SAFE(cs->child, next, child) {
5540 if (child->parent != (struct lysc_node*)cs) {
5541 break;
5542 }
5543 lysc_node_free(node->module->ctx, child);
5544 }
5545 if (prev) {
5546 if (prev->next) {
5547 prev->next = child;
5548 }
5549 if (child) {
5550 child->prev = prev;
5551 } else {
5552 /* link from the first child under the cases */
5553 ((struct lysc_node_choice*)cs->parent)->cases->child->prev = prev;
5554 }
5555 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005556 }
5557 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005558 }
5559
5560 /* siblings */
Radek Krejci0a048dd2019-02-18 16:01:43 +01005561 if (node->prev->next) {
5562 node->prev->next = node->next;
5563 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005564 if (node->next) {
5565 node->next->prev = node->prev;
Radek Krejci0a048dd2019-02-18 16:01:43 +01005566 } else if (node->nodetype != LYS_CASE) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005567 child = (struct lysc_node*)lysc_node_children(parent, node->flags);
Radek Krejci0a048dd2019-02-18 16:01:43 +01005568 if (child) {
5569 child->prev = node->prev;
5570 }
5571 } else if (((struct lysc_node_choice*)parent)->cases) {
5572 ((struct lysc_node_choice*)parent)->cases->prev = node->prev;
Radek Krejciccd20f12019-02-15 14:12:27 +01005573 }
5574}
5575
5576LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02005577lys_compile_deviations(struct lysc_ctx *ctx, struct lysp_module *mod_p)
Radek Krejciccd20f12019-02-15 14:12:27 +01005578{
Radek Krejcia1911222019-07-22 17:24:50 +02005579 LY_ERR ret = LY_EVALID, rc;
Radek Krejciccd20f12019-02-15 14:12:27 +01005580 struct ly_set devs_p = {0};
5581 struct ly_set targets = {0};
5582 struct lysc_node *target; /* target target of the deviation */
Radek Krejci7af64242019-02-18 13:07:53 +01005583 struct lysc_node_list *list;
Radek Krejcifc11bd72019-04-11 16:00:05 +02005584 struct lysc_action *rpcs;
5585 struct lysc_notif *notifs;
Radek Krejciccd20f12019-02-15 14:12:27 +01005586 struct lysp_deviation *dev;
5587 struct lysp_deviate *d, **dp_new;
5588 struct lysp_deviate_add *d_add;
5589 struct lysp_deviate_del *d_del;
5590 struct lysp_deviate_rpl *d_rpl;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005591 LY_ARRAY_COUNT_TYPE u, v, x, y, z;
Radek Krejciccd20f12019-02-15 14:12:27 +01005592 struct lysc_deviation {
5593 const char *nodeid;
5594 struct lysc_node *target; /* target node of the deviation */
5595 struct lysp_deviate** deviates;/* sized array of pointers to parsed deviate statements to apply on target */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005596 uint16_t flags; /* target's flags from lys_resolve_schema_nodeid() */
Radek Krejciccd20f12019-02-15 14:12:27 +01005597 uint8_t not_supported; /* flag if deviates contains not-supported deviate */
5598 } **devs = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02005599 int i, changed_type;
Radek Krejciccd20f12019-02-15 14:12:27 +01005600 size_t prefix_len, name_len;
Radek Krejcia1911222019-07-22 17:24:50 +02005601 const char *prefix, *name, *nodeid, *dflt;
Michal Vasko57c10cd2020-05-27 15:57:11 +02005602 struct lys_module *mod, **dev_mod;
Radek Krejci551b12c2019-02-19 16:11:21 +01005603 uint32_t min, max;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005604 uint16_t flags;
Radek Krejciccd20f12019-02-15 14:12:27 +01005605
5606 /* get all deviations from the module and all its submodules ... */
5607 LY_ARRAY_FOR(mod_p->deviations, u) {
5608 ly_set_add(&devs_p, &mod_p->deviations[u], LY_SET_OPT_USEASLIST);
5609 }
5610 LY_ARRAY_FOR(mod_p->includes, v) {
5611 LY_ARRAY_FOR(mod_p->includes[v].submodule->deviations, u) {
5612 ly_set_add(&devs_p, &mod_p->includes[v].submodule->deviations[u], LY_SET_OPT_USEASLIST);
5613 }
5614 }
5615 if (!devs_p.count) {
5616 /* nothing to do */
5617 return LY_SUCCESS;
5618 }
5619
Radek Krejci327de162019-06-14 12:52:07 +02005620 lysc_update_path(ctx, NULL, "{deviation}");
5621
Radek Krejciccd20f12019-02-15 14:12:27 +01005622 /* ... and group them by the target node */
5623 devs = calloc(devs_p.count, sizeof *devs);
5624 for (u = 0; u < devs_p.count; ++u) {
5625 dev = devs_p.objs[u];
Radek Krejci327de162019-06-14 12:52:07 +02005626 lysc_update_path(ctx, NULL, dev->nodeid);
Radek Krejciccd20f12019-02-15 14:12:27 +01005627
5628 /* resolve the target */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005629 LY_CHECK_GOTO(lys_resolve_schema_nodeid(ctx, dev->nodeid, 0, NULL, ctx->mod, 0, 1,
5630 (const struct lysc_node**)&target, &flags), cleanup);
Michal Vasko1bf09392020-03-27 12:38:10 +01005631 if (target->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejcif538ce52019-03-05 10:46:14 +01005632 /* move the target pointer to input/output to make them different from the action and
5633 * between them. Before the devs[] item is being processed, the target pointer must be fixed
5634 * back to the RPC/action node due to a better compatibility and decision code in this function.
5635 * The LYSC_OPT_INTERNAL is used as a flag to this change. */
5636 if (flags & LYSC_OPT_RPC_INPUT) {
5637 target = (struct lysc_node*)&((struct lysc_action*)target)->input;
5638 flags |= LYSC_OPT_INTERNAL;
5639 } else if (flags & LYSC_OPT_RPC_OUTPUT) {
5640 target = (struct lysc_node*)&((struct lysc_action*)target)->output;
5641 flags |= LYSC_OPT_INTERNAL;
5642 }
5643 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005644 /* insert into the set of targets with duplicity detection */
5645 i = ly_set_add(&targets, target, 0);
5646 if (!devs[i]) {
5647 /* new record */
5648 devs[i] = calloc(1, sizeof **devs);
5649 devs[i]->target = target;
5650 devs[i]->nodeid = dev->nodeid;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005651 devs[i]->flags = flags;
Radek Krejciccd20f12019-02-15 14:12:27 +01005652 }
5653 /* add deviates into the deviation's list of deviates */
5654 for (d = dev->deviates; d; d = d->next) {
5655 LY_ARRAY_NEW_GOTO(ctx->ctx, devs[i]->deviates, dp_new, ret, cleanup);
5656 *dp_new = d;
5657 if (d->mod == LYS_DEV_NOT_SUPPORTED) {
5658 devs[i]->not_supported = 1;
5659 }
5660 }
Radek Krejci327de162019-06-14 12:52:07 +02005661
5662 lysc_update_path(ctx, NULL, NULL);
Radek Krejciccd20f12019-02-15 14:12:27 +01005663 }
5664
5665 /* MACROS for deviates checking */
5666#define DEV_CHECK_NODETYPE(NODETYPES, DEVTYPE, PROPERTY) \
5667 if (!(devs[u]->target->nodetype & (NODETYPES))) { \
Radek Krejci327de162019-06-14 12:52:07 +02005668 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, lys_nodetype2str(devs[u]->target->nodetype), DEVTYPE, PROPERTY);\
Radek Krejciccd20f12019-02-15 14:12:27 +01005669 goto cleanup; \
5670 }
5671
5672#define DEV_CHECK_CARDINALITY(ARRAY, MAX, PROPERTY) \
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005673 if (LY_ARRAY_COUNT(ARRAY) > MAX) { \
5674 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid deviation of %s with too many (%"LY_PRI_ARRAY_COUNT_TYPE") %s properties.", \
5675 lys_nodetype2str(devs[u]->target->nodetype), LY_ARRAY_COUNT(ARRAY), PROPERTY); \
Radek Krejciccd20f12019-02-15 14:12:27 +01005676 goto cleanup; \
5677 }
5678
Radek Krejcia1911222019-07-22 17:24:50 +02005679
Radek Krejciccd20f12019-02-15 14:12:27 +01005680#define DEV_CHECK_NONPRESENCE(TYPE, COND, MEMBER, PROPERTY, VALUEMEMBER) \
Radek Krejcia1911222019-07-22 17:24:50 +02005681 if (((TYPE)devs[u]->target)->MEMBER && (COND)) { \
5682 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5683 "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", \
5684 PROPERTY, ((TYPE)devs[u]->target)->VALUEMEMBER); \
5685 goto cleanup; \
5686 }
5687
Radek Krejcid0ef1af2019-07-23 12:22:05 +02005688#define DEV_CHECK_NONPRESENCE_VALUE(TYPE, COND, MEMBER, PROPERTY, VALUEMEMBER, VALUEMODMEMBER) \
Radek Krejci93dcc392019-02-19 10:43:38 +01005689 if (((TYPE)devs[u]->target)->MEMBER && (COND)) { \
Radek Krejcia1911222019-07-22 17:24:50 +02005690 int dynamic_ = 0; const char *val_; \
Radek Krejcid0ef1af2019-07-23 12:22:05 +02005691 val_ = ((TYPE)devs[u]->target)->VALUEMEMBER->realtype->plugin->print(((TYPE)devs[u]->target)->VALUEMEMBER, LYD_XML, \
5692 lys_get_prefix, ((TYPE)devs[u]->target)->VALUEMODMEMBER, &dynamic_); \
Radek Krejciccd20f12019-02-15 14:12:27 +01005693 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
Radek Krejcia1911222019-07-22 17:24:50 +02005694 "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", PROPERTY, val_); \
5695 if (dynamic_) {free((void*)val_);} \
Radek Krejciccd20f12019-02-15 14:12:27 +01005696 goto cleanup; \
5697 }
5698
Radek Krejci551b12c2019-02-19 16:11:21 +01005699#define DEV_CHECK_NONPRESENCE_UINT(TYPE, COND, MEMBER, PROPERTY) \
5700 if (((TYPE)devs[u]->target)->MEMBER COND) { \
5701 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
Radek Krejci327de162019-06-14 12:52:07 +02005702 "Invalid deviation adding \"%s\" property which already exists (with value \"%u\").", \
5703 PROPERTY, ((TYPE)devs[u]->target)->MEMBER); \
Radek Krejci551b12c2019-02-19 16:11:21 +01005704 goto cleanup; \
5705 }
5706
Radek Krejciccd20f12019-02-15 14:12:27 +01005707#define DEV_CHECK_PRESENCE(TYPE, COND, MEMBER, DEVTYPE, PROPERTY, VALUE) \
5708 if (!((TYPE)devs[u]->target)->MEMBER || COND) { \
Radek Krejci327de162019-06-14 12:52:07 +02005709 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \
Radek Krejciccd20f12019-02-15 14:12:27 +01005710 goto cleanup; \
5711 }
5712
Radek Krejci551b12c2019-02-19 16:11:21 +01005713#define DEV_CHECK_PRESENCE_UINT(TYPE, COND, MEMBER, PROPERTY) \
5714 if (!(((TYPE)devs[u]->target)->MEMBER COND)) { \
5715 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
Radek Krejci327de162019-06-14 12:52:07 +02005716 "Invalid deviation replacing with \"%s\" property \"%u\" which is not present.", PROPERTY, d_rpl->MEMBER); \
Radek Krejci551b12c2019-02-19 16:11:21 +01005717 goto cleanup; \
5718 }
5719
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005720#define DEV_DEL_ARRAY(TYPE, ARRAY_TRG, ARRAY_DEV, VALMEMBER, VALMEMBER_CMP, DELFUNC_DEREF, DELFUNC, PROPERTY) \
5721 DEV_CHECK_PRESENCE(TYPE, 0, ARRAY_TRG, "deleting", PROPERTY, d_del->ARRAY_DEV[0]VALMEMBER); \
5722 LY_ARRAY_FOR(d_del->ARRAY_DEV, x) { \
5723 LY_ARRAY_FOR(((TYPE)devs[u]->target)->ARRAY_TRG, y) { \
5724 if (!strcmp(((TYPE)devs[u]->target)->ARRAY_TRG[y]VALMEMBER_CMP, d_del->ARRAY_DEV[x]VALMEMBER)) { break; } \
Radek Krejciccd20f12019-02-15 14:12:27 +01005725 } \
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005726 if (y == LY_ARRAY_COUNT(((TYPE)devs[u]->target)->ARRAY_TRG)) { \
Radek Krejciccd20f12019-02-15 14:12:27 +01005727 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
Radek Krejci327de162019-06-14 12:52:07 +02005728 "Invalid deviation deleting \"%s\" property \"%s\" which does not match any of the target's property values.", \
5729 PROPERTY, d_del->ARRAY_DEV[x]VALMEMBER); \
Radek Krejciccd20f12019-02-15 14:12:27 +01005730 goto cleanup; \
5731 } \
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005732 LY_ARRAY_DECREMENT(((TYPE)devs[u]->target)->ARRAY_TRG); \
5733 DELFUNC(ctx->ctx, DELFUNC_DEREF((TYPE)devs[u]->target)->ARRAY_TRG[y]); \
5734 memmove(&((TYPE)devs[u]->target)->ARRAY_TRG[y], \
5735 &((TYPE)devs[u]->target)->ARRAY_TRG[y + 1], \
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005736 (LY_ARRAY_COUNT(((TYPE)devs[u]->target)->ARRAY_TRG) - y) * (sizeof *((TYPE)devs[u]->target)->ARRAY_TRG)); \
Radek Krejciccd20f12019-02-15 14:12:27 +01005737 } \
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005738 if (!LY_ARRAY_COUNT(((TYPE)devs[u]->target)->ARRAY_TRG)) { \
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005739 LY_ARRAY_FREE(((TYPE)devs[u]->target)->ARRAY_TRG); \
5740 ((TYPE)devs[u]->target)->ARRAY_TRG = NULL; \
Radek Krejciccd20f12019-02-15 14:12:27 +01005741 }
5742
5743 /* apply deviations */
5744 for (u = 0; u < devs_p.count && devs[u]; ++u) {
Radek Krejcia1911222019-07-22 17:24:50 +02005745 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)devs[u]->target;
5746 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)devs[u]->target;
5747 struct ly_err_item *err = NULL;
5748
5749 dflt = NULL;
5750 changed_type = 0;
5751
Radek Krejci327de162019-06-14 12:52:07 +02005752 lysc_update_path(ctx, NULL, devs[u]->nodeid);
5753
Radek Krejcif538ce52019-03-05 10:46:14 +01005754 if (devs[u]->flags & LYSC_OPT_INTERNAL) {
5755 /* fix the target pointer in case of RPC's/action's input/output */
5756 if (devs[u]->flags & LYSC_OPT_RPC_INPUT) {
5757 devs[u]->target = (struct lysc_node*)((char*)devs[u]->target - offsetof(struct lysc_action, input));
5758 } else if (devs[u]->flags & LYSC_OPT_RPC_OUTPUT) {
5759 devs[u]->target = (struct lysc_node*)((char*)devs[u]->target - offsetof(struct lysc_action, output));
5760 }
5761 }
5762
Radek Krejciccd20f12019-02-15 14:12:27 +01005763 /* not-supported */
5764 if (devs[u]->not_supported) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005765 if (LY_ARRAY_COUNT(devs[u]->deviates) > 1) {
5766 LOGWRN(ctx->ctx, "Useless multiple (%"LY_PRI_ARRAY_COUNT_TYPE") deviates on node \"%s\" since the node is not-supported.",
5767 LY_ARRAY_COUNT(devs[u]->deviates), devs[u]->nodeid);
Radek Krejciccd20f12019-02-15 14:12:27 +01005768 }
Radek Krejcifc11bd72019-04-11 16:00:05 +02005769
5770#define REMOVE_NONDATA(ARRAY, TYPE, GETFUNC, FREEFUNC) \
5771 if (devs[u]->target->parent) { \
5772 ARRAY = (TYPE*)GETFUNC(devs[u]->target->parent); \
5773 } else { \
5774 ARRAY = devs[u]->target->module->compiled->ARRAY; \
5775 } \
5776 LY_ARRAY_FOR(ARRAY, x) { \
5777 if (&ARRAY[x] == (TYPE*)devs[u]->target) { break; } \
5778 } \
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005779 if (x < LY_ARRAY_COUNT(ARRAY)) { \
Radek Krejcifc11bd72019-04-11 16:00:05 +02005780 FREEFUNC(ctx->ctx, &ARRAY[x]); \
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005781 memmove(&ARRAY[x], &ARRAY[x + 1], (LY_ARRAY_COUNT(ARRAY) - (x + 1)) * sizeof *ARRAY); \
Radek Krejcifc11bd72019-04-11 16:00:05 +02005782 LY_ARRAY_DECREMENT(ARRAY); \
5783 }
5784
Michal Vasko1bf09392020-03-27 12:38:10 +01005785 if (devs[u]->target->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejcif538ce52019-03-05 10:46:14 +01005786 if (devs[u]->flags & LYSC_OPT_RPC_INPUT) {
5787 /* remove RPC's/action's input */
5788 lysc_action_inout_free(ctx->ctx, &((struct lysc_action*)devs[u]->target)->input);
5789 memset(&((struct lysc_action*)devs[u]->target)->input, 0, sizeof ((struct lysc_action*)devs[u]->target)->input);
Radek Krejcifc11bd72019-04-11 16:00:05 +02005790 FREE_ARRAY(ctx->ctx, ((struct lysc_action*)devs[u]->target)->input_exts, lysc_ext_instance_free);
5791 ((struct lysc_action*)devs[u]->target)->input_exts = NULL;
Radek Krejcif538ce52019-03-05 10:46:14 +01005792 } else if (devs[u]->flags & LYSC_OPT_RPC_OUTPUT) {
5793 /* remove RPC's/action's output */
5794 lysc_action_inout_free(ctx->ctx, &((struct lysc_action*)devs[u]->target)->output);
5795 memset(&((struct lysc_action*)devs[u]->target)->output, 0, sizeof ((struct lysc_action*)devs[u]->target)->output);
Radek Krejcifc11bd72019-04-11 16:00:05 +02005796 FREE_ARRAY(ctx->ctx, ((struct lysc_action*)devs[u]->target)->output_exts, lysc_ext_instance_free);
5797 ((struct lysc_action*)devs[u]->target)->output_exts = NULL;
Radek Krejcif538ce52019-03-05 10:46:14 +01005798 } else {
5799 /* remove RPC/action */
Radek Krejcifc11bd72019-04-11 16:00:05 +02005800 REMOVE_NONDATA(rpcs, struct lysc_action, lysc_node_actions, lysc_action_free);
Radek Krejcif538ce52019-03-05 10:46:14 +01005801 }
5802 } else if (devs[u]->target->nodetype == LYS_NOTIF) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02005803 /* remove Notification */
5804 REMOVE_NONDATA(notifs, struct lysc_notif, lysc_node_notifs, lysc_notif_free);
Radek Krejcif538ce52019-03-05 10:46:14 +01005805 } else {
5806 /* remove the target node */
5807 lysc_disconnect(devs[u]->target);
5808 lysc_node_free(ctx->ctx, devs[u]->target);
5809 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005810
Radek Krejci474f9b82019-07-24 11:36:37 +02005811 /* mark the context for later re-compilation of objects that could reference the curently removed node */
5812 ctx->ctx->flags |= LY_CTX_CHANGED_TREE;
Radek Krejciccd20f12019-02-15 14:12:27 +01005813 continue;
5814 }
5815
5816 /* list of deviates (not-supported is not present in the list) */
5817 LY_ARRAY_FOR(devs[u]->deviates, v) {
5818 d = devs[u]->deviates[v];
5819
5820 switch (d->mod) {
5821 case LYS_DEV_ADD:
5822 d_add = (struct lysp_deviate_add*)d;
5823 /* [units-stmt] */
5824 if (d_add->units) {
5825 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "add", "units");
5826 DEV_CHECK_NONPRESENCE(struct lysc_node_leaf*, (devs[u]->target->flags & LYS_SET_UNITS), units, "units", units);
5827
5828 FREE_STRING(ctx->ctx, ((struct lysc_node_leaf*)devs[u]->target)->units);
5829 DUP_STRING(ctx->ctx, d_add->units, ((struct lysc_node_leaf*)devs[u]->target)->units);
5830 }
5831
5832 /* *must-stmt */
5833 if (d_add->musts) {
5834 switch (devs[u]->target->nodetype) {
5835 case LYS_CONTAINER:
5836 case LYS_LIST:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005837 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_node_container*)devs[u]->target)->musts,
5838 x, lys_compile_must, ret, cleanup);
Radek Krejciccd20f12019-02-15 14:12:27 +01005839 break;
5840 case LYS_LEAF:
5841 case LYS_LEAFLIST:
5842 case LYS_ANYDATA:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005843 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_node_leaf*)devs[u]->target)->musts,
5844 x, lys_compile_must, ret, cleanup);
Radek Krejciccd20f12019-02-15 14:12:27 +01005845 break;
5846 case LYS_NOTIF:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005847 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_notif*)devs[u]->target)->musts,
5848 x, lys_compile_must, ret, cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005849 break;
Michal Vasko1bf09392020-03-27 12:38:10 +01005850 case LYS_RPC:
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005851 case LYS_ACTION:
5852 if (devs[u]->flags & LYSC_OPT_RPC_INPUT) {
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005853 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_action*)devs[u]->target)->input.musts,
5854 x, lys_compile_must, ret, cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005855 break;
Michal Vaskocc048b22020-03-27 15:52:38 +01005856 } else if (devs[u]->flags & LYSC_OPT_RPC_OUTPUT) {
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005857 COMPILE_ARRAY_GOTO(ctx, d_add->musts, ((struct lysc_action*)devs[u]->target)->output.musts,
5858 x, lys_compile_must, ret, cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005859 break;
5860 }
5861 /* fall through */
Radek Krejciccd20f12019-02-15 14:12:27 +01005862 default:
5863 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci327de162019-06-14 12:52:07 +02005864 lys_nodetype2str(devs[u]->target->nodetype), "add", "must");
Radek Krejciccd20f12019-02-15 14:12:27 +01005865 goto cleanup;
5866 }
Michal Vasko004d3152020-06-11 19:59:22 +02005867 ly_set_add(&ctx->xpath, devs[u]->target, 0);
Radek Krejciccd20f12019-02-15 14:12:27 +01005868 }
5869
5870 /* *unique-stmt */
Radek Krejci7af64242019-02-18 13:07:53 +01005871 if (d_add->uniques) {
5872 DEV_CHECK_NODETYPE(LYS_LIST, "add", "unique");
5873 LY_CHECK_GOTO(lys_compile_node_list_unique(ctx, ctx->mod, d_add->uniques, (struct lysc_node_list*)devs[u]->target), cleanup);
5874 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005875
5876 /* *default-stmt */
5877 if (d_add->dflts) {
Radek Krejciccd20f12019-02-15 14:12:27 +01005878 switch (devs[u]->target->nodetype) {
5879 case LYS_LEAF:
5880 DEV_CHECK_CARDINALITY(d_add->dflts, 1, "default");
Radek Krejcid0ef1af2019-07-23 12:22:05 +02005881 DEV_CHECK_NONPRESENCE_VALUE(struct lysc_node_leaf*, (devs[u]->target->flags & LYS_SET_DFLT), dflt, "default", dflt, dflt_mod);
Radek Krejcia1911222019-07-22 17:24:50 +02005882 if (leaf->dflt) {
Radek Krejciccd20f12019-02-15 14:12:27 +01005883 /* first, remove the default value taken from the type */
Radek Krejci474f9b82019-07-24 11:36:37 +02005884 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
Radek Krejcia1911222019-07-22 17:24:50 +02005885 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
5886 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
5887 } else {
5888 /* prepare new default value storage */
5889 leaf->dflt = calloc(1, sizeof *leaf->dflt);
Radek Krejciccd20f12019-02-15 14:12:27 +01005890 }
Radek Krejcia1911222019-07-22 17:24:50 +02005891 dflt = d_add->dflts[0];
5892 /* parsing is done at the end after possible replace of the leaf's type */
5893
Radek Krejci551b12c2019-02-19 16:11:21 +01005894 /* mark the new default values as leaf's own */
5895 devs[u]->target->flags |= LYS_SET_DFLT;
Radek Krejciccd20f12019-02-15 14:12:27 +01005896 break;
5897 case LYS_LEAFLIST:
Radek Krejcia1911222019-07-22 17:24:50 +02005898 if (llist->dflts && !(devs[u]->target->flags & LYS_SET_DFLT)) {
Radek Krejciccd20f12019-02-15 14:12:27 +01005899 /* first, remove the default value taken from the type */
Radek Krejcia1911222019-07-22 17:24:50 +02005900 LY_ARRAY_FOR(llist->dflts, x) {
Radek Krejci474f9b82019-07-24 11:36:37 +02005901 lysc_incomplete_dflts_remove(ctx, llist->dflts[x]);
Radek Krejcia1911222019-07-22 17:24:50 +02005902 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
5903 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
5904 free(llist->dflts[x]);
Radek Krejciccd20f12019-02-15 14:12:27 +01005905 }
Radek Krejcia1911222019-07-22 17:24:50 +02005906 LY_ARRAY_FREE(llist->dflts);
5907 llist->dflts = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02005908 LY_ARRAY_FREE(llist->dflts_mods);
5909 llist->dflts_mods = NULL;
Radek Krejciccd20f12019-02-15 14:12:27 +01005910 }
5911 /* add new default value(s) */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005912 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts_mods, LY_ARRAY_COUNT(d_add->dflts), ret, cleanup);
5913 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_COUNT(d_add->dflts), ret, cleanup);
5914 for (x = y = LY_ARRAY_COUNT(llist->dflts);
5915 x < LY_ARRAY_COUNT(d_add->dflts) + y; ++x) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02005916 LY_ARRAY_INCREMENT(llist->dflts_mods);
5917 llist->dflts_mods[x] = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02005918 LY_ARRAY_INCREMENT(llist->dflts);
5919 llist->dflts[x] = calloc(1, sizeof *llist->dflts[x]);
5920 llist->dflts[x]->realtype = llist->type;
5921 rc = llist->type->plugin->store(ctx->ctx, llist->type, d_add->dflts[x - y], strlen(d_add->dflts[x - y]),
Radek Krejci474f9b82019-07-24 11:36:37 +02005922 LY_TYPE_OPTS_INCOMPLETE_DATA |LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE, lys_resolve_prefix,
Radek Krejci1c0c3442019-07-23 16:08:47 +02005923 (void*)llist->dflts_mods[x], LYD_XML, devs[u]->target, NULL, llist->dflts[x], NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02005924 llist->dflts[x]->realtype->refcount++;
5925 if (err) {
5926 ly_err_print(err);
5927 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
5928 "Invalid deviation adding \"default\" property \"%s\" which does not fit the type (%s).",
5929 d_add->dflts[x - y], err->msg);
5930 ly_err_free(err);
5931 }
Radek Krejci474f9b82019-07-24 11:36:37 +02005932 if (rc == LY_EINCOMPLETE) {
5933 /* postpone default compilation when the tree is complete */
5934 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, devs[u]->target, llist->dflts[x], llist->dflts_mods[x]), cleanup);
5935
5936 /* but in general result is so far ok */
5937 rc = LY_SUCCESS;
5938 }
Radek Krejcia1911222019-07-22 17:24:50 +02005939 LY_CHECK_GOTO(rc, cleanup);
Radek Krejciccd20f12019-02-15 14:12:27 +01005940 }
Radek Krejci551b12c2019-02-19 16:11:21 +01005941 /* mark the new default values as leaf-list's own */
Radek Krejciccd20f12019-02-15 14:12:27 +01005942 devs[u]->target->flags |= LYS_SET_DFLT;
5943 break;
5944 case LYS_CHOICE:
5945 DEV_CHECK_CARDINALITY(d_add->dflts, 1, "default");
5946 DEV_CHECK_NONPRESENCE(struct lysc_node_choice*, 1, dflt, "default", dflt->name);
5947 /* in contrast to delete, here we strictly resolve the prefix in the module of the deviation
5948 * to allow making the default case even the augmented case from the deviating module */
Radek Krejci327de162019-06-14 12:52:07 +02005949 if (lys_compile_deviation_set_choice_dflt(ctx, d_add->dflts[0], (struct lysc_node_choice*)devs[u]->target)) {
Radek Krejciccd20f12019-02-15 14:12:27 +01005950 goto cleanup;
5951 }
5952 break;
5953 default:
5954 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci327de162019-06-14 12:52:07 +02005955 lys_nodetype2str(devs[u]->target->nodetype), "add", "default");
Radek Krejciccd20f12019-02-15 14:12:27 +01005956 goto cleanup;
5957 }
5958 }
5959
5960 /* [config-stmt] */
Radek Krejci93dcc392019-02-19 10:43:38 +01005961 if (d_add->flags & LYS_CONFIG_MASK) {
Michal Vasko1bf09392020-03-27 12:38:10 +01005962 if (devs[u]->target->nodetype & (LYS_CASE | LYS_INOUT | LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
Radek Krejci327de162019-06-14 12:52:07 +02005963 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci93dcc392019-02-19 10:43:38 +01005964 lys_nodetype2str(devs[u]->target->nodetype), "add", "config");
5965 goto cleanup;
5966 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005967 if (devs[u]->flags) {
Radek Krejci327de162019-06-14 12:52:07 +02005968 LOGWRN(ctx->ctx, "Deviating config inside %s has no effect.",
Michal Vaskoa3881362020-01-21 15:57:35 +01005969 devs[u]->flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005970 }
Radek Krejci93dcc392019-02-19 10:43:38 +01005971 if (devs[u]->target->flags & LYS_SET_CONFIG) {
5972 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02005973 "Invalid deviation adding \"config\" property which already exists (with value \"config %s\").",
5974 devs[u]->target->flags & LYS_CONFIG_W ? "true" : "false");
Radek Krejci93dcc392019-02-19 10:43:38 +01005975 goto cleanup;
5976 }
Radek Krejci327de162019-06-14 12:52:07 +02005977 LY_CHECK_GOTO(lys_compile_change_config(ctx, devs[u]->target, d_add->flags, 0, 0), cleanup);
Radek Krejci93dcc392019-02-19 10:43:38 +01005978 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005979
5980 /* [mandatory-stmt] */
Radek Krejcif1421c22019-02-19 13:05:20 +01005981 if (d_add->flags & LYS_MAND_MASK) {
5982 if (devs[u]->target->flags & LYS_MAND_MASK) {
5983 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02005984 "Invalid deviation adding \"mandatory\" property which already exists (with value \"mandatory %s\").",
5985 devs[u]->target->flags & LYS_MAND_TRUE ? "true" : "false");
Radek Krejcif1421c22019-02-19 13:05:20 +01005986 goto cleanup;
5987 }
Radek Krejci327de162019-06-14 12:52:07 +02005988 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, devs[u]->target, d_add->flags, 0), cleanup);
Radek Krejcif1421c22019-02-19 13:05:20 +01005989 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005990
5991 /* [min-elements-stmt] */
Radek Krejci551b12c2019-02-19 16:11:21 +01005992 if (d_add->flags & LYS_SET_MIN) {
5993 if (devs[u]->target->nodetype == LYS_LEAFLIST) {
5994 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_leaflist*, > 0, min, "min-elements");
5995 /* change value */
5996 ((struct lysc_node_leaflist*)devs[u]->target)->min = d_add->min;
5997 } else if (devs[u]->target->nodetype == LYS_LIST) {
5998 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_list*, > 0, min, "min-elements");
5999 /* change value */
6000 ((struct lysc_node_list*)devs[u]->target)->min = d_add->min;
6001 } else {
Radek Krejci327de162019-06-14 12:52:07 +02006002 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci551b12c2019-02-19 16:11:21 +01006003 lys_nodetype2str(devs[u]->target->nodetype), "add", "min-elements");
6004 goto cleanup;
6005 }
6006 if (d_add->min) {
6007 devs[u]->target->flags |= LYS_MAND_TRUE;
6008 }
6009 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006010
6011 /* [max-elements-stmt] */
Radek Krejci551b12c2019-02-19 16:11:21 +01006012 if (d_add->flags & LYS_SET_MAX) {
6013 if (devs[u]->target->nodetype == LYS_LEAFLIST) {
6014 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_leaflist*, < (uint32_t)-1, max, "max-elements");
6015 /* change value */
6016 ((struct lysc_node_leaflist*)devs[u]->target)->max = d_add->max ? d_add->max : (uint32_t)-1;
6017 } else if (devs[u]->target->nodetype == LYS_LIST) {
6018 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_list*, < (uint32_t)-1, max, "max-elements");
6019 /* change value */
6020 ((struct lysc_node_list*)devs[u]->target)->max = d_add->max ? d_add->max : (uint32_t)-1;
6021 } else {
Radek Krejci327de162019-06-14 12:52:07 +02006022 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci551b12c2019-02-19 16:11:21 +01006023 lys_nodetype2str(devs[u]->target->nodetype), "add", "max-elements");
6024 goto cleanup;
6025 }
6026 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006027
6028 break;
6029 case LYS_DEV_DELETE:
6030 d_del = (struct lysp_deviate_del*)d;
6031
6032 /* [units-stmt] */
6033 if (d_del->units) {
6034 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "delete", "units");
Radek Krejcia1911222019-07-22 17:24:50 +02006035 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, 0, units, "deleting", "units", d_del->units);
6036 if (strcmp(((struct lysc_node_leaf*)devs[u]->target)->units, d_del->units)) {
6037 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6038 "Invalid deviation deleting \"units\" property \"%s\" which does not match the target's property value \"%s\".",
6039 d_del->units, ((struct lysc_node_leaf*)devs[u]->target)->units);
6040 goto cleanup;
6041 }
6042 lydict_remove(ctx->ctx, ((struct lysc_node_leaf*)devs[u]->target)->units);
6043 ((struct lysc_node_leaf*)devs[u]->target)->units = NULL;
Radek Krejciccd20f12019-02-15 14:12:27 +01006044 }
6045
6046 /* *must-stmt */
6047 if (d_del->musts) {
6048 switch (devs[u]->target->nodetype) {
6049 case LYS_CONTAINER:
6050 case LYS_LIST:
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006051 DEV_DEL_ARRAY(struct lysc_node_container*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
Radek Krejciccd20f12019-02-15 14:12:27 +01006052 break;
6053 case LYS_LEAF:
6054 case LYS_LEAFLIST:
6055 case LYS_ANYDATA:
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006056 DEV_DEL_ARRAY(struct lysc_node_leaf*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
Radek Krejciccd20f12019-02-15 14:12:27 +01006057 break;
6058 case LYS_NOTIF:
Radek Krejcifc11bd72019-04-11 16:00:05 +02006059 DEV_DEL_ARRAY(struct lysc_notif*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006060 break;
Michal Vasko1bf09392020-03-27 12:38:10 +01006061 case LYS_RPC:
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006062 case LYS_ACTION:
6063 if (devs[u]->flags & LYSC_OPT_RPC_INPUT) {
6064 DEV_DEL_ARRAY(struct lysc_action*, input.musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
6065 break;
6066 } else if (devs[u]->flags & LYSC_OPT_RPC_OUTPUT) {
6067 DEV_DEL_ARRAY(struct lysc_action*, output.musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
6068 break;
6069 }
6070 /* fall through */
Radek Krejciccd20f12019-02-15 14:12:27 +01006071 default:
6072 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci327de162019-06-14 12:52:07 +02006073 lys_nodetype2str(devs[u]->target->nodetype), "delete", "must");
Radek Krejciccd20f12019-02-15 14:12:27 +01006074 goto cleanup;
6075 }
6076 }
6077
6078 /* *unique-stmt */
Radek Krejci7af64242019-02-18 13:07:53 +01006079 if (d_del->uniques) {
6080 DEV_CHECK_NODETYPE(LYS_LIST, "delete", "unique");
6081 list = (struct lysc_node_list*)devs[u]->target; /* shortcut */
6082 LY_ARRAY_FOR(d_del->uniques, x) {
6083 LY_ARRAY_FOR(list->uniques, z) {
6084 for (name = d_del->uniques[x], y = 0; name; name = nodeid, ++y) {
6085 nodeid = strpbrk(name, " \t\n");
6086 if (nodeid) {
Radek Krejci7f9b6512019-09-18 13:11:09 +02006087 if (ly_strncmp(list->uniques[z][y]->name, name, nodeid - name)) {
Radek Krejci7af64242019-02-18 13:07:53 +01006088 break;
6089 }
6090 while (isspace(*nodeid)) {
6091 ++nodeid;
6092 }
6093 } else {
6094 if (strcmp(name, list->uniques[z][y]->name)) {
6095 break;
6096 }
6097 }
6098 }
6099 if (!name) {
6100 /* complete match - remove the unique */
6101 LY_ARRAY_DECREMENT(list->uniques);
6102 LY_ARRAY_FREE(list->uniques[z]);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006103 memmove(&list->uniques[z], &list->uniques[z + 1], (LY_ARRAY_COUNT(list->uniques) - z) * (sizeof *list->uniques));
Radek Krejci7af64242019-02-18 13:07:53 +01006104 --z;
6105 break;
6106 }
6107 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006108 if (!list->uniques || z == LY_ARRAY_COUNT(list->uniques)) {
Radek Krejci7af64242019-02-18 13:07:53 +01006109 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02006110 "Invalid deviation deleting \"unique\" property \"%s\" which does not match any of the target's property values.",
6111 d_del->uniques[x]);
Radek Krejci7af64242019-02-18 13:07:53 +01006112 goto cleanup;
6113 }
6114 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006115 if (!LY_ARRAY_COUNT(list->uniques)) {
Radek Krejci7af64242019-02-18 13:07:53 +01006116 LY_ARRAY_FREE(list->uniques);
6117 list->uniques = NULL;
6118 }
6119 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006120
6121 /* *default-stmt */
6122 if (d_del->dflts) {
6123 switch (devs[u]->target->nodetype) {
6124 case LYS_LEAF:
6125 DEV_CHECK_CARDINALITY(d_del->dflts, 1, "default");
6126 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(devs[u]->target->flags & LYS_SET_DFLT),
6127 dflt, "deleting", "default", d_del->dflts[0]);
6128
Radek Krejcia1911222019-07-22 17:24:50 +02006129 /* check that the values matches */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006130 dflt = leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, lys_get_prefix, leaf->dflt_mod, &i);
Radek Krejcia1911222019-07-22 17:24:50 +02006131 if (strcmp(dflt, d_del->dflts[0])) {
6132 if (i) {
6133 free((char*)dflt);
6134 }
6135 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6136 "Invalid deviation deleting \"default\" property \"%s\" which does not match the target's property value \"%s\".",
6137 d_del->dflts[0], dflt);
6138 goto cleanup;
6139 }
6140 if (i) {
6141 free((char*)dflt);
6142 }
6143 dflt = NULL;
6144
Radek Krejci474f9b82019-07-24 11:36:37 +02006145 /* update the list of incomplete default values if needed */
6146 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6147
Radek Krejcia1911222019-07-22 17:24:50 +02006148 /* remove the default specification */
6149 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6150 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6151 free(leaf->dflt);
6152 leaf->dflt = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006153 leaf->dflt_mod = NULL;
Radek Krejci551b12c2019-02-19 16:11:21 +01006154 devs[u]->target->flags &= ~LYS_SET_DFLT;
Radek Krejciccd20f12019-02-15 14:12:27 +01006155 break;
6156 case LYS_LEAFLIST:
Radek Krejcia1911222019-07-22 17:24:50 +02006157 DEV_CHECK_PRESENCE(struct lysc_node_leaflist*, 0, dflts, "deleting", "default", d_del->dflts[0]);
6158 LY_ARRAY_FOR(d_del->dflts, x) {
6159 LY_ARRAY_FOR(llist->dflts, y) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006160 dflt = llist->type->plugin->print(llist->dflts[y], LYD_XML, lys_get_prefix, llist->dflts_mods[y], &i);
Radek Krejcia1911222019-07-22 17:24:50 +02006161 if (!strcmp(dflt, d_del->dflts[x])) {
6162 if (i) {
6163 free((char*)dflt);
6164 }
6165 dflt = NULL;
6166 break;
6167 }
6168 if (i) {
6169 free((char*)dflt);
6170 }
6171 dflt = NULL;
6172 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006173 if (y == LY_ARRAY_COUNT(llist->dflts)) {
Radek Krejcia1911222019-07-22 17:24:50 +02006174 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid deviation deleting \"default\" property \"%s\" "
6175 "which does not match any of the target's property values.", d_del->dflts[x]);
6176 goto cleanup;
6177 }
Radek Krejci474f9b82019-07-24 11:36:37 +02006178
6179 /* update the list of incomplete default values if needed */
6180 lysc_incomplete_dflts_remove(ctx, llist->dflts[y]);
6181
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006182 LY_ARRAY_DECREMENT(llist->dflts_mods);
Radek Krejcia1911222019-07-22 17:24:50 +02006183 LY_ARRAY_DECREMENT(llist->dflts);
6184 llist->dflts[y]->realtype->plugin->free(ctx->ctx, llist->dflts[y]);
6185 lysc_type_free(ctx->ctx, llist->dflts[y]->realtype);
6186 free(llist->dflts[y]);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006187 memmove(&llist->dflts[y], &llist->dflts[y + 1], (LY_ARRAY_COUNT(llist->dflts) - y) * (sizeof *llist->dflts));
6188 memmove(&llist->dflts_mods[y], &llist->dflts_mods[y + 1], (LY_ARRAY_COUNT(llist->dflts_mods) - y) * (sizeof *llist->dflts_mods));
Radek Krejcia1911222019-07-22 17:24:50 +02006189 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006190 if (!LY_ARRAY_COUNT(llist->dflts)) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006191 LY_ARRAY_FREE(llist->dflts_mods);
6192 llist->dflts_mods = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02006193 LY_ARRAY_FREE(llist->dflts);
6194 llist->dflts = NULL;
6195 llist->flags &= ~LYS_SET_DFLT;
Radek Krejci551b12c2019-02-19 16:11:21 +01006196 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006197 break;
6198 case LYS_CHOICE:
6199 DEV_CHECK_CARDINALITY(d_del->dflts, 1, "default");
6200 DEV_CHECK_PRESENCE(struct lysc_node_choice*, 0, dflt, "deleting", "default", d_del->dflts[0]);
6201 nodeid = d_del->dflts[0];
Radek Krejcib4a4a272019-06-10 12:44:52 +02006202 LY_CHECK_GOTO(ly_parse_nodeid(&nodeid, &prefix, &prefix_len, &name, &name_len), cleanup);
Radek Krejciccd20f12019-02-15 14:12:27 +01006203 if (prefix) {
6204 /* use module prefixes from the deviation module to match the module of the default case */
6205 if (!(mod = lys_module_find_prefix(ctx->mod, prefix, prefix_len))) {
6206 LOGVAL(ctx->ctx,LY_VLOG_STR,ctx->path,LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02006207 "Invalid deviation deleting \"default\" property \"%s\" of choice. "
6208 "The prefix does not match any imported module of the deviation module.", d_del->dflts[0]);
Radek Krejciccd20f12019-02-15 14:12:27 +01006209 goto cleanup;
6210 }
6211 if (mod != ((struct lysc_node_choice*)devs[u]->target)->dflt->module) {
6212 LOGVAL(ctx->ctx,LY_VLOG_STR,ctx->path,LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02006213 "Invalid deviation deleting \"default\" property \"%s\" of choice. "
6214 "The prefix does not match the default case's module.", d_del->dflts[0]);
Radek Krejciccd20f12019-02-15 14:12:27 +01006215 goto cleanup;
6216 }
6217 }
6218 /* else {
6219 * strictly, the default prefix would point to the deviation module, but the value should actually
6220 * match the default string in the original module (usually unprefixed), so in this case we do not check
6221 * the module of the default case, just matching its name */
6222 if (strcmp(name, ((struct lysc_node_choice*)devs[u]->target)->dflt->name)) {
6223 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02006224 "Invalid deviation deleting \"default\" property \"%s\" of choice does not match the default case name \"%s\".",
6225 d_del->dflts[0], ((struct lysc_node_choice*)devs[u]->target)->dflt->name);
Radek Krejciccd20f12019-02-15 14:12:27 +01006226 goto cleanup;
6227 }
6228 ((struct lysc_node_choice*)devs[u]->target)->dflt->flags &= ~LYS_SET_DFLT;
6229 ((struct lysc_node_choice*)devs[u]->target)->dflt = NULL;
6230 break;
6231 default:
6232 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci327de162019-06-14 12:52:07 +02006233 lys_nodetype2str(devs[u]->target->nodetype), "delete", "default");
Radek Krejciccd20f12019-02-15 14:12:27 +01006234 goto cleanup;
6235 }
6236 }
6237
6238 break;
6239 case LYS_DEV_REPLACE:
6240 d_rpl = (struct lysp_deviate_rpl*)d;
6241
6242 /* [type-stmt] */
Radek Krejci33f72892019-02-21 10:36:58 +01006243 if (d_rpl->type) {
6244 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "replace", "type");
6245 /* type is mandatory, so checking for its presence is not necessary */
6246 lysc_type_free(ctx->ctx, ((struct lysc_node_leaf*)devs[u]->target)->type);
Radek Krejcia1911222019-07-22 17:24:50 +02006247
6248 if (leaf->dflt && !(devs[u]->target->flags & LYS_SET_DFLT)) {
6249 /* the target has default from the previous type - remove it */
6250 if (devs[u]->target->nodetype == LYS_LEAF) {
Radek Krejci474f9b82019-07-24 11:36:37 +02006251 /* update the list of incomplete default values if needed */
6252 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6253
Radek Krejcia1911222019-07-22 17:24:50 +02006254 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6255 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6256 free(leaf->dflt);
6257 leaf->dflt = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006258 leaf->dflt_mod = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02006259 } else { /* LYS_LEAFLIST */
6260 LY_ARRAY_FOR(llist->dflts, x) {
Radek Krejci474f9b82019-07-24 11:36:37 +02006261 lysc_incomplete_dflts_remove(ctx, llist->dflts[x]);
Radek Krejcia1911222019-07-22 17:24:50 +02006262 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
6263 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
6264 free(llist->dflts[x]);
6265 }
6266 LY_ARRAY_FREE(llist->dflts);
6267 llist->dflts = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006268 LY_ARRAY_FREE(llist->dflts_mods);
6269 llist->dflts_mods = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02006270 }
6271 }
6272 if (!leaf->dflt) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006273 /* there is no default value, do not set changed_type after type compilation
6274 * which is used to recompile the default value */
Radek Krejcia1911222019-07-22 17:24:50 +02006275 changed_type = -1;
6276 }
Radek Krejciec4da802019-05-02 13:02:41 +02006277 LY_CHECK_GOTO(lys_compile_node_type(ctx, NULL, d_rpl->type, (struct lysc_node_leaf*)devs[u]->target), cleanup);
Radek Krejcia1911222019-07-22 17:24:50 +02006278 changed_type++;
Radek Krejci33f72892019-02-21 10:36:58 +01006279 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006280
6281 /* [units-stmt] */
6282 if (d_rpl->units) {
6283 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "replace", "units");
6284 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(devs[u]->target->flags & LYS_SET_UNITS),
6285 units, "replacing", "units", d_rpl->units);
6286
6287 lydict_remove(ctx->ctx, ((struct lysc_node_leaf*)devs[u]->target)->units);
6288 DUP_STRING(ctx->ctx, d_rpl->units, ((struct lysc_node_leaf*)devs[u]->target)->units);
6289 }
6290
6291 /* [default-stmt] */
6292 if (d_rpl->dflt) {
6293 switch (devs[u]->target->nodetype) {
6294 case LYS_LEAF:
6295 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(devs[u]->target->flags & LYS_SET_DFLT),
6296 dflt, "replacing", "default", d_rpl->dflt);
Radek Krejcia1911222019-07-22 17:24:50 +02006297 /* first, remove the default value taken from the type */
Radek Krejci474f9b82019-07-24 11:36:37 +02006298 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
Radek Krejcia1911222019-07-22 17:24:50 +02006299 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6300 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6301 dflt = d_rpl->dflt;
6302 /* parsing is done at the end after possible replace of the leaf's type */
Radek Krejciccd20f12019-02-15 14:12:27 +01006303 break;
6304 case LYS_CHOICE:
6305 DEV_CHECK_PRESENCE(struct lysc_node_choice*, 0, dflt, "replacing", "default", d_rpl->dflt);
Radek Krejci327de162019-06-14 12:52:07 +02006306 if (lys_compile_deviation_set_choice_dflt(ctx, d_rpl->dflt, (struct lysc_node_choice*)devs[u]->target)) {
Radek Krejciccd20f12019-02-15 14:12:27 +01006307 goto cleanup;
6308 }
6309 break;
6310 default:
6311 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci327de162019-06-14 12:52:07 +02006312 lys_nodetype2str(devs[u]->target->nodetype), "replace", "default");
Radek Krejciccd20f12019-02-15 14:12:27 +01006313 goto cleanup;
6314 }
6315 }
6316
6317 /* [config-stmt] */
Radek Krejci93dcc392019-02-19 10:43:38 +01006318 if (d_rpl->flags & LYS_CONFIG_MASK) {
Michal Vasko1bf09392020-03-27 12:38:10 +01006319 if (devs[u]->target->nodetype & (LYS_CASE | LYS_INOUT | LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
Radek Krejci327de162019-06-14 12:52:07 +02006320 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci93dcc392019-02-19 10:43:38 +01006321 lys_nodetype2str(devs[u]->target->nodetype), "replace", "config");
6322 goto cleanup;
6323 }
6324 if (!(devs[u]->target->flags & LYS_SET_CONFIG)) {
Radek Krejci327de162019-06-14 12:52:07 +02006325 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT,
Radek Krejci93dcc392019-02-19 10:43:38 +01006326 "replacing", "config", d_rpl->flags & LYS_CONFIG_W ? "config true" : "config false");
6327 goto cleanup;
6328 }
Radek Krejci327de162019-06-14 12:52:07 +02006329 LY_CHECK_GOTO(lys_compile_change_config(ctx, devs[u]->target, d_rpl->flags, 0, 0), cleanup);
Radek Krejci93dcc392019-02-19 10:43:38 +01006330 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006331
6332 /* [mandatory-stmt] */
Radek Krejcif1421c22019-02-19 13:05:20 +01006333 if (d_rpl->flags & LYS_MAND_MASK) {
6334 if (!(devs[u]->target->flags & LYS_MAND_MASK)) {
Radek Krejci327de162019-06-14 12:52:07 +02006335 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT,
Radek Krejcif1421c22019-02-19 13:05:20 +01006336 "replacing", "mandatory", d_rpl->flags & LYS_MAND_TRUE ? "mandatory true" : "mandatory false");
6337 goto cleanup;
6338 }
Radek Krejci327de162019-06-14 12:52:07 +02006339 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, devs[u]->target, d_rpl->flags, 0), cleanup);
Radek Krejcif1421c22019-02-19 13:05:20 +01006340 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006341
6342 /* [min-elements-stmt] */
Radek Krejci551b12c2019-02-19 16:11:21 +01006343 if (d_rpl->flags & LYS_SET_MIN) {
6344 if (devs[u]->target->nodetype == LYS_LEAFLIST) {
6345 DEV_CHECK_PRESENCE_UINT(struct lysc_node_leaflist*, > 0, min, "min-elements");
6346 /* change value */
6347 ((struct lysc_node_leaflist*)devs[u]->target)->min = d_rpl->min;
6348 } else if (devs[u]->target->nodetype == LYS_LIST) {
6349 DEV_CHECK_PRESENCE_UINT(struct lysc_node_list*, > 0, min, "min-elements");
6350 /* change value */
6351 ((struct lysc_node_list*)devs[u]->target)->min = d_rpl->min;
6352 } else {
Radek Krejci327de162019-06-14 12:52:07 +02006353 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci551b12c2019-02-19 16:11:21 +01006354 lys_nodetype2str(devs[u]->target->nodetype), "replace", "min-elements");
6355 goto cleanup;
6356 }
6357 if (d_rpl->min) {
6358 devs[u]->target->flags |= LYS_MAND_TRUE;
6359 }
6360 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006361
6362 /* [max-elements-stmt] */
Radek Krejci551b12c2019-02-19 16:11:21 +01006363 if (d_rpl->flags & LYS_SET_MAX) {
6364 if (devs[u]->target->nodetype == LYS_LEAFLIST) {
6365 DEV_CHECK_PRESENCE_UINT(struct lysc_node_leaflist*, < (uint32_t)-1, max, "max-elements");
6366 /* change value */
6367 ((struct lysc_node_leaflist*)devs[u]->target)->max = d_rpl->max ? d_rpl->max : (uint32_t)-1;
6368 } else if (devs[u]->target->nodetype == LYS_LIST) {
6369 DEV_CHECK_PRESENCE_UINT(struct lysc_node_list*, < (uint32_t)-1, max, "max-elements");
6370 /* change value */
6371 ((struct lysc_node_list*)devs[u]->target)->max = d_rpl->max ? d_rpl->max : (uint32_t)-1;
6372 } else {
Radek Krejci327de162019-06-14 12:52:07 +02006373 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
Radek Krejci551b12c2019-02-19 16:11:21 +01006374 lys_nodetype2str(devs[u]->target->nodetype), "replace", "max-elements");
6375 goto cleanup;
6376 }
6377 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006378
6379 break;
6380 default:
6381 LOGINT(ctx->ctx);
6382 goto cleanup;
6383 }
6384 }
Radek Krejci551b12c2019-02-19 16:11:21 +01006385
Radek Krejci33f72892019-02-21 10:36:58 +01006386 /* final check when all deviations of a single target node are applied */
6387
Radek Krejci551b12c2019-02-19 16:11:21 +01006388 /* check min-max compatibility */
6389 if (devs[u]->target->nodetype == LYS_LEAFLIST) {
6390 min = ((struct lysc_node_leaflist*)devs[u]->target)->min;
6391 max = ((struct lysc_node_leaflist*)devs[u]->target)->max;
6392 } else if (devs[u]->target->nodetype == LYS_LIST) {
6393 min = ((struct lysc_node_list*)devs[u]->target)->min;
6394 max = ((struct lysc_node_list*)devs[u]->target)->max;
6395 } else {
6396 min = max = 0;
6397 }
6398 if (min > max) {
6399 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid combination of min-elements and max-elements "
Radek Krejci327de162019-06-14 12:52:07 +02006400 "after deviation: min value %u is bigger than max value %u.", min, max);
Radek Krejci551b12c2019-02-19 16:11:21 +01006401 goto cleanup;
6402 }
6403
Radek Krejcia1911222019-07-22 17:24:50 +02006404 if (dflt) {
6405 /* parse added/changed default value after possible change of the type */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006406 leaf->dflt_mod = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02006407 leaf->dflt->realtype = leaf->type;
Radek Krejci474f9b82019-07-24 11:36:37 +02006408 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, dflt, strlen(dflt),
6409 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02006410 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, devs[u]->target, NULL, leaf->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02006411 leaf->dflt->realtype->refcount++;
6412 if (err) {
6413 ly_err_print(err);
6414 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6415 "Invalid deviation setting \"default\" property \"%s\" which does not fit the type (%s).", dflt, err->msg);
6416 ly_err_free(err);
6417 }
Radek Krejci474f9b82019-07-24 11:36:37 +02006418 if (rc == LY_EINCOMPLETE) {
6419 /* postpone default compilation when the tree is complete */
6420 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, devs[u]->target, leaf->dflt, leaf->dflt_mod), cleanup);
6421
6422 /* but in general result is so far ok */
6423 rc = LY_SUCCESS;
6424 }
Radek Krejcia1911222019-07-22 17:24:50 +02006425 LY_CHECK_GOTO(rc, cleanup);
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006426 } else if (changed_type) {
Radek Krejcia1911222019-07-22 17:24:50 +02006427 /* the leaf/leaf-list's type has changed, but there is still a default value for the previous type */
6428 int dynamic;
6429 if (devs[u]->target->nodetype == LYS_LEAF) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006430 dflt = leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, lys_get_prefix, leaf->dflt_mod, &dynamic);
Radek Krejci474f9b82019-07-24 11:36:37 +02006431
6432 /* update the list of incomplete default values if needed */
6433 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6434
6435 /* remove the previous default */
Radek Krejcia1911222019-07-22 17:24:50 +02006436 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6437 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6438 leaf->dflt->realtype = leaf->type;
Radek Krejci474f9b82019-07-24 11:36:37 +02006439 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, dflt, strlen(dflt),
6440 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02006441 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, devs[u]->target, NULL, leaf->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02006442 leaf->dflt->realtype->refcount++;
6443 if (err) {
6444 ly_err_print(err);
6445 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6446 "Invalid deviation replacing leaf's type - the leaf's default value \"%s\" does not match the type (%s).", dflt, err->msg);
6447 ly_err_free(err);
6448 }
6449 if (dynamic) {
6450 free((void*)dflt);
6451 }
Radek Krejcia1911222019-07-22 17:24:50 +02006452 dflt = NULL;
Radek Krejci474f9b82019-07-24 11:36:37 +02006453 if (rc == LY_EINCOMPLETE) {
6454 /* postpone default compilation when the tree is complete */
6455 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, devs[u]->target, leaf->dflt, leaf->dflt_mod), cleanup);
6456
6457 /* but in general result is so far ok */
6458 rc = LY_SUCCESS;
6459 }
6460 LY_CHECK_GOTO(rc, cleanup);
Radek Krejcia1911222019-07-22 17:24:50 +02006461 } else { /* LYS_LEAFLIST */
6462 LY_ARRAY_FOR(llist->dflts, x) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006463 dflt = llist->dflts[x]->realtype->plugin->print(llist->dflts[x], LYD_XML, lys_get_prefix, llist->dflts_mods[x], &dynamic);
Radek Krejcia1911222019-07-22 17:24:50 +02006464 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
6465 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
6466 llist->dflts[x]->realtype = llist->type;
Radek Krejci474f9b82019-07-24 11:36:37 +02006467 rc = llist->type->plugin->store(ctx->ctx, llist->type, dflt, strlen(dflt),
6468 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02006469 lys_resolve_prefix, (void*)llist->dflts_mods[x], LYD_XML, devs[u]->target, NULL,
6470 llist->dflts[x], NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02006471 llist->dflts[x]->realtype->refcount++;
6472 if (err) {
6473 ly_err_print(err);
6474 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6475 "Invalid deviation replacing leaf-list's type - the leaf-list's default value \"%s\" does not match the type (%s).",
6476 dflt, err->msg);
6477 ly_err_free(err);
6478 }
6479 if (dynamic) {
6480 free((void*)dflt);
6481 }
Radek Krejcid0ef1af2019-07-23 12:22:05 +02006482 dflt = NULL;
Radek Krejci474f9b82019-07-24 11:36:37 +02006483 if (rc == LY_EINCOMPLETE) {
6484 /* postpone default compilation when the tree is complete */
6485 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, devs[u]->target, llist->dflts[x], llist->dflts_mods[x]), cleanup);
6486
6487 /* but in general result is so far ok */
6488 rc = LY_SUCCESS;
6489 }
Radek Krejcia1911222019-07-22 17:24:50 +02006490 LY_CHECK_GOTO(rc, cleanup);
6491 }
6492 }
6493 }
6494
Radek Krejci551b12c2019-02-19 16:11:21 +01006495 /* check mandatory - default compatibility */
6496 if ((devs[u]->target->nodetype & (LYS_LEAF | LYS_LEAFLIST))
6497 && (devs[u]->target->flags & LYS_SET_DFLT)
6498 && (devs[u]->target->flags & LYS_MAND_TRUE)) {
6499 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02006500 "Invalid deviation combining default value and mandatory %s.", lys_nodetype2str(devs[u]->target->nodetype));
Radek Krejci551b12c2019-02-19 16:11:21 +01006501 goto cleanup;
6502 } else if ((devs[u]->target->nodetype & LYS_CHOICE)
6503 && ((struct lysc_node_choice*)devs[u]->target)->dflt
6504 && (devs[u]->target->flags & LYS_MAND_TRUE)) {
Radek Krejci327de162019-06-14 12:52:07 +02006505 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid deviation combining default case and mandatory choice.");
Radek Krejci551b12c2019-02-19 16:11:21 +01006506 goto cleanup;
6507 }
6508 if (devs[u]->target->parent && (devs[u]->target->parent->flags & LYS_SET_DFLT) && (devs[u]->target->flags & LYS_MAND_TRUE)) {
6509 /* mandatory node under a default case */
6510 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02006511 "Invalid deviation combining mandatory %s \"%s\" in a default choice's case \"%s\".",
6512 lys_nodetype2str(devs[u]->target->nodetype), devs[u]->target->name, devs[u]->target->parent->name);
Radek Krejci551b12c2019-02-19 16:11:21 +01006513 goto cleanup;
6514 }
Radek Krejci33f72892019-02-21 10:36:58 +01006515
Michal Vaskoe6143202020-07-03 13:02:08 +02006516 /* add this module into the target module deviated_by, if not there already */
6517 rc = LY_SUCCESS;
6518 LY_ARRAY_FOR(devs[u]->target->module->compiled->deviated_by, v) {
6519 if (devs[u]->target->module->compiled->deviated_by[v] == mod_p->mod) {
6520 rc = LY_EEXIST;
6521 break;
6522 }
6523 }
6524 if (!rc) {
6525 LY_ARRAY_NEW_GOTO(ctx->ctx, devs[u]->target->module->compiled->deviated_by, dev_mod, ret, cleanup);
6526 *dev_mod = mod_p->mod;
6527 }
Michal Vasko57c10cd2020-05-27 15:57:11 +02006528
Radek Krejci327de162019-06-14 12:52:07 +02006529 lysc_update_path(ctx, NULL, NULL);
Radek Krejciccd20f12019-02-15 14:12:27 +01006530 }
6531
Radek Krejci327de162019-06-14 12:52:07 +02006532 lysc_update_path(ctx, NULL, NULL);
Radek Krejciccd20f12019-02-15 14:12:27 +01006533 ret = LY_SUCCESS;
6534
6535cleanup:
6536 for (u = 0; u < devs_p.count && devs[u]; ++u) {
6537 LY_ARRAY_FREE(devs[u]->deviates);
6538 free(devs[u]);
6539 }
6540 free(devs);
6541 ly_set_erase(&targets, NULL);
6542 ly_set_erase(&devs_p, NULL);
6543
6544 return ret;
6545}
6546
Radek Krejcib56c7502019-02-13 14:19:54 +01006547/**
Radek Krejcid05cbd92018-12-05 14:26:40 +01006548 * @brief Compile the given YANG submodule into the main module.
6549 * @param[in] ctx Compile context
6550 * @param[in] inc Include structure from the main module defining the submodule.
Radek Krejcid05cbd92018-12-05 14:26:40 +01006551 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
6552 */
6553LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02006554lys_compile_submodule(struct lysc_ctx *ctx, struct lysp_include *inc)
Radek Krejcid05cbd92018-12-05 14:26:40 +01006555{
6556 unsigned int u;
6557 LY_ERR ret = LY_SUCCESS;
6558 /* shortcuts */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01006559 struct lysp_submodule *submod = inc->submodule;
Radek Krejcid05cbd92018-12-05 14:26:40 +01006560 struct lysc_module *mainmod = ctx->mod->compiled;
Radek Krejci474f9b82019-07-24 11:36:37 +02006561 struct lysp_node *node_p;
Radek Krejcid05cbd92018-12-05 14:26:40 +01006562
Michal Vasko33ff9422020-07-03 09:50:39 +02006563 if (!mainmod->mod->dis_features) {
Radek Krejci0af46292019-01-11 16:02:31 +01006564 /* features are compiled directly into the compiled module structure,
6565 * but it must be done in two steps to allow forward references (via if-feature) between the features themselves.
6566 * The features compilation is finished in the main module (lys_compile()). */
Radek Krejci0935f412019-08-20 16:15:18 +02006567 ret = lys_feature_precompile(ctx, NULL, NULL, submod->features, &mainmod->features);
6568 LY_CHECK_GOTO(ret, error);
6569 }
Radek Krejci0af46292019-01-11 16:02:31 +01006570
Michal Vasko33ff9422020-07-03 09:50:39 +02006571 if (!mainmod->mod->dis_identities) {
6572 ret = lys_identity_precompile(ctx, NULL, NULL, submod->identities, &mainmod->identities);
6573 LY_CHECK_GOTO(ret, error);
6574 }
Radek Krejcid05cbd92018-12-05 14:26:40 +01006575
Radek Krejci474f9b82019-07-24 11:36:37 +02006576 /* data nodes */
6577 LY_LIST_FOR(submod->data, node_p) {
6578 ret = lys_compile_node(ctx, node_p, NULL, 0);
6579 LY_CHECK_GOTO(ret, error);
6580 }
Radek Krejci8cce8532019-03-05 11:27:45 +01006581
Radek Krejciec4da802019-05-02 13:02:41 +02006582 COMPILE_ARRAY1_GOTO(ctx, submod->rpcs, mainmod->rpcs, NULL, u, lys_compile_action, 0, ret, error);
6583 COMPILE_ARRAY1_GOTO(ctx, submod->notifs, mainmod->notifs, NULL, u, lys_compile_notif, 0, ret, error);
Radek Krejci8cce8532019-03-05 11:27:45 +01006584
Radek Krejcid05cbd92018-12-05 14:26:40 +01006585error:
6586 return ret;
6587}
6588
Radek Krejci335332a2019-09-05 13:03:35 +02006589static void *
6590lys_compile_extension_instance_storage(enum ly_stmt stmt, struct lysc_ext_substmt *substmts)
6591{
6592 for (unsigned int u = 0; substmts[u].stmt; ++u) {
6593 if (substmts[u].stmt == stmt) {
6594 return substmts[u].storage;
6595 }
6596 }
6597 return NULL;
6598}
6599
6600LY_ERR
6601lys_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *ext, struct lysc_ext_substmt *substmts)
6602{
6603 LY_ERR ret = LY_EVALID, r;
6604 unsigned int u;
6605 struct lysp_stmt *stmt;
6606 void *parsed = NULL, **compiled = NULL;
Radek Krejci335332a2019-09-05 13:03:35 +02006607
6608 /* check for invalid substatements */
6609 for (stmt = ext->child; stmt; stmt = stmt->next) {
Radek Krejcif56e2a42019-09-09 14:15:25 +02006610 if (stmt->flags & (LYS_YIN_ATTR | LYS_YIN_ARGUMENT)) {
6611 continue;
6612 }
Radek Krejci335332a2019-09-05 13:03:35 +02006613 for (u = 0; substmts[u].stmt; ++u) {
6614 if (substmts[u].stmt == stmt->kw) {
6615 break;
6616 }
6617 }
6618 if (!substmts[u].stmt) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006619 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s%s%s\" extension instance.",
6620 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
Radek Krejci335332a2019-09-05 13:03:35 +02006621 goto cleanup;
6622 }
Radek Krejci335332a2019-09-05 13:03:35 +02006623 }
6624
Radek Krejciad5963b2019-09-06 16:03:05 +02006625 /* TODO store inherited data, e.g. status first, but mark them somehow to allow to overwrite them and not detect duplicity */
6626
Radek Krejci335332a2019-09-05 13:03:35 +02006627 /* keep order of the processing the same as the order in the defined substmts,
6628 * the order is important for some of the statements depending on others (e.g. type needs status and units) */
6629 for (u = 0; substmts[u].stmt; ++u) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006630 int stmt_present = 0;
6631
Radek Krejci335332a2019-09-05 13:03:35 +02006632 for (stmt = ext->child; stmt; stmt = stmt->next) {
6633 if (substmts[u].stmt != stmt->kw) {
6634 continue;
6635 }
6636
Radek Krejciad5963b2019-09-06 16:03:05 +02006637 stmt_present = 1;
Radek Krejci335332a2019-09-05 13:03:35 +02006638 if (substmts[u].storage) {
6639 switch (stmt->kw) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006640 case LY_STMT_STATUS:
6641 assert(substmts[u].cardinality < LY_STMT_CARD_SOME);
6642 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &substmts[u].storage, /* TODO */ NULL), ret = r, cleanup);
6643 break;
6644 case LY_STMT_UNITS: {
6645 const char **units;
6646
6647 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6648 /* single item */
6649 if (*((const char **)substmts[u].storage)) {
6650 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6651 goto cleanup;
6652 }
6653 units = (const char **)substmts[u].storage;
6654 } else {
6655 /* sized array */
6656 const char ***units_array = (const char ***)substmts[u].storage;
6657 LY_ARRAY_NEW_GOTO(ctx->ctx, *units_array, units, ret, cleanup);
6658 }
6659 *units = lydict_insert(ctx->ctx, stmt->arg, 0);
6660 break;
6661 }
Radek Krejci335332a2019-09-05 13:03:35 +02006662 case LY_STMT_TYPE: {
6663 uint16_t *flags = lys_compile_extension_instance_storage(LY_STMT_STATUS, substmts);
6664 const char **units = lys_compile_extension_instance_storage(LY_STMT_UNITS, substmts);
6665
6666 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6667 /* single item */
Radek Krejciad5963b2019-09-06 16:03:05 +02006668 if (*(struct lysc_type**)substmts[u].storage) {
Radek Krejci335332a2019-09-05 13:03:35 +02006669 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6670 goto cleanup;
6671 }
6672 compiled = substmts[u].storage;
6673 } else {
6674 /* sized array */
6675 struct lysc_type ***types = (struct lysc_type***)substmts[u].storage, **type = NULL;
6676 LY_ARRAY_NEW_GOTO(ctx->ctx, *types, type, ret, cleanup);
6677 compiled = (void*)type;
6678 }
6679
Radek Krejciad5963b2019-09-06 16:03:05 +02006680 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &parsed, NULL), ret = r, cleanup);
Radek Krejci335332a2019-09-05 13:03:35 +02006681 LY_CHECK_ERR_GOTO(r = lys_compile_type(ctx, ext->parent_type == LYEXT_PAR_NODE ? ((struct lysc_node*)ext->parent)->sp : NULL,
6682 flags ? *flags : 0, ctx->mod_def->parsed, ext->name, parsed, (struct lysc_type**)compiled,
Radek Krejci38d85362019-09-05 16:26:38 +02006683 units && !*units ? units : NULL), lysp_type_free(ctx->ctx, parsed); free(parsed); ret = r, cleanup);
6684 lysp_type_free(ctx->ctx, parsed);
6685 free(parsed);
Radek Krejci335332a2019-09-05 13:03:35 +02006686 break;
6687 }
Radek Krejciad5963b2019-09-06 16:03:05 +02006688 case LY_STMT_IF_FEATURE: {
6689 struct lysc_iffeature *iff = NULL;
6690
6691 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6692 /* single item */
6693 if (((struct lysc_iffeature*)substmts[u].storage)->features) {
6694 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6695 goto cleanup;
6696 }
6697 iff = (struct lysc_iffeature*)substmts[u].storage;
6698 } else {
6699 /* sized array */
6700 struct lysc_iffeature **iffs = (struct lysc_iffeature**)substmts[u].storage;
6701 LY_ARRAY_NEW_GOTO(ctx->ctx, *iffs, iff, ret, cleanup);
6702 }
6703 LY_CHECK_ERR_GOTO(r = lys_compile_iffeature(ctx, &stmt->arg, iff), ret = r, cleanup);
6704 break;
6705 }
6706 /* TODO support other substatements (parse stmt to lysp and then compile lysp to lysc),
6707 * also note that in many statements their extensions are not taken into account */
Radek Krejci335332a2019-09-05 13:03:35 +02006708 default:
Radek Krejciad5963b2019-09-06 16:03:05 +02006709 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.",
6710 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
Radek Krejci335332a2019-09-05 13:03:35 +02006711 goto cleanup;
6712 }
6713 }
Radek Krejci335332a2019-09-05 13:03:35 +02006714 }
Radek Krejci335332a2019-09-05 13:03:35 +02006715
Radek Krejciad5963b2019-09-06 16:03:05 +02006716 if ((substmts[u].cardinality == LY_STMT_CARD_MAND || substmts[u].cardinality == LY_STMT_CARD_SOME) && !stmt_present) {
6717 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s%s%s\".",
6718 ly_stmt2str(substmts[u].stmt), ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
6719 goto cleanup;
6720 }
Radek Krejci335332a2019-09-05 13:03:35 +02006721 }
6722
6723 ret = LY_SUCCESS;
6724
6725cleanup:
Radek Krejci335332a2019-09-05 13:03:35 +02006726 return ret;
6727}
6728
Michal Vasko175012e2019-11-06 15:49:14 +01006729/**
Michal Vaskoecd62de2019-11-13 12:35:11 +01006730 * @brief Check when for cyclic dependencies.
6731 * @param[in] set Set with all the referenced nodes.
6732 * @param[in] node Node whose "when" referenced nodes are in @p set.
6733 * @return LY_ERR value
6734 */
6735static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006736lys_compile_unres_when_cyclic(struct lyxp_set *set, const struct lysc_node *node)
Michal Vaskoecd62de2019-11-13 12:35:11 +01006737{
6738 struct lyxp_set tmp_set;
6739 struct lyxp_set_scnode *xp_scnode;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006740 uint32_t i, j;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006741 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006742 int idx;
6743 struct lysc_when *when;
6744 LY_ERR ret = LY_SUCCESS;
6745
6746 memset(&tmp_set, 0, sizeof tmp_set);
6747
6748 /* prepare in_ctx of the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006749 for ( i = 0; i < set->used; ++i) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006750 xp_scnode = &set->val.scnodes[i];
6751
Michal Vasko5c4e5892019-11-14 12:31:38 +01006752 if (xp_scnode->in_ctx != -1) {
6753 /* check node when, skip the context node (it was just checked) */
Michal Vaskoecd62de2019-11-13 12:35:11 +01006754 xp_scnode->in_ctx = 1;
6755 }
6756 }
6757
6758 for (i = 0; i < set->used; ++i) {
6759 xp_scnode = &set->val.scnodes[i];
6760 if (xp_scnode->in_ctx != 1) {
6761 /* already checked */
6762 continue;
6763 }
6764
Michal Vasko1bf09392020-03-27 12:38:10 +01006765 if ((xp_scnode->type != LYXP_NODE_ELEM) || (xp_scnode->scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))
Michal Vasko2ff7efe2019-12-10 14:50:59 +01006766 || !xp_scnode->scnode->when) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006767 /* no when to check */
6768 xp_scnode->in_ctx = 0;
6769 continue;
6770 }
6771
6772 node = xp_scnode->scnode;
6773 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006774 LY_ARRAY_FOR(node->when, u) {
6775 when = node->when[u];
Michal Vasko52927e22020-03-16 17:26:14 +01006776 ret = lyxp_atomize(when->cond, LYD_SCHEMA, when->module, when->context,
Michal Vaskoecd62de2019-11-13 12:35:11 +01006777 when->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, LYXP_SCNODE_SCHEMA);
6778 if (ret != LY_SUCCESS) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006779 LOGVAL(set->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when->cond->expr);
Michal Vaskoecd62de2019-11-13 12:35:11 +01006780 goto cleanup;
6781 }
6782
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006783 for (j = 0; j < tmp_set.used; ++j) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006784 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006785 if (tmp_set.val.scnodes[j].type == LYXP_NODE_ELEM) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006786 /* try to find this node in our set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006787 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 +01006788 if ((idx > -1) && (set->val.scnodes[idx].in_ctx == -1)) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006789 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 +01006790 ret = LY_EVALID;
6791 goto cleanup;
6792 }
6793
6794 /* needs to be checked, if in both sets, will be ignored */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006795 tmp_set.val.scnodes[j].in_ctx = 1;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006796 } else {
6797 /* no when, nothing to check */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006798 tmp_set.val.scnodes[j].in_ctx = 0;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006799 }
6800 }
6801
6802 /* merge this set into the global when set */
6803 lyxp_set_scnode_merge(set, &tmp_set);
6804 }
6805
6806 /* check when of non-data parents as well */
6807 node = node->parent;
6808 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
6809
Michal Vasko251f56e2019-11-14 16:06:47 +01006810 /* this node when was checked (xp_scnode could have been reallocd) */
6811 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006812 }
6813
6814cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02006815 lyxp_set_free_content(&tmp_set);
Michal Vaskoecd62de2019-11-13 12:35:11 +01006816 return ret;
6817}
6818
6819/**
Michal Vasko175012e2019-11-06 15:49:14 +01006820 * @brief Check when/must expressions of a node on a compiled schema tree.
6821 * @param[in] ctx Compile context.
6822 * @param[in] node Node to check.
6823 * @return LY_ERR value
6824 */
6825static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006826lys_compile_unres_xpath(struct lysc_ctx *ctx, const struct lysc_node *node)
Michal Vasko175012e2019-11-06 15:49:14 +01006827{
Michal Vasko175012e2019-11-06 15:49:14 +01006828 struct lyxp_set tmp_set;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006829 uint32_t i;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006830 LY_ARRAY_COUNT_TYPE u;
Michal Vasko5d8756a2019-11-07 15:21:00 +01006831 int opts, input_done = 0;
Michal Vasko175012e2019-11-06 15:49:14 +01006832 struct lysc_when **when = NULL;
6833 struct lysc_must *musts = NULL;
6834 LY_ERR ret = LY_SUCCESS;
Michal Vasko6b26e742020-07-17 15:02:10 +02006835 const struct lysc_node *op;
Michal Vasko175012e2019-11-06 15:49:14 +01006836
6837 memset(&tmp_set, 0, sizeof tmp_set);
Michal Vasko5d8756a2019-11-07 15:21:00 +01006838 opts = LYXP_SCNODE_SCHEMA;
Michal Vasko6b26e742020-07-17 15:02:10 +02006839 if (node->flags & LYS_CONFIG_R) {
6840 for (op = node->parent; op && !(op->nodetype & (LYS_RPC | LYS_ACTION)); op = op->parent);
6841 if (op) {
6842 /* we are actually in output */
6843 opts = LYXP_SCNODE_OUTPUT;
6844 }
6845 }
Michal Vasko175012e2019-11-06 15:49:14 +01006846
6847 switch (node->nodetype) {
6848 case LYS_CONTAINER:
6849 when = ((struct lysc_node_container *)node)->when;
6850 musts = ((struct lysc_node_container *)node)->musts;
6851 break;
6852 case LYS_CHOICE:
6853 when = ((struct lysc_node_choice *)node)->when;
6854 break;
6855 case LYS_LEAF:
6856 when = ((struct lysc_node_leaf *)node)->when;
6857 musts = ((struct lysc_node_leaf *)node)->musts;
6858 break;
6859 case LYS_LEAFLIST:
6860 when = ((struct lysc_node_leaflist *)node)->when;
6861 musts = ((struct lysc_node_leaflist *)node)->musts;
6862 break;
6863 case LYS_LIST:
6864 when = ((struct lysc_node_list *)node)->when;
6865 musts = ((struct lysc_node_list *)node)->musts;
6866 break;
6867 case LYS_ANYXML:
6868 case LYS_ANYDATA:
6869 when = ((struct lysc_node_anydata *)node)->when;
6870 musts = ((struct lysc_node_anydata *)node)->musts;
6871 break;
6872 case LYS_CASE:
6873 when = ((struct lysc_node_case *)node)->when;
6874 break;
6875 case LYS_NOTIF:
6876 musts = ((struct lysc_notif *)node)->musts;
6877 break;
Michal Vasko1bf09392020-03-27 12:38:10 +01006878 case LYS_RPC:
Michal Vasko5d8756a2019-11-07 15:21:00 +01006879 case LYS_ACTION:
6880 /* first process input musts */
6881 musts = ((struct lysc_action *)node)->input.musts;
6882 break;
Michal Vasko175012e2019-11-06 15:49:14 +01006883 default:
6884 /* nothing to check */
6885 break;
6886 }
6887
Michal Vasko175012e2019-11-06 15:49:14 +01006888 /* check "when" */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006889 LY_ARRAY_FOR(when, u) {
Michal Vasko004d3152020-06-11 19:59:22 +02006890 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 +02006891 when[u]->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, opts);
Michal Vasko175012e2019-11-06 15:49:14 +01006892 if (ret != LY_SUCCESS) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006893 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when[u]->cond->expr);
Michal Vasko175012e2019-11-06 15:49:14 +01006894 goto cleanup;
6895 }
6896
Michal Vaskodc052f32019-11-07 11:11:38 +01006897 ctx->path[0] = '\0';
6898 lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006899 for (i = 0; i < tmp_set.used; ++i) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006900 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006901 if ((tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (tmp_set.val.scnodes[i].in_ctx != -1)) {
6902 struct lysc_node *schema = tmp_set.val.scnodes[i].scnode;
Michal Vasko175012e2019-11-06 15:49:14 +01006903
Michal Vaskoecd62de2019-11-13 12:35:11 +01006904 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006905 ret = lysc_check_status(ctx, when[u]->flags, when[u]->module, node->name, schema->flags, schema->module,
Michal Vaskoecd62de2019-11-13 12:35:11 +01006906 schema->name);
6907 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko5c4e5892019-11-14 12:31:38 +01006908
6909 /* check dummy node accessing */
6910 if (schema == node) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006911 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LY_VCODE_DUMMY_WHEN, node->name);
Michal Vasko5c4e5892019-11-14 12:31:38 +01006912 ret = LY_EVALID;
6913 goto cleanup;
6914 }
Michal Vasko175012e2019-11-06 15:49:14 +01006915 }
6916 }
6917
Michal Vaskoecd62de2019-11-13 12:35:11 +01006918 /* check cyclic dependencies */
Michal Vasko004d3152020-06-11 19:59:22 +02006919 ret = lys_compile_unres_when_cyclic(&tmp_set, node);
Michal Vaskoecd62de2019-11-13 12:35:11 +01006920 LY_CHECK_GOTO(ret, cleanup);
6921
Michal Vaskod3678892020-05-21 10:06:58 +02006922 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01006923 }
6924
Michal Vasko5d8756a2019-11-07 15:21:00 +01006925check_musts:
Michal Vasko175012e2019-11-06 15:49:14 +01006926 /* check "must" */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006927 LY_ARRAY_FOR(musts, u) {
6928 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 +01006929 if (ret != LY_SUCCESS) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006930 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid must restriction \"%s\".", musts[u].cond->expr);
Michal Vasko175012e2019-11-06 15:49:14 +01006931 goto cleanup;
6932 }
6933
Michal Vaskodc052f32019-11-07 11:11:38 +01006934 ctx->path[0] = '\0';
6935 lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006936 for (i = 0; i < tmp_set.used; ++i) {
Michal Vasko175012e2019-11-06 15:49:14 +01006937 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006938 if (tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko175012e2019-11-06 15:49:14 +01006939 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006940 ret = lysc_check_status(ctx, node->flags, musts[u].module, node->name, tmp_set.val.scnodes[i].scnode->flags,
6941 tmp_set.val.scnodes[i].scnode->module, tmp_set.val.scnodes[i].scnode->name);
Michal Vasko175012e2019-11-06 15:49:14 +01006942 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko175012e2019-11-06 15:49:14 +01006943 }
6944 }
6945
Michal Vaskod3678892020-05-21 10:06:58 +02006946 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01006947 }
6948
Michal Vasko1bf09392020-03-27 12:38:10 +01006949 if ((node->nodetype & (LYS_RPC | LYS_ACTION)) && !input_done) {
Michal Vasko5d8756a2019-11-07 15:21:00 +01006950 /* now check output musts */
6951 input_done = 1;
6952 musts = ((struct lysc_action *)node)->output.musts;
6953 opts = LYXP_SCNODE_OUTPUT;
6954 goto check_musts;
6955 }
6956
Michal Vasko175012e2019-11-06 15:49:14 +01006957cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02006958 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01006959 return ret;
6960}
6961
Michal Vasko8d544252020-03-02 10:19:52 +01006962static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006963lys_compile_unres_leafref(struct lysc_ctx *ctx, const struct lysc_node *node, struct lysc_type_leafref *lref)
6964{
Michal Vasko6b26e742020-07-17 15:02:10 +02006965 const struct lysc_node *target = NULL, *siter;
Michal Vasko004d3152020-06-11 19:59:22 +02006966 struct ly_path *p;
6967 struct lysc_type *type;
6968
6969 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
6970
6971 /* try to find the target */
Michal Vasko00cbf532020-06-15 13:58:47 +02006972 LY_CHECK_RET(ly_path_compile(ctx->ctx, node->module, node, lref->path, LY_PATH_LREF_TRUE,
6973 lysc_is_output(node) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY,
6974 lys_resolve_prefix, lref->path_context, LYD_SCHEMA, &p));
Michal Vasko004d3152020-06-11 19:59:22 +02006975
6976 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006977 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02006978 ly_path_free(node->module->ctx, p);
6979
6980 if (!(target->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
6981 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
6982 "Invalid leafref path \"%s\" - target node is %s instead of leaf or leaf-list.",
6983 lref->path->expr, lys_nodetype2str(target->nodetype));
6984 return LY_EVALID;
6985 }
6986
6987 /* check status */
6988 ctx->path[0] = '\0';
6989 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
6990 ctx->path_len = strlen(ctx->path);
6991 if (lysc_check_status(ctx, node->flags, node->module, node->name, target->flags, target->module, target->name)) {
6992 return LY_EVALID;
6993 }
6994 ctx->path_len = 1;
6995 ctx->path[1] = '\0';
6996
6997 /* check config */
Michal Vasko6b26e742020-07-17 15:02:10 +02006998 if (lref->require_instance) {
6999 for (siter = node->parent; siter && !(siter->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); siter = siter->parent);
7000 if (!siter && (node->flags & LYS_CONFIG_W) && (target->flags & LYS_CONFIG_R)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007001 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE, "Invalid leafref path \"%s\" - target is supposed"
7002 " to represent configuration data (as the leafref does), but it does not.", lref->path->expr);
7003 return LY_EVALID;
7004 }
7005 }
7006
7007 /* store the target's type and check for circular chain of leafrefs */
7008 lref->realtype = ((struct lysc_node_leaf *)target)->type;
7009 for (type = lref->realtype; type && type->basetype == LY_TYPE_LEAFREF; type = ((struct lysc_type_leafref *)type)->realtype) {
7010 if (type == (struct lysc_type *)lref) {
7011 /* circular chain detected */
7012 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7013 "Invalid leafref path \"%s\" - circular chain of leafrefs detected.", lref->path->expr);
7014 return LY_EVALID;
7015 }
7016 }
7017
7018 /* check if leafref and its target are under common if-features */
7019 if (lys_compile_leafref_features_validate(node, target)) {
7020 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7021 "Invalid leafref path \"%s\" - set of features applicable to the leafref target is not a subset of"
7022 " features applicable to the leafref itself.", lref->path->expr);
7023 return LY_EVALID;
7024 }
7025
7026 return LY_SUCCESS;
7027}
7028
7029static LY_ERR
Michal Vasko8d544252020-03-02 10:19:52 +01007030lys_compile_ietf_netconf_wd_annotation(struct lysc_ctx *ctx, struct lys_module *mod)
7031{
7032 struct lysc_ext_instance *ext;
7033 struct lysp_ext_instance *ext_p = NULL;
7034 struct lysp_stmt *stmt;
7035 const struct lys_module *ext_mod;
7036 LY_ERR ret = LY_SUCCESS;
7037
7038 /* create the parsed extension instance manually */
7039 ext_p = calloc(1, sizeof *ext_p);
7040 LY_CHECK_ERR_GOTO(!ext_p, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
7041 ext_p->name = lydict_insert(ctx->ctx, "md:annotation", 0);
7042 ext_p->argument = lydict_insert(ctx->ctx, "default", 0);
7043 ext_p->insubstmt = LYEXT_SUBSTMT_SELF;
7044 ext_p->insubstmt_index = 0;
7045
7046 stmt = calloc(1, sizeof *ext_p->child);
7047 stmt->stmt = lydict_insert(ctx->ctx, "type", 0);
7048 stmt->arg = lydict_insert(ctx->ctx, "boolean", 0);
7049 stmt->kw = LY_STMT_TYPE;
7050 ext_p->child = stmt;
7051
7052 /* allocate new extension instance */
7053 LY_ARRAY_NEW_GOTO(mod->ctx, mod->compiled->exts, ext, ret, cleanup);
7054
7055 /* manually get extension definition module */
7056 ext_mod = ly_ctx_get_module_latest(ctx->ctx, "ietf-yang-metadata");
7057
7058 /* compile the extension instance */
7059 LY_CHECK_GOTO(ret = lys_compile_ext(ctx, ext_p, ext, mod->compiled, LYEXT_PAR_MODULE, ext_mod), cleanup);
7060
7061cleanup:
7062 lysp_ext_instance_free(ctx->ctx, ext_p);
7063 free(ext_p);
7064 return ret;
7065}
7066
Michal Vasko004d3152020-06-11 19:59:22 +02007067static LY_ERR
7068lys_compile_unres(struct lysc_ctx *ctx)
7069{
7070 struct lysc_node *node;
7071 struct lysc_type *type, *typeiter;
7072 struct lysc_type_leafref *lref;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007073 LY_ARRAY_COUNT_TYPE v;
Michal Vasko004d3152020-06-11 19:59:22 +02007074 uint32_t i;
7075
7076 /* for leafref, we need 2 rounds - first detects circular chain by storing the first referred type (which
7077 * can be also leafref, in case it is already resolved, go through the chain and check that it does not
7078 * point to the starting leafref type). The second round stores the first non-leafref type for later data validation. */
7079 for (i = 0; i < ctx->leafrefs.count; ++i) {
7080 node = ctx->leafrefs.objs[i];
7081 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
7082 type = ((struct lysc_node_leaf *)node)->type;
7083 if (type->basetype == LY_TYPE_LEAFREF) {
7084 LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, (struct lysc_type_leafref *)type));
7085 } else if (type->basetype == LY_TYPE_UNION) {
7086 LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) {
7087 if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
7088 lref = (struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v];
7089 LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, lref));
7090 }
7091 }
7092 }
7093 }
7094 for (i = 0; i < ctx->leafrefs.count; ++i) {
7095 /* store pointer to the real type */
7096 type = ((struct lysc_node_leaf *)ctx->leafrefs.objs[i])->type;
7097 if (type->basetype == LY_TYPE_LEAFREF) {
7098 for (typeiter = ((struct lysc_type_leafref*)type)->realtype;
7099 typeiter->basetype == LY_TYPE_LEAFREF;
7100 typeiter = ((struct lysc_type_leafref*)typeiter)->realtype);
7101 ((struct lysc_type_leafref*)type)->realtype = typeiter;
7102 } else if (type->basetype == LY_TYPE_UNION) {
7103 LY_ARRAY_FOR(((struct lysc_type_union*)type)->types, v) {
7104 if (((struct lysc_type_union*)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
7105 for (typeiter = ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v])->realtype;
7106 typeiter->basetype == LY_TYPE_LEAFREF;
7107 typeiter = ((struct lysc_type_leafref*)typeiter)->realtype);
7108 ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v])->realtype = typeiter;
7109 }
7110 }
7111 }
7112 }
7113
7114 /* check xpath */
7115 for (i = 0; i < ctx->xpath.count; ++i) {
7116 LY_CHECK_RET(lys_compile_unres_xpath(ctx, ctx->xpath.objs[i]));
7117 }
7118
7119 /* finish incomplete default values compilation */
7120 for (i = 0; i < ctx->dflts.count; ++i) {
7121 struct ly_err_item *err = NULL;
7122 struct lysc_incomplete_dflt *r = ctx->dflts.objs[i];
7123 LY_ERR ret;
7124 ret = r->dflt->realtype->plugin->store(ctx->ctx, r->dflt->realtype, r->dflt->original, strlen(r->dflt->original),
7125 LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE | LY_TYPE_OPTS_SECOND_CALL, lys_resolve_prefix,
7126 (void*)r->dflt_mod, LYD_XML, r->context_node, NULL, r->dflt, NULL, &err);
7127 if (err) {
7128 ly_err_print(err);
7129 ctx->path[0] = '\0';
7130 lysc_path(r->context_node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
7131 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
7132 "Invalid default - value does not fit the type (%s).", err->msg);
7133 ly_err_free(err);
7134 }
7135 LY_CHECK_RET(ret);
7136 }
7137
7138 return LY_SUCCESS;
7139}
7140
Radek Krejci19a96102018-11-15 13:38:09 +01007141LY_ERR
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007142lys_compile(struct lys_module **mod, int options)
Radek Krejci19a96102018-11-15 13:38:09 +01007143{
7144 struct lysc_ctx ctx = {0};
7145 struct lysc_module *mod_c;
7146 struct lysp_module *sp;
7147 struct lysp_node *node_p;
Radek Krejci95710c92019-02-11 15:49:55 +01007148 struct lysp_augment **augments = NULL;
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007149 struct lysp_grp *grps;
Radek Krejci95710c92019-02-11 15:49:55 +01007150 struct lys_module *m;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007151 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007152 uint32_t i;
Radek Krejcid05cbd92018-12-05 14:26:40 +01007153 LY_ERR ret = LY_SUCCESS;
Radek Krejci19a96102018-11-15 13:38:09 +01007154
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007155 LY_CHECK_ARG_RET(NULL, mod, *mod, (*mod)->parsed, (*mod)->ctx, LY_EINVAL);
Radek Krejci096235c2019-01-11 11:12:19 +01007156
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007157 if (!(*mod)->implemented) {
Radek Krejci096235c2019-01-11 11:12:19 +01007158 /* just imported modules are not compiled */
7159 return LY_SUCCESS;
7160 }
7161
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007162 sp = (*mod)->parsed;
Radek Krejci19a96102018-11-15 13:38:09 +01007163
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007164 ctx.ctx = (*mod)->ctx;
7165 ctx.mod = *mod;
7166 ctx.mod_def = *mod;
Radek Krejciec4da802019-05-02 13:02:41 +02007167 ctx.options = options;
Radek Krejci327de162019-06-14 12:52:07 +02007168 ctx.path_len = 1;
7169 ctx.path[0] = '/';
Radek Krejci19a96102018-11-15 13:38:09 +01007170
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007171 (*mod)->compiled = mod_c = calloc(1, sizeof *mod_c);
7172 LY_CHECK_ERR_RET(!mod_c, LOGMEM((*mod)->ctx), LY_EMEM);
7173 mod_c->mod = *mod;
Radek Krejci19a96102018-11-15 13:38:09 +01007174
Michal Vasko7c8439f2020-08-05 13:25:19 +02007175 LY_ARRAY_FOR(sp->imports, u) {
7176 LY_CHECK_GOTO(ret = lys_compile_import(&ctx, &sp->imports[u]), error);
7177 }
Radek Krejcid05cbd92018-12-05 14:26:40 +01007178 LY_ARRAY_FOR(sp->includes, u) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02007179 LY_CHECK_GOTO(ret = lys_compile_submodule(&ctx, &sp->includes[u]), error);
Radek Krejcid05cbd92018-12-05 14:26:40 +01007180 }
Radek Krejci0935f412019-08-20 16:15:18 +02007181
7182 /* features */
Michal Vasko33ff9422020-07-03 09:50:39 +02007183 if ((*mod)->dis_features) {
Radek Krejci0af46292019-01-11 16:02:31 +01007184 /* there is already precompiled array of features */
Michal Vasko33ff9422020-07-03 09:50:39 +02007185 mod_c->features = (*mod)->dis_features;
7186 (*mod)->dis_features = NULL;
Radek Krejci0af46292019-01-11 16:02:31 +01007187 } else {
7188 /* features are compiled directly into the compiled module structure,
7189 * 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 +02007190 ret = lys_feature_precompile(&ctx, NULL, NULL, sp->features, &mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007191 LY_CHECK_GOTO(ret, error);
7192 }
Michal Vasko33ff9422020-07-03 09:50:39 +02007193
Radek Krejci0af46292019-01-11 16:02:31 +01007194 /* finish feature compilation, not only for the main module, but also for the submodules.
7195 * Due to possible forward references, it must be done when all the features (including submodules)
7196 * are present. */
7197 LY_ARRAY_FOR(sp->features, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02007198 ret = lys_feature_precompile_finish(&ctx, &sp->features[u], mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007199 LY_CHECK_GOTO(ret != LY_SUCCESS, error);
7200 }
Radek Krejci327de162019-06-14 12:52:07 +02007201 lysc_update_path(&ctx, NULL, "{submodule}");
Radek Krejci0af46292019-01-11 16:02:31 +01007202 LY_ARRAY_FOR(sp->includes, v) {
Radek Krejci327de162019-06-14 12:52:07 +02007203 lysc_update_path(&ctx, NULL, sp->includes[v].name);
Radek Krejci0af46292019-01-11 16:02:31 +01007204 LY_ARRAY_FOR(sp->includes[v].submodule->features, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02007205 ret = lys_feature_precompile_finish(&ctx, &sp->includes[v].submodule->features[u], mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007206 LY_CHECK_GOTO(ret != LY_SUCCESS, error);
7207 }
Radek Krejci327de162019-06-14 12:52:07 +02007208 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01007209 }
Radek Krejci327de162019-06-14 12:52:07 +02007210 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01007211
Michal Vasko33ff9422020-07-03 09:50:39 +02007212 /* identities, work similarly to features with the precompilation */
7213 if ((*mod)->dis_identities) {
7214 mod_c->identities = (*mod)->dis_identities;
7215 (*mod)->dis_identities = NULL;
7216 } else {
7217 ret = lys_identity_precompile(&ctx, NULL, NULL, sp->identities, &mod_c->identities);
7218 LY_CHECK_GOTO(ret, error);
7219 }
Radek Krejci19a96102018-11-15 13:38:09 +01007220 if (sp->identities) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007221 LY_CHECK_GOTO(ret = lys_compile_identities_derived(&ctx, sp->identities, mod_c->identities), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007222 }
Michal Vasko33ff9422020-07-03 09:50:39 +02007223 lysc_update_path(&ctx, NULL, "{submodule}");
7224 LY_ARRAY_FOR(sp->includes, v) {
7225 if (sp->includes[v].submodule->identities) {
7226 lysc_update_path(&ctx, NULL, sp->includes[v].name);
7227 ret = lys_compile_identities_derived(&ctx, sp->includes[v].submodule->identities, mod_c->identities);
7228 LY_CHECK_GOTO(ret, error);
7229 lysc_update_path(&ctx, NULL, NULL);
7230 }
7231 }
Radek Krejci327de162019-06-14 12:52:07 +02007232 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01007233
Radek Krejci95710c92019-02-11 15:49:55 +01007234 /* data nodes */
Radek Krejci19a96102018-11-15 13:38:09 +01007235 LY_LIST_FOR(sp->data, node_p) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007236 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, node_p, NULL, 0), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007237 }
Radek Krejci95710c92019-02-11 15:49:55 +01007238
Radek Krejciec4da802019-05-02 13:02:41 +02007239 COMPILE_ARRAY1_GOTO(&ctx, sp->rpcs, mod_c->rpcs, NULL, u, lys_compile_action, 0, ret, error);
7240 COMPILE_ARRAY1_GOTO(&ctx, sp->notifs, mod_c->notifs, NULL, u, lys_compile_notif, 0, ret, error);
Radek Krejciccd20f12019-02-15 14:12:27 +01007241
Radek Krejci95710c92019-02-11 15:49:55 +01007242 /* augments - sort first to cover augments augmenting other augments */
Radek Krejcid3acfce2019-09-09 14:48:50 +02007243 LY_CHECK_GOTO(ret = lys_compile_augment_sort(&ctx, sp->augments, sp->includes, &augments), error);
Radek Krejci95710c92019-02-11 15:49:55 +01007244 LY_ARRAY_FOR(augments, u) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007245 LY_CHECK_GOTO(ret = lys_compile_augment(&ctx, augments[u], NULL), error);
Radek Krejci95710c92019-02-11 15:49:55 +01007246 }
Radek Krejciccd20f12019-02-15 14:12:27 +01007247
Radek Krejci474f9b82019-07-24 11:36:37 +02007248 /* deviations TODO cover deviations from submodules */
Radek Krejcid3acfce2019-09-09 14:48:50 +02007249 LY_CHECK_GOTO(ret = lys_compile_deviations(&ctx, sp), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007250
Radek Krejci0935f412019-08-20 16:15:18 +02007251 /* extension instances TODO cover extension instances from submodules */
7252 COMPILE_EXTS_GOTO(&ctx, sp->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01007253
Michal Vasko004d3152020-06-11 19:59:22 +02007254 /* finish compilation for all unresolved items in the context */
7255 LY_CHECK_GOTO(ret = lys_compile_unres(&ctx), error);
Radek Krejci474f9b82019-07-24 11:36:37 +02007256
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007257 /* validate non-instantiated groupings from the parsed schema,
7258 * without it we would accept even the schemas with invalid grouping specification */
7259 ctx.options |= LYSC_OPT_GROUPING;
7260 LY_ARRAY_FOR(sp->groupings, u) {
7261 if (!(sp->groupings[u].flags & LYS_USED_GRP)) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007262 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, node_p, &sp->groupings[u]), error);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007263 }
7264 }
7265 LY_LIST_FOR(sp->data, node_p) {
7266 grps = (struct lysp_grp*)lysp_node_groupings(node_p);
7267 LY_ARRAY_FOR(grps, u) {
7268 if (!(grps[u].flags & LYS_USED_GRP)) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007269 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, node_p, &grps[u]), error);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007270 }
7271 }
7272 }
7273
Radek Krejci474f9b82019-07-24 11:36:37 +02007274 if (ctx.ctx->flags & LY_CTX_CHANGED_TREE) {
7275 /* TODO Deviation has changed tree of a module(s) in the context (by deviate-not-supported), it is necessary to recompile
7276 leafref paths, default values and must/when expressions in all schemas of the context to check that they are still valid */
7277 }
7278
Michal Vasko8d544252020-03-02 10:19:52 +01007279#if 0
7280 /* hack for NETCONF's edit-config's operation attribute. It is not defined in the schema, but since libyang
7281 * implements YANG metadata (annotations), we need its definition. Because the ietf-netconf schema is not the
7282 * internal part of libyang, we cannot add the annotation into the schema source, but we do it here to have
7283 * the anotation definitions available in the internal schema structure. */
7284 if (ly_strequal(mod->name, "ietf-netconf", 0)) {
7285 if (lyp_add_ietf_netconf_annotations(mod)) {
7286 lys_free(mod, NULL, 1, 1);
7287 return NULL;
7288 }
7289 }
7290#endif
7291
7292 /* add ietf-netconf-with-defaults "default" metadata to the compiled module */
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007293 if (!strcmp((*mod)->name, "ietf-netconf-with-defaults")) {
7294 LY_CHECK_GOTO(ret = lys_compile_ietf_netconf_wd_annotation(&ctx, *mod), error);
Michal Vasko8d544252020-03-02 10:19:52 +01007295 }
7296
Radek Krejci1c0c3442019-07-23 16:08:47 +02007297 ly_set_erase(&ctx.dflts, free);
Michal Vasko004d3152020-06-11 19:59:22 +02007298 ly_set_erase(&ctx.xpath, NULL);
7299 ly_set_erase(&ctx.leafrefs, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01007300 ly_set_erase(&ctx.groupings, NULL);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02007301 ly_set_erase(&ctx.tpdf_chain, NULL);
Radek Krejci95710c92019-02-11 15:49:55 +01007302 LY_ARRAY_FREE(augments);
Radek Krejcia3045382018-11-22 14:30:31 +01007303
Radek Krejciec4da802019-05-02 13:02:41 +02007304 if (ctx.options & LYSC_OPT_FREE_SP) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007305 lysp_module_free((*mod)->parsed);
7306 (*mod)->parsed = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +01007307 }
7308
Radek Krejciec4da802019-05-02 13:02:41 +02007309 if (!(ctx.options & LYSC_OPT_INTERNAL)) {
Radek Krejci95710c92019-02-11 15:49:55 +01007310 /* remove flag of the modules implemented by dependency */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007311 for (i = 0; i < ctx.ctx->list.count; ++i) {
7312 m = ctx.ctx->list.objs[i];
Radek Krejci95710c92019-02-11 15:49:55 +01007313 if (m->implemented == 2) {
7314 m->implemented = 1;
7315 }
7316 }
7317 }
7318
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007319 (*mod)->compiled = mod_c;
Radek Krejci19a96102018-11-15 13:38:09 +01007320 return LY_SUCCESS;
7321
7322error:
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007323 lys_feature_precompile_revert(&ctx, *mod);
Radek Krejci1c0c3442019-07-23 16:08:47 +02007324 ly_set_erase(&ctx.dflts, free);
Michal Vasko004d3152020-06-11 19:59:22 +02007325 ly_set_erase(&ctx.xpath, NULL);
7326 ly_set_erase(&ctx.leafrefs, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01007327 ly_set_erase(&ctx.groupings, NULL);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02007328 ly_set_erase(&ctx.tpdf_chain, NULL);
Radek Krejci95710c92019-02-11 15:49:55 +01007329 LY_ARRAY_FREE(augments);
Radek Krejci19a96102018-11-15 13:38:09 +01007330 lysc_module_free(mod_c, NULL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007331 (*mod)->compiled = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01007332
7333 /* revert compilation of modules implemented by dependency */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007334 for (i = 0; i < ctx.ctx->list.count; ++i) {
7335 m = ctx.ctx->list.objs[i];
Michal Vasko2947ce12019-12-16 10:37:19 +01007336 if ((m->implemented == 2) && m->compiled) {
Radek Krejci95710c92019-02-11 15:49:55 +01007337 /* revert features list to the precompiled state */
7338 lys_feature_precompile_revert(&ctx, m);
7339 /* mark module as imported-only / not-implemented */
7340 m->implemented = 0;
7341 /* free the compiled version of the module */
7342 lysc_module_free(m->compiled, NULL);
7343 m->compiled = NULL;
7344 }
7345 }
7346
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007347 /* remove the module itself from the context and free it */
7348 ly_set_rm(&ctx.ctx->list, *mod, NULL);
7349 lys_module_free(*mod, NULL);
7350 *mod = NULL;
7351
Radek Krejci19a96102018-11-15 13:38:09 +01007352 return ret;
7353}