blob: e12204949199c37e5e67882f2442eccee605184c [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"
Radek Krejci1b2eef82021-02-17 11:17:27 +010030#include "plugins_exts.h"
Michal Vaskofeca4fb2020-10-05 08:58:40 +020031#include "plugins_exts_metadata.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020032#include "plugins_types.h"
33#include "set.h"
34#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010035#include "tree_data.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010036#include "tree_data_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020037#include "tree_schema.h"
Michal Vasko14654712020-02-06 08:35:21 +010038#include "tree_schema_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020039#include "xpath.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010040
Michal Vaskoa6669ba2020-08-06 16:14:26 +020041LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020042lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff)
43{
44 LY_ERR ret = LY_SUCCESS;
45 struct lyd_node *new_diff = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010046 const struct lyd_node *prev_inst;
47 char *key = NULL, *value = NULL;
48 size_t buflen = 0, bufused = 0;
Michal Vasko8104fd42020-07-13 11:09:51 +020049
50 assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE));
51
Michal Vasko81bc5512020-11-13 18:05:18 +010052 if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) {
53 if (node->prev->next && (node->prev->schema == node->schema)) {
54 prev_inst = node->prev;
55 } else {
56 /* first instance */
57 prev_inst = NULL;
58 }
59
60 if (node->schema->nodetype == LYS_LIST) {
61 /* generate key meta */
62 if (prev_inst) {
63 LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup);
64 } else {
65 key = strdup("");
66 LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
67 }
68 } else {
69 /* generate value meta */
70 if (prev_inst) {
71 value = strdup(LYD_CANON_VALUE(prev_inst));
72 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
73 } else {
74 value = strdup("");
75 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
76 }
77 }
78 }
79
Michal Vasko8104fd42020-07-13 11:09:51 +020080 /* create new diff tree */
Michal Vasko81bc5512020-11-13 18:05:18 +010081 LY_CHECK_GOTO(ret = lyd_diff_add(node, op, NULL, NULL, key, value, NULL, &new_diff), cleanup);
Michal Vasko8104fd42020-07-13 11:09:51 +020082
83 /* merge into existing diff */
Michal Vaskoc0e58e82020-11-11 19:04:33 +010084 ret = lyd_diff_merge_all(diff, new_diff, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +020085
Michal Vasko81bc5512020-11-13 18:05:18 +010086cleanup:
Michal Vasko8104fd42020-07-13 11:09:51 +020087 lyd_free_tree(new_diff);
Michal Vasko81bc5512020-11-13 18:05:18 +010088 free(key);
89 free(value);
Michal Vasko8104fd42020-07-13 11:09:51 +020090 return ret;
91}
92
93/**
Michal Vaskobd4db892020-11-23 16:58:20 +010094 * @brief Evaluate all relevant "when" conditions of a node.
Michal Vaskocde73ac2019-11-14 16:10:27 +010095 *
Michal Vaskobd4db892020-11-23 16:58:20 +010096 * @param[in] tree Data tree.
97 * @param[in] node Node whose relevant when conditions will be evaluated.
98 * @param[in] schema Schema node of @p node. It may not be possible to use directly if @p node is opaque.
99 * @param[out] disabled First when that evaluated false, if any.
100 * @return LY_SUCCESS on success.
101 * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated.
102 * @return LY_ERR value on error.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100103 */
104static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100105lyd_validate_node_when(const struct lyd_node *tree, const struct lyd_node *node, const struct lysc_node *schema,
106 const struct lysc_when **disabled)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100107{
Michal Vasko8104fd42020-07-13 11:09:51 +0200108 LY_ERR ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100109 const struct lyd_node *ctx_node;
110 struct lyxp_set xp_set;
Michal Vaskobd4db892020-11-23 16:58:20 +0100111 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100112
Michal Vaskobd4db892020-11-23 16:58:20 +0100113 assert(!node->schema || (node->schema == schema));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100114
Michal Vaskobd4db892020-11-23 16:58:20 +0100115 *disabled = NULL;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100116
Michal Vaskobd4db892020-11-23 16:58:20 +0100117 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100118 const struct lysc_when *when;
119 struct lysc_when **when_list = lysc_node_when(schema);
120 LY_ARRAY_FOR(when_list, u) {
121 when = when_list[u];
Michal Vaskocde73ac2019-11-14 16:10:27 +0100122
Michal Vaskobd4db892020-11-23 16:58:20 +0100123 /* get context node */
124 if (when->context == schema) {
125 ctx_node = node;
126 } else {
127 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
Michal Vasko9e685082021-01-29 14:49:09 +0100128 ctx_node = lyd_parent(node);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100129 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100130
131 /* evaluate when */
132 memset(&xp_set, 0, sizeof xp_set);
Michal Vasko400e9672021-01-11 13:39:17 +0100133 ret = lyxp_eval(LYD_CTX(node), when->cond, schema->module, LY_PREF_SCHEMA_RESOLVED, when->prefixes,
134 ctx_node, tree, &xp_set, LYXP_SCHEMA);
Michal Vaskobd4db892020-11-23 16:58:20 +0100135 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
136
137 /* return error or LY_EINCOMPLETE for dependant unresolved when */
138 LY_CHECK_RET(ret);
139
140 if (!xp_set.val.bln) {
141 /* false when */
142 *disabled = when;
143 return LY_SUCCESS;
Michal Vasko8104fd42020-07-13 11:09:51 +0200144 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100145 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100146
147 schema = schema->parent;
148 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
149
150 return LY_SUCCESS;
151}
152
153/**
154 * @brief Evaluate when conditions of collected unres nodes.
155 *
156 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100157 * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it.
158 * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be
159 * the first top-level sibling.
Michal Vaskobd4db892020-11-23 16:58:20 +0100160 * @param[in] node_when Set with nodes with "when" conditions.
161 * @param[in,out] diff Validation diff.
162 * @return LY_SUCCESS on success.
163 * @return LY_ERR value on error.
164 */
165static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100166lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
167 struct lyd_node **diff)
Michal Vaskobd4db892020-11-23 16:58:20 +0100168{
169 LY_ERR ret;
170 uint32_t i;
171 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100172 struct lyd_node *node = NULL;
Michal Vaskobd4db892020-11-23 16:58:20 +0100173
174 if (!node_when->count) {
175 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100176 }
177
Michal Vaskobd4db892020-11-23 16:58:20 +0100178 i = node_when->count;
179 do {
180 --i;
181 node = node_when->dnodes[i];
Radek Krejciddace2c2021-01-08 11:30:56 +0100182 LOG_LOCSET(node->schema, node, NULL, NULL);
Michal Vaskobd4db892020-11-23 16:58:20 +0100183
184 /* evaluate all when expressions that affect this node's existence */
185 ret = lyd_validate_node_when(*tree, node, node->schema, &disabled);
186 if (!ret) {
187 if (disabled) {
188 /* when false */
189 if (node->flags & LYD_WHEN_TRUE) {
190 /* autodelete */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100191 lyd_del_move_root(tree, node, mod);
Michal Vaskobd4db892020-11-23 16:58:20 +0100192 if (diff) {
193 /* add into diff */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100194 ret = lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
195 LY_CHECK_GOTO(ret, error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100196 }
197 lyd_free_tree(node);
198 } else {
199 /* invalid data */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100200 LOGVAL(LYD_CTX(node), LY_VCODE_NOWHEN, disabled->cond->expr);
201 ret = LY_EVALID;
202 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100203 }
204 } else {
205 /* when true */
206 node->flags |= LYD_WHEN_TRUE;
207 }
208
209 /* remove this node from the set, its when was resolved */
210 ly_set_rm_index(node_when, i, NULL);
211 } else if (ret != LY_EINCOMPLETE) {
212 /* error */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100213 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100214 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100215
Radek Krejciddace2c2021-01-08 11:30:56 +0100216 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskobd4db892020-11-23 16:58:20 +0100217 } while (i);
218
219 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100220
221error:
Radek Krejciddace2c2021-01-08 11:30:56 +0100222 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100223 return ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100224}
225
226LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100227lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
228 struct ly_set *node_types, struct ly_set *meta_types, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100229{
230 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200231 uint32_t i;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100232
Michal Vaskob1b5c262020-03-05 14:29:47 +0100233 if (node_when) {
234 /* evaluate all when conditions */
235 uint32_t prev_count;
236 do {
237 prev_count = node_when->count;
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100238 LY_CHECK_RET(lyd_validate_unres_when(tree, mod, node_when, diff));
Radek Krejci0f969882020-08-21 16:56:47 +0200239 /* there must have been some when conditions resolved */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100240 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100241
Michal Vaskob1b5c262020-03-05 14:29:47 +0100242 /* there could have been no cyclic when dependencies, checked during compilation */
243 assert(!node_when->count);
244 }
245
246 if (node_types && node_types->count) {
247 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200248 i = node_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100249 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200250 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100251
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100252 struct lyd_node_term *node = node_types->objs[i];
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200253 struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100254
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200255 /* resolve the value of the node */
Michal Vasko9e685082021-01-29 14:49:09 +0100256 LOG_LOCSET(node->schema, &node->node, NULL, NULL);
257 ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, &node->node, *tree);
Radek Krejciddace2c2021-01-08 11:30:56 +0100258 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100259 LY_CHECK_RET(ret);
260
261 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200262 ly_set_rm_index(node_types, i, NULL);
263 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100264 }
265
Michal Vasko9f96a052020-03-10 09:41:45 +0100266 if (meta_types && meta_types->count) {
267 /* ... and metadata values */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200268 i = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100269 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200270 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100271
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100272 struct lyd_meta *meta = meta_types->objs[i];
Radek Krejci1b2eef82021-02-17 11:17:27 +0100273 struct lysc_type *type = *(struct lysc_type **)meta->annotation->substmts[ANNOTATION_SUBSTMT_TYPE].storage;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100274
Michal Vasko9f96a052020-03-10 09:41:45 +0100275 /* validate and store the value of the metadata */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100276 ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100277 LY_CHECK_RET(ret);
278
279 /* remove this attr from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200280 ly_set_rm_index(meta_types, i, NULL);
281 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100282 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100283
284 return ret;
285}
286
Michal Vaskobb844672020-07-03 11:06:12 +0200287/**
288 * @brief Validate instance duplication.
289 *
290 * @param[in] first First sibling to search in.
291 * @param[in] node Data node instance to check.
292 * @return LY_ERR value.
293 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100294static LY_ERR
295lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100296{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100297 struct lyd_node **match_p;
Radek Krejci857189e2020-09-01 13:26:36 +0200298 ly_bool fail = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100299
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100300 assert(node->flags & LYD_NEW);
301
Michal Vaskod6c18af2021-02-12 12:07:31 +0100302 /* key-less list or non-configuration leaf-list */
303 if (((node->schema->nodetype == LYS_LIST) && (node->schema->flags & LYS_KEYLESS)) ||
304 ((node->schema->nodetype == LYS_LEAFLIST) && !(node->schema->flags & LYS_CONFIG_W))) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100305 /* duplicate instances allowed */
306 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100307 }
308
Michal Vaskob1b5c262020-03-05 14:29:47 +0100309 /* find exactly the same next instance using hashes if possible */
310 if (node->parent && node->parent->children_ht) {
311 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
312 fail = 1;
313 }
314 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +0200315 for ( ; first; first = first->next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100316 if (first == node) {
317 continue;
318 }
319
320 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
321 if (first->schema == node->schema) {
322 fail = 1;
323 break;
324 }
Michal Vasko8f359bf2020-07-28 10:41:15 +0200325 } else if (!lyd_compare_single(first, node, 0)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100326 fail = 1;
327 break;
328 }
329 }
330 }
331
332 if (fail) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100333 LOGVAL(node->schema->module->ctx, LY_VCODE_DUP, node->schema->name);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100334 return LY_EVALID;
335 }
336 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100337}
338
Michal Vaskobb844672020-07-03 11:06:12 +0200339/**
340 * @brief Validate multiple case data existence with possible autodelete.
341 *
342 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100343 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200344 * @param[in] choic Choice node whose cases to check.
Michal Vasko8104fd42020-07-13 11:09:51 +0200345 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200346 * @return LY_ERR value.
347 */
Michal Vaskocde73ac2019-11-14 16:10:27 +0100348static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100349lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic,
350 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100351{
352 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
353 struct lyd_node *match, *to_del;
Radek Krejci857189e2020-09-01 13:26:36 +0200354 ly_bool found;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100355
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100356 LOG_LOCSET(&choic->node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100357
Michal Vaskob1b5c262020-03-05 14:29:47 +0100358 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
359 found = 0;
360 iter = NULL;
361 match = NULL;
362 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
363 if (match->flags & LYD_NEW) {
364 /* a new case data found, nothing more to look for */
365 found = 2;
366 break;
367 } else {
368 /* and old case data found */
369 if (found == 0) {
370 found = 1;
371 }
372 }
373 }
374
375 if (found == 1) {
376 /* there should not be 2 old cases */
377 if (old_case) {
378 /* old data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100379 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, old_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100380 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100381 return LY_EVALID;
382 }
383
384 /* remember an old existing case */
385 old_case = scase;
386 } else if (found == 2) {
387 if (new_case) {
388 /* new data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100389 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, new_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100390 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100391 return LY_EVALID;
392 }
393
394 /* remember a new existing case */
395 new_case = scase;
396 }
397 }
398
Radek Krejciddace2c2021-01-08 11:30:56 +0100399 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100400
Michal Vaskob1b5c262020-03-05 14:29:47 +0100401 if (old_case && new_case) {
402 /* auto-delete old case */
403 iter = NULL;
404 match = NULL;
405 to_del = NULL;
406 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100407 lyd_del_move_root(first, to_del, mod);
408
Michal Vasko8104fd42020-07-13 11:09:51 +0200409 /* free previous node */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100410 lyd_free_tree(to_del);
Michal Vasko8104fd42020-07-13 11:09:51 +0200411 if (diff) {
412 /* add into diff */
413 LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff));
414 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100415 to_del = match;
416 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100417 lyd_del_move_root(first, to_del, mod);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100418 lyd_free_tree(to_del);
419 }
420
421 return LY_SUCCESS;
422}
423
Michal Vaskobb844672020-07-03 11:06:12 +0200424/**
425 * @brief Check whether a schema node can have some default values (true for NP containers as well).
426 *
427 * @param[in] schema Schema node to check.
428 * @return non-zero if yes,
429 * @return 0 otherwise.
430 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100431static int
432lyd_val_has_default(const struct lysc_node *schema)
433{
434 switch (schema->nodetype) {
435 case LYS_LEAF:
436 if (((struct lysc_node_leaf *)schema)->dflt) {
437 return 1;
438 }
439 break;
440 case LYS_LEAFLIST:
441 if (((struct lysc_node_leaflist *)schema)->dflts) {
442 return 1;
443 }
444 break;
445 case LYS_CONTAINER:
446 if (!(schema->flags & LYS_PRESENCE)) {
447 return 1;
448 }
449 break;
450 default:
451 break;
452 }
453
454 return 0;
455}
456
Michal Vaskobb844672020-07-03 11:06:12 +0200457/**
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100458 * @brief Properly delete a node as part of autodelete validation tasks.
459 *
460 * @param[in,out] first First sibling, is updated if needed.
461 * @param[in] node Node instance to delete.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100462 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100463 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
464 * @param[in,out] diff Validation diff.
465 */
466static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100467lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
468 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100469{
470 struct lyd_node *iter;
471
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100472 lyd_del_move_root(first, node, mod);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100473 if (node == *next_p) {
474 *next_p = (*next_p)->next;
475 }
476 if (diff) {
477 /* add into diff */
478 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
479 /* we do not want to track NP container changes, but remember any removed children */
480 LY_LIST_FOR(lyd_child(node), iter) {
481 lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff);
482 }
483 } else {
484 lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
485 }
486 }
487 lyd_free_tree(node);
488}
489
490/**
Michal Vaskobb844672020-07-03 11:06:12 +0200491 * @brief Autodelete old instances to prevent validation errors.
492 *
493 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100494 * @param[in] node New data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100495 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200496 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
Michal Vasko8104fd42020-07-13 11:09:51 +0200497 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200498 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100499static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100500lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
501 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100502{
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100503 struct lyd_node *match, *next;
504
505 assert(node->flags & LYD_NEW);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100506
507 if (lyd_val_has_default(node->schema)) {
508 assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER));
Michal Vasko4c583e82020-07-17 12:16:14 +0200509 LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100510 if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) {
511 /* default instance found, remove it */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100512 lyd_validate_autodel_node_del(first, match, mod, next_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100513
514 /* remove only a single container/leaf default instance, if there are more, it is an error */
515 if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) {
516 break;
517 }
518 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100519 }
520 }
521}
522
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100523/**
524 * @brief Autodelete leftover default nodes of deleted cases (that have no existing explicit data).
525 *
526 * @param[in,out] first First sibling to search in, is updated if needed.
527 * @param[in] node Default data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100528 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100529 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
530 * @param[in,out] diff Validation diff.
531 */
532static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100533lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
534 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100535{
536 struct lysc_node_choice *choic;
537 struct lyd_node *iter = NULL;
538 const struct lysc_node *slast = NULL;
539
540 assert(node->flags & LYD_DEFAULT);
541
542 if (!node->schema->parent || (node->schema->parent->nodetype != LYS_CASE)) {
543 /* the default node is not a descendant of a case */
544 return;
545 }
546
547 choic = (struct lysc_node_choice *)node->schema->parent->parent;
548 assert(choic->nodetype == LYS_CHOICE);
549
550 if (choic->dflt && (choic->dflt == (struct lysc_node_case *)node->schema->parent)) {
551 /* data of a default case, keep them */
552 return;
553 }
554
555 /* try to find an explicit node of the case */
556 while ((iter = lys_getnext_data(iter, *first, &slast, node->schema->parent, NULL))) {
557 if (!(iter->flags & LYD_DEFAULT)) {
558 break;
559 }
560 }
561
562 if (!iter) {
563 /* there are only default nodes of the case meaning it does not exist and neither should any default nodes
564 * of the case, remove this one default node */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100565 lyd_validate_autodel_node_del(first, node, mod, next_p, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100566 }
567}
568
Michal Vaskob1b5c262020-03-05 14:29:47 +0100569LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +0200570lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +0200571 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100572{
573 struct lyd_node *next, *node;
574 const struct lysc_node *snode = NULL;
575
576 assert(first && (sparent || mod));
577
578 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
579 /* check case duplicites */
580 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100581 LY_CHECK_RET(lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100582 }
583 }
584
585 LY_LIST_FOR_SAFE(*first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100586 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100587 /* all top-level data from this module checked */
588 break;
589 }
590
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100591 if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) {
592 /* check only new and default nodes */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100593 continue;
594 }
595
Radek Krejciddace2c2021-01-08 11:30:56 +0100596 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100597
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100598 if (node->flags & LYD_NEW) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100599 LY_ERR ret;
600
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100601 /* remove old default(s) of the new node if it exists */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100602 lyd_validate_autodel_dup(first, node, mod, &next, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100603
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100604 /* then check new node instance duplicities */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100605 ret = lyd_validate_duplicates(*first, node);
Radek Krejciddace2c2021-01-08 11:30:56 +0100606 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0), ret);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100607
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100608 /* this node is valid */
609 node->flags &= ~LYD_NEW;
610 }
611
Michal Vasko0e6de512021-01-11 13:39:44 +0100612 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
613
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100614 if (node->flags & LYD_DEFAULT) {
615 /* remove leftover default nodes from a no-longer existing case */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100616 lyd_validate_autodel_case_dflt(first, node, mod, &next, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100617 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100618 }
619
620 return LY_SUCCESS;
621}
622
Michal Vaskobb844672020-07-03 11:06:12 +0200623/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100624 * @brief Evaluate any "when" conditions of a non-existent data node with existing parent.
625 *
626 * @param[in] first First data sibling of the non-existing node.
627 * @param[in] parent Data parent of the non-existing node.
628 * @param[in] snode Schema node of the non-existing node.
629 * @param[out] disabled First when that evaluated false, if any.
630 * @return LY_ERR value.
631 */
632static LY_ERR
633lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
634 const struct lysc_when **disabled)
635{
636 LY_ERR ret = LY_SUCCESS;
637 struct lyd_node *tree, *dummy = NULL;
638
639 /* find root */
640 if (parent) {
641 tree = (struct lyd_node *)parent;
642 while (tree->parent) {
643 tree = lyd_parent(tree);
644 }
645 tree = lyd_first_sibling(tree);
646 } else {
647 assert(!first || !first->prev->next);
648 tree = (struct lyd_node *)first;
649 }
650
651 /* create dummy opaque node */
Michal Vasko0ab974d2021-02-24 13:18:26 +0100652 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 +0100653 LY_CHECK_GOTO(ret, cleanup);
654
655 /* connect it if needed */
656 if (!parent) {
657 if (first) {
658 lyd_insert_sibling((struct lyd_node *)first, dummy, &tree);
659 } else {
660 assert(!tree);
661 tree = dummy;
662 }
663 }
664
665 /* evaluate all when */
666 ret = lyd_validate_node_when(tree, dummy, snode, disabled);
667 if (ret == LY_EINCOMPLETE) {
668 /* all other when must be resolved by now */
669 LOGINT(snode->module->ctx);
670 ret = LY_EINT;
671 goto cleanup;
672 } else if (ret) {
673 /* error */
674 goto cleanup;
675 }
676
677cleanup:
678 lyd_free_tree(dummy);
679 return ret;
680}
681
682/**
Michal Vaskobb844672020-07-03 11:06:12 +0200683 * @brief Validate mandatory node existence.
684 *
685 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100686 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200687 * @param[in] snode Schema node to validate.
688 * @return LY_ERR value.
689 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100690static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100691lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100692{
Michal Vaskobd4db892020-11-23 16:58:20 +0100693 const struct lysc_when *disabled;
694
Michal Vaskoa3881362020-01-21 15:57:35 +0100695 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100696 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100697 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100698 return LY_SUCCESS;
699 }
700 } else {
701 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100702
Michal Vaskob1b5c262020-03-05 14:29:47 +0100703 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100704 /* data instance found */
705 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100706 }
707 }
708
Michal Vaskobd4db892020-11-23 16:58:20 +0100709 disabled = NULL;
710 if (lysc_has_when(snode)) {
711 /* if there are any when conditions, they must be true for a validation error */
712 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
713 }
714
715 if (!disabled) {
716 /* node instance not found */
Michal Vasko538b8952021-02-17 11:27:26 +0100717 if (snode->nodetype == LYS_CHOICE) {
718 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND_CHOIC, snode->name);
719 } else {
720 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND, snode->name);
721 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100722 return LY_EVALID;
723 }
724
725 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100726}
727
Michal Vaskobb844672020-07-03 11:06:12 +0200728/**
729 * @brief Validate min/max-elements constraints, if any.
730 *
731 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100732 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200733 * @param[in] snode Schema node to validate.
734 * @param[in] min Minimum number of elements, 0 for no restriction.
735 * @param[in] max Max number of elements, 0 for no restriction.
736 * @return LY_ERR value.
737 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100738static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100739lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
740 uint32_t min, uint32_t max)
Michal Vaskoa3881362020-01-21 15:57:35 +0100741{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100742 uint32_t count = 0;
Michal Vasko4c583e82020-07-17 12:16:14 +0200743 struct lyd_node *iter;
Michal Vaskobd4db892020-11-23 16:58:20 +0100744 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100745 ly_bool invalid_instance = 0;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100746
Michal Vasko9b368d32020-02-14 13:53:31 +0100747 assert(min || max);
748
Michal Vasko4c583e82020-07-17 12:16:14 +0200749 LYD_LIST_FOR_INST(first, snode, iter) {
750 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100751
Michal Vasko4c583e82020-07-17 12:16:14 +0200752 if (min && (count == min)) {
753 /* satisfied */
754 min = 0;
755 if (!max) {
756 /* nothing more to check */
Michal Vasko9b368d32020-02-14 13:53:31 +0100757 break;
758 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100759 }
Michal Vasko4c583e82020-07-17 12:16:14 +0200760 if (max && (count > max)) {
761 /* not satisifed */
Radek Krejciddace2c2021-01-08 11:30:56 +0100762 LOG_LOCSET(NULL, iter, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100763 invalid_instance = 1;
Michal Vasko4c583e82020-07-17 12:16:14 +0200764 break;
765 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100766 }
767
Michal Vasko9b368d32020-02-14 13:53:31 +0100768 if (min) {
769 assert(count < min);
Michal Vaskobd4db892020-11-23 16:58:20 +0100770
771 disabled = NULL;
772 if (lysc_has_when(snode)) {
773 /* if there are any when conditions, they must be true for a validation error */
774 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
775 }
776
777 if (!disabled) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100778 LOGVAL(snode->module->ctx, LY_VCODE_NOMIN, snode->name);
779 goto failure;
Michal Vaskobd4db892020-11-23 16:58:20 +0100780 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100781 } else if (max && (count > max)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100782 LOGVAL(snode->module->ctx, LY_VCODE_NOMAX, snode->name);
783 goto failure;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100784 }
785
Michal Vaskoa3881362020-01-21 15:57:35 +0100786 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100787
788failure:
Radek Krejciddace2c2021-01-08 11:30:56 +0100789 LOG_LOCBACK(0, invalid_instance, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100790 return LY_EVALID;
Michal Vaskoa3881362020-01-21 15:57:35 +0100791}
792
Michal Vaskobb844672020-07-03 11:06:12 +0200793/**
794 * @brief Find node referenced by a list unique statement.
795 *
796 * @param[in] uniq_leaf Unique leaf to find.
797 * @param[in] list List instance to use for the search.
798 * @return Found leaf,
799 * @return NULL if no leaf found.
800 */
Michal Vasko14654712020-02-06 08:35:21 +0100801static struct lyd_node *
Michal Vaskobb844672020-07-03 11:06:12 +0200802lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list)
Michal Vasko14654712020-02-06 08:35:21 +0100803{
Michal Vasko9b368d32020-02-14 13:53:31 +0100804 struct lyd_node *node;
805 const struct lysc_node *iter;
806 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +0100807
Michal Vasko9b368d32020-02-14 13:53:31 +0100808 /* get leaf depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100809 for (iter = &uniq_leaf->node; iter && (iter != list->schema); iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200810 ++depth;
Michal Vasko14654712020-02-06 08:35:21 +0100811 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100812
Michal Vaskobb844672020-07-03 11:06:12 +0200813 node = (struct lyd_node *)list;
Michal Vasko9b368d32020-02-14 13:53:31 +0100814 while (node && depth) {
815 /* find schema node with this depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100816 for (i = depth - 1, iter = &uniq_leaf->node; i; iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200817 --i;
Michal Vasko9b368d32020-02-14 13:53:31 +0100818 }
819
820 /* find iter instance in children */
821 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
Radek Krejcia1c1e542020-09-29 16:06:52 +0200822 lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100823 --depth;
824 }
825
Michal Vasko14654712020-02-06 08:35:21 +0100826 return node;
827}
828
Michal Vaskobb844672020-07-03 11:06:12 +0200829/**
830 * @brief Callback for comparing 2 list unique leaf values.
831 *
Michal Vasko62524a92021-02-26 10:08:50 +0100832 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200833 *
Michal Vaskobb844672020-07-03 11:06:12 +0200834 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +0100835 */
Radek Krejci857189e2020-09-01 13:26:36 +0200836static ly_bool
837lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data)
Michal Vasko14654712020-02-06 08:35:21 +0100838{
839 struct ly_ctx *ctx;
840 struct lysc_node_list *slist;
841 struct lyd_node *diter, *first, *second;
842 struct lyd_value *val1, *val2;
843 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200844 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +0100845
846 assert(val1_p && val2_p);
847
848 first = *((struct lyd_node **)val1_p);
849 second = *((struct lyd_node **)val2_p);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200850 action = (LY_ARRAY_COUNT_TYPE)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +0100851
852 assert(first && (first->schema->nodetype == LYS_LIST));
853 assert(second && (second->schema == first->schema));
854
855 ctx = first->schema->module->ctx;
856
857 slist = (struct lysc_node_list *)first->schema;
858
859 /* compare unique leaves */
860 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200861 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200862 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +0100863 goto uniquecheck;
864 }
865 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200866 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +0100867uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200868 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +0100869 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200870 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +0100871 if (diter) {
872 val1 = &((struct lyd_node_term *)diter)->value;
873 } else {
874 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200875 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100876 }
877
878 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200879 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +0100880 if (diter) {
881 val2 = &((struct lyd_node_term *)diter)->value;
882 } else {
883 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200884 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100885 }
886
887 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
888 /* values differ or either one is not set */
889 break;
890 }
891 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200892 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +0100893 /* all unique leafs are the same in this set, create this nice error */
Radek Krejci635d2b82021-01-04 11:26:51 +0100894 path1 = lyd_path(first, LYD_PATH_STD, NULL, 0);
895 path2 = lyd_path(second, LYD_PATH_STD, NULL, 0);
Michal Vasko14654712020-02-06 08:35:21 +0100896
897 /* use buffer to rebuild the unique string */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100898#define UNIQ_BUF_SIZE 1024
899 uniq_str = malloc(UNIQ_BUF_SIZE);
Michal Vasko14654712020-02-06 08:35:21 +0100900 uniq_str[0] = '\0';
901 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200902 LY_ARRAY_FOR(slist->uniques[u], v) {
903 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +0100904 strcpy(ptr, " ");
905 ++ptr;
906 }
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100907 ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], &slist->node, LYSC_PATH_LOG,
Radek Krejcif13b87b2020-12-01 22:02:17 +0100908 ptr, UNIQ_BUF_SIZE - (ptr - uniq_str));
Michal Vasko14654712020-02-06 08:35:21 +0100909 if (!ptr) {
910 /* path will be incomplete, whatever */
911 break;
912 }
913
914 ptr += strlen(ptr);
915 }
Radek Krejciddace2c2021-01-08 11:30:56 +0100916 LOG_LOCSET(NULL, second, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100917 LOGVAL(ctx, LY_VCODE_NOUNIQ, uniq_str, path1, path2);
Radek Krejciddace2c2021-01-08 11:30:56 +0100918 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +0100919
920 free(path1);
921 free(path2);
922 free(uniq_str);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100923#undef UNIQ_BUF_SIZE
924
Michal Vasko14654712020-02-06 08:35:21 +0100925 return 1;
926 }
927
928 if (action > 0) {
929 /* done */
930 return 0;
931 }
932 }
933
934 return 0;
935}
936
Michal Vaskobb844672020-07-03 11:06:12 +0200937/**
938 * @brief Validate list unique leaves.
939 *
940 * @param[in] first First sibling to search in.
941 * @param[in] snode Schema node to validate.
942 * @param[in] uniques List unique arrays to validate.
943 * @return LY_ERR value.
944 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100945static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +0200946lyd_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 +0100947{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100948 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +0100949 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200950 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +0100951 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200952 uint32_t hash, i, size = 0;
Radek Krejci857189e2020-09-01 13:26:36 +0200953 ly_bool dynamic;
Michal Vasko14654712020-02-06 08:35:21 +0100954 const char *str;
955 struct hash_table **uniqtables = NULL;
956 struct lyd_value *val;
957 struct ly_ctx *ctx = snode->module->ctx;
958
959 assert(uniques);
960
961 /* get all list instances */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200962 LY_CHECK_RET(ly_set_new(&set));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100963 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100964 if (diter->schema == snode) {
Radek Krejci3d92e442020-10-12 12:48:13 +0200965 ret = ly_set_add(set, (void *)diter, 1, NULL);
Michal Vaskob0099a92020-08-31 14:55:23 +0200966 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko9b368d32020-02-14 13:53:31 +0100967 }
968 }
Michal Vasko14654712020-02-06 08:35:21 +0100969
970 if (set->count == 2) {
971 /* simple comparison */
972 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
973 /* instance duplication */
974 ret = LY_EVALID;
975 goto cleanup;
976 }
977 } else if (set->count > 2) {
978 /* use hashes for comparison */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100979 /* first, allocate the table, the size depends on number of items in the set,
980 * the following code detects number of upper zero bits in the items' counter value ... */
981 for (i = (sizeof set->count * CHAR_BIT) - 1; i > 0; i--) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200982 size = set->count << i;
983 size = size >> i;
984 if (size == set->count) {
Michal Vasko14654712020-02-06 08:35:21 +0100985 break;
986 }
987 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200988 LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100989 /* ... and then we convert it to the position of the highest non-zero bit ... */
990 i = (sizeof set->count * CHAR_BIT) - i;
991 /* ... 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 +0200992 size = 1 << i;
Michal Vasko14654712020-02-06 08:35:21 +0100993
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200994 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +0100995 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200996 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200997 for (v = 0; v < x; v++) {
998 uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(v + 1L), 0);
999 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +01001000 }
1001
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001002 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +01001003 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001004 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +01001005 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001006 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001007 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +01001008 if (diter) {
1009 val = &((struct lyd_node_term *)diter)->value;
1010 } else {
1011 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001012 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001013 }
1014 if (!val) {
1015 /* unique item not present nor has default value */
1016 break;
1017 }
1018
1019 /* get canonical string value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001020 str = val->realtype->plugin->print(val, LY_PREF_JSON, NULL, &dynamic);
Michal Vasko14654712020-02-06 08:35:21 +01001021 hash = dict_hash_multi(hash, str, strlen(str));
1022 if (dynamic) {
1023 free((char *)str);
1024 }
1025 }
1026 if (!val) {
1027 /* skip this list instance since its unique set is incomplete */
1028 continue;
1029 }
1030
1031 /* finish the hash value */
1032 hash = dict_hash_multi(hash, NULL, 0);
1033
1034 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001035 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +01001036 if (ret == LY_EEXIST) {
1037 /* instance duplication */
1038 ret = LY_EVALID;
1039 }
1040 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
1041 }
1042 }
1043 }
1044
1045cleanup:
1046 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001047 for (v = 0; v < x; v++) {
1048 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +01001049 /* failed when allocating uniquetables[j], following j are not allocated */
1050 break;
1051 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001052 lyht_free(uniqtables[v]);
Michal Vasko14654712020-02-06 08:35:21 +01001053 }
1054 free(uniqtables);
1055
1056 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +01001057}
1058
Michal Vaskobb844672020-07-03 11:06:12 +02001059/**
1060 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
1061 *
1062 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +01001063 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +02001064 * @param[in] sparent Schema parent of the nodes to check.
1065 * @param[in] mod Module of the nodes to check.
1066 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskoe0665742021-02-11 11:08:44 +01001067 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001068 * @return LY_ERR value.
1069 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001070static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001071lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001072 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 +01001073{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001074 LY_ERR ret = LY_SUCCESS;
Michal Vasko6c16cda2021-02-04 11:05:52 +01001075 const struct lysc_node *snode = NULL, *scase;
Michal Vaskoa3881362020-01-21 15:57:35 +01001076 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +02001077 struct lysc_node_leaflist *sllist;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001078 uint32_t getnext_opts;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001079
Michal Vaskoe0665742021-02-11 11:08:44 +01001080 getnext_opts = LYS_GETNEXT_WITHCHOICE | (int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001081
Michal Vaskoa3881362020-01-21 15:57:35 +01001082 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001083 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +02001084 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001085 continue;
1086 }
1087
Radek Krejciddace2c2021-01-08 11:30:56 +01001088 LOG_LOCSET(snode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001089
Michal Vaskoa3881362020-01-21 15:57:35 +01001090 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +02001091 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +01001092 slist = (struct lysc_node_list *)snode;
1093 if (slist->min || slist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001094 ret = lyd_validate_minmax(first, parent, snode, slist->min, slist->max);
1095 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001096 }
Michal Vaskod8958df2020-08-05 13:27:36 +02001097 } else if (snode->nodetype == LYS_LEAFLIST) {
1098 sllist = (struct lysc_node_leaflist *)snode;
1099 if (sllist->min || sllist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001100 ret = lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max);
1101 LY_CHECK_GOTO(ret, error);
Michal Vaskod8958df2020-08-05 13:27:36 +02001102 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001103
Michal Vaskoacd83e72020-02-04 14:12:01 +01001104 } else if (snode->flags & LYS_MAND_TRUE) {
Radek Krejcif6a11002020-08-21 13:29:07 +02001105 /* check generic mandatory existence */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001106 ret = lyd_validate_mandatory(first, parent, snode);
1107 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001108 }
1109
1110 /* check unique */
1111 if (snode->nodetype == LYS_LIST) {
1112 slist = (struct lysc_node_list *)snode;
1113 if (slist->uniques) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001114 ret = lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques);
1115 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001116 }
1117 }
1118
Michal Vasko6c16cda2021-02-04 11:05:52 +01001119 if (snode->nodetype == LYS_CHOICE) {
1120 /* find the existing case, if any */
1121 LY_LIST_FOR(lysc_node_child(snode), scase) {
1122 if (lys_getnext_data(NULL, first, NULL, scase, NULL)) {
1123 /* validate only this case */
Michal Vaskoe0665742021-02-11 11:08:44 +01001124 ret = lyd_validate_siblings_schema_r(first, parent, scase, mod, val_opts, int_opts);
Michal Vasko6c16cda2021-02-04 11:05:52 +01001125 LY_CHECK_GOTO(ret, error);
1126 break;
1127 }
1128 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001129 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001130
Radek Krejciddace2c2021-01-08 11:30:56 +01001131 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001132 }
1133
Michal Vaskoacd83e72020-02-04 14:12:01 +01001134 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001135
1136error:
Radek Krejciddace2c2021-01-08 11:30:56 +01001137 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001138 return ret;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001139}
1140
Michal Vaskobb844672020-07-03 11:06:12 +02001141/**
1142 * @brief Validate obsolete nodes, only warnings are printed.
1143 *
1144 * @param[in] node Node to check.
1145 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001146static void
1147lyd_validate_obsolete(const struct lyd_node *node)
1148{
1149 const struct lysc_node *snode;
1150
1151 snode = node->schema;
1152 do {
1153 if (snode->flags & LYS_STATUS_OBSLT) {
1154 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
1155 break;
1156 }
1157
1158 snode = snode->parent;
1159 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
1160}
1161
Michal Vaskobb844672020-07-03 11:06:12 +02001162/**
1163 * @brief Validate must conditions of a data node.
1164 *
1165 * @param[in] node Node to validate.
Michal Vaskoe0665742021-02-11 11:08:44 +01001166 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001167 * @return LY_ERR value.
1168 */
Michal Vaskocc048b22020-03-27 15:52:38 +01001169static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001170lyd_validate_must(const struct lyd_node *node, uint32_t int_opts)
Michal Vaskocc048b22020-03-27 15:52:38 +01001171{
1172 struct lyxp_set xp_set;
1173 struct lysc_must *musts;
1174 const struct lyd_node *tree;
Radek Krejci9a3823e2021-01-27 20:26:46 +01001175 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001176 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +01001177
Michal Vaskoe0665742021-02-11 11:08:44 +01001178 assert((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) != (LYD_INTOPT_RPC | LYD_INTOPT_REPLY));
1179 assert((int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) != (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY));
1180
Radek Krejci9a3823e2021-01-27 20:26:46 +01001181 if (node->schema->nodetype & (LYS_ACTION | LYS_RPC)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001182 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001183 schema = &((struct lysc_node_action *)node->schema)->input.node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001184 } else if (int_opts & LYD_INTOPT_REPLY) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001185 schema = &((struct lysc_node_action *)node->schema)->output.node;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001186 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001187 LOGINT(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +02001188 return LY_EINT;
1189 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001190 } else {
1191 schema = node->schema;
Michal Vaskocc048b22020-03-27 15:52:38 +01001192 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001193 musts = lysc_node_musts(schema);
Michal Vaskocc048b22020-03-27 15:52:38 +01001194 if (!musts) {
1195 /* no must to evaluate */
1196 return LY_SUCCESS;
1197 }
1198
1199 /* find first top-level node */
Michal Vasko9e685082021-01-29 14:49:09 +01001200 for (tree = node; tree->parent; tree = lyd_parent(tree)) {}
Michal Vaskof9221e62021-02-04 12:10:14 +01001201 tree = lyd_first_sibling(tree);
Michal Vaskocc048b22020-03-27 15:52:38 +01001202
1203 LY_ARRAY_FOR(musts, u) {
1204 memset(&xp_set, 0, sizeof xp_set);
1205
1206 /* evaluate must */
Michal Vasko400e9672021-01-11 13:39:17 +01001207 LY_CHECK_RET(lyxp_eval(LYD_CTX(node), musts[u].cond, node->schema->module, LY_PREF_SCHEMA_RESOLVED,
1208 musts[u].prefixes, node, tree, &xp_set, LYXP_SCHEMA));
Michal Vaskocc048b22020-03-27 15:52:38 +01001209
1210 /* check the result */
1211 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02001212 if (!xp_set.val.bln) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001213 LOGVAL(LYD_CTX(node), LY_VCODE_NOMUST, musts[u].cond->expr);
Michal Vaskocc048b22020-03-27 15:52:38 +01001214 return LY_EVALID;
1215 }
1216 }
1217
1218 return LY_SUCCESS;
1219}
1220
Michal Vaskoe0665742021-02-11 11:08:44 +01001221/**
1222 * @brief Perform all remaining validation tasks, the data tree must be final when calling this function.
1223 *
1224 * @param[in] first First sibling.
1225 * @param[in] parent Data parent.
1226 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
1227 * @param[in] mod Module of the siblings, NULL for nested siblings.
1228 * @param[in] val_opts Validation options (@ref datavalidationoptions).
1229 * @param[in] int_opts Internal parser options.
1230 * @return LY_ERR value.
1231 */
1232static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001233lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001234 const struct lys_module *mod, uint32_t val_opts, uint32_t int_opts)
Michal Vaskoacd83e72020-02-04 14:12:01 +01001235{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001236 const char *innode = NULL;
Radek Krejci7f769d72020-07-11 23:13:56 +02001237 struct lyd_node *next = NULL, *node;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001238
Michal Vasko14654712020-02-06 08:35:21 +01001239 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001240 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +01001241 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001242 /* all top-level data from this module checked */
1243 break;
Michal Vaskof03ed032020-03-04 13:31:44 +01001244 }
1245
Radek Krejciddace2c2021-01-08 11:30:56 +01001246 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001247
Michal Vaskoa8c61722020-03-27 16:59:32 +01001248 /* opaque data */
1249 if (!node->schema) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001250 LOGVAL(LYD_CTX(node), LYVE_DATA, "Opaque node \"%s\" found.", ((struct lyd_node_opaq *)node)->name.name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001251 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskoa8c61722020-03-27 16:59:32 +01001252 return LY_EVALID;
1253 }
1254
Michal Vaskocb7526d2020-03-30 15:08:26 +02001255 /* no state/input/output data */
Radek Krejci7931b192020-06-25 17:05:03 +02001256 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001257 innode = "state";
Michal Vasko224e7772021-02-18 14:22:33 +01001258 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001259 } else if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) && (node->schema->flags & LYS_IS_OUTPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001260 innode = "output";
Michal Vasko224e7772021-02-18 14:22:33 +01001261 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001262 } else if ((int_opts & LYD_INTOPT_REPLY) && (node->schema->flags & LYS_IS_INPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001263 innode = "input";
Michal Vasko224e7772021-02-18 14:22:33 +01001264 goto unexpected_node;
Michal Vasko5b37a352020-03-06 13:38:33 +01001265 }
1266
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001267 /* obsolete data */
1268 lyd_validate_obsolete(node);
1269
Michal Vaskocc048b22020-03-27 15:52:38 +01001270 /* node's musts */
Michal Vaskoe0665742021-02-11 11:08:44 +01001271 LY_CHECK_RET(lyd_validate_must(node, int_opts));
Michal Vaskocc048b22020-03-27 15:52:38 +01001272
Michal Vasko53d97a12020-11-05 17:39:10 +01001273 /* node value was checked by plugins */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001274
Radek Krejciddace2c2021-01-08 11:30:56 +01001275 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001276 }
Michal Vaskocde73ac2019-11-14 16:10:27 +01001277
Michal Vasko14654712020-02-06 08:35:21 +01001278 /* validate schema-based restrictions */
Michal Vaskoe0665742021-02-11 11:08:44 +01001279 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 +01001280
Michal Vaskob1b5c262020-03-05 14:29:47 +01001281 LY_LIST_FOR(first, node) {
Michal Vasko14654712020-02-06 08:35:21 +01001282 /* validate all children recursively */
Michal Vaskoe0665742021-02-11 11:08:44 +01001283 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 +01001284
Michal Vaskob1b5c262020-03-05 14:29:47 +01001285 /* set default for containers */
1286 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
Radek Krejcia1c1e542020-09-29 16:06:52 +02001287 LY_LIST_FOR(lyd_child(node), next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001288 if (!(next->flags & LYD_DEFAULT)) {
1289 break;
1290 }
Michal Vaskoa3881362020-01-21 15:57:35 +01001291 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001292 if (!next) {
1293 node->flags |= LYD_DEFAULT;
1294 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001295 }
1296 }
1297
1298 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001299
Michal Vasko224e7772021-02-18 14:22:33 +01001300unexpected_node:
1301 LOGVAL(LYD_CTX(node), LY_VCODE_UNEXPNODE, innode, node->schema->name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001302 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001303 return LY_EVALID;
Michal Vasko9b368d32020-02-14 13:53:31 +01001304}
1305
Radek Krejci7931b192020-06-25 17:05:03 +02001306/**
Michal Vaskobb844672020-07-03 11:06:12 +02001307 * @brief Validate the whole data subtree.
1308 *
1309 * @param[in] root Subtree root.
Michal Vaskoe0665742021-02-11 11:08:44 +01001310 * @param[in,out] node_when Set for nodes with when conditions.
Michal Vasko32711382020-12-03 14:14:31 +01001311 * @param[in,out] node_types Set for unres node types.
1312 * @param[in,out] meta_types Set for unres metadata types.
Michal Vasko29adfbe2020-12-08 17:12:03 +01001313 * @param[in] impl_opts Implicit options, see @ref implicitoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001314 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001315 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001316 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001317static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001318lyd_validate_subtree(struct lyd_node *root, struct ly_set *node_when, struct ly_set *node_types,
1319 struct ly_set *meta_types, uint32_t impl_opts, struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001320{
1321 const struct lyd_meta *meta;
Michal Vasko56daf732020-08-10 10:57:18 +02001322 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001323
Michal Vasko56daf732020-08-10 10:57:18 +02001324 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001325 LY_LIST_FOR(node->meta, meta) {
Radek Krejci1b2eef82021-02-17 11:17:27 +01001326 if ((*(const struct lysc_type **)meta->annotation->substmts[ANNOTATION_SUBSTMT_TYPE].storage)->plugin->validate) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001327 /* metadata type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001328 LY_CHECK_RET(ly_set_add(meta_types, (void *)meta, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001329 }
Michal Vasko0275cf62020-11-05 17:40:30 +01001330 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001331
Michal Vasko0275cf62020-11-05 17:40:30 +01001332 if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) {
1333 /* node type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001334 LY_CHECK_RET(ly_set_add(node_types, (void *)node, 1, NULL));
Michal Vasko0275cf62020-11-05 17:40:30 +01001335 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1336 /* new node validation, autodelete */
Michal Vaskoe0665742021-02-11 11:08:44 +01001337 LY_CHECK_RET(lyd_validate_new(lyd_node_child_p(node), node->schema, NULL, diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001338
Michal Vasko0275cf62020-11-05 17:40:30 +01001339 /* add nested defaults */
Michal Vaskoe0665742021-02-11 11:08:44 +01001340 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 +01001341 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001342
Michal Vaskod1e53b92021-01-28 13:11:06 +01001343 if (lysc_node_when(node->schema)) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001344 /* when evaluation */
Michal Vasko32711382020-12-03 14:14:31 +01001345 LY_CHECK_RET(ly_set_add(node_when, (void *)node, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001346 }
1347
Michal Vasko56daf732020-08-10 10:57:18 +02001348 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001349 }
1350
1351 return LY_SUCCESS;
1352}
1353
Michal Vaskoe0665742021-02-11 11:08:44 +01001354LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001355lyd_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 +01001356 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 +02001357 struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001358{
1359 LY_ERR ret = LY_SUCCESS;
Michal Vasko73e47212020-12-03 14:20:16 +01001360 struct lyd_node *first, *next, **first2, *iter;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001361 const struct lys_module *mod;
Michal Vasko32711382020-12-03 14:14:31 +01001362 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001363 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001364
Michal Vaskoe0665742021-02-11 11:08:44 +01001365 assert(tree && ctx);
1366 assert((node_when_p && node_types_p && meta_types_p) || (!node_when_p && !node_types_p && !meta_types_p));
1367
1368 if (!node_when_p) {
1369 node_when_p = &node_when;
1370 node_types_p = &node_types;
1371 meta_types_p = &meta_types;
Michal Vasko8104fd42020-07-13 11:09:51 +02001372 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001373
Michal Vaskob1b5c262020-03-05 14:29:47 +01001374 next = *tree;
1375 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001376 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001377 mod = lyd_data_next_module(&next, &first);
1378 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001379 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001380 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001381 if (!mod) {
1382 break;
1383 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001384 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001385 /* make sure first2 changes are carried to tree */
1386 first2 = tree;
1387 } else {
1388 first2 = &first;
1389 }
1390
1391 /* validate new top-level nodes of this module, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001392 ret = lyd_validate_new(first2, NULL, mod, diff);
1393 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001394
Radek Krejci7be7b9f2021-02-24 11:46:27 +01001395 /* add all top-level defaults for this module, if going to validate subtree, do not add into unres sets
1396 * (lyd_validate_subtree() adds all the nodes in that case) */
1397 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, validate_subtree ? NULL : node_types_p,
1398 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 +02001399 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001400
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001401 /* our first module node pointer may no longer be the first */
1402 while (*first2 && (*first2)->prev->next && (lyd_owner_module(*first2) == lyd_owner_module((*first2)->prev))) {
1403 *first2 = (*first2)->prev;
1404 }
1405
Michal Vaskoe0665742021-02-11 11:08:44 +01001406 if (validate_subtree) {
1407 /* process nested nodes */
1408 LY_LIST_FOR(*first2, iter) {
1409 ret = lyd_validate_subtree(iter, node_when_p, node_types_p, meta_types_p,
1410 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
1411 LY_CHECK_GOTO(ret, cleanup);
1412 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001413 }
1414
1415 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vaskoe0665742021-02-11 11:08:44 +01001416 ret = lyd_validate_unres(first2, mod, node_when_p, node_types_p, meta_types_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001417 LY_CHECK_GOTO(ret, cleanup);
1418
1419 /* perform final validation that assumes the data tree is final */
Michal Vaskobd4db892020-11-23 16:58:20 +01001420 ret = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +02001421 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001422 }
1423
Michal Vaskof03ed032020-03-04 13:31:44 +01001424cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +01001425 ly_set_erase(&node_when, NULL);
Michal Vasko32711382020-12-03 14:14:31 +01001426 ly_set_erase(&node_types, NULL);
1427 ly_set_erase(&meta_types, NULL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001428 return ret;
1429}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001430
1431API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001432lyd_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 +01001433{
Michal Vaskoe0665742021-02-11 11:08:44 +01001434 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx, LY_EINVAL);
1435 if (!ctx) {
1436 ctx = LYD_CTX(*tree);
1437 }
1438 if (diff) {
1439 *diff = NULL;
1440 }
1441
1442 return lyd_validate(tree, NULL, ctx, val_opts, 1, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001443}
1444
1445API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001446lyd_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 +01001447{
Michal Vaskoe0665742021-02-11 11:08:44 +01001448 LY_CHECK_ARG_RET(NULL, tree, *tree || module, LY_EINVAL);
1449 if (diff) {
1450 *diff = NULL;
1451 }
1452
1453 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 +01001454}
Michal Vaskofea12c62020-03-30 11:00:15 +02001455
Michal Vaskobb844672020-07-03 11:06:12 +02001456/**
1457 * @brief Find nodes for merging an operation into data tree for validation.
1458 *
1459 * @param[in] op_tree Full operation data tree.
1460 * @param[in] op_node Operation node itself.
1461 * @param[in] tree Data tree to be merged into.
1462 * @param[out] op_subtree Operation subtree to merge.
Michal Vasko2f03d222020-12-09 18:15:51 +01001463 * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL.
1464 * @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 +02001465 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001466static void
Michal Vaskobb844672020-07-03 11:06:12 +02001467lyd_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 +01001468 struct lyd_node **op_subtree, struct lyd_node **tree_sibling, struct lyd_node **tree_parent)
Michal Vaskofea12c62020-03-30 11:00:15 +02001469{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001470 const struct lyd_node *tree_iter, *op_iter;
1471 struct lyd_node *match;
Michal Vaskofea12c62020-03-30 11:00:15 +02001472 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001473
Michal Vasko2f03d222020-12-09 18:15:51 +01001474 *op_subtree = NULL;
1475 *tree_sibling = NULL;
1476 *tree_parent = NULL;
1477
Michal Vaskocb7526d2020-03-30 15:08:26 +02001478 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001479 op_depth = 0;
Michal Vasko9e685082021-01-29 14:49:09 +01001480 for (op_iter = op_node; op_iter != op_tree; op_iter = lyd_parent(op_iter)) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001481 ++op_depth;
1482 }
1483
1484 /* find where to merge op */
1485 tree_iter = tree;
1486 cur_depth = op_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001487 while (cur_depth && tree_iter) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001488 /* find op iter in tree */
1489 lyd_find_sibling_first(tree_iter, op_iter, &match);
1490 if (!match) {
1491 break;
1492 }
1493
1494 /* move tree_iter */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001495 tree_iter = lyd_child(match);
Michal Vaskofea12c62020-03-30 11:00:15 +02001496
1497 /* move depth */
1498 --cur_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001499
1500 /* find next op parent */
1501 op_iter = op_node;
1502 for (i = 0; i < cur_depth; ++i) {
Michal Vasko9e685082021-01-29 14:49:09 +01001503 op_iter = lyd_parent(op_iter);
Michal Vasko2f03d222020-12-09 18:15:51 +01001504 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001505 }
1506
Michal Vasko2f03d222020-12-09 18:15:51 +01001507 assert(op_iter);
Michal Vaskobb844672020-07-03 11:06:12 +02001508 *op_subtree = (struct lyd_node *)op_iter;
Michal Vasko2f03d222020-12-09 18:15:51 +01001509 if (!tree || tree_iter) {
1510 /* there is no tree whatsoever or this is the last found sibling */
1511 *tree_sibling = (struct lyd_node *)tree_iter;
1512 } else {
1513 /* matching parent was found but it has no children to insert next to */
1514 assert(match);
1515 *tree_parent = match;
1516 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001517}
1518
Michal Vaskoe0665742021-02-11 11:08:44 +01001519/**
1520 * @brief Validate an RPC/action request, reply, or notification.
1521 *
1522 * @param[in] op_tree Full operation data tree.
1523 * @param[in] op_node Operation node itself.
1524 * @param[in] dep_tree Tree to be used for validating references from the operation subtree.
1525 * @param[in] int_opts Internal parser options.
1526 * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation).
1527 * @param[in] node_when_p Set of nodes with when conditions, if NULL a local set is used.
1528 * @param[in] node_types_p Set of unres node types, if NULL a local set is used.
1529 * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used.
1530 * @param[out] diff Optional diff with any changes made by the validation.
1531 * @return LY_SUCCESS on success.
1532 * @return LY_ERR error on error.
1533 */
1534static LY_ERR
1535_lyd_validate_op(struct lyd_node *op_tree, struct lyd_node *op_node, const struct lyd_node *dep_tree,
1536 uint32_t int_opts, ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_types_p,
1537 struct ly_set *meta_types_p, struct lyd_node **diff)
Michal Vaskocb7526d2020-03-30 15:08:26 +02001538{
Michal Vaskoe0665742021-02-11 11:08:44 +01001539 LY_ERR rc = LY_SUCCESS;
1540 struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_parent, *child;
1541 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0};
Michal Vaskocb7526d2020-03-30 15:08:26 +02001542
Michal Vaskoe0665742021-02-11 11:08:44 +01001543 assert(op_tree && op_node);
1544 assert((node_when_p && node_types_p && meta_types_p) || (!node_when_p && !node_types_p && !meta_types_p));
1545
1546 if (!node_when_p) {
1547 node_when_p = &node_when;
1548 node_types_p = &node_types;
1549 meta_types_p = &meta_types;
1550 }
1551
1552 /* merge op_tree into dep_tree */
1553 lyd_val_op_merge_find(op_tree, op_node, dep_tree, &op_subtree, &tree_sibling, &tree_parent);
1554 op_parent = lyd_parent(op_subtree);
1555 lyd_unlink_tree(op_subtree);
1556 lyd_insert_node(tree_parent, &tree_sibling, op_subtree);
1557 if (!dep_tree) {
1558 dep_tree = tree_sibling;
1559 }
1560
1561 LOG_LOCSET(NULL, op_node, NULL, NULL);
1562
1563 if (int_opts & LYD_INTOPT_REPLY) {
1564 /* add output children defaults */
1565 rc = lyd_new_implicit_r(op_node, lyd_node_child_p(op_node), NULL, NULL, node_types_p, node_when_p,
1566 LYD_IMPLICIT_OUTPUT, diff);
1567 LY_CHECK_GOTO(rc, cleanup);
1568
1569 if (validate_subtree) {
1570 /* skip validating the operation itself, go to children directly */
1571 LY_LIST_FOR(lyd_child(op_node), child) {
1572 LY_CHECK_GOTO(rc = lyd_validate_subtree(child, node_when_p, node_types_p, meta_types_p, 0, diff), cleanup);
1573 }
1574 }
1575 } else {
1576 if (validate_subtree) {
1577 /* prevalidate whole operation subtree */
1578 LY_CHECK_GOTO(rc = lyd_validate_subtree(op_node, node_when_p, node_types_p, meta_types_p, 0, diff), cleanup);
1579 }
1580 }
1581
1582 /* finish incompletely validated terminal values/attributes and when conditions on the full tree */
1583 LY_CHECK_GOTO(rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL, node_when_p, node_types_p, meta_types_p,
1584 diff), cleanup);
1585
1586 /* perform final validation of the operation/notification */
1587 lyd_validate_obsolete(op_node);
1588 LY_CHECK_GOTO(rc = lyd_validate_must(op_node, int_opts), cleanup);
1589
1590 /* final validation of all the descendants */
1591 LY_CHECK_GOTO(rc = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, int_opts), cleanup);
1592
1593cleanup:
1594 LOG_LOCBACK(0, 1, 0, 0);
1595 /* restore operation tree */
1596 lyd_unlink_tree(op_subtree);
1597 if (op_parent) {
1598 lyd_insert_node(op_parent, NULL, op_subtree);
1599 }
1600
1601 ly_set_erase(&node_when, NULL);
1602 ly_set_erase(&node_types, NULL);
1603 ly_set_erase(&meta_types, NULL);
1604 return rc;
1605}
1606
1607API LY_ERR
1608lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *dep_tree, enum lyd_type data_type, struct lyd_node **diff)
1609{
1610 struct lyd_node *op_node;
1611 uint32_t int_opts;
1612
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001613 LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !dep_tree || !dep_tree->parent, (data_type == LYD_TYPE_RPC_YANG) ||
1614 (data_type == LYD_TYPE_NOTIF_YANG) || (data_type == LYD_TYPE_REPLY_YANG), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001615 if (diff) {
1616 *diff = NULL;
1617 }
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001618 if (data_type == LYD_TYPE_RPC_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001619 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001620 } else if (data_type == LYD_TYPE_NOTIF_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001621 int_opts = LYD_INTOPT_NOTIF;
1622 } else {
1623 int_opts = LYD_INTOPT_REPLY;
1624 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001625
1626 /* find the operation/notification */
Michal Vasko56daf732020-08-10 10:57:18 +02001627 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001628 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) &&
1629 (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001630 break;
Michal Vaskoe0665742021-02-11 11:08:44 +01001631 } else if ((int_opts & LYD_INTOPT_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001632 break;
1633 }
Michal Vasko56daf732020-08-10 10:57:18 +02001634 LYD_TREE_DFS_END(op_tree, op_node);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001635 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001636 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) {
Radek Krejci7931b192020-06-25 17:05:03 +02001637 if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001638 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001639 return LY_EINVAL;
1640 }
1641 } else {
Radek Krejci7931b192020-06-25 17:05:03 +02001642 if (op_node->schema->nodetype != LYS_NOTIF) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001643 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001644 return LY_EINVAL;
1645 }
1646 }
1647
Michal Vaskoe0665742021-02-11 11:08:44 +01001648 /* validate */
1649 return _lyd_validate_op(op_tree, op_node, dep_tree, int_opts, 1, NULL, NULL, NULL, diff);
Michal Vaskofea12c62020-03-30 11:00:15 +02001650}