blob: e4f8ebd58f4cc41d72fafe8aac0b852080385b3a [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
Radek Krejcia46012b2020-08-12 15:41:04 +02001345 if (mod->compiled) {
1346 /* keep the dis_features list until the complete lys_module is freed */
1347 mod->dis_features = mod->compiled->features;
1348 mod->compiled->features = NULL;
1349 }
Radek Krejci95710c92019-02-11 15:49:55 +01001350
Michal Vasko33ff9422020-07-03 09:50:39 +02001351 /* in the dis_features list, remove all the parts (from finished compiling process)
Radek Krejci95710c92019-02-11 15:49:55 +01001352 * which may points into the data being freed here */
Michal Vasko33ff9422020-07-03 09:50:39 +02001353 LY_ARRAY_FOR(mod->dis_features, u) {
1354 LY_ARRAY_FOR(mod->dis_features[u].iffeatures, v) {
1355 lysc_iffeature_free(ctx->ctx, &mod->dis_features[u].iffeatures[v]);
Radek Krejci95710c92019-02-11 15:49:55 +01001356 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001357 LY_ARRAY_FREE(mod->dis_features[u].iffeatures);
1358 mod->dis_features[u].iffeatures = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01001359
Michal Vasko33ff9422020-07-03 09:50:39 +02001360 LY_ARRAY_FOR(mod->dis_features[u].exts, v) {
1361 lysc_ext_instance_free(ctx->ctx, &(mod->dis_features[u].exts)[v]);
Radek Krejci95710c92019-02-11 15:49:55 +01001362 }
Michal Vasko33ff9422020-07-03 09:50:39 +02001363 LY_ARRAY_FREE(mod->dis_features[u].exts);
1364 mod->dis_features[u].exts = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01001365 }
1366}
1367
Radek Krejcia3045382018-11-22 14:30:31 +01001368/**
1369 * @brief Validate and normalize numeric value from a range definition.
1370 * @param[in] ctx Compile context.
1371 * @param[in] basetype Base YANG built-in type of the node connected with the range restriction. Actually only LY_TYPE_DEC64 is important to
1372 * allow processing of the fractions. The fraction point is extracted from the value which is then normalize according to given frdigits into
1373 * valcopy to allow easy parsing and storing of the value. libyang stores decimal number without the decimal point which is always recovered from
1374 * the known fraction-digits value. So, with fraction-digits 2, number 3.14 is stored as 314 and number 1 is stored as 100.
1375 * @param[in] frdigits The fraction-digits of the type in case of LY_TYPE_DEC64.
1376 * @param[in] value String value of the range boundary.
1377 * @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.
1378 * @param[out] valcopy NULL-terminated string with the numeric value to parse and store.
1379 * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID (no number) or LY_EINVAL (decimal64 not matching fraction-digits value).
1380 */
Radek Krejcie88beef2019-05-30 15:47:19 +02001381LY_ERR
Radek Krejci6cba4292018-11-15 17:33:29 +01001382range_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 +01001383{
Radek Krejci6cba4292018-11-15 17:33:29 +01001384 size_t fraction = 0, size;
1385
Radek Krejci19a96102018-11-15 13:38:09 +01001386 *len = 0;
1387
1388 assert(value);
1389 /* parse value */
1390 if (!isdigit(value[*len]) && (value[*len] != '-') && (value[*len] != '+')) {
1391 return LY_EVALID;
1392 }
1393
1394 if ((value[*len] == '-') || (value[*len] == '+')) {
1395 ++(*len);
1396 }
1397
1398 while (isdigit(value[*len])) {
1399 ++(*len);
1400 }
1401
1402 if ((basetype != LY_TYPE_DEC64) || (value[*len] != '.') || !isdigit(value[*len + 1])) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001403 if (basetype == LY_TYPE_DEC64) {
1404 goto decimal;
1405 } else {
1406 *valcopy = strndup(value, *len);
1407 return LY_SUCCESS;
1408 }
Radek Krejci19a96102018-11-15 13:38:09 +01001409 }
1410 fraction = *len;
1411
1412 ++(*len);
1413 while (isdigit(value[*len])) {
1414 ++(*len);
1415 }
1416
Radek Krejci6cba4292018-11-15 17:33:29 +01001417 if (basetype == LY_TYPE_DEC64) {
1418decimal:
1419 assert(frdigits);
Radek Krejci943177f2019-06-14 16:32:43 +02001420 if (fraction && (*len - 1 - fraction > frdigits)) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001421 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1422 "Range boundary \"%.*s\" of decimal64 type exceeds defined number (%u) of fraction digits.",
1423 *len, value, frdigits);
1424 return LY_EINVAL;
1425 }
1426 if (fraction) {
1427 size = (*len) + (frdigits - ((*len) - 1 - fraction));
1428 } else {
1429 size = (*len) + frdigits + 1;
1430 }
1431 *valcopy = malloc(size * sizeof **valcopy);
Radek Krejci19a96102018-11-15 13:38:09 +01001432 LY_CHECK_ERR_RET(!(*valcopy), LOGMEM(ctx->ctx), LY_EMEM);
1433
Radek Krejci6cba4292018-11-15 17:33:29 +01001434 (*valcopy)[size - 1] = '\0';
1435 if (fraction) {
1436 memcpy(&(*valcopy)[0], &value[0], fraction);
1437 memcpy(&(*valcopy)[fraction], &value[fraction + 1], (*len) - 1 - (fraction));
1438 memset(&(*valcopy)[(*len) - 1], '0', frdigits - ((*len) - 1 - fraction));
1439 } else {
1440 memcpy(&(*valcopy)[0], &value[0], *len);
1441 memset(&(*valcopy)[*len], '0', frdigits);
1442 }
Radek Krejci19a96102018-11-15 13:38:09 +01001443 }
1444 return LY_SUCCESS;
1445}
1446
Radek Krejcia3045382018-11-22 14:30:31 +01001447/**
1448 * @brief Check that values in range are in ascendant order.
1449 * @param[in] unsigned_value Flag to note that we are working with unsigned values.
Radek Krejci5969f272018-11-23 10:03:58 +01001450 * @param[in] max Flag to distinguish if checking min or max value. min value must be strictly higher than previous,
1451 * max can be also equal.
Radek Krejcia3045382018-11-22 14:30:31 +01001452 * @param[in] value Current value to check.
1453 * @param[in] prev_value The last seen value.
1454 * @return LY_SUCCESS or LY_EEXIST for invalid order.
1455 */
Radek Krejci19a96102018-11-15 13:38:09 +01001456static LY_ERR
Radek Krejci5969f272018-11-23 10:03:58 +01001457range_part_check_ascendancy(int unsigned_value, int max, int64_t value, int64_t prev_value)
Radek Krejci19a96102018-11-15 13:38:09 +01001458{
1459 if (unsigned_value) {
Radek Krejci5969f272018-11-23 10:03:58 +01001460 if ((max && (uint64_t)prev_value > (uint64_t)value) || (!max && (uint64_t)prev_value >= (uint64_t)value)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001461 return LY_EEXIST;
1462 }
1463 } else {
Radek Krejci5969f272018-11-23 10:03:58 +01001464 if ((max && prev_value > value) || (!max && prev_value >= value)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001465 return LY_EEXIST;
1466 }
1467 }
1468 return LY_SUCCESS;
1469}
1470
Radek Krejcia3045382018-11-22 14:30:31 +01001471/**
1472 * @brief Set min/max value of the range part.
1473 * @param[in] ctx Compile context.
1474 * @param[in] part Range part structure to fill.
1475 * @param[in] max Flag to distinguish if storing min or max value.
1476 * @param[in] prev The last seen value to check that all values in range are specified in ascendant order.
1477 * @param[in] basetype Type of the value to get know implicit min/max values and other checking rules.
1478 * @param[in] first Flag for the first value of the range to avoid ascendancy order.
1479 * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging.
1480 * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype.
Radek Krejci5969f272018-11-23 10:03:58 +01001481 * @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 +01001482 * @param[in,out] value Numeric range value to be stored, if not provided the type's min/max value is set.
1483 * @return LY_ERR value - LY_SUCCESS, LY_EDENIED (value brokes type's boundaries), LY_EVALID (not a number),
1484 * LY_EEXIST (value is smaller than the previous one), LY_EINVAL (decimal64 value does not corresponds with the
1485 * frdigits value), LY_EMEM.
1486 */
Radek Krejci19a96102018-11-15 13:38:09 +01001487static LY_ERR
Michal Vaskoba417ac2020-08-06 14:48:20 +02001488range_part_minmax(struct lysc_ctx *ctx, struct lysc_range_part *part, int max, int64_t prev, LY_DATA_TYPE basetype,
1489 int first, int length_restr, uint8_t frdigits, struct lysc_range *base_range, const char **value)
Radek Krejci19a96102018-11-15 13:38:09 +01001490{
1491 LY_ERR ret = LY_SUCCESS;
1492 char *valcopy = NULL;
1493 size_t len;
1494
1495 if (value) {
Radek Krejci6cba4292018-11-15 17:33:29 +01001496 ret = range_part_check_value_syntax(ctx, basetype, frdigits, *value, &len, &valcopy);
Radek Krejci5969f272018-11-23 10:03:58 +01001497 LY_CHECK_GOTO(ret, finalize);
1498 }
1499 if (!valcopy && base_range) {
1500 if (max) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001501 part->max_64 = base_range->parts[LY_ARRAY_COUNT(base_range->parts) - 1].max_64;
Radek Krejci5969f272018-11-23 10:03:58 +01001502 } else {
1503 part->min_64 = base_range->parts[0].min_64;
1504 }
1505 if (!first) {
1506 ret = range_part_check_ascendancy(basetype <= LY_TYPE_STRING ? 1 : 0, max, max ? part->max_64 : part->min_64, prev);
1507 }
1508 goto finalize;
Radek Krejci19a96102018-11-15 13:38:09 +01001509 }
1510
1511 switch (basetype) {
Radek Krejci19a96102018-11-15 13:38:09 +01001512 case LY_TYPE_INT8: /* range */
1513 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001514 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 +01001515 } else if (max) {
1516 part->max_64 = INT64_C(127);
1517 } else {
1518 part->min_64 = INT64_C(-128);
1519 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001520 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001521 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001522 }
1523 break;
1524 case LY_TYPE_INT16: /* range */
1525 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001526 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 +01001527 } else if (max) {
1528 part->max_64 = INT64_C(32767);
1529 } else {
1530 part->min_64 = INT64_C(-32768);
1531 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001532 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001533 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001534 }
1535 break;
1536 case LY_TYPE_INT32: /* range */
1537 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001538 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 +01001539 } else if (max) {
1540 part->max_64 = INT64_C(2147483647);
1541 } else {
1542 part->min_64 = INT64_C(-2147483648);
1543 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001544 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001545 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001546 }
1547 break;
1548 case LY_TYPE_INT64: /* range */
Radek Krejci25cfef72018-11-23 14:15:52 +01001549 case LY_TYPE_DEC64: /* range */
Radek Krejci19a96102018-11-15 13:38:09 +01001550 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001551 ret = ly_parse_int(valcopy, strlen(valcopy), INT64_C(-9223372036854775807) - INT64_C(1), INT64_C(9223372036854775807), 10,
Radek Krejci19a96102018-11-15 13:38:09 +01001552 max ? &part->max_64 : &part->min_64);
1553 } else if (max) {
1554 part->max_64 = INT64_C(9223372036854775807);
1555 } else {
1556 part->min_64 = INT64_C(-9223372036854775807) - INT64_C(1);
1557 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001558 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001559 ret = range_part_check_ascendancy(0, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001560 }
1561 break;
1562 case LY_TYPE_UINT8: /* range */
1563 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001564 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 +01001565 } else if (max) {
1566 part->max_u64 = UINT64_C(255);
1567 } else {
1568 part->min_u64 = UINT64_C(0);
1569 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001570 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001571 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001572 }
1573 break;
1574 case LY_TYPE_UINT16: /* range */
1575 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001576 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 +01001577 } else if (max) {
1578 part->max_u64 = UINT64_C(65535);
1579 } else {
1580 part->min_u64 = UINT64_C(0);
1581 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001582 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001583 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001584 }
1585 break;
1586 case LY_TYPE_UINT32: /* range */
1587 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001588 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 +01001589 } else if (max) {
1590 part->max_u64 = UINT64_C(4294967295);
1591 } else {
1592 part->min_u64 = UINT64_C(0);
1593 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001594 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001595 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001596 }
1597 break;
1598 case LY_TYPE_UINT64: /* range */
Radek Krejci19a96102018-11-15 13:38:09 +01001599 case LY_TYPE_STRING: /* length */
Radek Krejci25cfef72018-11-23 14:15:52 +01001600 case LY_TYPE_BINARY: /* length */
Radek Krejci19a96102018-11-15 13:38:09 +01001601 if (valcopy) {
Radek Krejci249973a2019-06-10 10:50:54 +02001602 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 +01001603 } else if (max) {
1604 part->max_u64 = UINT64_C(18446744073709551615);
1605 } else {
1606 part->min_u64 = UINT64_C(0);
1607 }
Radek Krejci6cba4292018-11-15 17:33:29 +01001608 if (!ret && !first) {
Radek Krejci5969f272018-11-23 10:03:58 +01001609 ret = range_part_check_ascendancy(1, max, max ? part->max_64 : part->min_64, prev);
Radek Krejci19a96102018-11-15 13:38:09 +01001610 }
1611 break;
1612 default:
1613 LOGINT(ctx->ctx);
1614 ret = LY_EINT;
1615 }
1616
Radek Krejci5969f272018-11-23 10:03:58 +01001617finalize:
Radek Krejci19a96102018-11-15 13:38:09 +01001618 if (ret == LY_EDENIED) {
1619 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1620 "Invalid %s restriction - value \"%s\" does not fit the type limitations.",
1621 length_restr ? "length" : "range", valcopy ? valcopy : *value);
1622 } else if (ret == LY_EVALID) {
1623 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1624 "Invalid %s restriction - invalid value \"%s\".",
1625 length_restr ? "length" : "range", valcopy ? valcopy : *value);
1626 } else if (ret == LY_EEXIST) {
1627 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1628 "Invalid %s restriction - values are not in ascending order (%s).",
Radek Krejci6cba4292018-11-15 17:33:29 +01001629 length_restr ? "length" : "range",
Radek Krejci5969f272018-11-23 10:03:58 +01001630 (valcopy && basetype != LY_TYPE_DEC64) ? valcopy : value ? *value : max ? "max" : "min");
Radek Krejci19a96102018-11-15 13:38:09 +01001631 } else if (!ret && value) {
1632 *value = *value + len;
1633 }
1634 free(valcopy);
1635 return ret;
1636}
1637
Radek Krejcia3045382018-11-22 14:30:31 +01001638/**
1639 * @brief Compile the parsed range restriction.
1640 * @param[in] ctx Compile context.
1641 * @param[in] range_p Parsed range structure to compile.
1642 * @param[in] basetype Base YANG built-in type of the node with the range restriction.
1643 * @param[in] length_restr Flag to distinguish between range and length restrictions. Only for logging.
1644 * @param[in] frdigits The fraction-digits value in case of LY_TYPE_DEC64 basetype.
1645 * @param[in] base_range Range restriction of the type from which the current type is derived. The current
1646 * range restriction must be more restrictive than the base_range.
1647 * @param[in,out] range Pointer to the created current range structure.
1648 * @return LY_ERR value.
1649 */
Radek Krejci19a96102018-11-15 13:38:09 +01001650static LY_ERR
Michal Vaskoba417ac2020-08-06 14:48:20 +02001651lys_compile_type_range(struct lysc_ctx *ctx, struct lysp_restr *range_p, LY_DATA_TYPE basetype, int length_restr,
1652 uint8_t frdigits, struct lysc_range *base_range, struct lysc_range **range)
Radek Krejci19a96102018-11-15 13:38:09 +01001653{
1654 LY_ERR ret = LY_EVALID;
1655 const char *expr;
1656 struct lysc_range_part *parts = NULL, *part;
1657 int range_expected = 0, uns;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001658 LY_ARRAY_COUNT_TYPE parts_done = 0, u, v;
Radek Krejci19a96102018-11-15 13:38:09 +01001659
1660 assert(range);
1661 assert(range_p);
1662
1663 expr = range_p->arg;
1664 while(1) {
1665 if (isspace(*expr)) {
1666 ++expr;
1667 } else if (*expr == '\0') {
1668 if (range_expected) {
1669 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1670 "Invalid %s restriction - unexpected end of the expression after \"..\" (%s).",
1671 length_restr ? "length" : "range", range_p->arg);
1672 goto cleanup;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001673 } else if (!parts || parts_done == LY_ARRAY_COUNT(parts)) {
Radek Krejci19a96102018-11-15 13:38:09 +01001674 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1675 "Invalid %s restriction - unexpected end of the expression (%s).",
1676 length_restr ? "length" : "range", range_p->arg);
1677 goto cleanup;
1678 }
1679 parts_done++;
1680 break;
1681 } else if (!strncmp(expr, "min", 3)) {
1682 if (parts) {
1683 /* min cannot be used elsewhere than in the first part */
1684 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1685 "Invalid %s restriction - unexpected data before min keyword (%.*s).", length_restr ? "length" : "range",
1686 expr - range_p->arg, range_p->arg);
1687 goto cleanup;
1688 }
1689 expr += 3;
1690
1691 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Radek Krejci5969f272018-11-23 10:03:58 +01001692 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 +01001693 part->max_64 = part->min_64;
1694 } else if (*expr == '|') {
1695 if (!parts || range_expected) {
1696 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1697 "Invalid %s restriction - unexpected beginning of the expression (%s).", length_restr ? "length" : "range", expr);
1698 goto cleanup;
1699 }
1700 expr++;
1701 parts_done++;
1702 /* process next part of the expression */
1703 } else if (!strncmp(expr, "..", 2)) {
1704 expr += 2;
1705 while (isspace(*expr)) {
1706 expr++;
1707 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001708 if (!parts || LY_ARRAY_COUNT(parts) == parts_done) {
Radek Krejci19a96102018-11-15 13:38:09 +01001709 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1710 "Invalid %s restriction - unexpected \"..\" without a lower bound.", length_restr ? "length" : "range");
1711 goto cleanup;
1712 }
1713 /* continue expecting the upper boundary */
1714 range_expected = 1;
1715 } else if (isdigit(*expr) || (*expr == '-') || (*expr == '+')) {
1716 /* number */
1717 if (range_expected) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001718 part = &parts[LY_ARRAY_COUNT(parts) - 1];
Radek Krejci5969f272018-11-23 10:03:58 +01001719 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 +01001720 range_expected = 0;
1721 } else {
1722 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001723 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 +01001724 basetype, parts_done ? 0 : 1, length_restr, frdigits, NULL, &expr), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001725 part->max_64 = part->min_64;
1726 }
1727
1728 /* continue with possible another expression part */
1729 } else if (!strncmp(expr, "max", 3)) {
1730 expr += 3;
1731 while (isspace(*expr)) {
1732 expr++;
1733 }
1734 if (*expr != '\0') {
1735 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data after max keyword (%s).",
1736 length_restr ? "length" : "range", expr);
1737 goto cleanup;
1738 }
1739 if (range_expected) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001740 part = &parts[LY_ARRAY_COUNT(parts) - 1];
Radek Krejci5969f272018-11-23 10:03:58 +01001741 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 +01001742 range_expected = 0;
1743 } else {
1744 LY_ARRAY_NEW_GOTO(ctx->ctx, parts, part, ret, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001745 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 +01001746 basetype, parts_done ? 0 : 1, length_restr, frdigits, base_range, NULL), cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01001747 part->min_64 = part->max_64;
1748 }
1749 } else {
1750 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid %s restriction - unexpected data (%s).",
1751 length_restr ? "length" : "range", expr);
1752 goto cleanup;
1753 }
1754 }
1755
1756 /* check with the previous range/length restriction */
1757 if (base_range) {
1758 switch (basetype) {
1759 case LY_TYPE_BINARY:
1760 case LY_TYPE_UINT8:
1761 case LY_TYPE_UINT16:
1762 case LY_TYPE_UINT32:
1763 case LY_TYPE_UINT64:
1764 case LY_TYPE_STRING:
1765 uns = 1;
1766 break;
1767 case LY_TYPE_DEC64:
1768 case LY_TYPE_INT8:
1769 case LY_TYPE_INT16:
1770 case LY_TYPE_INT32:
1771 case LY_TYPE_INT64:
1772 uns = 0;
1773 break;
1774 default:
1775 LOGINT(ctx->ctx);
1776 ret = LY_EINT;
1777 goto cleanup;
1778 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001779 for (u = v = 0; u < parts_done && v < LY_ARRAY_COUNT(base_range->parts); ++u) {
Radek Krejci19a96102018-11-15 13:38:09 +01001780 if ((uns && parts[u].min_u64 < base_range->parts[v].min_u64) || (!uns && parts[u].min_64 < base_range->parts[v].min_64)) {
1781 goto baseerror;
1782 }
1783 /* current lower bound is not lower than the base */
1784 if (base_range->parts[v].min_64 == base_range->parts[v].max_64) {
1785 /* base has single value */
1786 if (base_range->parts[v].min_64 == parts[u].min_64) {
1787 /* both lower bounds are the same */
1788 if (parts[u].min_64 != parts[u].max_64) {
1789 /* current continues with a range */
1790 goto baseerror;
1791 } else {
1792 /* equal single values, move both forward */
1793 ++v;
1794 continue;
1795 }
1796 } else {
1797 /* base is single value lower than current range, so the
1798 * value from base range is removed in the current,
1799 * move only base and repeat checking */
1800 ++v;
1801 --u;
1802 continue;
1803 }
1804 } else {
1805 /* base is the range */
1806 if (parts[u].min_64 == parts[u].max_64) {
1807 /* current is a single value */
1808 if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) {
1809 /* current is behind the base range, so base range is omitted,
1810 * move the base and keep the current for further check */
1811 ++v;
1812 --u;
1813 } /* else it is within the base range, so move the current, but keep the base */
1814 continue;
1815 } else {
1816 /* both are ranges - check the higher bound, the lower was already checked */
1817 if ((uns && parts[u].max_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].max_64 > base_range->parts[v].max_64)) {
1818 /* higher bound is higher than the current higher bound */
1819 if ((uns && parts[u].min_u64 > base_range->parts[v].max_u64) || (!uns && parts[u].min_64 > base_range->parts[v].max_64)) {
1820 /* but the current lower bound is also higher, so the base range is omitted,
1821 * continue with the same current, but move the base */
1822 --u;
1823 ++v;
1824 continue;
1825 }
1826 /* current range starts within the base range but end behind it */
1827 goto baseerror;
1828 } else {
1829 /* current range is smaller than the base,
1830 * move current, but stay with the base */
1831 continue;
1832 }
1833 }
1834 }
1835 }
1836 if (u != parts_done) {
1837baseerror:
1838 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
1839 "Invalid %s restriction - the derived restriction (%s) is not equally or more limiting.",
1840 length_restr ? "length" : "range", range_p->arg);
1841 goto cleanup;
1842 }
1843 }
1844
1845 if (!(*range)) {
1846 *range = calloc(1, sizeof **range);
1847 LY_CHECK_ERR_RET(!(*range), LOGMEM(ctx->ctx), LY_EMEM);
1848 }
1849
Radek Krejcic8b31002019-01-08 10:24:45 +01001850 /* we rewrite the following values as the types chain is being processed */
Radek Krejci19a96102018-11-15 13:38:09 +01001851 if (range_p->eapptag) {
1852 lydict_remove(ctx->ctx, (*range)->eapptag);
1853 (*range)->eapptag = lydict_insert(ctx->ctx, range_p->eapptag, 0);
1854 }
1855 if (range_p->emsg) {
1856 lydict_remove(ctx->ctx, (*range)->emsg);
1857 (*range)->emsg = lydict_insert(ctx->ctx, range_p->emsg, 0);
1858 }
Radek Krejcic8b31002019-01-08 10:24:45 +01001859 if (range_p->dsc) {
1860 lydict_remove(ctx->ctx, (*range)->dsc);
1861 (*range)->dsc = lydict_insert(ctx->ctx, range_p->dsc, 0);
1862 }
1863 if (range_p->ref) {
1864 lydict_remove(ctx->ctx, (*range)->ref);
1865 (*range)->ref = lydict_insert(ctx->ctx, range_p->ref, 0);
1866 }
Radek Krejci19a96102018-11-15 13:38:09 +01001867 /* extensions are taken only from the last range by the caller */
1868
1869 (*range)->parts = parts;
1870 parts = NULL;
1871 ret = LY_SUCCESS;
1872cleanup:
Radek Krejci19a96102018-11-15 13:38:09 +01001873 LY_ARRAY_FREE(parts);
1874
1875 return ret;
1876}
1877
1878/**
1879 * @brief Checks pattern syntax.
1880 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02001881 * @param[in] ctx Context.
1882 * @param[in] log_path Path for logging errors.
Radek Krejci19a96102018-11-15 13:38:09 +01001883 * @param[in] pattern Pattern to check.
Radek Krejci54579462019-04-30 12:47:06 +02001884 * @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 +01001885 * @return LY_ERR value - LY_SUCCESS, LY_EMEM, LY_EVALID.
Radek Krejci19a96102018-11-15 13:38:09 +01001886 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001887LY_ERR
1888lys_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 +01001889{
Michal Vasko40a00082020-05-27 15:20:01 +02001890 int idx, idx2, start, end, size, brack;
Radek Krejci19a96102018-11-15 13:38:09 +01001891 char *perl_regex, *ptr;
Radek Krejci54579462019-04-30 12:47:06 +02001892 int err_code;
1893 const char *orig_ptr;
1894 PCRE2_SIZE err_offset;
1895 pcre2_code *code_local;
Radek Krejci19a96102018-11-15 13:38:09 +01001896#define URANGE_LEN 19
1897 char *ublock2urange[][2] = {
1898 {"BasicLatin", "[\\x{0000}-\\x{007F}]"},
1899 {"Latin-1Supplement", "[\\x{0080}-\\x{00FF}]"},
1900 {"LatinExtended-A", "[\\x{0100}-\\x{017F}]"},
1901 {"LatinExtended-B", "[\\x{0180}-\\x{024F}]"},
1902 {"IPAExtensions", "[\\x{0250}-\\x{02AF}]"},
1903 {"SpacingModifierLetters", "[\\x{02B0}-\\x{02FF}]"},
1904 {"CombiningDiacriticalMarks", "[\\x{0300}-\\x{036F}]"},
1905 {"Greek", "[\\x{0370}-\\x{03FF}]"},
1906 {"Cyrillic", "[\\x{0400}-\\x{04FF}]"},
1907 {"Armenian", "[\\x{0530}-\\x{058F}]"},
1908 {"Hebrew", "[\\x{0590}-\\x{05FF}]"},
1909 {"Arabic", "[\\x{0600}-\\x{06FF}]"},
1910 {"Syriac", "[\\x{0700}-\\x{074F}]"},
1911 {"Thaana", "[\\x{0780}-\\x{07BF}]"},
1912 {"Devanagari", "[\\x{0900}-\\x{097F}]"},
1913 {"Bengali", "[\\x{0980}-\\x{09FF}]"},
1914 {"Gurmukhi", "[\\x{0A00}-\\x{0A7F}]"},
1915 {"Gujarati", "[\\x{0A80}-\\x{0AFF}]"},
1916 {"Oriya", "[\\x{0B00}-\\x{0B7F}]"},
1917 {"Tamil", "[\\x{0B80}-\\x{0BFF}]"},
1918 {"Telugu", "[\\x{0C00}-\\x{0C7F}]"},
1919 {"Kannada", "[\\x{0C80}-\\x{0CFF}]"},
1920 {"Malayalam", "[\\x{0D00}-\\x{0D7F}]"},
1921 {"Sinhala", "[\\x{0D80}-\\x{0DFF}]"},
1922 {"Thai", "[\\x{0E00}-\\x{0E7F}]"},
1923 {"Lao", "[\\x{0E80}-\\x{0EFF}]"},
1924 {"Tibetan", "[\\x{0F00}-\\x{0FFF}]"},
1925 {"Myanmar", "[\\x{1000}-\\x{109F}]"},
1926 {"Georgian", "[\\x{10A0}-\\x{10FF}]"},
1927 {"HangulJamo", "[\\x{1100}-\\x{11FF}]"},
1928 {"Ethiopic", "[\\x{1200}-\\x{137F}]"},
1929 {"Cherokee", "[\\x{13A0}-\\x{13FF}]"},
1930 {"UnifiedCanadianAboriginalSyllabics", "[\\x{1400}-\\x{167F}]"},
1931 {"Ogham", "[\\x{1680}-\\x{169F}]"},
1932 {"Runic", "[\\x{16A0}-\\x{16FF}]"},
1933 {"Khmer", "[\\x{1780}-\\x{17FF}]"},
1934 {"Mongolian", "[\\x{1800}-\\x{18AF}]"},
1935 {"LatinExtendedAdditional", "[\\x{1E00}-\\x{1EFF}]"},
1936 {"GreekExtended", "[\\x{1F00}-\\x{1FFF}]"},
1937 {"GeneralPunctuation", "[\\x{2000}-\\x{206F}]"},
1938 {"SuperscriptsandSubscripts", "[\\x{2070}-\\x{209F}]"},
1939 {"CurrencySymbols", "[\\x{20A0}-\\x{20CF}]"},
1940 {"CombiningMarksforSymbols", "[\\x{20D0}-\\x{20FF}]"},
1941 {"LetterlikeSymbols", "[\\x{2100}-\\x{214F}]"},
1942 {"NumberForms", "[\\x{2150}-\\x{218F}]"},
1943 {"Arrows", "[\\x{2190}-\\x{21FF}]"},
1944 {"MathematicalOperators", "[\\x{2200}-\\x{22FF}]"},
1945 {"MiscellaneousTechnical", "[\\x{2300}-\\x{23FF}]"},
1946 {"ControlPictures", "[\\x{2400}-\\x{243F}]"},
1947 {"OpticalCharacterRecognition", "[\\x{2440}-\\x{245F}]"},
1948 {"EnclosedAlphanumerics", "[\\x{2460}-\\x{24FF}]"},
1949 {"BoxDrawing", "[\\x{2500}-\\x{257F}]"},
1950 {"BlockElements", "[\\x{2580}-\\x{259F}]"},
1951 {"GeometricShapes", "[\\x{25A0}-\\x{25FF}]"},
1952 {"MiscellaneousSymbols", "[\\x{2600}-\\x{26FF}]"},
1953 {"Dingbats", "[\\x{2700}-\\x{27BF}]"},
1954 {"BraillePatterns", "[\\x{2800}-\\x{28FF}]"},
1955 {"CJKRadicalsSupplement", "[\\x{2E80}-\\x{2EFF}]"},
1956 {"KangxiRadicals", "[\\x{2F00}-\\x{2FDF}]"},
1957 {"IdeographicDescriptionCharacters", "[\\x{2FF0}-\\x{2FFF}]"},
1958 {"CJKSymbolsandPunctuation", "[\\x{3000}-\\x{303F}]"},
1959 {"Hiragana", "[\\x{3040}-\\x{309F}]"},
1960 {"Katakana", "[\\x{30A0}-\\x{30FF}]"},
1961 {"Bopomofo", "[\\x{3100}-\\x{312F}]"},
1962 {"HangulCompatibilityJamo", "[\\x{3130}-\\x{318F}]"},
1963 {"Kanbun", "[\\x{3190}-\\x{319F}]"},
1964 {"BopomofoExtended", "[\\x{31A0}-\\x{31BF}]"},
1965 {"EnclosedCJKLettersandMonths", "[\\x{3200}-\\x{32FF}]"},
1966 {"CJKCompatibility", "[\\x{3300}-\\x{33FF}]"},
1967 {"CJKUnifiedIdeographsExtensionA", "[\\x{3400}-\\x{4DB5}]"},
1968 {"CJKUnifiedIdeographs", "[\\x{4E00}-\\x{9FFF}]"},
1969 {"YiSyllables", "[\\x{A000}-\\x{A48F}]"},
1970 {"YiRadicals", "[\\x{A490}-\\x{A4CF}]"},
1971 {"HangulSyllables", "[\\x{AC00}-\\x{D7A3}]"},
1972 {"PrivateUse", "[\\x{E000}-\\x{F8FF}]"},
1973 {"CJKCompatibilityIdeographs", "[\\x{F900}-\\x{FAFF}]"},
1974 {"AlphabeticPresentationForms", "[\\x{FB00}-\\x{FB4F}]"},
1975 {"ArabicPresentationForms-A", "[\\x{FB50}-\\x{FDFF}]"},
1976 {"CombiningHalfMarks", "[\\x{FE20}-\\x{FE2F}]"},
1977 {"CJKCompatibilityForms", "[\\x{FE30}-\\x{FE4F}]"},
1978 {"SmallFormVariants", "[\\x{FE50}-\\x{FE6F}]"},
1979 {"ArabicPresentationForms-B", "[\\x{FE70}-\\x{FEFE}]"},
1980 {"HalfwidthandFullwidthForms", "[\\x{FF00}-\\x{FFEF}]"},
1981 {NULL, NULL}
1982 };
1983
1984 /* adjust the expression to a Perl equivalent
1985 * http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#regexs */
1986
Michal Vasko40a00082020-05-27 15:20:01 +02001987 /* allocate space for the transformed pattern */
1988 size = strlen(pattern) + 1;
1989 perl_regex = malloc(size);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001990 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01001991 perl_regex[0] = '\0';
1992
Michal Vasko40a00082020-05-27 15:20:01 +02001993 /* we need to replace all "$" and "^" (that are not in "[]") with "\$" and "\^" */
1994 brack = 0;
1995 idx = 0;
1996 orig_ptr = pattern;
1997 while (orig_ptr[0]) {
1998 switch (orig_ptr[0]) {
1999 case '$':
2000 case '^':
2001 if (!brack) {
2002 /* make space for the extra character */
2003 ++size;
2004 perl_regex = ly_realloc(perl_regex, size);
2005 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01002006
Michal Vasko40a00082020-05-27 15:20:01 +02002007 /* print escape slash */
2008 perl_regex[idx] = '\\';
2009 ++idx;
2010 }
2011 break;
2012 case '[':
2013 /* must not be escaped */
2014 if ((orig_ptr == pattern) || (orig_ptr[-1] != '\\')) {
2015 ++brack;
2016 }
2017 break;
2018 case ']':
2019 if ((orig_ptr == pattern) || (orig_ptr[-1] != '\\')) {
2020 /* pattern was checked and compiled already */
2021 assert(brack);
2022 --brack;
2023 }
2024 break;
2025 default:
2026 break;
Radek Krejci19a96102018-11-15 13:38:09 +01002027 }
Michal Vasko40a00082020-05-27 15:20:01 +02002028
2029 /* copy char */
2030 perl_regex[idx] = orig_ptr[0];
2031
2032 ++idx;
2033 ++orig_ptr;
Radek Krejci19a96102018-11-15 13:38:09 +01002034 }
Michal Vasko40a00082020-05-27 15:20:01 +02002035 perl_regex[idx] = '\0';
Radek Krejci19a96102018-11-15 13:38:09 +01002036
2037 /* substitute Unicode Character Blocks with exact Character Ranges */
2038 while ((ptr = strstr(perl_regex, "\\p{Is"))) {
2039 start = ptr - perl_regex;
2040
2041 ptr = strchr(ptr, '}');
2042 if (!ptr) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002043 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP,
Radek Krejci19a96102018-11-15 13:38:09 +01002044 pattern, perl_regex + start + 2, "unterminated character property");
2045 free(perl_regex);
2046 return LY_EVALID;
2047 }
2048 end = (ptr - perl_regex) + 1;
2049
2050 /* need more space */
2051 if (end - start < URANGE_LEN) {
2052 perl_regex = ly_realloc(perl_regex, strlen(perl_regex) + (URANGE_LEN - (end - start)) + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002053 LY_CHECK_ERR_RET(!perl_regex, LOGMEM(ctx); free(perl_regex), LY_EMEM);
Radek Krejci19a96102018-11-15 13:38:09 +01002054 }
2055
2056 /* find our range */
2057 for (idx = 0; ublock2urange[idx][0]; ++idx) {
2058 if (!strncmp(perl_regex + start + 5, ublock2urange[idx][0], strlen(ublock2urange[idx][0]))) {
2059 break;
2060 }
2061 }
2062 if (!ublock2urange[idx][0]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002063 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP,
Radek Krejci19a96102018-11-15 13:38:09 +01002064 pattern, perl_regex + start + 5, "unknown block name");
2065 free(perl_regex);
2066 return LY_EVALID;
2067 }
2068
2069 /* 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 +02002070 for (idx2 = 0, idx = 0; idx2 < start; ++idx2) {
Radek Krejci19a96102018-11-15 13:38:09 +01002071 if ((perl_regex[idx2] == '[') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) {
Michal Vasko40a00082020-05-27 15:20:01 +02002072 ++idx;
Radek Krejci19a96102018-11-15 13:38:09 +01002073 }
2074 if ((perl_regex[idx2] == ']') && (!idx2 || (perl_regex[idx2 - 1] != '\\'))) {
Michal Vasko40a00082020-05-27 15:20:01 +02002075 --idx;
Radek Krejci19a96102018-11-15 13:38:09 +01002076 }
2077 }
Michal Vasko40a00082020-05-27 15:20:01 +02002078 if (idx) {
Radek Krejci19a96102018-11-15 13:38:09 +01002079 /* skip brackets */
2080 memmove(perl_regex + start + (URANGE_LEN - 2), perl_regex + end, strlen(perl_regex + end) + 1);
2081 memcpy(perl_regex + start, ublock2urange[idx][1] + 1, URANGE_LEN - 2);
2082 } else {
2083 memmove(perl_regex + start + URANGE_LEN, perl_regex + end, strlen(perl_regex + end) + 1);
2084 memcpy(perl_regex + start, ublock2urange[idx][1], URANGE_LEN);
2085 }
2086 }
2087
2088 /* must return 0, already checked during parsing */
Radek Krejci5819f7c2019-05-31 14:53:29 +02002089 code_local = pcre2_compile((PCRE2_SPTR)perl_regex, PCRE2_ZERO_TERMINATED,
2090 PCRE2_UTF | PCRE2_ANCHORED | PCRE2_ENDANCHORED | PCRE2_DOLLAR_ENDONLY | PCRE2_NO_AUTO_CAPTURE,
Radek Krejci54579462019-04-30 12:47:06 +02002091 &err_code, &err_offset, NULL);
2092 if (!code_local) {
2093 PCRE2_UCHAR err_msg[256] = {0};
2094 pcre2_get_error_message(err_code, err_msg, 256);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002095 LOGVAL(ctx, LY_VLOG_STR, log_path, LY_VCODE_INREGEXP, pattern, perl_regex + err_offset, err_msg);
Radek Krejci19a96102018-11-15 13:38:09 +01002096 free(perl_regex);
2097 return LY_EVALID;
2098 }
2099 free(perl_regex);
2100
Radek Krejci54579462019-04-30 12:47:06 +02002101 if (code) {
2102 *code = code_local;
Radek Krejci19a96102018-11-15 13:38:09 +01002103 } else {
Radek Krejci54579462019-04-30 12:47:06 +02002104 free(code_local);
Radek Krejci19a96102018-11-15 13:38:09 +01002105 }
2106
2107 return LY_SUCCESS;
2108
2109#undef URANGE_LEN
2110}
2111
Radek Krejcia3045382018-11-22 14:30:31 +01002112/**
2113 * @brief Compile parsed pattern restriction in conjunction with the patterns from base type.
2114 * @param[in] ctx Compile context.
2115 * @param[in] patterns_p Array of parsed patterns from the current type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002116 * @param[in] base_patterns Compiled patterns from the type from which the current type is derived.
2117 * Patterns from the base type are inherited to have all the patterns that have to match at one place.
2118 * @param[out] patterns Pointer to the storage for the patterns of the current type.
2119 * @return LY_ERR LY_SUCCESS, LY_EMEM, LY_EVALID.
2120 */
Radek Krejci19a96102018-11-15 13:38:09 +01002121static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02002122lys_compile_type_patterns(struct lysc_ctx *ctx, struct lysp_restr *patterns_p,
Radek Krejci19a96102018-11-15 13:38:09 +01002123 struct lysc_pattern **base_patterns, struct lysc_pattern ***patterns)
2124{
2125 struct lysc_pattern **pattern;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002126 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01002127 LY_ERR ret = LY_SUCCESS;
2128
2129 /* first, copy the patterns from the base type */
2130 if (base_patterns) {
2131 *patterns = lysc_patterns_dup(ctx->ctx, base_patterns);
2132 LY_CHECK_ERR_RET(!(*patterns), LOGMEM(ctx->ctx), LY_EMEM);
2133 }
2134
2135 LY_ARRAY_FOR(patterns_p, u) {
2136 LY_ARRAY_NEW_RET(ctx->ctx, (*patterns), pattern, LY_EMEM);
2137 *pattern = calloc(1, sizeof **pattern);
2138 ++(*pattern)->refcount;
2139
Michal Vasko03ff5a72019-09-11 13:49:33 +02002140 ret = lys_compile_type_pattern_check(ctx->ctx, ctx->path, &patterns_p[u].arg[1], &(*pattern)->code);
Radek Krejci19a96102018-11-15 13:38:09 +01002141 LY_CHECK_RET(ret);
Radek Krejci19a96102018-11-15 13:38:09 +01002142
2143 if (patterns_p[u].arg[0] == 0x15) {
2144 (*pattern)->inverted = 1;
2145 }
Radek Krejci54579462019-04-30 12:47:06 +02002146 DUP_STRING(ctx->ctx, &patterns_p[u].arg[1], (*pattern)->expr);
Radek Krejci19a96102018-11-15 13:38:09 +01002147 DUP_STRING(ctx->ctx, patterns_p[u].eapptag, (*pattern)->eapptag);
2148 DUP_STRING(ctx->ctx, patterns_p[u].emsg, (*pattern)->emsg);
Radek Krejcic8b31002019-01-08 10:24:45 +01002149 DUP_STRING(ctx->ctx, patterns_p[u].dsc, (*pattern)->dsc);
2150 DUP_STRING(ctx->ctx, patterns_p[u].ref, (*pattern)->ref);
Radek Krejci0935f412019-08-20 16:15:18 +02002151 COMPILE_EXTS_GOTO(ctx, patterns_p[u].exts, (*pattern)->exts, (*pattern), LYEXT_PAR_PATTERN, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +01002152 }
2153done:
2154 return ret;
2155}
2156
Radek Krejcia3045382018-11-22 14:30:31 +01002157/**
2158 * @brief map of the possible restrictions combination for the specific built-in type.
2159 */
Radek Krejci19a96102018-11-15 13:38:09 +01002160static uint16_t type_substmt_map[LY_DATA_TYPE_COUNT] = {
2161 0 /* LY_TYPE_UNKNOWN */,
2162 LYS_SET_LENGTH /* LY_TYPE_BINARY */,
Radek Krejci5969f272018-11-23 10:03:58 +01002163 LYS_SET_RANGE /* LY_TYPE_UINT8 */,
2164 LYS_SET_RANGE /* LY_TYPE_UINT16 */,
2165 LYS_SET_RANGE /* LY_TYPE_UINT32 */,
2166 LYS_SET_RANGE /* LY_TYPE_UINT64 */,
2167 LYS_SET_LENGTH | LYS_SET_PATTERN /* LY_TYPE_STRING */,
Radek Krejci19a96102018-11-15 13:38:09 +01002168 LYS_SET_BIT /* LY_TYPE_BITS */,
2169 0 /* LY_TYPE_BOOL */,
2170 LYS_SET_FRDIGITS | LYS_SET_RANGE /* LY_TYPE_DEC64 */,
2171 0 /* LY_TYPE_EMPTY */,
2172 LYS_SET_ENUM /* LY_TYPE_ENUM */,
2173 LYS_SET_BASE /* LY_TYPE_IDENT */,
2174 LYS_SET_REQINST /* LY_TYPE_INST */,
2175 LYS_SET_REQINST | LYS_SET_PATH /* LY_TYPE_LEAFREF */,
Radek Krejci19a96102018-11-15 13:38:09 +01002176 LYS_SET_TYPE /* LY_TYPE_UNION */,
2177 LYS_SET_RANGE /* LY_TYPE_INT8 */,
Radek Krejci19a96102018-11-15 13:38:09 +01002178 LYS_SET_RANGE /* LY_TYPE_INT16 */,
Radek Krejci19a96102018-11-15 13:38:09 +01002179 LYS_SET_RANGE /* LY_TYPE_INT32 */,
Radek Krejci5969f272018-11-23 10:03:58 +01002180 LYS_SET_RANGE /* LY_TYPE_INT64 */
2181};
2182
2183/**
2184 * @brief stringification of the YANG built-in data types
2185 */
2186const char* ly_data_type2str[LY_DATA_TYPE_COUNT] = {"unknown", "binary", "8bit unsigned integer", "16bit unsigned integer",
2187 "32bit unsigned integer", "64bit unsigned integer", "string", "bits", "boolean", "decimal64", "empty", "enumeration",
2188 "identityref", "instance-identifier", "leafref", "union", "8bit integer", "16bit integer", "32bit integer", "64bit integer"
Radek Krejci19a96102018-11-15 13:38:09 +01002189};
2190
Radek Krejcia3045382018-11-22 14:30:31 +01002191/**
2192 * @brief Compile parsed type's enum structures (for enumeration and bits types).
2193 * @param[in] ctx Compile context.
2194 * @param[in] enums_p Array of the parsed enum structures to compile.
2195 * @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 +01002196 * @param[in] base_enums Array of the compiled enums information from the (latest) base type to check if the current enums are compatible.
2197 * @param[out] enums Newly created array of the compiled enums information for the current type.
2198 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
2199 */
Radek Krejci19a96102018-11-15 13:38:09 +01002200static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02002201lys_compile_type_enums(struct lysc_ctx *ctx, struct lysp_type_enum *enums_p, LY_DATA_TYPE basetype,
Radek Krejci693262f2019-04-29 15:23:20 +02002202 struct lysc_type_bitenum_item *base_enums, struct lysc_type_bitenum_item **enums)
Radek Krejci19a96102018-11-15 13:38:09 +01002203{
2204 LY_ERR ret = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002205 LY_ARRAY_COUNT_TYPE u, v, match = 0;
Radek Krejci19a96102018-11-15 13:38:09 +01002206 int32_t value = 0;
2207 uint32_t position = 0;
Radek Krejci693262f2019-04-29 15:23:20 +02002208 struct lysc_type_bitenum_item *e, storage;
Radek Krejci19a96102018-11-15 13:38:09 +01002209
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002210 if (base_enums && ctx->mod_def->version < 2) {
Radek Krejci19a96102018-11-15 13:38:09 +01002211 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "%s type can be subtyped only in YANG 1.1 modules.",
2212 basetype == LY_TYPE_ENUM ? "Enumeration" : "Bits");
2213 return LY_EVALID;
2214 }
2215
2216 LY_ARRAY_FOR(enums_p, u) {
2217 LY_ARRAY_NEW_RET(ctx->ctx, *enums, e, LY_EMEM);
2218 DUP_STRING(ctx->ctx, enums_p[u].name, e->name);
Radek Krejcic8b31002019-01-08 10:24:45 +01002219 DUP_STRING(ctx->ctx, enums_p[u].ref, e->dsc);
2220 DUP_STRING(ctx->ctx, enums_p[u].ref, e->ref);
Radek Krejci693262f2019-04-29 15:23:20 +02002221 e->flags = enums_p[u].flags & LYS_FLAGS_COMPILED_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +01002222 if (base_enums) {
2223 /* check the enum/bit presence in the base type - the set of enums/bits in the derived type must be a subset */
2224 LY_ARRAY_FOR(base_enums, v) {
2225 if (!strcmp(e->name, base_enums[v].name)) {
2226 break;
2227 }
2228 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002229 if (v == LY_ARRAY_COUNT(base_enums)) {
Radek Krejci19a96102018-11-15 13:38:09 +01002230 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2231 "Invalid %s - derived type adds new item \"%s\".",
2232 basetype == LY_TYPE_ENUM ? "enumeration" : "bits", e->name);
2233 return LY_EVALID;
2234 }
2235 match = v;
2236 }
2237
2238 if (basetype == LY_TYPE_ENUM) {
Radek Krejci693262f2019-04-29 15:23:20 +02002239 e->flags |= LYS_ISENUM;
Radek Krejci19a96102018-11-15 13:38:09 +01002240 if (enums_p[u].flags & LYS_SET_VALUE) {
2241 e->value = (int32_t)enums_p[u].value;
2242 if (!u || e->value >= value) {
2243 value = e->value + 1;
2244 }
2245 /* check collision with other values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002246 for (v = 0; v < LY_ARRAY_COUNT(*enums) - 1; ++v) {
Radek Krejci19a96102018-11-15 13:38:09 +01002247 if (e->value == (*enums)[v].value) {
2248 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2249 "Invalid enumeration - value %d collide in items \"%s\" and \"%s\".",
2250 e->value, e->name, (*enums)[v].name);
2251 return LY_EVALID;
2252 }
2253 }
2254 } else if (base_enums) {
2255 /* inherit the assigned value */
2256 e->value = base_enums[match].value;
2257 if (!u || e->value >= value) {
2258 value = e->value + 1;
2259 }
2260 } else {
2261 /* assign value automatically */
2262 if (u && value == INT32_MIN) {
2263 /* counter overflow */
2264 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2265 "Invalid enumeration - it is not possible to auto-assign enum value for "
2266 "\"%s\" since the highest value is already 2147483647.", e->name);
2267 return LY_EVALID;
2268 }
2269 e->value = value++;
2270 }
2271 } else { /* LY_TYPE_BITS */
2272 if (enums_p[u].flags & LYS_SET_VALUE) {
2273 e->value = (int32_t)enums_p[u].value;
2274 if (!u || (uint32_t)e->value >= position) {
2275 position = (uint32_t)e->value + 1;
2276 }
2277 /* check collision with other values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002278 for (v = 0; v < LY_ARRAY_COUNT(*enums) - 1; ++v) {
Radek Krejci19a96102018-11-15 13:38:09 +01002279 if (e->value == (*enums)[v].value) {
2280 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2281 "Invalid bits - position %u collide in items \"%s\" and \"%s\".",
2282 (uint32_t)e->value, e->name, (*enums)[v].name);
2283 return LY_EVALID;
2284 }
2285 }
2286 } else if (base_enums) {
2287 /* inherit the assigned value */
2288 e->value = base_enums[match].value;
2289 if (!u || (uint32_t)e->value >= position) {
2290 position = (uint32_t)e->value + 1;
2291 }
2292 } else {
2293 /* assign value automatically */
2294 if (u && position == 0) {
2295 /* counter overflow */
2296 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2297 "Invalid bits - it is not possible to auto-assign bit position for "
2298 "\"%s\" since the highest value is already 4294967295.", e->name);
2299 return LY_EVALID;
2300 }
2301 e->value = position++;
2302 }
2303 }
2304
2305 if (base_enums) {
2306 /* the assigned values must not change from the derived type */
2307 if (e->value != base_enums[match].value) {
2308 if (basetype == LY_TYPE_ENUM) {
2309 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2310 "Invalid enumeration - value of the item \"%s\" has changed from %d to %d in the derived type.",
2311 e->name, base_enums[match].value, e->value);
2312 } else {
2313 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2314 "Invalid bits - position of the item \"%s\" has changed from %u to %u in the derived type.",
2315 e->name, (uint32_t)base_enums[match].value, (uint32_t)e->value);
2316 }
2317 return LY_EVALID;
2318 }
2319 }
2320
Radek Krejciec4da802019-05-02 13:02:41 +02002321 COMPILE_ARRAY_GOTO(ctx, enums_p[u].iffeatures, e->iffeatures, v, lys_compile_iffeature, ret, done);
Radek Krejci0935f412019-08-20 16:15:18 +02002322 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 +01002323
2324 if (basetype == LY_TYPE_BITS) {
2325 /* keep bits ordered by position */
2326 for (v = u; v && (*enums)[v - 1].value > e->value; --v);
2327 if (v != u) {
2328 memcpy(&storage, e, sizeof *e);
2329 memmove(&(*enums)[v + 1], &(*enums)[v], (u - v) * sizeof **enums);
2330 memcpy(&(*enums)[v], &storage, sizeof storage);
2331 }
2332 }
2333 }
2334
2335done:
2336 return ret;
2337}
2338
Radek Krejcia3045382018-11-22 14:30:31 +01002339/**
2340 * @brief Parse path-arg (leafref). Get tokens of the path by repetitive calls of the function.
2341 *
2342 * path-arg = absolute-path / relative-path
2343 * absolute-path = 1*("/" (node-identifier *path-predicate))
2344 * relative-path = 1*(".." "/") descendant-path
2345 *
2346 * @param[in,out] path Path to parse.
2347 * @param[out] prefix Prefix of the token, NULL if there is not any.
2348 * @param[out] pref_len Length of the prefix, 0 if there is not any.
2349 * @param[out] name Name of the token.
2350 * @param[out] nam_len Length of the name.
2351 * @param[out] parent_times Number of leading ".." in the path. Must be 0 on the first call,
2352 * must not be changed between consecutive calls. -1 if the
2353 * path is absolute.
2354 * @param[out] has_predicate Flag to mark whether there is a predicate specified.
2355 * @return LY_ERR value: LY_SUCCESS or LY_EINVAL in case of invalid character in the path.
2356 */
Radek Krejci2d7a47b2019-05-16 13:34:10 +02002357LY_ERR
Radek Krejcia3045382018-11-22 14:30:31 +01002358lys_path_token(const char **path, const char **prefix, size_t *prefix_len, const char **name, size_t *name_len,
2359 int *parent_times, int *has_predicate)
2360{
2361 int par_times = 0;
2362
2363 assert(path && *path);
2364 assert(parent_times);
2365 assert(prefix);
2366 assert(prefix_len);
2367 assert(name);
2368 assert(name_len);
2369 assert(has_predicate);
2370
2371 *prefix = NULL;
2372 *prefix_len = 0;
2373 *name = NULL;
2374 *name_len = 0;
2375 *has_predicate = 0;
2376
2377 if (!*parent_times) {
2378 if (!strncmp(*path, "..", 2)) {
2379 *path += 2;
2380 ++par_times;
2381 while (!strncmp(*path, "/..", 3)) {
2382 *path += 3;
2383 ++par_times;
2384 }
2385 }
2386 if (par_times) {
2387 *parent_times = par_times;
2388 } else {
2389 *parent_times = -1;
2390 }
2391 }
2392
2393 if (**path != '/') {
2394 return LY_EINVAL;
2395 }
2396 /* skip '/' */
2397 ++(*path);
2398
2399 /* node-identifier ([prefix:]name) */
Radek Krejcib4a4a272019-06-10 12:44:52 +02002400 LY_CHECK_RET(ly_parse_nodeid(path, prefix, prefix_len, name, name_len));
Radek Krejcia3045382018-11-22 14:30:31 +01002401
2402 if ((**path == '/' && (*path)[1]) || !**path) {
2403 /* path continues by another token or this is the last token */
2404 return LY_SUCCESS;
2405 } else if ((*path)[0] != '[') {
2406 /* unexpected character */
2407 return LY_EINVAL;
2408 } else {
2409 /* predicate starting with [ */
2410 *has_predicate = 1;
2411 return LY_SUCCESS;
2412 }
2413}
2414
2415/**
Radek Krejci58d171e2018-11-23 13:50:55 +01002416 * @brief Check the features used in if-feature statements applicable to the leafref and its target.
2417 *
2418 * The set of features used for target must be a subset of features used for the leafref.
2419 * This is not a perfect, we should compare the truth tables but it could require too much resources
2420 * and RFC 7950 does not require it explicitely, so we simplify that.
2421 *
2422 * @param[in] refnode The leafref node.
2423 * @param[in] target Tha target node of the leafref.
2424 * @return LY_SUCCESS or LY_EVALID;
2425 */
2426static LY_ERR
2427lys_compile_leafref_features_validate(const struct lysc_node *refnode, const struct lysc_node *target)
2428{
2429 LY_ERR ret = LY_EVALID;
2430 const struct lysc_node *iter;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002431 LY_ARRAY_COUNT_TYPE u, v, count;
Radek Krejci58d171e2018-11-23 13:50:55 +01002432 struct ly_set features = {0};
2433
2434 for (iter = refnode; iter; iter = iter->parent) {
Radek Krejci056d0a82018-12-06 16:57:25 +01002435 if (iter->iffeatures) {
2436 LY_ARRAY_FOR(iter->iffeatures, u) {
2437 LY_ARRAY_FOR(iter->iffeatures[u].features, v) {
2438 LY_CHECK_GOTO(ly_set_add(&features, iter->iffeatures[u].features[v], 0) == -1, cleanup);
Radek Krejci58d171e2018-11-23 13:50:55 +01002439 }
2440 }
2441 }
2442 }
2443
2444 /* we should have, in features set, a superset of features applicable to the target node.
2445 * So when adding features applicable to the target into the features set, we should not be
2446 * able to actually add any new feature, otherwise it is not a subset of features applicable
2447 * to the leafref itself. */
2448 count = features.count;
2449 for (iter = target; iter; iter = iter->parent) {
Radek Krejci056d0a82018-12-06 16:57:25 +01002450 if (iter->iffeatures) {
2451 LY_ARRAY_FOR(iter->iffeatures, u) {
2452 LY_ARRAY_FOR(iter->iffeatures[u].features, v) {
2453 if ((unsigned int)ly_set_add(&features, iter->iffeatures[u].features[v], 0) >= count) {
Radek Krejci58d171e2018-11-23 13:50:55 +01002454 /* new feature was added (or LY_EMEM) */
2455 goto cleanup;
2456 }
2457 }
2458 }
2459 }
2460 }
2461 ret = LY_SUCCESS;
2462
2463cleanup:
2464 ly_set_erase(&features, NULL);
2465 return ret;
2466}
2467
Michal Vasko004d3152020-06-11 19:59:22 +02002468static LY_ERR lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags,
2469 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p,
2470 struct lysc_type **type, const char **units);
Radek Krejcia3045382018-11-22 14:30:31 +01002471
Radek Krejcia3045382018-11-22 14:30:31 +01002472/**
2473 * @brief The core of the lys_compile_type() - compile information about the given type (from typedef or leaf/leaf-list).
2474 * @param[in] ctx Compile context.
Radek Krejcicdfecd92018-11-26 11:27:32 +01002475 * @param[in] context_node_p Schema node where the type/typedef is placed to correctly find the base types.
2476 * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2477 * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2478 * @param[in] context_name Name of the context node or referencing typedef for logging.
Radek Krejcia3045382018-11-22 14:30:31 +01002479 * @param[in] type_p Parsed type to compile.
Radek Krejci0a33b042020-05-27 10:05:06 +02002480 * @param[in] module Context module for the leafref path and identityref (to correctly resolve prefixes)
Radek Krejcia3045382018-11-22 14:30:31 +01002481 * @param[in] basetype Base YANG built-in type of the type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002482 * @param[in] tpdfname Name of the type's typedef, serves as a flag - if it is leaf/leaf-list's type, it is NULL.
2483 * @param[in] base The latest base (compiled) type from which the current type is being derived.
2484 * @param[out] type Newly created type structure with the filled information about the type.
2485 * @return LY_ERR value.
2486 */
Radek Krejci19a96102018-11-15 13:38:09 +01002487static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002488lys_compile_type_(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags,
2489 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p,
2490 struct lys_module *module, LY_DATA_TYPE basetype, const char *tpdfname, struct lysc_type *base,
2491 struct lysc_type **type)
Radek Krejcic5c27e52018-11-15 14:38:11 +01002492{
2493 LY_ERR ret = LY_SUCCESS;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002494 struct lysc_type_bin *bin;
2495 struct lysc_type_num *num;
2496 struct lysc_type_str *str;
2497 struct lysc_type_bits *bits;
2498 struct lysc_type_enum *enumeration;
Radek Krejci6cba4292018-11-15 17:33:29 +01002499 struct lysc_type_dec *dec;
Radek Krejci555cb5b2018-11-16 14:54:33 +01002500 struct lysc_type_identityref *idref;
Michal Vasko004d3152020-06-11 19:59:22 +02002501 struct lysc_type_leafref *lref;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002502 struct lysc_type_union *un, *un_aux;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002503
2504 switch (basetype) {
2505 case LY_TYPE_BINARY:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002506 bin = (struct lysc_type_bin*)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002507
2508 /* RFC 7950 9.8.1, 9.4.4 - length, number of octets it contains */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002509 if (type_p->length) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002510 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->length, basetype, 1, 0,
2511 base ? ((struct lysc_type_bin*)base)->length : NULL, &bin->length));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002512 if (!tpdfname) {
Radek Krejci0935f412019-08-20 16:15:18 +02002513 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 +01002514 }
2515 }
2516
2517 if (tpdfname) {
2518 type_p->compiled = *type;
2519 *type = calloc(1, sizeof(struct lysc_type_bin));
2520 }
2521 break;
2522 case LY_TYPE_BITS:
2523 /* RFC 7950 9.7 - bits */
2524 bits = (struct lysc_type_bits*)(*type);
2525 if (type_p->bits) {
Radek Krejciec4da802019-05-02 13:02:41 +02002526 LY_CHECK_RET(lys_compile_type_enums(ctx, type_p->bits, basetype,
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002527 base ? (struct lysc_type_bitenum_item*)((struct lysc_type_bits*)base)->bits : NULL,
2528 (struct lysc_type_bitenum_item**)&bits->bits));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002529 }
2530
Radek Krejci555cb5b2018-11-16 14:54:33 +01002531 if (!base && !type_p->flags) {
Radek Krejcic5c27e52018-11-15 14:38:11 +01002532 /* type derived from bits built-in type must contain at least one bit */
Radek Krejci6cba4292018-11-15 17:33:29 +01002533 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002534 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type ", tpdfname);
Radek Krejci6cba4292018-11-15 17:33:29 +01002535 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002536 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "bit", "bits type", "");
Radek Krejci6cba4292018-11-15 17:33:29 +01002537 free(*type);
2538 *type = NULL;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002539 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002540 return LY_EVALID;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002541 }
2542
2543 if (tpdfname) {
2544 type_p->compiled = *type;
2545 *type = calloc(1, sizeof(struct lysc_type_bits));
2546 }
2547 break;
Radek Krejci6cba4292018-11-15 17:33:29 +01002548 case LY_TYPE_DEC64:
2549 dec = (struct lysc_type_dec*)(*type);
2550
2551 /* RFC 7950 9.3.4 - fraction-digits */
Radek Krejci555cb5b2018-11-16 14:54:33 +01002552 if (!base) {
Radek Krejci643c8242018-11-15 17:51:11 +01002553 if (!type_p->fraction_digits) {
2554 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002555 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "fraction-digits", "decimal64 type ", tpdfname);
Radek Krejci643c8242018-11-15 17:51:11 +01002556 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002557 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "fraction-digits", "decimal64 type", "");
Radek Krejci643c8242018-11-15 17:51:11 +01002558 free(*type);
2559 *type = NULL;
2560 }
2561 return LY_EVALID;
2562 }
2563 } else if (type_p->fraction_digits) {
2564 /* fraction digits is prohibited in types not directly derived from built-in decimal64 */
Radek Krejci6cba4292018-11-15 17:33:29 +01002565 if (tpdfname) {
Radek Krejci643c8242018-11-15 17:51:11 +01002566 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2567 "Invalid fraction-digits substatement for type \"%s\" not directly derived from decimal64 built-in type.",
Radek Krejci6cba4292018-11-15 17:33:29 +01002568 tpdfname);
2569 } else {
Radek Krejci643c8242018-11-15 17:51:11 +01002570 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2571 "Invalid fraction-digits substatement for type not directly derived from decimal64 built-in type.");
Radek Krejci6cba4292018-11-15 17:33:29 +01002572 free(*type);
2573 *type = NULL;
2574 }
2575 return LY_EVALID;
2576 }
2577 dec->fraction_digits = type_p->fraction_digits;
2578
2579 /* RFC 7950 9.2.4 - range */
2580 if (type_p->range) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002581 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->range, basetype, 0, dec->fraction_digits,
2582 base ? ((struct lysc_type_dec*)base)->range : NULL, &dec->range));
Radek Krejci6cba4292018-11-15 17:33:29 +01002583 if (!tpdfname) {
Radek Krejci0935f412019-08-20 16:15:18 +02002584 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 +01002585 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002586 }
2587
2588 if (tpdfname) {
2589 type_p->compiled = *type;
2590 *type = calloc(1, sizeof(struct lysc_type_dec));
2591 }
2592 break;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002593 case LY_TYPE_STRING:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002594 str = (struct lysc_type_str*)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002595
2596 /* RFC 7950 9.4.4 - length */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002597 if (type_p->length) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002598 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->length, basetype, 1, 0,
2599 base ? ((struct lysc_type_str*)base)->length : NULL, &str->length));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002600 if (!tpdfname) {
Radek Krejci0935f412019-08-20 16:15:18 +02002601 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 +01002602 }
2603 } else if (base && ((struct lysc_type_str*)base)->length) {
2604 str->length = lysc_range_dup(ctx->ctx, ((struct lysc_type_str*)base)->length);
2605 }
2606
2607 /* RFC 7950 9.4.5 - pattern */
2608 if (type_p->patterns) {
Radek Krejciec4da802019-05-02 13:02:41 +02002609 LY_CHECK_RET(lys_compile_type_patterns(ctx, type_p->patterns,
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002610 base ? ((struct lysc_type_str*)base)->patterns : NULL, &str->patterns));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002611 } else if (base && ((struct lysc_type_str*)base)->patterns) {
2612 str->patterns = lysc_patterns_dup(ctx->ctx, ((struct lysc_type_str*)base)->patterns);
2613 }
2614
2615 if (tpdfname) {
2616 type_p->compiled = *type;
2617 *type = calloc(1, sizeof(struct lysc_type_str));
2618 }
2619 break;
2620 case LY_TYPE_ENUM:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002621 enumeration = (struct lysc_type_enum*)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002622
2623 /* RFC 7950 9.6 - enum */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002624 if (type_p->enums) {
Radek Krejciec4da802019-05-02 13:02:41 +02002625 LY_CHECK_RET(lys_compile_type_enums(ctx, type_p->enums, basetype,
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002626 base ? ((struct lysc_type_enum*)base)->enums : NULL, &enumeration->enums));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002627 }
2628
Radek Krejci555cb5b2018-11-16 14:54:33 +01002629 if (!base && !type_p->flags) {
Radek Krejcic5c27e52018-11-15 14:38:11 +01002630 /* type derived from enumerations built-in type must contain at least one enum */
Radek Krejci6cba4292018-11-15 17:33:29 +01002631 if (tpdfname) {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002632 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type ", tpdfname);
Radek Krejci6cba4292018-11-15 17:33:29 +01002633 } else {
Radek Krejci555cb5b2018-11-16 14:54:33 +01002634 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "enum", "enumeration type", "");
Radek Krejci6cba4292018-11-15 17:33:29 +01002635 free(*type);
2636 *type = NULL;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002637 }
Radek Krejci6cba4292018-11-15 17:33:29 +01002638 return LY_EVALID;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002639 }
2640
2641 if (tpdfname) {
2642 type_p->compiled = *type;
2643 *type = calloc(1, sizeof(struct lysc_type_enum));
2644 }
2645 break;
2646 case LY_TYPE_INT8:
2647 case LY_TYPE_UINT8:
2648 case LY_TYPE_INT16:
2649 case LY_TYPE_UINT16:
2650 case LY_TYPE_INT32:
2651 case LY_TYPE_UINT32:
2652 case LY_TYPE_INT64:
2653 case LY_TYPE_UINT64:
Radek Krejcic5c27e52018-11-15 14:38:11 +01002654 num = (struct lysc_type_num*)(*type);
Radek Krejci555cb5b2018-11-16 14:54:33 +01002655
2656 /* RFC 6020 9.2.4 - range */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002657 if (type_p->range) {
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002658 LY_CHECK_RET(lys_compile_type_range(ctx, type_p->range, basetype, 0, 0,
2659 base ? ((struct lysc_type_num*)base)->range : NULL, &num->range));
Radek Krejcic5c27e52018-11-15 14:38:11 +01002660 if (!tpdfname) {
Radek Krejci0935f412019-08-20 16:15:18 +02002661 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 +01002662 }
2663 }
2664
2665 if (tpdfname) {
2666 type_p->compiled = *type;
2667 *type = calloc(1, sizeof(struct lysc_type_num));
2668 }
2669 break;
Radek Krejci555cb5b2018-11-16 14:54:33 +01002670 case LY_TYPE_IDENT:
2671 idref = (struct lysc_type_identityref*)(*type);
2672
2673 /* RFC 7950 9.10.2 - base */
2674 if (type_p->bases) {
2675 if (base) {
2676 /* only the directly derived identityrefs can contain base specification */
2677 if (tpdfname) {
2678 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Radek Krejcicdfecd92018-11-26 11:27:32 +01002679 "Invalid base substatement for the type \"%s\" not directly derived from identityref built-in type.",
Radek Krejci555cb5b2018-11-16 14:54:33 +01002680 tpdfname);
2681 } else {
2682 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
Radek Krejcicdfecd92018-11-26 11:27:32 +01002683 "Invalid base substatement for the type not directly derived from identityref built-in type.");
Radek Krejci555cb5b2018-11-16 14:54:33 +01002684 free(*type);
2685 *type = NULL;
2686 }
2687 return LY_EVALID;
2688 }
Radek Krejci0a33b042020-05-27 10:05:06 +02002689 LY_CHECK_RET(lys_compile_identity_bases(ctx, module, type_p->bases, NULL, &idref->bases));
Radek Krejci555cb5b2018-11-16 14:54:33 +01002690 }
2691
2692 if (!base && !type_p->flags) {
2693 /* type derived from identityref built-in type must contain at least one base */
2694 if (tpdfname) {
2695 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type ", tpdfname);
2696 } else {
2697 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "base", "identityref type", "");
2698 free(*type);
2699 *type = NULL;
2700 }
2701 return LY_EVALID;
2702 }
2703
2704 if (tpdfname) {
2705 type_p->compiled = *type;
2706 *type = calloc(1, sizeof(struct lysc_type_identityref));
2707 }
2708 break;
Radek Krejcia3045382018-11-22 14:30:31 +01002709 case LY_TYPE_LEAFREF:
Michal Vasko004d3152020-06-11 19:59:22 +02002710 lref = (struct lysc_type_leafref*)*type;
2711
Radek Krejcia3045382018-11-22 14:30:31 +01002712 /* RFC 7950 9.9.3 - require-instance */
2713 if (type_p->flags & LYS_SET_REQINST) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +01002714 if (context_mod->mod->version < LYS_VERSION_1_1) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01002715 if (tpdfname) {
2716 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
2717 "Leafref type \"%s\" can be restricted by require-instance statement only in YANG 1.1 modules.", tpdfname);
2718 } else {
2719 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
2720 "Leafref type can be restricted by require-instance statement only in YANG 1.1 modules.");
2721 free(*type);
2722 *type = NULL;
2723 }
2724 return LY_EVALID;
2725 }
Michal Vasko004d3152020-06-11 19:59:22 +02002726 lref->require_instance = type_p->require_instance;
Radek Krejci412ddfa2018-11-23 11:44:11 +01002727 } else if (base) {
2728 /* inherit */
Michal Vasko004d3152020-06-11 19:59:22 +02002729 lref->require_instance = ((struct lysc_type_leafref *)base)->require_instance;
Radek Krejcia3045382018-11-22 14:30:31 +01002730 } else {
2731 /* default is true */
Michal Vasko004d3152020-06-11 19:59:22 +02002732 lref->require_instance = 1;
Radek Krejcia3045382018-11-22 14:30:31 +01002733 }
2734 if (type_p->path) {
Michal Vasko004d3152020-06-11 19:59:22 +02002735 lref->path = lyxp_expr_dup(ctx->ctx, type_p->path);
2736 lref->path_context = module;
Radek Krejcia3045382018-11-22 14:30:31 +01002737 } else if (base) {
Michal Vasko004d3152020-06-11 19:59:22 +02002738 lref->path = lyxp_expr_dup(ctx->ctx, ((struct lysc_type_leafref*)base)->path);
2739 lref->path_context = ((struct lysc_type_leafref*)base)->path_context;
Radek Krejcia3045382018-11-22 14:30:31 +01002740 } else if (tpdfname) {
2741 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type ", tpdfname);
2742 return LY_EVALID;
2743 } else {
2744 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "path", "leafref type", "");
2745 free(*type);
2746 *type = NULL;
2747 return LY_EVALID;
2748 }
2749 if (tpdfname) {
2750 type_p->compiled = *type;
2751 *type = calloc(1, sizeof(struct lysc_type_leafref));
2752 }
2753 break;
Radek Krejci16c0f822018-11-16 10:46:10 +01002754 case LY_TYPE_INST:
2755 /* RFC 7950 9.9.3 - require-instance */
2756 if (type_p->flags & LYS_SET_REQINST) {
2757 ((struct lysc_type_instanceid*)(*type))->require_instance = type_p->require_instance;
2758 } else {
2759 /* default is true */
2760 ((struct lysc_type_instanceid*)(*type))->require_instance = 1;
2761 }
2762
2763 if (tpdfname) {
2764 type_p->compiled = *type;
2765 *type = calloc(1, sizeof(struct lysc_type_instanceid));
2766 }
2767 break;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002768 case LY_TYPE_UNION:
2769 un = (struct lysc_type_union*)(*type);
2770
2771 /* RFC 7950 7.4 - type */
2772 if (type_p->types) {
2773 if (base) {
2774 /* only the directly derived union can contain types specification */
2775 if (tpdfname) {
2776 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2777 "Invalid type substatement for the type \"%s\" not directly derived from union built-in type.",
2778 tpdfname);
2779 } else {
2780 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG,
2781 "Invalid type substatement for the type not directly derived from union built-in type.");
2782 free(*type);
2783 *type = NULL;
2784 }
2785 return LY_EVALID;
2786 }
2787 /* compile the type */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002788 LY_ARRAY_CREATE_RET(ctx->ctx, un->types, LY_ARRAY_COUNT(type_p->types), LY_EVALID);
2789 for (LY_ARRAY_COUNT_TYPE u = 0, additional = 0; u < LY_ARRAY_COUNT(type_p->types); ++u) {
Michal Vasko004d3152020-06-11 19:59:22 +02002790 LY_CHECK_RET(lys_compile_type(ctx, context_node_p, context_flags, context_mod, context_name,
2791 &type_p->types[u], &un->types[u + additional], NULL));
Radek Krejcicdfecd92018-11-26 11:27:32 +01002792 if (un->types[u + additional]->basetype == LY_TYPE_UNION) {
2793 /* add space for additional types from the union subtype */
2794 un_aux = (struct lysc_type_union *)un->types[u + additional];
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002795 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 +02002796 lysc_type_free(ctx->ctx, (struct lysc_type*)un_aux), LY_EMEM);
Radek Krejcicdfecd92018-11-26 11:27:32 +01002797
2798 /* copy subtypes of the subtype union */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02002799 for (LY_ARRAY_COUNT_TYPE v = 0; v < LY_ARRAY_COUNT(un_aux->types); ++v) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002800 if (un_aux->types[v]->basetype == LY_TYPE_LEAFREF) {
2801 /* duplicate the whole structure because of the instance-specific path resolving for realtype */
2802 un->types[u + additional] = calloc(1, sizeof(struct lysc_type_leafref));
2803 LY_CHECK_ERR_RET(!un->types[u + additional], LOGMEM(ctx->ctx);lysc_type_free(ctx->ctx, (struct lysc_type*)un_aux), LY_EMEM);
Michal Vasko004d3152020-06-11 19:59:22 +02002804 lref = (struct lysc_type_leafref *)un->types[u + additional];
2805
2806 lref->basetype = LY_TYPE_LEAFREF;
2807 lref->path = lyxp_expr_dup(ctx->ctx, ((struct lysc_type_leafref*)un_aux->types[v])->path);
2808 lref->refcount = 1;
2809 lref->require_instance = ((struct lysc_type_leafref*)un_aux->types[v])->require_instance;
2810 lref->path_context = ((struct lysc_type_leafref*)un_aux->types[v])->path_context;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002811 /* TODO extensions */
2812
2813 } else {
2814 un->types[u + additional] = un_aux->types[v];
2815 ++un_aux->types[v]->refcount;
2816 }
2817 ++additional;
2818 LY_ARRAY_INCREMENT(un->types);
2819 }
2820 /* compensate u increment in main loop */
2821 --additional;
2822
2823 /* free the replaced union subtype */
2824 lysc_type_free(ctx->ctx, (struct lysc_type*)un_aux);
2825 } else {
2826 LY_ARRAY_INCREMENT(un->types);
2827 }
Radek Krejcicdfecd92018-11-26 11:27:32 +01002828 }
2829 }
2830
2831 if (!base && !type_p->flags) {
2832 /* type derived from union built-in type must contain at least one type */
2833 if (tpdfname) {
2834 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type ", tpdfname);
2835 } else {
2836 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_MISSCHILDSTMT, "type", "union type", "");
2837 free(*type);
2838 *type = NULL;
2839 }
2840 return LY_EVALID;
2841 }
2842
2843 if (tpdfname) {
2844 type_p->compiled = *type;
2845 *type = calloc(1, sizeof(struct lysc_type_union));
2846 }
2847 break;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002848 case LY_TYPE_BOOL:
2849 case LY_TYPE_EMPTY:
2850 case LY_TYPE_UNKNOWN: /* just to complete switch */
2851 break;
2852 }
2853 LY_CHECK_ERR_RET(!(*type), LOGMEM(ctx->ctx), LY_EMEM);
2854done:
2855 return ret;
2856}
2857
Radek Krejcia3045382018-11-22 14:30:31 +01002858/**
2859 * @brief Compile information about the leaf/leaf-list's type.
2860 * @param[in] ctx Compile context.
Radek Krejcicdfecd92018-11-26 11:27:32 +01002861 * @param[in] context_node_p Schema node where the type/typedef is placed to correctly find the base types.
2862 * @param[in] context_flags Flags of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2863 * @param[in] context_mod Module of the context node or the referencing typedef to correctly check status of referencing and referenced objects.
2864 * @param[in] context_name Name of the context node or referencing typedef for logging.
2865 * @param[in] type_p Parsed type to compile.
Radek Krejcia3045382018-11-22 14:30:31 +01002866 * @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 +01002867 * @param[out] units Storage for inheriting units value from the typedefs the current type derives from.
Radek Krejcia3045382018-11-22 14:30:31 +01002868 * @return LY_ERR value.
2869 */
Radek Krejcic5c27e52018-11-15 14:38:11 +01002870static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02002871lys_compile_type(struct lysc_ctx *ctx, struct lysp_node *context_node_p, uint16_t context_flags,
2872 struct lysp_module *context_mod, const char *context_name, struct lysp_type *type_p,
2873 struct lysc_type **type, const char **units)
Radek Krejci19a96102018-11-15 13:38:09 +01002874{
2875 LY_ERR ret = LY_SUCCESS;
2876 unsigned int u;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002877 int dummyloops = 0;
Radek Krejci19a96102018-11-15 13:38:09 +01002878 struct type_context {
2879 const struct lysp_tpdf *tpdf;
2880 struct lysp_node *node;
2881 struct lysp_module *mod;
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002882 } *tctx, *tctx_prev = NULL, *tctx_iter;
Radek Krejci19a96102018-11-15 13:38:09 +01002883 LY_DATA_TYPE basetype = LY_TYPE_UNKNOWN;
Radek Krejcic5c27e52018-11-15 14:38:11 +01002884 struct lysc_type *base = NULL, *prev_type;
Radek Krejci19a96102018-11-15 13:38:09 +01002885 struct ly_set tpdf_chain = {0};
Radek Krejci01342af2019-01-03 15:18:08 +01002886 const char *dflt = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02002887 struct lys_module *dflt_mod = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +01002888
2889 (*type) = NULL;
2890
2891 tctx = calloc(1, sizeof *tctx);
2892 LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM);
Radek Krejcie86bf772018-12-14 11:39:53 +01002893 for (ret = lysp_type_find(type_p->name, context_node_p, ctx->mod_def->parsed,
Radek Krejci19a96102018-11-15 13:38:09 +01002894 &basetype, &tctx->tpdf, &tctx->node, &tctx->mod);
2895 ret == LY_SUCCESS;
2896 ret = lysp_type_find(tctx_prev->tpdf->type.name, tctx_prev->node, tctx_prev->mod,
2897 &basetype, &tctx->tpdf, &tctx->node, &tctx->mod)) {
2898 if (basetype) {
2899 break;
2900 }
2901
2902 /* check status */
Radek Krejcicdfecd92018-11-26 11:27:32 +01002903 ret = lysc_check_status(ctx, context_flags, context_mod, context_name,
2904 tctx->tpdf->flags, tctx->mod, tctx->node ? tctx->node->name : tctx->tpdf->name);
Radek Krejci19a96102018-11-15 13:38:09 +01002905 LY_CHECK_ERR_GOTO(ret, free(tctx), cleanup);
2906
Radek Krejcicdfecd92018-11-26 11:27:32 +01002907 if (units && !*units) {
2908 /* inherit units */
2909 DUP_STRING(ctx->ctx, tctx->tpdf->units, *units);
2910 }
Radek Krejci01342af2019-01-03 15:18:08 +01002911 if (!dflt) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002912 /* inherit default */
Radek Krejci01342af2019-01-03 15:18:08 +01002913 dflt = tctx->tpdf->dflt;
Radek Krejcia1911222019-07-22 17:24:50 +02002914 dflt_mod = tctx->mod->mod;
Radek Krejcicdfecd92018-11-26 11:27:32 +01002915 }
Radek Krejci01342af2019-01-03 15:18:08 +01002916 if (dummyloops && (!units || *units) && dflt) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002917 basetype = ((struct type_context*)tpdf_chain.objs[tpdf_chain.count - 1])->tpdf->type.compiled->basetype;
2918 break;
2919 }
2920
Radek Krejci19a96102018-11-15 13:38:09 +01002921 if (tctx->tpdf->type.compiled) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002922 /* it is not necessary to continue, the rest of the chain was already compiled,
2923 * but we still may need to inherit default and units values, so start dummy loops */
Radek Krejci19a96102018-11-15 13:38:09 +01002924 basetype = tctx->tpdf->type.compiled->basetype;
2925 ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST);
Radek Krejci01342af2019-01-03 15:18:08 +01002926 if ((units && !*units) || !dflt) {
Radek Krejcicdfecd92018-11-26 11:27:32 +01002927 dummyloops = 1;
2928 goto preparenext;
2929 } else {
2930 tctx = NULL;
2931 break;
2932 }
Radek Krejci19a96102018-11-15 13:38:09 +01002933 }
2934
Radek Krejci99b5b2a2019-04-30 16:57:04 +02002935 /* circular typedef reference detection */
2936 for (u = 0; u < tpdf_chain.count; u++) {
2937 /* local part */
2938 tctx_iter = (struct type_context*)tpdf_chain.objs[u];
2939 if (tctx_iter->mod == tctx->mod && tctx_iter->node == tctx->node && tctx_iter->tpdf == tctx->tpdf) {
2940 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
2941 "Invalid \"%s\" type reference - circular chain of types detected.", tctx->tpdf->name);
2942 free(tctx);
2943 ret = LY_EVALID;
2944 goto cleanup;
2945 }
2946 }
2947 for (u = 0; u < ctx->tpdf_chain.count; u++) {
2948 /* global part for unions corner case */
2949 tctx_iter = (struct type_context*)ctx->tpdf_chain.objs[u];
2950 if (tctx_iter->mod == tctx->mod && tctx_iter->node == tctx->node && tctx_iter->tpdf == tctx->tpdf) {
2951 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
2952 "Invalid \"%s\" type reference - circular chain of types detected.", tctx->tpdf->name);
2953 free(tctx);
2954 ret = LY_EVALID;
2955 goto cleanup;
2956 }
2957 }
2958
Radek Krejci19a96102018-11-15 13:38:09 +01002959 /* store information for the following processing */
2960 ly_set_add(&tpdf_chain, tctx, LY_SET_OPT_USEASLIST);
2961
Radek Krejcicdfecd92018-11-26 11:27:32 +01002962preparenext:
Radek Krejci19a96102018-11-15 13:38:09 +01002963 /* prepare next loop */
2964 tctx_prev = tctx;
2965 tctx = calloc(1, sizeof *tctx);
2966 LY_CHECK_ERR_RET(!tctx, LOGMEM(ctx->ctx), LY_EMEM);
2967 }
2968 free(tctx);
2969
2970 /* allocate type according to the basetype */
2971 switch (basetype) {
2972 case LY_TYPE_BINARY:
2973 *type = calloc(1, sizeof(struct lysc_type_bin));
Radek Krejci19a96102018-11-15 13:38:09 +01002974 break;
2975 case LY_TYPE_BITS:
2976 *type = calloc(1, sizeof(struct lysc_type_bits));
Radek Krejci19a96102018-11-15 13:38:09 +01002977 break;
2978 case LY_TYPE_BOOL:
2979 case LY_TYPE_EMPTY:
2980 *type = calloc(1, sizeof(struct lysc_type));
2981 break;
2982 case LY_TYPE_DEC64:
2983 *type = calloc(1, sizeof(struct lysc_type_dec));
2984 break;
2985 case LY_TYPE_ENUM:
2986 *type = calloc(1, sizeof(struct lysc_type_enum));
Radek Krejci19a96102018-11-15 13:38:09 +01002987 break;
2988 case LY_TYPE_IDENT:
2989 *type = calloc(1, sizeof(struct lysc_type_identityref));
2990 break;
2991 case LY_TYPE_INST:
2992 *type = calloc(1, sizeof(struct lysc_type_instanceid));
2993 break;
2994 case LY_TYPE_LEAFREF:
2995 *type = calloc(1, sizeof(struct lysc_type_leafref));
2996 break;
2997 case LY_TYPE_STRING:
2998 *type = calloc(1, sizeof(struct lysc_type_str));
Radek Krejci19a96102018-11-15 13:38:09 +01002999 break;
3000 case LY_TYPE_UNION:
3001 *type = calloc(1, sizeof(struct lysc_type_union));
3002 break;
3003 case LY_TYPE_INT8:
3004 case LY_TYPE_UINT8:
3005 case LY_TYPE_INT16:
3006 case LY_TYPE_UINT16:
3007 case LY_TYPE_INT32:
3008 case LY_TYPE_UINT32:
3009 case LY_TYPE_INT64:
3010 case LY_TYPE_UINT64:
3011 *type = calloc(1, sizeof(struct lysc_type_num));
Radek Krejci19a96102018-11-15 13:38:09 +01003012 break;
3013 case LY_TYPE_UNKNOWN:
3014 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3015 "Referenced type \"%s\" not found.", tctx_prev ? tctx_prev->tpdf->type.name : type_p->name);
3016 ret = LY_EVALID;
3017 goto cleanup;
3018 }
3019 LY_CHECK_ERR_GOTO(!(*type), LOGMEM(ctx->ctx), cleanup);
Radek Krejcicdfecd92018-11-26 11:27:32 +01003020 if (~type_substmt_map[basetype] & type_p->flags) {
Radek Krejci19a96102018-11-15 13:38:09 +01003021 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type restrictions for %s type.",
3022 ly_data_type2str[basetype]);
3023 free(*type);
3024 (*type) = NULL;
3025 ret = LY_EVALID;
3026 goto cleanup;
3027 }
3028
3029 /* get restrictions from the referred typedefs */
3030 for (u = tpdf_chain.count - 1; u + 1 > 0; --u) {
3031 tctx = (struct type_context*)tpdf_chain.objs[u];
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003032
3033 /* remember the typedef context for circular check */
3034 ly_set_add(&ctx->tpdf_chain, tctx, LY_SET_OPT_USEASLIST);
3035
Radek Krejci43699232018-11-23 14:59:46 +01003036 if (tctx->tpdf->type.compiled) {
Radek Krejci19a96102018-11-15 13:38:09 +01003037 base = tctx->tpdf->type.compiled;
3038 continue;
Radek Krejci43699232018-11-23 14:59:46 +01003039 } else if (basetype != LY_TYPE_LEAFREF && (u != tpdf_chain.count - 1) && !(tctx->tpdf->type.flags)) {
Radek Krejci19a96102018-11-15 13:38:09 +01003040 /* no change, just use the type information from the base */
3041 base = ((struct lysp_tpdf*)tctx->tpdf)->type.compiled = ((struct type_context*)tpdf_chain.objs[u + 1])->tpdf->type.compiled;
3042 ++base->refcount;
3043 continue;
3044 }
3045
3046 ++(*type)->refcount;
Radek Krejci43699232018-11-23 14:59:46 +01003047 if (~type_substmt_map[basetype] & tctx->tpdf->type.flags) {
3048 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid type \"%s\" restriction(s) for %s type.",
3049 tctx->tpdf->name, ly_data_type2str[basetype]);
3050 ret = LY_EVALID;
3051 goto cleanup;
3052 } else if (basetype == LY_TYPE_EMPTY && tctx->tpdf->dflt) {
3053 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3054 "Invalid type \"%s\" - \"empty\" type must not have a default value (%s).",
3055 tctx->tpdf->name, tctx->tpdf->dflt);
3056 ret = LY_EVALID;
3057 goto cleanup;
3058 }
3059
Radek Krejci19a96102018-11-15 13:38:09 +01003060 (*type)->basetype = basetype;
Radek Krejcie7b95092019-05-15 11:03:07 +02003061 /* TODO user type plugins */
3062 (*type)->plugin = &ly_builtin_type_plugins[basetype];
Radek Krejcic5c27e52018-11-15 14:38:11 +01003063 prev_type = *type;
Radek Krejcicdfecd92018-11-26 11:27:32 +01003064 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 +01003065 basetype & (LY_TYPE_LEAFREF | LY_TYPE_UNION) ? lysp_find_module(ctx->ctx, tctx->mod) : NULL,
Radek Krejciec4da802019-05-02 13:02:41 +02003066 basetype, tctx->tpdf->name, base, type);
Radek Krejcic5c27e52018-11-15 14:38:11 +01003067 LY_CHECK_GOTO(ret, cleanup);
3068 base = prev_type;
Radek Krejci19a96102018-11-15 13:38:09 +01003069 }
Radek Krejci99b5b2a2019-04-30 16:57:04 +02003070 /* remove the processed typedef contexts from the stack for circular check */
3071 ctx->tpdf_chain.count = ctx->tpdf_chain.count - tpdf_chain.count;
Radek Krejci19a96102018-11-15 13:38:09 +01003072
Radek Krejcic5c27e52018-11-15 14:38:11 +01003073 /* process the type definition in leaf */
Radek Krejcicdfecd92018-11-26 11:27:32 +01003074 if (type_p->flags || !base || basetype == LY_TYPE_LEAFREF) {
Radek Krejcia3045382018-11-22 14:30:31 +01003075 /* get restrictions from the node itself */
Radek Krejci19a96102018-11-15 13:38:09 +01003076 (*type)->basetype = basetype;
Radek Krejcie7b95092019-05-15 11:03:07 +02003077 /* TODO user type plugins */
3078 (*type)->plugin = &ly_builtin_type_plugins[basetype];
Radek Krejci19a96102018-11-15 13:38:09 +01003079 ++(*type)->refcount;
Radek Krejciec4da802019-05-02 13:02:41 +02003080 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 +01003081 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci90b148f2020-05-06 17:49:40 +02003082 } else if (basetype != LY_TYPE_BOOL && basetype != LY_TYPE_EMPTY) {
Radek Krejci19a96102018-11-15 13:38:09 +01003083 /* no specific restriction in leaf's type definition, copy from the base */
3084 free(*type);
3085 (*type) = base;
3086 ++(*type)->refcount;
Radek Krejci19a96102018-11-15 13:38:09 +01003087 }
Radek Krejcia1911222019-07-22 17:24:50 +02003088 if (dflt && !(*type)->dflt) {
3089 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003090 (*type)->dflt_mod = dflt_mod;
Radek Krejcia1911222019-07-22 17:24:50 +02003091 (*type)->dflt = calloc(1, sizeof *(*type)->dflt);
3092 (*type)->dflt->realtype = (*type);
3093 ret = (*type)->plugin->store(ctx->ctx, (*type), dflt, strlen(dflt),
3094 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003095 lys_resolve_prefix, (void*)(*type)->dflt_mod, LYD_XML, NULL, NULL, (*type)->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02003096 if (err) {
3097 ly_err_print(err);
3098 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3099 "Invalid type's default value \"%s\" which does not fit the type (%s).", dflt, err->msg);
3100 ly_err_free(err);
3101 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02003102 if (ret == LY_EINCOMPLETE) {
3103 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02003104 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, NULL, (*type)->dflt, (*type)->dflt_mod), cleanup);
Radek Krejci1c0c3442019-07-23 16:08:47 +02003105
3106 /* but in general result is so far ok */
3107 ret = LY_SUCCESS;
3108 }
Radek Krejcia1911222019-07-22 17:24:50 +02003109 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci01342af2019-01-03 15:18:08 +01003110 }
Radek Krejci19a96102018-11-15 13:38:09 +01003111
Radek Krejci0935f412019-08-20 16:15:18 +02003112 COMPILE_EXTS_GOTO(ctx, type_p->exts, (*type)->exts, (*type), LYEXT_PAR_TYPE, ret, cleanup);
Radek Krejci19a96102018-11-15 13:38:09 +01003113
3114cleanup:
3115 ly_set_erase(&tpdf_chain, free);
3116 return ret;
3117}
3118
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003119/**
3120 * @brief Compile status information of the given node.
3121 *
3122 * To simplify getting status of the node, the flags are set following inheritance rules, so all the nodes
3123 * has the status correctly set during the compilation.
3124 *
3125 * @param[in] ctx Compile context
3126 * @param[in,out] node_flags Flags of the compiled node which status is supposed to be resolved.
3127 * If the status was set explicitly on the node, it is already set in the flags value and we just check
3128 * the compatibility with the parent's status value.
3129 * @param[in] parent_flags Flags of the parent node to check/inherit the status value.
3130 * @return LY_ERR value.
3131 */
3132static LY_ERR
3133lys_compile_status(struct lysc_ctx *ctx, uint16_t *node_flags, uint16_t parent_flags)
3134{
3135 /* status - it is not inherited by specification, but it does not make sense to have
3136 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
3137 if (!((*node_flags) & LYS_STATUS_MASK)) {
3138 if (parent_flags & (LYS_STATUS_DEPRC | LYS_STATUS_OBSLT)) {
3139 if ((parent_flags & 0x3) != 0x3) {
3140 /* do not print the warning when inheriting status from uses - the uses_status value has a special
3141 * combination of bits (0x3) which marks the uses_status value */
3142 LOGWRN(ctx->ctx, "Missing explicit \"%s\" status that was already specified in parent, inheriting.",
3143 (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete");
3144 }
3145 (*node_flags) |= parent_flags & LYS_STATUS_MASK;
3146 } else {
3147 (*node_flags) |= LYS_STATUS_CURR;
3148 }
3149 } else if (parent_flags & LYS_STATUS_MASK) {
3150 /* check status compatibility with the parent */
3151 if ((parent_flags & LYS_STATUS_MASK) > ((*node_flags) & LYS_STATUS_MASK)) {
3152 if ((*node_flags) & LYS_STATUS_CURR) {
3153 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3154 "A \"current\" status is in conflict with the parent's \"%s\" status.",
3155 (parent_flags & LYS_STATUS_DEPRC) ? "deprecated" : "obsolete");
3156 } else { /* LYS_STATUS_DEPRC */
3157 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3158 "A \"deprecated\" status is in conflict with the parent's \"obsolete\" status.");
3159 }
3160 return LY_EVALID;
3161 }
3162 }
3163 return LY_SUCCESS;
3164}
3165
Radek Krejci8cce8532019-03-05 11:27:45 +01003166/**
3167 * @brief Check uniqness of the node/action/notification name.
3168 *
3169 * Data nodes, actions/RPCs and Notifications are stored separately (in distinguish lists) in the schema
3170 * structures, but they share the namespace so we need to check their name collisions.
3171 *
3172 * @param[in] ctx Compile context.
3173 * @param[in] children List (linked list) of data nodes to go through.
3174 * @param[in] actions List (sized array) of actions or RPCs to go through.
3175 * @param[in] notifs List (sized array) of Notifications to go through.
3176 * @param[in] name Name of the item to find in the given lists.
3177 * @param[in] exclude Pointer to an object to exclude from the name checking - for the case that the object
3178 * with the @p name being checked is already inserted into one of the list so we need to skip it when searching for duplicity.
3179 * @return LY_SUCCESS in case of unique name, LY_EEXIST otherwise.
3180 */
3181static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02003182lys_compile_node_uniqness(struct lysc_ctx *ctx, const struct lysc_node *children, const struct lysc_action *actions,
3183 const struct lysc_notif *notifs, const char *name, void *exclude)
Radek Krejci8cce8532019-03-05 11:27:45 +01003184{
3185 const struct lysc_node *iter;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003186 LY_ARRAY_COUNT_TYPE u;
Radek Krejci8cce8532019-03-05 11:27:45 +01003187
3188 LY_LIST_FOR(children, iter) {
3189 if (iter != exclude && iter->module == ctx->mod && !strcmp(name, iter->name)) {
3190 goto error;
3191 }
3192 }
3193 LY_ARRAY_FOR(actions, u) {
3194 if (&actions[u] != exclude && actions[u].module == ctx->mod && !strcmp(name, actions[u].name)) {
3195 goto error;
3196 }
3197 }
3198 LY_ARRAY_FOR(notifs, u) {
3199 if (&notifs[u] != exclude && notifs[u].module == ctx->mod && !strcmp(name, notifs[u].name)) {
3200 goto error;
3201 }
3202 }
3203 return LY_SUCCESS;
3204error:
Michal Vaskoa3881362020-01-21 15:57:35 +01003205 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, name, "data definition/RPC/action/notification");
Radek Krejci8cce8532019-03-05 11:27:45 +01003206 return LY_EEXIST;
3207}
3208
Radek Krejciec4da802019-05-02 13:02:41 +02003209static 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 +01003210
Radek Krejcia3045382018-11-22 14:30:31 +01003211/**
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003212 * @brief Compile parsed RPC/action schema node information.
3213 * @param[in] ctx Compile context
Radek Krejci43981a32019-04-12 09:44:11 +02003214 * @param[in] action_p Parsed RPC/action schema node.
Radek Krejci43981a32019-04-12 09:44:11 +02003215 * @param[in] parent Parent node of the action, NULL in case of RPC (top-level action)
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003216 * @param[in,out] action Prepared (empty) compiled action structure to fill.
3217 * @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).
3218 * Zero means no uses, non-zero value with no status bit set mean the default status.
3219 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3220 */
3221static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003222lys_compile_action(struct lysc_ctx *ctx, struct lysp_action *action_p,
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003223 struct lysc_node *parent, struct lysc_action *action, uint16_t uses_status)
3224{
3225 LY_ERR ret = LY_SUCCESS;
3226 struct lysp_node *child_p;
3227 unsigned int u;
Radek Krejciec4da802019-05-02 13:02:41 +02003228 int opt_prev = ctx->options;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003229
Radek Krejci327de162019-06-14 12:52:07 +02003230 lysc_update_path(ctx, parent, action_p->name);
3231
Radek Krejci8cce8532019-03-05 11:27:45 +01003232 if (lys_compile_node_uniqness(ctx, parent ? lysc_node_children(parent, 0) : ctx->mod->compiled->data,
3233 parent ? lysc_node_actions(parent) : ctx->mod->compiled->rpcs,
3234 parent ? lysc_node_notifs(parent) : ctx->mod->compiled->notifs,
3235 action_p->name, action)) {
3236 return LY_EVALID;
3237 }
3238
Radek Krejciec4da802019-05-02 13:02:41 +02003239 if (ctx->options & (LYSC_OPT_RPC_MASK | LYSC_OPT_NOTIFICATION)) {
Radek Krejci05b774b2019-02-25 13:26:18 +01003240 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejcifc11bd72019-04-11 16:00:05 +02003241 "Action \"%s\" is placed inside %s.", action_p->name,
Michal Vaskoa3881362020-01-21 15:57:35 +01003242 ctx->options & LYSC_OPT_RPC_MASK ? "another RPC/action" : "notification");
Radek Krejci05b774b2019-02-25 13:26:18 +01003243 return LY_EVALID;
3244 }
3245
Michal Vasko1bf09392020-03-27 12:38:10 +01003246 action->nodetype = parent ? LYS_ACTION : LYS_RPC;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003247 action->module = ctx->mod;
3248 action->parent = parent;
Radek Krejciec4da802019-05-02 13:02:41 +02003249 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003250 action->sp = action_p;
3251 }
3252 action->flags = action_p->flags & LYS_FLAGS_COMPILED_MASK;
3253
3254 /* status - it is not inherited by specification, but it does not make sense to have
3255 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
Michal Vaskocc048b22020-03-27 15:52:38 +01003256 LY_CHECK_RET(lys_compile_status(ctx, &action->flags, uses_status ? uses_status : (parent ? parent->flags : 0)));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003257
3258 DUP_STRING(ctx->ctx, action_p->name, action->name);
3259 DUP_STRING(ctx->ctx, action_p->dsc, action->dsc);
3260 DUP_STRING(ctx->ctx, action_p->ref, action->ref);
Radek Krejciec4da802019-05-02 13:02:41 +02003261 COMPILE_ARRAY_GOTO(ctx, action_p->iffeatures, action->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejci0935f412019-08-20 16:15:18 +02003262 COMPILE_EXTS_GOTO(ctx, action_p->exts, action->exts, action, LYEXT_PAR_NODE, ret, cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003263
3264 /* input */
Radek Krejci327de162019-06-14 12:52:07 +02003265 lysc_update_path(ctx, (struct lysc_node*)action, "input");
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003266 COMPILE_ARRAY_GOTO(ctx, action_p->input.musts, action->input.musts, u, lys_compile_must, ret, cleanup);
Radek Krejci0935f412019-08-20 16:15:18 +02003267 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 +02003268 ctx->options |= LYSC_OPT_RPC_INPUT;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003269 LY_LIST_FOR(action_p->input.data, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003270 LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node*)action, uses_status));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003271 }
Radek Krejci327de162019-06-14 12:52:07 +02003272 lysc_update_path(ctx, NULL, NULL);
Radek Krejciec4da802019-05-02 13:02:41 +02003273 ctx->options = opt_prev;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003274
3275 /* output */
Radek Krejci327de162019-06-14 12:52:07 +02003276 lysc_update_path(ctx, (struct lysc_node*)action, "output");
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003277 COMPILE_ARRAY_GOTO(ctx, action_p->output.musts, action->output.musts, u, lys_compile_must, ret, cleanup);
Radek Krejci0935f412019-08-20 16:15:18 +02003278 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 +02003279 ctx->options |= LYSC_OPT_RPC_OUTPUT;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003280 LY_LIST_FOR(action_p->output.data, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003281 LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node*)action, uses_status));
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003282 }
Radek Krejci327de162019-06-14 12:52:07 +02003283 lysc_update_path(ctx, NULL, NULL);
Radek Krejci327de162019-06-14 12:52:07 +02003284 lysc_update_path(ctx, NULL, NULL);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003285
3286 if ((action_p->input.musts || action_p->output.musts) && !(ctx->options & LYSC_OPT_GROUPING)) {
3287 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003288 ly_set_add(&ctx->xpath, action, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003289 }
3290
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003291cleanup:
Radek Krejciec4da802019-05-02 13:02:41 +02003292 ctx->options = opt_prev;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003293 return ret;
3294}
3295
3296/**
Radek Krejci43981a32019-04-12 09:44:11 +02003297 * @brief Compile parsed Notification schema node information.
Radek Krejcifc11bd72019-04-11 16:00:05 +02003298 * @param[in] ctx Compile context
Radek Krejci43981a32019-04-12 09:44:11 +02003299 * @param[in] notif_p Parsed Notification schema node.
Radek Krejci43981a32019-04-12 09:44:11 +02003300 * @param[in] parent Parent node of the Notification, NULL in case of top-level Notification
3301 * @param[in,out] notif Prepared (empty) compiled notification structure to fill.
3302 * @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 +02003303 * Zero means no uses, non-zero value with no status bit set mean the default status.
3304 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3305 */
3306static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003307lys_compile_notif(struct lysc_ctx *ctx, struct lysp_notif *notif_p,
Radek Krejcifc11bd72019-04-11 16:00:05 +02003308 struct lysc_node *parent, struct lysc_notif *notif, uint16_t uses_status)
3309{
3310 LY_ERR ret = LY_SUCCESS;
3311 struct lysp_node *child_p;
3312 unsigned int u;
Radek Krejciec4da802019-05-02 13:02:41 +02003313 int opt_prev = ctx->options;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003314
Radek Krejci327de162019-06-14 12:52:07 +02003315 lysc_update_path(ctx, parent, notif_p->name);
3316
Radek Krejcifc11bd72019-04-11 16:00:05 +02003317 if (lys_compile_node_uniqness(ctx, parent ? lysc_node_children(parent, 0) : ctx->mod->compiled->data,
3318 parent ? lysc_node_actions(parent) : ctx->mod->compiled->rpcs,
3319 parent ? lysc_node_notifs(parent) : ctx->mod->compiled->notifs,
3320 notif_p->name, notif)) {
3321 return LY_EVALID;
3322 }
3323
Radek Krejciec4da802019-05-02 13:02:41 +02003324 if (ctx->options & (LYSC_OPT_RPC_MASK | LYSC_OPT_NOTIFICATION)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02003325 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3326 "Notification \"%s\" is placed inside %s.", notif_p->name,
Michal Vaskoa3881362020-01-21 15:57:35 +01003327 ctx->options & LYSC_OPT_RPC_MASK ? "RPC/action" : "another notification");
Radek Krejcifc11bd72019-04-11 16:00:05 +02003328 return LY_EVALID;
3329 }
3330
3331 notif->nodetype = LYS_NOTIF;
3332 notif->module = ctx->mod;
3333 notif->parent = parent;
Radek Krejciec4da802019-05-02 13:02:41 +02003334 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02003335 notif->sp = notif_p;
3336 }
3337 notif->flags = notif_p->flags & LYS_FLAGS_COMPILED_MASK;
3338
3339 /* status - it is not inherited by specification, but it does not make sense to have
3340 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
3341 LY_CHECK_RET(lys_compile_status(ctx, &notif->flags, uses_status ? uses_status : (parent ? parent->flags : 0)));
3342
3343 DUP_STRING(ctx->ctx, notif_p->name, notif->name);
3344 DUP_STRING(ctx->ctx, notif_p->dsc, notif->dsc);
3345 DUP_STRING(ctx->ctx, notif_p->ref, notif->ref);
Radek Krejciec4da802019-05-02 13:02:41 +02003346 COMPILE_ARRAY_GOTO(ctx, notif_p->iffeatures, notif->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003347 COMPILE_ARRAY_GOTO(ctx, notif_p->musts, notif->musts, u, lys_compile_must, ret, cleanup);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003348 if (notif_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3349 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003350 ly_set_add(&ctx->xpath, notif, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003351 }
Radek Krejci0935f412019-08-20 16:15:18 +02003352 COMPILE_EXTS_GOTO(ctx, notif_p->exts, notif->exts, notif, LYEXT_PAR_NODE, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02003353
Radek Krejciec4da802019-05-02 13:02:41 +02003354 ctx->options |= LYSC_OPT_NOTIFICATION;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003355 LY_LIST_FOR(notif_p->data, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003356 LY_CHECK_RET(lys_compile_node(ctx, child_p, (struct lysc_node*)notif, uses_status));
Radek Krejcifc11bd72019-04-11 16:00:05 +02003357 }
3358
Radek Krejci327de162019-06-14 12:52:07 +02003359 lysc_update_path(ctx, NULL, NULL);
Radek Krejcifc11bd72019-04-11 16:00:05 +02003360cleanup:
Radek Krejciec4da802019-05-02 13:02:41 +02003361 ctx->options = opt_prev;
Radek Krejcifc11bd72019-04-11 16:00:05 +02003362 return ret;
3363}
3364
3365/**
Radek Krejcia3045382018-11-22 14:30:31 +01003366 * @brief Compile parsed container node information.
3367 * @param[in] ctx Compile context
3368 * @param[in] node_p Parsed container node.
Radek Krejcia3045382018-11-22 14:30:31 +01003369 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3370 * is enriched with the container-specific information.
3371 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3372 */
Radek Krejci19a96102018-11-15 13:38:09 +01003373static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003374lys_compile_node_container(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci19a96102018-11-15 13:38:09 +01003375{
3376 struct lysp_node_container *cont_p = (struct lysp_node_container*)node_p;
3377 struct lysc_node_container *cont = (struct lysc_node_container*)node;
3378 struct lysp_node *child_p;
Michal Vaskoba417ac2020-08-06 14:48:20 +02003379 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01003380 LY_ERR ret = LY_SUCCESS;
3381
Radek Krejcife909632019-02-12 15:34:42 +01003382 if (cont_p->presence) {
Michal Vaskoba417ac2020-08-06 14:48:20 +02003383 /* explicit presence */
Radek Krejcife909632019-02-12 15:34:42 +01003384 cont->flags |= LYS_PRESENCE;
Michal Vaskoba417ac2020-08-06 14:48:20 +02003385 } else if (cont_p->musts) {
3386 /* container with a must condition */
Radek Krejci175f25b2020-08-13 12:02:36 +02003387 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"must\" condition.", cont_p->name);
3388 cont->flags |= LYS_PRESENCE;
3389 } else if (cont_p->when) {
3390 /* container with a when condition */
3391 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning from its \"when\" condition.", cont_p->name);
Michal Vaskoba417ac2020-08-06 14:48:20 +02003392 cont->flags |= LYS_PRESENCE;
3393 } else if (cont_p->parent) {
3394 if (cont_p->parent->nodetype == LYS_CHOICE) {
3395 /* container is an implicit case, so its existence decides the existence of the whole case */
Radek Krejci175f25b2020-08-13 12:02:36 +02003396 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning as a case of choice \"%s\".",
Michal Vaskoba417ac2020-08-06 14:48:20 +02003397 cont_p->name, cont_p->parent->name);
3398 cont->flags |= LYS_PRESENCE;
3399 } else if ((cont_p->parent->nodetype == LYS_CASE)
3400 && (((struct lysp_node_case *)cont_p->parent)->child == node_p) && !cont_p->next) {
3401 /* container is the only node in a case, so its existence decides the existence of the whole case */
Radek Krejci175f25b2020-08-13 12:02:36 +02003402 LOGWRN(ctx->ctx, "Container \"%s\" changed to presence because it has a meaning as a case of choice \"%s\".",
Michal Vaskoba417ac2020-08-06 14:48:20 +02003403 cont_p->name, cont_p->parent->name);
3404 cont->flags |= LYS_PRESENCE;
3405 }
Radek Krejcife909632019-02-12 15:34:42 +01003406 }
3407
Michal Vaskoba417ac2020-08-06 14:48:20 +02003408 /* more cases when the container has meaning but is kept NP for convenience:
3409 * - when condition
3410 * - direct child action/notification
3411 */
3412
Radek Krejci19a96102018-11-15 13:38:09 +01003413 LY_LIST_FOR(cont_p->child, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003414 LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0));
Radek Krejci19a96102018-11-15 13:38:09 +01003415 }
3416
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003417 COMPILE_ARRAY_GOTO(ctx, cont_p->musts, cont->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003418 if (cont_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3419 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003420 ly_set_add(&ctx->xpath, cont, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003421 }
Radek Krejciec4da802019-05-02 13:02:41 +02003422 COMPILE_ARRAY1_GOTO(ctx, cont_p->actions, cont->actions, node, u, lys_compile_action, 0, ret, done);
3423 COMPILE_ARRAY1_GOTO(ctx, cont_p->notifs, cont->notifs, node, u, lys_compile_notif, 0, ret, done);
Radek Krejci19a96102018-11-15 13:38:09 +01003424
3425done:
3426 return ret;
3427}
3428
Radek Krejci33f72892019-02-21 10:36:58 +01003429/*
3430 * @brief Compile type in leaf/leaf-list node and do all the necessary checks.
3431 * @param[in] ctx Compile context.
3432 * @param[in] context_node Schema node where the type/typedef is placed to correctly find the base types.
3433 * @param[in] type_p Parsed type to compile.
Radek Krejci33f72892019-02-21 10:36:58 +01003434 * @param[in,out] leaf Compiled leaf structure (possibly cast leaf-list) to provide node information and to store the compiled type information.
3435 * @return LY_ERR value.
3436 */
3437static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003438lys_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 +01003439{
Radek Krejci33f72892019-02-21 10:36:58 +01003440 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)leaf;
3441
Radek Krejciec4da802019-05-02 13:02:41 +02003442 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 +01003443 leaf->units ? NULL : &leaf->units));
3444 if (leaf->nodetype == LYS_LEAFLIST) {
3445 if (llist->type->dflt && !llist->dflts && !llist->min) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003446 LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts_mods, 1, LY_EMEM);
3447 llist->dflts_mods[0] = llist->type->dflt_mod;
Radek Krejci33f72892019-02-21 10:36:58 +01003448 LY_ARRAY_CREATE_RET(ctx->ctx, llist->dflts, 1, LY_EMEM);
Radek Krejcia1911222019-07-22 17:24:50 +02003449 llist->dflts[0] = calloc(1, sizeof *llist->dflts[0]);
3450 llist->dflts[0]->realtype = llist->type->dflt->realtype;
3451 llist->dflts[0]->realtype->plugin->duplicate(ctx->ctx, llist->type->dflt, llist->dflts[0]);
3452 llist->dflts[0]->realtype->refcount++;
Radek Krejci33f72892019-02-21 10:36:58 +01003453 LY_ARRAY_INCREMENT(llist->dflts);
3454 }
3455 } else {
3456 if (leaf->type->dflt && !leaf->dflt && !(leaf->flags & LYS_MAND_TRUE)) {
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003457 leaf->dflt_mod = leaf->type->dflt_mod;
Radek Krejcia1911222019-07-22 17:24:50 +02003458 leaf->dflt = calloc(1, sizeof *leaf->dflt);
3459 leaf->dflt->realtype = leaf->type->dflt->realtype;
3460 leaf->dflt->realtype->plugin->duplicate(ctx->ctx, leaf->type->dflt, leaf->dflt);
3461 leaf->dflt->realtype->refcount++;
Radek Krejci33f72892019-02-21 10:36:58 +01003462 }
3463 }
3464 if (leaf->type->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 } else if (leaf->type->basetype == LY_TYPE_UNION) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003468 LY_ARRAY_COUNT_TYPE u;
Radek Krejci33f72892019-02-21 10:36:58 +01003469 LY_ARRAY_FOR(((struct lysc_type_union*)leaf->type)->types, u) {
3470 if (((struct lysc_type_union*)leaf->type)->types[u]->basetype == LY_TYPE_LEAFREF) {
3471 /* 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 +02003472 ly_set_add(&ctx->leafrefs, leaf, 0);
Radek Krejci33f72892019-02-21 10:36:58 +01003473 }
3474 }
3475 } else if (leaf->type->basetype == LY_TYPE_EMPTY) {
Radek Krejci33f72892019-02-21 10:36:58 +01003476 if (leaf->nodetype == LYS_LEAFLIST && ctx->mod_def->version < LYS_VERSION_1_1) {
3477 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3478 "Leaf-list of type \"empty\" is allowed only in YANG 1.1 modules.");
3479 return LY_EVALID;
3480 }
3481 }
3482
Radek Krejci33f72892019-02-21 10:36:58 +01003483 return LY_SUCCESS;
3484}
3485
Radek Krejcia3045382018-11-22 14:30:31 +01003486/**
3487 * @brief Compile parsed leaf node information.
3488 * @param[in] ctx Compile context
3489 * @param[in] node_p Parsed leaf node.
Radek Krejcia3045382018-11-22 14:30:31 +01003490 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3491 * is enriched with the leaf-specific information.
3492 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3493 */
Radek Krejci19a96102018-11-15 13:38:09 +01003494static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003495lys_compile_node_leaf(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci19a96102018-11-15 13:38:09 +01003496{
3497 struct lysp_node_leaf *leaf_p = (struct lysp_node_leaf*)node_p;
3498 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
Michal Vasko7c8439f2020-08-05 13:25:19 +02003499 LY_ARRAY_COUNT_TYPE u;
Radek Krejci19a96102018-11-15 13:38:09 +01003500 LY_ERR ret = LY_SUCCESS;
3501
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003502 COMPILE_ARRAY_GOTO(ctx, leaf_p->musts, leaf->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003503 if (leaf_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3504 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003505 ly_set_add(&ctx->xpath, leaf, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003506 }
Radek Krejciccd20f12019-02-15 14:12:27 +01003507 if (leaf_p->units) {
3508 leaf->units = lydict_insert(ctx->ctx, leaf_p->units, 0);
3509 leaf->flags |= LYS_SET_UNITS;
3510 }
Radek Krejcia1911222019-07-22 17:24:50 +02003511
3512 /* the dflt member is just filled to avoid getting the default value from the type */
3513 leaf->dflt = (void*)leaf_p->dflt;
3514 ret = lys_compile_node_type(ctx, node_p, &leaf_p->type, leaf);
Radek Krejci812a5bf2019-09-09 09:18:05 +02003515 if (ret) {
3516 leaf->dflt = NULL;
3517 return ret;
3518 }
Radek Krejcia1911222019-07-22 17:24:50 +02003519
Radek Krejciccd20f12019-02-15 14:12:27 +01003520 if (leaf_p->dflt) {
Radek Krejcia1911222019-07-22 17:24:50 +02003521 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003522 leaf->dflt_mod = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02003523 leaf->dflt = calloc(1, sizeof *leaf->dflt);
3524 leaf->dflt->realtype = leaf->type;
3525 ret = leaf->type->plugin->store(ctx->ctx, leaf->type, leaf_p->dflt, strlen(leaf_p->dflt),
3526 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02003527 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, node, NULL, leaf->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02003528 leaf->dflt->realtype->refcount++;
3529 if (err) {
3530 ly_err_print(err);
3531 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3532 "Invalid leaf's default value \"%s\" which does not fit the type (%s).", leaf_p->dflt, err->msg);
3533 ly_err_free(err);
3534 }
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003535 if (ret == LY_EINCOMPLETE) {
Radek Krejci1c0c3442019-07-23 16:08:47 +02003536 /* postpone default compilation when the tree is complete */
Radek Krejcib5bc93e2019-09-09 09:11:23 +02003537 LY_CHECK_RET(lysc_incomplete_dflts_add(ctx, node, leaf->dflt, leaf->dflt_mod));
Radek Krejci1c0c3442019-07-23 16:08:47 +02003538
3539 /* but in general result is so far ok */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003540 ret = LY_SUCCESS;
3541 }
Radek Krejcib5bc93e2019-09-09 09:11:23 +02003542 LY_CHECK_RET(ret);
Radek Krejci76b3e962018-12-14 17:01:25 +01003543 leaf->flags |= LYS_SET_DFLT;
3544 }
Radek Krejci43699232018-11-23 14:59:46 +01003545
Radek Krejcib1a5dcc2018-11-26 14:50:05 +01003546
Radek Krejci19a96102018-11-15 13:38:09 +01003547done:
3548 return ret;
3549}
3550
Radek Krejcia3045382018-11-22 14:30:31 +01003551/**
Radek Krejci0e5d8382018-11-28 16:37:53 +01003552 * @brief Compile parsed leaf-list node information.
3553 * @param[in] ctx Compile context
3554 * @param[in] node_p Parsed leaf-list node.
Radek Krejci0e5d8382018-11-28 16:37:53 +01003555 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3556 * is enriched with the leaf-list-specific information.
3557 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3558 */
3559static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003560lys_compile_node_leaflist(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci0e5d8382018-11-28 16:37:53 +01003561{
3562 struct lysp_node_leaflist *llist_p = (struct lysp_node_leaflist*)node_p;
3563 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)node;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003564 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003565 LY_ERR ret = LY_SUCCESS;
3566
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003567 COMPILE_ARRAY_GOTO(ctx, llist_p->musts, llist->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003568 if (llist_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3569 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003570 ly_set_add(&ctx->xpath, llist, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003571 }
Radek Krejciccd20f12019-02-15 14:12:27 +01003572 if (llist_p->units) {
3573 llist->units = lydict_insert(ctx->ctx, llist_p->units, 0);
3574 llist->flags |= LYS_SET_UNITS;
3575 }
Radek Krejci0e5d8382018-11-28 16:37:53 +01003576
Radek Krejcia1911222019-07-22 17:24:50 +02003577 /* the dflts member is just filled to avoid getting the default value from the type */
3578 llist->dflts = (void*)llist_p->dflts;
3579 ret = lys_compile_node_type(ctx, node_p, &llist_p->type, (struct lysc_node_leaf*)llist);
Michal Vasko6a044b22020-01-15 12:25:39 +01003580 if (ret != LY_SUCCESS) {
3581 /* make sure the defaults are freed correctly */
3582 if (llist_p->dflts) {
3583 llist->dflts = NULL;
3584 }
3585 return ret;
3586 }
3587
Radek Krejci0e5d8382018-11-28 16:37:53 +01003588 if (llist_p->dflts) {
Radek Krejcia1911222019-07-22 17:24:50 +02003589 llist->dflts = NULL; /* reset the temporary llist_p->dflts */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003590 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts_mods, LY_ARRAY_COUNT(llist_p->dflts), ret, done);
3591 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_COUNT(llist_p->dflts), ret, done);
Radek Krejci0e5d8382018-11-28 16:37:53 +01003592 LY_ARRAY_FOR(llist_p->dflts, u) {
Radek Krejcia1911222019-07-22 17:24:50 +02003593 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003594 LY_ARRAY_INCREMENT(llist->dflts_mods);
3595 llist->dflts_mods[u] = ctx->mod_def;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003596 LY_ARRAY_INCREMENT(llist->dflts);
Radek Krejcia1911222019-07-22 17:24:50 +02003597 llist->dflts[u] = calloc(1, sizeof *llist->dflts[u]);
3598 llist->dflts[u]->realtype = llist->type;
3599 ret = llist->type->plugin->store(ctx->ctx, llist->type, llist_p->dflts[u], strlen(llist_p->dflts[u]),
3600 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02003601 lys_resolve_prefix, (void*)llist->dflts_mods[u], LYD_XML, node, NULL, llist->dflts[u], NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02003602 llist->dflts[u]->realtype->refcount++;
3603 if (err) {
3604 ly_err_print(err);
3605 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3606 "Invalid leaf-lists's default value \"%s\" which does not fit the type (%s).", llist_p->dflts[u], err->msg);
3607 ly_err_free(err);
3608 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02003609 if (ret == LY_EINCOMPLETE) {
3610 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02003611 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, node, llist->dflts[u], llist->dflts_mods[u]), done);
Radek Krejci1c0c3442019-07-23 16:08:47 +02003612
3613 /* but in general result is so far ok */
3614 ret = LY_SUCCESS;
3615 }
Radek Krejcia1911222019-07-22 17:24:50 +02003616 LY_CHECK_GOTO(ret, done);
Radek Krejci0e5d8382018-11-28 16:37:53 +01003617 }
Radek Krejciccd20f12019-02-15 14:12:27 +01003618 llist->flags |= LYS_SET_DFLT;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003619 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003620 if ((llist->flags & LYS_CONFIG_W) && llist->dflts && LY_ARRAY_COUNT(llist->dflts)) {
Radek Krejcia1911222019-07-22 17:24:50 +02003621 /* configuration data values must be unique - so check the default values */
3622 LY_ARRAY_FOR(llist->dflts, u) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003623 for (v = u + 1; v < LY_ARRAY_COUNT(llist->dflts); ++v) {
Radek Krejcia1911222019-07-22 17:24:50 +02003624 if (!llist->type->plugin->compare(llist->dflts[u], llist->dflts[v])) {
3625 int dynamic = 0;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02003626 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 +02003627 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3628 "Configuration leaf-list has multiple defaults of the same value \"%s\".", val);
3629 if (dynamic) {
3630 free((char*)val);
3631 }
3632 return LY_EVALID;
3633 }
3634 }
3635 }
3636 }
3637
3638 /* 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 +01003639
3640 llist->min = llist_p->min;
Radek Krejcife909632019-02-12 15:34:42 +01003641 if (llist->min) {
3642 llist->flags |= LYS_MAND_TRUE;
3643 }
Radek Krejcib7408632018-11-28 17:12:11 +01003644 llist->max = llist_p->max ? llist_p->max : (uint32_t)-1;
Radek Krejci0e5d8382018-11-28 16:37:53 +01003645
Radek Krejci0e5d8382018-11-28 16:37:53 +01003646done:
3647 return ret;
3648}
3649
3650/**
Radek Krejci7af64242019-02-18 13:07:53 +01003651 * @brief Compile information about list's uniques.
3652 * @param[in] ctx Compile context.
3653 * @param[in] context_module Module where the prefixes are going to be resolved.
3654 * @param[in] uniques Sized array list of unique statements.
3655 * @param[in] list Compiled list where the uniques are supposed to be resolved and stored.
3656 * @return LY_ERR value.
3657 */
3658static LY_ERR
3659lys_compile_node_list_unique(struct lysc_ctx *ctx, struct lys_module *context_module, const char **uniques, struct lysc_node_list *list)
3660{
3661 LY_ERR ret = LY_SUCCESS;
3662 struct lysc_node_leaf **key, ***unique;
Michal Vasko14654712020-02-06 08:35:21 +01003663 struct lysc_node *parent;
Radek Krejci7af64242019-02-18 13:07:53 +01003664 const char *keystr, *delim;
3665 size_t len;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003666 LY_ARRAY_COUNT_TYPE v;
Radek Krejci7af64242019-02-18 13:07:53 +01003667 int config;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003668 uint16_t flags;
Radek Krejci7af64242019-02-18 13:07:53 +01003669
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003670 for (v = 0; v < LY_ARRAY_COUNT(uniques); ++v) {
Radek Krejci7af64242019-02-18 13:07:53 +01003671 config = -1;
3672 LY_ARRAY_NEW_RET(ctx->ctx, list->uniques, unique, LY_EMEM);
3673 keystr = uniques[v];
3674 while (keystr) {
3675 delim = strpbrk(keystr, " \t\n");
3676 if (delim) {
3677 len = delim - keystr;
3678 while (isspace(*delim)) {
3679 ++delim;
3680 }
3681 } else {
3682 len = strlen(keystr);
3683 }
3684
3685 /* unique node must be present */
3686 LY_ARRAY_NEW_RET(ctx->ctx, *unique, key, LY_EMEM);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003687 ret = lys_resolve_schema_nodeid(ctx, keystr, len, (struct lysc_node*)list, context_module, LYS_LEAF, 0,
3688 (const struct lysc_node**)key, &flags);
Radek Krejci7af64242019-02-18 13:07:53 +01003689 if (ret != LY_SUCCESS) {
3690 if (ret == LY_EDENIED) {
3691 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003692 "Unique's descendant-schema-nodeid \"%.*s\" refers to %s node instead of a leaf.",
Radek Krejci7af64242019-02-18 13:07:53 +01003693 len, keystr, lys_nodetype2str((*key)->nodetype));
3694 }
3695 return LY_EVALID;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003696 } else if (flags) {
3697 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3698 "Unique's descendant-schema-nodeid \"%.*s\" refers into %s node.",
Michal Vaskoa3881362020-01-21 15:57:35 +01003699 len, keystr, flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action");
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003700 return LY_EVALID;
Radek Krejci7af64242019-02-18 13:07:53 +01003701 }
3702
Radek Krejci6eeb58f2019-02-22 16:29:37 +01003703
Radek Krejci7af64242019-02-18 13:07:53 +01003704 /* all referenced leafs must be of the same config type */
3705 if (config != -1 && ((((*key)->flags & LYS_CONFIG_W) && config == 0) || (((*key)->flags & LYS_CONFIG_R) && config == 1))) {
3706 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vasko14654712020-02-06 08:35:21 +01003707 "Unique statement \"%s\" refers to leaves with different config type.", uniques[v]);
Radek Krejci7af64242019-02-18 13:07:53 +01003708 return LY_EVALID;
3709 } else if ((*key)->flags & LYS_CONFIG_W) {
3710 config = 1;
3711 } else { /* LYS_CONFIG_R */
3712 config = 0;
3713 }
3714
Michal Vasko14654712020-02-06 08:35:21 +01003715 /* we forbid referencing nested lists because it is unspecified what instance of such a list to use */
3716 for (parent = (*key)->parent; parent != (struct lysc_node *)list; parent = parent->parent) {
3717 if (parent->nodetype == LYS_LIST) {
3718 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3719 "Unique statement \"%s\" refers to a leaf in nested list \"%s\".", uniques[v], parent->name);
3720 return LY_EVALID;
3721 }
3722 }
3723
Radek Krejci7af64242019-02-18 13:07:53 +01003724 /* check status */
3725 LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name,
3726 (*key)->flags, (*key)->module, (*key)->name));
3727
3728 /* mark leaf as unique */
3729 (*key)->flags |= LYS_UNIQUE;
3730
3731 /* next unique value in line */
3732 keystr = delim;
3733 }
3734 /* next unique definition */
3735 }
3736
3737 return LY_SUCCESS;
3738}
3739
3740/**
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003741 * @brief Compile parsed list node information.
3742 * @param[in] ctx Compile context
3743 * @param[in] node_p Parsed list node.
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003744 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
3745 * is enriched with the list-specific information.
3746 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
3747 */
3748static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02003749lys_compile_node_list(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003750{
3751 struct lysp_node_list *list_p = (struct lysp_node_list*)node_p;
3752 struct lysc_node_list *list = (struct lysc_node_list*)node;
3753 struct lysp_node *child_p;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003754 struct lysc_node_leaf *key, *prev_key = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003755 size_t len;
Radek Krejci7af64242019-02-18 13:07:53 +01003756 unsigned int u;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003757 const char *keystr, *delim;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003758 LY_ERR ret = LY_SUCCESS;
3759
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003760 list->min = list_p->min;
Radek Krejcife909632019-02-12 15:34:42 +01003761 if (list->min) {
3762 list->flags |= LYS_MAND_TRUE;
3763 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003764 list->max = list_p->max ? list_p->max : (uint32_t)-1;
3765
3766 LY_LIST_FOR(list_p->child, child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02003767 LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003768 }
3769
Radek Krejcic71ac5b2019-09-10 15:34:22 +02003770 COMPILE_ARRAY_GOTO(ctx, list_p->musts, list->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003771 if (list_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
3772 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02003773 ly_set_add(&ctx->xpath, list, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01003774 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003775
3776 /* keys */
3777 if ((list->flags & LYS_CONFIG_W) && (!list_p->key || !list_p->key[0])) {
3778 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Missing key in list representing configuration data.");
3779 return LY_EVALID;
3780 }
3781
3782 /* find all the keys (must be direct children) */
3783 keystr = list_p->key;
Radek Krejci0fe9b512019-07-26 17:51:05 +02003784 if (!keystr) {
3785 /* keyless list */
3786 list->flags |= LYS_KEYLESS;
3787 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003788 while (keystr) {
3789 delim = strpbrk(keystr, " \t\n");
3790 if (delim) {
3791 len = delim - keystr;
3792 while (isspace(*delim)) {
3793 ++delim;
3794 }
3795 } else {
3796 len = strlen(keystr);
3797 }
3798
3799 /* key node must be present */
Michal Vaskoe444f752020-02-10 12:20:06 +01003800 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 +02003801 if (!(key)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003802 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3803 "The list's key \"%.*s\" not found.", len, keystr);
3804 return LY_EVALID;
3805 }
3806 /* keys must be unique */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003807 if (key->flags & LYS_KEY) {
3808 /* the node was already marked as a key */
3809 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3810 "Duplicated key identifier \"%.*s\".", len, keystr);
3811 return LY_EVALID;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003812 }
Radek Krejci0fe9b512019-07-26 17:51:05 +02003813
3814 lysc_update_path(ctx, (struct lysc_node*)list, key->name);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003815 /* key must have the same config flag as the list itself */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003816 if ((list->flags & LYS_CONFIG_MASK) != (key->flags & LYS_CONFIG_MASK)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003817 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Key of the configuration list must not be status leaf.");
3818 return LY_EVALID;
3819 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +01003820 if (ctx->mod_def->version < LYS_VERSION_1_1) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003821 /* YANG 1.0 denies key to be of empty type */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003822 if (key->type->basetype == LY_TYPE_EMPTY) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003823 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003824 "List's key cannot be of \"empty\" type until it is in YANG 1.1 module.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003825 return LY_EVALID;
3826 }
3827 } else {
3828 /* when and if-feature are illegal on list keys */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003829 if (key->when) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003830 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003831 "List's key must not have any \"when\" statement.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003832 return LY_EVALID;
3833 }
Radek Krejci0fe9b512019-07-26 17:51:05 +02003834 if (key->iffeatures) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003835 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02003836 "List's key must not have any \"if-feature\" statement.");
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003837 return LY_EVALID;
3838 }
3839 }
Radek Krejci76b3e962018-12-14 17:01:25 +01003840
3841 /* check status */
3842 LY_CHECK_RET(lysc_check_status(ctx, list->flags, list->module, list->name,
Radek Krejci0fe9b512019-07-26 17:51:05 +02003843 key->flags, key->module, key->name));
Radek Krejci76b3e962018-12-14 17:01:25 +01003844
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003845 /* ignore default values of the key */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003846 if (key->dflt) {
3847 key->dflt->realtype->plugin->free(ctx->ctx, key->dflt);
3848 lysc_type_free(ctx->ctx, key->dflt->realtype);
3849 free(key->dflt);
3850 key->dflt = NULL;
3851 key->dflt_mod = NULL;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003852 }
3853 /* mark leaf as key */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003854 key->flags |= LYS_KEY;
3855
3856 /* move it to the correct position */
3857 if ((prev_key && (struct lysc_node*)prev_key != key->prev) || (!prev_key && key->prev->next)) {
3858 /* fix links in closest previous siblings of the key */
3859 if (key->next) {
3860 key->next->prev = key->prev;
3861 } else {
3862 /* last child */
3863 list->child->prev = key->prev;
3864 }
3865 if (key->prev->next) {
3866 key->prev->next = key->next;
3867 }
3868 /* fix links in the key */
3869 if (prev_key) {
3870 key->prev = (struct lysc_node*)prev_key;
3871 key->next = prev_key->next;
3872 } else {
3873 key->prev = list->child->prev;
3874 key->next = list->child;
3875 }
3876 /* fix links in closes future siblings of the key */
3877 if (prev_key) {
3878 if (prev_key->next) {
3879 prev_key->next->prev = (struct lysc_node*)key;
3880 } else {
3881 list->child->prev = (struct lysc_node*)key;
3882 }
3883 prev_key->next = (struct lysc_node*)key;
3884 } else {
3885 list->child->prev = (struct lysc_node*)key;
3886 }
3887 /* fix links in parent */
3888 if (!key->prev->next) {
3889 list->child = (struct lysc_node*)key;
3890 }
3891 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003892
3893 /* next key value */
Radek Krejci0fe9b512019-07-26 17:51:05 +02003894 prev_key = key;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003895 keystr = delim;
Radek Krejci327de162019-06-14 12:52:07 +02003896 lysc_update_path(ctx, NULL, NULL);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003897 }
3898
3899 /* uniques */
3900 if (list_p->uniques) {
Radek Krejci7af64242019-02-18 13:07:53 +01003901 LY_CHECK_RET(lys_compile_node_list_unique(ctx, list->module, list_p->uniques, list));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003902 }
3903
Radek Krejciec4da802019-05-02 13:02:41 +02003904 COMPILE_ARRAY1_GOTO(ctx, list_p->actions, list->actions, node, u, lys_compile_action, 0, ret, done);
3905 COMPILE_ARRAY1_GOTO(ctx, list_p->notifs, list->notifs, node, u, lys_compile_notif, 0, ret, done);
Radek Krejci9bb94eb2018-12-04 16:48:35 +01003906
3907done:
3908 return ret;
3909}
3910
Radek Krejcib56c7502019-02-13 14:19:54 +01003911/**
3912 * @brief Do some checks and set the default choice's case.
3913 *
3914 * Selects (and stores into ::lysc_node_choice#dflt) the default case and set LYS_SET_DFLT flag on it.
3915 *
3916 * @param[in] ctx Compile context.
3917 * @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,
3918 * not the reference to the imported module.
3919 * @param[in,out] ch The compiled choice node, its dflt member is filled to point to the default case node of the choice.
3920 * @return LY_ERR value.
3921 */
Radek Krejci76b3e962018-12-14 17:01:25 +01003922static LY_ERR
3923lys_compile_node_choice_dflt(struct lysc_ctx *ctx, const char *dflt, struct lysc_node_choice *ch)
3924{
3925 struct lysc_node *iter, *node = (struct lysc_node*)ch;
3926 const char *prefix = NULL, *name;
3927 size_t prefix_len = 0;
3928
3929 /* could use lys_parse_nodeid(), but it checks syntax which is already done in this case by the parsers */
3930 name = strchr(dflt, ':');
3931 if (name) {
3932 prefix = dflt;
3933 prefix_len = name - prefix;
3934 ++name;
3935 } else {
3936 name = dflt;
3937 }
Radek Krejci7f9b6512019-09-18 13:11:09 +02003938 if (prefix && ly_strncmp(node->module->prefix, prefix, prefix_len)) {
Radek Krejci76b3e962018-12-14 17:01:25 +01003939 /* prefixed default case make sense only for the prefix of the schema itself */
3940 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
3941 "Invalid default case referencing a case from different YANG module (by prefix \"%.*s\").",
3942 prefix_len, prefix);
3943 return LY_EVALID;
3944 }
Michal Vaskoe444f752020-02-10 12:20:06 +01003945 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 +01003946 if (!ch->dflt) {
3947 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3948 "Default case \"%s\" not found.", dflt);
3949 return LY_EVALID;
3950 }
3951 /* no mandatory nodes directly under the default case */
3952 LY_LIST_FOR(ch->dflt->child, iter) {
Radek Krejcife13da42019-02-15 14:51:01 +01003953 if (iter->parent != (struct lysc_node*)ch->dflt) {
3954 break;
3955 }
Radek Krejci76b3e962018-12-14 17:01:25 +01003956 if (iter->flags & LYS_MAND_TRUE) {
3957 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
3958 "Mandatory node \"%s\" under the default case \"%s\".", iter->name, dflt);
3959 return LY_EVALID;
3960 }
3961 }
Radek Krejci01342af2019-01-03 15:18:08 +01003962 ch->dflt->flags |= LYS_SET_DFLT;
Radek Krejci76b3e962018-12-14 17:01:25 +01003963 return LY_SUCCESS;
3964}
3965
Radek Krejciccd20f12019-02-15 14:12:27 +01003966static LY_ERR
Radek Krejci327de162019-06-14 12:52:07 +02003967lys_compile_deviation_set_choice_dflt(struct lysc_ctx *ctx, const char *dflt, struct lysc_node_choice *ch)
Radek Krejciccd20f12019-02-15 14:12:27 +01003968{
3969 struct lys_module *mod;
3970 const char *prefix = NULL, *name;
3971 size_t prefix_len = 0;
3972 struct lysc_node_case *cs;
3973 struct lysc_node *node;
3974
3975 /* could use lys_parse_nodeid(), but it checks syntax which is already done in this case by the parsers */
3976 name = strchr(dflt, ':');
3977 if (name) {
3978 prefix = dflt;
3979 prefix_len = name - prefix;
3980 ++name;
3981 } else {
3982 name = dflt;
3983 }
3984 /* this code is for deviation, so we allow as the default case even the cases from other modules than the choice (augments) */
3985 if (prefix) {
3986 if (!(mod = lys_module_find_prefix(ctx->mod, prefix, prefix_len))) {
3987 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02003988 "Invalid deviation adding \"default\" property \"%s\" of choice. "
3989 "The prefix does not match any imported module of the deviation module.", dflt);
Radek Krejciccd20f12019-02-15 14:12:27 +01003990 return LY_EVALID;
3991 }
3992 } else {
3993 mod = ctx->mod;
3994 }
3995 /* get the default case */
Michal Vaskoe444f752020-02-10 12:20:06 +01003996 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 +01003997 if (!cs) {
3998 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02003999 "Invalid deviation adding \"default\" property \"%s\" of choice - the specified case does not exists.", dflt);
Radek Krejciccd20f12019-02-15 14:12:27 +01004000 return LY_EVALID;
4001 }
4002
4003 /* check that there is no mandatory node */
4004 LY_LIST_FOR(cs->child, node) {
Radek Krejcife13da42019-02-15 14:51:01 +01004005 if (node->parent != (struct lysc_node*)cs) {
4006 break;
4007 }
Radek Krejciccd20f12019-02-15 14:12:27 +01004008 if (node->flags & LYS_MAND_TRUE) {
4009 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004010 "Invalid deviation adding \"default\" property \"%s\" of choice - "
4011 "mandatory node \"%s\" under the default case.", dflt, node->name);
Radek Krejciccd20f12019-02-15 14:12:27 +01004012 return LY_EVALID;
4013 }
4014 }
4015
4016 /* set the default case in choice */
4017 ch->dflt = cs;
4018 cs->flags |= LYS_SET_DFLT;
4019
4020 return LY_SUCCESS;
4021}
4022
Radek Krejci9bb94eb2018-12-04 16:48:35 +01004023/**
Radek Krejci056d0a82018-12-06 16:57:25 +01004024 * @brief Compile parsed choice node information.
4025 * @param[in] ctx Compile context
4026 * @param[in] node_p Parsed choice node.
Radek Krejci056d0a82018-12-06 16:57:25 +01004027 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
Radek Krejci76b3e962018-12-14 17:01:25 +01004028 * is enriched with the choice-specific information.
Radek Krejci056d0a82018-12-06 16:57:25 +01004029 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4030 */
4031static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004032lys_compile_node_choice(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01004033{
4034 struct lysp_node_choice *ch_p = (struct lysp_node_choice*)node_p;
4035 struct lysc_node_choice *ch = (struct lysc_node_choice*)node;
4036 struct lysp_node *child_p, *case_child_p;
Radek Krejci056d0a82018-12-06 16:57:25 +01004037 LY_ERR ret = LY_SUCCESS;
4038
Radek Krejci056d0a82018-12-06 16:57:25 +01004039 LY_LIST_FOR(ch_p->child, child_p) {
4040 if (child_p->nodetype == LYS_CASE) {
4041 LY_LIST_FOR(((struct lysp_node_case*)child_p)->child, case_child_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02004042 LY_CHECK_RET(lys_compile_node(ctx, case_child_p, node, 0));
Radek Krejci056d0a82018-12-06 16:57:25 +01004043 }
4044 } else {
Radek Krejciec4da802019-05-02 13:02:41 +02004045 LY_CHECK_RET(lys_compile_node(ctx, child_p, node, 0));
Radek Krejci056d0a82018-12-06 16:57:25 +01004046 }
4047 }
4048
4049 /* default branch */
Radek Krejcia9026eb2018-12-12 16:04:47 +01004050 if (ch_p->dflt) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004051 LY_CHECK_RET(lys_compile_node_choice_dflt(ctx, ch_p->dflt, ch));
Radek Krejcia9026eb2018-12-12 16:04:47 +01004052 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004053
Radek Krejci9800fb82018-12-13 14:26:23 +01004054 return ret;
4055}
4056
4057/**
4058 * @brief Compile parsed anydata or anyxml node information.
4059 * @param[in] ctx Compile context
4060 * @param[in] node_p Parsed anydata or anyxml node.
Radek Krejci9800fb82018-12-13 14:26:23 +01004061 * @param[in,out] node Pre-prepared structure from lys_compile_node() with filled generic node information
4062 * is enriched with the any-specific information.
4063 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4064 */
4065static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004066lys_compile_node_any(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysc_node *node)
Radek Krejci9800fb82018-12-13 14:26:23 +01004067{
4068 struct lysp_node_anydata *any_p = (struct lysp_node_anydata*)node_p;
4069 struct lysc_node_anydata *any = (struct lysc_node_anydata*)node;
4070 unsigned int u;
4071 LY_ERR ret = LY_SUCCESS;
4072
Radek Krejcic71ac5b2019-09-10 15:34:22 +02004073 COMPILE_ARRAY_GOTO(ctx, any_p->musts, any->musts, u, lys_compile_must, ret, done);
Michal Vasko5d8756a2019-11-07 15:21:00 +01004074 if (any_p->musts && !(ctx->options & LYSC_OPT_GROUPING)) {
4075 /* do not check "must" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02004076 ly_set_add(&ctx->xpath, any, 0);
Michal Vasko5d8756a2019-11-07 15:21:00 +01004077 }
Radek Krejci9800fb82018-12-13 14:26:23 +01004078
4079 if (any->flags & LYS_CONFIG_W) {
Radek Krejci5c4ed7b2020-08-12 11:29:44 +02004080 LOGWRN(ctx->ctx, "Use of %s to define configuration data is not recommended. %s",
4081 ly_stmt2str(any->nodetype == LYS_ANYDATA ? LY_STMT_ANYDATA : LY_STMT_ANYXML), ctx->path);
Radek Krejci9800fb82018-12-13 14:26:23 +01004082 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004083done:
4084 return ret;
4085}
4086
Radek Krejcib56c7502019-02-13 14:19:54 +01004087/**
Michal Vasko795b3752020-07-13 15:24:27 +02004088 * @brief Connect the node into the siblings list and check its name uniqueness. Also,
4089 * keep specific order of augments targetting the same node.
Radek Krejci056d0a82018-12-06 16:57:25 +01004090 *
4091 * @param[in] ctx Compile context
4092 * @param[in] parent Parent node holding the children list, in case of node from a choice's case,
4093 * the choice itself is expected instead of a specific case node.
4094 * @param[in] node Schema node to connect into the list.
4095 * @return LY_ERR value - LY_SUCCESS or LY_EEXIST.
Radek Krejci1c54f462020-05-12 17:25:34 +02004096 * 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 +01004097 */
4098static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004099lys_compile_node_connect(struct lysc_ctx *ctx, struct lysc_node *parent, struct lysc_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01004100{
Michal Vasko795b3752020-07-13 15:24:27 +02004101 struct lysc_node **children, *start, *end;
4102 const struct lys_module *mod;
Radek Krejci056d0a82018-12-06 16:57:25 +01004103
4104 if (node->nodetype == LYS_CASE) {
4105 children = (struct lysc_node**)&((struct lysc_node_choice*)parent)->cases;
4106 } else {
Radek Krejciec4da802019-05-02 13:02:41 +02004107 children = lysc_node_children_p(parent, ctx->options);
Radek Krejci056d0a82018-12-06 16:57:25 +01004108 }
4109 if (children) {
4110 if (!(*children)) {
4111 /* first child */
4112 *children = node;
4113 } else if (*children != node) {
4114 /* by the condition in previous branch we cover the choice/case children
4115 * - the children list is shared by the choice and the the first case, in addition
4116 * the first child of each case must be referenced from the case node. So the node is
4117 * actually always already inserted in case it is the first children - so here such
4118 * a situation actually corresponds to the first branch */
Michal Vasko795b3752020-07-13 15:24:27 +02004119 if (((*children)->prev->module != (*children)->module) && (node->module != (*children)->module)
4120 && (strcmp((*children)->prev->module->name, node->module->name) > 0)) {
4121 /* some augments are already connected and we are connecting new ones,
4122 * keep module name order and insert the node into the children list */
4123 end = (*children);
4124 do {
4125 end = end->prev;
4126 mod = end->module;
4127 while (end->prev->module == mod) {
4128 end = end->prev;
4129 }
4130 } while ((end->prev->module != (*children)->module) && (end->prev->module != node->module)
4131 && (strcmp(mod->name, node->module->name) > 0));
4132
4133 /* we have the last existing node after our node, easily get the first before and connect it */
4134 start = end->prev;
4135 start->next = node;
4136 node->next = end;
4137 end->prev = node;
4138 node->prev = start;
4139 } else {
4140 /* insert at the end of the parent's children list */
4141 (*children)->prev->next = node;
4142 node->prev = (*children)->prev;
4143 (*children)->prev = node;
4144 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004145
4146 /* check the name uniqueness */
4147 if (lys_compile_node_uniqness(ctx, *children, lysc_node_actions(parent),
4148 lysc_node_notifs(parent), node->name, node)) {
4149 return LY_EEXIST;
4150 }
4151 }
4152 }
4153 return LY_SUCCESS;
4154}
4155
Radek Krejci95710c92019-02-11 15:49:55 +01004156/**
Radek Krejcib56c7502019-02-13 14:19:54 +01004157 * @brief Prepare the case structure in choice node for the new data node.
4158 *
4159 * 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
4160 * created in the choice when the first child was processed.
4161 *
4162 * @param[in] ctx Compile context.
Radek Krejci95710c92019-02-11 15:49:55 +01004163 * @param[in] node_p Node image from the parsed tree. If the case is explicit, it is the LYS_CASE node, but in case of implicit case,
Radek Krejci39424802020-08-12 09:31:00 +02004164 * it is the LYS_CHOICE, LYS_AUGMENT or LYS_GROUPING node.
Radek Krejcib56c7502019-02-13 14:19:54 +01004165 * @param[in] ch The compiled choice structure where the new case structures are created (if needed).
4166 * @param[in] child The new data node being part of a case (no matter if explicit or implicit).
4167 * @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,
4168 * it is linked from the case structure only in case it is its first child.
Radek Krejci95710c92019-02-11 15:49:55 +01004169 */
Radek Krejci056d0a82018-12-06 16:57:25 +01004170static struct lysc_node_case*
Radek Krejciec4da802019-05-02 13:02:41 +02004171lys_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 +01004172{
4173 struct lysc_node *iter;
Radek Krejci98b1a662019-04-23 10:25:50 +02004174 struct lysc_node_case *cs = NULL;
Radek Krejci00b874b2019-02-12 10:54:50 +01004175 struct lysc_when **when;
Radek Krejci056d0a82018-12-06 16:57:25 +01004176 unsigned int u;
4177 LY_ERR ret;
4178
Radek Krejci95710c92019-02-11 15:49:55 +01004179#define UNIQUE_CHECK(NAME, MOD) \
Radek Krejci056d0a82018-12-06 16:57:25 +01004180 LY_LIST_FOR((struct lysc_node*)ch->cases, iter) { \
Radek Krejci95710c92019-02-11 15:49:55 +01004181 if (iter->module == MOD && !strcmp(iter->name, NAME)) { \
Radek Krejci056d0a82018-12-06 16:57:25 +01004182 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPIDENT, NAME, "case"); \
4183 return NULL; \
4184 } \
4185 }
4186
Radek Krejci39424802020-08-12 09:31:00 +02004187 if (node_p->nodetype & (LYS_CHOICE | LYS_AUGMENT | LYS_GROUPING)) {
Radek Krejci95710c92019-02-11 15:49:55 +01004188 UNIQUE_CHECK(child->name, ctx->mod);
Radek Krejci056d0a82018-12-06 16:57:25 +01004189
4190 /* we have to add an implicit case node into the parent choice */
4191 cs = calloc(1, sizeof(struct lysc_node_case));
4192 DUP_STRING(ctx->ctx, child->name, cs->name);
Michal Vasko175012e2019-11-06 15:49:14 +01004193 cs->parent = (struct lysc_node*)ch;
Radek Krejci056d0a82018-12-06 16:57:25 +01004194 cs->flags = ch->flags & LYS_STATUS_MASK;
Radek Krejci95710c92019-02-11 15:49:55 +01004195 } else if (node_p->nodetype == LYS_CASE) {
Radek Krejci056d0a82018-12-06 16:57:25 +01004196 if (ch->cases && (node_p == ch->cases->prev->sp)) {
4197 /* the case is already present since the child is not its first children */
4198 return (struct lysc_node_case*)ch->cases->prev;
4199 }
Radek Krejci95710c92019-02-11 15:49:55 +01004200 UNIQUE_CHECK(node_p->name, ctx->mod);
Radek Krejci056d0a82018-12-06 16:57:25 +01004201
4202 /* explicit parent case is not present (this is its first child) */
4203 cs = calloc(1, sizeof(struct lysc_node_case));
4204 DUP_STRING(ctx->ctx, node_p->name, cs->name);
Michal Vasko175012e2019-11-06 15:49:14 +01004205 cs->parent = (struct lysc_node*)ch;
Radek Krejci056d0a82018-12-06 16:57:25 +01004206 cs->flags = LYS_STATUS_MASK & node_p->flags;
4207 cs->sp = node_p;
4208
Radek Krejcib1b59152019-01-07 13:21:56 +01004209 /* 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 +02004210 LY_CHECK_GOTO(lys_compile_status(ctx, &cs->flags, ch->flags), error);
Radek Krejci00b874b2019-02-12 10:54:50 +01004211
4212 if (node_p->when) {
4213 LY_ARRAY_NEW_GOTO(ctx->ctx, cs->when, when, ret, error);
Michal Vasko175012e2019-11-06 15:49:14 +01004214 ret = lys_compile_when(ctx, node_p->when, node_p->flags, (struct lysc_node *)cs, when);
Radek Krejci00b874b2019-02-12 10:54:50 +01004215 LY_CHECK_GOTO(ret, error);
Michal Vasko175012e2019-11-06 15:49:14 +01004216
4217 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4218 /* do not check "when" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02004219 ly_set_add(&ctx->xpath, cs, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01004220 }
Radek Krejci00b874b2019-02-12 10:54:50 +01004221 }
Radek Krejciec4da802019-05-02 13:02:41 +02004222 COMPILE_ARRAY_GOTO(ctx, node_p->iffeatures, cs->iffeatures, u, lys_compile_iffeature, ret, error);
Radek Krejci95710c92019-02-11 15:49:55 +01004223 } else {
4224 LOGINT(ctx->ctx);
4225 goto error;
Radek Krejci056d0a82018-12-06 16:57:25 +01004226 }
4227 cs->module = ctx->mod;
4228 cs->prev = (struct lysc_node*)cs;
4229 cs->nodetype = LYS_CASE;
Radek Krejciec4da802019-05-02 13:02:41 +02004230 lys_compile_node_connect(ctx, (struct lysc_node*)ch, (struct lysc_node*)cs);
Radek Krejci056d0a82018-12-06 16:57:25 +01004231 cs->child = child;
4232
4233 return cs;
4234error:
Radek Krejci1b1e9252019-04-24 08:45:50 +02004235 if (cs) {
4236 lysc_node_free(ctx->ctx, (struct lysc_node*)cs);
4237 }
Radek Krejci056d0a82018-12-06 16:57:25 +01004238 return NULL;
4239
4240#undef UNIQUE_CHECK
4241}
4242
Radek Krejcib56c7502019-02-13 14:19:54 +01004243/**
Radek Krejci93dcc392019-02-19 10:43:38 +01004244 * @brief Apply refined or deviated config to the target node.
Radek Krejcib56c7502019-02-13 14:19:54 +01004245 *
4246 * @param[in] ctx Compile context.
Radek Krejci93dcc392019-02-19 10:43:38 +01004247 * @param[in] node Target node where the config is supposed to be changed.
4248 * @param[in] config_flag Node's config flag to be applied to the @p node.
Radek Krejcib56c7502019-02-13 14:19:54 +01004249 * @param[in] inheriting Flag (inverted) to check the refined config compatibility with the node's parent. This is
4250 * 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 +01004251 * to the complete subtree (except the subnodes with explicit config set) and the test is not needed for the subnodes.
4252 * @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 +01004253 * @return LY_ERR value.
4254 */
Radek Krejci76b3e962018-12-14 17:01:25 +01004255static LY_ERR
Radek Krejci93dcc392019-02-19 10:43:38 +01004256lys_compile_change_config(struct lysc_ctx *ctx, struct lysc_node *node, uint16_t config_flag,
Radek Krejci327de162019-06-14 12:52:07 +02004257 int inheriting, int refine_flag)
Radek Krejci76b3e962018-12-14 17:01:25 +01004258{
4259 struct lysc_node *child;
Radek Krejci93dcc392019-02-19 10:43:38 +01004260 uint16_t config = config_flag & LYS_CONFIG_MASK;
Radek Krejci76b3e962018-12-14 17:01:25 +01004261
4262 if (config == (node->flags & LYS_CONFIG_MASK)) {
4263 /* nothing to do */
4264 return LY_SUCCESS;
4265 }
4266
4267 if (!inheriting) {
Radek Krejci93dcc392019-02-19 10:43:38 +01004268 /* explicit change */
Radek Krejci76b3e962018-12-14 17:01:25 +01004269 if (config == LYS_CONFIG_W && node->parent && (node->parent->flags & LYS_CONFIG_R)) {
4270 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004271 "Invalid %s of config - configuration node cannot be child of any state data node.",
4272 refine_flag ? "refine" : "deviation");
Radek Krejci76b3e962018-12-14 17:01:25 +01004273 return LY_EVALID;
4274 }
Radek Krejci93dcc392019-02-19 10:43:38 +01004275 node->flags |= LYS_SET_CONFIG;
4276 } else {
4277 if (node->flags & LYS_SET_CONFIG) {
4278 if ((node->flags & LYS_CONFIG_W) && (config == LYS_CONFIG_R)) {
4279 /* setting config flags, but have node with explicit config true */
4280 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004281 "Invalid %s of config - configuration node cannot be child of any state data node.",
4282 refine_flag ? "refine" : "deviation");
Radek Krejci93dcc392019-02-19 10:43:38 +01004283 return LY_EVALID;
4284 }
4285 /* do not change config on nodes where the config is explicitely set, this does not apply to
4286 * nodes, which are being changed explicitly (targets of refine or deviation) */
4287 return LY_SUCCESS;
4288 }
Radek Krejci76b3e962018-12-14 17:01:25 +01004289 }
4290 node->flags &= ~LYS_CONFIG_MASK;
4291 node->flags |= config;
4292
4293 /* inherit the change into the children */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004294 LY_LIST_FOR((struct lysc_node*)lysc_node_children(node, 0), child) {
Radek Krejci327de162019-06-14 12:52:07 +02004295 LY_CHECK_RET(lys_compile_change_config(ctx, child, config_flag, 1, refine_flag));
Radek Krejci76b3e962018-12-14 17:01:25 +01004296 }
4297
Radek Krejci76b3e962018-12-14 17:01:25 +01004298 return LY_SUCCESS;
4299}
4300
Radek Krejcib56c7502019-02-13 14:19:54 +01004301/**
4302 * @brief Set LYS_MAND_TRUE flag for the non-presence container parents.
4303 *
4304 * A non-presence container is mandatory in case it has at least one mandatory children. This function propagate
4305 * the flag to such parents from a mandatory children.
4306 *
4307 * @param[in] parent A schema node to be examined if the mandatory child make it also mandatory.
4308 * @param[in] add Flag to distinguish adding the mandatory flag (new mandatory children appeared) or removing the flag
4309 * (mandatory children was removed).
4310 */
Radek Krejcife909632019-02-12 15:34:42 +01004311void
4312lys_compile_mandatory_parents(struct lysc_node *parent, int add)
4313{
4314 struct lysc_node *iter;
4315
4316 if (add) { /* set flag */
4317 for (; parent && parent->nodetype == LYS_CONTAINER && !(parent->flags & LYS_MAND_TRUE) && !(parent->flags & LYS_PRESENCE);
4318 parent = parent->parent) {
4319 parent->flags |= LYS_MAND_TRUE;
4320 }
4321 } else { /* unset flag */
4322 for (; parent && parent->nodetype == LYS_CONTAINER && (parent->flags & LYS_MAND_TRUE); parent = parent->parent) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004323 for (iter = (struct lysc_node*)lysc_node_children(parent, 0); iter; iter = iter->next) {
Radek Krejcif1421c22019-02-19 13:05:20 +01004324 if (iter->flags & LYS_MAND_TRUE) {
Radek Krejcife909632019-02-12 15:34:42 +01004325 /* there is another mandatory node */
4326 return;
4327 }
4328 }
4329 /* unset mandatory flag - there is no mandatory children in the non-presence container */
4330 parent->flags &= ~LYS_MAND_TRUE;
4331 }
4332 }
4333}
4334
Radek Krejci056d0a82018-12-06 16:57:25 +01004335/**
Radek Krejci3641f562019-02-13 15:38:40 +01004336 * @brief Internal sorting process for the lys_compile_augment_sort().
4337 * @param[in] aug_p The parsed augment structure to insert into the sorter sized array @p result.
4338 * @param[in,out] result Sized array to store the sorted list of augments. The array is expected
4339 * to be allocated to hold the complete list, its size is just incremented by adding another item.
4340 */
4341static void
4342lys_compile_augment_sort_(struct lysp_augment *aug_p, struct lysp_augment **result)
4343{
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004344 LY_ARRAY_COUNT_TYPE v;
Radek Krejci3641f562019-02-13 15:38:40 +01004345 size_t len;
4346
4347 len = strlen(aug_p->nodeid);
4348 LY_ARRAY_FOR(result, v) {
4349 if (strlen(result[v]->nodeid) <= len) {
4350 continue;
4351 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004352 if (v < LY_ARRAY_COUNT(result)) {
Radek Krejci3641f562019-02-13 15:38:40 +01004353 /* move the rest of array */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004354 memmove(&result[v + 1], &result[v], (LY_ARRAY_COUNT(result) - v) * sizeof *result);
Radek Krejci3641f562019-02-13 15:38:40 +01004355 break;
4356 }
4357 }
4358 result[v] = aug_p;
4359 LY_ARRAY_INCREMENT(result);
4360}
4361
4362/**
4363 * @brief Sort augments to apply /a/b before /a/b/c (where the /a/b/c was added by the first augment).
4364 *
4365 * The sorting is based only on the length of the augment's path since it guarantee the correct order
4366 * (it doesn't matter the /a/x is done before /a/b/c from the example above).
4367 *
4368 * @param[in] ctx Compile context.
4369 * @param[in] mod_p Parsed module with the global augments (also augments from the submodules are taken).
4370 * @param[in] aug_p Parsed sized array of augments to sort (no matter if global or uses's)
4371 * @param[in] inc_p In case of global augments, sized array of module includes (submodules) to get global augments from submodules.
4372 * @param[out] augments Resulting sorted sized array of pointers to the augments.
4373 * @return LY_ERR value.
4374 */
4375LY_ERR
4376lys_compile_augment_sort(struct lysc_ctx *ctx, struct lysp_augment *aug_p, struct lysp_include *inc_p, struct lysp_augment ***augments)
4377{
4378 struct lysp_augment **result = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004379 LY_ARRAY_COUNT_TYPE u, v, count = 0;
Radek Krejci3641f562019-02-13 15:38:40 +01004380
4381 assert(augments);
4382
4383 /* get count of the augments in module and all its submodules */
4384 if (aug_p) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004385 count += LY_ARRAY_COUNT(aug_p);
Radek Krejci3641f562019-02-13 15:38:40 +01004386 }
4387 LY_ARRAY_FOR(inc_p, u) {
4388 if (inc_p[u].submodule->augments) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004389 count += LY_ARRAY_COUNT(inc_p[u].submodule->augments);
Radek Krejci3641f562019-02-13 15:38:40 +01004390 }
4391 }
4392
4393 if (!count) {
4394 *augments = NULL;
4395 return LY_SUCCESS;
4396 }
4397 LY_ARRAY_CREATE_RET(ctx->ctx, result, count, LY_EMEM);
4398
4399 /* sort by the length of schema-nodeid - we need to solve /x before /x/xy. It is not necessary to group them
4400 * together, so there can be even /z/y betwwen them. */
4401 LY_ARRAY_FOR(aug_p, u) {
4402 lys_compile_augment_sort_(&aug_p[u], result);
4403 }
4404 LY_ARRAY_FOR(inc_p, u) {
4405 LY_ARRAY_FOR(inc_p[u].submodule->augments, v) {
4406 lys_compile_augment_sort_(&inc_p[u].submodule->augments[v], result);
4407 }
4408 }
4409
4410 *augments = result;
4411 return LY_SUCCESS;
4412}
4413
4414/**
4415 * @brief Compile the parsed augment connecting it into its target.
4416 *
4417 * It is expected that all the data referenced in path are present - augments are ordered so that augment B
4418 * targeting data from augment A is being compiled after augment A. Also the modules referenced in the path
4419 * are already implemented and compiled.
4420 *
4421 * @param[in] ctx Compile context.
4422 * @param[in] aug_p Parsed augment to compile.
Radek Krejci3641f562019-02-13 15:38:40 +01004423 * @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
4424 * children in case of the augmenting uses data.
4425 * @return LY_SUCCESS on success.
4426 * @return LY_EVALID on failure.
4427 */
4428LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02004429lys_compile_augment(struct lysc_ctx *ctx, struct lysp_augment *aug_p, const struct lysc_node *parent)
Radek Krejci3641f562019-02-13 15:38:40 +01004430{
Michal Vaskoe6143202020-07-03 13:02:08 +02004431 LY_ERR ret = LY_SUCCESS, rc;
Radek Krejci3641f562019-02-13 15:38:40 +01004432 struct lysp_node *node_p, *case_node_p;
4433 struct lysc_node *target; /* target target of the augment */
4434 struct lysc_node *node;
Radek Krejci3641f562019-02-13 15:38:40 +01004435 struct lysc_when **when, *when_shared;
Michal Vaskoa3af5982020-06-29 11:51:37 +02004436 struct lys_module **aug_mod;
Radek Krejci3641f562019-02-13 15:38:40 +01004437 int allow_mandatory = 0;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004438 uint16_t flags = 0;
Michal Vaskoe6143202020-07-03 13:02:08 +02004439 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejciec4da802019-05-02 13:02:41 +02004440 int opt_prev = ctx->options;
Radek Krejci3641f562019-02-13 15:38:40 +01004441
Radek Krejci327de162019-06-14 12:52:07 +02004442 lysc_update_path(ctx, NULL, "{augment}");
4443 lysc_update_path(ctx, NULL, aug_p->nodeid);
4444
Radek Krejci7af64242019-02-18 13:07:53 +01004445 ret = lys_resolve_schema_nodeid(ctx, aug_p->nodeid, 0, parent, parent ? parent->module : ctx->mod_def,
Radek Krejci3641f562019-02-13 15:38:40 +01004446 LYS_CONTAINER | LYS_LIST | LYS_CHOICE | LYS_CASE | LYS_INOUT | LYS_NOTIF,
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004447 1, (const struct lysc_node**)&target, &flags);
Radek Krejci3641f562019-02-13 15:38:40 +01004448 if (ret != LY_SUCCESS) {
4449 if (ret == LY_EDENIED) {
4450 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4451 "Augment's %s-schema-nodeid \"%s\" refers to a %s node which is not an allowed augment's target.",
4452 parent ? "descendant" : "absolute", aug_p->nodeid, lys_nodetype2str(target->nodetype));
4453 }
4454 return LY_EVALID;
4455 }
4456
4457 /* check for mandatory nodes
4458 * - new cases augmenting some choice can have mandatory nodes
4459 * - mandatory nodes are allowed only in case the augmentation is made conditional with a when statement
4460 */
Radek Krejci733988a2019-02-15 15:12:44 +01004461 if (aug_p->when || target->nodetype == LYS_CHOICE || ctx->mod == target->module) {
Radek Krejci3641f562019-02-13 15:38:40 +01004462 allow_mandatory = 1;
4463 }
4464
4465 when_shared = NULL;
4466 LY_LIST_FOR(aug_p->child, node_p) {
4467 /* check if the subnode can be connected to the found target (e.g. case cannot be inserted into container) */
4468 if (!(target->nodetype == LYS_CHOICE && node_p->nodetype == LYS_CASE)
Michal Vasko1bf09392020-03-27 12:38:10 +01004469 && !((target->nodetype & (LYS_CONTAINER | LYS_LIST)) && (node_p->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)))
Radek Krejci2d56a892019-02-19 09:05:26 +01004470 && !(target->nodetype != LYS_CHOICE && node_p->nodetype == LYS_USES)
4471 && !(node_p->nodetype & (LYS_ANYDATA | LYS_CONTAINER | LYS_CHOICE | LYS_LEAF | LYS_LIST | LYS_LEAFLIST))) {
Radek Krejci3641f562019-02-13 15:38:40 +01004472 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004473 "Invalid augment of %s node which is not allowed to contain %s node \"%s\".",
4474 lys_nodetype2str(target->nodetype), lys_nodetype2str(node_p->nodetype), node_p->name);
Radek Krejci3641f562019-02-13 15:38:40 +01004475 return LY_EVALID;
4476 }
4477
4478 /* compile the children */
Radek Krejciec4da802019-05-02 13:02:41 +02004479 ctx->options |= flags;
Radek Krejci3641f562019-02-13 15:38:40 +01004480 if (node_p->nodetype != LYS_CASE) {
Radek Krejciec4da802019-05-02 13:02:41 +02004481 LY_CHECK_RET(lys_compile_node(ctx, node_p, target, 0));
Radek Krejci3641f562019-02-13 15:38:40 +01004482 } else {
4483 LY_LIST_FOR(((struct lysp_node_case *)node_p)->child, case_node_p) {
Radek Krejciec4da802019-05-02 13:02:41 +02004484 LY_CHECK_RET(lys_compile_node(ctx, case_node_p, target, 0));
Radek Krejci3641f562019-02-13 15:38:40 +01004485 }
4486 }
Radek Krejciec4da802019-05-02 13:02:41 +02004487 ctx->options = opt_prev;
Radek Krejci3641f562019-02-13 15:38:40 +01004488
Radek Krejcife13da42019-02-15 14:51:01 +01004489 /* since the augment node is not present in the compiled tree, we need to pass some of its statements to all its children,
4490 * here we gets the last created node as last children of our parent */
Radek Krejci3641f562019-02-13 15:38:40 +01004491 if (target->nodetype == LYS_CASE) {
Radek Krejcife13da42019-02-15 14:51:01 +01004492 /* 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 +01004493 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 +01004494 } else if (target->nodetype == LYS_CHOICE) {
4495 /* to pass when statement, we need the last case no matter if it is explicit or implicit case */
4496 node = ((struct lysc_node_choice*)target)->cases->prev;
4497 } else {
4498 /* the compiled node is the last child of the target */
Radek Krejci7c7783d2020-04-08 15:34:39 +02004499 node = (struct lysc_node*)lysc_node_children(target, flags);
4500 if (!node) {
4501 /* there is no data children (compiled nodes is e.g. notification or action or nothing) */
4502 break;
4503 }
4504 node = node->prev;
Radek Krejci3641f562019-02-13 15:38:40 +01004505 }
4506
Radek Krejci733988a2019-02-15 15:12:44 +01004507 if (!allow_mandatory && (node->flags & LYS_CONFIG_W) && (node->flags & LYS_MAND_TRUE)) {
Radek Krejci3641f562019-02-13 15:38:40 +01004508 node->flags &= ~LYS_MAND_TRUE;
4509 lys_compile_mandatory_parents(target, 0);
4510 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004511 "Invalid augment adding mandatory node \"%s\" without making it conditional via when statement.", node->name);
Radek Krejci3641f562019-02-13 15:38:40 +01004512 return LY_EVALID;
4513 }
4514
4515 /* pass augment's when to all the children */
4516 if (aug_p->when) {
4517 LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error);
4518 if (!when_shared) {
Michal Vasko175012e2019-11-06 15:49:14 +01004519 ret = lys_compile_when(ctx, aug_p->when, aug_p->flags, target, when);
Radek Krejci3641f562019-02-13 15:38:40 +01004520 LY_CHECK_GOTO(ret, error);
Michal Vasko175012e2019-11-06 15:49:14 +01004521
4522 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4523 /* do not check "when" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02004524 ly_set_add(&ctx->xpath, node, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01004525 }
4526
Radek Krejci3641f562019-02-13 15:38:40 +01004527 when_shared = *when;
4528 } else {
4529 ++when_shared->refcount;
4530 (*when) = when_shared;
Michal Vasko5c4e5892019-11-14 12:31:38 +01004531
4532 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4533 /* in this case check "when" again for all children because of dummy node check */
Michal Vasko004d3152020-06-11 19:59:22 +02004534 ly_set_add(&ctx->xpath, node, 0);
Michal Vasko5c4e5892019-11-14 12:31:38 +01004535 }
Radek Krejci3641f562019-02-13 15:38:40 +01004536 }
4537 }
4538 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004539
Radek Krejciec4da802019-05-02 13:02:41 +02004540 ctx->options |= flags;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004541 switch (target->nodetype) {
4542 case LYS_CONTAINER:
Radek Krejci05b774b2019-02-25 13:26:18 +01004543 COMPILE_ARRAY1_GOTO(ctx, aug_p->actions, ((struct lysc_node_container*)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_container*)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 case LYS_LIST:
Radek Krejci05b774b2019-02-25 13:26:18 +01004549 COMPILE_ARRAY1_GOTO(ctx, aug_p->actions, ((struct lysc_node_list*)target)->actions, target,
Radek Krejciec4da802019-05-02 13:02:41 +02004550 u, lys_compile_action, 0, ret, error);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004551 COMPILE_ARRAY1_GOTO(ctx, aug_p->notifs, ((struct lysc_node_list*)target)->notifs, target,
Radek Krejciec4da802019-05-02 13:02:41 +02004552 u, lys_compile_notif, 0, ret, error);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004553 break;
4554 default:
Radek Krejciec4da802019-05-02 13:02:41 +02004555 ctx->options = opt_prev;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004556 if (aug_p->actions) {
4557 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004558 "Invalid augment of %s node which is not allowed to contain RPC/action node \"%s\".",
4559 lys_nodetype2str(target->nodetype), aug_p->actions[0].name);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004560 return LY_EVALID;
4561 }
4562 if (aug_p->notifs) {
4563 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Michal Vaskoa3881362020-01-21 15:57:35 +01004564 "Invalid augment of %s node which is not allowed to contain notification node \"%s\".",
Radek Krejci327de162019-06-14 12:52:07 +02004565 lys_nodetype2str(target->nodetype), aug_p->notifs[0].name);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004566 return LY_EVALID;
4567 }
4568 }
Radek Krejci3641f562019-02-13 15:38:40 +01004569
Michal Vaskoe6143202020-07-03 13:02:08 +02004570 /* add this module into the target module augmented_by, if not there already */
4571 rc = LY_SUCCESS;
4572 LY_ARRAY_FOR(target->module->compiled->augmented_by, v) {
4573 if (target->module->compiled->augmented_by[v] == ctx->mod) {
4574 rc = LY_EEXIST;
4575 break;
4576 }
4577 }
4578 if (!rc) {
4579 LY_ARRAY_NEW_GOTO(ctx->ctx, target->module->compiled->augmented_by, aug_mod, ret, error);
4580 *aug_mod = ctx->mod;
4581 }
Michal Vaskoa3af5982020-06-29 11:51:37 +02004582
Radek Krejci327de162019-06-14 12:52:07 +02004583 lysc_update_path(ctx, NULL, NULL);
4584 lysc_update_path(ctx, NULL, NULL);
Michal Vaskoa3af5982020-06-29 11:51:37 +02004585
Radek Krejci3641f562019-02-13 15:38:40 +01004586error:
Radek Krejciec4da802019-05-02 13:02:41 +02004587 ctx->options = opt_prev;
Radek Krejci3641f562019-02-13 15:38:40 +01004588 return ret;
4589}
4590
4591/**
Radek Krejcif1421c22019-02-19 13:05:20 +01004592 * @brief Apply refined or deviated mandatory flag to the target node.
4593 *
4594 * @param[in] ctx Compile context.
4595 * @param[in] node Target node where the mandatory property is supposed to be changed.
4596 * @param[in] mandatory_flag Node's mandatory flag to be applied to the @p node.
Radek Krejcif1421c22019-02-19 13:05:20 +01004597 * @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 +01004598 * @param[in] It is also used as a flag for testing for compatibility with default statement. In case of deviations,
4599 * there can be some other deviations of the default properties that we are testing here. To avoid false positive failure,
4600 * 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 +01004601 * @return LY_ERR value.
4602 */
4603static LY_ERR
Radek Krejci327de162019-06-14 12:52:07 +02004604lys_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 +01004605{
4606 if (!(node->nodetype & (LYS_LEAF | LYS_ANYDATA | LYS_ANYXML | LYS_CHOICE))) {
4607 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004608 "Invalid %s of mandatory - %s cannot hold mandatory statement.",
4609 refine_flag ? "refine" : "deviation", lys_nodetype2str(node->nodetype));
Radek Krejcif1421c22019-02-19 13:05:20 +01004610 return LY_EVALID;
4611 }
4612
4613 if (mandatory_flag & LYS_MAND_TRUE) {
4614 /* check if node has default value */
4615 if (node->nodetype & LYS_LEAF) {
4616 if (node->flags & LYS_SET_DFLT) {
Radek Krejci551b12c2019-02-19 16:11:21 +01004617 if (refine_flag) {
4618 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004619 "Invalid refine of mandatory - leaf already has \"default\" statement.");
Radek Krejci551b12c2019-02-19 16:11:21 +01004620 return LY_EVALID;
4621 }
Radek Krejcia1911222019-07-22 17:24:50 +02004622 } else if (((struct lysc_node_leaf*)node)->dflt) {
Radek Krejcif1421c22019-02-19 13:05:20 +01004623 /* remove the default value taken from the leaf's type */
Radek Krejcia1911222019-07-22 17:24:50 +02004624 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
Radek Krejci474f9b82019-07-24 11:36:37 +02004625
4626 /* update the list of incomplete default values if needed */
4627 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
4628
Radek Krejcia1911222019-07-22 17:24:50 +02004629 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
4630 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
4631 free(leaf->dflt);
4632 leaf->dflt = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004633 leaf->dflt_mod = NULL;
Radek Krejcif1421c22019-02-19 13:05:20 +01004634 }
4635 } else if ((node->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)node)->dflt) {
Radek Krejci551b12c2019-02-19 16:11:21 +01004636 if (refine_flag) {
4637 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004638 "Invalid refine of mandatory - choice already has \"default\" statement.");
Radek Krejci551b12c2019-02-19 16:11:21 +01004639 return LY_EVALID;
4640 }
Radek Krejcif1421c22019-02-19 13:05:20 +01004641 }
Radek Krejci551b12c2019-02-19 16:11:21 +01004642 if (refine_flag && node->parent && (node->parent->flags & LYS_SET_DFLT)) {
Radek Krejci327de162019-06-14 12:52:07 +02004643 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 +01004644 return LY_EVALID;
4645 }
4646
4647 node->flags &= ~LYS_MAND_FALSE;
4648 node->flags |= LYS_MAND_TRUE;
4649 lys_compile_mandatory_parents(node->parent, 1);
4650 } else {
4651 /* make mandatory false */
4652 node->flags &= ~LYS_MAND_TRUE;
4653 node->flags |= LYS_MAND_FALSE;
4654 lys_compile_mandatory_parents(node->parent, 0);
Radek Krejcia1911222019-07-22 17:24:50 +02004655 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 +01004656 /* get the type's default value if any */
Radek Krejcia1911222019-07-22 17:24:50 +02004657 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004658 leaf->dflt_mod = leaf->type->dflt_mod;
Radek Krejcia1911222019-07-22 17:24:50 +02004659 leaf->dflt = calloc(1, sizeof *leaf->dflt);
4660 leaf->dflt->realtype = leaf->type->dflt->realtype;
4661 leaf->dflt->realtype->plugin->duplicate(ctx->ctx, leaf->type->dflt, leaf->dflt);
4662 leaf->dflt->realtype->refcount++;
Radek Krejcif1421c22019-02-19 13:05:20 +01004663 }
4664 }
4665 return LY_SUCCESS;
4666}
4667
4668/**
Radek Krejcie86bf772018-12-14 11:39:53 +01004669 * @brief Compile parsed uses statement - resolve target grouping and connect its content into parent.
4670 * If present, also apply uses's modificators.
4671 *
4672 * @param[in] ctx Compile context
4673 * @param[in] uses_p Parsed uses schema node.
Radek Krejcie86bf772018-12-14 11:39:53 +01004674 * @param[in] parent Compiled parent node where the content of the referenced grouping is supposed to be connected. It is
4675 * NULL for top-level nodes, in such a case the module where the node will be connected is taken from
4676 * the compile context.
4677 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
4678 */
4679static LY_ERR
Radek Krejcic6b4f442020-08-12 14:45:18 +02004680lys_compile_uses(struct lysc_ctx *ctx, struct lysp_node_uses *uses_p, struct lysc_node *parent, struct lysc_node **first_p)
Radek Krejcie86bf772018-12-14 11:39:53 +01004681{
4682 struct lysp_node *node_p;
Radek Krejcic6b4f442020-08-12 14:45:18 +02004683 struct lysc_node *node, *child, *iter;
Radek Krejci12fb9142019-01-08 09:45:30 +01004684 /* context_node_fake allows us to temporarily isolate the nodes inserted from the grouping instead of uses */
Radek Krejci01342af2019-01-03 15:18:08 +01004685 struct lysc_node_container context_node_fake =
4686 {.nodetype = LYS_CONTAINER,
4687 .module = ctx->mod,
4688 .flags = parent ? parent->flags : 0,
4689 .child = NULL, .next = NULL,
Radek Krejcifc11bd72019-04-11 16:00:05 +02004690 .prev = (struct lysc_node*)&context_node_fake,
4691 .actions = NULL, .notifs = NULL};
Radek Krejciec4da802019-05-02 13:02:41 +02004692 struct lysp_grp *grp = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004693 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02004694 uint32_t grp_stack_count;
Radek Krejcie86bf772018-12-14 11:39:53 +01004695 int found;
4696 const char *id, *name, *prefix;
4697 size_t prefix_len, name_len;
4698 struct lys_module *mod, *mod_old;
Radek Krejci76b3e962018-12-14 17:01:25 +01004699 struct lysp_refine *rfn;
Radek Krejcia1911222019-07-22 17:24:50 +02004700 LY_ERR ret = LY_EVALID, rc;
Radek Krejcif2271f12019-01-07 16:42:23 +01004701 uint32_t min, max;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01004702 uint16_t flags;
Radek Krejcif2271f12019-01-07 16:42:23 +01004703 struct ly_set refined = {0};
Radek Krejci00b874b2019-02-12 10:54:50 +01004704 struct lysc_when **when, *when_shared;
Radek Krejci3641f562019-02-13 15:38:40 +01004705 struct lysp_augment **augments = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004706 LY_ARRAY_COUNT_TYPE actions_index = 0, notifs_index = 0;
Radek Krejcifc11bd72019-04-11 16:00:05 +02004707 struct lysc_notif **notifs = NULL;
4708 struct lysc_action **actions = NULL;
Radek Krejcie86bf772018-12-14 11:39:53 +01004709
4710 /* search for the grouping definition */
4711 found = 0;
4712 id = uses_p->name;
Radek Krejcib4a4a272019-06-10 12:44:52 +02004713 LY_CHECK_RET(ly_parse_nodeid(&id, &prefix, &prefix_len, &name, &name_len), LY_EVALID);
Radek Krejcie86bf772018-12-14 11:39:53 +01004714 if (prefix) {
4715 mod = lys_module_find_prefix(ctx->mod_def, prefix, prefix_len);
4716 if (!mod) {
4717 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci327de162019-06-14 12:52:07 +02004718 "Invalid prefix used for grouping reference.", uses_p->name);
Radek Krejcie86bf772018-12-14 11:39:53 +01004719 return LY_EVALID;
4720 }
4721 } else {
4722 mod = ctx->mod_def;
4723 }
4724 if (mod == ctx->mod_def) {
4725 for (node_p = uses_p->parent; !found && node_p; node_p = node_p->parent) {
Radek Krejciec4da802019-05-02 13:02:41 +02004726 grp = (struct lysp_grp*)lysp_node_groupings(node_p);
Radek Krejcie86bf772018-12-14 11:39:53 +01004727 LY_ARRAY_FOR(grp, u) {
4728 if (!strcmp(grp[u].name, name)) {
4729 grp = &grp[u];
4730 found = 1;
4731 break;
4732 }
4733 }
4734 }
4735 }
4736 if (!found) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004737 /* search in top-level groupings of the main module ... */
Radek Krejcie86bf772018-12-14 11:39:53 +01004738 grp = mod->parsed->groupings;
Radek Krejci76b3e962018-12-14 17:01:25 +01004739 if (grp) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004740 for (u = 0; !found && u < LY_ARRAY_COUNT(grp); ++u) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004741 if (!strcmp(grp[u].name, name)) {
4742 grp = &grp[u];
4743 found = 1;
4744 }
4745 }
4746 }
4747 if (!found && mod->parsed->includes) {
4748 /* ... and all the submodules */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004749 for (u = 0; !found && u < LY_ARRAY_COUNT(mod->parsed->includes); ++u) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004750 grp = mod->parsed->includes[u].submodule->groupings;
4751 if (grp) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004752 for (v = 0; !found && v < LY_ARRAY_COUNT(grp); ++v) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004753 if (!strcmp(grp[v].name, name)) {
4754 grp = &grp[v];
4755 found = 1;
4756 }
4757 }
4758 }
Radek Krejcie86bf772018-12-14 11:39:53 +01004759 }
4760 }
4761 }
4762 if (!found) {
4763 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4764 "Grouping \"%s\" referenced by a uses statement not found.", uses_p->name);
4765 return LY_EVALID;
4766 }
4767
4768 /* grouping must not reference themselves - stack in ctx maintains list of groupings currently being applied */
4769 grp_stack_count = ctx->groupings.count;
4770 ly_set_add(&ctx->groupings, (void*)grp, 0);
4771 if (grp_stack_count == ctx->groupings.count) {
4772 /* the target grouping is already in the stack, so we are already inside it -> circular dependency */
4773 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
4774 "Grouping \"%s\" references itself through a uses statement.", grp->name);
4775 return LY_EVALID;
4776 }
Radek Krejcif2de0ed2019-05-02 14:13:18 +02004777 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4778 /* remember that the grouping is instantiated to avoid its standalone validation */
4779 grp->flags |= LYS_USED_GRP;
4780 }
Radek Krejcie86bf772018-12-14 11:39:53 +01004781
4782 /* switch context's mod_def */
4783 mod_old = ctx->mod_def;
4784 ctx->mod_def = mod;
4785
4786 /* check status */
Radek Krejcifc11bd72019-04-11 16:00:05 +02004787 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 +01004788
Radek Krejcic6b4f442020-08-12 14:45:18 +02004789 /* remember the currently last child before processing the uses - it is needed to split the siblings to corretly
4790 * applu refine and augment only to the nodes from the uses */
4791 if (parent) {
4792 if (parent->nodetype == LYS_CASE) {
4793 child = (struct lysc_node*)lysc_node_children(parent->parent, ctx->options & LYSC_OPT_RPC_MASK);
4794 } else {
4795 child = (struct lysc_node*)lysc_node_children(parent, ctx->options & LYSC_OPT_RPC_MASK);
4796 }
4797 } else if (ctx->mod->compiled->data) {
4798 child = ctx->mod->compiled->data;
4799 } else {
4800 child = NULL;
4801 }
4802 /* remember the last child */
4803 if (child) {
4804 child = child->prev;
4805 }
4806
Radek Krejcifc11bd72019-04-11 16:00:05 +02004807 /* compile data nodes */
Radek Krejcie86bf772018-12-14 11:39:53 +01004808 LY_LIST_FOR(grp->data, node_p) {
Radek Krejcib1b59152019-01-07 13:21:56 +01004809 /* 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 +02004810 LY_CHECK_GOTO(lys_compile_node(ctx, node_p, parent, (uses_p->flags & LYS_STATUS_MASK) | 0x3), cleanup);
Radek Krejci01342af2019-01-03 15:18:08 +01004811 }
Radek Krejcic6b4f442020-08-12 14:45:18 +02004812
4813 /* split the children and add the uses's data into the fake context node */
4814 if (child) {
4815 context_node_fake.child = child->next;
4816 } else if (parent) {
4817 context_node_fake.child = (struct lysc_node*)lysc_node_children(parent, ctx->options & LYSC_OPT_RPC_MASK);
4818 } else if (ctx->mod->compiled->data) {
4819 context_node_fake.child = ctx->mod->compiled->data;
4820 }
4821 if (context_node_fake.child) {
4822 /* remember child as the last data node added by grouping to fix the list later */
4823 child = context_node_fake.child->prev;
4824 context_node_fake.child->prev = NULL;
4825 }
4826
Radek Krejci00b874b2019-02-12 10:54:50 +01004827 when_shared = NULL;
Radek Krejcic6b4f442020-08-12 14:45:18 +02004828 LY_LIST_FOR(context_node_fake.child, iter) {
4829 iter->parent = (struct lysc_node*)&context_node_fake;
Radek Krejci00b874b2019-02-12 10:54:50 +01004830
Radek Krejcifc11bd72019-04-11 16:00:05 +02004831 /* pass uses's when to all the data children, actions and notifications are ignored */
Radek Krejci00b874b2019-02-12 10:54:50 +01004832 if (uses_p->when) {
Radek Krejcic6b4f442020-08-12 14:45:18 +02004833 LY_ARRAY_NEW_GOTO(ctx->ctx, iter->when, when, ret, cleanup);
Radek Krejci00b874b2019-02-12 10:54:50 +01004834 if (!when_shared) {
Michal Vasko175012e2019-11-06 15:49:14 +01004835 LY_CHECK_GOTO(lys_compile_when(ctx, uses_p->when, uses_p->flags, parent, when), cleanup);
4836
4837 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4838 /* do not check "when" semantics in a grouping */
Radek Krejcic6b4f442020-08-12 14:45:18 +02004839 ly_set_add(&ctx->xpath, iter, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01004840 }
4841
Radek Krejci00b874b2019-02-12 10:54:50 +01004842 when_shared = *when;
4843 } else {
4844 ++when_shared->refcount;
4845 (*when) = when_shared;
Michal Vasko5c4e5892019-11-14 12:31:38 +01004846
4847 if (!(ctx->options & LYSC_OPT_GROUPING)) {
4848 /* in this case check "when" again for all children because of dummy node check */
Radek Krejcic6b4f442020-08-12 14:45:18 +02004849 ly_set_add(&ctx->xpath, iter, 0);
Michal Vasko5c4e5892019-11-14 12:31:38 +01004850 }
Radek Krejci00b874b2019-02-12 10:54:50 +01004851 }
4852 }
Radek Krejci01342af2019-01-03 15:18:08 +01004853 }
Radek Krejci76b3e962018-12-14 17:01:25 +01004854
Radek Krejcifc11bd72019-04-11 16:00:05 +02004855 /* compile actions */
4856 actions = parent ? lysc_node_actions_p(parent) : &ctx->mod->compiled->rpcs;
4857 if (actions) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004858 actions_index = *actions ? LY_ARRAY_COUNT(*actions) : 0;
Radek Krejciec4da802019-05-02 13:02:41 +02004859 COMPILE_ARRAY1_GOTO(ctx, grp->actions, *actions, parent, u, lys_compile_action, 0, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004860 if (*actions && (uses_p->augments || uses_p->refines)) {
4861 /* 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 +02004862 LY_ARRAY_CREATE_GOTO(ctx->ctx, context_node_fake.actions, LY_ARRAY_COUNT(*actions) - actions_index, ret, cleanup);
4863 LY_ARRAY_COUNT(context_node_fake.actions) = LY_ARRAY_COUNT(*actions) - actions_index;
4864 memcpy(context_node_fake.actions, &(*actions)[actions_index], LY_ARRAY_COUNT(context_node_fake.actions) * sizeof **actions);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004865 }
4866 }
4867
4868 /* compile notifications */
4869 notifs = parent ? lysc_node_notifs_p(parent) : &ctx->mod->compiled->notifs;
4870 if (notifs) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004871 notifs_index = *notifs ? LY_ARRAY_COUNT(*notifs) : 0;
Radek Krejciec4da802019-05-02 13:02:41 +02004872 COMPILE_ARRAY1_GOTO(ctx, grp->notifs, *notifs, parent, u, lys_compile_notif, 0, ret, cleanup);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004873 if (*notifs && (uses_p->augments || uses_p->refines)) {
4874 /* 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 +02004875 LY_ARRAY_CREATE_GOTO(ctx->ctx, context_node_fake.notifs, LY_ARRAY_COUNT(*notifs) - notifs_index, ret, cleanup);
4876 LY_ARRAY_COUNT(context_node_fake.notifs) = LY_ARRAY_COUNT(*notifs) - notifs_index;
4877 memcpy(context_node_fake.notifs, &(*notifs)[notifs_index], LY_ARRAY_COUNT(context_node_fake.notifs) * sizeof **notifs);
Radek Krejcifc11bd72019-04-11 16:00:05 +02004878 }
4879 }
4880
4881
Radek Krejci3641f562019-02-13 15:38:40 +01004882 /* sort and apply augments */
Radek Krejcifc11bd72019-04-11 16:00:05 +02004883 LY_CHECK_GOTO(lys_compile_augment_sort(ctx, uses_p->augments, NULL, &augments), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004884 LY_ARRAY_FOR(augments, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02004885 LY_CHECK_GOTO(lys_compile_augment(ctx, augments[u], (struct lysc_node*)&context_node_fake), cleanup);
Radek Krejci3641f562019-02-13 15:38:40 +01004886 }
Radek Krejci12fb9142019-01-08 09:45:30 +01004887
Radek Krejcif0089082019-01-07 16:42:01 +01004888 /* reload previous context's mod_def */
4889 ctx->mod_def = mod_old;
Radek Krejci327de162019-06-14 12:52:07 +02004890 lysc_update_path(ctx, NULL, "{refine}");
Radek Krejcif0089082019-01-07 16:42:01 +01004891
Radek Krejci76b3e962018-12-14 17:01:25 +01004892 /* apply refine */
4893 LY_ARRAY_FOR(uses_p->refines, struct lysp_refine, rfn) {
Radek Krejci327de162019-06-14 12:52:07 +02004894 lysc_update_path(ctx, NULL, rfn->nodeid);
4895
Radek Krejci7af64242019-02-18 13:07:53 +01004896 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 +01004897 0, 0, (const struct lysc_node**)&node, &flags),
Radek Krejcifc11bd72019-04-11 16:00:05 +02004898 cleanup);
Radek Krejcif2271f12019-01-07 16:42:23 +01004899 ly_set_add(&refined, node, LY_SET_OPT_USEASLIST);
Radek Krejci76b3e962018-12-14 17:01:25 +01004900
4901 /* default value */
4902 if (rfn->dflts) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004903 if ((node->nodetype != LYS_LEAFLIST) && LY_ARRAY_COUNT(rfn->dflts) > 1) {
Radek Krejci76b3e962018-12-14 17:01:25 +01004904 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004905 "Invalid refine of default - %s cannot hold %"LY_PRI_ARRAY_COUNT_TYPE" default values.",
4906 lys_nodetype2str(node->nodetype), LY_ARRAY_COUNT(rfn->dflts));
Radek Krejcifc11bd72019-04-11 16:00:05 +02004907 goto cleanup;
Radek Krejci76b3e962018-12-14 17:01:25 +01004908 }
4909 if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CHOICE))) {
4910 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02004911 "Invalid refine of default - %s cannot hold default value(s).",
4912 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02004913 goto cleanup;
Radek Krejci76b3e962018-12-14 17:01:25 +01004914 }
4915 if (node->nodetype == LYS_LEAF) {
Radek Krejcia1911222019-07-22 17:24:50 +02004916 struct ly_err_item *err = NULL;
4917 struct lysc_node_leaf *leaf = (struct lysc_node_leaf*)node;
4918 if (leaf->dflt) {
4919 /* remove the previous default value */
Radek Krejci474f9b82019-07-24 11:36:37 +02004920 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
Radek Krejcia1911222019-07-22 17:24:50 +02004921 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
4922 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
4923 } else {
4924 /* prepare a new one */
4925 leaf->dflt = calloc(1, sizeof *leaf->dflt);
4926 leaf->dflt->realtype = leaf->type;
4927 }
4928 /* parse the new one */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004929 leaf->dflt_mod = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02004930 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, rfn->dflts[0], strlen(rfn->dflts[0]),
4931 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02004932 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, node, NULL, leaf->dflt, NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02004933 leaf->dflt->realtype->refcount++;
4934 if (err) {
4935 ly_err_print(err);
4936 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4937 "Invalid refine of default - value \"%s\" does not fit the type (%s).", rfn->dflts[0], err->msg);
4938 ly_err_free(err);
4939 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02004940 if (rc == LY_EINCOMPLETE) {
4941 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02004942 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, node, leaf->dflt, leaf->dflt_mod), cleanup);
Radek Krejci1c0c3442019-07-23 16:08:47 +02004943
4944 /* but in general result is so far ok */
4945 rc = LY_SUCCESS;
4946 }
Radek Krejcia1911222019-07-22 17:24:50 +02004947 LY_CHECK_GOTO(rc, cleanup);
4948 leaf->flags |= LYS_SET_DFLT;
Radek Krejci76b3e962018-12-14 17:01:25 +01004949 } else if (node->nodetype == LYS_LEAFLIST) {
Radek Krejcia1911222019-07-22 17:24:50 +02004950 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist*)node;
4951
Radek Krejci0bcdaed2019-01-10 10:21:34 +01004952 if (ctx->mod->version < 2) {
Radek Krejci01342af2019-01-03 15:18:08 +01004953 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4954 "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 +02004955 goto cleanup;
Radek Krejci01342af2019-01-03 15:18:08 +01004956 }
Radek Krejcia1911222019-07-22 17:24:50 +02004957
4958 /* remove previous set of default values */
4959 LY_ARRAY_FOR(llist->dflts, u) {
Radek Krejci474f9b82019-07-24 11:36:37 +02004960 lysc_incomplete_dflts_remove(ctx, llist->dflts[u]);
Radek Krejcia1911222019-07-22 17:24:50 +02004961 llist->dflts[u]->realtype->plugin->free(ctx->ctx, llist->dflts[u]);
4962 lysc_type_free(ctx->ctx, llist->dflts[u]->realtype);
4963 free(llist->dflts[u]);
Radek Krejci76b3e962018-12-14 17:01:25 +01004964 }
Radek Krejcia1911222019-07-22 17:24:50 +02004965 LY_ARRAY_FREE(llist->dflts);
4966 llist->dflts = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004967 LY_ARRAY_FREE(llist->dflts_mods);
4968 llist->dflts_mods = NULL;
Radek Krejcia1911222019-07-22 17:24:50 +02004969
4970 /* create the new set of the default values */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02004971 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts_mods, LY_ARRAY_COUNT(rfn->dflts), ret, cleanup);
4972 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_COUNT(rfn->dflts), ret, cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01004973 LY_ARRAY_FOR(rfn->dflts, u) {
Radek Krejcia1911222019-07-22 17:24:50 +02004974 struct ly_err_item *err = NULL;
Radek Krejcid0ef1af2019-07-23 12:22:05 +02004975 LY_ARRAY_INCREMENT(llist->dflts_mods);
4976 llist->dflts_mods[u] = ctx->mod_def;
Radek Krejcia1911222019-07-22 17:24:50 +02004977 LY_ARRAY_INCREMENT(llist->dflts);
4978 llist->dflts[u] = calloc(1, sizeof *llist->dflts[u]);
4979 llist->dflts[u]->realtype = llist->type;
Radek Krejci1c0c3442019-07-23 16:08:47 +02004980 rc = llist->type->plugin->store(ctx->ctx, llist->type, rfn->dflts[u], strlen(rfn->dflts[u]),
Radek Krejcia1911222019-07-22 17:24:50 +02004981 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
Radek Krejci1c0c3442019-07-23 16:08:47 +02004982 lys_resolve_prefix, (void*)llist->dflts_mods[u], LYD_XML, node, NULL, llist->dflts[u], NULL, &err);
Radek Krejcia1911222019-07-22 17:24:50 +02004983 llist->dflts[u]->realtype->refcount++;
4984 if (err) {
4985 ly_err_print(err);
4986 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
4987 "Invalid refine of default in leaf-lists - value \"%s\" does not fit the type (%s).", rfn->dflts[u], err->msg);
4988 ly_err_free(err);
4989 }
Radek Krejci1c0c3442019-07-23 16:08:47 +02004990 if (rc == LY_EINCOMPLETE) {
4991 /* postpone default compilation when the tree is complete */
Radek Krejci474f9b82019-07-24 11:36:37 +02004992 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, node, llist->dflts[u], llist->dflts_mods[u]), cleanup);
Radek Krejci1c0c3442019-07-23 16:08:47 +02004993
4994 /* but in general result is so far ok */
4995 rc = LY_SUCCESS;
4996 }
4997 LY_CHECK_GOTO(rc, cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01004998 }
Radek Krejcia1911222019-07-22 17:24:50 +02004999 llist->flags |= LYS_SET_DFLT;
Radek Krejci76b3e962018-12-14 17:01:25 +01005000 } else if (node->nodetype == LYS_CHOICE) {
Radek Krejci01342af2019-01-03 15:18:08 +01005001 if (((struct lysc_node_choice*)node)->dflt) {
5002 /* unset LYS_SET_DFLT from the current default case */
5003 ((struct lysc_node_choice*)node)->dflt->flags &= ~LYS_SET_DFLT;
5004 }
Radek Krejcifc11bd72019-04-11 16:00:05 +02005005 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 +01005006 }
5007 }
5008
Radek Krejci12fb9142019-01-08 09:45:30 +01005009 /* description */
5010 if (rfn->dsc) {
5011 FREE_STRING(ctx->ctx, node->dsc);
5012 node->dsc = lydict_insert(ctx->ctx, rfn->dsc, 0);
5013 }
5014
5015 /* reference */
5016 if (rfn->ref) {
5017 FREE_STRING(ctx->ctx, node->ref);
5018 node->ref = lydict_insert(ctx->ctx, rfn->ref, 0);
5019 }
Radek Krejci76b3e962018-12-14 17:01:25 +01005020
5021 /* config */
5022 if (rfn->flags & LYS_CONFIG_MASK) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005023 if (!flags) {
Radek Krejci327de162019-06-14 12:52:07 +02005024 LY_CHECK_GOTO(lys_compile_change_config(ctx, node, rfn->flags, 0, 1), cleanup);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005025 } else {
5026 LOGWRN(ctx->ctx, "Refining config inside %s has no effect (%s).",
Michal Vaskoa3881362020-01-21 15:57:35 +01005027 flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action", ctx->path);
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005028 }
Radek Krejci76b3e962018-12-14 17:01:25 +01005029 }
5030
5031 /* mandatory */
5032 if (rfn->flags & LYS_MAND_MASK) {
Radek Krejci327de162019-06-14 12:52:07 +02005033 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, node, rfn->flags, 1), cleanup);
Radek Krejci76b3e962018-12-14 17:01:25 +01005034 }
Radek Krejci9a54f1f2019-01-07 13:47:55 +01005035
5036 /* presence */
5037 if (rfn->presence) {
5038 if (node->nodetype != LYS_CONTAINER) {
5039 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005040 "Invalid refine of presence statement - %s cannot hold the presence statement.",
5041 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005042 goto cleanup;
Radek Krejci9a54f1f2019-01-07 13:47:55 +01005043 }
5044 node->flags |= LYS_PRESENCE;
5045 }
Radek Krejci9a564c92019-01-07 14:53:57 +01005046
5047 /* must */
5048 if (rfn->musts) {
5049 switch (node->nodetype) {
5050 case LYS_LEAF:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005051 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 +01005052 break;
5053 case LYS_LEAFLIST:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005054 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 +01005055 break;
5056 case LYS_LIST:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005057 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 +01005058 break;
5059 case LYS_CONTAINER:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005060 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 +01005061 break;
5062 case LYS_ANYXML:
5063 case LYS_ANYDATA:
Radek Krejcic71ac5b2019-09-10 15:34:22 +02005064 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 +01005065 break;
5066 default:
5067 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005068 "Invalid refine of must statement - %s cannot hold any must statement.",
5069 lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005070 goto cleanup;
Radek Krejci9a564c92019-01-07 14:53:57 +01005071 }
Michal Vasko004d3152020-06-11 19:59:22 +02005072 ly_set_add(&ctx->xpath, node, 0);
Radek Krejci9a564c92019-01-07 14:53:57 +01005073 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005074
5075 /* min/max-elements */
5076 if (rfn->flags & (LYS_SET_MAX | LYS_SET_MIN)) {
5077 switch (node->nodetype) {
5078 case LYS_LEAFLIST:
5079 if (rfn->flags & LYS_SET_MAX) {
5080 ((struct lysc_node_leaflist*)node)->max = rfn->max ? rfn->max : (uint32_t)-1;
5081 }
5082 if (rfn->flags & LYS_SET_MIN) {
5083 ((struct lysc_node_leaflist*)node)->min = rfn->min;
Radek Krejcife909632019-02-12 15:34:42 +01005084 if (rfn->min) {
5085 node->flags |= LYS_MAND_TRUE;
5086 lys_compile_mandatory_parents(node->parent, 1);
5087 } else {
5088 node->flags &= ~LYS_MAND_TRUE;
5089 lys_compile_mandatory_parents(node->parent, 0);
5090 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005091 }
5092 break;
5093 case LYS_LIST:
5094 if (rfn->flags & LYS_SET_MAX) {
5095 ((struct lysc_node_list*)node)->max = rfn->max ? rfn->max : (uint32_t)-1;
5096 }
5097 if (rfn->flags & LYS_SET_MIN) {
5098 ((struct lysc_node_list*)node)->min = rfn->min;
Radek Krejcife909632019-02-12 15:34:42 +01005099 if (rfn->min) {
5100 node->flags |= LYS_MAND_TRUE;
5101 lys_compile_mandatory_parents(node->parent, 1);
5102 } else {
5103 node->flags &= ~LYS_MAND_TRUE;
5104 lys_compile_mandatory_parents(node->parent, 0);
5105 }
Radek Krejci6b22ab72019-01-07 15:39:20 +01005106 }
5107 break;
5108 default:
5109 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005110 "Invalid refine of %s statement - %s cannot hold this statement.",
5111 (rfn->flags & LYS_SET_MAX) ? "max-elements" : "min-elements", lys_nodetype2str(node->nodetype));
Radek Krejcifc11bd72019-04-11 16:00:05 +02005112 goto cleanup;
Radek Krejci6b22ab72019-01-07 15:39:20 +01005113 }
5114 }
Radek Krejcif0089082019-01-07 16:42:01 +01005115
5116 /* if-feature */
5117 if (rfn->iffeatures) {
5118 /* any node in compiled tree can get additional if-feature, so do not check nodetype */
Radek Krejciec4da802019-05-02 13:02:41 +02005119 COMPILE_ARRAY_GOTO(ctx, rfn->iffeatures, node->iffeatures, u, lys_compile_iffeature, ret, cleanup);
Radek Krejcif0089082019-01-07 16:42:01 +01005120 }
Radek Krejci327de162019-06-14 12:52:07 +02005121
5122 lysc_update_path(ctx, NULL, NULL);
Radek Krejci01342af2019-01-03 15:18:08 +01005123 }
Radek Krejcie86bf772018-12-14 11:39:53 +01005124
Radek Krejcif2271f12019-01-07 16:42:23 +01005125 /* do some additional checks of the changed nodes when all the refines are applied */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02005126 for (uint32_t i = 0; i < refined.count; ++i) {
5127 node = (struct lysc_node*)refined.objs[i];
5128 rfn = &uses_p->refines[i];
Radek Krejci327de162019-06-14 12:52:07 +02005129 lysc_update_path(ctx, NULL, rfn->nodeid);
Radek Krejcif2271f12019-01-07 16:42:23 +01005130
5131 /* check possible conflict with default value (default added, mandatory left true) */
5132 if ((node->flags & LYS_MAND_TRUE) &&
5133 (((node->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)node)->dflt) ||
5134 ((node->nodetype & LYS_LEAF) && (node->flags & LYS_SET_DFLT)))) {
5135 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005136 "Invalid refine of default - the node is mandatory.");
Radek Krejcifc11bd72019-04-11 16:00:05 +02005137 goto cleanup;
Radek Krejcif2271f12019-01-07 16:42:23 +01005138 }
5139
5140 if (rfn->flags & (LYS_SET_MAX | LYS_SET_MIN)) {
5141 if (node->nodetype == LYS_LIST) {
5142 min = ((struct lysc_node_list*)node)->min;
5143 max = ((struct lysc_node_list*)node)->max;
5144 } else {
5145 min = ((struct lysc_node_leaflist*)node)->min;
5146 max = ((struct lysc_node_leaflist*)node)->max;
5147 }
5148 if (min > max) {
5149 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
Radek Krejci327de162019-06-14 12:52:07 +02005150 "Invalid refine of %s statement - \"min-elements\" is bigger than \"max-elements\".",
5151 (rfn->flags & LYS_SET_MAX) ? "max-elements" : "min-elements");
Radek Krejcifc11bd72019-04-11 16:00:05 +02005152 goto cleanup;
Radek Krejcif2271f12019-01-07 16:42:23 +01005153 }
5154 }
5155 }
5156
Radek Krejcic6b4f442020-08-12 14:45:18 +02005157 if (first_p) {
5158 *first_p = context_node_fake.child;
5159 }
Radek Krejci327de162019-06-14 12:52:07 +02005160 lysc_update_path(ctx, NULL, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01005161 ret = LY_SUCCESS;
Radek Krejcifc11bd72019-04-11 16:00:05 +02005162
5163cleanup:
5164 /* fix connection of the children nodes from fake context node back into the parent */
5165 if (context_node_fake.child) {
5166 context_node_fake.child->prev = child;
5167 }
5168 LY_LIST_FOR(context_node_fake.child, child) {
5169 child->parent = parent;
5170 }
5171
5172 if (uses_p->augments || uses_p->refines) {
5173 /* return back actions and notifications in case they were separated for augment/refine processing */
Radek Krejci65e20e22019-04-12 09:44:37 +02005174 if (context_node_fake.actions) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005175 memcpy(&(*actions)[actions_index], context_node_fake.actions, LY_ARRAY_COUNT(context_node_fake.actions) * sizeof **actions);
Radek Krejcifc11bd72019-04-11 16:00:05 +02005176 LY_ARRAY_FREE(context_node_fake.actions);
5177 }
Radek Krejci65e20e22019-04-12 09:44:37 +02005178 if (context_node_fake.notifs) {
Michal Vaskofd69e1d2020-07-03 11:57:17 +02005179 memcpy(&(*notifs)[notifs_index], context_node_fake.notifs, LY_ARRAY_COUNT(context_node_fake.notifs) * sizeof **notifs);
Radek Krejcifc11bd72019-04-11 16:00:05 +02005180 LY_ARRAY_FREE(context_node_fake.notifs);
5181 }
5182 }
5183
Radek Krejcie86bf772018-12-14 11:39:53 +01005184 /* reload previous context's mod_def */
5185 ctx->mod_def = mod_old;
5186 /* remove the grouping from the stack for circular groupings dependency check */
5187 ly_set_rm_index(&ctx->groupings, ctx->groupings.count - 1, NULL);
5188 assert(ctx->groupings.count == grp_stack_count);
Radek Krejcif2271f12019-01-07 16:42:23 +01005189 ly_set_erase(&refined, NULL);
Radek Krejci3641f562019-02-13 15:38:40 +01005190 LY_ARRAY_FREE(augments);
Radek Krejcie86bf772018-12-14 11:39:53 +01005191
5192 return ret;
5193}
5194
Radek Krejci327de162019-06-14 12:52:07 +02005195static int
5196lys_compile_grouping_pathlog(struct lysc_ctx *ctx, struct lysp_node *node, char **path)
5197{
5198 struct lysp_node *iter;
5199 int len = 0;
5200
5201 *path = NULL;
5202 for (iter = node; iter && len >= 0; iter = iter->parent) {
5203 char *s = *path;
5204 char *id;
5205
5206 switch (iter->nodetype) {
5207 case LYS_USES:
Radek Krejci200f1062020-07-11 22:51:03 +02005208 LY_CHECK_RET(asprintf(&id, "{uses='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005209 break;
5210 case LYS_GROUPING:
Radek Krejci200f1062020-07-11 22:51:03 +02005211 LY_CHECK_RET(asprintf(&id, "{grouping='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005212 break;
5213 case LYS_AUGMENT:
Radek Krejci200f1062020-07-11 22:51:03 +02005214 LY_CHECK_RET(asprintf(&id, "{augment='%s'}", iter->name) == -1, -1);
Radek Krejci327de162019-06-14 12:52:07 +02005215 break;
5216 default:
5217 id = strdup(iter->name);
5218 break;
5219 }
5220
5221 if (!iter->parent) {
5222 /* print prefix */
5223 len = asprintf(path, "/%s:%s%s", ctx->mod->name, id, s ? s : "");
5224 } else {
5225 /* prefix is the same as in parent */
5226 len = asprintf(path, "/%s%s", id, s ? s : "");
5227 }
5228 free(s);
5229 free(id);
5230 }
5231
5232 if (len < 0) {
5233 free(*path);
5234 *path = NULL;
5235 } else if (len == 0) {
5236 *path = strdup("/");
5237 len = 1;
5238 }
5239 return len;
5240}
5241
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005242/**
5243 * @brief Validate groupings that were defined but not directly used in the schema itself.
5244 *
5245 * The grouping does not need to be compiled (and it is compiled here, but the result is forgotten immediately),
5246 * but to have the complete result of the schema validity, even such groupings are supposed to be checked.
5247 */
5248static LY_ERR
5249lys_compile_grouping(struct lysc_ctx *ctx, struct lysp_node *node_p, struct lysp_grp *grp)
5250{
5251 LY_ERR ret;
Radek Krejci327de162019-06-14 12:52:07 +02005252 char *path;
5253 int len;
5254
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005255 struct lysp_node_uses fake_uses = {
5256 .parent = node_p,
5257 .nodetype = LYS_USES,
5258 .flags = 0, .next = NULL,
5259 .name = grp->name,
5260 .dsc = NULL, .ref = NULL, .when = NULL, .iffeatures = NULL, .exts = NULL,
5261 .refines = NULL, .augments = NULL
5262 };
5263 struct lysc_node_container fake_container = {
5264 .nodetype = LYS_CONTAINER,
5265 .flags = node_p ? (node_p->flags & LYS_FLAGS_COMPILED_MASK) : 0,
5266 .module = ctx->mod,
5267 .sp = NULL, .parent = NULL, .next = NULL,
5268 .prev = (struct lysc_node*)&fake_container,
5269 .name = "fake",
5270 .dsc = NULL, .ref = NULL, .exts = NULL, .iffeatures = NULL, .when = NULL,
5271 .child = NULL, .musts = NULL, .actions = NULL, .notifs = NULL
5272 };
5273
5274 if (grp->parent) {
5275 LOGWRN(ctx->ctx, "Locally scoped grouping \"%s\" not used.", grp->name);
5276 }
Radek Krejci327de162019-06-14 12:52:07 +02005277
5278 len = lys_compile_grouping_pathlog(ctx, grp->parent, &path);
5279 if (len < 0) {
5280 LOGMEM(ctx->ctx);
5281 return LY_EMEM;
5282 }
5283 strncpy(ctx->path, path, LYSC_CTX_BUFSIZE - 1);
5284 ctx->path_len = (uint16_t)len;
5285 free(path);
5286
5287 lysc_update_path(ctx, NULL, "{grouping}");
5288 lysc_update_path(ctx, NULL, grp->name);
Radek Krejcic6b4f442020-08-12 14:45:18 +02005289 ret = lys_compile_uses(ctx, &fake_uses, (struct lysc_node*)&fake_container, NULL);
Radek Krejci327de162019-06-14 12:52:07 +02005290 lysc_update_path(ctx, NULL, NULL);
5291 lysc_update_path(ctx, NULL, NULL);
5292
5293 ctx->path_len = 1;
5294 ctx->path[1] = '\0';
Radek Krejcif2de0ed2019-05-02 14:13:18 +02005295
5296 /* cleanup */
5297 lysc_node_container_free(ctx->ctx, &fake_container);
5298
5299 return ret;
5300}
Radek Krejcife909632019-02-12 15:34:42 +01005301
Radek Krejcie86bf772018-12-14 11:39:53 +01005302/**
Radek Krejcia3045382018-11-22 14:30:31 +01005303 * @brief Compile parsed schema node information.
5304 * @param[in] ctx Compile context
5305 * @param[in] node_p Parsed schema node.
Radek Krejcia3045382018-11-22 14:30:31 +01005306 * @param[in] parent Compiled parent node where the current node is supposed to be connected. It is
5307 * NULL for top-level nodes, in such a case the module where the node will be connected is taken from
5308 * the compile context.
Radek Krejcib1b59152019-01-07 13:21:56 +01005309 * @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).
5310 * Zero means no uses, non-zero value with no status bit set mean the default status.
Radek Krejcia3045382018-11-22 14:30:31 +01005311 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
5312 */
Radek Krejci19a96102018-11-15 13:38:09 +01005313static LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02005314lys_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 +01005315{
Radek Krejci1c54f462020-05-12 17:25:34 +02005316 LY_ERR ret = LY_SUCCESS;
Radek Krejcic6b4f442020-08-12 14:45:18 +02005317 struct lysc_node *node = NULL;
5318 struct lysc_node_case *cs = NULL;
Radek Krejci00b874b2019-02-12 10:54:50 +01005319 struct lysc_when **when;
Radek Krejci19a96102018-11-15 13:38:09 +01005320 unsigned int u;
Radek Krejciec4da802019-05-02 13:02:41 +02005321 LY_ERR (*node_compile_spec)(struct lysc_ctx*, struct lysp_node*, struct lysc_node*);
Radek Krejci19a96102018-11-15 13:38:09 +01005322
Radek Krejci327de162019-06-14 12:52:07 +02005323 if (node_p->nodetype != LYS_USES) {
5324 lysc_update_path(ctx, parent, node_p->name);
5325 } else {
5326 lysc_update_path(ctx, NULL, "{uses}");
5327 lysc_update_path(ctx, NULL, node_p->name);
5328 }
5329
Radek Krejci19a96102018-11-15 13:38:09 +01005330 switch (node_p->nodetype) {
5331 case LYS_CONTAINER:
5332 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_container));
5333 node_compile_spec = lys_compile_node_container;
5334 break;
5335 case LYS_LEAF:
5336 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_leaf));
5337 node_compile_spec = lys_compile_node_leaf;
5338 break;
5339 case LYS_LIST:
5340 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_list));
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005341 node_compile_spec = lys_compile_node_list;
Radek Krejci19a96102018-11-15 13:38:09 +01005342 break;
5343 case LYS_LEAFLIST:
5344 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_leaflist));
Radek Krejci0e5d8382018-11-28 16:37:53 +01005345 node_compile_spec = lys_compile_node_leaflist;
Radek Krejci19a96102018-11-15 13:38:09 +01005346 break;
Radek Krejci19a96102018-11-15 13:38:09 +01005347 case LYS_CHOICE:
5348 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_choice));
Radek Krejci056d0a82018-12-06 16:57:25 +01005349 node_compile_spec = lys_compile_node_choice;
Radek Krejci19a96102018-11-15 13:38:09 +01005350 break;
Radek Krejci19a96102018-11-15 13:38:09 +01005351 case LYS_ANYXML:
5352 case LYS_ANYDATA:
5353 node = (struct lysc_node*)calloc(1, sizeof(struct lysc_node_anydata));
Radek Krejci9800fb82018-12-13 14:26:23 +01005354 node_compile_spec = lys_compile_node_any;
Radek Krejci19a96102018-11-15 13:38:09 +01005355 break;
Radek Krejcie86bf772018-12-14 11:39:53 +01005356 case LYS_USES:
Radek Krejcic6b4f442020-08-12 14:45:18 +02005357 if (parent && parent->nodetype == LYS_CHOICE) {
5358 assert(node_p->parent->nodetype == LYS_CASE);
5359 lysc_update_path(ctx, parent, node_p->parent->name);
5360 cs = lys_compile_node_case(ctx, node_p->parent, (struct lysc_node_choice*)parent, NULL);
5361 LY_CHECK_ERR_GOTO(!cs, ret = LY_EVALID, error);
5362 }
5363
5364 ret = lys_compile_uses(ctx, (struct lysp_node_uses*)node_p, cs ? (struct lysc_node*)cs : parent, &node);
5365 if (cs) {
5366 cs->child = node;
5367 lysc_update_path(ctx, NULL, NULL);
5368 }
Radek Krejci327de162019-06-14 12:52:07 +02005369 lysc_update_path(ctx, NULL, NULL);
5370 lysc_update_path(ctx, NULL, NULL);
5371 return ret;
Radek Krejci19a96102018-11-15 13:38:09 +01005372 default:
5373 LOGINT(ctx->ctx);
5374 return LY_EINT;
5375 }
5376 LY_CHECK_ERR_RET(!node, LOGMEM(ctx->ctx), LY_EMEM);
5377 node->nodetype = node_p->nodetype;
5378 node->module = ctx->mod;
5379 node->prev = node;
Radek Krejci0e5d8382018-11-28 16:37:53 +01005380 node->flags = node_p->flags & LYS_FLAGS_COMPILED_MASK;
Radek Krejci19a96102018-11-15 13:38:09 +01005381
5382 /* config */
Radek Krejciec4da802019-05-02 13:02:41 +02005383 if (ctx->options & (LYSC_OPT_RPC_INPUT | LYSC_OPT_RPC_OUTPUT)) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005384 /* ignore config statements inside RPC/action data */
Radek Krejcifc11bd72019-04-11 16:00:05 +02005385 node->flags &= ~LYS_CONFIG_MASK;
Radek Krejciec4da802019-05-02 13:02:41 +02005386 node->flags |= (ctx->options & LYSC_OPT_RPC_INPUT) ? LYS_CONFIG_W : LYS_CONFIG_R;
5387 } else if (ctx->options & LYSC_OPT_NOTIFICATION) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005388 /* ignore config statements inside Notification data */
Radek Krejcifc11bd72019-04-11 16:00:05 +02005389 node->flags &= ~LYS_CONFIG_MASK;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005390 node->flags |= LYS_CONFIG_R;
5391 } else if (!(node->flags & LYS_CONFIG_MASK)) {
Radek Krejci19a96102018-11-15 13:38:09 +01005392 /* config not explicitely set, inherit it from parent */
5393 if (parent) {
5394 node->flags |= parent->flags & LYS_CONFIG_MASK;
5395 } else {
5396 /* default is config true */
5397 node->flags |= LYS_CONFIG_W;
5398 }
Radek Krejci93dcc392019-02-19 10:43:38 +01005399 } else {
5400 /* config set explicitely */
5401 node->flags |= LYS_SET_CONFIG;
Radek Krejci19a96102018-11-15 13:38:09 +01005402 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005403 if (parent && (parent->flags & LYS_CONFIG_R) && (node->flags & LYS_CONFIG_W)) {
5404 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
5405 "Configuration node cannot be child of any state data node.");
Radek Krejci1c54f462020-05-12 17:25:34 +02005406 ret = LY_EVALID;
Radek Krejci9bb94eb2018-12-04 16:48:35 +01005407 goto error;
5408 }
Radek Krejci19a96102018-11-15 13:38:09 +01005409
Radek Krejcia6d57732018-11-29 13:40:37 +01005410 /* *list ordering */
5411 if (node->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
5412 if ((node->flags & LYS_CONFIG_R) && (node->flags & LYS_ORDBY_MASK)) {
Radek Krejcifc11bd72019-04-11 16:00:05 +02005413 LOGWRN(ctx->ctx, "The ordered-by statement is ignored in lists representing %s (%s).",
Radek Krejciec4da802019-05-02 13:02:41 +02005414 (ctx->options & LYSC_OPT_RPC_OUTPUT) ? "RPC/action output parameters" :
5415 (ctx->options & LYSC_OPT_NOTIFICATION) ? "notification content" : "state data", ctx->path);
Radek Krejcia6d57732018-11-29 13:40:37 +01005416 node->flags &= ~LYS_ORDBY_MASK;
5417 node->flags |= LYS_ORDBY_SYSTEM;
5418 } else if (!(node->flags & LYS_ORDBY_MASK)) {
5419 /* default ordering is system */
5420 node->flags |= LYS_ORDBY_SYSTEM;
5421 }
5422 }
5423
Radek Krejci19a96102018-11-15 13:38:09 +01005424 /* status - it is not inherited by specification, but it does not make sense to have
5425 * current in deprecated or deprecated in obsolete, so we do print warning and inherit status */
Radek Krejci056d0a82018-12-06 16:57:25 +01005426 if (!parent || parent->nodetype != LYS_CHOICE) {
5427 /* in case of choice/case's children, postpone the check to the moment we know if
5428 * 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 +02005429 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 +01005430 }
5431
Radek Krejciec4da802019-05-02 13:02:41 +02005432 if (!(ctx->options & LYSC_OPT_FREE_SP)) {
Radek Krejci19a96102018-11-15 13:38:09 +01005433 node->sp = node_p;
5434 }
5435 DUP_STRING(ctx->ctx, node_p->name, node->name);
Radek Krejci12fb9142019-01-08 09:45:30 +01005436 DUP_STRING(ctx->ctx, node_p->dsc, node->dsc);
5437 DUP_STRING(ctx->ctx, node_p->ref, node->ref);
Radek Krejci00b874b2019-02-12 10:54:50 +01005438 if (node_p->when) {
5439 LY_ARRAY_NEW_GOTO(ctx->ctx, node->when, when, ret, error);
Radek Krejci1c54f462020-05-12 17:25:34 +02005440 LY_CHECK_GOTO(ret = lys_compile_when(ctx, node_p->when, node_p->flags, node, when), error);
Michal Vasko175012e2019-11-06 15:49:14 +01005441
5442 if (!(ctx->options & LYSC_OPT_GROUPING)) {
5443 /* do not check "when" semantics in a grouping */
Michal Vasko004d3152020-06-11 19:59:22 +02005444 ly_set_add(&ctx->xpath, node, 0);
Michal Vasko175012e2019-11-06 15:49:14 +01005445 }
Radek Krejci00b874b2019-02-12 10:54:50 +01005446 }
Radek Krejciec4da802019-05-02 13:02:41 +02005447 COMPILE_ARRAY_GOTO(ctx, node_p->iffeatures, node->iffeatures, u, lys_compile_iffeature, ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01005448
5449 /* nodetype-specific part */
Radek Krejci1c54f462020-05-12 17:25:34 +02005450 LY_CHECK_GOTO(ret = node_compile_spec(ctx, node_p, node), error);
Radek Krejci19a96102018-11-15 13:38:09 +01005451
Radek Krejci0935f412019-08-20 16:15:18 +02005452 COMPILE_EXTS_GOTO(ctx, node_p->exts, node->exts, node, LYEXT_PAR_NODE, ret, error);
5453
Radek Krejcife909632019-02-12 15:34:42 +01005454 /* inherit LYS_MAND_TRUE in parent containers */
5455 if (node->flags & LYS_MAND_TRUE) {
5456 lys_compile_mandatory_parents(parent, 1);
5457 }
5458
Radek Krejci327de162019-06-14 12:52:07 +02005459 lysc_update_path(ctx, NULL, NULL);
5460
Radek Krejci19a96102018-11-15 13:38:09 +01005461 /* insert into parent's children */
Radek Krejcia3045382018-11-22 14:30:31 +01005462 if (parent) {
5463 if (parent->nodetype == LYS_CHOICE) {
Radek Krejci327de162019-06-14 12:52:07 +02005464 if (node_p->parent->nodetype == LYS_CASE) {
5465 lysc_update_path(ctx, parent, node_p->parent->name);
5466 } else {
5467 lysc_update_path(ctx, parent, node->name);
5468 }
Radek Krejciec4da802019-05-02 13:02:41 +02005469 cs = lys_compile_node_case(ctx, node_p->parent, (struct lysc_node_choice*)parent, node);
Radek Krejci056d0a82018-12-06 16:57:25 +01005470 LY_CHECK_ERR_GOTO(!cs, ret = LY_EVALID, error);
Radek Krejcib1b59152019-01-07 13:21:56 +01005471 if (uses_status) {
5472
5473 }
Radek Krejci056d0a82018-12-06 16:57:25 +01005474 /* the postponed status check of the node and its real parent - in case of implicit case,
Radek Krejcib1b59152019-01-07 13:21:56 +01005475 * it directly gets the same status flags as the choice;
5476 * uses_status cannot be applied here since uses cannot be child statement of choice */
Radek Krejci1c54f462020-05-12 17:25:34 +02005477 LY_CHECK_GOTO(ret = lys_compile_status(ctx, &node->flags, cs->flags), error);
Radek Krejci056d0a82018-12-06 16:57:25 +01005478 node->parent = (struct lysc_node*)cs;
Radek Krejci327de162019-06-14 12:52:07 +02005479 lysc_update_path(ctx, parent, node->name);
Radek Krejci056d0a82018-12-06 16:57:25 +01005480 } else { /* other than choice */
Radek Krejci327de162019-06-14 12:52:07 +02005481 lysc_update_path(ctx, parent, node->name);
Radek Krejci056d0a82018-12-06 16:57:25 +01005482 node->parent = parent;
Radek Krejci19a96102018-11-15 13:38:09 +01005483 }
Radek Krejciec4da802019-05-02 13:02:41 +02005484 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 +02005485
5486 if (parent->nodetype == LYS_CHOICE) {
5487 lysc_update_path(ctx, NULL, NULL);
5488 }
Radek Krejci19a96102018-11-15 13:38:09 +01005489 } else {
5490 /* top-level element */
5491 if (!ctx->mod->compiled->data) {
5492 ctx->mod->compiled->data = node;
5493 } else {
5494 /* insert at the end of the module's top-level nodes list */
5495 ctx->mod->compiled->data->prev->next = node;
5496 node->prev = ctx->mod->compiled->data->prev;
5497 ctx->mod->compiled->data->prev = node;
5498 }
Radek Krejci327de162019-06-14 12:52:07 +02005499 lysc_update_path(ctx, parent, node->name);
Radek Krejci76b3e962018-12-14 17:01:25 +01005500 if (lys_compile_node_uniqness(ctx, ctx->mod->compiled->data, ctx->mod->compiled->rpcs,
5501 ctx->mod->compiled->notifs, node->name, node)) {
5502 return LY_EVALID;
5503 }
Radek Krejci19a96102018-11-15 13:38:09 +01005504 }
Radek Krejci327de162019-06-14 12:52:07 +02005505 lysc_update_path(ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01005506
5507 return LY_SUCCESS;
5508
5509error:
5510 lysc_node_free(ctx->ctx, node);
5511 return ret;
5512}
5513
Radek Krejciccd20f12019-02-15 14:12:27 +01005514static void
5515lysc_disconnect(struct lysc_node *node)
5516{
Radek Krejci0a048dd2019-02-18 16:01:43 +01005517 struct lysc_node *parent, *child, *prev = NULL, *next;
5518 struct lysc_node_case *cs = NULL;
Radek Krejciccd20f12019-02-15 14:12:27 +01005519 int remove_cs = 0;
5520
5521 parent = node->parent;
5522
5523 /* parent's first child */
5524 if (!parent) {
5525 return;
5526 }
5527 if (parent->nodetype == LYS_CHOICE) {
Radek Krejci0a048dd2019-02-18 16:01:43 +01005528 cs = (struct lysc_node_case*)node;
5529 } else if (parent->nodetype == LYS_CASE) {
5530 /* disconnecting some node in a case */
5531 cs = (struct lysc_node_case*)parent;
5532 parent = cs->parent;
5533 for (child = cs->child; child && child->parent == (struct lysc_node*)cs; child = child->next) {
5534 if (child == node) {
5535 if (cs->child == child) {
5536 if (!child->next || child->next->parent != (struct lysc_node*)cs) {
5537 /* case with a single child -> remove also the case */
5538 child->parent = NULL;
5539 remove_cs = 1;
5540 } else {
5541 cs->child = child->next;
Radek Krejciccd20f12019-02-15 14:12:27 +01005542 }
5543 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005544 break;
Radek Krejciccd20f12019-02-15 14:12:27 +01005545 }
5546 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005547 if (!remove_cs) {
5548 cs = NULL;
5549 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005550 } else if (lysc_node_children(parent, node->flags) == node) {
5551 *lysc_node_children_p(parent, node->flags) = node->next;
Radek Krejci0a048dd2019-02-18 16:01:43 +01005552 }
5553
5554 if (cs) {
5555 if (remove_cs) {
5556 /* cs has only one child which is being also removed */
5557 lysc_disconnect((struct lysc_node*)cs);
5558 lysc_node_free(cs->module->ctx, (struct lysc_node*)cs);
5559 } else {
Radek Krejciccd20f12019-02-15 14:12:27 +01005560 if (((struct lysc_node_choice*)parent)->dflt == cs) {
5561 /* default case removed */
5562 ((struct lysc_node_choice*)parent)->dflt = NULL;
5563 }
5564 if (((struct lysc_node_choice*)parent)->cases == cs) {
5565 /* first case removed */
5566 ((struct lysc_node_choice*)parent)->cases = (struct lysc_node_case*)cs->next;
5567 }
Radek Krejci0a048dd2019-02-18 16:01:43 +01005568 if (cs->child) {
5569 /* cs will be removed and disconnected from its siblings, but we have to take care also about its children */
5570 if (cs->child->prev->parent != (struct lysc_node*)cs) {
5571 prev = cs->child->prev;
5572 } /* else all the children are under a single case */
5573 LY_LIST_FOR_SAFE(cs->child, next, child) {
5574 if (child->parent != (struct lysc_node*)cs) {
5575 break;
5576 }
5577 lysc_node_free(node->module->ctx, child);
5578 }
5579 if (prev) {
5580 if (prev->next) {
5581 prev->next = child;
5582 }
5583 if (child) {
5584 child->prev = prev;
5585 } else {
5586 /* link from the first child under the cases */
5587 ((struct lysc_node_choice*)cs->parent)->cases->child->prev = prev;
5588 }
5589 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005590 }
5591 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005592 }
5593
5594 /* siblings */
Radek Krejci0a048dd2019-02-18 16:01:43 +01005595 if (node->prev->next) {
5596 node->prev->next = node->next;
5597 }
Radek Krejciccd20f12019-02-15 14:12:27 +01005598 if (node->next) {
5599 node->next->prev = node->prev;
Radek Krejci0a048dd2019-02-18 16:01:43 +01005600 } else if (node->nodetype != LYS_CASE) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +01005601 child = (struct lysc_node*)lysc_node_children(parent, node->flags);
Radek Krejci0a048dd2019-02-18 16:01:43 +01005602 if (child) {
5603 child->prev = node->prev;
5604 }
5605 } else if (((struct lysc_node_choice*)parent)->cases) {
5606 ((struct lysc_node_choice*)parent)->cases->prev = node->prev;
Radek Krejciccd20f12019-02-15 14:12:27 +01005607 }
5608}
5609
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02005610struct lysc_deviation {
5611 const char *nodeid;
5612 struct lysc_node *target; /* target node of the deviation */
5613 struct lysp_deviate** deviates;/* sized array of pointers to parsed deviate statements to apply on target */
5614 uint16_t flags; /* target's flags from lys_resolve_schema_nodeid() */
5615 uint8_t not_supported; /* flag if deviates contains not-supported deviate */
5616};
5617
Michal Vaskoccc062a2020-08-13 08:34:50 +02005618/* MACROS for deviates checking */
5619#define DEV_CHECK_NODETYPE(NODETYPES, DEVTYPE, PROPERTY) \
5620 if (!(target->nodetype & (NODETYPES))) { \
5621 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE, lys_nodetype2str(target->nodetype), DEVTYPE, PROPERTY);\
5622 goto cleanup; \
5623 }
5624
5625#define DEV_CHECK_CARDINALITY(ARRAY, MAX, PROPERTY) \
5626 if (LY_ARRAY_COUNT(ARRAY) > MAX) { \
5627 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid deviation of %s with too many (%"LY_PRI_ARRAY_COUNT_TYPE") %s properties.", \
5628 lys_nodetype2str(target->nodetype), LY_ARRAY_COUNT(ARRAY), PROPERTY); \
5629 goto cleanup; \
5630 }
5631
5632#define DEV_CHECK_PRESENCE(TYPE, COND, MEMBER, DEVTYPE, PROPERTY, VALUE) \
5633 if (!((TYPE)target)->MEMBER || COND) { \
5634 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT, DEVTYPE, PROPERTY, VALUE); \
5635 goto cleanup; \
5636 }
5637
5638/**
5639 * @brief Apply deviate add.
5640 *
5641 * @param[in] ctx Compile context.
5642 * @param[in] target Deviation target.
5643 * @param[in] dev_flags Internal deviation flags.
5644 * @param[in] d Deviate add to apply.
5645 * @param[out] dflt Added default value.
5646 * @return LY_ERR value.
5647 */
5648static LY_ERR
5649lys_apply_deviate_add(struct lysc_ctx *ctx, struct lysc_node *target, int dev_flags, struct lysp_deviate_add *d,
5650 const char **dflt)
5651{
5652 LY_ERR ret = LY_EVALID, rc;
5653 struct lysc_node_leaf *leaf = (struct lysc_node_leaf *)target;
5654 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist *)target;
5655 struct ly_err_item *err = NULL;
5656 LY_ARRAY_COUNT_TYPE x, y;
5657
5658#define DEV_CHECK_NONPRESENCE_UINT(TYPE, COND, MEMBER, PROPERTY) \
5659 if (((TYPE)target)->MEMBER COND) { \
5660 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5661 "Invalid deviation adding \"%s\" property which already exists (with value \"%u\").", \
5662 PROPERTY, ((TYPE)target)->MEMBER); \
5663 goto cleanup; \
5664 }
5665
5666#define DEV_CHECK_NONPRESENCE_VALUE(TYPE, COND, MEMBER, PROPERTY, VALUEMEMBER, VALUEMODMEMBER) \
5667 if (((TYPE)target)->MEMBER && (COND)) { \
5668 int dynamic_ = 0; const char *val_; \
5669 val_ = ((TYPE)target)->VALUEMEMBER->realtype->plugin->print(((TYPE)target)->VALUEMEMBER, LYD_XML, \
5670 lys_get_prefix, ((TYPE)target)->VALUEMODMEMBER, &dynamic_); \
5671 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5672 "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", PROPERTY, val_); \
5673 if (dynamic_) {free((void*)val_);} \
5674 goto cleanup; \
5675 }
5676
5677#define DEV_CHECK_NONPRESENCE(TYPE, COND, MEMBER, PROPERTY, VALUEMEMBER) \
5678 if (((TYPE)target)->MEMBER && (COND)) { \
5679 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5680 "Invalid deviation adding \"%s\" property which already exists (with value \"%s\").", \
5681 PROPERTY, ((TYPE)target)->VALUEMEMBER); \
5682 goto cleanup; \
5683 }
5684
5685 /* [units-stmt] */
5686 if (d->units) {
5687 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "add", "units");
5688 DEV_CHECK_NONPRESENCE(struct lysc_node_leaf *, (target->flags & LYS_SET_UNITS), units, "units", units);
5689
5690 FREE_STRING(ctx->ctx, ((struct lysc_node_leaf *)target)->units);
5691 DUP_STRING(ctx->ctx, d->units, ((struct lysc_node_leaf *)target)->units);
5692 }
5693
5694 /* *must-stmt */
5695 if (d->musts) {
5696 switch (target->nodetype) {
5697 case LYS_CONTAINER:
5698 case LYS_LIST:
5699 COMPILE_ARRAY_GOTO(ctx, d->musts, ((struct lysc_node_container *)target)->musts,
5700 x, lys_compile_must, ret, cleanup);
5701 break;
5702 case LYS_LEAF:
5703 case LYS_LEAFLIST:
5704 case LYS_ANYDATA:
5705 COMPILE_ARRAY_GOTO(ctx, d->musts, ((struct lysc_node_leaf *)target)->musts,
5706 x, lys_compile_must, ret, cleanup);
5707 break;
5708 case LYS_NOTIF:
5709 COMPILE_ARRAY_GOTO(ctx, d->musts, ((struct lysc_notif *)target)->musts,
5710 x, lys_compile_must, ret, cleanup);
5711 break;
5712 case LYS_RPC:
5713 case LYS_ACTION:
5714 if (dev_flags & LYSC_OPT_RPC_INPUT) {
5715 COMPILE_ARRAY_GOTO(ctx, d->musts, ((struct lysc_action *)target)->input.musts,
5716 x, lys_compile_must, ret, cleanup);
5717 break;
5718 } else if (dev_flags & LYSC_OPT_RPC_OUTPUT) {
5719 COMPILE_ARRAY_GOTO(ctx, d->musts, ((struct lysc_action *)target)->output.musts,
5720 x, lys_compile_must, ret, cleanup);
5721 break;
5722 }
5723 /* fall through */
5724 default:
5725 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5726 lys_nodetype2str(target->nodetype), "add", "must");
5727 goto cleanup;
5728 }
5729 ly_set_add(&ctx->xpath, target, 0);
5730 }
5731
5732 /* *unique-stmt */
5733 if (d->uniques) {
5734 DEV_CHECK_NODETYPE(LYS_LIST, "add", "unique");
5735 LY_CHECK_GOTO(lys_compile_node_list_unique(ctx, ctx->mod, d->uniques, (struct lysc_node_list *)target), cleanup);
5736 }
5737
5738 /* *default-stmt */
5739 if (d->dflts) {
5740 switch (target->nodetype) {
5741 case LYS_LEAF:
5742 DEV_CHECK_CARDINALITY(d->dflts, 1, "default");
5743 DEV_CHECK_NONPRESENCE_VALUE(struct lysc_node_leaf *, (target->flags & LYS_SET_DFLT), dflt, "default", dflt, dflt_mod);
5744 if (leaf->dflt) {
5745 /* first, remove the default value taken from the type */
5746 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
5747 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
5748 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
5749 } else {
5750 /* prepare new default value storage */
5751 leaf->dflt = calloc(1, sizeof *leaf->dflt);
5752 }
5753 *dflt = d->dflts[0];
5754 /* parsing is done at the end after possible replace of the leaf's type */
5755
5756 /* mark the new default values as leaf's own */
5757 target->flags |= LYS_SET_DFLT;
5758 break;
5759 case LYS_LEAFLIST:
5760 if (llist->dflts && !(target->flags & LYS_SET_DFLT)) {
5761 /* first, remove the default value taken from the type */
5762 LY_ARRAY_FOR(llist->dflts, x) {
5763 lysc_incomplete_dflts_remove(ctx, llist->dflts[x]);
5764 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
5765 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
5766 free(llist->dflts[x]);
5767 }
5768 LY_ARRAY_FREE(llist->dflts);
5769 llist->dflts = NULL;
5770 LY_ARRAY_FREE(llist->dflts_mods);
5771 llist->dflts_mods = NULL;
5772 }
5773 /* add new default value(s) */
5774 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts_mods, LY_ARRAY_COUNT(d->dflts), ret, cleanup);
5775 LY_ARRAY_CREATE_GOTO(ctx->ctx, llist->dflts, LY_ARRAY_COUNT(d->dflts), ret, cleanup);
5776 for (x = y = LY_ARRAY_COUNT(llist->dflts);
5777 x < LY_ARRAY_COUNT(d->dflts) + y; ++x) {
5778 LY_ARRAY_INCREMENT(llist->dflts_mods);
5779 llist->dflts_mods[x] = ctx->mod_def;
5780 LY_ARRAY_INCREMENT(llist->dflts);
5781 llist->dflts[x] = calloc(1, sizeof *llist->dflts[x]);
5782 llist->dflts[x]->realtype = llist->type;
5783 rc = llist->type->plugin->store(ctx->ctx, llist->type, d->dflts[x - y], strlen(d->dflts[x - y]),
5784 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE, lys_resolve_prefix,
5785 (void*)llist->dflts_mods[x], LYD_XML, target, NULL, llist->dflts[x], NULL, &err);
5786 llist->dflts[x]->realtype->refcount++;
5787 if (err) {
5788 ly_err_print(err);
5789 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
5790 "Invalid deviation adding \"default\" property \"%s\" which does not fit the type (%s).",
5791 d->dflts[x - y], err->msg);
5792 ly_err_free(err);
5793 }
5794 if (rc == LY_EINCOMPLETE) {
5795 /* postpone default compilation when the tree is complete */
5796 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, target, llist->dflts[x], llist->dflts_mods[x]), cleanup);
5797
5798 /* but in general result is so far ok */
5799 rc = LY_SUCCESS;
5800 }
5801 LY_CHECK_GOTO(rc, cleanup);
5802 }
5803 /* mark the new default values as leaf-list's own */
5804 target->flags |= LYS_SET_DFLT;
5805 break;
5806 case LYS_CHOICE:
5807 DEV_CHECK_CARDINALITY(d->dflts, 1, "default");
5808 DEV_CHECK_NONPRESENCE(struct lysc_node_choice *, 1, dflt, "default", dflt->name);
5809 /* in contrast to delete, here we strictly resolve the prefix in the module of the deviation
5810 * to allow making the default case even the augmented case from the deviating module */
5811 if (lys_compile_deviation_set_choice_dflt(ctx, d->dflts[0], (struct lysc_node_choice *)target)) {
5812 goto cleanup;
5813 }
5814 break;
5815 default:
5816 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5817 lys_nodetype2str(target->nodetype), "add", "default");
5818 goto cleanup;
5819 }
5820 }
5821
5822 /* [config-stmt] */
5823 if (d->flags & LYS_CONFIG_MASK) {
5824 if (target->nodetype & (LYS_CASE | LYS_INOUT | LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
5825 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5826 lys_nodetype2str(target->nodetype), "add", "config");
5827 goto cleanup;
5828 }
5829 if (dev_flags) {
5830 LOGWRN(ctx->ctx, "Deviating config inside %s has no effect.",
5831 dev_flags & LYSC_OPT_NOTIFICATION ? "notification" : "RPC/action");
5832 }
5833 if (target->flags & LYS_SET_CONFIG) {
5834 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5835 "Invalid deviation adding \"config\" property which already exists (with value \"config %s\").",
5836 target->flags & LYS_CONFIG_W ? "true" : "false");
5837 goto cleanup;
5838 }
5839 LY_CHECK_GOTO(lys_compile_change_config(ctx, target, d->flags, 0, 0), cleanup);
5840 }
5841
5842 /* [mandatory-stmt] */
5843 if (d->flags & LYS_MAND_MASK) {
5844 if (target->flags & LYS_MAND_MASK) {
5845 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5846 "Invalid deviation adding \"mandatory\" property which already exists (with value \"mandatory %s\").",
5847 target->flags & LYS_MAND_TRUE ? "true" : "false");
5848 goto cleanup;
5849 }
5850 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, target, d->flags, 0), cleanup);
5851 }
5852
5853 /* [min-elements-stmt] */
5854 if (d->flags & LYS_SET_MIN) {
5855 if (target->nodetype == LYS_LEAFLIST) {
5856 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_leaflist *, > 0, min, "min-elements");
5857 /* change value */
5858 ((struct lysc_node_leaflist*)target)->min = d->min;
5859 } else if (target->nodetype == LYS_LIST) {
5860 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_list *, > 0, min, "min-elements");
5861 /* change value */
5862 ((struct lysc_node_list*)target)->min = d->min;
5863 } else {
5864 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5865 lys_nodetype2str(target->nodetype), "add", "min-elements");
5866 goto cleanup;
5867 }
5868 if (d->min) {
5869 target->flags |= LYS_MAND_TRUE;
5870 }
5871 }
5872
5873 /* [max-elements-stmt] */
5874 if (d->flags & LYS_SET_MAX) {
5875 if (target->nodetype == LYS_LEAFLIST) {
5876 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_leaflist *, < (uint32_t)-1, max, "max-elements");
5877 /* change value */
5878 ((struct lysc_node_leaflist*)target)->max = d->max ? d->max : (uint32_t)-1;
5879 } else if (target->nodetype == LYS_LIST) {
5880 DEV_CHECK_NONPRESENCE_UINT(struct lysc_node_list *, < (uint32_t)-1, max, "max-elements");
5881 /* change value */
5882 ((struct lysc_node_list*)target)->max = d->max ? d->max : (uint32_t)-1;
5883 } else {
5884 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5885 lys_nodetype2str(target->nodetype), "add", "max-elements");
5886 goto cleanup;
5887 }
5888 }
5889
5890 ret = LY_SUCCESS;
5891
5892cleanup:
5893 return ret;
5894}
5895
5896/**
5897 * @brief Apply deviate delete.
5898 *
5899 * @param[in] ctx Compile context.
5900 * @param[in] target Deviation target.
5901 * @param[in] dev_flags Internal deviation flags.
5902 * @param[in] d Deviate delete to apply.
5903 * @return LY_ERR value.
5904 */
5905static LY_ERR
5906lys_apply_deviate_delete(struct lysc_ctx *ctx, struct lysc_node *target, int dev_flags, struct lysp_deviate_del *d)
5907{
5908 LY_ERR ret = LY_EVALID;
5909 struct lysc_node_leaf *leaf = (struct lysc_node_leaf *)target;
5910 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist *)target;
5911 struct lysc_node_list *list = (struct lysc_node_list *)target;
5912 LY_ARRAY_COUNT_TYPE x, y, z;
5913 int i;
5914 size_t prefix_len, name_len;
5915 const char *prefix, *name, *nodeid, *dflt;
5916 struct lys_module *mod;
5917
5918#define DEV_DEL_ARRAY(TYPE, ARRAY_TRG, ARRAY_DEV, VALMEMBER, VALMEMBER_CMP, DELFUNC_DEREF, DELFUNC, PROPERTY) \
5919 DEV_CHECK_PRESENCE(TYPE, 0, ARRAY_TRG, "deleting", PROPERTY, d->ARRAY_DEV[0]VALMEMBER); \
5920 LY_ARRAY_FOR(d->ARRAY_DEV, x) { \
5921 LY_ARRAY_FOR(((TYPE)target)->ARRAY_TRG, y) { \
5922 if (!strcmp(((TYPE)target)->ARRAY_TRG[y]VALMEMBER_CMP, d->ARRAY_DEV[x]VALMEMBER)) { break; } \
5923 } \
5924 if (y == LY_ARRAY_COUNT(((TYPE)target)->ARRAY_TRG)) { \
5925 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
5926 "Invalid deviation deleting \"%s\" property \"%s\" which does not match any of the target's property values.", \
5927 PROPERTY, d->ARRAY_DEV[x]VALMEMBER); \
5928 goto cleanup; \
5929 } \
5930 LY_ARRAY_DECREMENT(((TYPE)target)->ARRAY_TRG); \
5931 DELFUNC(ctx->ctx, DELFUNC_DEREF((TYPE)target)->ARRAY_TRG[y]); \
5932 memmove(&((TYPE)target)->ARRAY_TRG[y], \
5933 &((TYPE)target)->ARRAY_TRG[y + 1], \
5934 (LY_ARRAY_COUNT(((TYPE)target)->ARRAY_TRG) - y) * (sizeof *((TYPE)target)->ARRAY_TRG)); \
5935 } \
5936 if (!LY_ARRAY_COUNT(((TYPE)target)->ARRAY_TRG)) { \
5937 LY_ARRAY_FREE(((TYPE)target)->ARRAY_TRG); \
5938 ((TYPE)target)->ARRAY_TRG = NULL; \
5939 }
5940
5941 /* [units-stmt] */
5942 if (d->units) {
5943 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "delete", "units");
5944 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, 0, units, "deleting", "units", d->units);
5945 if (strcmp(((struct lysc_node_leaf*)target)->units, d->units)) {
5946 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
5947 "Invalid deviation deleting \"units\" property \"%s\" which does not match the target's property value \"%s\".",
5948 d->units, ((struct lysc_node_leaf*)target)->units);
5949 goto cleanup;
5950 }
5951 lydict_remove(ctx->ctx, ((struct lysc_node_leaf*)target)->units);
5952 ((struct lysc_node_leaf*)target)->units = NULL;
5953 }
5954
5955 /* *must-stmt */
5956 if (d->musts) {
5957 switch (target->nodetype) {
5958 case LYS_CONTAINER:
5959 case LYS_LIST:
5960 DEV_DEL_ARRAY(struct lysc_node_container*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
5961 break;
5962 case LYS_LEAF:
5963 case LYS_LEAFLIST:
5964 case LYS_ANYDATA:
5965 DEV_DEL_ARRAY(struct lysc_node_leaf*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
5966 break;
5967 case LYS_NOTIF:
5968 DEV_DEL_ARRAY(struct lysc_notif*, musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
5969 break;
5970 case LYS_RPC:
5971 case LYS_ACTION:
5972 if (dev_flags & LYSC_OPT_RPC_INPUT) {
5973 DEV_DEL_ARRAY(struct lysc_action*, input.musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
5974 break;
5975 } else if (dev_flags & LYSC_OPT_RPC_OUTPUT) {
5976 DEV_DEL_ARRAY(struct lysc_action*, output.musts, musts, .arg, .cond->expr, &, lysc_must_free, "must");
5977 break;
5978 }
5979 /* fall through */
5980 default:
5981 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
5982 lys_nodetype2str(target->nodetype), "delete", "must");
5983 goto cleanup;
5984 }
5985 }
5986
5987 /* *unique-stmt */
5988 if (d->uniques) {
5989 DEV_CHECK_NODETYPE(LYS_LIST, "delete", "unique");
5990 LY_ARRAY_FOR(d->uniques, x) {
5991 LY_ARRAY_FOR(list->uniques, z) {
5992 for (name = d->uniques[x], y = 0; name; name = nodeid, ++y) {
5993 nodeid = strpbrk(name, " \t\n");
5994 if (nodeid) {
5995 if (ly_strncmp(list->uniques[z][y]->name, name, nodeid - name)) {
5996 break;
5997 }
5998 while (isspace(*nodeid)) {
5999 ++nodeid;
6000 }
6001 } else {
6002 if (strcmp(name, list->uniques[z][y]->name)) {
6003 break;
6004 }
6005 }
6006 }
6007 if (!name) {
6008 /* complete match - remove the unique */
6009 LY_ARRAY_DECREMENT(list->uniques);
6010 LY_ARRAY_FREE(list->uniques[z]);
6011 memmove(&list->uniques[z], &list->uniques[z + 1], (LY_ARRAY_COUNT(list->uniques) - z) * (sizeof *list->uniques));
6012 --z;
6013 break;
6014 }
6015 }
6016 if (!list->uniques || z == LY_ARRAY_COUNT(list->uniques)) {
6017 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6018 "Invalid deviation deleting \"unique\" property \"%s\" which does not match any of the target's property values.",
6019 d->uniques[x]);
6020 goto cleanup;
6021 }
6022 }
6023 if (!LY_ARRAY_COUNT(list->uniques)) {
6024 LY_ARRAY_FREE(list->uniques);
6025 list->uniques = NULL;
6026 }
6027 }
6028
6029 /* *default-stmt */
6030 if (d->dflts) {
6031 switch (target->nodetype) {
6032 case LYS_LEAF:
6033 DEV_CHECK_CARDINALITY(d->dflts, 1, "default");
6034 DEV_CHECK_PRESENCE(struct lysc_node_leaf*, !(target->flags & LYS_SET_DFLT),
6035 dflt, "deleting", "default", d->dflts[0]);
6036
6037 /* check that the values matches */
6038 dflt = leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, lys_get_prefix, leaf->dflt_mod, &i);
6039 if (strcmp(dflt, d->dflts[0])) {
Michal Vaskoccc062a2020-08-13 08:34:50 +02006040 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6041 "Invalid deviation deleting \"default\" property \"%s\" which does not match the target's property value \"%s\".",
6042 d->dflts[0], dflt);
Michal Vasko9acaf492020-08-13 09:05:58 +02006043 if (i) {
6044 free((char*)dflt);
6045 }
Michal Vaskoccc062a2020-08-13 08:34:50 +02006046 goto cleanup;
6047 }
6048 if (i) {
6049 free((char*)dflt);
6050 }
6051
6052 /* update the list of incomplete default values if needed */
6053 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6054
6055 /* remove the default specification */
6056 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6057 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6058 free(leaf->dflt);
6059 leaf->dflt = NULL;
6060 leaf->dflt_mod = NULL;
6061 target->flags &= ~LYS_SET_DFLT;
6062 break;
6063 case LYS_LEAFLIST:
6064 DEV_CHECK_PRESENCE(struct lysc_node_leaflist*, 0, dflts, "deleting", "default", d->dflts[0]);
6065 LY_ARRAY_FOR(d->dflts, x) {
6066 LY_ARRAY_FOR(llist->dflts, y) {
6067 dflt = llist->type->plugin->print(llist->dflts[y], LYD_XML, lys_get_prefix, llist->dflts_mods[y], &i);
6068 if (!strcmp(dflt, d->dflts[x])) {
6069 if (i) {
6070 free((char*)dflt);
6071 }
6072 break;
6073 }
6074 if (i) {
6075 free((char*)dflt);
6076 }
6077 }
6078 if (y == LY_ARRAY_COUNT(llist->dflts)) {
6079 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, "Invalid deviation deleting \"default\" property \"%s\" "
6080 "which does not match any of the target's property values.", d->dflts[x]);
6081 goto cleanup;
6082 }
6083
6084 /* update the list of incomplete default values if needed */
6085 lysc_incomplete_dflts_remove(ctx, llist->dflts[y]);
6086
6087 LY_ARRAY_DECREMENT(llist->dflts_mods);
6088 LY_ARRAY_DECREMENT(llist->dflts);
6089 llist->dflts[y]->realtype->plugin->free(ctx->ctx, llist->dflts[y]);
6090 lysc_type_free(ctx->ctx, llist->dflts[y]->realtype);
6091 free(llist->dflts[y]);
6092 memmove(&llist->dflts[y], &llist->dflts[y + 1], (LY_ARRAY_COUNT(llist->dflts) - y) * (sizeof *llist->dflts));
6093 memmove(&llist->dflts_mods[y], &llist->dflts_mods[y + 1], (LY_ARRAY_COUNT(llist->dflts_mods) - y) * (sizeof *llist->dflts_mods));
6094 }
6095 if (!LY_ARRAY_COUNT(llist->dflts)) {
6096 LY_ARRAY_FREE(llist->dflts_mods);
6097 llist->dflts_mods = NULL;
6098 LY_ARRAY_FREE(llist->dflts);
6099 llist->dflts = NULL;
6100 llist->flags &= ~LYS_SET_DFLT;
6101 }
6102 break;
6103 case LYS_CHOICE:
6104 DEV_CHECK_CARDINALITY(d->dflts, 1, "default");
6105 DEV_CHECK_PRESENCE(struct lysc_node_choice*, 0, dflt, "deleting", "default", d->dflts[0]);
6106 nodeid = d->dflts[0];
6107 LY_CHECK_GOTO(ly_parse_nodeid(&nodeid, &prefix, &prefix_len, &name, &name_len), cleanup);
6108 if (prefix) {
6109 /* use module prefixes from the deviation module to match the module of the default case */
6110 if (!(mod = lys_module_find_prefix(ctx->mod, prefix, prefix_len))) {
6111 LOGVAL(ctx->ctx,LY_VLOG_STR,ctx->path,LYVE_REFERENCE,
6112 "Invalid deviation deleting \"default\" property \"%s\" of choice. "
6113 "The prefix does not match any imported module of the deviation module.", d->dflts[0]);
6114 goto cleanup;
6115 }
6116 if (mod != ((struct lysc_node_choice*)target)->dflt->module) {
6117 LOGVAL(ctx->ctx,LY_VLOG_STR,ctx->path,LYVE_REFERENCE,
6118 "Invalid deviation deleting \"default\" property \"%s\" of choice. "
6119 "The prefix does not match the default case's module.", d->dflts[0]);
6120 goto cleanup;
6121 }
6122 }
6123 /* else {
6124 * strictly, the default prefix would point to the deviation module, but the value should actually
6125 * match the default string in the original module (usually unprefixed), so in this case we do not check
6126 * the module of the default case, just matching its name */
6127 if (strcmp(name, ((struct lysc_node_choice*)target)->dflt->name)) {
6128 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
6129 "Invalid deviation deleting \"default\" property \"%s\" of choice does not match the default case name \"%s\".",
6130 d->dflts[0], ((struct lysc_node_choice*)target)->dflt->name);
6131 goto cleanup;
6132 }
6133 ((struct lysc_node_choice*)target)->dflt->flags &= ~LYS_SET_DFLT;
6134 ((struct lysc_node_choice*)target)->dflt = NULL;
6135 break;
6136 default:
6137 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6138 lys_nodetype2str(target->nodetype), "delete", "default");
6139 goto cleanup;
6140 }
6141 }
6142
6143 ret = LY_SUCCESS;
6144
6145cleanup:
6146 return ret;
6147}
6148
6149/**
6150 * @brief Apply deviate replace.
6151 *
6152 * @param[in] ctx Compile context.
6153 * @param[in] target Deviation target.
6154 * @param[in] d Deviate replace to apply.
6155 * @param[out] dflt Added default value.
6156 * @param[out] changed_type Whether the target type was changed.
6157 * @return LY_ERR value.
6158 */
6159static LY_ERR
6160lys_apply_deviate_replace(struct lysc_ctx *ctx, struct lysc_node *target, struct lysp_deviate_rpl *d, const char **dflt,
6161 int *changed_type)
6162{
6163 LY_ERR ret = LY_EVALID;
6164 struct lysc_node_leaf *leaf = (struct lysc_node_leaf *)target;
6165 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist *)target;
6166 LY_ARRAY_COUNT_TYPE x;
6167
6168#define DEV_CHECK_PRESENCE_UINT(TYPE, COND, MEMBER, PROPERTY) \
6169 if (!(((TYPE)target)->MEMBER COND)) { \
6170 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, \
6171 "Invalid deviation replacing with \"%s\" property \"%u\" which is not present.", PROPERTY, d->MEMBER); \
6172 goto cleanup; \
6173 }
6174
6175 /* [type-stmt] */
6176 if (d->type) {
6177 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "replace", "type");
6178 /* type is mandatory, so checking for its presence is not necessary */
6179 lysc_type_free(ctx->ctx, ((struct lysc_node_leaf *)target)->type);
6180
6181 if (leaf->dflt && !(target->flags & LYS_SET_DFLT)) {
6182 /* the target has default from the previous type - remove it */
6183 if (target->nodetype == LYS_LEAF) {
6184 /* update the list of incomplete default values if needed */
6185 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6186
6187 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6188 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6189 free(leaf->dflt);
6190 leaf->dflt = NULL;
6191 leaf->dflt_mod = NULL;
6192 } else { /* LYS_LEAFLIST */
6193 LY_ARRAY_FOR(llist->dflts, x) {
6194 lysc_incomplete_dflts_remove(ctx, llist->dflts[x]);
6195 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
6196 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
6197 free(llist->dflts[x]);
6198 }
6199 LY_ARRAY_FREE(llist->dflts);
6200 llist->dflts = NULL;
6201 LY_ARRAY_FREE(llist->dflts_mods);
6202 llist->dflts_mods = NULL;
6203 }
6204 }
6205 if (!leaf->dflt) {
6206 /* there is no default value, do not set changed_type after type compilation
6207 * which is used to recompile the default value */
6208 *changed_type = -1;
6209 }
6210 LY_CHECK_GOTO(lys_compile_node_type(ctx, NULL, d->type, leaf), cleanup);
6211 (*changed_type)++;
6212 }
6213
6214 /* [units-stmt] */
6215 if (d->units) {
6216 DEV_CHECK_NODETYPE(LYS_LEAF | LYS_LEAFLIST, "replace", "units");
6217 DEV_CHECK_PRESENCE(struct lysc_node_leaf *, !(target->flags & LYS_SET_UNITS),
6218 units, "replacing", "units", d->units);
6219
6220 lydict_remove(ctx->ctx, leaf->units);
6221 DUP_STRING(ctx->ctx, d->units, leaf->units);
6222 }
6223
6224 /* [default-stmt] */
6225 if (d->dflt) {
6226 switch (target->nodetype) {
6227 case LYS_LEAF:
6228 DEV_CHECK_PRESENCE(struct lysc_node_leaf *, !(target->flags & LYS_SET_DFLT),
6229 dflt, "replacing", "default", d->dflt);
6230 /* first, remove the default value taken from the type */
6231 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6232 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6233 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6234 *dflt = d->dflt;
6235 /* parsing is done at the end after possible replace of the leaf's type */
6236 break;
6237 case LYS_CHOICE:
6238 DEV_CHECK_PRESENCE(struct lysc_node_choice *, 0, dflt, "replacing", "default", d->dflt);
6239 if (lys_compile_deviation_set_choice_dflt(ctx, d->dflt, (struct lysc_node_choice *)target)) {
6240 goto cleanup;
6241 }
6242 break;
6243 default:
6244 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6245 lys_nodetype2str(target->nodetype), "replace", "default");
6246 goto cleanup;
6247 }
6248 }
6249
6250 /* [config-stmt] */
6251 if (d->flags & LYS_CONFIG_MASK) {
6252 if (target->nodetype & (LYS_CASE | LYS_INOUT | LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
6253 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6254 lys_nodetype2str(target->nodetype), "replace", "config");
6255 goto cleanup;
6256 }
6257 if (!(target->flags & LYS_SET_CONFIG)) {
6258 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT,
6259 "replacing", "config", d->flags & LYS_CONFIG_W ? "config true" : "config false");
6260 goto cleanup;
6261 }
6262 LY_CHECK_GOTO(lys_compile_change_config(ctx, target, d->flags, 0, 0), cleanup);
6263 }
6264
6265 /* [mandatory-stmt] */
6266 if (d->flags & LYS_MAND_MASK) {
6267 if (!(target->flags & LYS_MAND_MASK)) {
6268 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NOT_PRESENT,
6269 "replacing", "mandatory", d->flags & LYS_MAND_TRUE ? "mandatory true" : "mandatory false");
6270 goto cleanup;
6271 }
6272 LY_CHECK_GOTO(lys_compile_change_mandatory(ctx, target, d->flags, 0), cleanup);
6273 }
6274
6275 /* [min-elements-stmt] */
6276 if (d->flags & LYS_SET_MIN) {
6277 if (target->nodetype == LYS_LEAFLIST) {
6278 DEV_CHECK_PRESENCE_UINT(struct lysc_node_leaflist *, > 0, min, "min-elements");
6279 /* change value */
6280 ((struct lysc_node_leaflist *)target)->min = d->min;
6281 } else if (target->nodetype == LYS_LIST) {
6282 DEV_CHECK_PRESENCE_UINT(struct lysc_node_list *, > 0, min, "min-elements");
6283 /* change value */
6284 ((struct lysc_node_list *)target)->min = d->min;
6285 } else {
6286 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6287 lys_nodetype2str(target->nodetype), "replace", "min-elements");
6288 goto cleanup;
6289 }
6290 if (d->min) {
6291 target->flags |= LYS_MAND_TRUE;
6292 }
6293 }
6294
6295 /* [max-elements-stmt] */
6296 if (d->flags & LYS_SET_MAX) {
6297 if (target->nodetype == LYS_LEAFLIST) {
6298 DEV_CHECK_PRESENCE_UINT(struct lysc_node_leaflist *, < (uint32_t)-1, max, "max-elements");
6299 /* change value */
6300 ((struct lysc_node_leaflist *)target)->max = d->max ? d->max : (uint32_t)-1;
6301 } else if (target->nodetype == LYS_LIST) {
6302 DEV_CHECK_PRESENCE_UINT(struct lysc_node_list *, < (uint32_t)-1, max, "max-elements");
6303 /* change value */
6304 ((struct lysc_node_list *)target)->max = d->max ? d->max : (uint32_t)-1;
6305 } else {
6306 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DEV_NODETYPE,
6307 lys_nodetype2str(target->nodetype), "replace", "max-elements");
6308 goto cleanup;
6309 }
6310 }
6311
6312 ret = LY_SUCCESS;
6313
6314cleanup:
6315 return ret;
6316}
6317
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006318/**
6319 * @brief Apply all deviations of one target node.
6320 *
6321 * @param[in] ctx Compile context.
6322 * @param[in] dev Deviation structure to apply.
6323 * @return LY_ERR value.
6324 */
6325static LY_ERR
6326lys_apply_deviation(struct lysc_ctx *ctx, struct lysc_deviation *dev)
Radek Krejciccd20f12019-02-15 14:12:27 +01006327{
Radek Krejcia1911222019-07-22 17:24:50 +02006328 LY_ERR ret = LY_EVALID, rc;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006329 struct lysc_node *target = dev->target;
6330 struct lysc_node_leaf *leaf = (struct lysc_node_leaf *)target;
6331 struct lysc_node_leaflist *llist = (struct lysc_node_leaflist *)target;
6332 struct ly_err_item *err = NULL;
Radek Krejcifc11bd72019-04-11 16:00:05 +02006333 struct lysc_action *rpcs;
6334 struct lysc_notif *notifs;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006335 struct lysp_deviate *d;
Michal Vaskoccc062a2020-08-13 08:34:50 +02006336 LY_ARRAY_COUNT_TYPE v, x;
6337 int changed_type = 0;
6338 const char *dflt = NULL;
Radek Krejci551b12c2019-02-19 16:11:21 +01006339 uint32_t min, max;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006340
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006341 lysc_update_path(ctx, NULL, dev->nodeid);
6342
6343 /* not-supported */
6344 if (dev->not_supported) {
6345 if (LY_ARRAY_COUNT(dev->deviates) > 1) {
6346 LOGWRN(ctx->ctx, "Useless multiple (%"LY_PRI_ARRAY_COUNT_TYPE") deviates on node \"%s\" since the node is not-supported.",
6347 LY_ARRAY_COUNT(dev->deviates), dev->nodeid);
6348 }
6349
6350#define REMOVE_NONDATA(ARRAY, TYPE, GETFUNC, FREEFUNC) \
6351 if (target->parent) { \
6352 ARRAY = (TYPE*)GETFUNC(target->parent); \
6353 } else { \
6354 ARRAY = target->module->compiled->ARRAY; \
6355 } \
6356 LY_ARRAY_FOR(ARRAY, x) { \
6357 if (&ARRAY[x] == (TYPE*)target) { break; } \
6358 } \
6359 if (x < LY_ARRAY_COUNT(ARRAY)) { \
6360 FREEFUNC(ctx->ctx, &ARRAY[x]); \
6361 memmove(&ARRAY[x], &ARRAY[x + 1], (LY_ARRAY_COUNT(ARRAY) - (x + 1)) * sizeof *ARRAY); \
6362 LY_ARRAY_DECREMENT(ARRAY); \
6363 }
6364
6365 if (target->nodetype & (LYS_RPC | LYS_ACTION)) {
6366 if (dev->flags & LYSC_OPT_RPC_INPUT) {
6367 /* remove RPC's/action's input */
6368 lysc_action_inout_free(ctx->ctx, &((struct lysc_action*)target)->input);
6369 memset(&((struct lysc_action*)target)->input, 0, sizeof ((struct lysc_action*)target)->input);
6370 FREE_ARRAY(ctx->ctx, ((struct lysc_action*)target)->input_exts, lysc_ext_instance_free);
6371 ((struct lysc_action*)target)->input_exts = NULL;
6372 } else if (dev->flags & LYSC_OPT_RPC_OUTPUT) {
6373 /* remove RPC's/action's output */
6374 lysc_action_inout_free(ctx->ctx, &((struct lysc_action*)target)->output);
6375 memset(&((struct lysc_action*)target)->output, 0, sizeof ((struct lysc_action*)target)->output);
6376 FREE_ARRAY(ctx->ctx, ((struct lysc_action*)target)->output_exts, lysc_ext_instance_free);
6377 ((struct lysc_action*)target)->output_exts = NULL;
6378 } else {
6379 /* remove RPC/action */
6380 REMOVE_NONDATA(rpcs, struct lysc_action, lysc_node_actions, lysc_action_free);
6381 }
6382 } else if (target->nodetype == LYS_NOTIF) {
6383 /* remove Notification */
6384 REMOVE_NONDATA(notifs, struct lysc_notif, lysc_node_notifs, lysc_notif_free);
6385 } else {
6386 /* remove the target node */
6387 lysc_disconnect(target);
6388 lysc_node_free(ctx->ctx, target);
6389 }
6390
6391 /* mark the context for later re-compilation of objects that could reference the curently removed node */
6392 ctx->ctx->flags |= LY_CTX_CHANGED_TREE;
6393 return LY_SUCCESS;
6394 }
6395
6396 /* list of deviates (not-supported is not present in the list) */
6397 LY_ARRAY_FOR(dev->deviates, v) {
6398 d = dev->deviates[v];
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006399 switch (d->mod) {
6400 case LYS_DEV_ADD:
Michal Vaskoccc062a2020-08-13 08:34:50 +02006401 LY_CHECK_GOTO(lys_apply_deviate_add(ctx, target, dev->flags, (struct lysp_deviate_add *)d, &dflt), cleanup);
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006402 break;
6403 case LYS_DEV_DELETE:
Michal Vaskoccc062a2020-08-13 08:34:50 +02006404 LY_CHECK_GOTO(lys_apply_deviate_delete(ctx, target, dev->flags, (struct lysp_deviate_del *)d), cleanup);
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006405 break;
6406 case LYS_DEV_REPLACE:
Michal Vaskoccc062a2020-08-13 08:34:50 +02006407 LY_CHECK_GOTO(lys_apply_deviate_replace(ctx, target, (struct lysp_deviate_rpl *)d, &dflt, &changed_type), cleanup);
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006408 break;
6409 default:
6410 LOGINT(ctx->ctx);
6411 goto cleanup;
6412 }
6413 }
6414
6415 /* final check when all deviations of a single target node are applied */
6416
6417 /* check min-max compatibility */
6418 if (target->nodetype == LYS_LEAFLIST) {
6419 min = ((struct lysc_node_leaflist*)target)->min;
6420 max = ((struct lysc_node_leaflist*)target)->max;
6421 } else if (target->nodetype == LYS_LIST) {
6422 min = ((struct lysc_node_list*)target)->min;
6423 max = ((struct lysc_node_list*)target)->max;
6424 } else {
6425 min = max = 0;
6426 }
6427 if (min > max) {
6428 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid combination of min-elements and max-elements "
6429 "after deviation: min value %u is bigger than max value %u.", min, max);
6430 goto cleanup;
6431 }
6432
6433 if (dflt) {
6434 /* parse added/changed default value after possible change of the type */
6435 leaf->dflt_mod = ctx->mod_def;
6436 leaf->dflt->realtype = leaf->type;
6437 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, dflt, strlen(dflt),
6438 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
6439 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, target, NULL, leaf->dflt, NULL, &err);
6440 leaf->dflt->realtype->refcount++;
6441 if (err) {
6442 ly_err_print(err);
6443 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6444 "Invalid deviation setting \"default\" property \"%s\" which does not fit the type (%s).", dflt, err->msg);
6445 ly_err_free(err);
6446 }
6447 if (rc == LY_EINCOMPLETE) {
6448 /* postpone default compilation when the tree is complete */
6449 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, target, leaf->dflt, leaf->dflt_mod), cleanup);
6450
6451 /* but in general result is so far ok */
6452 rc = LY_SUCCESS;
6453 }
6454 LY_CHECK_GOTO(rc, cleanup);
6455 } else if (changed_type) {
6456 /* the leaf/leaf-list's type has changed, but there is still a default value for the previous type */
6457 int dynamic;
6458 if (target->nodetype == LYS_LEAF) {
6459 dflt = leaf->dflt->realtype->plugin->print(leaf->dflt, LYD_XML, lys_get_prefix, leaf->dflt_mod, &dynamic);
6460
6461 /* update the list of incomplete default values if needed */
6462 lysc_incomplete_dflts_remove(ctx, leaf->dflt);
6463
6464 /* remove the previous default */
6465 leaf->dflt->realtype->plugin->free(ctx->ctx, leaf->dflt);
6466 lysc_type_free(ctx->ctx, leaf->dflt->realtype);
6467 leaf->dflt->realtype = leaf->type;
6468 rc = leaf->type->plugin->store(ctx->ctx, leaf->type, dflt, strlen(dflt),
6469 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
6470 lys_resolve_prefix, (void*)leaf->dflt_mod, LYD_XML, target, NULL, leaf->dflt, NULL, &err);
6471 leaf->dflt->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's type - the leaf's default value \"%s\" does not match the type (%s).", dflt, err->msg);
6476 ly_err_free(err);
6477 }
6478 if (dynamic) {
6479 free((void*)dflt);
6480 }
6481 dflt = NULL;
6482 if (rc == LY_EINCOMPLETE) {
6483 /* postpone default compilation when the tree is complete */
6484 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, target, leaf->dflt, leaf->dflt_mod), cleanup);
6485
6486 /* but in general result is so far ok */
6487 rc = LY_SUCCESS;
6488 }
6489 LY_CHECK_GOTO(rc, cleanup);
6490 } else { /* LYS_LEAFLIST */
6491 LY_ARRAY_FOR(llist->dflts, x) {
6492 dflt = llist->dflts[x]->realtype->plugin->print(llist->dflts[x], LYD_XML, lys_get_prefix, llist->dflts_mods[x], &dynamic);
6493 llist->dflts[x]->realtype->plugin->free(ctx->ctx, llist->dflts[x]);
6494 lysc_type_free(ctx->ctx, llist->dflts[x]->realtype);
6495 llist->dflts[x]->realtype = llist->type;
6496 rc = llist->type->plugin->store(ctx->ctx, llist->type, dflt, strlen(dflt),
6497 LY_TYPE_OPTS_INCOMPLETE_DATA | LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE,
6498 lys_resolve_prefix, (void*)llist->dflts_mods[x], LYD_XML, target, NULL,
6499 llist->dflts[x], NULL, &err);
6500 llist->dflts[x]->realtype->refcount++;
6501 if (err) {
6502 ly_err_print(err);
6503 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6504 "Invalid deviation replacing leaf-list's type - the leaf-list's default value \"%s\" does not match the type (%s).",
6505 dflt, err->msg);
6506 ly_err_free(err);
6507 }
6508 if (dynamic) {
6509 free((void*)dflt);
6510 }
6511 dflt = NULL;
6512 if (rc == LY_EINCOMPLETE) {
6513 /* postpone default compilation when the tree is complete */
6514 LY_CHECK_GOTO(lysc_incomplete_dflts_add(ctx, target, llist->dflts[x], llist->dflts_mods[x]), cleanup);
6515
6516 /* but in general result is so far ok */
6517 rc = LY_SUCCESS;
6518 }
6519 LY_CHECK_GOTO(rc, cleanup);
6520 }
6521 }
6522 }
6523
6524 /* check mandatory - default compatibility */
6525 if ((target->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (target->flags & LYS_SET_DFLT)
6526 && (target->flags & LYS_MAND_TRUE)) {
6527 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6528 "Invalid deviation combining default value and mandatory %s.", lys_nodetype2str(target->nodetype));
6529 goto cleanup;
6530 } else if ((target->nodetype & LYS_CHOICE) && ((struct lysc_node_choice*)target)->dflt
6531 && (target->flags & LYS_MAND_TRUE)) {
6532 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS, "Invalid deviation combining default case and mandatory choice.");
6533 goto cleanup;
6534 }
6535 if (target->parent && (target->parent->flags & LYS_SET_DFLT) && (target->flags & LYS_MAND_TRUE)) {
6536 /* mandatory node under a default case */
6537 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
6538 "Invalid deviation combining mandatory %s \"%s\" in a default choice's case \"%s\".",
6539 lys_nodetype2str(target->nodetype), target->name, target->parent->name);
6540 goto cleanup;
6541 }
6542
6543 /* success */
6544 ret = LY_SUCCESS;
6545
6546cleanup:
6547 lysc_update_path(ctx, NULL, NULL);
6548 return ret;
6549}
6550
6551LY_ERR
6552lys_compile_deviations(struct lysc_ctx *ctx, struct lysp_module *mod_p)
6553{
6554 LY_ERR ret = LY_EVALID;
6555 struct ly_set devs_p = {0};
6556 struct ly_set targets = {0};
6557 struct lysc_node *target; /* target target of the deviation */
6558 struct lysp_deviation *dev;
6559 struct lysp_deviate *d, **dp_new;
6560 LY_ARRAY_COUNT_TYPE u, v;
6561 struct lysc_deviation **devs = NULL;
6562 struct lys_module *target_mod, **dev_mod;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006563 uint16_t flags;
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006564 int i;
Radek Krejciccd20f12019-02-15 14:12:27 +01006565
6566 /* get all deviations from the module and all its submodules ... */
6567 LY_ARRAY_FOR(mod_p->deviations, u) {
6568 ly_set_add(&devs_p, &mod_p->deviations[u], LY_SET_OPT_USEASLIST);
6569 }
6570 LY_ARRAY_FOR(mod_p->includes, v) {
6571 LY_ARRAY_FOR(mod_p->includes[v].submodule->deviations, u) {
6572 ly_set_add(&devs_p, &mod_p->includes[v].submodule->deviations[u], LY_SET_OPT_USEASLIST);
6573 }
6574 }
6575 if (!devs_p.count) {
6576 /* nothing to do */
6577 return LY_SUCCESS;
6578 }
6579
Radek Krejci327de162019-06-14 12:52:07 +02006580 lysc_update_path(ctx, NULL, "{deviation}");
6581
Radek Krejciccd20f12019-02-15 14:12:27 +01006582 /* ... and group them by the target node */
6583 devs = calloc(devs_p.count, sizeof *devs);
6584 for (u = 0; u < devs_p.count; ++u) {
6585 dev = devs_p.objs[u];
Radek Krejci327de162019-06-14 12:52:07 +02006586 lysc_update_path(ctx, NULL, dev->nodeid);
Radek Krejciccd20f12019-02-15 14:12:27 +01006587
6588 /* resolve the target */
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006589 LY_CHECK_GOTO(lys_resolve_schema_nodeid(ctx, dev->nodeid, 0, NULL, ctx->mod, 0, 1,
6590 (const struct lysc_node**)&target, &flags), cleanup);
Michal Vasko1bf09392020-03-27 12:38:10 +01006591 if (target->nodetype & (LYS_RPC | LYS_ACTION)) {
Radek Krejcif538ce52019-03-05 10:46:14 +01006592 /* move the target pointer to input/output to make them different from the action and
6593 * between them. Before the devs[] item is being processed, the target pointer must be fixed
6594 * back to the RPC/action node due to a better compatibility and decision code in this function.
6595 * The LYSC_OPT_INTERNAL is used as a flag to this change. */
6596 if (flags & LYSC_OPT_RPC_INPUT) {
6597 target = (struct lysc_node*)&((struct lysc_action*)target)->input;
6598 flags |= LYSC_OPT_INTERNAL;
6599 } else if (flags & LYSC_OPT_RPC_OUTPUT) {
6600 target = (struct lysc_node*)&((struct lysc_action*)target)->output;
6601 flags |= LYSC_OPT_INTERNAL;
6602 }
6603 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006604 /* insert into the set of targets with duplicity detection */
6605 i = ly_set_add(&targets, target, 0);
6606 if (!devs[i]) {
6607 /* new record */
6608 devs[i] = calloc(1, sizeof **devs);
6609 devs[i]->target = target;
6610 devs[i]->nodeid = dev->nodeid;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01006611 devs[i]->flags = flags;
Radek Krejciccd20f12019-02-15 14:12:27 +01006612 }
6613 /* add deviates into the deviation's list of deviates */
6614 for (d = dev->deviates; d; d = d->next) {
6615 LY_ARRAY_NEW_GOTO(ctx->ctx, devs[i]->deviates, dp_new, ret, cleanup);
6616 *dp_new = d;
6617 if (d->mod == LYS_DEV_NOT_SUPPORTED) {
6618 devs[i]->not_supported = 1;
6619 }
6620 }
Radek Krejci327de162019-06-14 12:52:07 +02006621
6622 lysc_update_path(ctx, NULL, NULL);
Radek Krejciccd20f12019-02-15 14:12:27 +01006623 }
6624
Radek Krejciccd20f12019-02-15 14:12:27 +01006625 /* apply deviations */
6626 for (u = 0; u < devs_p.count && devs[u]; ++u) {
Radek Krejcif538ce52019-03-05 10:46:14 +01006627 if (devs[u]->flags & LYSC_OPT_INTERNAL) {
6628 /* fix the target pointer in case of RPC's/action's input/output */
6629 if (devs[u]->flags & LYSC_OPT_RPC_INPUT) {
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006630 devs[u]->target = (struct lysc_node *)((char *)devs[u]->target - offsetof(struct lysc_action, input));
Radek Krejcif538ce52019-03-05 10:46:14 +01006631 } else if (devs[u]->flags & LYSC_OPT_RPC_OUTPUT) {
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006632 devs[u]->target = (struct lysc_node *)((char *)devs[u]->target - offsetof(struct lysc_action, output));
Radek Krejcif538ce52019-03-05 10:46:14 +01006633 }
6634 }
6635
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006636 /* remember target module (the target node may be removed) */
6637 target_mod = devs[u]->target->module;
Radek Krejcifc11bd72019-04-11 16:00:05 +02006638
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006639 /* apply the deviation */
6640 LY_CHECK_GOTO(ret = lys_apply_deviation(ctx, devs[u]), cleanup);
Radek Krejci33f72892019-02-21 10:36:58 +01006641
Michal Vaskoe6143202020-07-03 13:02:08 +02006642 /* add this module into the target module deviated_by, if not there already */
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006643 i = 0;
6644 LY_ARRAY_FOR(target_mod->compiled->deviated_by, v) {
6645 if (target_mod->compiled->deviated_by[v] == mod_p->mod) {
6646 i = 1;
Michal Vaskoe6143202020-07-03 13:02:08 +02006647 break;
6648 }
6649 }
Michal Vasko1a3dc3b2020-08-12 15:47:42 +02006650 if (!i) {
6651 LY_ARRAY_NEW_GOTO(ctx->ctx, target_mod->compiled->deviated_by, dev_mod, ret, cleanup);
Michal Vaskoe6143202020-07-03 13:02:08 +02006652 *dev_mod = mod_p->mod;
6653 }
Radek Krejciccd20f12019-02-15 14:12:27 +01006654 }
6655
Radek Krejci327de162019-06-14 12:52:07 +02006656 lysc_update_path(ctx, NULL, NULL);
Radek Krejciccd20f12019-02-15 14:12:27 +01006657 ret = LY_SUCCESS;
6658
6659cleanup:
6660 for (u = 0; u < devs_p.count && devs[u]; ++u) {
6661 LY_ARRAY_FREE(devs[u]->deviates);
6662 free(devs[u]);
6663 }
6664 free(devs);
6665 ly_set_erase(&targets, NULL);
6666 ly_set_erase(&devs_p, NULL);
6667
6668 return ret;
6669}
6670
Radek Krejcib56c7502019-02-13 14:19:54 +01006671/**
Radek Krejcid05cbd92018-12-05 14:26:40 +01006672 * @brief Compile the given YANG submodule into the main module.
6673 * @param[in] ctx Compile context
6674 * @param[in] inc Include structure from the main module defining the submodule.
Radek Krejcid05cbd92018-12-05 14:26:40 +01006675 * @return LY_ERR value - LY_SUCCESS or LY_EVALID.
6676 */
6677LY_ERR
Radek Krejciec4da802019-05-02 13:02:41 +02006678lys_compile_submodule(struct lysc_ctx *ctx, struct lysp_include *inc)
Radek Krejcid05cbd92018-12-05 14:26:40 +01006679{
6680 unsigned int u;
6681 LY_ERR ret = LY_SUCCESS;
6682 /* shortcuts */
Radek Krejci0bcdaed2019-01-10 10:21:34 +01006683 struct lysp_submodule *submod = inc->submodule;
Radek Krejcid05cbd92018-12-05 14:26:40 +01006684 struct lysc_module *mainmod = ctx->mod->compiled;
Radek Krejci474f9b82019-07-24 11:36:37 +02006685 struct lysp_node *node_p;
Radek Krejcid05cbd92018-12-05 14:26:40 +01006686
Michal Vasko33ff9422020-07-03 09:50:39 +02006687 if (!mainmod->mod->dis_features) {
Radek Krejci0af46292019-01-11 16:02:31 +01006688 /* features are compiled directly into the compiled module structure,
6689 * but it must be done in two steps to allow forward references (via if-feature) between the features themselves.
6690 * The features compilation is finished in the main module (lys_compile()). */
Radek Krejci0935f412019-08-20 16:15:18 +02006691 ret = lys_feature_precompile(ctx, NULL, NULL, submod->features, &mainmod->features);
6692 LY_CHECK_GOTO(ret, error);
6693 }
Radek Krejci0af46292019-01-11 16:02:31 +01006694
Michal Vasko33ff9422020-07-03 09:50:39 +02006695 if (!mainmod->mod->dis_identities) {
6696 ret = lys_identity_precompile(ctx, NULL, NULL, submod->identities, &mainmod->identities);
6697 LY_CHECK_GOTO(ret, error);
6698 }
Radek Krejcid05cbd92018-12-05 14:26:40 +01006699
Radek Krejci474f9b82019-07-24 11:36:37 +02006700 /* data nodes */
6701 LY_LIST_FOR(submod->data, node_p) {
6702 ret = lys_compile_node(ctx, node_p, NULL, 0);
6703 LY_CHECK_GOTO(ret, error);
6704 }
Radek Krejci8cce8532019-03-05 11:27:45 +01006705
Radek Krejciec4da802019-05-02 13:02:41 +02006706 COMPILE_ARRAY1_GOTO(ctx, submod->rpcs, mainmod->rpcs, NULL, u, lys_compile_action, 0, ret, error);
6707 COMPILE_ARRAY1_GOTO(ctx, submod->notifs, mainmod->notifs, NULL, u, lys_compile_notif, 0, ret, error);
Radek Krejci8cce8532019-03-05 11:27:45 +01006708
Radek Krejcid05cbd92018-12-05 14:26:40 +01006709error:
6710 return ret;
6711}
6712
Radek Krejci335332a2019-09-05 13:03:35 +02006713static void *
6714lys_compile_extension_instance_storage(enum ly_stmt stmt, struct lysc_ext_substmt *substmts)
6715{
6716 for (unsigned int u = 0; substmts[u].stmt; ++u) {
6717 if (substmts[u].stmt == stmt) {
6718 return substmts[u].storage;
6719 }
6720 }
6721 return NULL;
6722}
6723
6724LY_ERR
6725lys_compile_extension_instance(struct lysc_ctx *ctx, const struct lysp_ext_instance *ext, struct lysc_ext_substmt *substmts)
6726{
6727 LY_ERR ret = LY_EVALID, r;
6728 unsigned int u;
6729 struct lysp_stmt *stmt;
6730 void *parsed = NULL, **compiled = NULL;
Radek Krejci335332a2019-09-05 13:03:35 +02006731
6732 /* check for invalid substatements */
6733 for (stmt = ext->child; stmt; stmt = stmt->next) {
Radek Krejcif56e2a42019-09-09 14:15:25 +02006734 if (stmt->flags & (LYS_YIN_ATTR | LYS_YIN_ARGUMENT)) {
6735 continue;
6736 }
Radek Krejci335332a2019-09-05 13:03:35 +02006737 for (u = 0; substmts[u].stmt; ++u) {
6738 if (substmts[u].stmt == stmt->kw) {
6739 break;
6740 }
6741 }
6742 if (!substmts[u].stmt) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006743 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s%s%s\" extension instance.",
6744 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
Radek Krejci335332a2019-09-05 13:03:35 +02006745 goto cleanup;
6746 }
Radek Krejci335332a2019-09-05 13:03:35 +02006747 }
6748
Radek Krejciad5963b2019-09-06 16:03:05 +02006749 /* TODO store inherited data, e.g. status first, but mark them somehow to allow to overwrite them and not detect duplicity */
6750
Radek Krejci335332a2019-09-05 13:03:35 +02006751 /* keep order of the processing the same as the order in the defined substmts,
6752 * the order is important for some of the statements depending on others (e.g. type needs status and units) */
6753 for (u = 0; substmts[u].stmt; ++u) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006754 int stmt_present = 0;
6755
Radek Krejci335332a2019-09-05 13:03:35 +02006756 for (stmt = ext->child; stmt; stmt = stmt->next) {
6757 if (substmts[u].stmt != stmt->kw) {
6758 continue;
6759 }
6760
Radek Krejciad5963b2019-09-06 16:03:05 +02006761 stmt_present = 1;
Radek Krejci335332a2019-09-05 13:03:35 +02006762 if (substmts[u].storage) {
6763 switch (stmt->kw) {
Radek Krejciad5963b2019-09-06 16:03:05 +02006764 case LY_STMT_STATUS:
6765 assert(substmts[u].cardinality < LY_STMT_CARD_SOME);
6766 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &substmts[u].storage, /* TODO */ NULL), ret = r, cleanup);
6767 break;
6768 case LY_STMT_UNITS: {
6769 const char **units;
6770
6771 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6772 /* single item */
6773 if (*((const char **)substmts[u].storage)) {
6774 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6775 goto cleanup;
6776 }
6777 units = (const char **)substmts[u].storage;
6778 } else {
6779 /* sized array */
6780 const char ***units_array = (const char ***)substmts[u].storage;
6781 LY_ARRAY_NEW_GOTO(ctx->ctx, *units_array, units, ret, cleanup);
6782 }
6783 *units = lydict_insert(ctx->ctx, stmt->arg, 0);
6784 break;
6785 }
Radek Krejci335332a2019-09-05 13:03:35 +02006786 case LY_STMT_TYPE: {
6787 uint16_t *flags = lys_compile_extension_instance_storage(LY_STMT_STATUS, substmts);
6788 const char **units = lys_compile_extension_instance_storage(LY_STMT_UNITS, substmts);
6789
6790 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6791 /* single item */
Radek Krejciad5963b2019-09-06 16:03:05 +02006792 if (*(struct lysc_type**)substmts[u].storage) {
Radek Krejci335332a2019-09-05 13:03:35 +02006793 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6794 goto cleanup;
6795 }
6796 compiled = substmts[u].storage;
6797 } else {
6798 /* sized array */
6799 struct lysc_type ***types = (struct lysc_type***)substmts[u].storage, **type = NULL;
6800 LY_ARRAY_NEW_GOTO(ctx->ctx, *types, type, ret, cleanup);
6801 compiled = (void*)type;
6802 }
6803
Radek Krejciad5963b2019-09-06 16:03:05 +02006804 LY_CHECK_ERR_GOTO(r = lysp_stmt_parse(ctx, stmt, stmt->kw, &parsed, NULL), ret = r, cleanup);
Radek Krejci335332a2019-09-05 13:03:35 +02006805 LY_CHECK_ERR_GOTO(r = lys_compile_type(ctx, ext->parent_type == LYEXT_PAR_NODE ? ((struct lysc_node*)ext->parent)->sp : NULL,
6806 flags ? *flags : 0, ctx->mod_def->parsed, ext->name, parsed, (struct lysc_type**)compiled,
Radek Krejci38d85362019-09-05 16:26:38 +02006807 units && !*units ? units : NULL), lysp_type_free(ctx->ctx, parsed); free(parsed); ret = r, cleanup);
6808 lysp_type_free(ctx->ctx, parsed);
6809 free(parsed);
Radek Krejci335332a2019-09-05 13:03:35 +02006810 break;
6811 }
Radek Krejciad5963b2019-09-06 16:03:05 +02006812 case LY_STMT_IF_FEATURE: {
6813 struct lysc_iffeature *iff = NULL;
6814
6815 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
6816 /* single item */
6817 if (((struct lysc_iffeature*)substmts[u].storage)->features) {
6818 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LY_VCODE_DUPSTMT, stmt->stmt);
6819 goto cleanup;
6820 }
6821 iff = (struct lysc_iffeature*)substmts[u].storage;
6822 } else {
6823 /* sized array */
6824 struct lysc_iffeature **iffs = (struct lysc_iffeature**)substmts[u].storage;
6825 LY_ARRAY_NEW_GOTO(ctx->ctx, *iffs, iff, ret, cleanup);
6826 }
6827 LY_CHECK_ERR_GOTO(r = lys_compile_iffeature(ctx, &stmt->arg, iff), ret = r, cleanup);
6828 break;
6829 }
6830 /* TODO support other substatements (parse stmt to lysp and then compile lysp to lysc),
6831 * also note that in many statements their extensions are not taken into account */
Radek Krejci335332a2019-09-05 13:03:35 +02006832 default:
Radek Krejciad5963b2019-09-06 16:03:05 +02006833 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.",
6834 stmt->stmt, ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
Radek Krejci335332a2019-09-05 13:03:35 +02006835 goto cleanup;
6836 }
6837 }
Radek Krejci335332a2019-09-05 13:03:35 +02006838 }
Radek Krejci335332a2019-09-05 13:03:35 +02006839
Radek Krejciad5963b2019-09-06 16:03:05 +02006840 if ((substmts[u].cardinality == LY_STMT_CARD_MAND || substmts[u].cardinality == LY_STMT_CARD_SOME) && !stmt_present) {
6841 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s%s%s\".",
6842 ly_stmt2str(substmts[u].stmt), ext->name, ext->argument ? " " : "", ext->argument ? ext->argument : "");
6843 goto cleanup;
6844 }
Radek Krejci335332a2019-09-05 13:03:35 +02006845 }
6846
6847 ret = LY_SUCCESS;
6848
6849cleanup:
Radek Krejci335332a2019-09-05 13:03:35 +02006850 return ret;
6851}
6852
Michal Vasko175012e2019-11-06 15:49:14 +01006853/**
Michal Vaskoecd62de2019-11-13 12:35:11 +01006854 * @brief Check when for cyclic dependencies.
6855 * @param[in] set Set with all the referenced nodes.
6856 * @param[in] node Node whose "when" referenced nodes are in @p set.
6857 * @return LY_ERR value
6858 */
6859static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006860lys_compile_unres_when_cyclic(struct lyxp_set *set, const struct lysc_node *node)
Michal Vaskoecd62de2019-11-13 12:35:11 +01006861{
6862 struct lyxp_set tmp_set;
6863 struct lyxp_set_scnode *xp_scnode;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006864 uint32_t i, j;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006865 LY_ARRAY_COUNT_TYPE u;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006866 int idx;
6867 struct lysc_when *when;
6868 LY_ERR ret = LY_SUCCESS;
6869
6870 memset(&tmp_set, 0, sizeof tmp_set);
6871
6872 /* prepare in_ctx of the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006873 for ( i = 0; i < set->used; ++i) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006874 xp_scnode = &set->val.scnodes[i];
6875
Michal Vasko5c4e5892019-11-14 12:31:38 +01006876 if (xp_scnode->in_ctx != -1) {
6877 /* check node when, skip the context node (it was just checked) */
Michal Vaskoecd62de2019-11-13 12:35:11 +01006878 xp_scnode->in_ctx = 1;
6879 }
6880 }
6881
6882 for (i = 0; i < set->used; ++i) {
6883 xp_scnode = &set->val.scnodes[i];
6884 if (xp_scnode->in_ctx != 1) {
6885 /* already checked */
6886 continue;
6887 }
6888
Michal Vasko1bf09392020-03-27 12:38:10 +01006889 if ((xp_scnode->type != LYXP_NODE_ELEM) || (xp_scnode->scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))
Michal Vasko2ff7efe2019-12-10 14:50:59 +01006890 || !xp_scnode->scnode->when) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006891 /* no when to check */
6892 xp_scnode->in_ctx = 0;
6893 continue;
6894 }
6895
6896 node = xp_scnode->scnode;
6897 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006898 LY_ARRAY_FOR(node->when, u) {
6899 when = node->when[u];
Michal Vasko52927e22020-03-16 17:26:14 +01006900 ret = lyxp_atomize(when->cond, LYD_SCHEMA, when->module, when->context,
Michal Vaskoecd62de2019-11-13 12:35:11 +01006901 when->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, LYXP_SCNODE_SCHEMA);
6902 if (ret != LY_SUCCESS) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006903 LOGVAL(set->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when->cond->expr);
Michal Vaskoecd62de2019-11-13 12:35:11 +01006904 goto cleanup;
6905 }
6906
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006907 for (j = 0; j < tmp_set.used; ++j) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006908 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006909 if (tmp_set.val.scnodes[j].type == LYXP_NODE_ELEM) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01006910 /* try to find this node in our set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006911 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 +01006912 if ((idx > -1) && (set->val.scnodes[idx].in_ctx == -1)) {
Michal Vaskof6e51882019-12-16 09:59:45 +01006913 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 +01006914 ret = LY_EVALID;
6915 goto cleanup;
6916 }
6917
6918 /* needs to be checked, if in both sets, will be ignored */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006919 tmp_set.val.scnodes[j].in_ctx = 1;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006920 } else {
6921 /* no when, nothing to check */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006922 tmp_set.val.scnodes[j].in_ctx = 0;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006923 }
6924 }
6925
6926 /* merge this set into the global when set */
6927 lyxp_set_scnode_merge(set, &tmp_set);
6928 }
6929
6930 /* check when of non-data parents as well */
6931 node = node->parent;
6932 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
6933
Michal Vasko251f56e2019-11-14 16:06:47 +01006934 /* this node when was checked (xp_scnode could have been reallocd) */
6935 set->val.scnodes[i].in_ctx = -1;
Michal Vaskoecd62de2019-11-13 12:35:11 +01006936 }
6937
6938cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02006939 lyxp_set_free_content(&tmp_set);
Michal Vaskoecd62de2019-11-13 12:35:11 +01006940 return ret;
6941}
6942
6943/**
Michal Vasko175012e2019-11-06 15:49:14 +01006944 * @brief Check when/must expressions of a node on a compiled schema tree.
6945 * @param[in] ctx Compile context.
6946 * @param[in] node Node to check.
6947 * @return LY_ERR value
6948 */
6949static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02006950lys_compile_unres_xpath(struct lysc_ctx *ctx, const struct lysc_node *node)
Michal Vasko175012e2019-11-06 15:49:14 +01006951{
Michal Vasko175012e2019-11-06 15:49:14 +01006952 struct lyxp_set tmp_set;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02006953 uint32_t i;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02006954 LY_ARRAY_COUNT_TYPE u;
Michal Vasko5d8756a2019-11-07 15:21:00 +01006955 int opts, input_done = 0;
Michal Vasko175012e2019-11-06 15:49:14 +01006956 struct lysc_when **when = NULL;
6957 struct lysc_must *musts = NULL;
6958 LY_ERR ret = LY_SUCCESS;
Michal Vasko6b26e742020-07-17 15:02:10 +02006959 const struct lysc_node *op;
Michal Vasko175012e2019-11-06 15:49:14 +01006960
6961 memset(&tmp_set, 0, sizeof tmp_set);
Michal Vasko5d8756a2019-11-07 15:21:00 +01006962 opts = LYXP_SCNODE_SCHEMA;
Michal Vasko6b26e742020-07-17 15:02:10 +02006963 if (node->flags & LYS_CONFIG_R) {
6964 for (op = node->parent; op && !(op->nodetype & (LYS_RPC | LYS_ACTION)); op = op->parent);
6965 if (op) {
6966 /* we are actually in output */
6967 opts = LYXP_SCNODE_OUTPUT;
6968 }
6969 }
Michal Vasko175012e2019-11-06 15:49:14 +01006970
6971 switch (node->nodetype) {
6972 case LYS_CONTAINER:
6973 when = ((struct lysc_node_container *)node)->when;
6974 musts = ((struct lysc_node_container *)node)->musts;
6975 break;
6976 case LYS_CHOICE:
6977 when = ((struct lysc_node_choice *)node)->when;
6978 break;
6979 case LYS_LEAF:
6980 when = ((struct lysc_node_leaf *)node)->when;
6981 musts = ((struct lysc_node_leaf *)node)->musts;
6982 break;
6983 case LYS_LEAFLIST:
6984 when = ((struct lysc_node_leaflist *)node)->when;
6985 musts = ((struct lysc_node_leaflist *)node)->musts;
6986 break;
6987 case LYS_LIST:
6988 when = ((struct lysc_node_list *)node)->when;
6989 musts = ((struct lysc_node_list *)node)->musts;
6990 break;
6991 case LYS_ANYXML:
6992 case LYS_ANYDATA:
6993 when = ((struct lysc_node_anydata *)node)->when;
6994 musts = ((struct lysc_node_anydata *)node)->musts;
6995 break;
6996 case LYS_CASE:
6997 when = ((struct lysc_node_case *)node)->when;
6998 break;
6999 case LYS_NOTIF:
7000 musts = ((struct lysc_notif *)node)->musts;
7001 break;
Michal Vasko1bf09392020-03-27 12:38:10 +01007002 case LYS_RPC:
Michal Vasko5d8756a2019-11-07 15:21:00 +01007003 case LYS_ACTION:
7004 /* first process input musts */
7005 musts = ((struct lysc_action *)node)->input.musts;
7006 break;
Michal Vasko175012e2019-11-06 15:49:14 +01007007 default:
7008 /* nothing to check */
7009 break;
7010 }
7011
Michal Vasko175012e2019-11-06 15:49:14 +01007012 /* check "when" */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007013 LY_ARRAY_FOR(when, u) {
Michal Vasko004d3152020-06-11 19:59:22 +02007014 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 +02007015 when[u]->context ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG, &tmp_set, opts);
Michal Vasko175012e2019-11-06 15:49:14 +01007016 if (ret != LY_SUCCESS) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007017 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid when condition \"%s\".", when[u]->cond->expr);
Michal Vasko175012e2019-11-06 15:49:14 +01007018 goto cleanup;
7019 }
7020
Michal Vaskodc052f32019-11-07 11:11:38 +01007021 ctx->path[0] = '\0';
7022 lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007023 for (i = 0; i < tmp_set.used; ++i) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01007024 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007025 if ((tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (tmp_set.val.scnodes[i].in_ctx != -1)) {
7026 struct lysc_node *schema = tmp_set.val.scnodes[i].scnode;
Michal Vasko175012e2019-11-06 15:49:14 +01007027
Michal Vaskoecd62de2019-11-13 12:35:11 +01007028 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007029 ret = lysc_check_status(ctx, when[u]->flags, when[u]->module, node->name, schema->flags, schema->module,
Michal Vaskoecd62de2019-11-13 12:35:11 +01007030 schema->name);
7031 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko5c4e5892019-11-14 12:31:38 +01007032
7033 /* check dummy node accessing */
7034 if (schema == node) {
Michal Vaskof6e51882019-12-16 09:59:45 +01007035 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LY_VCODE_DUMMY_WHEN, node->name);
Michal Vasko5c4e5892019-11-14 12:31:38 +01007036 ret = LY_EVALID;
7037 goto cleanup;
7038 }
Michal Vasko175012e2019-11-06 15:49:14 +01007039 }
7040 }
7041
Michal Vaskoecd62de2019-11-13 12:35:11 +01007042 /* check cyclic dependencies */
Michal Vasko004d3152020-06-11 19:59:22 +02007043 ret = lys_compile_unres_when_cyclic(&tmp_set, node);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007044 LY_CHECK_GOTO(ret, cleanup);
7045
Michal Vaskod3678892020-05-21 10:06:58 +02007046 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01007047 }
7048
Michal Vasko5d8756a2019-11-07 15:21:00 +01007049check_musts:
Michal Vasko175012e2019-11-06 15:49:14 +01007050 /* check "must" */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007051 LY_ARRAY_FOR(musts, u) {
7052 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 +01007053 if (ret != LY_SUCCESS) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007054 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_SEMANTICS, "Invalid must restriction \"%s\".", musts[u].cond->expr);
Michal Vasko175012e2019-11-06 15:49:14 +01007055 goto cleanup;
7056 }
7057
Michal Vaskodc052f32019-11-07 11:11:38 +01007058 ctx->path[0] = '\0';
7059 lysc_path((struct lysc_node *)node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007060 for (i = 0; i < tmp_set.used; ++i) {
Michal Vasko175012e2019-11-06 15:49:14 +01007061 /* skip roots'n'stuff */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007062 if (tmp_set.val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko175012e2019-11-06 15:49:14 +01007063 /* XPath expression cannot reference "lower" status than the node that has the definition */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007064 ret = lysc_check_status(ctx, node->flags, musts[u].module, node->name, tmp_set.val.scnodes[i].scnode->flags,
7065 tmp_set.val.scnodes[i].scnode->module, tmp_set.val.scnodes[i].scnode->name);
Michal Vasko175012e2019-11-06 15:49:14 +01007066 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko175012e2019-11-06 15:49:14 +01007067 }
7068 }
7069
Michal Vaskod3678892020-05-21 10:06:58 +02007070 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01007071 }
7072
Michal Vasko1bf09392020-03-27 12:38:10 +01007073 if ((node->nodetype & (LYS_RPC | LYS_ACTION)) && !input_done) {
Michal Vasko5d8756a2019-11-07 15:21:00 +01007074 /* now check output musts */
7075 input_done = 1;
7076 musts = ((struct lysc_action *)node)->output.musts;
7077 opts = LYXP_SCNODE_OUTPUT;
7078 goto check_musts;
7079 }
7080
Michal Vasko175012e2019-11-06 15:49:14 +01007081cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02007082 lyxp_set_free_content(&tmp_set);
Michal Vasko175012e2019-11-06 15:49:14 +01007083 return ret;
7084}
7085
Michal Vasko8d544252020-03-02 10:19:52 +01007086static LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02007087lys_compile_unres_leafref(struct lysc_ctx *ctx, const struct lysc_node *node, struct lysc_type_leafref *lref)
7088{
Michal Vasko6b26e742020-07-17 15:02:10 +02007089 const struct lysc_node *target = NULL, *siter;
Michal Vasko004d3152020-06-11 19:59:22 +02007090 struct ly_path *p;
7091 struct lysc_type *type;
7092
7093 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
7094
7095 /* try to find the target */
Michal Vasko00cbf532020-06-15 13:58:47 +02007096 LY_CHECK_RET(ly_path_compile(ctx->ctx, node->module, node, lref->path, LY_PATH_LREF_TRUE,
7097 lysc_is_output(node) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY,
7098 lys_resolve_prefix, lref->path_context, LYD_SCHEMA, &p));
Michal Vasko004d3152020-06-11 19:59:22 +02007099
7100 /* get the target node */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007101 target = p[LY_ARRAY_COUNT(p) - 1].node;
Michal Vasko004d3152020-06-11 19:59:22 +02007102 ly_path_free(node->module->ctx, p);
7103
7104 if (!(target->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
7105 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7106 "Invalid leafref path \"%s\" - target node is %s instead of leaf or leaf-list.",
7107 lref->path->expr, lys_nodetype2str(target->nodetype));
7108 return LY_EVALID;
7109 }
7110
7111 /* check status */
7112 ctx->path[0] = '\0';
7113 lysc_path(node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
7114 ctx->path_len = strlen(ctx->path);
7115 if (lysc_check_status(ctx, node->flags, node->module, node->name, target->flags, target->module, target->name)) {
7116 return LY_EVALID;
7117 }
7118 ctx->path_len = 1;
7119 ctx->path[1] = '\0';
7120
7121 /* check config */
Michal Vasko6b26e742020-07-17 15:02:10 +02007122 if (lref->require_instance) {
7123 for (siter = node->parent; siter && !(siter->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); siter = siter->parent);
7124 if (!siter && (node->flags & LYS_CONFIG_W) && (target->flags & LYS_CONFIG_R)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007125 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE, "Invalid leafref path \"%s\" - target is supposed"
7126 " to represent configuration data (as the leafref does), but it does not.", lref->path->expr);
7127 return LY_EVALID;
7128 }
7129 }
7130
7131 /* store the target's type and check for circular chain of leafrefs */
7132 lref->realtype = ((struct lysc_node_leaf *)target)->type;
7133 for (type = lref->realtype; type && type->basetype == LY_TYPE_LEAFREF; type = ((struct lysc_type_leafref *)type)->realtype) {
7134 if (type == (struct lysc_type *)lref) {
7135 /* circular chain detected */
7136 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7137 "Invalid leafref path \"%s\" - circular chain of leafrefs detected.", lref->path->expr);
7138 return LY_EVALID;
7139 }
7140 }
7141
7142 /* check if leafref and its target are under common if-features */
7143 if (lys_compile_leafref_features_validate(node, target)) {
7144 LOGVAL(ctx->ctx, LY_VLOG_LYSC, node, LYVE_REFERENCE,
7145 "Invalid leafref path \"%s\" - set of features applicable to the leafref target is not a subset of"
7146 " features applicable to the leafref itself.", lref->path->expr);
7147 return LY_EVALID;
7148 }
7149
7150 return LY_SUCCESS;
7151}
7152
7153static LY_ERR
Michal Vasko8d544252020-03-02 10:19:52 +01007154lys_compile_ietf_netconf_wd_annotation(struct lysc_ctx *ctx, struct lys_module *mod)
7155{
7156 struct lysc_ext_instance *ext;
7157 struct lysp_ext_instance *ext_p = NULL;
7158 struct lysp_stmt *stmt;
7159 const struct lys_module *ext_mod;
7160 LY_ERR ret = LY_SUCCESS;
7161
7162 /* create the parsed extension instance manually */
7163 ext_p = calloc(1, sizeof *ext_p);
7164 LY_CHECK_ERR_GOTO(!ext_p, LOGMEM(ctx->ctx); ret = LY_EMEM, cleanup);
7165 ext_p->name = lydict_insert(ctx->ctx, "md:annotation", 0);
7166 ext_p->argument = lydict_insert(ctx->ctx, "default", 0);
7167 ext_p->insubstmt = LYEXT_SUBSTMT_SELF;
7168 ext_p->insubstmt_index = 0;
7169
7170 stmt = calloc(1, sizeof *ext_p->child);
7171 stmt->stmt = lydict_insert(ctx->ctx, "type", 0);
7172 stmt->arg = lydict_insert(ctx->ctx, "boolean", 0);
7173 stmt->kw = LY_STMT_TYPE;
7174 ext_p->child = stmt;
7175
7176 /* allocate new extension instance */
7177 LY_ARRAY_NEW_GOTO(mod->ctx, mod->compiled->exts, ext, ret, cleanup);
7178
7179 /* manually get extension definition module */
7180 ext_mod = ly_ctx_get_module_latest(ctx->ctx, "ietf-yang-metadata");
7181
7182 /* compile the extension instance */
7183 LY_CHECK_GOTO(ret = lys_compile_ext(ctx, ext_p, ext, mod->compiled, LYEXT_PAR_MODULE, ext_mod), cleanup);
7184
7185cleanup:
7186 lysp_ext_instance_free(ctx->ctx, ext_p);
7187 free(ext_p);
7188 return ret;
7189}
7190
Michal Vasko004d3152020-06-11 19:59:22 +02007191static LY_ERR
7192lys_compile_unres(struct lysc_ctx *ctx)
7193{
7194 struct lysc_node *node;
7195 struct lysc_type *type, *typeiter;
7196 struct lysc_type_leafref *lref;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007197 LY_ARRAY_COUNT_TYPE v;
Michal Vasko004d3152020-06-11 19:59:22 +02007198 uint32_t i;
7199
7200 /* for leafref, we need 2 rounds - first detects circular chain by storing the first referred type (which
7201 * can be also leafref, in case it is already resolved, go through the chain and check that it does not
7202 * point to the starting leafref type). The second round stores the first non-leafref type for later data validation. */
7203 for (i = 0; i < ctx->leafrefs.count; ++i) {
7204 node = ctx->leafrefs.objs[i];
7205 assert(node->nodetype & (LYS_LEAF | LYS_LEAFLIST));
7206 type = ((struct lysc_node_leaf *)node)->type;
7207 if (type->basetype == LY_TYPE_LEAFREF) {
7208 LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, (struct lysc_type_leafref *)type));
7209 } else if (type->basetype == LY_TYPE_UNION) {
7210 LY_ARRAY_FOR(((struct lysc_type_union *)type)->types, v) {
7211 if (((struct lysc_type_union *)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
7212 lref = (struct lysc_type_leafref *)((struct lysc_type_union *)type)->types[v];
7213 LY_CHECK_RET(lys_compile_unres_leafref(ctx, node, lref));
7214 }
7215 }
7216 }
7217 }
7218 for (i = 0; i < ctx->leafrefs.count; ++i) {
7219 /* store pointer to the real type */
7220 type = ((struct lysc_node_leaf *)ctx->leafrefs.objs[i])->type;
7221 if (type->basetype == LY_TYPE_LEAFREF) {
7222 for (typeiter = ((struct lysc_type_leafref*)type)->realtype;
7223 typeiter->basetype == LY_TYPE_LEAFREF;
7224 typeiter = ((struct lysc_type_leafref*)typeiter)->realtype);
7225 ((struct lysc_type_leafref*)type)->realtype = typeiter;
7226 } else if (type->basetype == LY_TYPE_UNION) {
7227 LY_ARRAY_FOR(((struct lysc_type_union*)type)->types, v) {
7228 if (((struct lysc_type_union*)type)->types[v]->basetype == LY_TYPE_LEAFREF) {
7229 for (typeiter = ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v])->realtype;
7230 typeiter->basetype == LY_TYPE_LEAFREF;
7231 typeiter = ((struct lysc_type_leafref*)typeiter)->realtype);
7232 ((struct lysc_type_leafref*)((struct lysc_type_union*)type)->types[v])->realtype = typeiter;
7233 }
7234 }
7235 }
7236 }
7237
7238 /* check xpath */
7239 for (i = 0; i < ctx->xpath.count; ++i) {
7240 LY_CHECK_RET(lys_compile_unres_xpath(ctx, ctx->xpath.objs[i]));
7241 }
7242
7243 /* finish incomplete default values compilation */
7244 for (i = 0; i < ctx->dflts.count; ++i) {
7245 struct ly_err_item *err = NULL;
7246 struct lysc_incomplete_dflt *r = ctx->dflts.objs[i];
7247 LY_ERR ret;
7248 ret = r->dflt->realtype->plugin->store(ctx->ctx, r->dflt->realtype, r->dflt->original, strlen(r->dflt->original),
7249 LY_TYPE_OPTS_SCHEMA | LY_TYPE_OPTS_STORE | LY_TYPE_OPTS_SECOND_CALL, lys_resolve_prefix,
7250 (void*)r->dflt_mod, LYD_XML, r->context_node, NULL, r->dflt, NULL, &err);
7251 if (err) {
7252 ly_err_print(err);
7253 ctx->path[0] = '\0';
7254 lysc_path(r->context_node, LYSC_PATH_LOG, ctx->path, LYSC_CTX_BUFSIZE);
7255 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_SEMANTICS,
7256 "Invalid default - value does not fit the type (%s).", err->msg);
7257 ly_err_free(err);
7258 }
7259 LY_CHECK_RET(ret);
7260 }
7261
7262 return LY_SUCCESS;
7263}
7264
Radek Krejci19a96102018-11-15 13:38:09 +01007265LY_ERR
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007266lys_compile(struct lys_module **mod, int options)
Radek Krejci19a96102018-11-15 13:38:09 +01007267{
7268 struct lysc_ctx ctx = {0};
7269 struct lysc_module *mod_c;
7270 struct lysp_module *sp;
7271 struct lysp_node *node_p;
Radek Krejci95710c92019-02-11 15:49:55 +01007272 struct lysp_augment **augments = NULL;
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007273 struct lysp_grp *grps;
Radek Krejci95710c92019-02-11 15:49:55 +01007274 struct lys_module *m;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02007275 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007276 uint32_t i;
Radek Krejcia46012b2020-08-12 15:41:04 +02007277 uint16_t compile_id;
Radek Krejcid05cbd92018-12-05 14:26:40 +01007278 LY_ERR ret = LY_SUCCESS;
Radek Krejci19a96102018-11-15 13:38:09 +01007279
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007280 LY_CHECK_ARG_RET(NULL, mod, *mod, (*mod)->parsed, (*mod)->ctx, LY_EINVAL);
Radek Krejci096235c2019-01-11 11:12:19 +01007281
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007282 if (!(*mod)->implemented) {
Radek Krejci096235c2019-01-11 11:12:19 +01007283 /* just imported modules are not compiled */
7284 return LY_SUCCESS;
7285 }
7286
Radek Krejcia46012b2020-08-12 15:41:04 +02007287 compile_id = ++(*mod)->ctx->module_set_id;
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007288 sp = (*mod)->parsed;
Radek Krejci19a96102018-11-15 13:38:09 +01007289
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007290 ctx.ctx = (*mod)->ctx;
7291 ctx.mod = *mod;
7292 ctx.mod_def = *mod;
Radek Krejciec4da802019-05-02 13:02:41 +02007293 ctx.options = options;
Radek Krejci327de162019-06-14 12:52:07 +02007294 ctx.path_len = 1;
7295 ctx.path[0] = '/';
Radek Krejci19a96102018-11-15 13:38:09 +01007296
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007297 (*mod)->compiled = mod_c = calloc(1, sizeof *mod_c);
7298 LY_CHECK_ERR_RET(!mod_c, LOGMEM((*mod)->ctx), LY_EMEM);
7299 mod_c->mod = *mod;
Radek Krejci19a96102018-11-15 13:38:09 +01007300
Michal Vasko7c8439f2020-08-05 13:25:19 +02007301 LY_ARRAY_FOR(sp->imports, u) {
7302 LY_CHECK_GOTO(ret = lys_compile_import(&ctx, &sp->imports[u]), error);
7303 }
Radek Krejcid05cbd92018-12-05 14:26:40 +01007304 LY_ARRAY_FOR(sp->includes, u) {
Michal Vasko7c8439f2020-08-05 13:25:19 +02007305 LY_CHECK_GOTO(ret = lys_compile_submodule(&ctx, &sp->includes[u]), error);
Radek Krejcid05cbd92018-12-05 14:26:40 +01007306 }
Radek Krejci0935f412019-08-20 16:15:18 +02007307
7308 /* features */
Michal Vasko33ff9422020-07-03 09:50:39 +02007309 if ((*mod)->dis_features) {
Radek Krejci0af46292019-01-11 16:02:31 +01007310 /* there is already precompiled array of features */
Michal Vasko33ff9422020-07-03 09:50:39 +02007311 mod_c->features = (*mod)->dis_features;
7312 (*mod)->dis_features = NULL;
Radek Krejci0af46292019-01-11 16:02:31 +01007313 } else {
7314 /* features are compiled directly into the compiled module structure,
7315 * 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 +02007316 ret = lys_feature_precompile(&ctx, NULL, NULL, sp->features, &mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007317 LY_CHECK_GOTO(ret, error);
7318 }
Michal Vasko33ff9422020-07-03 09:50:39 +02007319
Radek Krejci0af46292019-01-11 16:02:31 +01007320 /* finish feature compilation, not only for the main module, but also for the submodules.
7321 * Due to possible forward references, it must be done when all the features (including submodules)
7322 * are present. */
7323 LY_ARRAY_FOR(sp->features, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02007324 ret = lys_feature_precompile_finish(&ctx, &sp->features[u], mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007325 LY_CHECK_GOTO(ret != LY_SUCCESS, error);
7326 }
Radek Krejci327de162019-06-14 12:52:07 +02007327 lysc_update_path(&ctx, NULL, "{submodule}");
Radek Krejci0af46292019-01-11 16:02:31 +01007328 LY_ARRAY_FOR(sp->includes, v) {
Radek Krejci327de162019-06-14 12:52:07 +02007329 lysc_update_path(&ctx, NULL, sp->includes[v].name);
Radek Krejci0af46292019-01-11 16:02:31 +01007330 LY_ARRAY_FOR(sp->includes[v].submodule->features, u) {
Radek Krejciec4da802019-05-02 13:02:41 +02007331 ret = lys_feature_precompile_finish(&ctx, &sp->includes[v].submodule->features[u], mod_c->features);
Radek Krejci0af46292019-01-11 16:02:31 +01007332 LY_CHECK_GOTO(ret != LY_SUCCESS, error);
7333 }
Radek Krejci327de162019-06-14 12:52:07 +02007334 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01007335 }
Radek Krejci327de162019-06-14 12:52:07 +02007336 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci0af46292019-01-11 16:02:31 +01007337
Michal Vasko33ff9422020-07-03 09:50:39 +02007338 /* identities, work similarly to features with the precompilation */
7339 if ((*mod)->dis_identities) {
7340 mod_c->identities = (*mod)->dis_identities;
7341 (*mod)->dis_identities = NULL;
7342 } else {
7343 ret = lys_identity_precompile(&ctx, NULL, NULL, sp->identities, &mod_c->identities);
7344 LY_CHECK_GOTO(ret, error);
7345 }
Radek Krejci19a96102018-11-15 13:38:09 +01007346 if (sp->identities) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007347 LY_CHECK_GOTO(ret = lys_compile_identities_derived(&ctx, sp->identities, mod_c->identities), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007348 }
Michal Vasko33ff9422020-07-03 09:50:39 +02007349 lysc_update_path(&ctx, NULL, "{submodule}");
7350 LY_ARRAY_FOR(sp->includes, v) {
7351 if (sp->includes[v].submodule->identities) {
7352 lysc_update_path(&ctx, NULL, sp->includes[v].name);
7353 ret = lys_compile_identities_derived(&ctx, sp->includes[v].submodule->identities, mod_c->identities);
7354 LY_CHECK_GOTO(ret, error);
7355 lysc_update_path(&ctx, NULL, NULL);
7356 }
7357 }
Radek Krejci327de162019-06-14 12:52:07 +02007358 lysc_update_path(&ctx, NULL, NULL);
Radek Krejci19a96102018-11-15 13:38:09 +01007359
Radek Krejci95710c92019-02-11 15:49:55 +01007360 /* data nodes */
Radek Krejci19a96102018-11-15 13:38:09 +01007361 LY_LIST_FOR(sp->data, node_p) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007362 LY_CHECK_GOTO(ret = lys_compile_node(&ctx, node_p, NULL, 0), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007363 }
Radek Krejci95710c92019-02-11 15:49:55 +01007364
Radek Krejciec4da802019-05-02 13:02:41 +02007365 COMPILE_ARRAY1_GOTO(&ctx, sp->rpcs, mod_c->rpcs, NULL, u, lys_compile_action, 0, ret, error);
7366 COMPILE_ARRAY1_GOTO(&ctx, sp->notifs, mod_c->notifs, NULL, u, lys_compile_notif, 0, ret, error);
Radek Krejciccd20f12019-02-15 14:12:27 +01007367
Radek Krejci95710c92019-02-11 15:49:55 +01007368 /* augments - sort first to cover augments augmenting other augments */
Radek Krejcid3acfce2019-09-09 14:48:50 +02007369 LY_CHECK_GOTO(ret = lys_compile_augment_sort(&ctx, sp->augments, sp->includes, &augments), error);
Radek Krejci95710c92019-02-11 15:49:55 +01007370 LY_ARRAY_FOR(augments, u) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007371 LY_CHECK_GOTO(ret = lys_compile_augment(&ctx, augments[u], NULL), error);
Radek Krejci95710c92019-02-11 15:49:55 +01007372 }
Radek Krejciccd20f12019-02-15 14:12:27 +01007373
Radek Krejci474f9b82019-07-24 11:36:37 +02007374 /* deviations TODO cover deviations from submodules */
Radek Krejcid3acfce2019-09-09 14:48:50 +02007375 LY_CHECK_GOTO(ret = lys_compile_deviations(&ctx, sp), error);
Radek Krejci19a96102018-11-15 13:38:09 +01007376
Radek Krejci0935f412019-08-20 16:15:18 +02007377 /* extension instances TODO cover extension instances from submodules */
7378 COMPILE_EXTS_GOTO(&ctx, sp->exts, mod_c->exts, mod_c, LYEXT_PAR_MODULE, ret, error);
Radek Krejci19a96102018-11-15 13:38:09 +01007379
Michal Vasko004d3152020-06-11 19:59:22 +02007380 /* finish compilation for all unresolved items in the context */
7381 LY_CHECK_GOTO(ret = lys_compile_unres(&ctx), error);
Radek Krejci474f9b82019-07-24 11:36:37 +02007382
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007383 /* validate non-instantiated groupings from the parsed schema,
7384 * without it we would accept even the schemas with invalid grouping specification */
7385 ctx.options |= LYSC_OPT_GROUPING;
7386 LY_ARRAY_FOR(sp->groupings, u) {
7387 if (!(sp->groupings[u].flags & LYS_USED_GRP)) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007388 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, node_p, &sp->groupings[u]), error);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007389 }
7390 }
7391 LY_LIST_FOR(sp->data, node_p) {
7392 grps = (struct lysp_grp*)lysp_node_groupings(node_p);
7393 LY_ARRAY_FOR(grps, u) {
7394 if (!(grps[u].flags & LYS_USED_GRP)) {
Radek Krejcid3acfce2019-09-09 14:48:50 +02007395 LY_CHECK_GOTO(ret = lys_compile_grouping(&ctx, node_p, &grps[u]), error);
Radek Krejcif2de0ed2019-05-02 14:13:18 +02007396 }
7397 }
7398 }
7399
Radek Krejci474f9b82019-07-24 11:36:37 +02007400 if (ctx.ctx->flags & LY_CTX_CHANGED_TREE) {
7401 /* TODO Deviation has changed tree of a module(s) in the context (by deviate-not-supported), it is necessary to recompile
7402 leafref paths, default values and must/when expressions in all schemas of the context to check that they are still valid */
7403 }
7404
Michal Vasko8d544252020-03-02 10:19:52 +01007405#if 0
7406 /* hack for NETCONF's edit-config's operation attribute. It is not defined in the schema, but since libyang
7407 * implements YANG metadata (annotations), we need its definition. Because the ietf-netconf schema is not the
7408 * internal part of libyang, we cannot add the annotation into the schema source, but we do it here to have
7409 * the anotation definitions available in the internal schema structure. */
7410 if (ly_strequal(mod->name, "ietf-netconf", 0)) {
7411 if (lyp_add_ietf_netconf_annotations(mod)) {
7412 lys_free(mod, NULL, 1, 1);
7413 return NULL;
7414 }
7415 }
7416#endif
7417
7418 /* add ietf-netconf-with-defaults "default" metadata to the compiled module */
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007419 if (!strcmp((*mod)->name, "ietf-netconf-with-defaults")) {
7420 LY_CHECK_GOTO(ret = lys_compile_ietf_netconf_wd_annotation(&ctx, *mod), error);
Michal Vasko8d544252020-03-02 10:19:52 +01007421 }
7422
Radek Krejci1c0c3442019-07-23 16:08:47 +02007423 ly_set_erase(&ctx.dflts, free);
Michal Vasko004d3152020-06-11 19:59:22 +02007424 ly_set_erase(&ctx.xpath, NULL);
7425 ly_set_erase(&ctx.leafrefs, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01007426 ly_set_erase(&ctx.groupings, NULL);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02007427 ly_set_erase(&ctx.tpdf_chain, NULL);
Radek Krejci95710c92019-02-11 15:49:55 +01007428 LY_ARRAY_FREE(augments);
Radek Krejcia3045382018-11-22 14:30:31 +01007429
Radek Krejciec4da802019-05-02 13:02:41 +02007430 if (ctx.options & LYSC_OPT_FREE_SP) {
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007431 lysp_module_free((*mod)->parsed);
7432 (*mod)->parsed = NULL;
Radek Krejci19a96102018-11-15 13:38:09 +01007433 }
7434
Radek Krejciec4da802019-05-02 13:02:41 +02007435 if (!(ctx.options & LYSC_OPT_INTERNAL)) {
Radek Krejci95710c92019-02-11 15:49:55 +01007436 /* remove flag of the modules implemented by dependency */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007437 for (i = 0; i < ctx.ctx->list.count; ++i) {
7438 m = ctx.ctx->list.objs[i];
Radek Krejcia46012b2020-08-12 15:41:04 +02007439 if (m->implemented > 1) {
Radek Krejci95710c92019-02-11 15:49:55 +01007440 m->implemented = 1;
7441 }
7442 }
7443 }
7444
Radek Krejci19a96102018-11-15 13:38:09 +01007445 return LY_SUCCESS;
7446
7447error:
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007448 lys_feature_precompile_revert(&ctx, *mod);
Radek Krejci1c0c3442019-07-23 16:08:47 +02007449 ly_set_erase(&ctx.dflts, free);
Michal Vasko004d3152020-06-11 19:59:22 +02007450 ly_set_erase(&ctx.xpath, NULL);
7451 ly_set_erase(&ctx.leafrefs, NULL);
Radek Krejcie86bf772018-12-14 11:39:53 +01007452 ly_set_erase(&ctx.groupings, NULL);
Radek Krejci99b5b2a2019-04-30 16:57:04 +02007453 ly_set_erase(&ctx.tpdf_chain, NULL);
Radek Krejci95710c92019-02-11 15:49:55 +01007454 LY_ARRAY_FREE(augments);
Radek Krejci19a96102018-11-15 13:38:09 +01007455 lysc_module_free(mod_c, NULL);
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007456 (*mod)->compiled = NULL;
Radek Krejci95710c92019-02-11 15:49:55 +01007457
Radek Krejcia46012b2020-08-12 15:41:04 +02007458 /* revert compilation of modules implemented by dependency, but only by (directly or indirectly) by dependency
7459 * of this module, since this module can be also compiled from dependency, there can be some other modules being
7460 * processed and we are going to get back to them via stack, so freeing them is not a good idea. */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02007461 for (i = 0; i < ctx.ctx->list.count; ++i) {
7462 m = ctx.ctx->list.objs[i];
Radek Krejcia46012b2020-08-12 15:41:04 +02007463 if ((m->implemented >= compile_id) && m->compiled) {
Radek Krejci95710c92019-02-11 15:49:55 +01007464 /* revert features list to the precompiled state */
7465 lys_feature_precompile_revert(&ctx, m);
7466 /* mark module as imported-only / not-implemented */
7467 m->implemented = 0;
7468 /* free the compiled version of the module */
7469 lysc_module_free(m->compiled, NULL);
7470 m->compiled = NULL;
7471 }
7472 }
7473
Radek Krejcif0e1ba52020-05-22 15:14:35 +02007474 /* remove the module itself from the context and free it */
7475 ly_set_rm(&ctx.ctx->list, *mod, NULL);
7476 lys_module_free(*mod, NULL);
7477 *mod = NULL;
7478
Radek Krejci19a96102018-11-15 13:38:09 +01007479 return ret;
7480}