blob: 7065cd0879d5224c29968c2acfc38132b10fc08d [file] [log] [blame]
Michal Vaskocde73ac2019-11-14 16:10:27 +01001/**
2 * @file validation.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief Validation
5 *
Michal Vasko906bafa2022-04-22 12:28:55 +02006 * Copyright (c) 2019 - 2022 CESNET, z.s.p.o.
Michal Vaskocde73ac2019-11-14 16:10:27 +01007 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Christian Hopps32874e12021-05-01 09:43:54 -040014#define _GNU_SOURCE /* asprintf, strdup */
Michal Vasko81bc5512020-11-13 18:05:18 +010015
Michal Vaskofbed4ea2020-07-08 10:43:30 +020016#include "validation.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010017
18#include <assert.h>
Radek Krejci77114102021-03-10 15:21:57 +010019#include <limits.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include <stdint.h>
Michal Vasko52927e22020-03-16 17:26:14 +010021#include <stdio.h>
22#include <stdlib.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020023#include <string.h>
Michal Vaskocde73ac2019-11-14 16:10:27 +010024
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include "common.h"
Michal Vasko69730152020-10-09 16:30:07 +020026#include "compat.h"
Michal Vasko8104fd42020-07-13 11:09:51 +020027#include "diff.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020028#include "hash_table.h"
29#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020030#include "parser_data.h"
Radek Krejci77114102021-03-10 15:21:57 +010031#include "parser_internal.h"
Radek Krejci1b2eef82021-02-17 11:17:27 +010032#include "plugins_exts.h"
Radek Krejcif1ca0ac2021-04-12 16:00:06 +020033#include "plugins_exts/metadata.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020034#include "plugins_types.h"
35#include "set.h"
36#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010037#include "tree_data.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010038#include "tree_data_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020039#include "tree_schema.h"
Michal Vasko14654712020-02-06 08:35:21 +010040#include "tree_schema_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020041#include "xpath.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010042
Michal Vaskoa6669ba2020-08-06 16:14:26 +020043LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020044lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff)
45{
46 LY_ERR ret = LY_SUCCESS;
47 struct lyd_node *new_diff = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010048 const struct lyd_node *prev_inst;
Michal Vaskoe78faec2021-04-08 17:24:43 +020049 char *key = NULL, *value = NULL, *position = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010050 size_t buflen = 0, bufused = 0;
Michal Vaskoe78faec2021-04-08 17:24:43 +020051 uint32_t pos;
Michal Vasko8104fd42020-07-13 11:09:51 +020052
53 assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE));
54
Michal Vasko81bc5512020-11-13 18:05:18 +010055 if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +020056 if (lysc_is_dup_inst_list(node->schema)) {
57 pos = lyd_list_pos(node);
Michal Vasko81bc5512020-11-13 18:05:18 +010058
Michal Vaskoe78faec2021-04-08 17:24:43 +020059 /* generate position meta */
60 if (pos > 1) {
61 if (asprintf(&position, "%" PRIu32, pos - 1) == -1) {
62 LOGMEM(LYD_CTX(node));
63 ret = LY_EMEM;
64 goto cleanup;
65 }
Michal Vasko81bc5512020-11-13 18:05:18 +010066 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020067 position = strdup("");
68 LY_CHECK_ERR_GOTO(!position, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
Michal Vasko81bc5512020-11-13 18:05:18 +010069 }
70 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020071 if (node->prev->next && (node->prev->schema == node->schema)) {
72 prev_inst = node->prev;
Michal Vasko81bc5512020-11-13 18:05:18 +010073 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020074 /* first instance */
75 prev_inst = NULL;
76 }
77
78 if (node->schema->nodetype == LYS_LIST) {
79 /* generate key meta */
80 if (prev_inst) {
81 LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup);
82 } else {
83 key = strdup("");
84 LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
85 }
86 } else {
87 /* generate value meta */
88 if (prev_inst) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020089 value = strdup(lyd_get_value(prev_inst));
Michal Vaskoe78faec2021-04-08 17:24:43 +020090 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
91 } else {
92 value = strdup("");
93 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
94 }
Michal Vasko81bc5512020-11-13 18:05:18 +010095 }
96 }
97 }
98
Michal Vasko8104fd42020-07-13 11:09:51 +020099 /* create new diff tree */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200100 LY_CHECK_GOTO(ret = lyd_diff_add(node, op, NULL, NULL, key, value, position, NULL, NULL, &new_diff), cleanup);
Michal Vasko8104fd42020-07-13 11:09:51 +0200101
102 /* merge into existing diff */
Michal Vaskoc0e58e82020-11-11 19:04:33 +0100103 ret = lyd_diff_merge_all(diff, new_diff, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +0200104
Michal Vasko81bc5512020-11-13 18:05:18 +0100105cleanup:
Michal Vasko8104fd42020-07-13 11:09:51 +0200106 lyd_free_tree(new_diff);
Michal Vasko81bc5512020-11-13 18:05:18 +0100107 free(key);
108 free(value);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200109 free(position);
Michal Vasko8104fd42020-07-13 11:09:51 +0200110 return ret;
111}
112
113/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100114 * @brief Evaluate all relevant "when" conditions of a node.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100115 *
Michal Vaskobd4db892020-11-23 16:58:20 +0100116 * @param[in] tree Data tree.
117 * @param[in] node Node whose relevant when conditions will be evaluated.
118 * @param[in] schema Schema node of @p node. It may not be possible to use directly if @p node is opaque.
Michal Vasko976ec432021-12-06 15:42:22 +0100119 * @param[in] xpath_options Additional XPath options to use.
Michal Vaskobd4db892020-11-23 16:58:20 +0100120 * @param[out] disabled First when that evaluated false, if any.
121 * @return LY_SUCCESS on success.
122 * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated.
123 * @return LY_ERR value on error.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100124 */
125static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100126lyd_validate_node_when(const struct lyd_node *tree, const struct lyd_node *node, const struct lysc_node *schema,
Michal Vasko976ec432021-12-06 15:42:22 +0100127 uint32_t xpath_options, const struct lysc_when **disabled)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100128{
Michal Vasko8104fd42020-07-13 11:09:51 +0200129 LY_ERR ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100130 const struct lyd_node *ctx_node;
131 struct lyxp_set xp_set;
Michal Vaskobd4db892020-11-23 16:58:20 +0100132 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100133
Michal Vaskobd4db892020-11-23 16:58:20 +0100134 assert(!node->schema || (node->schema == schema));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100135
Michal Vaskobd4db892020-11-23 16:58:20 +0100136 *disabled = NULL;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100137
Michal Vaskobd4db892020-11-23 16:58:20 +0100138 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100139 const struct lysc_when *when;
140 struct lysc_when **when_list = lysc_node_when(schema);
Michal Vasko26bbb272022-08-02 14:54:33 +0200141
Radek Krejci9a3823e2021-01-27 20:26:46 +0100142 LY_ARRAY_FOR(when_list, u) {
143 when = when_list[u];
Michal Vaskocde73ac2019-11-14 16:10:27 +0100144
Michal Vaskobd4db892020-11-23 16:58:20 +0100145 /* get context node */
146 if (when->context == schema) {
147 ctx_node = node;
148 } else {
149 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
Michal Vasko9e685082021-01-29 14:49:09 +0100150 ctx_node = lyd_parent(node);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100151 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100152
153 /* evaluate when */
154 memset(&xp_set, 0, sizeof xp_set);
Radek Krejci8df109d2021-04-23 12:19:08 +0200155 ret = lyxp_eval(LYD_CTX(node), when->cond, schema->module, LY_VALUE_SCHEMA_RESOLVED, when->prefixes,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200156 ctx_node, ctx_node, tree, NULL, &xp_set, LYXP_SCHEMA | xpath_options);
Michal Vaskobd4db892020-11-23 16:58:20 +0100157 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
158
159 /* return error or LY_EINCOMPLETE for dependant unresolved when */
160 LY_CHECK_RET(ret);
161
162 if (!xp_set.val.bln) {
163 /* false when */
164 *disabled = when;
165 return LY_SUCCESS;
Michal Vasko8104fd42020-07-13 11:09:51 +0200166 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100167 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100168
169 schema = schema->parent;
170 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
171
172 return LY_SUCCESS;
173}
174
175/**
176 * @brief Evaluate when conditions of collected unres nodes.
177 *
178 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100179 * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it.
180 * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be
181 * the first top-level sibling.
Michal Vaskobd4db892020-11-23 16:58:20 +0100182 * @param[in] node_when Set with nodes with "when" conditions.
Michal Vasko976ec432021-12-06 15:42:22 +0100183 * @param[in] xpath_options Additional XPath options to use.
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200184 * @param[in,out] node_types Set with nodes with unresolved types, remove any with false "when" parents.
Michal Vaskobd4db892020-11-23 16:58:20 +0100185 * @param[in,out] diff Validation diff.
186 * @return LY_SUCCESS on success.
187 * @return LY_ERR value on error.
188 */
189static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100190lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
Michal Vasko976ec432021-12-06 15:42:22 +0100191 uint32_t xpath_options, struct ly_set *node_types, struct lyd_node **diff)
Michal Vaskobd4db892020-11-23 16:58:20 +0100192{
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200193 LY_ERR rc, r;
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200194 uint32_t i, idx;
Michal Vaskobd4db892020-11-23 16:58:20 +0100195 const struct lysc_when *disabled;
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200196 struct lyd_node *node = NULL, *elem;
Michal Vaskobd4db892020-11-23 16:58:20 +0100197
198 if (!node_when->count) {
199 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100200 }
201
Michal Vaskobd4db892020-11-23 16:58:20 +0100202 i = node_when->count;
203 do {
204 --i;
205 node = node_when->dnodes[i];
Radek Krejciddace2c2021-01-08 11:30:56 +0100206 LOG_LOCSET(node->schema, node, NULL, NULL);
Michal Vaskobd4db892020-11-23 16:58:20 +0100207
208 /* evaluate all when expressions that affect this node's existence */
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200209 r = lyd_validate_node_when(*tree, node, node->schema, xpath_options, &disabled);
210 if (!r) {
Michal Vaskobd4db892020-11-23 16:58:20 +0100211 if (disabled) {
212 /* when false */
213 if (node->flags & LYD_WHEN_TRUE) {
214 /* autodelete */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100215 lyd_del_move_root(tree, node, mod);
Michal Vaskobd4db892020-11-23 16:58:20 +0100216 if (diff) {
217 /* add into diff */
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200218 LY_CHECK_GOTO(rc = lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff), error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100219 }
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200220
221 /* remove from node types set, if present */
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200222 if (node_types && node_types->count) {
Michal Vasko36ce6b22021-07-26 09:19:21 +0200223 LYD_TREE_DFS_BEGIN(node, elem) {
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200224 /* only term nodes with a validation callback can be in node_types */
225 if ((elem->schema->nodetype & LYD_NODE_TERM) &&
226 ((struct lysc_node_leaf *)elem->schema)->type->plugin->validate &&
227 ly_set_contains(node_types, elem, &idx)) {
228 LY_CHECK_GOTO(rc = ly_set_rm_index(node_types, idx, NULL), error);
Michal Vasko36ce6b22021-07-26 09:19:21 +0200229 }
230 LYD_TREE_DFS_END(node, elem);
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200231 }
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200232 }
233
234 /* free */
Michal Vaskobd4db892020-11-23 16:58:20 +0100235 lyd_free_tree(node);
236 } else {
237 /* invalid data */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100238 LOGVAL(LYD_CTX(node), LY_VCODE_NOWHEN, disabled->cond->expr);
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200239 rc = LY_EVALID;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100240 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100241 }
242 } else {
243 /* when true */
244 node->flags |= LYD_WHEN_TRUE;
245 }
246
Michal Vasko413af592021-12-13 11:50:51 +0100247 /* remove this node from the set keeping the order, its when was resolved */
248 ly_set_rm_index_ordered(node_when, i, NULL);
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200249 } else if (r != LY_EINCOMPLETE) {
Michal Vaskobd4db892020-11-23 16:58:20 +0100250 /* error */
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200251 rc = r;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100252 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100253 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100254
Radek Krejciddace2c2021-01-08 11:30:56 +0100255 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskobd4db892020-11-23 16:58:20 +0100256 } while (i);
257
258 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100259
260error:
Radek Krejciddace2c2021-01-08 11:30:56 +0100261 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200262 return rc;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100263}
264
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200265LY_ERR
Michal Vaskofbbea932022-06-07 11:00:55 +0200266lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, enum lyd_type data_type, struct ly_set *node_when,
Michal Vasko135719f2022-08-25 12:18:17 +0200267 uint32_t when_xp_opts, struct ly_set *node_types, struct ly_set *meta_types, struct ly_set *ext_node,
268 struct ly_set *ext_val, uint32_t val_opts, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100269{
270 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200271 uint32_t i;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100272
Michal Vaskoddd76592022-01-17 13:34:48 +0100273 if (ext_val && ext_val->count) {
274 /* first validate parsed extension data */
275 i = ext_val->count;
276 do {
277 --i;
278
279 struct lyd_ctx_ext_val *ext_v = ext_val->objs[i];
280
281 /* validate extension data */
Michal Vaskofbbea932022-06-07 11:00:55 +0200282 ret = ext_v->ext->def->plugin->validate(ext_v->ext, ext_v->sibling, *tree, data_type, val_opts, diff);
Michal Vaskoddd76592022-01-17 13:34:48 +0100283 LY_CHECK_RET(ret);
284
285 /* remove this item from the set */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200286 ly_set_rm_index(ext_val, i, free);
Michal Vaskoddd76592022-01-17 13:34:48 +0100287 } while (i);
288 }
289
Michal Vasko135719f2022-08-25 12:18:17 +0200290 if (ext_node && ext_node->count) {
291 /* validate data nodes with extension instances */
292 i = ext_node->count;
293 do {
294 --i;
295
296 struct lyd_ctx_ext_node *ext_n = ext_node->objs[i];
297
298 /* validate the node */
Michal Vaskoeba23112022-08-26 08:35:41 +0200299 ret = ext_n->ext->def->plugin->node(ext_n->ext, ext_n->node, val_opts);
Michal Vasko135719f2022-08-25 12:18:17 +0200300 LY_CHECK_RET(ret);
301
302 /* remove this item from the set */
303 ly_set_rm_index(ext_node, i, free);
304 } while (i);
305 }
306
Michal Vaskob1b5c262020-03-05 14:29:47 +0100307 if (node_when) {
308 /* evaluate all when conditions */
309 uint32_t prev_count;
Michal Vasko26bbb272022-08-02 14:54:33 +0200310
Michal Vaskob1b5c262020-03-05 14:29:47 +0100311 do {
312 prev_count = node_when->count;
Michal Vasko976ec432021-12-06 15:42:22 +0100313 LY_CHECK_RET(lyd_validate_unres_when(tree, mod, node_when, when_xp_opts, node_types, diff));
Radek Krejci0f969882020-08-21 16:56:47 +0200314 /* there must have been some when conditions resolved */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100315 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100316
Michal Vaskob1b5c262020-03-05 14:29:47 +0100317 /* there could have been no cyclic when dependencies, checked during compilation */
318 assert(!node_when->count);
319 }
320
321 if (node_types && node_types->count) {
322 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200323 i = node_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100324 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200325 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100326
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100327 struct lyd_node_term *node = node_types->objs[i];
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200328 struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100329
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200330 /* resolve the value of the node */
Michal Vaskoe0608fa2022-10-25 15:01:24 +0200331 LOG_LOCSET(NULL, &node->node, NULL, NULL);
Michal Vasko9e685082021-01-29 14:49:09 +0100332 ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, &node->node, *tree);
Michal Vaskoe0608fa2022-10-25 15:01:24 +0200333 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100334 LY_CHECK_RET(ret);
335
336 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200337 ly_set_rm_index(node_types, i, NULL);
338 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100339 }
340
Michal Vasko9f96a052020-03-10 09:41:45 +0100341 if (meta_types && meta_types->count) {
342 /* ... and metadata values */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200343 i = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100344 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200345 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100346
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100347 struct lyd_meta *meta = meta_types->objs[i];
Michal Vasko193dacd2022-10-13 08:43:05 +0200348 struct lysc_type *type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100349
Michal Vasko9f96a052020-03-10 09:41:45 +0100350 /* validate and store the value of the metadata */
Michal Vaskofbd037c2022-11-08 10:34:20 +0100351 lyplg_ext_get_storage(meta->annotation, LY_STMT_TYPE, sizeof type, (const void **)&type);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100352 ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100353 LY_CHECK_RET(ret);
354
355 /* remove this attr from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200356 ly_set_rm_index(meta_types, i, NULL);
357 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100358 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100359
360 return ret;
361}
362
Michal Vaskobb844672020-07-03 11:06:12 +0200363/**
364 * @brief Validate instance duplication.
365 *
366 * @param[in] first First sibling to search in.
367 * @param[in] node Data node instance to check.
368 * @return LY_ERR value.
369 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100370static LY_ERR
371lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100372{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100373 struct lyd_node **match_p;
Radek Krejci857189e2020-09-01 13:26:36 +0200374 ly_bool fail = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100375
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100376 assert(node->flags & LYD_NEW);
377
Michal Vaskod6c18af2021-02-12 12:07:31 +0100378 /* key-less list or non-configuration leaf-list */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200379 if (lysc_is_dup_inst_list(node->schema)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100380 /* duplicate instances allowed */
381 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100382 }
383
Michal Vaskob1b5c262020-03-05 14:29:47 +0100384 /* find exactly the same next instance using hashes if possible */
385 if (node->parent && node->parent->children_ht) {
386 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
387 fail = 1;
388 }
389 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +0200390 for ( ; first; first = first->next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100391 if (first == node) {
392 continue;
393 }
394
395 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
396 if (first->schema == node->schema) {
397 fail = 1;
398 break;
399 }
Michal Vasko8f359bf2020-07-28 10:41:15 +0200400 } else if (!lyd_compare_single(first, node, 0)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100401 fail = 1;
402 break;
403 }
404 }
405 }
406
407 if (fail) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100408 LOGVAL(node->schema->module->ctx, LY_VCODE_DUP, node->schema->name);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100409 return LY_EVALID;
410 }
411 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100412}
413
Michal Vaskobb844672020-07-03 11:06:12 +0200414/**
415 * @brief Validate multiple case data existence with possible autodelete.
416 *
417 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100418 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200419 * @param[in] choic Choice node whose cases to check.
Michal Vasko8104fd42020-07-13 11:09:51 +0200420 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200421 * @return LY_ERR value.
422 */
Michal Vaskocde73ac2019-11-14 16:10:27 +0100423static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100424lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic,
425 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100426{
427 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
428 struct lyd_node *match, *to_del;
Radek Krejci857189e2020-09-01 13:26:36 +0200429 ly_bool found;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100430
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100431 LOG_LOCSET(&choic->node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100432
Michal Vaskob1b5c262020-03-05 14:29:47 +0100433 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
434 found = 0;
435 iter = NULL;
436 match = NULL;
437 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
438 if (match->flags & LYD_NEW) {
439 /* a new case data found, nothing more to look for */
440 found = 2;
441 break;
442 } else {
443 /* and old case data found */
444 if (found == 0) {
445 found = 1;
446 }
447 }
448 }
449
450 if (found == 1) {
451 /* there should not be 2 old cases */
452 if (old_case) {
453 /* old data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100454 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, old_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100455 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100456 return LY_EVALID;
457 }
458
459 /* remember an old existing case */
460 old_case = scase;
461 } else if (found == 2) {
462 if (new_case) {
463 /* new data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100464 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, new_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100465 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100466 return LY_EVALID;
467 }
468
469 /* remember a new existing case */
470 new_case = scase;
471 }
472 }
473
Radek Krejciddace2c2021-01-08 11:30:56 +0100474 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100475
Michal Vaskob1b5c262020-03-05 14:29:47 +0100476 if (old_case && new_case) {
477 /* auto-delete old case */
478 iter = NULL;
479 match = NULL;
480 to_del = NULL;
481 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100482 lyd_del_move_root(first, to_del, mod);
483
Michal Vasko8104fd42020-07-13 11:09:51 +0200484 /* free previous node */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100485 lyd_free_tree(to_del);
Michal Vasko8104fd42020-07-13 11:09:51 +0200486 if (diff) {
487 /* add into diff */
488 LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff));
489 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100490 to_del = match;
491 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100492 lyd_del_move_root(first, to_del, mod);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100493 lyd_free_tree(to_del);
494 }
495
496 return LY_SUCCESS;
497}
498
Michal Vaskobb844672020-07-03 11:06:12 +0200499/**
500 * @brief Check whether a schema node can have some default values (true for NP containers as well).
501 *
502 * @param[in] schema Schema node to check.
503 * @return non-zero if yes,
504 * @return 0 otherwise.
505 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100506static int
507lyd_val_has_default(const struct lysc_node *schema)
508{
509 switch (schema->nodetype) {
510 case LYS_LEAF:
511 if (((struct lysc_node_leaf *)schema)->dflt) {
512 return 1;
513 }
514 break;
515 case LYS_LEAFLIST:
516 if (((struct lysc_node_leaflist *)schema)->dflts) {
517 return 1;
518 }
519 break;
520 case LYS_CONTAINER:
521 if (!(schema->flags & LYS_PRESENCE)) {
522 return 1;
523 }
524 break;
525 default:
526 break;
527 }
528
529 return 0;
530}
531
Michal Vaskobb844672020-07-03 11:06:12 +0200532/**
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100533 * @brief Properly delete a node as part of autodelete validation tasks.
534 *
535 * @param[in,out] first First sibling, is updated if needed.
536 * @param[in] node Node instance to delete.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100537 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100538 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
539 * @param[in,out] diff Validation diff.
540 */
541static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100542lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
543 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100544{
545 struct lyd_node *iter;
546
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100547 lyd_del_move_root(first, node, mod);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100548 if (node == *next_p) {
549 *next_p = (*next_p)->next;
550 }
551 if (diff) {
552 /* add into diff */
553 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
554 /* we do not want to track NP container changes, but remember any removed children */
555 LY_LIST_FOR(lyd_child(node), iter) {
556 lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff);
557 }
558 } else {
559 lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
560 }
561 }
562 lyd_free_tree(node);
563}
564
565/**
Michal Vaskobb844672020-07-03 11:06:12 +0200566 * @brief Autodelete old instances to prevent validation errors.
567 *
568 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100569 * @param[in] node New data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100570 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200571 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
Michal Vasko8104fd42020-07-13 11:09:51 +0200572 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200573 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100574static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100575lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
576 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100577{
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100578 struct lyd_node *match, *next;
579
580 assert(node->flags & LYD_NEW);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100581
582 if (lyd_val_has_default(node->schema)) {
583 assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER));
Michal Vasko4c583e82020-07-17 12:16:14 +0200584 LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100585 if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) {
586 /* default instance found, remove it */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100587 lyd_validate_autodel_node_del(first, match, mod, next_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100588
589 /* remove only a single container/leaf default instance, if there are more, it is an error */
590 if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) {
591 break;
592 }
593 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100594 }
595 }
596}
597
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100598/**
599 * @brief Autodelete leftover default nodes of deleted cases (that have no existing explicit data).
600 *
601 * @param[in,out] first First sibling to search in, is updated if needed.
602 * @param[in] node Default data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100603 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100604 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
605 * @param[in,out] diff Validation diff.
606 */
607static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100608lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
609 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100610{
611 struct lysc_node_choice *choic;
612 struct lyd_node *iter = NULL;
613 const struct lysc_node *slast = NULL;
614
615 assert(node->flags & LYD_DEFAULT);
616
617 if (!node->schema->parent || (node->schema->parent->nodetype != LYS_CASE)) {
618 /* the default node is not a descendant of a case */
619 return;
620 }
621
622 choic = (struct lysc_node_choice *)node->schema->parent->parent;
623 assert(choic->nodetype == LYS_CHOICE);
624
625 if (choic->dflt && (choic->dflt == (struct lysc_node_case *)node->schema->parent)) {
626 /* data of a default case, keep them */
627 return;
628 }
629
630 /* try to find an explicit node of the case */
631 while ((iter = lys_getnext_data(iter, *first, &slast, node->schema->parent, NULL))) {
632 if (!(iter->flags & LYD_DEFAULT)) {
633 break;
634 }
635 }
636
637 if (!iter) {
638 /* there are only default nodes of the case meaning it does not exist and neither should any default nodes
639 * of the case, remove this one default node */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100640 lyd_validate_autodel_node_del(first, node, mod, next_p, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100641 }
642}
643
Michal Vasko17f76642021-08-03 17:01:30 +0200644/**
645 * @brief Validate new siblings in choices, recursively for nested choices.
646 *
647 * @param[in,out] first First sibling.
648 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
649 * @param[in] mod Module of the siblings, NULL for nested siblings.
650 * @param[in,out] diff Validation diff.
651 * @return LY_ERR value.
652 */
653static LY_ERR
654lyd_validate_choice_r(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +0200655 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100656{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100657 const struct lysc_node *snode = NULL;
658
Michal Vaskob1b5c262020-03-05 14:29:47 +0100659 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
660 /* check case duplicites */
661 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100662 LY_CHECK_RET(lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff));
Michal Vasko17f76642021-08-03 17:01:30 +0200663
664 /* check for nested choice */
665 LY_CHECK_RET(lyd_validate_choice_r(first, snode, mod, diff));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100666 }
667 }
668
Michal Vasko17f76642021-08-03 17:01:30 +0200669 return LY_SUCCESS;
670}
671
672LY_ERR
673lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
674 struct lyd_node **diff)
675{
676 struct lyd_node *next, *node;
677
678 assert(first && (sparent || mod));
679
680 /* validate choices */
681 LY_CHECK_RET(lyd_validate_choice_r(first, sparent, mod, diff));
682
Michal Vaskob1b5c262020-03-05 14:29:47 +0100683 LY_LIST_FOR_SAFE(*first, next, node) {
Michal Vasko6a6e3082022-05-10 10:32:38 +0200684 if (!node->schema || (mod && (lyd_owner_module(node) != mod))) {
685 /* opaque node or all top-level data from this module checked */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100686 break;
687 }
688
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100689 if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) {
690 /* check only new and default nodes */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100691 continue;
692 }
693
Radek Krejciddace2c2021-01-08 11:30:56 +0100694 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100695
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100696 if (node->flags & LYD_NEW) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100697 LY_ERR ret;
698
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100699 /* remove old default(s) of the new node if it exists */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100700 lyd_validate_autodel_dup(first, node, mod, &next, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100701
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100702 /* then check new node instance duplicities */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100703 ret = lyd_validate_duplicates(*first, node);
Radek Krejciddace2c2021-01-08 11:30:56 +0100704 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0), ret);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100705
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100706 /* this node is valid */
707 node->flags &= ~LYD_NEW;
708 }
709
Michal Vasko0e6de512021-01-11 13:39:44 +0100710 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
711
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100712 if (node->flags & LYD_DEFAULT) {
713 /* remove leftover default nodes from a no-longer existing case */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100714 lyd_validate_autodel_case_dflt(first, node, mod, &next, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100715 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100716 }
717
718 return LY_SUCCESS;
719}
720
Michal Vaskobb844672020-07-03 11:06:12 +0200721/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100722 * @brief Evaluate any "when" conditions of a non-existent data node with existing parent.
723 *
724 * @param[in] first First data sibling of the non-existing node.
725 * @param[in] parent Data parent of the non-existing node.
726 * @param[in] snode Schema node of the non-existing node.
727 * @param[out] disabled First when that evaluated false, if any.
728 * @return LY_ERR value.
729 */
730static LY_ERR
731lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
732 const struct lysc_when **disabled)
733{
734 LY_ERR ret = LY_SUCCESS;
735 struct lyd_node *tree, *dummy = NULL;
Michal Vaskoa27245c2022-05-02 09:01:35 +0200736 uint32_t xp_opts;
Michal Vaskobd4db892020-11-23 16:58:20 +0100737
738 /* find root */
739 if (parent) {
740 tree = (struct lyd_node *)parent;
741 while (tree->parent) {
742 tree = lyd_parent(tree);
743 }
744 tree = lyd_first_sibling(tree);
745 } else {
Michal Vaskobd99b5e2022-04-29 11:15:47 +0200746 /* is the first sibling from the same module, but may not be the actual first */
747 tree = lyd_first_sibling(first);
Michal Vaskobd4db892020-11-23 16:58:20 +0100748 }
749
750 /* create dummy opaque node */
Michal Vasko0ab974d2021-02-24 13:18:26 +0100751 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 +0100752 LY_CHECK_GOTO(ret, cleanup);
753
754 /* connect it if needed */
755 if (!parent) {
756 if (first) {
757 lyd_insert_sibling((struct lyd_node *)first, dummy, &tree);
758 } else {
759 assert(!tree);
760 tree = dummy;
761 }
762 }
763
Michal Vaskoa27245c2022-05-02 09:01:35 +0200764 /* explicitly specified accesible tree */
765 if (snode->flags & LYS_CONFIG_W) {
766 xp_opts = LYXP_ACCESS_TREE_CONFIG;
767 } else {
768 xp_opts = LYXP_ACCESS_TREE_ALL;
769 }
770
Michal Vaskobd4db892020-11-23 16:58:20 +0100771 /* evaluate all when */
Michal Vaskoa27245c2022-05-02 09:01:35 +0200772 ret = lyd_validate_node_when(tree, dummy, snode, xp_opts, disabled);
Michal Vaskobd4db892020-11-23 16:58:20 +0100773 if (ret == LY_EINCOMPLETE) {
774 /* all other when must be resolved by now */
775 LOGINT(snode->module->ctx);
776 ret = LY_EINT;
777 goto cleanup;
778 } else if (ret) {
779 /* error */
780 goto cleanup;
781 }
782
783cleanup:
784 lyd_free_tree(dummy);
785 return ret;
786}
787
788/**
Michal Vaskobb844672020-07-03 11:06:12 +0200789 * @brief Validate mandatory node existence.
790 *
791 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100792 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200793 * @param[in] snode Schema node to validate.
794 * @return LY_ERR value.
795 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100796static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100797lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100798{
Michal Vaskobd4db892020-11-23 16:58:20 +0100799 const struct lysc_when *disabled;
800
Michal Vaskoa3881362020-01-21 15:57:35 +0100801 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100802 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100803 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100804 return LY_SUCCESS;
805 }
806 } else {
807 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100808
Michal Vaskob1b5c262020-03-05 14:29:47 +0100809 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100810 /* data instance found */
811 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100812 }
813 }
814
Michal Vaskobd4db892020-11-23 16:58:20 +0100815 disabled = NULL;
816 if (lysc_has_when(snode)) {
817 /* if there are any when conditions, they must be true for a validation error */
818 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
819 }
820
821 if (!disabled) {
822 /* node instance not found */
Michal Vasko538b8952021-02-17 11:27:26 +0100823 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskoe9391c72021-10-05 10:04:56 +0200824 LOGVAL_APPTAG(snode->module->ctx, "missing-choice", LY_VCODE_NOMAND_CHOIC, snode->name);
Michal Vasko538b8952021-02-17 11:27:26 +0100825 } else {
826 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND, snode->name);
827 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100828 return LY_EVALID;
829 }
830
831 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100832}
833
Michal Vaskobb844672020-07-03 11:06:12 +0200834/**
835 * @brief Validate min/max-elements constraints, if any.
836 *
837 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100838 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200839 * @param[in] snode Schema node to validate.
840 * @param[in] min Minimum number of elements, 0 for no restriction.
841 * @param[in] max Max number of elements, 0 for no restriction.
842 * @return LY_ERR value.
843 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100844static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100845lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
846 uint32_t min, uint32_t max)
Michal Vaskoa3881362020-01-21 15:57:35 +0100847{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100848 uint32_t count = 0;
Michal Vasko4c583e82020-07-17 12:16:14 +0200849 struct lyd_node *iter;
Michal Vaskobd4db892020-11-23 16:58:20 +0100850 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100851 ly_bool invalid_instance = 0;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100852
Michal Vasko9b368d32020-02-14 13:53:31 +0100853 assert(min || max);
854
Michal Vasko4c583e82020-07-17 12:16:14 +0200855 LYD_LIST_FOR_INST(first, snode, iter) {
856 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100857
Michal Vasko4c583e82020-07-17 12:16:14 +0200858 if (min && (count == min)) {
859 /* satisfied */
860 min = 0;
861 if (!max) {
862 /* nothing more to check */
Michal Vasko9b368d32020-02-14 13:53:31 +0100863 break;
864 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100865 }
Michal Vasko4c583e82020-07-17 12:16:14 +0200866 if (max && (count > max)) {
867 /* not satisifed */
Radek Krejciddace2c2021-01-08 11:30:56 +0100868 LOG_LOCSET(NULL, iter, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100869 invalid_instance = 1;
Michal Vasko4c583e82020-07-17 12:16:14 +0200870 break;
871 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100872 }
873
Michal Vasko9b368d32020-02-14 13:53:31 +0100874 if (min) {
875 assert(count < min);
Michal Vaskobd4db892020-11-23 16:58:20 +0100876
877 disabled = NULL;
878 if (lysc_has_when(snode)) {
879 /* if there are any when conditions, they must be true for a validation error */
880 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
881 }
882
883 if (!disabled) {
Michal Vaskoe9391c72021-10-05 10:04:56 +0200884 LOGVAL_APPTAG(snode->module->ctx, "too-few-elements", LY_VCODE_NOMIN, snode->name);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100885 goto failure;
Michal Vaskobd4db892020-11-23 16:58:20 +0100886 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100887 } else if (max && (count > max)) {
Michal Vaskoe9391c72021-10-05 10:04:56 +0200888 LOGVAL_APPTAG(snode->module->ctx, "too-many-elements", LY_VCODE_NOMAX, snode->name);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100889 goto failure;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100890 }
891
Michal Vaskoa3881362020-01-21 15:57:35 +0100892 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100893
894failure:
Radek Krejciddace2c2021-01-08 11:30:56 +0100895 LOG_LOCBACK(0, invalid_instance, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100896 return LY_EVALID;
Michal Vaskoa3881362020-01-21 15:57:35 +0100897}
898
Michal Vaskobb844672020-07-03 11:06:12 +0200899/**
900 * @brief Find node referenced by a list unique statement.
901 *
902 * @param[in] uniq_leaf Unique leaf to find.
903 * @param[in] list List instance to use for the search.
904 * @return Found leaf,
905 * @return NULL if no leaf found.
906 */
Michal Vasko14654712020-02-06 08:35:21 +0100907static struct lyd_node *
Michal Vaskobb844672020-07-03 11:06:12 +0200908lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list)
Michal Vasko14654712020-02-06 08:35:21 +0100909{
Michal Vasko9b368d32020-02-14 13:53:31 +0100910 struct lyd_node *node;
911 const struct lysc_node *iter;
912 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +0100913
Michal Vasko9b368d32020-02-14 13:53:31 +0100914 /* get leaf depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100915 for (iter = &uniq_leaf->node; iter && (iter != list->schema); iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200916 ++depth;
Michal Vasko14654712020-02-06 08:35:21 +0100917 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100918
Michal Vaskobb844672020-07-03 11:06:12 +0200919 node = (struct lyd_node *)list;
Michal Vasko9b368d32020-02-14 13:53:31 +0100920 while (node && depth) {
921 /* find schema node with this depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100922 for (i = depth - 1, iter = &uniq_leaf->node; i; iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200923 --i;
Michal Vasko9b368d32020-02-14 13:53:31 +0100924 }
925
926 /* find iter instance in children */
927 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
Radek Krejcia1c1e542020-09-29 16:06:52 +0200928 lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100929 --depth;
930 }
931
Michal Vasko14654712020-02-06 08:35:21 +0100932 return node;
933}
934
Michal Vaskobb844672020-07-03 11:06:12 +0200935/**
936 * @brief Callback for comparing 2 list unique leaf values.
937 *
Michal Vasko62524a92021-02-26 10:08:50 +0100938 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200939 *
Michal Vaskobb844672020-07-03 11:06:12 +0200940 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +0100941 */
Radek Krejci857189e2020-09-01 13:26:36 +0200942static ly_bool
943lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data)
Michal Vasko14654712020-02-06 08:35:21 +0100944{
945 struct ly_ctx *ctx;
946 struct lysc_node_list *slist;
947 struct lyd_node *diter, *first, *second;
948 struct lyd_value *val1, *val2;
949 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200950 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +0100951
952 assert(val1_p && val2_p);
953
954 first = *((struct lyd_node **)val1_p);
955 second = *((struct lyd_node **)val2_p);
Michal Vasko41e630c2021-07-23 12:47:18 +0200956 action = (uintptr_t)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +0100957
958 assert(first && (first->schema->nodetype == LYS_LIST));
959 assert(second && (second->schema == first->schema));
960
961 ctx = first->schema->module->ctx;
962
963 slist = (struct lysc_node_list *)first->schema;
964
965 /* compare unique leaves */
966 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200967 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200968 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +0100969 goto uniquecheck;
970 }
971 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200972 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +0100973uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200974 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +0100975 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200976 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +0100977 if (diter) {
978 val1 = &((struct lyd_node_term *)diter)->value;
979 } else {
980 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200981 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100982 }
983
984 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200985 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +0100986 if (diter) {
987 val2 = &((struct lyd_node_term *)diter)->value;
988 } else {
989 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200990 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100991 }
992
993 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
994 /* values differ or either one is not set */
995 break;
996 }
997 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200998 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +0100999 /* all unique leafs are the same in this set, create this nice error */
Radek Krejci635d2b82021-01-04 11:26:51 +01001000 path1 = lyd_path(first, LYD_PATH_STD, NULL, 0);
1001 path2 = lyd_path(second, LYD_PATH_STD, NULL, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001002
1003 /* use buffer to rebuild the unique string */
Radek Krejcif13b87b2020-12-01 22:02:17 +01001004#define UNIQ_BUF_SIZE 1024
1005 uniq_str = malloc(UNIQ_BUF_SIZE);
Michal Vasko14654712020-02-06 08:35:21 +01001006 uniq_str[0] = '\0';
1007 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001008 LY_ARRAY_FOR(slist->uniques[u], v) {
1009 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +01001010 strcpy(ptr, " ");
1011 ++ptr;
1012 }
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001013 ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], &slist->node, LYSC_PATH_LOG,
Radek Krejcif13b87b2020-12-01 22:02:17 +01001014 ptr, UNIQ_BUF_SIZE - (ptr - uniq_str));
Michal Vasko14654712020-02-06 08:35:21 +01001015 if (!ptr) {
1016 /* path will be incomplete, whatever */
1017 break;
1018 }
1019
1020 ptr += strlen(ptr);
1021 }
Radek Krejciddace2c2021-01-08 11:30:56 +01001022 LOG_LOCSET(NULL, second, NULL, NULL);
Michal Vaskoe9391c72021-10-05 10:04:56 +02001023 LOGVAL_APPTAG(ctx, "data-not-unique", LY_VCODE_NOUNIQ, uniq_str, path1, path2);
Radek Krejciddace2c2021-01-08 11:30:56 +01001024 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001025
1026 free(path1);
1027 free(path2);
1028 free(uniq_str);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001029#undef UNIQ_BUF_SIZE
1030
Michal Vasko14654712020-02-06 08:35:21 +01001031 return 1;
1032 }
1033
1034 if (action > 0) {
1035 /* done */
1036 return 0;
1037 }
1038 }
1039
1040 return 0;
1041}
1042
Michal Vaskobb844672020-07-03 11:06:12 +02001043/**
1044 * @brief Validate list unique leaves.
1045 *
1046 * @param[in] first First sibling to search in.
1047 * @param[in] snode Schema node to validate.
1048 * @param[in] uniques List unique arrays to validate.
1049 * @return LY_ERR value.
1050 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001051static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +02001052lyd_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 +01001053{
Michal Vaskob1b5c262020-03-05 14:29:47 +01001054 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +01001055 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001056 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +01001057 LY_ERR ret = LY_SUCCESS;
Michal Vasko626196f2022-08-05 12:49:52 +02001058 uint32_t hash, i;
Radek Krejci813c02d2021-04-26 10:29:19 +02001059 size_t key_len;
1060 ly_bool dyn;
1061 const void *hash_key;
Michal Vasko41e630c2021-07-23 12:47:18 +02001062 void *cb_data;
Michal Vasko14654712020-02-06 08:35:21 +01001063 struct hash_table **uniqtables = NULL;
1064 struct lyd_value *val;
1065 struct ly_ctx *ctx = snode->module->ctx;
1066
1067 assert(uniques);
1068
1069 /* get all list instances */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001070 LY_CHECK_RET(ly_set_new(&set));
Michal Vaskob1b5c262020-03-05 14:29:47 +01001071 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +01001072 if (diter->schema == snode) {
Radek Krejci3d92e442020-10-12 12:48:13 +02001073 ret = ly_set_add(set, (void *)diter, 1, NULL);
Michal Vaskob0099a92020-08-31 14:55:23 +02001074 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko9b368d32020-02-14 13:53:31 +01001075 }
1076 }
Michal Vasko14654712020-02-06 08:35:21 +01001077
1078 if (set->count == 2) {
1079 /* simple comparison */
1080 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
1081 /* instance duplication */
1082 ret = LY_EVALID;
1083 goto cleanup;
1084 }
1085 } else if (set->count > 2) {
1086 /* use hashes for comparison */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001087 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +01001088 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001089 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001090 for (v = 0; v < x; v++) {
Michal Vasko41e630c2021-07-23 12:47:18 +02001091 cb_data = (void *)(uintptr_t)(v + 1L);
Michal Vasko626196f2022-08-05 12:49:52 +02001092 uniqtables[v] = lyht_new(lyht_get_fixed_size(set->count), sizeof(struct lyd_node *),
1093 lyd_val_uniq_list_equal, cb_data, 0);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001094 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +01001095 }
1096
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001097 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +01001098 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001099 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +01001100 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001101 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001102 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +01001103 if (diter) {
1104 val = &((struct lyd_node_term *)diter)->value;
1105 } else {
1106 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001107 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001108 }
1109 if (!val) {
1110 /* unique item not present nor has default value */
1111 break;
1112 }
1113
Radek Krejci813c02d2021-04-26 10:29:19 +02001114 /* get hash key */
Michal Vaskodcfac2c2021-05-10 11:36:37 +02001115 hash_key = val->realtype->plugin->print(NULL, val, LY_VALUE_LYB, NULL, &dyn, &key_len);
Radek Krejci813c02d2021-04-26 10:29:19 +02001116 hash = dict_hash_multi(hash, hash_key, key_len);
1117 if (dyn) {
1118 free((void *)hash_key);
Michal Vasko14654712020-02-06 08:35:21 +01001119 }
1120 }
1121 if (!val) {
1122 /* skip this list instance since its unique set is incomplete */
1123 continue;
1124 }
1125
1126 /* finish the hash value */
1127 hash = dict_hash_multi(hash, NULL, 0);
1128
1129 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001130 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +01001131 if (ret == LY_EEXIST) {
1132 /* instance duplication */
1133 ret = LY_EVALID;
1134 }
1135 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
1136 }
1137 }
1138 }
1139
1140cleanup:
1141 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001142 for (v = 0; v < x; v++) {
1143 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +01001144 /* failed when allocating uniquetables[j], following j are not allocated */
1145 break;
1146 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001147 lyht_free(uniqtables[v]);
Michal Vasko14654712020-02-06 08:35:21 +01001148 }
1149 free(uniqtables);
1150
1151 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +01001152}
1153
Michal Vaskobb844672020-07-03 11:06:12 +02001154/**
1155 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
1156 *
1157 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +01001158 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +02001159 * @param[in] sparent Schema parent of the nodes to check.
1160 * @param[in] mod Module of the nodes to check.
1161 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskoe0665742021-02-11 11:08:44 +01001162 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001163 * @return LY_ERR value.
1164 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001165static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001166lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001167 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 +01001168{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001169 LY_ERR ret = LY_SUCCESS;
Michal Vasko6c16cda2021-02-04 11:05:52 +01001170 const struct lysc_node *snode = NULL, *scase;
Michal Vaskoa3881362020-01-21 15:57:35 +01001171 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +02001172 struct lysc_node_leaflist *sllist;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001173 uint32_t getnext_opts;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001174
Michal Vaskoe0665742021-02-11 11:08:44 +01001175 getnext_opts = LYS_GETNEXT_WITHCHOICE | (int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001176
Michal Vaskoa3881362020-01-21 15:57:35 +01001177 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001178 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +02001179 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001180 continue;
1181 }
1182
Radek Krejciddace2c2021-01-08 11:30:56 +01001183 LOG_LOCSET(snode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001184
Michal Vaskoa3881362020-01-21 15:57:35 +01001185 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +02001186 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +01001187 slist = (struct lysc_node_list *)snode;
1188 if (slist->min || slist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001189 ret = lyd_validate_minmax(first, parent, snode, slist->min, slist->max);
1190 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001191 }
Michal Vaskod8958df2020-08-05 13:27:36 +02001192 } else if (snode->nodetype == LYS_LEAFLIST) {
1193 sllist = (struct lysc_node_leaflist *)snode;
1194 if (sllist->min || sllist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001195 ret = lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max);
1196 LY_CHECK_GOTO(ret, error);
Michal Vaskod8958df2020-08-05 13:27:36 +02001197 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001198
Michal Vaskoacd83e72020-02-04 14:12:01 +01001199 } else if (snode->flags & LYS_MAND_TRUE) {
Radek Krejcif6a11002020-08-21 13:29:07 +02001200 /* check generic mandatory existence */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001201 ret = lyd_validate_mandatory(first, parent, snode);
1202 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001203 }
1204
1205 /* check unique */
1206 if (snode->nodetype == LYS_LIST) {
1207 slist = (struct lysc_node_list *)snode;
1208 if (slist->uniques) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001209 ret = lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques);
1210 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001211 }
1212 }
1213
Michal Vasko6c16cda2021-02-04 11:05:52 +01001214 if (snode->nodetype == LYS_CHOICE) {
1215 /* find the existing case, if any */
1216 LY_LIST_FOR(lysc_node_child(snode), scase) {
1217 if (lys_getnext_data(NULL, first, NULL, scase, NULL)) {
1218 /* validate only this case */
Michal Vaskoe0665742021-02-11 11:08:44 +01001219 ret = lyd_validate_siblings_schema_r(first, parent, scase, mod, val_opts, int_opts);
Michal Vasko6c16cda2021-02-04 11:05:52 +01001220 LY_CHECK_GOTO(ret, error);
1221 break;
1222 }
1223 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001224 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001225
Radek Krejciddace2c2021-01-08 11:30:56 +01001226 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001227 }
1228
Michal Vaskoacd83e72020-02-04 14:12:01 +01001229 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001230
1231error:
Radek Krejciddace2c2021-01-08 11:30:56 +01001232 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001233 return ret;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001234}
1235
Michal Vaskobb844672020-07-03 11:06:12 +02001236/**
1237 * @brief Validate obsolete nodes, only warnings are printed.
1238 *
1239 * @param[in] node Node to check.
1240 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001241static void
1242lyd_validate_obsolete(const struct lyd_node *node)
1243{
1244 const struct lysc_node *snode;
1245
1246 snode = node->schema;
1247 do {
1248 if (snode->flags & LYS_STATUS_OBSLT) {
1249 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
1250 break;
1251 }
1252
1253 snode = snode->parent;
1254 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
1255}
1256
Michal Vaskobb844672020-07-03 11:06:12 +02001257/**
1258 * @brief Validate must conditions of a data node.
1259 *
1260 * @param[in] node Node to validate.
Michal Vaskoe0665742021-02-11 11:08:44 +01001261 * @param[in] int_opts Internal parser options.
Michal Vasko906bafa2022-04-22 12:28:55 +02001262 * @param[in] xpath_options Additional XPath options to use.
Michal Vaskobb844672020-07-03 11:06:12 +02001263 * @return LY_ERR value.
1264 */
Michal Vaskocc048b22020-03-27 15:52:38 +01001265static LY_ERR
Michal Vasko906bafa2022-04-22 12:28:55 +02001266lyd_validate_must(const struct lyd_node *node, uint32_t int_opts, uint32_t xpath_options)
Michal Vaskocc048b22020-03-27 15:52:38 +01001267{
Michal Vaskoa1db2342021-07-19 12:23:23 +02001268 LY_ERR ret;
Michal Vaskocc048b22020-03-27 15:52:38 +01001269 struct lyxp_set xp_set;
1270 struct lysc_must *musts;
1271 const struct lyd_node *tree;
Radek Krejci9a3823e2021-01-27 20:26:46 +01001272 const struct lysc_node *schema;
Michal Vaskoe9391c72021-10-05 10:04:56 +02001273 const char *emsg, *eapptag;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001274 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +01001275
Michal Vaskoe0665742021-02-11 11:08:44 +01001276 assert((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) != (LYD_INTOPT_RPC | LYD_INTOPT_REPLY));
1277 assert((int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) != (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY));
1278
Radek Krejci9a3823e2021-01-27 20:26:46 +01001279 if (node->schema->nodetype & (LYS_ACTION | LYS_RPC)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001280 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001281 schema = &((struct lysc_node_action *)node->schema)->input.node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001282 } else if (int_opts & LYD_INTOPT_REPLY) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001283 schema = &((struct lysc_node_action *)node->schema)->output.node;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001284 } else {
Michal Vaskoa1db2342021-07-19 12:23:23 +02001285 LOGINT_RET(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +02001286 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001287 } else {
1288 schema = node->schema;
Michal Vaskocc048b22020-03-27 15:52:38 +01001289 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001290 musts = lysc_node_musts(schema);
Michal Vaskocc048b22020-03-27 15:52:38 +01001291 if (!musts) {
1292 /* no must to evaluate */
1293 return LY_SUCCESS;
1294 }
1295
1296 /* find first top-level node */
Michal Vasko9e685082021-01-29 14:49:09 +01001297 for (tree = node; tree->parent; tree = lyd_parent(tree)) {}
Michal Vaskof9221e62021-02-04 12:10:14 +01001298 tree = lyd_first_sibling(tree);
Michal Vaskocc048b22020-03-27 15:52:38 +01001299
1300 LY_ARRAY_FOR(musts, u) {
1301 memset(&xp_set, 0, sizeof xp_set);
1302
1303 /* evaluate must */
Michal Vaskoa1db2342021-07-19 12:23:23 +02001304 ret = lyxp_eval(LYD_CTX(node), musts[u].cond, node->schema->module, LY_VALUE_SCHEMA_RESOLVED,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02001305 musts[u].prefixes, node, node, tree, NULL, &xp_set, LYXP_SCHEMA | xpath_options);
Michal Vaskoa1db2342021-07-19 12:23:23 +02001306 if (ret == LY_EINCOMPLETE) {
1307 LOGINT_RET(LYD_CTX(node));
1308 } else if (ret) {
1309 return ret;
1310 }
Michal Vaskocc048b22020-03-27 15:52:38 +01001311
1312 /* check the result */
1313 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02001314 if (!xp_set.val.bln) {
Michal Vaskoe9391c72021-10-05 10:04:56 +02001315 /* use specific error information */
1316 emsg = musts[u].emsg;
1317 eapptag = musts[u].eapptag ? musts[u].eapptag : "must-violation";
1318 if (emsg) {
1319 LOGVAL_APPTAG(LYD_CTX(node), eapptag, LYVE_DATA, "%s", emsg);
1320 } else {
1321 LOGVAL_APPTAG(LYD_CTX(node), eapptag, LY_VCODE_NOMUST, musts[u].cond->expr);
1322 }
Michal Vaskocc048b22020-03-27 15:52:38 +01001323 return LY_EVALID;
1324 }
1325 }
1326
1327 return LY_SUCCESS;
1328}
1329
Michal Vaskoe0665742021-02-11 11:08:44 +01001330/**
1331 * @brief Perform all remaining validation tasks, the data tree must be final when calling this function.
1332 *
1333 * @param[in] first First sibling.
1334 * @param[in] parent Data parent.
1335 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
1336 * @param[in] mod Module of the siblings, NULL for nested siblings.
1337 * @param[in] val_opts Validation options (@ref datavalidationoptions).
1338 * @param[in] int_opts Internal parser options.
Michal Vasko906bafa2022-04-22 12:28:55 +02001339 * @param[in] must_xp_opts Additional XPath options to use for evaluating "must".
Michal Vaskoe0665742021-02-11 11:08:44 +01001340 * @return LY_ERR value.
1341 */
1342static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001343lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent,
Michal Vasko906bafa2022-04-22 12:28:55 +02001344 const struct lys_module *mod, uint32_t val_opts, uint32_t int_opts, uint32_t must_xp_opts)
Michal Vaskoacd83e72020-02-04 14:12:01 +01001345{
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001346 LY_ERR r;
1347 const char *innode;
Radek Krejci7f769d72020-07-11 23:13:56 +02001348 struct lyd_node *next = NULL, *node;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001349
Michal Vasko14654712020-02-06 08:35:21 +01001350 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001351 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001352 if (node->flags & LYD_EXT) {
1353 /* ext instance data should have already been validated */
1354 continue;
1355 }
1356
Radek Krejciddace2c2021-01-08 11:30:56 +01001357 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001358
Michal Vaskoa8c61722020-03-27 16:59:32 +01001359 /* opaque data */
1360 if (!node->schema) {
Michal Vaskoac6f4be2022-05-02 10:16:50 +02001361 r = lyd_parse_opaq_error(node);
Michal Vasko6344e7a2022-05-10 10:08:53 +02001362 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskoac6f4be2022-05-02 10:16:50 +02001363 return r;
Michal Vaskoa8c61722020-03-27 16:59:32 +01001364 }
1365
Michal Vasko6344e7a2022-05-10 10:08:53 +02001366 if (!node->parent && mod && (lyd_owner_module(node) != mod)) {
1367 /* all top-level data from this module checked */
1368 LOG_LOCBACK(1, 1, 0, 0);
1369 break;
1370 }
1371
Michal Vasko8d289f92021-12-02 10:11:00 +01001372 /* no state/input/output/op data */
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001373 innode = NULL;
Radek Krejci7931b192020-06-25 17:05:03 +02001374 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001375 innode = "state";
Michal Vaskoe0665742021-02-11 11:08:44 +01001376 } else if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) && (node->schema->flags & LYS_IS_OUTPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001377 innode = "output";
Michal Vaskoe0665742021-02-11 11:08:44 +01001378 } else if ((int_opts & LYD_INTOPT_REPLY) && (node->schema->flags & LYS_IS_INPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001379 innode = "input";
Michal Vasko8d289f92021-12-02 10:11:00 +01001380 } else if (!(int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) && (node->schema->nodetype == LYS_RPC)) {
1381 innode = "rpc";
1382 } else if (!(int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) && (node->schema->nodetype == LYS_ACTION)) {
1383 innode = "action";
1384 } else if (!(int_opts & LYD_INTOPT_NOTIF) && (node->schema->nodetype == LYS_NOTIF)) {
1385 innode = "notification";
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001386 }
1387 if (innode) {
1388 LOGVAL(LYD_CTX(node), LY_VCODE_UNEXPNODE, innode, node->schema->name);
1389 LOG_LOCBACK(1, 1, 0, 0);
1390 return LY_EVALID;
Michal Vasko5b37a352020-03-06 13:38:33 +01001391 }
1392
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001393 /* obsolete data */
1394 lyd_validate_obsolete(node);
1395
Michal Vaskocc048b22020-03-27 15:52:38 +01001396 /* node's musts */
Michal Vasko906bafa2022-04-22 12:28:55 +02001397 if ((r = lyd_validate_must(node, int_opts, must_xp_opts))) {
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001398 LOG_LOCBACK(1, 1, 0, 0);
1399 return r;
1400 }
Michal Vaskocc048b22020-03-27 15:52:38 +01001401
Michal Vasko53d97a12020-11-05 17:39:10 +01001402 /* node value was checked by plugins */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001403
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001404 /* next iter */
Radek Krejciddace2c2021-01-08 11:30:56 +01001405 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001406 }
Michal Vaskocde73ac2019-11-14 16:10:27 +01001407
Michal Vasko14654712020-02-06 08:35:21 +01001408 /* validate schema-based restrictions */
Michal Vaskoe0665742021-02-11 11:08:44 +01001409 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 +01001410
Michal Vaskob1b5c262020-03-05 14:29:47 +01001411 LY_LIST_FOR(first, node) {
Michal Vasko19034e22021-07-19 12:24:14 +02001412 if (!node->parent && mod && (lyd_owner_module(node) != mod)) {
1413 /* all top-level data from this module checked */
1414 break;
1415 }
1416
Michal Vasko14654712020-02-06 08:35:21 +01001417 /* validate all children recursively */
Michal Vasko906bafa2022-04-22 12:28:55 +02001418 LY_CHECK_RET(lyd_validate_final_r(lyd_child(node), node, node->schema, NULL, val_opts, int_opts, must_xp_opts));
Michal Vaskocde73ac2019-11-14 16:10:27 +01001419
Michal Vaskob1b5c262020-03-05 14:29:47 +01001420 /* set default for containers */
aPiecekc5f36a72021-05-18 14:12:31 +02001421 if (node->schema && (node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
Radek Krejcia1c1e542020-09-29 16:06:52 +02001422 LY_LIST_FOR(lyd_child(node), next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001423 if (!(next->flags & LYD_DEFAULT)) {
1424 break;
1425 }
Michal Vaskoa3881362020-01-21 15:57:35 +01001426 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001427 if (!next) {
1428 node->flags |= LYD_DEFAULT;
1429 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001430 }
1431 }
1432
1433 return LY_SUCCESS;
1434}
1435
Radek Krejci7931b192020-06-25 17:05:03 +02001436/**
Michal Vaskoddd76592022-01-17 13:34:48 +01001437 * @brief Validate extension instance data by storing it in its unres set.
1438 *
1439 * @param[in] sibling First sibling with ::LYD_EXT flag, all the following ones are expected to have it, too.
1440 * @param[in,out] ext_val Set with parsed extension instance data to validate.
1441 * @return LY_ERR value.
1442 */
1443static LY_ERR
1444lyd_validate_nested_ext(struct lyd_node *sibling, struct ly_set *ext_val)
1445{
1446 struct lyd_node *node;
1447 struct lyd_ctx_ext_val *ext_v;
1448 struct lysc_ext_instance *nested_exts, *ext = NULL;
1449 LY_ARRAY_COUNT_TYPE u;
1450
1451 /* check of basic assumptions */
1452 if (!sibling->parent || !sibling->parent->schema) {
1453 LOGINT_RET(LYD_CTX(sibling));
1454 }
1455 LY_LIST_FOR(sibling, node) {
1456 if (!(node->flags & LYD_EXT)) {
1457 LOGINT_RET(LYD_CTX(sibling));
1458 }
1459 }
1460
1461 /* try to find the extension instance */
1462 nested_exts = sibling->parent->schema->exts;
1463 LY_ARRAY_FOR(nested_exts, u) {
1464 if (nested_exts[u].def->plugin->validate) {
1465 if (ext) {
1466 /* more extension instances with validate callback */
1467 LOGINT_RET(LYD_CTX(sibling));
1468 }
1469 ext = &nested_exts[u];
1470 }
1471 }
1472 if (!ext) {
1473 /* no extension instance with validate callback */
1474 LOGINT_RET(LYD_CTX(sibling));
1475 }
1476
1477 /* store for validation */
1478 ext_v = malloc(sizeof *ext_v);
1479 LY_CHECK_ERR_RET(!ext_v, LOGMEM(LYD_CTX(sibling)), LY_EMEM);
1480 ext_v->ext = ext;
1481 ext_v->sibling = sibling;
1482 LY_CHECK_RET(ly_set_add(ext_val, ext_v, 1, NULL));
1483
1484 return LY_SUCCESS;
1485}
1486
Michal Vasko135719f2022-08-25 12:18:17 +02001487LY_ERR
1488lyd_validate_node_ext(struct lyd_node *node, struct ly_set *ext_node)
1489{
1490 struct lyd_ctx_ext_node *ext_n;
1491 struct lysc_ext_instance *exts;
1492 LY_ARRAY_COUNT_TYPE u;
1493
1494 /* try to find a relevant extension instance with node callback */
1495 exts = node->schema->exts;
1496 LY_ARRAY_FOR(exts, u) {
1497 if (exts[u].def->plugin && exts[u].def->plugin->node) {
1498 /* store for validation */
1499 ext_n = malloc(sizeof *ext_n);
1500 LY_CHECK_ERR_RET(!ext_n, LOGMEM(LYD_CTX(node)), LY_EMEM);
1501 ext_n->ext = &exts[u];
1502 ext_n->node = node;
1503 LY_CHECK_RET(ly_set_add(ext_node, ext_n, 1, NULL));
1504 }
1505 }
1506
1507 return LY_SUCCESS;
1508}
1509
Michal Vaskoddd76592022-01-17 13:34:48 +01001510/**
Michal Vaskobb844672020-07-03 11:06:12 +02001511 * @brief Validate the whole data subtree.
1512 *
1513 * @param[in] root Subtree root.
Michal Vaskoe0665742021-02-11 11:08:44 +01001514 * @param[in,out] node_when Set for nodes with when conditions.
Michal Vasko32711382020-12-03 14:14:31 +01001515 * @param[in,out] node_types Set for unres node types.
1516 * @param[in,out] meta_types Set for unres metadata types.
Michal Vasko1a6e6902022-08-26 08:35:09 +02001517 * @param[in,out] ext_node Set with nodes with extensions to validate.
Michal Vaskoddd76592022-01-17 13:34:48 +01001518 * @param[in,out] ext_val Set for parsed extension data to validate.
Michal Vasko29adfbe2020-12-08 17:12:03 +01001519 * @param[in] impl_opts Implicit options, see @ref implicitoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001520 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001521 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001522 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001523static LY_ERR
Michal Vaskoddd76592022-01-17 13:34:48 +01001524lyd_validate_subtree(struct lyd_node *root, struct ly_set *node_when, struct ly_set *node_types,
Michal Vasko1a6e6902022-08-26 08:35:09 +02001525 struct ly_set *meta_types, struct ly_set *ext_node, struct ly_set *ext_val, uint32_t impl_opts,
1526 struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001527{
1528 const struct lyd_meta *meta;
Michal Vasko193dacd2022-10-13 08:43:05 +02001529 const struct lysc_type *type;
Michal Vasko56daf732020-08-10 10:57:18 +02001530 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001531
Michal Vasko56daf732020-08-10 10:57:18 +02001532 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vaskoddd76592022-01-17 13:34:48 +01001533 if (node->flags & LYD_EXT) {
1534 /* validate using the extension instance callback */
1535 return lyd_validate_nested_ext(node, ext_val);
1536 }
1537
Michal Vasko5900da42021-08-04 11:02:43 +02001538 if (!node->schema) {
Michal Vaskoddd76592022-01-17 13:34:48 +01001539 /* do not validate opaque nodes */
aPiecek18a844e2021-08-10 11:06:24 +02001540 goto next_node;
Michal Vasko5900da42021-08-04 11:02:43 +02001541 }
1542
Michal Vasko0275cf62020-11-05 17:40:30 +01001543 LY_LIST_FOR(node->meta, meta) {
Michal Vaskofbd037c2022-11-08 10:34:20 +01001544 lyplg_ext_get_storage(meta->annotation, LY_STMT_TYPE, sizeof type, (const void **)&type);
Michal Vasko193dacd2022-10-13 08:43:05 +02001545 if (type->plugin->validate) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001546 /* metadata type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001547 LY_CHECK_RET(ly_set_add(meta_types, (void *)meta, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001548 }
Michal Vasko0275cf62020-11-05 17:40:30 +01001549 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001550
Michal Vasko0275cf62020-11-05 17:40:30 +01001551 if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) {
1552 /* node type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001553 LY_CHECK_RET(ly_set_add(node_types, (void *)node, 1, NULL));
Michal Vasko0275cf62020-11-05 17:40:30 +01001554 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1555 /* new node validation, autodelete */
Michal Vaskoe0665742021-02-11 11:08:44 +01001556 LY_CHECK_RET(lyd_validate_new(lyd_node_child_p(node), node->schema, NULL, diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001557
Michal Vasko0275cf62020-11-05 17:40:30 +01001558 /* add nested defaults */
Michal Vaskofcbd78f2022-08-26 08:34:15 +02001559 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL, NULL, NULL, impl_opts, diff));
Michal Vasko0275cf62020-11-05 17:40:30 +01001560 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001561
Michal Vaskof4d67ea2021-03-31 13:53:21 +02001562 if (lysc_has_when(node->schema)) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001563 /* when evaluation */
Michal Vasko32711382020-12-03 14:14:31 +01001564 LY_CHECK_RET(ly_set_add(node_when, (void *)node, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001565 }
1566
Michal Vasko1a6e6902022-08-26 08:35:09 +02001567 /* store for ext instance node validation, if needed */
1568 LY_CHECK_RET(lyd_validate_node_ext(node, ext_node));
1569
aPiecek18a844e2021-08-10 11:06:24 +02001570next_node:
Michal Vasko56daf732020-08-10 10:57:18 +02001571 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001572 }
1573
1574 return LY_SUCCESS;
1575}
1576
Michal Vaskoe0665742021-02-11 11:08:44 +01001577LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001578lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts,
Michal Vaskoddd76592022-01-17 13:34:48 +01001579 ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_types_p, struct ly_set *meta_types_p,
Michal Vasko135719f2022-08-25 12:18:17 +02001580 struct ly_set *ext_node_p, struct ly_set *ext_val_p, struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001581{
1582 LY_ERR ret = LY_SUCCESS;
Michal Vasko73e47212020-12-03 14:20:16 +01001583 struct lyd_node *first, *next, **first2, *iter;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001584 const struct lys_module *mod;
Michal Vasko135719f2022-08-25 12:18:17 +02001585 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, ext_node = {0}, ext_val = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001586 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001587
Michal Vaskoe0665742021-02-11 11:08:44 +01001588 assert(tree && ctx);
Michal Vasko135719f2022-08-25 12:18:17 +02001589 assert((node_when_p && node_types_p && meta_types_p && ext_node_p && ext_val_p) ||
1590 (!node_when_p && !node_types_p && !meta_types_p && !ext_node_p && !ext_val_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001591
1592 if (!node_when_p) {
1593 node_when_p = &node_when;
1594 node_types_p = &node_types;
1595 meta_types_p = &meta_types;
Michal Vasko135719f2022-08-25 12:18:17 +02001596 ext_node_p = &ext_node;
Michal Vaskoddd76592022-01-17 13:34:48 +01001597 ext_val_p = &ext_val;
Michal Vasko8104fd42020-07-13 11:09:51 +02001598 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001599
Michal Vaskob1b5c262020-03-05 14:29:47 +01001600 next = *tree;
1601 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001602 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001603 mod = lyd_data_next_module(&next, &first);
1604 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001605 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001606 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001607 if (!mod) {
1608 break;
1609 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001610 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001611 /* make sure first2 changes are carried to tree */
1612 first2 = tree;
1613 } else {
1614 first2 = &first;
1615 }
1616
1617 /* validate new top-level nodes of this module, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001618 ret = lyd_validate_new(first2, NULL, mod, diff);
1619 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001620
Radek Krejci7be7b9f2021-02-24 11:46:27 +01001621 /* add all top-level defaults for this module, if going to validate subtree, do not add into unres sets
1622 * (lyd_validate_subtree() adds all the nodes in that case) */
Michal Vaskoddd76592022-01-17 13:34:48 +01001623 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, validate_subtree ? NULL : node_when_p,
Michal Vaskofcbd78f2022-08-26 08:34:15 +02001624 validate_subtree ? NULL : node_types_p, validate_subtree ? NULL : ext_node_p,
1625 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
Michal Vasko8104fd42020-07-13 11:09:51 +02001626 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001627
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001628 /* our first module node pointer may no longer be the first */
Michal Vasko598063b2021-07-19 11:39:05 +02001629 first = *first2;
1630 lyd_first_module_sibling(&first, mod);
1631 if (!first || (first == *tree)) {
1632 first2 = tree;
1633 } else {
1634 first2 = &first;
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001635 }
1636
Michal Vaskoe0665742021-02-11 11:08:44 +01001637 if (validate_subtree) {
1638 /* process nested nodes */
1639 LY_LIST_FOR(*first2, iter) {
Michal Vasko0e72b7a2021-07-16 14:53:27 +02001640 if (lyd_owner_module(iter) != mod) {
1641 break;
1642 }
1643
Michal Vasko1a6e6902022-08-26 08:35:09 +02001644 ret = lyd_validate_subtree(iter, node_when_p, node_types_p, meta_types_p, ext_node_p, ext_val_p,
Michal Vaskoe0665742021-02-11 11:08:44 +01001645 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
1646 LY_CHECK_GOTO(ret, cleanup);
1647 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001648 }
1649
1650 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vasko135719f2022-08-25 12:18:17 +02001651 ret = lyd_validate_unres(first2, mod, LYD_TYPE_DATA_YANG, node_when_p, 0, node_types_p, meta_types_p,
1652 ext_node_p, ext_val_p, val_opts, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001653 LY_CHECK_GOTO(ret, cleanup);
1654
1655 /* perform final validation that assumes the data tree is final */
Michal Vasko906bafa2022-04-22 12:28:55 +02001656 ret = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +02001657 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001658 }
1659
Michal Vaskof03ed032020-03-04 13:31:44 +01001660cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +01001661 ly_set_erase(&node_when, NULL);
Michal Vasko32711382020-12-03 14:14:31 +01001662 ly_set_erase(&node_types, NULL);
1663 ly_set_erase(&meta_types, NULL);
Michal Vasko135719f2022-08-25 12:18:17 +02001664 ly_set_erase(&ext_node, free);
Michal Vaskoddd76592022-01-17 13:34:48 +01001665 ly_set_erase(&ext_val, free);
Michal Vaskof03ed032020-03-04 13:31:44 +01001666 return ret;
1667}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001668
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001669LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001670lyd_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 +01001671{
Michal Vaskoe0665742021-02-11 11:08:44 +01001672 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001673 LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, ctx, LY_EINVAL);
Michal Vaskoe0665742021-02-11 11:08:44 +01001674 if (!ctx) {
1675 ctx = LYD_CTX(*tree);
1676 }
1677 if (diff) {
1678 *diff = NULL;
1679 }
1680
Michal Vasko135719f2022-08-25 12:18:17 +02001681 return lyd_validate(tree, NULL, ctx, val_opts, 1, NULL, NULL, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001682}
1683
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001684LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001685lyd_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 +01001686{
Michal Vaskoe0665742021-02-11 11:08:44 +01001687 LY_CHECK_ARG_RET(NULL, tree, *tree || module, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001688 LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vaskoe0665742021-02-11 11:08:44 +01001689 if (diff) {
1690 *diff = NULL;
1691 }
1692
Michal Vasko135719f2022-08-25 12:18:17 +02001693 return lyd_validate(tree, module, (*tree) ? LYD_CTX(*tree) : module->ctx, val_opts, 1, NULL, NULL, NULL, NULL, NULL,
1694 diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001695}
Michal Vaskofea12c62020-03-30 11:00:15 +02001696
Michal Vaskobb844672020-07-03 11:06:12 +02001697/**
1698 * @brief Find nodes for merging an operation into data tree for validation.
1699 *
1700 * @param[in] op_tree Full operation data tree.
1701 * @param[in] op_node Operation node itself.
1702 * @param[in] tree Data tree to be merged into.
1703 * @param[out] op_subtree Operation subtree to merge.
Michal Vasko2f03d222020-12-09 18:15:51 +01001704 * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL.
1705 * @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 +02001706 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001707static void
Michal Vaskobb844672020-07-03 11:06:12 +02001708lyd_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 +01001709 struct lyd_node **op_subtree, struct lyd_node **tree_sibling, struct lyd_node **tree_parent)
Michal Vaskofea12c62020-03-30 11:00:15 +02001710{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001711 const struct lyd_node *tree_iter, *op_iter;
1712 struct lyd_node *match;
Michal Vaskofea12c62020-03-30 11:00:15 +02001713 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001714
Michal Vasko2f03d222020-12-09 18:15:51 +01001715 *op_subtree = NULL;
1716 *tree_sibling = NULL;
1717 *tree_parent = NULL;
1718
Michal Vaskocb7526d2020-03-30 15:08:26 +02001719 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001720 op_depth = 0;
Michal Vasko9e685082021-01-29 14:49:09 +01001721 for (op_iter = op_node; op_iter != op_tree; op_iter = lyd_parent(op_iter)) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001722 ++op_depth;
1723 }
1724
1725 /* find where to merge op */
1726 tree_iter = tree;
1727 cur_depth = op_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001728 while (cur_depth && tree_iter) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001729 /* find op iter in tree */
1730 lyd_find_sibling_first(tree_iter, op_iter, &match);
1731 if (!match) {
1732 break;
1733 }
1734
1735 /* move tree_iter */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001736 tree_iter = lyd_child(match);
Michal Vaskofea12c62020-03-30 11:00:15 +02001737
1738 /* move depth */
1739 --cur_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001740
1741 /* find next op parent */
1742 op_iter = op_node;
1743 for (i = 0; i < cur_depth; ++i) {
Michal Vasko9e685082021-01-29 14:49:09 +01001744 op_iter = lyd_parent(op_iter);
Michal Vasko2f03d222020-12-09 18:15:51 +01001745 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001746 }
1747
Michal Vasko2f03d222020-12-09 18:15:51 +01001748 assert(op_iter);
Michal Vaskobb844672020-07-03 11:06:12 +02001749 *op_subtree = (struct lyd_node *)op_iter;
Michal Vasko2f03d222020-12-09 18:15:51 +01001750 if (!tree || tree_iter) {
1751 /* there is no tree whatsoever or this is the last found sibling */
1752 *tree_sibling = (struct lyd_node *)tree_iter;
1753 } else {
1754 /* matching parent was found but it has no children to insert next to */
1755 assert(match);
1756 *tree_parent = match;
1757 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001758}
1759
Michal Vaskoe0665742021-02-11 11:08:44 +01001760/**
1761 * @brief Validate an RPC/action request, reply, or notification.
1762 *
1763 * @param[in] op_tree Full operation data tree.
1764 * @param[in] op_node Operation node itself.
1765 * @param[in] dep_tree Tree to be used for validating references from the operation subtree.
1766 * @param[in] int_opts Internal parser options.
Michal Vaskofbbea932022-06-07 11:00:55 +02001767 * @param[in] data_type Type of validated data.
Michal Vaskoe0665742021-02-11 11:08:44 +01001768 * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation).
1769 * @param[in] node_when_p Set of nodes with when conditions, if NULL a local set is used.
1770 * @param[in] node_types_p Set of unres node types, if NULL a local set is used.
1771 * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used.
Michal Vasko135719f2022-08-25 12:18:17 +02001772 * @param[in] ext_node_p Set of unres nodes with extensions to validate, if NULL a local set is used.
Michal Vaskoddd76592022-01-17 13:34:48 +01001773 * @param[in] ext_val_p Set of parsed extension data to validate, if NULL a local set is used.
Michal Vaskoe0665742021-02-11 11:08:44 +01001774 * @param[out] diff Optional diff with any changes made by the validation.
1775 * @return LY_SUCCESS on success.
1776 * @return LY_ERR error on error.
1777 */
1778static LY_ERR
Michal Vaskofbbea932022-06-07 11:00:55 +02001779_lyd_validate_op(struct lyd_node *op_tree, struct lyd_node *op_node, const struct lyd_node *dep_tree, enum lyd_type data_type,
Michal Vaskoddd76592022-01-17 13:34:48 +01001780 uint32_t int_opts, ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_types_p,
Michal Vasko135719f2022-08-25 12:18:17 +02001781 struct ly_set *meta_types_p, struct ly_set *ext_node_p, struct ly_set *ext_val_p, struct lyd_node **diff)
Michal Vaskocb7526d2020-03-30 15:08:26 +02001782{
Michal Vaskoe0665742021-02-11 11:08:44 +01001783 LY_ERR rc = LY_SUCCESS;
Michal Vaskofbbea932022-06-07 11:00:55 +02001784 struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_parent, *op_sibling_before, *op_sibling_after, *child;
Michal Vasko135719f2022-08-25 12:18:17 +02001785 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, ext_node = {0}, ext_val = {0};
Michal Vaskocb7526d2020-03-30 15:08:26 +02001786
Michal Vaskoe0665742021-02-11 11:08:44 +01001787 assert(op_tree && op_node);
Michal Vasko135719f2022-08-25 12:18:17 +02001788 assert((node_when_p && node_types_p && meta_types_p && ext_node_p && ext_val_p) ||
1789 (!node_when_p && !node_types_p && !meta_types_p && !ext_node_p && !ext_val_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001790
1791 if (!node_when_p) {
1792 node_when_p = &node_when;
1793 node_types_p = &node_types;
1794 meta_types_p = &meta_types;
Michal Vasko135719f2022-08-25 12:18:17 +02001795 ext_node_p = &ext_node;
Michal Vaskoddd76592022-01-17 13:34:48 +01001796 ext_val_p = &ext_val;
Michal Vaskoe0665742021-02-11 11:08:44 +01001797 }
1798
1799 /* merge op_tree into dep_tree */
1800 lyd_val_op_merge_find(op_tree, op_node, dep_tree, &op_subtree, &tree_sibling, &tree_parent);
Michal Vaskoc61dd062022-06-07 11:01:28 +02001801 op_sibling_before = op_subtree->prev->next ? op_subtree->prev : NULL;
1802 op_sibling_after = op_subtree->next;
Michal Vaskoe0665742021-02-11 11:08:44 +01001803 op_parent = lyd_parent(op_subtree);
Michal Vaskoc61dd062022-06-07 11:01:28 +02001804
Michal Vaskoe0665742021-02-11 11:08:44 +01001805 lyd_unlink_tree(op_subtree);
Michal Vasko6ee6f432021-07-16 09:49:14 +02001806 lyd_insert_node(tree_parent, &tree_sibling, op_subtree, 0);
Michal Vaskoe0665742021-02-11 11:08:44 +01001807 if (!dep_tree) {
1808 dep_tree = tree_sibling;
1809 }
1810
1811 LOG_LOCSET(NULL, op_node, NULL, NULL);
1812
1813 if (int_opts & LYD_INTOPT_REPLY) {
1814 /* add output children defaults */
Michal Vaskoddd76592022-01-17 13:34:48 +01001815 rc = lyd_new_implicit_r(op_node, lyd_node_child_p(op_node), NULL, NULL, node_when_p, node_types_p,
Michal Vaskofcbd78f2022-08-26 08:34:15 +02001816 ext_node_p, LYD_IMPLICIT_OUTPUT, diff);
Michal Vaskoe0665742021-02-11 11:08:44 +01001817 LY_CHECK_GOTO(rc, cleanup);
1818
1819 if (validate_subtree) {
1820 /* skip validating the operation itself, go to children directly */
1821 LY_LIST_FOR(lyd_child(op_node), child) {
Michal Vasko1a6e6902022-08-26 08:35:09 +02001822 rc = lyd_validate_subtree(child, node_when_p, node_types_p, meta_types_p, ext_node_p, ext_val_p, 0, diff);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001823 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001824 }
1825 }
1826 } else {
1827 if (validate_subtree) {
1828 /* prevalidate whole operation subtree */
Michal Vasko1a6e6902022-08-26 08:35:09 +02001829 rc = lyd_validate_subtree(op_node, node_when_p, node_types_p, meta_types_p, ext_node_p, ext_val_p, 0, diff);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001830 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001831 }
1832 }
1833
Michal Vasko906bafa2022-04-22 12:28:55 +02001834 /* finish incompletely validated terminal values/attributes and when conditions on the full tree,
1835 * account for unresolved 'when' that may appear in the non-validated dependency data tree */
Michal Vaskofbbea932022-06-07 11:00:55 +02001836 LY_CHECK_GOTO(rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL, data_type, node_when_p, LYXP_IGNORE_WHEN,
Michal Vasko135719f2022-08-25 12:18:17 +02001837 node_types_p, meta_types_p, ext_node_p, ext_val_p, 0, diff), cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001838
1839 /* perform final validation of the operation/notification */
1840 lyd_validate_obsolete(op_node);
Michal Vasko906bafa2022-04-22 12:28:55 +02001841 LY_CHECK_GOTO(rc = lyd_validate_must(op_node, int_opts, LYXP_IGNORE_WHEN), cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001842
1843 /* final validation of all the descendants */
Michal Vasko906bafa2022-04-22 12:28:55 +02001844 rc = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, int_opts, LYXP_IGNORE_WHEN);
1845 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001846
1847cleanup:
1848 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskoc61dd062022-06-07 11:01:28 +02001849
Michal Vaskoe0665742021-02-11 11:08:44 +01001850 /* restore operation tree */
1851 lyd_unlink_tree(op_subtree);
Michal Vaskoc61dd062022-06-07 11:01:28 +02001852 if (op_sibling_before) {
1853 lyd_insert_after_node(op_sibling_before, op_subtree);
1854 } else if (op_sibling_after) {
1855 lyd_insert_before_node(op_sibling_after, op_subtree);
1856 } else if (op_parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001857 lyd_insert_node(op_parent, NULL, op_subtree, 0);
Michal Vaskoe0665742021-02-11 11:08:44 +01001858 }
1859
1860 ly_set_erase(&node_when, NULL);
1861 ly_set_erase(&node_types, NULL);
1862 ly_set_erase(&meta_types, NULL);
Michal Vasko135719f2022-08-25 12:18:17 +02001863 ly_set_erase(&ext_node, free);
Michal Vaskoddd76592022-01-17 13:34:48 +01001864 ly_set_erase(&ext_val, free);
Michal Vaskoe0665742021-02-11 11:08:44 +01001865 return rc;
1866}
1867
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001868LIBYANG_API_DEF LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001869lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *dep_tree, enum lyd_type data_type, struct lyd_node **diff)
1870{
1871 struct lyd_node *op_node;
1872 uint32_t int_opts;
Michal Vaskofbbea932022-06-07 11:00:55 +02001873 struct ly_set ext_val = {0};
1874 LY_ERR rc;
Michal Vaskoe0665742021-02-11 11:08:44 +01001875
Michal Vasko2da45692022-04-29 09:51:08 +02001876 LY_CHECK_ARG_RET(NULL, op_tree, !dep_tree || !dep_tree->parent, (data_type == LYD_TYPE_RPC_YANG) ||
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001877 (data_type == LYD_TYPE_NOTIF_YANG) || (data_type == LYD_TYPE_REPLY_YANG), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001878 if (diff) {
1879 *diff = NULL;
1880 }
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001881 if (data_type == LYD_TYPE_RPC_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001882 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001883 } else if (data_type == LYD_TYPE_NOTIF_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001884 int_opts = LYD_INTOPT_NOTIF;
1885 } else {
1886 int_opts = LYD_INTOPT_REPLY;
1887 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001888
Michal Vasko2da45692022-04-29 09:51:08 +02001889 if (op_tree->schema && (op_tree->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))) {
1890 /* we have the operation/notification, adjust the pointers */
1891 op_node = op_tree;
1892 while (op_tree->parent) {
1893 op_tree = lyd_parent(op_tree);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001894 }
Michal Vasko2da45692022-04-29 09:51:08 +02001895 } else {
1896 /* find the operation/notification */
1897 while (op_tree->parent) {
1898 op_tree = lyd_parent(op_tree);
1899 }
1900 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
1901 if (!op_node->schema) {
Michal Vaskoac6f4be2022-05-02 10:16:50 +02001902 return lyd_parse_opaq_error(op_node);
Michal Vaskofbbea932022-06-07 11:00:55 +02001903 } else if (op_node->flags & LYD_EXT) {
1904 /* fully validate the rest using the extension instance callback */
1905 LY_CHECK_RET(lyd_validate_nested_ext(op_node, &ext_val));
Michal Vasko135719f2022-08-25 12:18:17 +02001906 rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL, data_type, NULL, 0, NULL, NULL, NULL,
1907 &ext_val, 0, diff);
Michal Vaskofbbea932022-06-07 11:00:55 +02001908 ly_set_erase(&ext_val, free);
1909 return rc;
Michal Vasko2da45692022-04-29 09:51:08 +02001910 }
1911
1912 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) &&
1913 (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
1914 break;
1915 } else if ((int_opts & LYD_INTOPT_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
1916 break;
1917 }
1918 LYD_TREE_DFS_END(op_tree, op_node);
1919 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001920 }
Michal Vasko2da45692022-04-29 09:51:08 +02001921
Michal Vaskoe0665742021-02-11 11:08:44 +01001922 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) {
Michal Vasko9b232082022-06-07 10:59:31 +02001923 if (!op_node || !(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001924 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001925 return LY_EINVAL;
1926 }
1927 } else {
Michal Vasko9b232082022-06-07 10:59:31 +02001928 if (!op_node || (op_node->schema->nodetype != LYS_NOTIF)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001929 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001930 return LY_EINVAL;
1931 }
1932 }
1933
Michal Vaskoe0665742021-02-11 11:08:44 +01001934 /* validate */
Michal Vasko135719f2022-08-25 12:18:17 +02001935 return _lyd_validate_op(op_tree, op_node, dep_tree, data_type, int_opts, 1, NULL, NULL, NULL, NULL, NULL, diff);
Michal Vaskofea12c62020-03-30 11:00:15 +02001936}