blob: 9e0a42f324488199ba8a749760fa2bc86544aae9 [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 *
6 * Copyright (c) 2019 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 */
Radek Krejcif8dc59a2020-11-25 13:47:44 +010014#define _POSIX_C_SOURCE 200809L /* 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 Krejci535ea9f2020-05-29 16:01:05 +020019#include <stdint.h>
Michal Vasko52927e22020-03-16 17:26:14 +010020#include <stdio.h>
21#include <stdlib.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020022#include <string.h>
Michal Vaskocde73ac2019-11-14 16:10:27 +010023
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include "common.h"
Michal Vasko69730152020-10-09 16:30:07 +020025#include "compat.h"
Michal Vasko8104fd42020-07-13 11:09:51 +020026#include "diff.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include "hash_table.h"
28#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020029#include "parser_data.h"
Michal Vaskofeca4fb2020-10-05 08:58:40 +020030#include "plugins_exts_metadata.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020031#include "plugins_types.h"
32#include "set.h"
33#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010034#include "tree_data.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010035#include "tree_data_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020036#include "tree_schema.h"
Michal Vasko14654712020-02-06 08:35:21 +010037#include "tree_schema_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020038#include "xpath.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010039
Michal Vaskoa6669ba2020-08-06 16:14:26 +020040LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020041lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff)
42{
43 LY_ERR ret = LY_SUCCESS;
44 struct lyd_node *new_diff = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010045 const struct lyd_node *prev_inst;
46 char *key = NULL, *value = NULL;
47 size_t buflen = 0, bufused = 0;
Michal Vasko8104fd42020-07-13 11:09:51 +020048
49 assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE));
50
Michal Vasko81bc5512020-11-13 18:05:18 +010051 if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) {
52 if (node->prev->next && (node->prev->schema == node->schema)) {
53 prev_inst = node->prev;
54 } else {
55 /* first instance */
56 prev_inst = NULL;
57 }
58
59 if (node->schema->nodetype == LYS_LIST) {
60 /* generate key meta */
61 if (prev_inst) {
62 LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup);
63 } else {
64 key = strdup("");
65 LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
66 }
67 } else {
68 /* generate value meta */
69 if (prev_inst) {
70 value = strdup(LYD_CANON_VALUE(prev_inst));
71 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
72 } else {
73 value = strdup("");
74 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
75 }
76 }
77 }
78
Michal Vasko8104fd42020-07-13 11:09:51 +020079 /* create new diff tree */
Michal Vasko81bc5512020-11-13 18:05:18 +010080 LY_CHECK_GOTO(ret = lyd_diff_add(node, op, NULL, NULL, key, value, NULL, &new_diff), cleanup);
Michal Vasko8104fd42020-07-13 11:09:51 +020081
82 /* merge into existing diff */
Michal Vaskoc0e58e82020-11-11 19:04:33 +010083 ret = lyd_diff_merge_all(diff, new_diff, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +020084
Michal Vasko81bc5512020-11-13 18:05:18 +010085cleanup:
Michal Vasko8104fd42020-07-13 11:09:51 +020086 lyd_free_tree(new_diff);
Michal Vasko81bc5512020-11-13 18:05:18 +010087 free(key);
88 free(value);
Michal Vasko8104fd42020-07-13 11:09:51 +020089 return ret;
90}
91
92/**
Michal Vaskobd4db892020-11-23 16:58:20 +010093 * @brief Evaluate all relevant "when" conditions of a node.
Michal Vaskocde73ac2019-11-14 16:10:27 +010094 *
Michal Vaskobd4db892020-11-23 16:58:20 +010095 * @param[in] tree Data tree.
96 * @param[in] node Node whose relevant when conditions will be evaluated.
97 * @param[in] schema Schema node of @p node. It may not be possible to use directly if @p node is opaque.
98 * @param[out] disabled First when that evaluated false, if any.
99 * @return LY_SUCCESS on success.
100 * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated.
101 * @return LY_ERR value on error.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100102 */
103static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100104lyd_validate_node_when(const struct lyd_node *tree, const struct lyd_node *node, const struct lysc_node *schema,
105 const struct lysc_when **disabled)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100106{
Michal Vasko8104fd42020-07-13 11:09:51 +0200107 LY_ERR ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100108 const struct lyd_node *ctx_node;
109 struct lyxp_set xp_set;
Michal Vaskobd4db892020-11-23 16:58:20 +0100110 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100111
Michal Vaskobd4db892020-11-23 16:58:20 +0100112 assert(!node->schema || (node->schema == schema));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100113
Michal Vaskobd4db892020-11-23 16:58:20 +0100114 *disabled = NULL;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100115
Michal Vaskobd4db892020-11-23 16:58:20 +0100116 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100117 const struct lysc_when *when;
118 struct lysc_when **when_list = lysc_node_when(schema);
119 LY_ARRAY_FOR(when_list, u) {
120 when = when_list[u];
Michal Vaskocde73ac2019-11-14 16:10:27 +0100121
Michal Vaskobd4db892020-11-23 16:58:20 +0100122 /* get context node */
123 if (when->context == schema) {
124 ctx_node = node;
125 } else {
126 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
Michal Vasko9e685082021-01-29 14:49:09 +0100127 ctx_node = lyd_parent(node);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100128 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100129
130 /* evaluate when */
131 memset(&xp_set, 0, sizeof xp_set);
Michal Vasko400e9672021-01-11 13:39:17 +0100132 ret = lyxp_eval(LYD_CTX(node), when->cond, schema->module, LY_PREF_SCHEMA_RESOLVED, when->prefixes,
133 ctx_node, tree, &xp_set, LYXP_SCHEMA);
Michal Vaskobd4db892020-11-23 16:58:20 +0100134 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
135
136 /* return error or LY_EINCOMPLETE for dependant unresolved when */
137 LY_CHECK_RET(ret);
138
139 if (!xp_set.val.bln) {
140 /* false when */
141 *disabled = when;
142 return LY_SUCCESS;
Michal Vasko8104fd42020-07-13 11:09:51 +0200143 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100144 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100145
146 schema = schema->parent;
147 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
148
149 return LY_SUCCESS;
150}
151
152/**
153 * @brief Evaluate when conditions of collected unres nodes.
154 *
155 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100156 * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it.
157 * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be
158 * the first top-level sibling.
Michal Vaskobd4db892020-11-23 16:58:20 +0100159 * @param[in] node_when Set with nodes with "when" conditions.
160 * @param[in,out] diff Validation diff.
161 * @return LY_SUCCESS on success.
162 * @return LY_ERR value on error.
163 */
164static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100165lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
166 struct lyd_node **diff)
Michal Vaskobd4db892020-11-23 16:58:20 +0100167{
168 LY_ERR ret;
169 uint32_t i;
170 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100171 struct lyd_node *node = NULL;
Michal Vaskobd4db892020-11-23 16:58:20 +0100172
173 if (!node_when->count) {
174 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100175 }
176
Michal Vaskobd4db892020-11-23 16:58:20 +0100177 i = node_when->count;
178 do {
179 --i;
180 node = node_when->dnodes[i];
Radek Krejciddace2c2021-01-08 11:30:56 +0100181 LOG_LOCSET(node->schema, node, NULL, NULL);
Michal Vaskobd4db892020-11-23 16:58:20 +0100182
183 /* evaluate all when expressions that affect this node's existence */
184 ret = lyd_validate_node_when(*tree, node, node->schema, &disabled);
185 if (!ret) {
186 if (disabled) {
187 /* when false */
188 if (node->flags & LYD_WHEN_TRUE) {
189 /* autodelete */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100190 lyd_del_move_root(tree, node, mod);
Michal Vaskobd4db892020-11-23 16:58:20 +0100191 if (diff) {
192 /* add into diff */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100193 ret = lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
194 LY_CHECK_GOTO(ret, error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100195 }
196 lyd_free_tree(node);
197 } else {
198 /* invalid data */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100199 LOGVAL(LYD_CTX(node), LY_VCODE_NOWHEN, disabled->cond->expr);
200 ret = LY_EVALID;
201 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100202 }
203 } else {
204 /* when true */
205 node->flags |= LYD_WHEN_TRUE;
206 }
207
208 /* remove this node from the set, its when was resolved */
209 ly_set_rm_index(node_when, i, NULL);
210 } else if (ret != LY_EINCOMPLETE) {
211 /* error */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100212 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100213 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100214
Radek Krejciddace2c2021-01-08 11:30:56 +0100215 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskobd4db892020-11-23 16:58:20 +0100216 } while (i);
217
218 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100219
220error:
Radek Krejciddace2c2021-01-08 11:30:56 +0100221 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100222 return ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100223}
224
225LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100226lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
227 struct ly_set *node_types, struct ly_set *meta_types, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100228{
229 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200230 uint32_t i;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100231
Michal Vaskob1b5c262020-03-05 14:29:47 +0100232 if (node_when) {
233 /* evaluate all when conditions */
234 uint32_t prev_count;
235 do {
236 prev_count = node_when->count;
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100237 LY_CHECK_RET(lyd_validate_unres_when(tree, mod, node_when, diff));
Radek Krejci0f969882020-08-21 16:56:47 +0200238 /* there must have been some when conditions resolved */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100239 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100240
Michal Vaskob1b5c262020-03-05 14:29:47 +0100241 /* there could have been no cyclic when dependencies, checked during compilation */
242 assert(!node_when->count);
243 }
244
245 if (node_types && node_types->count) {
246 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200247 i = node_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100248 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200249 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100250
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100251 struct lyd_node_term *node = node_types->objs[i];
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200252 struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100253
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200254 /* resolve the value of the node */
Michal Vasko9e685082021-01-29 14:49:09 +0100255 LOG_LOCSET(node->schema, &node->node, NULL, NULL);
256 ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, &node->node, *tree);
Radek Krejciddace2c2021-01-08 11:30:56 +0100257 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100258 LY_CHECK_RET(ret);
259
260 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200261 ly_set_rm_index(node_types, i, NULL);
262 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100263 }
264
Michal Vasko9f96a052020-03-10 09:41:45 +0100265 if (meta_types && meta_types->count) {
266 /* ... and metadata values */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200267 i = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100268 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200269 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100270
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100271 struct lyd_meta *meta = meta_types->objs[i];
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200272 struct lysc_type *type = ((struct lyext_metadata *)meta->annotation->data)->type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100273
Michal Vasko9f96a052020-03-10 09:41:45 +0100274 /* validate and store the value of the metadata */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100275 ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100276 LY_CHECK_RET(ret);
277
278 /* remove this attr from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200279 ly_set_rm_index(meta_types, i, NULL);
280 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100281 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100282
283 return ret;
284}
285
Michal Vaskobb844672020-07-03 11:06:12 +0200286/**
287 * @brief Validate instance duplication.
288 *
289 * @param[in] first First sibling to search in.
290 * @param[in] node Data node instance to check.
291 * @return LY_ERR value.
292 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100293static LY_ERR
294lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100295{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100296 struct lyd_node **match_p;
Radek Krejci857189e2020-09-01 13:26:36 +0200297 ly_bool fail = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100298
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100299 assert(node->flags & LYD_NEW);
300
Michal Vaskod6c18af2021-02-12 12:07:31 +0100301 /* key-less list or non-configuration leaf-list */
302 if (((node->schema->nodetype == LYS_LIST) && (node->schema->flags & LYS_KEYLESS)) ||
303 ((node->schema->nodetype == LYS_LEAFLIST) && !(node->schema->flags & LYS_CONFIG_W))) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100304 /* duplicate instances allowed */
305 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100306 }
307
Michal Vaskob1b5c262020-03-05 14:29:47 +0100308 /* find exactly the same next instance using hashes if possible */
309 if (node->parent && node->parent->children_ht) {
310 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
311 fail = 1;
312 }
313 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +0200314 for ( ; first; first = first->next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100315 if (first == node) {
316 continue;
317 }
318
319 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
320 if (first->schema == node->schema) {
321 fail = 1;
322 break;
323 }
Michal Vasko8f359bf2020-07-28 10:41:15 +0200324 } else if (!lyd_compare_single(first, node, 0)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100325 fail = 1;
326 break;
327 }
328 }
329 }
330
331 if (fail) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100332 LOGVAL(node->schema->module->ctx, LY_VCODE_DUP, node->schema->name);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100333 return LY_EVALID;
334 }
335 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100336}
337
Michal Vaskobb844672020-07-03 11:06:12 +0200338/**
339 * @brief Validate multiple case data existence with possible autodelete.
340 *
341 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100342 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200343 * @param[in] choic Choice node whose cases to check.
Michal Vasko8104fd42020-07-13 11:09:51 +0200344 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200345 * @return LY_ERR value.
346 */
Michal Vaskocde73ac2019-11-14 16:10:27 +0100347static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100348lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic,
349 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100350{
351 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
352 struct lyd_node *match, *to_del;
Radek Krejci857189e2020-09-01 13:26:36 +0200353 ly_bool found;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100354
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100355 LOG_LOCSET(&choic->node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100356
Michal Vaskob1b5c262020-03-05 14:29:47 +0100357 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
358 found = 0;
359 iter = NULL;
360 match = NULL;
361 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
362 if (match->flags & LYD_NEW) {
363 /* a new case data found, nothing more to look for */
364 found = 2;
365 break;
366 } else {
367 /* and old case data found */
368 if (found == 0) {
369 found = 1;
370 }
371 }
372 }
373
374 if (found == 1) {
375 /* there should not be 2 old cases */
376 if (old_case) {
377 /* old data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100378 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, old_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100379 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100380 return LY_EVALID;
381 }
382
383 /* remember an old existing case */
384 old_case = scase;
385 } else if (found == 2) {
386 if (new_case) {
387 /* new data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100388 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, new_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100389 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100390 return LY_EVALID;
391 }
392
393 /* remember a new existing case */
394 new_case = scase;
395 }
396 }
397
Radek Krejciddace2c2021-01-08 11:30:56 +0100398 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100399
Michal Vaskob1b5c262020-03-05 14:29:47 +0100400 if (old_case && new_case) {
401 /* auto-delete old case */
402 iter = NULL;
403 match = NULL;
404 to_del = NULL;
405 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100406 lyd_del_move_root(first, to_del, mod);
407
Michal Vasko8104fd42020-07-13 11:09:51 +0200408 /* free previous node */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100409 lyd_free_tree(to_del);
Michal Vasko8104fd42020-07-13 11:09:51 +0200410 if (diff) {
411 /* add into diff */
412 LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff));
413 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100414 to_del = match;
415 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100416 lyd_del_move_root(first, to_del, mod);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100417 lyd_free_tree(to_del);
418 }
419
420 return LY_SUCCESS;
421}
422
Michal Vaskobb844672020-07-03 11:06:12 +0200423/**
424 * @brief Check whether a schema node can have some default values (true for NP containers as well).
425 *
426 * @param[in] schema Schema node to check.
427 * @return non-zero if yes,
428 * @return 0 otherwise.
429 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100430static int
431lyd_val_has_default(const struct lysc_node *schema)
432{
433 switch (schema->nodetype) {
434 case LYS_LEAF:
435 if (((struct lysc_node_leaf *)schema)->dflt) {
436 return 1;
437 }
438 break;
439 case LYS_LEAFLIST:
440 if (((struct lysc_node_leaflist *)schema)->dflts) {
441 return 1;
442 }
443 break;
444 case LYS_CONTAINER:
445 if (!(schema->flags & LYS_PRESENCE)) {
446 return 1;
447 }
448 break;
449 default:
450 break;
451 }
452
453 return 0;
454}
455
Michal Vaskobb844672020-07-03 11:06:12 +0200456/**
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100457 * @brief Properly delete a node as part of autodelete validation tasks.
458 *
459 * @param[in,out] first First sibling, is updated if needed.
460 * @param[in] node Node instance to delete.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100461 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100462 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
463 * @param[in,out] diff Validation diff.
464 */
465static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100466lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
467 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100468{
469 struct lyd_node *iter;
470
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100471 lyd_del_move_root(first, node, mod);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100472 if (node == *next_p) {
473 *next_p = (*next_p)->next;
474 }
475 if (diff) {
476 /* add into diff */
477 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
478 /* we do not want to track NP container changes, but remember any removed children */
479 LY_LIST_FOR(lyd_child(node), iter) {
480 lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff);
481 }
482 } else {
483 lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
484 }
485 }
486 lyd_free_tree(node);
487}
488
489/**
Michal Vaskobb844672020-07-03 11:06:12 +0200490 * @brief Autodelete old instances to prevent validation errors.
491 *
492 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100493 * @param[in] node New data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100494 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200495 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
Michal Vasko8104fd42020-07-13 11:09:51 +0200496 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200497 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100498static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100499lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
500 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100501{
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100502 struct lyd_node *match, *next;
503
504 assert(node->flags & LYD_NEW);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100505
506 if (lyd_val_has_default(node->schema)) {
507 assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER));
Michal Vasko4c583e82020-07-17 12:16:14 +0200508 LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100509 if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) {
510 /* default instance found, remove it */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100511 lyd_validate_autodel_node_del(first, match, mod, next_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100512
513 /* remove only a single container/leaf default instance, if there are more, it is an error */
514 if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) {
515 break;
516 }
517 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100518 }
519 }
520}
521
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100522/**
523 * @brief Autodelete leftover default nodes of deleted cases (that have no existing explicit data).
524 *
525 * @param[in,out] first First sibling to search in, is updated if needed.
526 * @param[in] node Default data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100527 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100528 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
529 * @param[in,out] diff Validation diff.
530 */
531static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100532lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
533 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100534{
535 struct lysc_node_choice *choic;
536 struct lyd_node *iter = NULL;
537 const struct lysc_node *slast = NULL;
538
539 assert(node->flags & LYD_DEFAULT);
540
541 if (!node->schema->parent || (node->schema->parent->nodetype != LYS_CASE)) {
542 /* the default node is not a descendant of a case */
543 return;
544 }
545
546 choic = (struct lysc_node_choice *)node->schema->parent->parent;
547 assert(choic->nodetype == LYS_CHOICE);
548
549 if (choic->dflt && (choic->dflt == (struct lysc_node_case *)node->schema->parent)) {
550 /* data of a default case, keep them */
551 return;
552 }
553
554 /* try to find an explicit node of the case */
555 while ((iter = lys_getnext_data(iter, *first, &slast, node->schema->parent, NULL))) {
556 if (!(iter->flags & LYD_DEFAULT)) {
557 break;
558 }
559 }
560
561 if (!iter) {
562 /* there are only default nodes of the case meaning it does not exist and neither should any default nodes
563 * of the case, remove this one default node */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100564 lyd_validate_autodel_node_del(first, node, mod, next_p, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100565 }
566}
567
Michal Vaskob1b5c262020-03-05 14:29:47 +0100568LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +0200569lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +0200570 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100571{
572 struct lyd_node *next, *node;
573 const struct lysc_node *snode = NULL;
574
575 assert(first && (sparent || mod));
576
577 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
578 /* check case duplicites */
579 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100580 LY_CHECK_RET(lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100581 }
582 }
583
584 LY_LIST_FOR_SAFE(*first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100585 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100586 /* all top-level data from this module checked */
587 break;
588 }
589
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100590 if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) {
591 /* check only new and default nodes */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100592 continue;
593 }
594
Radek Krejciddace2c2021-01-08 11:30:56 +0100595 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100596
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100597 if (node->flags & LYD_NEW) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100598 LY_ERR ret;
599
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100600 /* remove old default(s) of the new node if it exists */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100601 lyd_validate_autodel_dup(first, node, mod, &next, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100602
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100603 /* then check new node instance duplicities */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100604 ret = lyd_validate_duplicates(*first, node);
Radek Krejciddace2c2021-01-08 11:30:56 +0100605 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0), ret);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100606
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100607 /* this node is valid */
608 node->flags &= ~LYD_NEW;
609 }
610
Michal Vasko0e6de512021-01-11 13:39:44 +0100611 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
612
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100613 if (node->flags & LYD_DEFAULT) {
614 /* remove leftover default nodes from a no-longer existing case */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100615 lyd_validate_autodel_case_dflt(first, node, mod, &next, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100616 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100617 }
618
619 return LY_SUCCESS;
620}
621
Michal Vaskobb844672020-07-03 11:06:12 +0200622/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100623 * @brief Evaluate any "when" conditions of a non-existent data node with existing parent.
624 *
625 * @param[in] first First data sibling of the non-existing node.
626 * @param[in] parent Data parent of the non-existing node.
627 * @param[in] snode Schema node of the non-existing node.
628 * @param[out] disabled First when that evaluated false, if any.
629 * @return LY_ERR value.
630 */
631static LY_ERR
632lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
633 const struct lysc_when **disabled)
634{
635 LY_ERR ret = LY_SUCCESS;
636 struct lyd_node *tree, *dummy = NULL;
637
638 /* find root */
639 if (parent) {
640 tree = (struct lyd_node *)parent;
641 while (tree->parent) {
642 tree = lyd_parent(tree);
643 }
644 tree = lyd_first_sibling(tree);
645 } else {
646 assert(!first || !first->prev->next);
647 tree = (struct lyd_node *)first;
648 }
649
650 /* create dummy opaque node */
651 ret = lyd_new_opaq((struct lyd_node *)parent, snode->module->ctx, snode->name, NULL, snode->module->name, &dummy);
652 LY_CHECK_GOTO(ret, cleanup);
653
654 /* connect it if needed */
655 if (!parent) {
656 if (first) {
657 lyd_insert_sibling((struct lyd_node *)first, dummy, &tree);
658 } else {
659 assert(!tree);
660 tree = dummy;
661 }
662 }
663
664 /* evaluate all when */
665 ret = lyd_validate_node_when(tree, dummy, snode, disabled);
666 if (ret == LY_EINCOMPLETE) {
667 /* all other when must be resolved by now */
668 LOGINT(snode->module->ctx);
669 ret = LY_EINT;
670 goto cleanup;
671 } else if (ret) {
672 /* error */
673 goto cleanup;
674 }
675
676cleanup:
677 lyd_free_tree(dummy);
678 return ret;
679}
680
681/**
Michal Vaskobb844672020-07-03 11:06:12 +0200682 * @brief Validate mandatory node existence.
683 *
684 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100685 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200686 * @param[in] snode Schema node to validate.
687 * @return LY_ERR value.
688 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100689static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100690lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100691{
Michal Vaskobd4db892020-11-23 16:58:20 +0100692 const struct lysc_when *disabled;
693
Michal Vaskoa3881362020-01-21 15:57:35 +0100694 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100695 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100696 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100697 return LY_SUCCESS;
698 }
699 } else {
700 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100701
Michal Vaskob1b5c262020-03-05 14:29:47 +0100702 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100703 /* data instance found */
704 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100705 }
706 }
707
Michal Vaskobd4db892020-11-23 16:58:20 +0100708 disabled = NULL;
709 if (lysc_has_when(snode)) {
710 /* if there are any when conditions, they must be true for a validation error */
711 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
712 }
713
714 if (!disabled) {
715 /* node instance not found */
Michal Vasko538b8952021-02-17 11:27:26 +0100716 if (snode->nodetype == LYS_CHOICE) {
717 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND_CHOIC, snode->name);
718 } else {
719 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND, snode->name);
720 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100721 return LY_EVALID;
722 }
723
724 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100725}
726
Michal Vaskobb844672020-07-03 11:06:12 +0200727/**
728 * @brief Validate min/max-elements constraints, if any.
729 *
730 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100731 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200732 * @param[in] snode Schema node to validate.
733 * @param[in] min Minimum number of elements, 0 for no restriction.
734 * @param[in] max Max number of elements, 0 for no restriction.
735 * @return LY_ERR value.
736 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100737static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100738lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
739 uint32_t min, uint32_t max)
Michal Vaskoa3881362020-01-21 15:57:35 +0100740{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100741 uint32_t count = 0;
Michal Vasko4c583e82020-07-17 12:16:14 +0200742 struct lyd_node *iter;
Michal Vaskobd4db892020-11-23 16:58:20 +0100743 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100744 ly_bool invalid_instance = 0;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100745
Michal Vasko9b368d32020-02-14 13:53:31 +0100746 assert(min || max);
747
Michal Vasko4c583e82020-07-17 12:16:14 +0200748 LYD_LIST_FOR_INST(first, snode, iter) {
749 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100750
Michal Vasko4c583e82020-07-17 12:16:14 +0200751 if (min && (count == min)) {
752 /* satisfied */
753 min = 0;
754 if (!max) {
755 /* nothing more to check */
Michal Vasko9b368d32020-02-14 13:53:31 +0100756 break;
757 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100758 }
Michal Vasko4c583e82020-07-17 12:16:14 +0200759 if (max && (count > max)) {
760 /* not satisifed */
Radek Krejciddace2c2021-01-08 11:30:56 +0100761 LOG_LOCSET(NULL, iter, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100762 invalid_instance = 1;
Michal Vasko4c583e82020-07-17 12:16:14 +0200763 break;
764 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100765 }
766
Michal Vasko9b368d32020-02-14 13:53:31 +0100767 if (min) {
768 assert(count < min);
Michal Vaskobd4db892020-11-23 16:58:20 +0100769
770 disabled = NULL;
771 if (lysc_has_when(snode)) {
772 /* if there are any when conditions, they must be true for a validation error */
773 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
774 }
775
776 if (!disabled) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100777 LOGVAL(snode->module->ctx, LY_VCODE_NOMIN, snode->name);
778 goto failure;
Michal Vaskobd4db892020-11-23 16:58:20 +0100779 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100780 } else if (max && (count > max)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100781 LOGVAL(snode->module->ctx, LY_VCODE_NOMAX, snode->name);
782 goto failure;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100783 }
784
Michal Vaskoa3881362020-01-21 15:57:35 +0100785 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100786
787failure:
Radek Krejciddace2c2021-01-08 11:30:56 +0100788 LOG_LOCBACK(0, invalid_instance, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100789 return LY_EVALID;
Michal Vaskoa3881362020-01-21 15:57:35 +0100790}
791
Michal Vaskobb844672020-07-03 11:06:12 +0200792/**
793 * @brief Find node referenced by a list unique statement.
794 *
795 * @param[in] uniq_leaf Unique leaf to find.
796 * @param[in] list List instance to use for the search.
797 * @return Found leaf,
798 * @return NULL if no leaf found.
799 */
Michal Vasko14654712020-02-06 08:35:21 +0100800static struct lyd_node *
Michal Vaskobb844672020-07-03 11:06:12 +0200801lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list)
Michal Vasko14654712020-02-06 08:35:21 +0100802{
Michal Vasko9b368d32020-02-14 13:53:31 +0100803 struct lyd_node *node;
804 const struct lysc_node *iter;
805 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +0100806
Michal Vasko9b368d32020-02-14 13:53:31 +0100807 /* get leaf depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100808 for (iter = &uniq_leaf->node; iter && (iter != list->schema); iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200809 ++depth;
Michal Vasko14654712020-02-06 08:35:21 +0100810 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100811
Michal Vaskobb844672020-07-03 11:06:12 +0200812 node = (struct lyd_node *)list;
Michal Vasko9b368d32020-02-14 13:53:31 +0100813 while (node && depth) {
814 /* find schema node with this depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100815 for (i = depth - 1, iter = &uniq_leaf->node; i; iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200816 --i;
Michal Vasko9b368d32020-02-14 13:53:31 +0100817 }
818
819 /* find iter instance in children */
820 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
Radek Krejcia1c1e542020-09-29 16:06:52 +0200821 lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100822 --depth;
823 }
824
Michal Vasko14654712020-02-06 08:35:21 +0100825 return node;
826}
827
Michal Vaskobb844672020-07-03 11:06:12 +0200828/**
829 * @brief Callback for comparing 2 list unique leaf values.
830 *
Radek Krejci857189e2020-09-01 13:26:36 +0200831 * Implementation of ::values_equal_cb.
832 *
Michal Vaskobb844672020-07-03 11:06:12 +0200833 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +0100834 */
Radek Krejci857189e2020-09-01 13:26:36 +0200835static ly_bool
836lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data)
Michal Vasko14654712020-02-06 08:35:21 +0100837{
838 struct ly_ctx *ctx;
839 struct lysc_node_list *slist;
840 struct lyd_node *diter, *first, *second;
841 struct lyd_value *val1, *val2;
842 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200843 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +0100844
845 assert(val1_p && val2_p);
846
847 first = *((struct lyd_node **)val1_p);
848 second = *((struct lyd_node **)val2_p);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200849 action = (LY_ARRAY_COUNT_TYPE)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +0100850
851 assert(first && (first->schema->nodetype == LYS_LIST));
852 assert(second && (second->schema == first->schema));
853
854 ctx = first->schema->module->ctx;
855
856 slist = (struct lysc_node_list *)first->schema;
857
858 /* compare unique leaves */
859 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200860 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200861 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +0100862 goto uniquecheck;
863 }
864 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200865 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +0100866uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200867 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +0100868 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200869 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +0100870 if (diter) {
871 val1 = &((struct lyd_node_term *)diter)->value;
872 } else {
873 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200874 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100875 }
876
877 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200878 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +0100879 if (diter) {
880 val2 = &((struct lyd_node_term *)diter)->value;
881 } else {
882 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200883 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100884 }
885
886 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
887 /* values differ or either one is not set */
888 break;
889 }
890 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200891 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +0100892 /* all unique leafs are the same in this set, create this nice error */
Radek Krejci635d2b82021-01-04 11:26:51 +0100893 path1 = lyd_path(first, LYD_PATH_STD, NULL, 0);
894 path2 = lyd_path(second, LYD_PATH_STD, NULL, 0);
Michal Vasko14654712020-02-06 08:35:21 +0100895
896 /* use buffer to rebuild the unique string */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100897#define UNIQ_BUF_SIZE 1024
898 uniq_str = malloc(UNIQ_BUF_SIZE);
Michal Vasko14654712020-02-06 08:35:21 +0100899 uniq_str[0] = '\0';
900 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200901 LY_ARRAY_FOR(slist->uniques[u], v) {
902 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +0100903 strcpy(ptr, " ");
904 ++ptr;
905 }
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100906 ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], &slist->node, LYSC_PATH_LOG,
Radek Krejcif13b87b2020-12-01 22:02:17 +0100907 ptr, UNIQ_BUF_SIZE - (ptr - uniq_str));
Michal Vasko14654712020-02-06 08:35:21 +0100908 if (!ptr) {
909 /* path will be incomplete, whatever */
910 break;
911 }
912
913 ptr += strlen(ptr);
914 }
Radek Krejciddace2c2021-01-08 11:30:56 +0100915 LOG_LOCSET(NULL, second, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100916 LOGVAL(ctx, LY_VCODE_NOUNIQ, uniq_str, path1, path2);
Radek Krejciddace2c2021-01-08 11:30:56 +0100917 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +0100918
919 free(path1);
920 free(path2);
921 free(uniq_str);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100922#undef UNIQ_BUF_SIZE
923
Michal Vasko14654712020-02-06 08:35:21 +0100924 return 1;
925 }
926
927 if (action > 0) {
928 /* done */
929 return 0;
930 }
931 }
932
933 return 0;
934}
935
Michal Vaskobb844672020-07-03 11:06:12 +0200936/**
937 * @brief Validate list unique leaves.
938 *
939 * @param[in] first First sibling to search in.
940 * @param[in] snode Schema node to validate.
941 * @param[in] uniques List unique arrays to validate.
942 * @return LY_ERR value.
943 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100944static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +0200945lyd_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 +0100946{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100947 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +0100948 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200949 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +0100950 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200951 uint32_t hash, i, size = 0;
Radek Krejci857189e2020-09-01 13:26:36 +0200952 ly_bool dynamic;
Michal Vasko14654712020-02-06 08:35:21 +0100953 const char *str;
954 struct hash_table **uniqtables = NULL;
955 struct lyd_value *val;
956 struct ly_ctx *ctx = snode->module->ctx;
957
958 assert(uniques);
959
960 /* get all list instances */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200961 LY_CHECK_RET(ly_set_new(&set));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100962 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100963 if (diter->schema == snode) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200964 ret = ly_set_add(set, (void *)diter, 1, NULL);
Michal Vaskob0099a92020-08-31 14:55:23 +0200965 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko9b368d32020-02-14 13:53:31 +0100966 }
967 }
Michal Vasko14654712020-02-06 08:35:21 +0100968
969 if (set->count == 2) {
970 /* simple comparison */
971 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
972 /* instance duplication */
973 ret = LY_EVALID;
974 goto cleanup;
975 }
976 } else if (set->count > 2) {
977 /* use hashes for comparison */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100978 /* first, allocate the table, the size depends on number of items in the set,
979 * the following code detects number of upper zero bits in the items' counter value ... */
980 for (i = (sizeof set->count * CHAR_BIT) - 1; i > 0; i--) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200981 size = set->count << i;
982 size = size >> i;
983 if (size == set->count) {
Michal Vasko14654712020-02-06 08:35:21 +0100984 break;
985 }
986 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200987 LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100988 /* ... and then we convert it to the position of the highest non-zero bit ... */
989 i = (sizeof set->count * CHAR_BIT) - i;
990 /* ... 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 +0200991 size = 1 << i;
Michal Vasko14654712020-02-06 08:35:21 +0100992
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200993 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +0100994 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200995 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200996 for (v = 0; v < x; v++) {
997 uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(v + 1L), 0);
998 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +0100999 }
1000
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001001 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +01001002 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001003 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +01001004 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001005 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001006 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +01001007 if (diter) {
1008 val = &((struct lyd_node_term *)diter)->value;
1009 } else {
1010 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001011 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001012 }
1013 if (!val) {
1014 /* unique item not present nor has default value */
1015 break;
1016 }
1017
1018 /* get canonical string value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001019 str = val->realtype->plugin->print(val, LY_PREF_JSON, NULL, &dynamic);
Michal Vasko14654712020-02-06 08:35:21 +01001020 hash = dict_hash_multi(hash, str, strlen(str));
1021 if (dynamic) {
1022 free((char *)str);
1023 }
1024 }
1025 if (!val) {
1026 /* skip this list instance since its unique set is incomplete */
1027 continue;
1028 }
1029
1030 /* finish the hash value */
1031 hash = dict_hash_multi(hash, NULL, 0);
1032
1033 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001034 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +01001035 if (ret == LY_EEXIST) {
1036 /* instance duplication */
1037 ret = LY_EVALID;
1038 }
1039 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
1040 }
1041 }
1042 }
1043
1044cleanup:
1045 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001046 for (v = 0; v < x; v++) {
1047 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +01001048 /* failed when allocating uniquetables[j], following j are not allocated */
1049 break;
1050 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001051 lyht_free(uniqtables[v]);
Michal Vasko14654712020-02-06 08:35:21 +01001052 }
1053 free(uniqtables);
1054
1055 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +01001056}
1057
Michal Vaskobb844672020-07-03 11:06:12 +02001058/**
1059 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
1060 *
1061 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +01001062 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +02001063 * @param[in] sparent Schema parent of the nodes to check.
1064 * @param[in] mod Module of the nodes to check.
1065 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskoe0665742021-02-11 11:08:44 +01001066 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001067 * @return LY_ERR value.
1068 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001069static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001070lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001071 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 +01001072{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001073 LY_ERR ret = LY_SUCCESS;
Michal Vasko6c16cda2021-02-04 11:05:52 +01001074 const struct lysc_node *snode = NULL, *scase;
Michal Vaskoa3881362020-01-21 15:57:35 +01001075 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +02001076 struct lysc_node_leaflist *sllist;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001077 uint32_t getnext_opts;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001078
Michal Vaskoe0665742021-02-11 11:08:44 +01001079 getnext_opts = LYS_GETNEXT_WITHCHOICE | (int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001080
Michal Vaskoa3881362020-01-21 15:57:35 +01001081 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001082 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +02001083 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001084 continue;
1085 }
1086
Radek Krejciddace2c2021-01-08 11:30:56 +01001087 LOG_LOCSET(snode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001088
Michal Vaskoa3881362020-01-21 15:57:35 +01001089 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +02001090 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +01001091 slist = (struct lysc_node_list *)snode;
1092 if (slist->min || slist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001093 ret = lyd_validate_minmax(first, parent, snode, slist->min, slist->max);
1094 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001095 }
Michal Vaskod8958df2020-08-05 13:27:36 +02001096 } else if (snode->nodetype == LYS_LEAFLIST) {
1097 sllist = (struct lysc_node_leaflist *)snode;
1098 if (sllist->min || sllist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001099 ret = lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max);
1100 LY_CHECK_GOTO(ret, error);
Michal Vaskod8958df2020-08-05 13:27:36 +02001101 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001102
Michal Vaskoacd83e72020-02-04 14:12:01 +01001103 } else if (snode->flags & LYS_MAND_TRUE) {
Radek Krejcif6a11002020-08-21 13:29:07 +02001104 /* check generic mandatory existence */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001105 ret = lyd_validate_mandatory(first, parent, snode);
1106 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001107 }
1108
1109 /* check unique */
1110 if (snode->nodetype == LYS_LIST) {
1111 slist = (struct lysc_node_list *)snode;
1112 if (slist->uniques) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001113 ret = lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques);
1114 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001115 }
1116 }
1117
Michal Vasko6c16cda2021-02-04 11:05:52 +01001118 if (snode->nodetype == LYS_CHOICE) {
1119 /* find the existing case, if any */
1120 LY_LIST_FOR(lysc_node_child(snode), scase) {
1121 if (lys_getnext_data(NULL, first, NULL, scase, NULL)) {
1122 /* validate only this case */
Michal Vaskoe0665742021-02-11 11:08:44 +01001123 ret = lyd_validate_siblings_schema_r(first, parent, scase, mod, val_opts, int_opts);
Michal Vasko6c16cda2021-02-04 11:05:52 +01001124 LY_CHECK_GOTO(ret, error);
1125 break;
1126 }
1127 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001128 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001129
Radek Krejciddace2c2021-01-08 11:30:56 +01001130 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001131 }
1132
Michal Vaskoacd83e72020-02-04 14:12:01 +01001133 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001134
1135error:
Radek Krejciddace2c2021-01-08 11:30:56 +01001136 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001137 return ret;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001138}
1139
Michal Vaskobb844672020-07-03 11:06:12 +02001140/**
1141 * @brief Validate obsolete nodes, only warnings are printed.
1142 *
1143 * @param[in] node Node to check.
1144 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001145static void
1146lyd_validate_obsolete(const struct lyd_node *node)
1147{
1148 const struct lysc_node *snode;
1149
1150 snode = node->schema;
1151 do {
1152 if (snode->flags & LYS_STATUS_OBSLT) {
1153 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
1154 break;
1155 }
1156
1157 snode = snode->parent;
1158 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
1159}
1160
Michal Vaskobb844672020-07-03 11:06:12 +02001161/**
1162 * @brief Validate must conditions of a data node.
1163 *
1164 * @param[in] node Node to validate.
Michal Vaskoe0665742021-02-11 11:08:44 +01001165 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001166 * @return LY_ERR value.
1167 */
Michal Vaskocc048b22020-03-27 15:52:38 +01001168static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001169lyd_validate_must(const struct lyd_node *node, uint32_t int_opts)
Michal Vaskocc048b22020-03-27 15:52:38 +01001170{
1171 struct lyxp_set xp_set;
1172 struct lysc_must *musts;
1173 const struct lyd_node *tree;
Radek Krejci9a3823e2021-01-27 20:26:46 +01001174 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001175 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +01001176
Michal Vaskoe0665742021-02-11 11:08:44 +01001177 assert((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) != (LYD_INTOPT_RPC | LYD_INTOPT_REPLY));
1178 assert((int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) != (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY));
1179
Radek Krejci9a3823e2021-01-27 20:26:46 +01001180 if (node->schema->nodetype & (LYS_ACTION | LYS_RPC)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001181 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001182 schema = &((struct lysc_node_action *)node->schema)->input.node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001183 } else if (int_opts & LYD_INTOPT_REPLY) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001184 schema = &((struct lysc_node_action *)node->schema)->output.node;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001185 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001186 LOGINT(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +02001187 return LY_EINT;
1188 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001189 } else {
1190 schema = node->schema;
Michal Vaskocc048b22020-03-27 15:52:38 +01001191 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001192 musts = lysc_node_musts(schema);
Michal Vaskocc048b22020-03-27 15:52:38 +01001193 if (!musts) {
1194 /* no must to evaluate */
1195 return LY_SUCCESS;
1196 }
1197
1198 /* find first top-level node */
Michal Vasko9e685082021-01-29 14:49:09 +01001199 for (tree = node; tree->parent; tree = lyd_parent(tree)) {}
Michal Vaskof9221e62021-02-04 12:10:14 +01001200 tree = lyd_first_sibling(tree);
Michal Vaskocc048b22020-03-27 15:52:38 +01001201
1202 LY_ARRAY_FOR(musts, u) {
1203 memset(&xp_set, 0, sizeof xp_set);
1204
1205 /* evaluate must */
Michal Vasko400e9672021-01-11 13:39:17 +01001206 LY_CHECK_RET(lyxp_eval(LYD_CTX(node), musts[u].cond, node->schema->module, LY_PREF_SCHEMA_RESOLVED,
1207 musts[u].prefixes, node, tree, &xp_set, LYXP_SCHEMA));
Michal Vaskocc048b22020-03-27 15:52:38 +01001208
1209 /* check the result */
1210 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02001211 if (!xp_set.val.bln) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001212 LOGVAL(LYD_CTX(node), LY_VCODE_NOMUST, musts[u].cond->expr);
Michal Vaskocc048b22020-03-27 15:52:38 +01001213 return LY_EVALID;
1214 }
1215 }
1216
1217 return LY_SUCCESS;
1218}
1219
Michal Vaskoe0665742021-02-11 11:08:44 +01001220/**
1221 * @brief Perform all remaining validation tasks, the data tree must be final when calling this function.
1222 *
1223 * @param[in] first First sibling.
1224 * @param[in] parent Data parent.
1225 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
1226 * @param[in] mod Module of the siblings, NULL for nested siblings.
1227 * @param[in] val_opts Validation options (@ref datavalidationoptions).
1228 * @param[in] int_opts Internal parser options.
1229 * @return LY_ERR value.
1230 */
1231static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001232lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001233 const struct lys_module *mod, uint32_t val_opts, uint32_t int_opts)
Michal Vaskoacd83e72020-02-04 14:12:01 +01001234{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001235 const char *innode = NULL;
Radek Krejci7f769d72020-07-11 23:13:56 +02001236 struct lyd_node *next = NULL, *node;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001237
Michal Vasko14654712020-02-06 08:35:21 +01001238 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001239 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +01001240 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001241 /* all top-level data from this module checked */
1242 break;
Michal Vaskof03ed032020-03-04 13:31:44 +01001243 }
1244
Radek Krejciddace2c2021-01-08 11:30:56 +01001245 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001246
Michal Vaskoa8c61722020-03-27 16:59:32 +01001247 /* opaque data */
1248 if (!node->schema) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001249 LOGVAL(LYD_CTX(node), LYVE_DATA, "Opaque node \"%s\" found.", ((struct lyd_node_opaq *)node)->name.name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001250 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskoa8c61722020-03-27 16:59:32 +01001251 return LY_EVALID;
1252 }
1253
Michal Vaskocb7526d2020-03-30 15:08:26 +02001254 /* no state/input/output data */
Radek Krejci7931b192020-06-25 17:05:03 +02001255 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001256 innode = "state";
Michal Vasko224e7772021-02-18 14:22:33 +01001257 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001258 } else if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) && (node->schema->flags & LYS_IS_OUTPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001259 innode = "output";
Michal Vasko224e7772021-02-18 14:22:33 +01001260 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001261 } else if ((int_opts & LYD_INTOPT_REPLY) && (node->schema->flags & LYS_IS_INPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001262 innode = "input";
Michal Vasko224e7772021-02-18 14:22:33 +01001263 goto unexpected_node;
Michal Vasko5b37a352020-03-06 13:38:33 +01001264 }
1265
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001266 /* obsolete data */
1267 lyd_validate_obsolete(node);
1268
Michal Vaskocc048b22020-03-27 15:52:38 +01001269 /* node's musts */
Michal Vaskoe0665742021-02-11 11:08:44 +01001270 LY_CHECK_RET(lyd_validate_must(node, int_opts));
Michal Vaskocc048b22020-03-27 15:52:38 +01001271
Michal Vasko53d97a12020-11-05 17:39:10 +01001272 /* node value was checked by plugins */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001273
Radek Krejciddace2c2021-01-08 11:30:56 +01001274 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001275 }
Michal Vaskocde73ac2019-11-14 16:10:27 +01001276
Michal Vasko14654712020-02-06 08:35:21 +01001277 /* validate schema-based restrictions */
Michal Vaskoe0665742021-02-11 11:08:44 +01001278 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 +01001279
Michal Vaskob1b5c262020-03-05 14:29:47 +01001280 LY_LIST_FOR(first, node) {
Michal Vasko14654712020-02-06 08:35:21 +01001281 /* validate all children recursively */
Michal Vaskoe0665742021-02-11 11:08:44 +01001282 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 +01001283
Michal Vaskob1b5c262020-03-05 14:29:47 +01001284 /* set default for containers */
1285 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
Radek Krejcia1c1e542020-09-29 16:06:52 +02001286 LY_LIST_FOR(lyd_child(node), next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001287 if (!(next->flags & LYD_DEFAULT)) {
1288 break;
1289 }
Michal Vaskoa3881362020-01-21 15:57:35 +01001290 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001291 if (!next) {
1292 node->flags |= LYD_DEFAULT;
1293 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001294 }
1295 }
1296
1297 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001298
Michal Vasko224e7772021-02-18 14:22:33 +01001299unexpected_node:
1300 LOGVAL(LYD_CTX(node), LY_VCODE_UNEXPNODE, innode, node->schema->name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001301 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001302 return LY_EVALID;
Michal Vasko9b368d32020-02-14 13:53:31 +01001303}
1304
Radek Krejci7931b192020-06-25 17:05:03 +02001305/**
Michal Vaskobb844672020-07-03 11:06:12 +02001306 * @brief Validate the whole data subtree.
1307 *
1308 * @param[in] root Subtree root.
Michal Vaskoe0665742021-02-11 11:08:44 +01001309 * @param[in,out] node_when Set for nodes with when conditions.
Michal Vasko32711382020-12-03 14:14:31 +01001310 * @param[in,out] node_types Set for unres node types.
1311 * @param[in,out] meta_types Set for unres metadata types.
Michal Vasko29adfbe2020-12-08 17:12:03 +01001312 * @param[in] impl_opts Implicit options, see @ref implicitoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001313 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001314 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001315 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001316static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001317lyd_validate_subtree(struct lyd_node *root, struct ly_set *node_when, struct ly_set *node_types,
1318 struct ly_set *meta_types, uint32_t impl_opts, struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001319{
1320 const struct lyd_meta *meta;
Michal Vasko56daf732020-08-10 10:57:18 +02001321 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001322
Michal Vasko56daf732020-08-10 10:57:18 +02001323 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001324 LY_LIST_FOR(node->meta, meta) {
1325 if (((struct lyext_metadata *)meta->annotation->data)->type->plugin->validate) {
1326 /* metadata type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001327 LY_CHECK_RET(ly_set_add(meta_types, (void *)meta, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001328 }
Michal Vasko0275cf62020-11-05 17:40:30 +01001329 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001330
Michal Vasko0275cf62020-11-05 17:40:30 +01001331 if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) {
1332 /* node type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001333 LY_CHECK_RET(ly_set_add(node_types, (void *)node, 1, NULL));
Michal Vasko0275cf62020-11-05 17:40:30 +01001334 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1335 /* new node validation, autodelete */
Michal Vaskoe0665742021-02-11 11:08:44 +01001336 LY_CHECK_RET(lyd_validate_new(lyd_node_child_p(node), node->schema, NULL, diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001337
Michal Vasko0275cf62020-11-05 17:40:30 +01001338 /* add nested defaults */
Michal Vaskoe0665742021-02-11 11:08:44 +01001339 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL, NULL, impl_opts, diff));
Michal Vasko0275cf62020-11-05 17:40:30 +01001340 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001341
Michal Vaskod1e53b92021-01-28 13:11:06 +01001342 if (lysc_node_when(node->schema)) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001343 /* when evaluation */
Michal Vasko32711382020-12-03 14:14:31 +01001344 LY_CHECK_RET(ly_set_add(node_when, (void *)node, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001345 }
1346
Michal Vasko56daf732020-08-10 10:57:18 +02001347 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001348 }
1349
1350 return LY_SUCCESS;
1351}
1352
Michal Vaskoe0665742021-02-11 11:08:44 +01001353LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001354lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts,
Michal Vaskoe0665742021-02-11 11:08:44 +01001355 ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_types_p, struct ly_set *meta_types_p,
Radek Krejci0f969882020-08-21 16:56:47 +02001356 struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001357{
1358 LY_ERR ret = LY_SUCCESS;
Michal Vasko73e47212020-12-03 14:20:16 +01001359 struct lyd_node *first, *next, **first2, *iter;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001360 const struct lys_module *mod;
Michal Vasko32711382020-12-03 14:14:31 +01001361 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001362 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001363
Michal Vaskoe0665742021-02-11 11:08:44 +01001364 assert(tree && ctx);
1365 assert((node_when_p && node_types_p && meta_types_p) || (!node_when_p && !node_types_p && !meta_types_p));
1366
1367 if (!node_when_p) {
1368 node_when_p = &node_when;
1369 node_types_p = &node_types;
1370 meta_types_p = &meta_types;
Michal Vasko8104fd42020-07-13 11:09:51 +02001371 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001372
Michal Vaskob1b5c262020-03-05 14:29:47 +01001373 next = *tree;
1374 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001375 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001376 mod = lyd_data_next_module(&next, &first);
1377 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001378 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001379 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001380 if (!mod) {
1381 break;
1382 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001383 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001384 /* make sure first2 changes are carried to tree */
1385 first2 = tree;
1386 } else {
1387 first2 = &first;
1388 }
1389
1390 /* validate new top-level nodes of this module, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001391 ret = lyd_validate_new(first2, NULL, mod, diff);
1392 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001393
Radek Krejci7be7b9f2021-02-24 11:46:27 +01001394 /* add all top-level defaults for this module, if going to validate subtree, do not add into unres sets
1395 * (lyd_validate_subtree() adds all the nodes in that case) */
1396 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, validate_subtree ? NULL : node_types_p,
1397 validate_subtree ? NULL : node_when_p, (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
Michal Vasko8104fd42020-07-13 11:09:51 +02001398 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001399
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001400 /* our first module node pointer may no longer be the first */
1401 while (*first2 && (*first2)->prev->next && (lyd_owner_module(*first2) == lyd_owner_module((*first2)->prev))) {
1402 *first2 = (*first2)->prev;
1403 }
1404
Michal Vaskoe0665742021-02-11 11:08:44 +01001405 if (validate_subtree) {
1406 /* process nested nodes */
1407 LY_LIST_FOR(*first2, iter) {
1408 ret = lyd_validate_subtree(iter, node_when_p, node_types_p, meta_types_p,
1409 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
1410 LY_CHECK_GOTO(ret, cleanup);
1411 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001412 }
1413
1414 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vaskoe0665742021-02-11 11:08:44 +01001415 ret = lyd_validate_unres(first2, mod, node_when_p, node_types_p, meta_types_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001416 LY_CHECK_GOTO(ret, cleanup);
1417
1418 /* perform final validation that assumes the data tree is final */
Michal Vaskobd4db892020-11-23 16:58:20 +01001419 ret = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +02001420 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001421 }
1422
Michal Vaskof03ed032020-03-04 13:31:44 +01001423cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +01001424 ly_set_erase(&node_when, NULL);
Michal Vasko32711382020-12-03 14:14:31 +01001425 ly_set_erase(&node_types, NULL);
1426 ly_set_erase(&meta_types, NULL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001427 return ret;
1428}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001429
1430API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001431lyd_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 +01001432{
Michal Vaskoe0665742021-02-11 11:08:44 +01001433 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx, LY_EINVAL);
1434 if (!ctx) {
1435 ctx = LYD_CTX(*tree);
1436 }
1437 if (diff) {
1438 *diff = NULL;
1439 }
1440
1441 return lyd_validate(tree, NULL, ctx, val_opts, 1, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001442}
1443
1444API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001445lyd_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 +01001446{
Michal Vaskoe0665742021-02-11 11:08:44 +01001447 LY_CHECK_ARG_RET(NULL, tree, *tree || module, LY_EINVAL);
1448 if (diff) {
1449 *diff = NULL;
1450 }
1451
1452 return lyd_validate(tree, module, (*tree) ? LYD_CTX(*tree) : module->ctx, val_opts, 1, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001453}
Michal Vaskofea12c62020-03-30 11:00:15 +02001454
Michal Vaskobb844672020-07-03 11:06:12 +02001455/**
1456 * @brief Find nodes for merging an operation into data tree for validation.
1457 *
1458 * @param[in] op_tree Full operation data tree.
1459 * @param[in] op_node Operation node itself.
1460 * @param[in] tree Data tree to be merged into.
1461 * @param[out] op_subtree Operation subtree to merge.
Michal Vasko2f03d222020-12-09 18:15:51 +01001462 * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL.
1463 * @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 +02001464 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001465static void
Michal Vaskobb844672020-07-03 11:06:12 +02001466lyd_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 +01001467 struct lyd_node **op_subtree, struct lyd_node **tree_sibling, struct lyd_node **tree_parent)
Michal Vaskofea12c62020-03-30 11:00:15 +02001468{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001469 const struct lyd_node *tree_iter, *op_iter;
1470 struct lyd_node *match;
Michal Vaskofea12c62020-03-30 11:00:15 +02001471 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001472
Michal Vasko2f03d222020-12-09 18:15:51 +01001473 *op_subtree = NULL;
1474 *tree_sibling = NULL;
1475 *tree_parent = NULL;
1476
Michal Vaskocb7526d2020-03-30 15:08:26 +02001477 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001478 op_depth = 0;
Michal Vasko9e685082021-01-29 14:49:09 +01001479 for (op_iter = op_node; op_iter != op_tree; op_iter = lyd_parent(op_iter)) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001480 ++op_depth;
1481 }
1482
1483 /* find where to merge op */
1484 tree_iter = tree;
1485 cur_depth = op_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001486 while (cur_depth && tree_iter) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001487 /* find op iter in tree */
1488 lyd_find_sibling_first(tree_iter, op_iter, &match);
1489 if (!match) {
1490 break;
1491 }
1492
1493 /* move tree_iter */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001494 tree_iter = lyd_child(match);
Michal Vaskofea12c62020-03-30 11:00:15 +02001495
1496 /* move depth */
1497 --cur_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001498
1499 /* find next op parent */
1500 op_iter = op_node;
1501 for (i = 0; i < cur_depth; ++i) {
Michal Vasko9e685082021-01-29 14:49:09 +01001502 op_iter = lyd_parent(op_iter);
Michal Vasko2f03d222020-12-09 18:15:51 +01001503 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001504 }
1505
Michal Vasko2f03d222020-12-09 18:15:51 +01001506 assert(op_iter);
Michal Vaskobb844672020-07-03 11:06:12 +02001507 *op_subtree = (struct lyd_node *)op_iter;
Michal Vasko2f03d222020-12-09 18:15:51 +01001508 if (!tree || tree_iter) {
1509 /* there is no tree whatsoever or this is the last found sibling */
1510 *tree_sibling = (struct lyd_node *)tree_iter;
1511 } else {
1512 /* matching parent was found but it has no children to insert next to */
1513 assert(match);
1514 *tree_parent = match;
1515 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001516}
1517
Michal Vaskoe0665742021-02-11 11:08:44 +01001518/**
1519 * @brief Validate an RPC/action request, reply, or notification.
1520 *
1521 * @param[in] op_tree Full operation data tree.
1522 * @param[in] op_node Operation node itself.
1523 * @param[in] dep_tree Tree to be used for validating references from the operation subtree.
1524 * @param[in] int_opts Internal parser options.
1525 * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation).
1526 * @param[in] node_when_p Set of nodes with when conditions, if NULL a local set is used.
1527 * @param[in] node_types_p Set of unres node types, if NULL a local set is used.
1528 * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used.
1529 * @param[out] diff Optional diff with any changes made by the validation.
1530 * @return LY_SUCCESS on success.
1531 * @return LY_ERR error on error.
1532 */
1533static LY_ERR
1534_lyd_validate_op(struct lyd_node *op_tree, struct lyd_node *op_node, const struct lyd_node *dep_tree,
1535 uint32_t int_opts, ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_types_p,
1536 struct ly_set *meta_types_p, struct lyd_node **diff)
Michal Vaskocb7526d2020-03-30 15:08:26 +02001537{
Michal Vaskoe0665742021-02-11 11:08:44 +01001538 LY_ERR rc = LY_SUCCESS;
1539 struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_parent, *child;
1540 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0};
Michal Vaskocb7526d2020-03-30 15:08:26 +02001541
Michal Vaskoe0665742021-02-11 11:08:44 +01001542 assert(op_tree && op_node);
1543 assert((node_when_p && node_types_p && meta_types_p) || (!node_when_p && !node_types_p && !meta_types_p));
1544
1545 if (!node_when_p) {
1546 node_when_p = &node_when;
1547 node_types_p = &node_types;
1548 meta_types_p = &meta_types;
1549 }
1550
1551 /* merge op_tree into dep_tree */
1552 lyd_val_op_merge_find(op_tree, op_node, dep_tree, &op_subtree, &tree_sibling, &tree_parent);
1553 op_parent = lyd_parent(op_subtree);
1554 lyd_unlink_tree(op_subtree);
1555 lyd_insert_node(tree_parent, &tree_sibling, op_subtree);
1556 if (!dep_tree) {
1557 dep_tree = tree_sibling;
1558 }
1559
1560 LOG_LOCSET(NULL, op_node, NULL, NULL);
1561
1562 if (int_opts & LYD_INTOPT_REPLY) {
1563 /* add output children defaults */
1564 rc = lyd_new_implicit_r(op_node, lyd_node_child_p(op_node), NULL, NULL, node_types_p, node_when_p,
1565 LYD_IMPLICIT_OUTPUT, diff);
1566 LY_CHECK_GOTO(rc, cleanup);
1567
1568 if (validate_subtree) {
1569 /* skip validating the operation itself, go to children directly */
1570 LY_LIST_FOR(lyd_child(op_node), child) {
1571 LY_CHECK_GOTO(rc = lyd_validate_subtree(child, node_when_p, node_types_p, meta_types_p, 0, diff), cleanup);
1572 }
1573 }
1574 } else {
1575 if (validate_subtree) {
1576 /* prevalidate whole operation subtree */
1577 LY_CHECK_GOTO(rc = lyd_validate_subtree(op_node, node_when_p, node_types_p, meta_types_p, 0, diff), cleanup);
1578 }
1579 }
1580
1581 /* finish incompletely validated terminal values/attributes and when conditions on the full tree */
1582 LY_CHECK_GOTO(rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL, node_when_p, node_types_p, meta_types_p,
1583 diff), cleanup);
1584
1585 /* perform final validation of the operation/notification */
1586 lyd_validate_obsolete(op_node);
1587 LY_CHECK_GOTO(rc = lyd_validate_must(op_node, int_opts), cleanup);
1588
1589 /* final validation of all the descendants */
1590 LY_CHECK_GOTO(rc = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, int_opts), cleanup);
1591
1592cleanup:
1593 LOG_LOCBACK(0, 1, 0, 0);
1594 /* restore operation tree */
1595 lyd_unlink_tree(op_subtree);
1596 if (op_parent) {
1597 lyd_insert_node(op_parent, NULL, op_subtree);
1598 }
1599
1600 ly_set_erase(&node_when, NULL);
1601 ly_set_erase(&node_types, NULL);
1602 ly_set_erase(&meta_types, NULL);
1603 return rc;
1604}
1605
1606API LY_ERR
1607lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *dep_tree, enum lyd_type data_type, struct lyd_node **diff)
1608{
1609 struct lyd_node *op_node;
1610 uint32_t int_opts;
1611
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001612 LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !dep_tree || !dep_tree->parent, (data_type == LYD_TYPE_RPC_YANG) ||
1613 (data_type == LYD_TYPE_NOTIF_YANG) || (data_type == LYD_TYPE_REPLY_YANG), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001614 if (diff) {
1615 *diff = NULL;
1616 }
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001617 if (data_type == LYD_TYPE_RPC_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001618 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001619 } else if (data_type == LYD_TYPE_NOTIF_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001620 int_opts = LYD_INTOPT_NOTIF;
1621 } else {
1622 int_opts = LYD_INTOPT_REPLY;
1623 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001624
1625 /* find the operation/notification */
Michal Vasko56daf732020-08-10 10:57:18 +02001626 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001627 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) &&
1628 (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001629 break;
Michal Vaskoe0665742021-02-11 11:08:44 +01001630 } else if ((int_opts & LYD_INTOPT_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001631 break;
1632 }
Michal Vasko56daf732020-08-10 10:57:18 +02001633 LYD_TREE_DFS_END(op_tree, op_node);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001634 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001635 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) {
Radek Krejci7931b192020-06-25 17:05:03 +02001636 if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001637 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001638 return LY_EINVAL;
1639 }
1640 } else {
Radek Krejci7931b192020-06-25 17:05:03 +02001641 if (op_node->schema->nodetype != LYS_NOTIF) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001642 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001643 return LY_EINVAL;
1644 }
1645 }
1646
Michal Vaskoe0665742021-02-11 11:08:44 +01001647 /* validate */
1648 return _lyd_validate_op(op_tree, op_node, dep_tree, int_opts, 1, NULL, NULL, NULL, diff);
Michal Vaskofea12c62020-03-30 11:00:15 +02001649}