blob: eb38f749fa7aa23d70c5e023af91fc0997a9aa29 [file] [log] [blame]
Michal Vaskocde73ac2019-11-14 16:10:27 +01001/**
2 * @file validation.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief Validation
5 *
Michal Vaskoe78faec2021-04-08 17:24:43 +02006 * Copyright (c) 2019 - 2021 CESNET, z.s.p.o.
Michal Vaskocde73ac2019-11-14 16:10:27 +01007 *
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 */
Christian Hopps32874e12021-05-01 09:43:54 -040014#define _GNU_SOURCE /* asprintf, strdup */
Michal Vasko81bc5512020-11-13 18:05:18 +010015
Michal Vaskofbed4ea2020-07-08 10:43:30 +020016#include "validation.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010017
18#include <assert.h>
Radek Krejci77114102021-03-10 15:21:57 +010019#include <limits.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include <stdint.h>
Michal Vasko52927e22020-03-16 17:26:14 +010021#include <stdio.h>
22#include <stdlib.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020023#include <string.h>
Michal Vaskocde73ac2019-11-14 16:10:27 +010024
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include "common.h"
Michal Vasko69730152020-10-09 16:30:07 +020026#include "compat.h"
Michal Vasko8104fd42020-07-13 11:09:51 +020027#include "diff.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020028#include "hash_table.h"
29#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020030#include "parser_data.h"
Radek Krejci77114102021-03-10 15:21:57 +010031#include "parser_internal.h"
Radek Krejci1b2eef82021-02-17 11:17:27 +010032#include "plugins_exts.h"
Radek Krejcif1ca0ac2021-04-12 16:00:06 +020033#include "plugins_exts/metadata.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020034#include "plugins_types.h"
35#include "set.h"
36#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010037#include "tree_data.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010038#include "tree_data_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020039#include "tree_schema.h"
Michal Vasko14654712020-02-06 08:35:21 +010040#include "tree_schema_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020041#include "xpath.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010042
Michal Vaskoa6669ba2020-08-06 16:14:26 +020043LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020044lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff)
45{
46 LY_ERR ret = LY_SUCCESS;
47 struct lyd_node *new_diff = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010048 const struct lyd_node *prev_inst;
Michal Vaskoe78faec2021-04-08 17:24:43 +020049 char *key = NULL, *value = NULL, *position = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010050 size_t buflen = 0, bufused = 0;
Michal Vaskoe78faec2021-04-08 17:24:43 +020051 uint32_t pos;
Michal Vasko8104fd42020-07-13 11:09:51 +020052
53 assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE));
54
Michal Vasko81bc5512020-11-13 18:05:18 +010055 if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +020056 if (lysc_is_dup_inst_list(node->schema)) {
57 pos = lyd_list_pos(node);
Michal Vasko81bc5512020-11-13 18:05:18 +010058
Michal Vaskoe78faec2021-04-08 17:24:43 +020059 /* generate position meta */
60 if (pos > 1) {
61 if (asprintf(&position, "%" PRIu32, pos - 1) == -1) {
62 LOGMEM(LYD_CTX(node));
63 ret = LY_EMEM;
64 goto cleanup;
65 }
Michal Vasko81bc5512020-11-13 18:05:18 +010066 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020067 position = strdup("");
68 LY_CHECK_ERR_GOTO(!position, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
Michal Vasko81bc5512020-11-13 18:05:18 +010069 }
70 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020071 if (node->prev->next && (node->prev->schema == node->schema)) {
72 prev_inst = node->prev;
Michal Vasko81bc5512020-11-13 18:05:18 +010073 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020074 /* first instance */
75 prev_inst = NULL;
76 }
77
78 if (node->schema->nodetype == LYS_LIST) {
79 /* generate key meta */
80 if (prev_inst) {
81 LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup);
82 } else {
83 key = strdup("");
84 LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
85 }
86 } else {
87 /* generate value meta */
88 if (prev_inst) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020089 value = strdup(lyd_get_value(prev_inst));
Michal Vaskoe78faec2021-04-08 17:24:43 +020090 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
91 } else {
92 value = strdup("");
93 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
94 }
Michal Vasko81bc5512020-11-13 18:05:18 +010095 }
96 }
97 }
98
Michal Vasko8104fd42020-07-13 11:09:51 +020099 /* create new diff tree */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200100 LY_CHECK_GOTO(ret = lyd_diff_add(node, op, NULL, NULL, key, value, position, NULL, NULL, &new_diff), cleanup);
Michal Vasko8104fd42020-07-13 11:09:51 +0200101
102 /* merge into existing diff */
Michal Vaskoc0e58e82020-11-11 19:04:33 +0100103 ret = lyd_diff_merge_all(diff, new_diff, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +0200104
Michal Vasko81bc5512020-11-13 18:05:18 +0100105cleanup:
Michal Vasko8104fd42020-07-13 11:09:51 +0200106 lyd_free_tree(new_diff);
Michal Vasko81bc5512020-11-13 18:05:18 +0100107 free(key);
108 free(value);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200109 free(position);
Michal Vasko8104fd42020-07-13 11:09:51 +0200110 return ret;
111}
112
113/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100114 * @brief Evaluate all relevant "when" conditions of a node.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100115 *
Michal Vaskobd4db892020-11-23 16:58:20 +0100116 * @param[in] tree Data tree.
117 * @param[in] node Node whose relevant when conditions will be evaluated.
118 * @param[in] schema Schema node of @p node. It may not be possible to use directly if @p node is opaque.
119 * @param[out] disabled First when that evaluated false, if any.
120 * @return LY_SUCCESS on success.
121 * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated.
122 * @return LY_ERR value on error.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100123 */
124static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100125lyd_validate_node_when(const struct lyd_node *tree, const struct lyd_node *node, const struct lysc_node *schema,
126 const struct lysc_when **disabled)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100127{
Michal Vasko8104fd42020-07-13 11:09:51 +0200128 LY_ERR ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100129 const struct lyd_node *ctx_node;
130 struct lyxp_set xp_set;
Michal Vaskobd4db892020-11-23 16:58:20 +0100131 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100132
Michal Vaskobd4db892020-11-23 16:58:20 +0100133 assert(!node->schema || (node->schema == schema));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100134
Michal Vaskobd4db892020-11-23 16:58:20 +0100135 *disabled = NULL;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100136
Michal Vaskobd4db892020-11-23 16:58:20 +0100137 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100138 const struct lysc_when *when;
139 struct lysc_when **when_list = lysc_node_when(schema);
140 LY_ARRAY_FOR(when_list, u) {
141 when = when_list[u];
Michal Vaskocde73ac2019-11-14 16:10:27 +0100142
Michal Vaskobd4db892020-11-23 16:58:20 +0100143 /* get context node */
144 if (when->context == schema) {
145 ctx_node = node;
146 } else {
147 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
Michal Vasko9e685082021-01-29 14:49:09 +0100148 ctx_node = lyd_parent(node);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100149 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100150
151 /* evaluate when */
152 memset(&xp_set, 0, sizeof xp_set);
Radek Krejci8df109d2021-04-23 12:19:08 +0200153 ret = lyxp_eval(LYD_CTX(node), when->cond, schema->module, LY_VALUE_SCHEMA_RESOLVED, when->prefixes,
Michal Vasko400e9672021-01-11 13:39:17 +0100154 ctx_node, tree, &xp_set, LYXP_SCHEMA);
Michal Vaskobd4db892020-11-23 16:58:20 +0100155 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
156
157 /* return error or LY_EINCOMPLETE for dependant unresolved when */
158 LY_CHECK_RET(ret);
159
160 if (!xp_set.val.bln) {
161 /* false when */
162 *disabled = when;
163 return LY_SUCCESS;
Michal Vasko8104fd42020-07-13 11:09:51 +0200164 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100165 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100166
167 schema = schema->parent;
168 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
169
170 return LY_SUCCESS;
171}
172
173/**
174 * @brief Evaluate when conditions of collected unres nodes.
175 *
176 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100177 * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it.
178 * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be
179 * the first top-level sibling.
Michal Vaskobd4db892020-11-23 16:58:20 +0100180 * @param[in] node_when Set with nodes with "when" conditions.
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200181 * @param[in,out] node_types Set with nodes with unresolved types, remove any with false "when" parents.
Michal Vaskobd4db892020-11-23 16:58:20 +0100182 * @param[in,out] diff Validation diff.
183 * @return LY_SUCCESS on success.
184 * @return LY_ERR value on error.
185 */
186static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100187lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200188 struct ly_set *node_types, struct lyd_node **diff)
Michal Vaskobd4db892020-11-23 16:58:20 +0100189{
190 LY_ERR ret;
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200191 uint32_t i, idx;
Michal Vaskobd4db892020-11-23 16:58:20 +0100192 const struct lysc_when *disabled;
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200193 struct lyd_node *node = NULL, *elem;
Michal Vaskobd4db892020-11-23 16:58:20 +0100194
195 if (!node_when->count) {
196 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100197 }
198
Michal Vaskobd4db892020-11-23 16:58:20 +0100199 i = node_when->count;
200 do {
201 --i;
202 node = node_when->dnodes[i];
Radek Krejciddace2c2021-01-08 11:30:56 +0100203 LOG_LOCSET(node->schema, node, NULL, NULL);
Michal Vaskobd4db892020-11-23 16:58:20 +0100204
205 /* evaluate all when expressions that affect this node's existence */
206 ret = lyd_validate_node_when(*tree, node, node->schema, &disabled);
207 if (!ret) {
208 if (disabled) {
209 /* when false */
210 if (node->flags & LYD_WHEN_TRUE) {
211 /* autodelete */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100212 lyd_del_move_root(tree, node, mod);
Michal Vaskobd4db892020-11-23 16:58:20 +0100213 if (diff) {
214 /* add into diff */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100215 ret = lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
216 LY_CHECK_GOTO(ret, error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100217 }
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200218
219 /* remove from node types set, if present */
220 LYD_TREE_DFS_BEGIN(node, elem) {
221 if (ly_set_contains(node_types, elem, &idx)) {
222 LY_CHECK_GOTO(ret = ly_set_rm_index(node_types, idx, NULL), error);
223 }
224 LYD_TREE_DFS_END(node, elem);
225 }
226
227 /* free */
Michal Vaskobd4db892020-11-23 16:58:20 +0100228 lyd_free_tree(node);
229 } else {
230 /* invalid data */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100231 LOGVAL(LYD_CTX(node), LY_VCODE_NOWHEN, disabled->cond->expr);
232 ret = LY_EVALID;
233 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100234 }
235 } else {
236 /* when true */
237 node->flags |= LYD_WHEN_TRUE;
238 }
239
240 /* remove this node from the set, its when was resolved */
241 ly_set_rm_index(node_when, i, NULL);
242 } else if (ret != LY_EINCOMPLETE) {
243 /* error */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100244 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100245 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100246
Radek Krejciddace2c2021-01-08 11:30:56 +0100247 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskobd4db892020-11-23 16:58:20 +0100248 } while (i);
249
250 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100251
252error:
Radek Krejciddace2c2021-01-08 11:30:56 +0100253 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100254 return ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100255}
256
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200257struct node_ext {
258 struct lyd_node *node;
259 struct lysc_ext_instance *ext;
260};
261
262static LY_ERR
263node_ext_tovalidate_add(struct ly_set *node_exts, struct lysc_ext_instance *exts, struct lyd_node *node)
264{
265 LY_ERR ret = LY_SUCCESS;
266 struct lysc_ext_instance *ext;
267 struct node_ext *rec;
268
Radek Krejci3011b072021-04-13 20:25:34 +0200269 LY_ARRAY_FOR(exts, struct lysc_ext_instance, ext) {
Radek Krejci4a4d1e02021-04-09 14:04:40 +0200270 if (ext->def->plugin && ext->def->plugin->validate) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200271 rec = malloc(sizeof *rec);
272 LY_CHECK_ERR_RET(!rec, LOGMEM(LYD_CTX(node)), LY_EMEM);
273 rec->ext = ext;
274 rec->node = node;
275
276 ret = ly_set_add(node_exts, rec, 1, NULL);
277 if (ret) {
278 free(rec);
279 break;
280 }
281 }
282 }
283
284 return ret;
285}
286
Michal Vaskocde73ac2019-11-14 16:10:27 +0100287LY_ERR
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200288lysc_node_ext_tovalidate(struct ly_set *node_exts, struct lyd_node *node)
289{
290 const struct lysc_node *schema = node->schema;
291
292 if (!schema) {
293 /* nothing to do */
294 return LY_SUCCESS;
295 }
296
297 /* node's extensions */
298 LY_CHECK_RET(node_ext_tovalidate_add(node_exts, schema->exts, node));
299
300 if (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
301 /* type's extensions */
302 LY_CHECK_RET(node_ext_tovalidate_add(node_exts, ((struct lysc_node_leaf *)schema)->type->exts, node));
303 }
304
305 return LY_SUCCESS;
306}
307
308LY_ERR
309lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when, struct ly_set *node_exts,
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100310 struct ly_set *node_types, struct ly_set *meta_types, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100311{
312 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200313 uint32_t i;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100314
Michal Vaskob1b5c262020-03-05 14:29:47 +0100315 if (node_when) {
316 /* evaluate all when conditions */
317 uint32_t prev_count;
318 do {
319 prev_count = node_when->count;
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200320 LY_CHECK_RET(lyd_validate_unres_when(tree, mod, node_when, node_types, diff));
Radek Krejci0f969882020-08-21 16:56:47 +0200321 /* there must have been some when conditions resolved */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100322 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100323
Michal Vaskob1b5c262020-03-05 14:29:47 +0100324 /* there could have been no cyclic when dependencies, checked during compilation */
325 assert(!node_when->count);
326 }
327
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200328 if (node_exts && node_exts->count) {
329 i = node_exts->count;
330 do {
331 --i;
332
333 struct node_ext *item = node_exts->objs[i];
334
335 LOG_LOCSET(item->node->schema, item->node, NULL, NULL);
336 ret = item->ext->def->plugin->validate(item->ext, item->node);
337 LOG_LOCBACK(item->node->schema ? 1 : 0, 1, 0, 0);
338 LY_CHECK_RET(ret);
339
340 /* remove this node from the set */
341 ly_set_rm_index(node_exts, i, free);
342 } while (i);
343 }
344
Michal Vaskob1b5c262020-03-05 14:29:47 +0100345 if (node_types && node_types->count) {
346 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200347 i = node_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100348 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200349 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100350
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100351 struct lyd_node_term *node = node_types->objs[i];
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200352 struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100353
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200354 /* resolve the value of the node */
Michal Vasko9e685082021-01-29 14:49:09 +0100355 LOG_LOCSET(node->schema, &node->node, NULL, NULL);
356 ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, &node->node, *tree);
Radek Krejciddace2c2021-01-08 11:30:56 +0100357 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100358 LY_CHECK_RET(ret);
359
360 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200361 ly_set_rm_index(node_types, i, NULL);
362 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100363 }
364
Michal Vasko9f96a052020-03-10 09:41:45 +0100365 if (meta_types && meta_types->count) {
366 /* ... and metadata values */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200367 i = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100368 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200369 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100370
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100371 struct lyd_meta *meta = meta_types->objs[i];
Radek Krejci1b2eef82021-02-17 11:17:27 +0100372 struct lysc_type *type = *(struct lysc_type **)meta->annotation->substmts[ANNOTATION_SUBSTMT_TYPE].storage;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100373
Michal Vasko9f96a052020-03-10 09:41:45 +0100374 /* validate and store the value of the metadata */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100375 ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100376 LY_CHECK_RET(ret);
377
378 /* remove this attr from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200379 ly_set_rm_index(meta_types, i, NULL);
380 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100381 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100382
383 return ret;
384}
385
Michal Vaskobb844672020-07-03 11:06:12 +0200386/**
387 * @brief Validate instance duplication.
388 *
389 * @param[in] first First sibling to search in.
390 * @param[in] node Data node instance to check.
391 * @return LY_ERR value.
392 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100393static LY_ERR
394lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100395{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100396 struct lyd_node **match_p;
Radek Krejci857189e2020-09-01 13:26:36 +0200397 ly_bool fail = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100398
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100399 assert(node->flags & LYD_NEW);
400
Michal Vaskod6c18af2021-02-12 12:07:31 +0100401 /* key-less list or non-configuration leaf-list */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200402 if (lysc_is_dup_inst_list(node->schema)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100403 /* duplicate instances allowed */
404 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100405 }
406
Michal Vaskob1b5c262020-03-05 14:29:47 +0100407 /* find exactly the same next instance using hashes if possible */
408 if (node->parent && node->parent->children_ht) {
409 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
410 fail = 1;
411 }
412 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +0200413 for ( ; first; first = first->next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100414 if (first == node) {
415 continue;
416 }
417
418 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
419 if (first->schema == node->schema) {
420 fail = 1;
421 break;
422 }
Michal Vasko8f359bf2020-07-28 10:41:15 +0200423 } else if (!lyd_compare_single(first, node, 0)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100424 fail = 1;
425 break;
426 }
427 }
428 }
429
430 if (fail) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100431 LOGVAL(node->schema->module->ctx, LY_VCODE_DUP, node->schema->name);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100432 return LY_EVALID;
433 }
434 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100435}
436
Michal Vaskobb844672020-07-03 11:06:12 +0200437/**
438 * @brief Validate multiple case data existence with possible autodelete.
439 *
440 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100441 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200442 * @param[in] choic Choice node whose cases to check.
Michal Vasko8104fd42020-07-13 11:09:51 +0200443 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200444 * @return LY_ERR value.
445 */
Michal Vaskocde73ac2019-11-14 16:10:27 +0100446static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100447lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic,
448 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100449{
450 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
451 struct lyd_node *match, *to_del;
Radek Krejci857189e2020-09-01 13:26:36 +0200452 ly_bool found;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100453
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100454 LOG_LOCSET(&choic->node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100455
Michal Vaskob1b5c262020-03-05 14:29:47 +0100456 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
457 found = 0;
458 iter = NULL;
459 match = NULL;
460 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
461 if (match->flags & LYD_NEW) {
462 /* a new case data found, nothing more to look for */
463 found = 2;
464 break;
465 } else {
466 /* and old case data found */
467 if (found == 0) {
468 found = 1;
469 }
470 }
471 }
472
473 if (found == 1) {
474 /* there should not be 2 old cases */
475 if (old_case) {
476 /* old data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100477 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, old_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100478 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100479 return LY_EVALID;
480 }
481
482 /* remember an old existing case */
483 old_case = scase;
484 } else if (found == 2) {
485 if (new_case) {
486 /* new data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100487 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, new_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100488 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100489 return LY_EVALID;
490 }
491
492 /* remember a new existing case */
493 new_case = scase;
494 }
495 }
496
Radek Krejciddace2c2021-01-08 11:30:56 +0100497 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100498
Michal Vaskob1b5c262020-03-05 14:29:47 +0100499 if (old_case && new_case) {
500 /* auto-delete old case */
501 iter = NULL;
502 match = NULL;
503 to_del = NULL;
504 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100505 lyd_del_move_root(first, to_del, mod);
506
Michal Vasko8104fd42020-07-13 11:09:51 +0200507 /* free previous node */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100508 lyd_free_tree(to_del);
Michal Vasko8104fd42020-07-13 11:09:51 +0200509 if (diff) {
510 /* add into diff */
511 LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff));
512 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100513 to_del = match;
514 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100515 lyd_del_move_root(first, to_del, mod);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100516 lyd_free_tree(to_del);
517 }
518
519 return LY_SUCCESS;
520}
521
Michal Vaskobb844672020-07-03 11:06:12 +0200522/**
523 * @brief Check whether a schema node can have some default values (true for NP containers as well).
524 *
525 * @param[in] schema Schema node to check.
526 * @return non-zero if yes,
527 * @return 0 otherwise.
528 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100529static int
530lyd_val_has_default(const struct lysc_node *schema)
531{
532 switch (schema->nodetype) {
533 case LYS_LEAF:
534 if (((struct lysc_node_leaf *)schema)->dflt) {
535 return 1;
536 }
537 break;
538 case LYS_LEAFLIST:
539 if (((struct lysc_node_leaflist *)schema)->dflts) {
540 return 1;
541 }
542 break;
543 case LYS_CONTAINER:
544 if (!(schema->flags & LYS_PRESENCE)) {
545 return 1;
546 }
547 break;
548 default:
549 break;
550 }
551
552 return 0;
553}
554
Michal Vaskobb844672020-07-03 11:06:12 +0200555/**
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100556 * @brief Properly delete a node as part of autodelete validation tasks.
557 *
558 * @param[in,out] first First sibling, is updated if needed.
559 * @param[in] node Node instance to delete.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100560 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100561 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
562 * @param[in,out] diff Validation diff.
563 */
564static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100565lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
566 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100567{
568 struct lyd_node *iter;
569
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100570 lyd_del_move_root(first, node, mod);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100571 if (node == *next_p) {
572 *next_p = (*next_p)->next;
573 }
574 if (diff) {
575 /* add into diff */
576 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
577 /* we do not want to track NP container changes, but remember any removed children */
578 LY_LIST_FOR(lyd_child(node), iter) {
579 lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff);
580 }
581 } else {
582 lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
583 }
584 }
585 lyd_free_tree(node);
586}
587
588/**
Michal Vaskobb844672020-07-03 11:06:12 +0200589 * @brief Autodelete old instances to prevent validation errors.
590 *
591 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100592 * @param[in] node New data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100593 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200594 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
Michal Vasko8104fd42020-07-13 11:09:51 +0200595 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200596 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100597static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100598lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
599 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100600{
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100601 struct lyd_node *match, *next;
602
603 assert(node->flags & LYD_NEW);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100604
605 if (lyd_val_has_default(node->schema)) {
606 assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER));
Michal Vasko4c583e82020-07-17 12:16:14 +0200607 LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100608 if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) {
609 /* default instance found, remove it */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100610 lyd_validate_autodel_node_del(first, match, mod, next_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100611
612 /* remove only a single container/leaf default instance, if there are more, it is an error */
613 if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) {
614 break;
615 }
616 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100617 }
618 }
619}
620
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100621/**
622 * @brief Autodelete leftover default nodes of deleted cases (that have no existing explicit data).
623 *
624 * @param[in,out] first First sibling to search in, is updated if needed.
625 * @param[in] node Default data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100626 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100627 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
628 * @param[in,out] diff Validation diff.
629 */
630static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100631lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
632 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100633{
634 struct lysc_node_choice *choic;
635 struct lyd_node *iter = NULL;
636 const struct lysc_node *slast = NULL;
637
638 assert(node->flags & LYD_DEFAULT);
639
640 if (!node->schema->parent || (node->schema->parent->nodetype != LYS_CASE)) {
641 /* the default node is not a descendant of a case */
642 return;
643 }
644
645 choic = (struct lysc_node_choice *)node->schema->parent->parent;
646 assert(choic->nodetype == LYS_CHOICE);
647
648 if (choic->dflt && (choic->dflt == (struct lysc_node_case *)node->schema->parent)) {
649 /* data of a default case, keep them */
650 return;
651 }
652
653 /* try to find an explicit node of the case */
654 while ((iter = lys_getnext_data(iter, *first, &slast, node->schema->parent, NULL))) {
655 if (!(iter->flags & LYD_DEFAULT)) {
656 break;
657 }
658 }
659
660 if (!iter) {
661 /* there are only default nodes of the case meaning it does not exist and neither should any default nodes
662 * of the case, remove this one default node */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100663 lyd_validate_autodel_node_del(first, node, mod, next_p, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100664 }
665}
666
Michal Vaskob1b5c262020-03-05 14:29:47 +0100667LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +0200668lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +0200669 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100670{
671 struct lyd_node *next, *node;
672 const struct lysc_node *snode = NULL;
673
674 assert(first && (sparent || mod));
675
676 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
677 /* check case duplicites */
678 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100679 LY_CHECK_RET(lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100680 }
681 }
682
683 LY_LIST_FOR_SAFE(*first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100684 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100685 /* all top-level data from this module checked */
686 break;
687 }
688
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100689 if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) {
690 /* check only new and default nodes */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100691 continue;
692 }
693
Radek Krejciddace2c2021-01-08 11:30:56 +0100694 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100695
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100696 if (node->flags & LYD_NEW) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100697 LY_ERR ret;
698
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100699 /* remove old default(s) of the new node if it exists */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100700 lyd_validate_autodel_dup(first, node, mod, &next, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100701
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100702 /* then check new node instance duplicities */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100703 ret = lyd_validate_duplicates(*first, node);
Radek Krejciddace2c2021-01-08 11:30:56 +0100704 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0), ret);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100705
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100706 /* this node is valid */
707 node->flags &= ~LYD_NEW;
708 }
709
Michal Vasko0e6de512021-01-11 13:39:44 +0100710 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
711
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100712 if (node->flags & LYD_DEFAULT) {
713 /* remove leftover default nodes from a no-longer existing case */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100714 lyd_validate_autodel_case_dflt(first, node, mod, &next, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100715 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100716 }
717
718 return LY_SUCCESS;
719}
720
Michal Vaskobb844672020-07-03 11:06:12 +0200721/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100722 * @brief Evaluate any "when" conditions of a non-existent data node with existing parent.
723 *
724 * @param[in] first First data sibling of the non-existing node.
725 * @param[in] parent Data parent of the non-existing node.
726 * @param[in] snode Schema node of the non-existing node.
727 * @param[out] disabled First when that evaluated false, if any.
728 * @return LY_ERR value.
729 */
730static LY_ERR
731lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
732 const struct lysc_when **disabled)
733{
734 LY_ERR ret = LY_SUCCESS;
735 struct lyd_node *tree, *dummy = NULL;
736
737 /* find root */
738 if (parent) {
739 tree = (struct lyd_node *)parent;
740 while (tree->parent) {
741 tree = lyd_parent(tree);
742 }
743 tree = lyd_first_sibling(tree);
744 } else {
745 assert(!first || !first->prev->next);
746 tree = (struct lyd_node *)first;
747 }
748
749 /* create dummy opaque node */
Michal Vasko0ab974d2021-02-24 13:18:26 +0100750 ret = lyd_new_opaq((struct lyd_node *)parent, snode->module->ctx, snode->name, NULL, NULL, snode->module->name, &dummy);
Michal Vaskobd4db892020-11-23 16:58:20 +0100751 LY_CHECK_GOTO(ret, cleanup);
752
753 /* connect it if needed */
754 if (!parent) {
755 if (first) {
756 lyd_insert_sibling((struct lyd_node *)first, dummy, &tree);
757 } else {
758 assert(!tree);
759 tree = dummy;
760 }
761 }
762
763 /* evaluate all when */
764 ret = lyd_validate_node_when(tree, dummy, snode, disabled);
765 if (ret == LY_EINCOMPLETE) {
766 /* all other when must be resolved by now */
767 LOGINT(snode->module->ctx);
768 ret = LY_EINT;
769 goto cleanup;
770 } else if (ret) {
771 /* error */
772 goto cleanup;
773 }
774
775cleanup:
776 lyd_free_tree(dummy);
777 return ret;
778}
779
780/**
Michal Vaskobb844672020-07-03 11:06:12 +0200781 * @brief Validate mandatory node existence.
782 *
783 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100784 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200785 * @param[in] snode Schema node to validate.
786 * @return LY_ERR value.
787 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100788static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100789lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100790{
Michal Vaskobd4db892020-11-23 16:58:20 +0100791 const struct lysc_when *disabled;
792
Michal Vaskoa3881362020-01-21 15:57:35 +0100793 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100794 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100795 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100796 return LY_SUCCESS;
797 }
798 } else {
799 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100800
Michal Vaskob1b5c262020-03-05 14:29:47 +0100801 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100802 /* data instance found */
803 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100804 }
805 }
806
Michal Vaskobd4db892020-11-23 16:58:20 +0100807 disabled = NULL;
808 if (lysc_has_when(snode)) {
809 /* if there are any when conditions, they must be true for a validation error */
810 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
811 }
812
813 if (!disabled) {
814 /* node instance not found */
Michal Vasko538b8952021-02-17 11:27:26 +0100815 if (snode->nodetype == LYS_CHOICE) {
816 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND_CHOIC, snode->name);
817 } else {
818 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND, snode->name);
819 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100820 return LY_EVALID;
821 }
822
823 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100824}
825
Michal Vaskobb844672020-07-03 11:06:12 +0200826/**
827 * @brief Validate min/max-elements constraints, if any.
828 *
829 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100830 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200831 * @param[in] snode Schema node to validate.
832 * @param[in] min Minimum number of elements, 0 for no restriction.
833 * @param[in] max Max number of elements, 0 for no restriction.
834 * @return LY_ERR value.
835 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100836static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100837lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
838 uint32_t min, uint32_t max)
Michal Vaskoa3881362020-01-21 15:57:35 +0100839{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100840 uint32_t count = 0;
Michal Vasko4c583e82020-07-17 12:16:14 +0200841 struct lyd_node *iter;
Michal Vaskobd4db892020-11-23 16:58:20 +0100842 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100843 ly_bool invalid_instance = 0;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100844
Michal Vasko9b368d32020-02-14 13:53:31 +0100845 assert(min || max);
846
Michal Vasko4c583e82020-07-17 12:16:14 +0200847 LYD_LIST_FOR_INST(first, snode, iter) {
848 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100849
Michal Vasko4c583e82020-07-17 12:16:14 +0200850 if (min && (count == min)) {
851 /* satisfied */
852 min = 0;
853 if (!max) {
854 /* nothing more to check */
Michal Vasko9b368d32020-02-14 13:53:31 +0100855 break;
856 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100857 }
Michal Vasko4c583e82020-07-17 12:16:14 +0200858 if (max && (count > max)) {
859 /* not satisifed */
Radek Krejciddace2c2021-01-08 11:30:56 +0100860 LOG_LOCSET(NULL, iter, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100861 invalid_instance = 1;
Michal Vasko4c583e82020-07-17 12:16:14 +0200862 break;
863 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100864 }
865
Michal Vasko9b368d32020-02-14 13:53:31 +0100866 if (min) {
867 assert(count < min);
Michal Vaskobd4db892020-11-23 16:58:20 +0100868
869 disabled = NULL;
870 if (lysc_has_when(snode)) {
871 /* if there are any when conditions, they must be true for a validation error */
872 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
873 }
874
875 if (!disabled) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100876 LOGVAL(snode->module->ctx, LY_VCODE_NOMIN, snode->name);
877 goto failure;
Michal Vaskobd4db892020-11-23 16:58:20 +0100878 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100879 } else if (max && (count > max)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100880 LOGVAL(snode->module->ctx, LY_VCODE_NOMAX, snode->name);
881 goto failure;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100882 }
883
Michal Vaskoa3881362020-01-21 15:57:35 +0100884 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100885
886failure:
Radek Krejciddace2c2021-01-08 11:30:56 +0100887 LOG_LOCBACK(0, invalid_instance, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100888 return LY_EVALID;
Michal Vaskoa3881362020-01-21 15:57:35 +0100889}
890
Michal Vaskobb844672020-07-03 11:06:12 +0200891/**
892 * @brief Find node referenced by a list unique statement.
893 *
894 * @param[in] uniq_leaf Unique leaf to find.
895 * @param[in] list List instance to use for the search.
896 * @return Found leaf,
897 * @return NULL if no leaf found.
898 */
Michal Vasko14654712020-02-06 08:35:21 +0100899static struct lyd_node *
Michal Vaskobb844672020-07-03 11:06:12 +0200900lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list)
Michal Vasko14654712020-02-06 08:35:21 +0100901{
Michal Vasko9b368d32020-02-14 13:53:31 +0100902 struct lyd_node *node;
903 const struct lysc_node *iter;
904 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +0100905
Michal Vasko9b368d32020-02-14 13:53:31 +0100906 /* get leaf depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100907 for (iter = &uniq_leaf->node; iter && (iter != list->schema); iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200908 ++depth;
Michal Vasko14654712020-02-06 08:35:21 +0100909 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100910
Michal Vaskobb844672020-07-03 11:06:12 +0200911 node = (struct lyd_node *)list;
Michal Vasko9b368d32020-02-14 13:53:31 +0100912 while (node && depth) {
913 /* find schema node with this depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100914 for (i = depth - 1, iter = &uniq_leaf->node; i; iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200915 --i;
Michal Vasko9b368d32020-02-14 13:53:31 +0100916 }
917
918 /* find iter instance in children */
919 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
Radek Krejcia1c1e542020-09-29 16:06:52 +0200920 lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100921 --depth;
922 }
923
Michal Vasko14654712020-02-06 08:35:21 +0100924 return node;
925}
926
Michal Vaskobb844672020-07-03 11:06:12 +0200927/**
928 * @brief Callback for comparing 2 list unique leaf values.
929 *
Michal Vasko62524a92021-02-26 10:08:50 +0100930 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200931 *
Michal Vaskobb844672020-07-03 11:06:12 +0200932 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +0100933 */
Radek Krejci857189e2020-09-01 13:26:36 +0200934static ly_bool
935lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data)
Michal Vasko14654712020-02-06 08:35:21 +0100936{
937 struct ly_ctx *ctx;
938 struct lysc_node_list *slist;
939 struct lyd_node *diter, *first, *second;
940 struct lyd_value *val1, *val2;
941 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200942 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +0100943
944 assert(val1_p && val2_p);
945
946 first = *((struct lyd_node **)val1_p);
947 second = *((struct lyd_node **)val2_p);
Michal Vasko41e630c2021-07-23 12:47:18 +0200948 action = (uintptr_t)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +0100949
950 assert(first && (first->schema->nodetype == LYS_LIST));
951 assert(second && (second->schema == first->schema));
952
953 ctx = first->schema->module->ctx;
954
955 slist = (struct lysc_node_list *)first->schema;
956
957 /* compare unique leaves */
958 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200959 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200960 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +0100961 goto uniquecheck;
962 }
963 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200964 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +0100965uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200966 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +0100967 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200968 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +0100969 if (diter) {
970 val1 = &((struct lyd_node_term *)diter)->value;
971 } else {
972 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200973 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100974 }
975
976 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200977 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +0100978 if (diter) {
979 val2 = &((struct lyd_node_term *)diter)->value;
980 } else {
981 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200982 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100983 }
984
985 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
986 /* values differ or either one is not set */
987 break;
988 }
989 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200990 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +0100991 /* all unique leafs are the same in this set, create this nice error */
Radek Krejci635d2b82021-01-04 11:26:51 +0100992 path1 = lyd_path(first, LYD_PATH_STD, NULL, 0);
993 path2 = lyd_path(second, LYD_PATH_STD, NULL, 0);
Michal Vasko14654712020-02-06 08:35:21 +0100994
995 /* use buffer to rebuild the unique string */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100996#define UNIQ_BUF_SIZE 1024
997 uniq_str = malloc(UNIQ_BUF_SIZE);
Michal Vasko14654712020-02-06 08:35:21 +0100998 uniq_str[0] = '\0';
999 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001000 LY_ARRAY_FOR(slist->uniques[u], v) {
1001 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +01001002 strcpy(ptr, " ");
1003 ++ptr;
1004 }
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001005 ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], &slist->node, LYSC_PATH_LOG,
Radek Krejcif13b87b2020-12-01 22:02:17 +01001006 ptr, UNIQ_BUF_SIZE - (ptr - uniq_str));
Michal Vasko14654712020-02-06 08:35:21 +01001007 if (!ptr) {
1008 /* path will be incomplete, whatever */
1009 break;
1010 }
1011
1012 ptr += strlen(ptr);
1013 }
Radek Krejciddace2c2021-01-08 11:30:56 +01001014 LOG_LOCSET(NULL, second, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001015 LOGVAL(ctx, LY_VCODE_NOUNIQ, uniq_str, path1, path2);
Radek Krejciddace2c2021-01-08 11:30:56 +01001016 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001017
1018 free(path1);
1019 free(path2);
1020 free(uniq_str);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001021#undef UNIQ_BUF_SIZE
1022
Michal Vasko14654712020-02-06 08:35:21 +01001023 return 1;
1024 }
1025
1026 if (action > 0) {
1027 /* done */
1028 return 0;
1029 }
1030 }
1031
1032 return 0;
1033}
1034
Michal Vaskobb844672020-07-03 11:06:12 +02001035/**
1036 * @brief Validate list unique leaves.
1037 *
1038 * @param[in] first First sibling to search in.
1039 * @param[in] snode Schema node to validate.
1040 * @param[in] uniques List unique arrays to validate.
1041 * @return LY_ERR value.
1042 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001043static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +02001044lyd_validate_unique(const struct lyd_node *first, const struct lysc_node *snode, const struct lysc_node_leaf ***uniques)
Michal Vaskoa3881362020-01-21 15:57:35 +01001045{
Michal Vaskob1b5c262020-03-05 14:29:47 +01001046 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +01001047 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001048 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +01001049 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001050 uint32_t hash, i, size = 0;
Radek Krejci813c02d2021-04-26 10:29:19 +02001051 size_t key_len;
1052 ly_bool dyn;
1053 const void *hash_key;
Michal Vasko41e630c2021-07-23 12:47:18 +02001054 void *cb_data;
Michal Vasko14654712020-02-06 08:35:21 +01001055 struct hash_table **uniqtables = NULL;
1056 struct lyd_value *val;
1057 struct ly_ctx *ctx = snode->module->ctx;
1058
1059 assert(uniques);
1060
1061 /* get all list instances */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001062 LY_CHECK_RET(ly_set_new(&set));
Michal Vaskob1b5c262020-03-05 14:29:47 +01001063 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +01001064 if (diter->schema == snode) {
Radek Krejci3d92e442020-10-12 12:48:13 +02001065 ret = ly_set_add(set, (void *)diter, 1, NULL);
Michal Vaskob0099a92020-08-31 14:55:23 +02001066 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko9b368d32020-02-14 13:53:31 +01001067 }
1068 }
Michal Vasko14654712020-02-06 08:35:21 +01001069
1070 if (set->count == 2) {
1071 /* simple comparison */
1072 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
1073 /* instance duplication */
1074 ret = LY_EVALID;
1075 goto cleanup;
1076 }
1077 } else if (set->count > 2) {
1078 /* use hashes for comparison */
Radek Krejcif13b87b2020-12-01 22:02:17 +01001079 /* first, allocate the table, the size depends on number of items in the set,
1080 * the following code detects number of upper zero bits in the items' counter value ... */
1081 for (i = (sizeof set->count * CHAR_BIT) - 1; i > 0; i--) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001082 size = set->count << i;
1083 size = size >> i;
1084 if (size == set->count) {
Michal Vasko14654712020-02-06 08:35:21 +01001085 break;
1086 }
1087 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001088 LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001089 /* ... and then we convert it to the position of the highest non-zero bit ... */
1090 i = (sizeof set->count * CHAR_BIT) - i;
1091 /* ... and by using it to shift 1 to the left we get the closest sufficient hash table size */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001092 size = 1 << i;
Michal Vasko14654712020-02-06 08:35:21 +01001093
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001094 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +01001095 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001096 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001097 for (v = 0; v < x; v++) {
Michal Vasko41e630c2021-07-23 12:47:18 +02001098 cb_data = (void *)(uintptr_t)(v + 1L);
1099 uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, cb_data, 0);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001100 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +01001101 }
1102
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001103 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +01001104 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001105 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +01001106 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001107 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001108 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +01001109 if (diter) {
1110 val = &((struct lyd_node_term *)diter)->value;
1111 } else {
1112 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001113 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001114 }
1115 if (!val) {
1116 /* unique item not present nor has default value */
1117 break;
1118 }
1119
Radek Krejci813c02d2021-04-26 10:29:19 +02001120 /* get hash key */
Michal Vaskodcfac2c2021-05-10 11:36:37 +02001121 hash_key = val->realtype->plugin->print(NULL, val, LY_VALUE_LYB, NULL, &dyn, &key_len);
Radek Krejci813c02d2021-04-26 10:29:19 +02001122 hash = dict_hash_multi(hash, hash_key, key_len);
1123 if (dyn) {
1124 free((void *)hash_key);
Michal Vasko14654712020-02-06 08:35:21 +01001125 }
1126 }
1127 if (!val) {
1128 /* skip this list instance since its unique set is incomplete */
1129 continue;
1130 }
1131
1132 /* finish the hash value */
1133 hash = dict_hash_multi(hash, NULL, 0);
1134
1135 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001136 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +01001137 if (ret == LY_EEXIST) {
1138 /* instance duplication */
1139 ret = LY_EVALID;
1140 }
1141 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
1142 }
1143 }
1144 }
1145
1146cleanup:
1147 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001148 for (v = 0; v < x; v++) {
1149 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +01001150 /* failed when allocating uniquetables[j], following j are not allocated */
1151 break;
1152 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001153 lyht_free(uniqtables[v]);
Michal Vasko14654712020-02-06 08:35:21 +01001154 }
1155 free(uniqtables);
1156
1157 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +01001158}
1159
Michal Vaskobb844672020-07-03 11:06:12 +02001160/**
1161 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
1162 *
1163 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +01001164 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +02001165 * @param[in] sparent Schema parent of the nodes to check.
1166 * @param[in] mod Module of the nodes to check.
1167 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskoe0665742021-02-11 11:08:44 +01001168 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001169 * @return LY_ERR value.
1170 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001171static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001172lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001173 const struct lysc_node *sparent, const struct lysc_module *mod, uint32_t val_opts, uint32_t int_opts)
Michal Vaskocde73ac2019-11-14 16:10:27 +01001174{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001175 LY_ERR ret = LY_SUCCESS;
Michal Vasko6c16cda2021-02-04 11:05:52 +01001176 const struct lysc_node *snode = NULL, *scase;
Michal Vaskoa3881362020-01-21 15:57:35 +01001177 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +02001178 struct lysc_node_leaflist *sllist;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001179 uint32_t getnext_opts;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001180
Michal Vaskoe0665742021-02-11 11:08:44 +01001181 getnext_opts = LYS_GETNEXT_WITHCHOICE | (int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001182
Michal Vaskoa3881362020-01-21 15:57:35 +01001183 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001184 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +02001185 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001186 continue;
1187 }
1188
Radek Krejciddace2c2021-01-08 11:30:56 +01001189 LOG_LOCSET(snode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001190
Michal Vaskoa3881362020-01-21 15:57:35 +01001191 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +02001192 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +01001193 slist = (struct lysc_node_list *)snode;
1194 if (slist->min || slist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001195 ret = lyd_validate_minmax(first, parent, snode, slist->min, slist->max);
1196 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001197 }
Michal Vaskod8958df2020-08-05 13:27:36 +02001198 } else if (snode->nodetype == LYS_LEAFLIST) {
1199 sllist = (struct lysc_node_leaflist *)snode;
1200 if (sllist->min || sllist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001201 ret = lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max);
1202 LY_CHECK_GOTO(ret, error);
Michal Vaskod8958df2020-08-05 13:27:36 +02001203 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001204
Michal Vaskoacd83e72020-02-04 14:12:01 +01001205 } else if (snode->flags & LYS_MAND_TRUE) {
Radek Krejcif6a11002020-08-21 13:29:07 +02001206 /* check generic mandatory existence */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001207 ret = lyd_validate_mandatory(first, parent, snode);
1208 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001209 }
1210
1211 /* check unique */
1212 if (snode->nodetype == LYS_LIST) {
1213 slist = (struct lysc_node_list *)snode;
1214 if (slist->uniques) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001215 ret = lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques);
1216 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001217 }
1218 }
1219
Michal Vasko6c16cda2021-02-04 11:05:52 +01001220 if (snode->nodetype == LYS_CHOICE) {
1221 /* find the existing case, if any */
1222 LY_LIST_FOR(lysc_node_child(snode), scase) {
1223 if (lys_getnext_data(NULL, first, NULL, scase, NULL)) {
1224 /* validate only this case */
Michal Vaskoe0665742021-02-11 11:08:44 +01001225 ret = lyd_validate_siblings_schema_r(first, parent, scase, mod, val_opts, int_opts);
Michal Vasko6c16cda2021-02-04 11:05:52 +01001226 LY_CHECK_GOTO(ret, error);
1227 break;
1228 }
1229 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001230 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001231
Radek Krejciddace2c2021-01-08 11:30:56 +01001232 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001233 }
1234
Michal Vaskoacd83e72020-02-04 14:12:01 +01001235 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001236
1237error:
Radek Krejciddace2c2021-01-08 11:30:56 +01001238 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001239 return ret;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001240}
1241
Michal Vaskobb844672020-07-03 11:06:12 +02001242/**
1243 * @brief Validate obsolete nodes, only warnings are printed.
1244 *
1245 * @param[in] node Node to check.
1246 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001247static void
1248lyd_validate_obsolete(const struct lyd_node *node)
1249{
1250 const struct lysc_node *snode;
1251
1252 snode = node->schema;
1253 do {
1254 if (snode->flags & LYS_STATUS_OBSLT) {
1255 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
1256 break;
1257 }
1258
1259 snode = snode->parent;
1260 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
1261}
1262
Michal Vaskobb844672020-07-03 11:06:12 +02001263/**
1264 * @brief Validate must conditions of a data node.
1265 *
1266 * @param[in] node Node to validate.
Michal Vaskoe0665742021-02-11 11:08:44 +01001267 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001268 * @return LY_ERR value.
1269 */
Michal Vaskocc048b22020-03-27 15:52:38 +01001270static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001271lyd_validate_must(const struct lyd_node *node, uint32_t int_opts)
Michal Vaskocc048b22020-03-27 15:52:38 +01001272{
Michal Vaskoa1db2342021-07-19 12:23:23 +02001273 LY_ERR ret;
Michal Vaskocc048b22020-03-27 15:52:38 +01001274 struct lyxp_set xp_set;
1275 struct lysc_must *musts;
1276 const struct lyd_node *tree;
Radek Krejci9a3823e2021-01-27 20:26:46 +01001277 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001278 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +01001279
Michal Vaskoe0665742021-02-11 11:08:44 +01001280 assert((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) != (LYD_INTOPT_RPC | LYD_INTOPT_REPLY));
1281 assert((int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) != (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY));
1282
Radek Krejci9a3823e2021-01-27 20:26:46 +01001283 if (node->schema->nodetype & (LYS_ACTION | LYS_RPC)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001284 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001285 schema = &((struct lysc_node_action *)node->schema)->input.node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001286 } else if (int_opts & LYD_INTOPT_REPLY) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001287 schema = &((struct lysc_node_action *)node->schema)->output.node;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001288 } else {
Michal Vaskoa1db2342021-07-19 12:23:23 +02001289 LOGINT_RET(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +02001290 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001291 } else {
1292 schema = node->schema;
Michal Vaskocc048b22020-03-27 15:52:38 +01001293 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001294 musts = lysc_node_musts(schema);
Michal Vaskocc048b22020-03-27 15:52:38 +01001295 if (!musts) {
1296 /* no must to evaluate */
1297 return LY_SUCCESS;
1298 }
1299
1300 /* find first top-level node */
Michal Vasko9e685082021-01-29 14:49:09 +01001301 for (tree = node; tree->parent; tree = lyd_parent(tree)) {}
Michal Vaskof9221e62021-02-04 12:10:14 +01001302 tree = lyd_first_sibling(tree);
Michal Vaskocc048b22020-03-27 15:52:38 +01001303
1304 LY_ARRAY_FOR(musts, u) {
1305 memset(&xp_set, 0, sizeof xp_set);
1306
1307 /* evaluate must */
Michal Vaskoa1db2342021-07-19 12:23:23 +02001308 ret = lyxp_eval(LYD_CTX(node), musts[u].cond, node->schema->module, LY_VALUE_SCHEMA_RESOLVED,
1309 musts[u].prefixes, node, tree, &xp_set, LYXP_SCHEMA);
1310 if (ret == LY_EINCOMPLETE) {
1311 LOGINT_RET(LYD_CTX(node));
1312 } else if (ret) {
1313 return ret;
1314 }
Michal Vaskocc048b22020-03-27 15:52:38 +01001315
1316 /* check the result */
1317 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02001318 if (!xp_set.val.bln) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001319 LOGVAL(LYD_CTX(node), LY_VCODE_NOMUST, musts[u].cond->expr);
Michal Vaskocc048b22020-03-27 15:52:38 +01001320 return LY_EVALID;
1321 }
1322 }
1323
1324 return LY_SUCCESS;
1325}
1326
Michal Vaskoe0665742021-02-11 11:08:44 +01001327/**
1328 * @brief Perform all remaining validation tasks, the data tree must be final when calling this function.
1329 *
1330 * @param[in] first First sibling.
1331 * @param[in] parent Data parent.
1332 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
1333 * @param[in] mod Module of the siblings, NULL for nested siblings.
1334 * @param[in] val_opts Validation options (@ref datavalidationoptions).
1335 * @param[in] int_opts Internal parser options.
1336 * @return LY_ERR value.
1337 */
1338static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001339lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001340 const struct lys_module *mod, uint32_t val_opts, uint32_t int_opts)
Michal Vaskoacd83e72020-02-04 14:12:01 +01001341{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001342 const char *innode = NULL;
Radek Krejci7f769d72020-07-11 23:13:56 +02001343 struct lyd_node *next = NULL, *node;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001344
Michal Vasko14654712020-02-06 08:35:21 +01001345 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001346 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vasko19034e22021-07-19 12:24:14 +02001347 if (!node->parent && mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001348 /* all top-level data from this module checked */
1349 break;
Michal Vaskof03ed032020-03-04 13:31:44 +01001350 }
1351
Radek Krejciddace2c2021-01-08 11:30:56 +01001352 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001353
Michal Vaskoa8c61722020-03-27 16:59:32 +01001354 /* opaque data */
1355 if (!node->schema) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001356 LOGVAL(LYD_CTX(node), LYVE_DATA, "Opaque node \"%s\" found.", ((struct lyd_node_opaq *)node)->name.name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001357 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskoa8c61722020-03-27 16:59:32 +01001358 return LY_EVALID;
1359 }
1360
Michal Vaskocb7526d2020-03-30 15:08:26 +02001361 /* no state/input/output data */
Radek Krejci7931b192020-06-25 17:05:03 +02001362 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001363 innode = "state";
Michal Vasko224e7772021-02-18 14:22:33 +01001364 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001365 } else if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) && (node->schema->flags & LYS_IS_OUTPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001366 innode = "output";
Michal Vasko224e7772021-02-18 14:22:33 +01001367 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001368 } else if ((int_opts & LYD_INTOPT_REPLY) && (node->schema->flags & LYS_IS_INPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001369 innode = "input";
Michal Vasko224e7772021-02-18 14:22:33 +01001370 goto unexpected_node;
Michal Vasko5b37a352020-03-06 13:38:33 +01001371 }
1372
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001373 /* obsolete data */
1374 lyd_validate_obsolete(node);
1375
Michal Vaskocc048b22020-03-27 15:52:38 +01001376 /* node's musts */
Michal Vaskoe0665742021-02-11 11:08:44 +01001377 LY_CHECK_RET(lyd_validate_must(node, int_opts));
Michal Vaskocc048b22020-03-27 15:52:38 +01001378
Michal Vasko53d97a12020-11-05 17:39:10 +01001379 /* node value was checked by plugins */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001380
Radek Krejciddace2c2021-01-08 11:30:56 +01001381 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001382 }
Michal Vaskocde73ac2019-11-14 16:10:27 +01001383
Michal Vasko14654712020-02-06 08:35:21 +01001384 /* validate schema-based restrictions */
Michal Vaskoe0665742021-02-11 11:08:44 +01001385 LY_CHECK_RET(lyd_validate_siblings_schema_r(first, parent, sparent, mod ? mod->compiled : NULL, val_opts, int_opts));
Michal Vasko14654712020-02-06 08:35:21 +01001386
Michal Vaskob1b5c262020-03-05 14:29:47 +01001387 LY_LIST_FOR(first, node) {
Michal Vasko19034e22021-07-19 12:24:14 +02001388 if (!node->parent && mod && (lyd_owner_module(node) != mod)) {
1389 /* all top-level data from this module checked */
1390 break;
1391 }
1392
Michal Vasko14654712020-02-06 08:35:21 +01001393 /* validate all children recursively */
Michal Vaskoe0665742021-02-11 11:08:44 +01001394 LY_CHECK_RET(lyd_validate_final_r(lyd_child(node), node, node->schema, NULL, val_opts, int_opts));
Michal Vaskocde73ac2019-11-14 16:10:27 +01001395
Michal Vaskob1b5c262020-03-05 14:29:47 +01001396 /* set default for containers */
aPiecekc5f36a72021-05-18 14:12:31 +02001397 if (node->schema && (node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
Radek Krejcia1c1e542020-09-29 16:06:52 +02001398 LY_LIST_FOR(lyd_child(node), next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001399 if (!(next->flags & LYD_DEFAULT)) {
1400 break;
1401 }
Michal Vaskoa3881362020-01-21 15:57:35 +01001402 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001403 if (!next) {
1404 node->flags |= LYD_DEFAULT;
1405 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001406 }
1407 }
1408
1409 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001410
Michal Vasko224e7772021-02-18 14:22:33 +01001411unexpected_node:
1412 LOGVAL(LYD_CTX(node), LY_VCODE_UNEXPNODE, innode, node->schema->name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001413 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001414 return LY_EVALID;
Michal Vasko9b368d32020-02-14 13:53:31 +01001415}
1416
Radek Krejci7931b192020-06-25 17:05:03 +02001417/**
Michal Vaskobb844672020-07-03 11:06:12 +02001418 * @brief Validate the whole data subtree.
1419 *
1420 * @param[in] root Subtree root.
Michal Vaskoe0665742021-02-11 11:08:44 +01001421 * @param[in,out] node_when Set for nodes with when conditions.
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001422 * @param[in,out] node_exts Set for nodes and extension instances with validation plugin callback.
Michal Vasko32711382020-12-03 14:14:31 +01001423 * @param[in,out] node_types Set for unres node types.
1424 * @param[in,out] meta_types Set for unres metadata types.
Michal Vasko29adfbe2020-12-08 17:12:03 +01001425 * @param[in] impl_opts Implicit options, see @ref implicitoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001426 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001427 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001428 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001429static LY_ERR
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001430lyd_validate_subtree(struct lyd_node *root, struct ly_set *node_when, struct ly_set *node_exts, struct ly_set *node_types,
Michal Vaskoe0665742021-02-11 11:08:44 +01001431 struct ly_set *meta_types, uint32_t impl_opts, struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001432{
1433 const struct lyd_meta *meta;
Michal Vasko56daf732020-08-10 10:57:18 +02001434 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001435
Michal Vasko56daf732020-08-10 10:57:18 +02001436 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001437 LY_LIST_FOR(node->meta, meta) {
Radek Krejci1b2eef82021-02-17 11:17:27 +01001438 if ((*(const struct lysc_type **)meta->annotation->substmts[ANNOTATION_SUBSTMT_TYPE].storage)->plugin->validate) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001439 /* metadata type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001440 LY_CHECK_RET(ly_set_add(meta_types, (void *)meta, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001441 }
Michal Vasko0275cf62020-11-05 17:40:30 +01001442 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001443
Michal Vasko0275cf62020-11-05 17:40:30 +01001444 if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) {
1445 /* node type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001446 LY_CHECK_RET(ly_set_add(node_types, (void *)node, 1, NULL));
Michal Vasko0275cf62020-11-05 17:40:30 +01001447 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1448 /* new node validation, autodelete */
Michal Vaskoe0665742021-02-11 11:08:44 +01001449 LY_CHECK_RET(lyd_validate_new(lyd_node_child_p(node), node->schema, NULL, diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001450
Michal Vasko0275cf62020-11-05 17:40:30 +01001451 /* add nested defaults */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001452 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL, NULL, NULL, impl_opts, diff));
Michal Vasko0275cf62020-11-05 17:40:30 +01001453 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001454
Michal Vaskof4d67ea2021-03-31 13:53:21 +02001455 if (lysc_has_when(node->schema)) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001456 /* when evaluation */
Michal Vasko32711382020-12-03 14:14:31 +01001457 LY_CHECK_RET(ly_set_add(node_when, (void *)node, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001458 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001459 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
Michal Vaskofea12c62020-03-30 11:00:15 +02001460
Michal Vasko56daf732020-08-10 10:57:18 +02001461 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001462 }
1463
1464 return LY_SUCCESS;
1465}
1466
Michal Vaskoe0665742021-02-11 11:08:44 +01001467LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001468lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts,
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001469 ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_exts_p,
1470 struct ly_set *node_types_p, struct ly_set *meta_types_p, struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001471{
1472 LY_ERR ret = LY_SUCCESS;
Michal Vasko73e47212020-12-03 14:20:16 +01001473 struct lyd_node *first, *next, **first2, *iter;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001474 const struct lys_module *mod;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001475 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, node_exts = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001476 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001477
Michal Vaskoe0665742021-02-11 11:08:44 +01001478 assert(tree && ctx);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001479 assert((node_when_p && node_exts_p && node_types_p && meta_types_p) ||
1480 (!node_when_p && !node_exts_p && !node_types_p && !meta_types_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001481
1482 if (!node_when_p) {
1483 node_when_p = &node_when;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001484 node_exts_p = &node_exts;
Michal Vaskoe0665742021-02-11 11:08:44 +01001485 node_types_p = &node_types;
1486 meta_types_p = &meta_types;
Michal Vasko8104fd42020-07-13 11:09:51 +02001487 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001488
Michal Vaskob1b5c262020-03-05 14:29:47 +01001489 next = *tree;
1490 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001491 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001492 mod = lyd_data_next_module(&next, &first);
1493 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001494 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001495 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001496 if (!mod) {
1497 break;
1498 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001499 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001500 /* make sure first2 changes are carried to tree */
1501 first2 = tree;
1502 } else {
1503 first2 = &first;
1504 }
1505
1506 /* validate new top-level nodes of this module, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001507 ret = lyd_validate_new(first2, NULL, mod, diff);
1508 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001509
Radek Krejci7be7b9f2021-02-24 11:46:27 +01001510 /* add all top-level defaults for this module, if going to validate subtree, do not add into unres sets
1511 * (lyd_validate_subtree() adds all the nodes in that case) */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001512 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, validate_subtree ? NULL : node_when_p, validate_subtree ? NULL : node_exts_p,
Michal Vaskoc43c8ab2021-03-05 13:32:44 +01001513 validate_subtree ? NULL : node_types_p, (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
Michal Vasko8104fd42020-07-13 11:09:51 +02001514 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001515
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001516 /* our first module node pointer may no longer be the first */
Michal Vasko598063b2021-07-19 11:39:05 +02001517 first = *first2;
1518 lyd_first_module_sibling(&first, mod);
1519 if (!first || (first == *tree)) {
1520 first2 = tree;
1521 } else {
1522 first2 = &first;
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001523 }
1524
Michal Vaskoe0665742021-02-11 11:08:44 +01001525 if (validate_subtree) {
1526 /* process nested nodes */
1527 LY_LIST_FOR(*first2, iter) {
Michal Vasko0e72b7a2021-07-16 14:53:27 +02001528 if (lyd_owner_module(iter) != mod) {
1529 break;
1530 }
1531
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001532 ret = lyd_validate_subtree(iter, node_when_p, node_exts_p, node_types_p, meta_types_p,
Michal Vaskoe0665742021-02-11 11:08:44 +01001533 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
1534 LY_CHECK_GOTO(ret, cleanup);
1535 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001536 }
1537
1538 /* finish incompletely validated terminal values/attributes and when conditions */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001539 ret = lyd_validate_unres(first2, mod, node_when_p, node_exts_p, node_types_p, meta_types_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001540 LY_CHECK_GOTO(ret, cleanup);
1541
1542 /* perform final validation that assumes the data tree is final */
Michal Vaskobd4db892020-11-23 16:58:20 +01001543 ret = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +02001544 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001545 }
1546
Michal Vaskof03ed032020-03-04 13:31:44 +01001547cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +01001548 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001549 ly_set_erase(&node_exts, NULL);
Michal Vasko32711382020-12-03 14:14:31 +01001550 ly_set_erase(&node_types, NULL);
1551 ly_set_erase(&meta_types, NULL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001552 return ret;
1553}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001554
1555API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001556lyd_validate_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t val_opts, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +01001557{
Michal Vaskoe0665742021-02-11 11:08:44 +01001558 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx, LY_EINVAL);
1559 if (!ctx) {
1560 ctx = LYD_CTX(*tree);
1561 }
1562 if (diff) {
1563 *diff = NULL;
1564 }
1565
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001566 return lyd_validate(tree, NULL, ctx, val_opts, 1, NULL, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001567}
1568
1569API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001570lyd_validate_module(struct lyd_node **tree, const struct lys_module *module, uint32_t val_opts, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +01001571{
Michal Vaskoe0665742021-02-11 11:08:44 +01001572 LY_CHECK_ARG_RET(NULL, tree, *tree || module, LY_EINVAL);
1573 if (diff) {
1574 *diff = NULL;
1575 }
1576
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001577 return lyd_validate(tree, module, (*tree) ? LYD_CTX(*tree) : module->ctx, val_opts, 1, NULL, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001578}
Michal Vaskofea12c62020-03-30 11:00:15 +02001579
Michal Vaskobb844672020-07-03 11:06:12 +02001580/**
1581 * @brief Find nodes for merging an operation into data tree for validation.
1582 *
1583 * @param[in] op_tree Full operation data tree.
1584 * @param[in] op_node Operation node itself.
1585 * @param[in] tree Data tree to be merged into.
1586 * @param[out] op_subtree Operation subtree to merge.
Michal Vasko2f03d222020-12-09 18:15:51 +01001587 * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL.
1588 * @param[out] tree_parent Data tree parent to merge into, is set if @p tree_sibling is NULL.
Michal Vaskobb844672020-07-03 11:06:12 +02001589 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001590static void
Michal Vaskobb844672020-07-03 11:06:12 +02001591lyd_val_op_merge_find(const struct lyd_node *op_tree, const struct lyd_node *op_node, const struct lyd_node *tree,
Michal Vasko2f03d222020-12-09 18:15:51 +01001592 struct lyd_node **op_subtree, struct lyd_node **tree_sibling, struct lyd_node **tree_parent)
Michal Vaskofea12c62020-03-30 11:00:15 +02001593{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001594 const struct lyd_node *tree_iter, *op_iter;
1595 struct lyd_node *match;
Michal Vaskofea12c62020-03-30 11:00:15 +02001596 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001597
Michal Vasko2f03d222020-12-09 18:15:51 +01001598 *op_subtree = NULL;
1599 *tree_sibling = NULL;
1600 *tree_parent = NULL;
1601
Michal Vaskocb7526d2020-03-30 15:08:26 +02001602 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001603 op_depth = 0;
Michal Vasko9e685082021-01-29 14:49:09 +01001604 for (op_iter = op_node; op_iter != op_tree; op_iter = lyd_parent(op_iter)) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001605 ++op_depth;
1606 }
1607
1608 /* find where to merge op */
1609 tree_iter = tree;
1610 cur_depth = op_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001611 while (cur_depth && tree_iter) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001612 /* find op iter in tree */
1613 lyd_find_sibling_first(tree_iter, op_iter, &match);
1614 if (!match) {
1615 break;
1616 }
1617
1618 /* move tree_iter */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001619 tree_iter = lyd_child(match);
Michal Vaskofea12c62020-03-30 11:00:15 +02001620
1621 /* move depth */
1622 --cur_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001623
1624 /* find next op parent */
1625 op_iter = op_node;
1626 for (i = 0; i < cur_depth; ++i) {
Michal Vasko9e685082021-01-29 14:49:09 +01001627 op_iter = lyd_parent(op_iter);
Michal Vasko2f03d222020-12-09 18:15:51 +01001628 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001629 }
1630
Michal Vasko2f03d222020-12-09 18:15:51 +01001631 assert(op_iter);
Michal Vaskobb844672020-07-03 11:06:12 +02001632 *op_subtree = (struct lyd_node *)op_iter;
Michal Vasko2f03d222020-12-09 18:15:51 +01001633 if (!tree || tree_iter) {
1634 /* there is no tree whatsoever or this is the last found sibling */
1635 *tree_sibling = (struct lyd_node *)tree_iter;
1636 } else {
1637 /* matching parent was found but it has no children to insert next to */
1638 assert(match);
1639 *tree_parent = match;
1640 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001641}
1642
Michal Vaskoe0665742021-02-11 11:08:44 +01001643/**
1644 * @brief Validate an RPC/action request, reply, or notification.
1645 *
1646 * @param[in] op_tree Full operation data tree.
1647 * @param[in] op_node Operation node itself.
1648 * @param[in] dep_tree Tree to be used for validating references from the operation subtree.
1649 * @param[in] int_opts Internal parser options.
1650 * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation).
1651 * @param[in] node_when_p Set of nodes with when conditions, if NULL a local set is used.
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001652 * @param[in] node_exts Set of nodes with extension instances with validation plugin callback, if NULL a local set is used.
Michal Vaskoe0665742021-02-11 11:08:44 +01001653 * @param[in] node_types_p Set of unres node types, if NULL a local set is used.
1654 * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used.
1655 * @param[out] diff Optional diff with any changes made by the validation.
1656 * @return LY_SUCCESS on success.
1657 * @return LY_ERR error on error.
1658 */
1659static LY_ERR
1660_lyd_validate_op(struct lyd_node *op_tree, struct lyd_node *op_node, const struct lyd_node *dep_tree,
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001661 uint32_t int_opts, ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_exts_p,
1662 struct ly_set *node_types_p, struct ly_set *meta_types_p, struct lyd_node **diff)
Michal Vaskocb7526d2020-03-30 15:08:26 +02001663{
Michal Vaskoe0665742021-02-11 11:08:44 +01001664 LY_ERR rc = LY_SUCCESS;
1665 struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_parent, *child;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001666 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, node_exts = {0};
Michal Vaskocb7526d2020-03-30 15:08:26 +02001667
Michal Vaskoe0665742021-02-11 11:08:44 +01001668 assert(op_tree && op_node);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001669 assert((node_when_p && node_exts_p && node_types_p && meta_types_p) ||
1670 (!node_when_p && !node_exts_p && !node_types_p && !meta_types_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001671
1672 if (!node_when_p) {
1673 node_when_p = &node_when;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001674 node_exts_p = &node_exts;
Michal Vaskoe0665742021-02-11 11:08:44 +01001675 node_types_p = &node_types;
1676 meta_types_p = &meta_types;
1677 }
1678
1679 /* merge op_tree into dep_tree */
1680 lyd_val_op_merge_find(op_tree, op_node, dep_tree, &op_subtree, &tree_sibling, &tree_parent);
1681 op_parent = lyd_parent(op_subtree);
1682 lyd_unlink_tree(op_subtree);
Michal Vasko6ee6f432021-07-16 09:49:14 +02001683 lyd_insert_node(tree_parent, &tree_sibling, op_subtree, 0);
Michal Vaskoe0665742021-02-11 11:08:44 +01001684 if (!dep_tree) {
1685 dep_tree = tree_sibling;
1686 }
1687
1688 LOG_LOCSET(NULL, op_node, NULL, NULL);
1689
1690 if (int_opts & LYD_INTOPT_REPLY) {
1691 /* add output children defaults */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001692 rc = lyd_new_implicit_r(op_node, lyd_node_child_p(op_node), NULL, NULL, node_when_p, node_exts_p, node_types_p,
Michal Vaskoe0665742021-02-11 11:08:44 +01001693 LYD_IMPLICIT_OUTPUT, diff);
1694 LY_CHECK_GOTO(rc, cleanup);
1695
1696 if (validate_subtree) {
1697 /* skip validating the operation itself, go to children directly */
1698 LY_LIST_FOR(lyd_child(op_node), child) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001699 rc = lyd_validate_subtree(child, node_when_p, node_exts_p, node_types_p, meta_types_p, 0, diff);
1700 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001701 }
1702 }
1703 } else {
1704 if (validate_subtree) {
1705 /* prevalidate whole operation subtree */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001706 rc = lyd_validate_subtree(op_node, node_when_p, node_exts_p, node_types_p, meta_types_p, 0, diff);
1707 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001708 }
1709 }
1710
1711 /* finish incompletely validated terminal values/attributes and when conditions on the full tree */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001712 LY_CHECK_GOTO(rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL,
1713 node_when_p, node_exts_p, node_types_p, meta_types_p, diff), cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001714
1715 /* perform final validation of the operation/notification */
1716 lyd_validate_obsolete(op_node);
1717 LY_CHECK_GOTO(rc = lyd_validate_must(op_node, int_opts), cleanup);
1718
1719 /* final validation of all the descendants */
1720 LY_CHECK_GOTO(rc = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, int_opts), cleanup);
1721
1722cleanup:
1723 LOG_LOCBACK(0, 1, 0, 0);
1724 /* restore operation tree */
1725 lyd_unlink_tree(op_subtree);
1726 if (op_parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001727 lyd_insert_node(op_parent, NULL, op_subtree, 0);
Michal Vaskoe0665742021-02-11 11:08:44 +01001728 }
1729
1730 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001731 ly_set_erase(&node_exts, NULL);
Michal Vaskoe0665742021-02-11 11:08:44 +01001732 ly_set_erase(&node_types, NULL);
1733 ly_set_erase(&meta_types, NULL);
1734 return rc;
1735}
1736
1737API LY_ERR
1738lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *dep_tree, enum lyd_type data_type, struct lyd_node **diff)
1739{
1740 struct lyd_node *op_node;
1741 uint32_t int_opts;
1742
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001743 LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !dep_tree || !dep_tree->parent, (data_type == LYD_TYPE_RPC_YANG) ||
1744 (data_type == LYD_TYPE_NOTIF_YANG) || (data_type == LYD_TYPE_REPLY_YANG), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001745 if (diff) {
1746 *diff = NULL;
1747 }
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001748 if (data_type == LYD_TYPE_RPC_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001749 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001750 } else if (data_type == LYD_TYPE_NOTIF_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001751 int_opts = LYD_INTOPT_NOTIF;
1752 } else {
1753 int_opts = LYD_INTOPT_REPLY;
1754 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001755
1756 /* find the operation/notification */
Michal Vasko56daf732020-08-10 10:57:18 +02001757 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001758 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) &&
1759 (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001760 break;
Michal Vaskoe0665742021-02-11 11:08:44 +01001761 } else if ((int_opts & LYD_INTOPT_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001762 break;
1763 }
Michal Vasko56daf732020-08-10 10:57:18 +02001764 LYD_TREE_DFS_END(op_tree, op_node);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001765 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001766 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) {
Radek Krejci7931b192020-06-25 17:05:03 +02001767 if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001768 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001769 return LY_EINVAL;
1770 }
1771 } else {
Radek Krejci7931b192020-06-25 17:05:03 +02001772 if (op_node->schema->nodetype != LYS_NOTIF) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001773 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001774 return LY_EINVAL;
1775 }
1776 }
1777
Michal Vaskoe0665742021-02-11 11:08:44 +01001778 /* validate */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001779 return _lyd_validate_op(op_tree, op_node, dep_tree, int_opts, 1, NULL, NULL, NULL, NULL, diff);
Michal Vaskofea12c62020-03-30 11:00:15 +02001780}