blob: b629008ce1a6a6941ec43b93bb08b2aa3c6039ac [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 Vaskod027f382023-02-10 09:13:25 +010043/**
44 * @brief Check validation error taking into account multi-error validation.
45 *
46 * @param[in] r Local return value.
47 * @param[in] err_cmd Command to perform on any error.
48 * @param[in] val_opts Validation options.
49 * @param[in] label Label to go to on fatal error.
50 */
51#define LY_VAL_ERR_GOTO(r, err_cmd, val_opts, label) \
52 if (r) { \
53 err_cmd; \
54 if ((r != LY_EVALID) || !(val_opts & LYD_VALIDATE_MULTI_ERROR)) { \
55 goto label; \
56 } \
57 }
58
Michal Vaskoa6669ba2020-08-06 16:14:26 +020059LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020060lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff)
61{
62 LY_ERR ret = LY_SUCCESS;
63 struct lyd_node *new_diff = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010064 const struct lyd_node *prev_inst;
Michal Vaskoe78faec2021-04-08 17:24:43 +020065 char *key = NULL, *value = NULL, *position = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010066 size_t buflen = 0, bufused = 0;
Michal Vaskoe78faec2021-04-08 17:24:43 +020067 uint32_t pos;
Michal Vasko8104fd42020-07-13 11:09:51 +020068
69 assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE));
70
Michal Vasko81bc5512020-11-13 18:05:18 +010071 if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +020072 if (lysc_is_dup_inst_list(node->schema)) {
73 pos = lyd_list_pos(node);
Michal Vasko81bc5512020-11-13 18:05:18 +010074
Michal Vaskoe78faec2021-04-08 17:24:43 +020075 /* generate position meta */
76 if (pos > 1) {
77 if (asprintf(&position, "%" PRIu32, pos - 1) == -1) {
78 LOGMEM(LYD_CTX(node));
79 ret = LY_EMEM;
80 goto cleanup;
81 }
Michal Vasko81bc5512020-11-13 18:05:18 +010082 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020083 position = strdup("");
84 LY_CHECK_ERR_GOTO(!position, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
Michal Vasko81bc5512020-11-13 18:05:18 +010085 }
86 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020087 if (node->prev->next && (node->prev->schema == node->schema)) {
88 prev_inst = node->prev;
Michal Vasko81bc5512020-11-13 18:05:18 +010089 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020090 /* first instance */
91 prev_inst = NULL;
92 }
93
94 if (node->schema->nodetype == LYS_LIST) {
95 /* generate key meta */
96 if (prev_inst) {
97 LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup);
98 } else {
99 key = strdup("");
100 LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
101 }
102 } else {
103 /* generate value meta */
104 if (prev_inst) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200105 value = strdup(lyd_get_value(prev_inst));
Michal Vaskoe78faec2021-04-08 17:24:43 +0200106 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
107 } else {
108 value = strdup("");
109 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
110 }
Michal Vasko81bc5512020-11-13 18:05:18 +0100111 }
112 }
113 }
114
Michal Vasko8104fd42020-07-13 11:09:51 +0200115 /* create new diff tree */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200116 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 +0200117
118 /* merge into existing diff */
Michal Vaskoc0e58e82020-11-11 19:04:33 +0100119 ret = lyd_diff_merge_all(diff, new_diff, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +0200120
Michal Vasko81bc5512020-11-13 18:05:18 +0100121cleanup:
Michal Vasko8104fd42020-07-13 11:09:51 +0200122 lyd_free_tree(new_diff);
Michal Vasko81bc5512020-11-13 18:05:18 +0100123 free(key);
124 free(value);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200125 free(position);
Michal Vasko8104fd42020-07-13 11:09:51 +0200126 return ret;
127}
128
129/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100130 * @brief Evaluate all relevant "when" conditions of a node.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100131 *
Michal Vaskobd4db892020-11-23 16:58:20 +0100132 * @param[in] tree Data tree.
133 * @param[in] node Node whose relevant when conditions will be evaluated.
134 * @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 +0100135 * @param[in] xpath_options Additional XPath options to use.
Michal Vaskobd4db892020-11-23 16:58:20 +0100136 * @param[out] disabled First when that evaluated false, if any.
137 * @return LY_SUCCESS on success.
138 * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated.
139 * @return LY_ERR value on error.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100140 */
141static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100142lyd_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 +0100143 uint32_t xpath_options, const struct lysc_when **disabled)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100144{
Michal Vaskod027f382023-02-10 09:13:25 +0100145 LY_ERR r;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100146 const struct lyd_node *ctx_node;
147 struct lyxp_set xp_set;
Michal Vaskobd4db892020-11-23 16:58:20 +0100148 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100149
Michal Vaskobd4db892020-11-23 16:58:20 +0100150 assert(!node->schema || (node->schema == schema));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100151
Michal Vaskobd4db892020-11-23 16:58:20 +0100152 *disabled = NULL;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100153
Michal Vaskobd4db892020-11-23 16:58:20 +0100154 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100155 const struct lysc_when *when;
156 struct lysc_when **when_list = lysc_node_when(schema);
Michal Vasko26bbb272022-08-02 14:54:33 +0200157
Radek Krejci9a3823e2021-01-27 20:26:46 +0100158 LY_ARRAY_FOR(when_list, u) {
159 when = when_list[u];
Michal Vaskocde73ac2019-11-14 16:10:27 +0100160
Michal Vaskobd4db892020-11-23 16:58:20 +0100161 /* get context node */
162 if (when->context == schema) {
163 ctx_node = node;
164 } else {
165 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
Michal Vasko9e685082021-01-29 14:49:09 +0100166 ctx_node = lyd_parent(node);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100167 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100168
169 /* evaluate when */
170 memset(&xp_set, 0, sizeof xp_set);
Michal Vaskod027f382023-02-10 09:13:25 +0100171 r = lyxp_eval(LYD_CTX(node), when->cond, schema->module, LY_VALUE_SCHEMA_RESOLVED, when->prefixes,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200172 ctx_node, ctx_node, tree, NULL, &xp_set, LYXP_SCHEMA | xpath_options);
Michal Vaskobd4db892020-11-23 16:58:20 +0100173 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
174
175 /* return error or LY_EINCOMPLETE for dependant unresolved when */
Michal Vaskod027f382023-02-10 09:13:25 +0100176 LY_CHECK_RET(r);
Michal Vaskobd4db892020-11-23 16:58:20 +0100177
178 if (!xp_set.val.bln) {
179 /* false when */
180 *disabled = when;
181 return LY_SUCCESS;
Michal Vasko8104fd42020-07-13 11:09:51 +0200182 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100183 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100184
185 schema = schema->parent;
186 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
187
188 return LY_SUCCESS;
189}
190
191/**
192 * @brief Evaluate when conditions of collected unres nodes.
193 *
194 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100195 * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it.
196 * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be
197 * the first top-level sibling.
Michal Vaskobd4db892020-11-23 16:58:20 +0100198 * @param[in] node_when Set with nodes with "when" conditions.
Michal Vaskod027f382023-02-10 09:13:25 +0100199 * @param[in] val_opts Validation options.
Michal Vasko976ec432021-12-06 15:42:22 +0100200 * @param[in] xpath_options Additional XPath options to use.
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200201 * @param[in,out] node_types Set with nodes with unresolved types, remove any with false "when" parents.
Michal Vaskobd4db892020-11-23 16:58:20 +0100202 * @param[in,out] diff Validation diff.
203 * @return LY_SUCCESS on success.
204 * @return LY_ERR value on error.
205 */
206static LY_ERR
Michal Vaskod027f382023-02-10 09:13:25 +0100207lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when, uint32_t val_opts,
Michal Vasko976ec432021-12-06 15:42:22 +0100208 uint32_t xpath_options, struct ly_set *node_types, struct lyd_node **diff)
Michal Vaskobd4db892020-11-23 16:58:20 +0100209{
Michal Vaskod027f382023-02-10 09:13:25 +0100210 LY_ERR rc = LY_SUCCESS, r;
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200211 uint32_t i, idx;
Michal Vaskobd4db892020-11-23 16:58:20 +0100212 const struct lysc_when *disabled;
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200213 struct lyd_node *node = NULL, *elem;
Michal Vaskobd4db892020-11-23 16:58:20 +0100214
215 if (!node_when->count) {
216 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100217 }
218
Michal Vaskobd4db892020-11-23 16:58:20 +0100219 i = node_when->count;
220 do {
221 --i;
222 node = node_when->dnodes[i];
Radek Krejciddace2c2021-01-08 11:30:56 +0100223 LOG_LOCSET(node->schema, node, NULL, NULL);
Michal Vaskobd4db892020-11-23 16:58:20 +0100224
225 /* evaluate all when expressions that affect this node's existence */
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200226 r = lyd_validate_node_when(*tree, node, node->schema, xpath_options, &disabled);
227 if (!r) {
Michal Vaskobd4db892020-11-23 16:58:20 +0100228 if (disabled) {
229 /* when false */
230 if (node->flags & LYD_WHEN_TRUE) {
231 /* autodelete */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100232 lyd_del_move_root(tree, node, mod);
Michal Vaskobd4db892020-11-23 16:58:20 +0100233 if (diff) {
234 /* add into diff */
Michal Vaskod027f382023-02-10 09:13:25 +0100235 r = lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
236 LY_CHECK_ERR_GOTO(r, rc = r, error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100237 }
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200238
239 /* remove from node types set, if present */
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200240 if (node_types && node_types->count) {
Michal Vasko36ce6b22021-07-26 09:19:21 +0200241 LYD_TREE_DFS_BEGIN(node, elem) {
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200242 /* only term nodes with a validation callback can be in node_types */
243 if ((elem->schema->nodetype & LYD_NODE_TERM) &&
244 ((struct lysc_node_leaf *)elem->schema)->type->plugin->validate &&
245 ly_set_contains(node_types, elem, &idx)) {
Michal Vaskod027f382023-02-10 09:13:25 +0100246 r = ly_set_rm_index(node_types, idx, NULL);
247 LY_CHECK_ERR_GOTO(r, rc = r, error);
Michal Vasko36ce6b22021-07-26 09:19:21 +0200248 }
249 LYD_TREE_DFS_END(node, elem);
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200250 }
Michal Vasko27d2b1b2021-07-19 15:20:02 +0200251 }
252
253 /* free */
Michal Vaskobd4db892020-11-23 16:58:20 +0100254 lyd_free_tree(node);
255 } else {
256 /* invalid data */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100257 LOGVAL(LYD_CTX(node), LY_VCODE_NOWHEN, disabled->cond->expr);
Michal Vaskod027f382023-02-10 09:13:25 +0100258 r = LY_EVALID;
259 LY_VAL_ERR_GOTO(r, rc = r, val_opts, error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100260 }
261 } else {
262 /* when true */
263 node->flags |= LYD_WHEN_TRUE;
264 }
265
Michal Vasko413af592021-12-13 11:50:51 +0100266 /* remove this node from the set keeping the order, its when was resolved */
267 ly_set_rm_index_ordered(node_when, i, NULL);
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200268 } else if (r != LY_EINCOMPLETE) {
Michal Vaskobd4db892020-11-23 16:58:20 +0100269 /* error */
Michal Vaskod027f382023-02-10 09:13:25 +0100270 LY_VAL_ERR_GOTO(r, rc = r, val_opts, error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100271 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100272
Radek Krejciddace2c2021-01-08 11:30:56 +0100273 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskobd4db892020-11-23 16:58:20 +0100274 } while (i);
275
Michal Vaskod027f382023-02-10 09:13:25 +0100276 return rc;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100277
278error:
Radek Krejciddace2c2021-01-08 11:30:56 +0100279 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko6f0c5c72022-08-05 15:28:14 +0200280 return rc;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100281}
282
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200283LY_ERR
Michal Vaskofbbea932022-06-07 11:00:55 +0200284lyd_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 +0200285 uint32_t when_xp_opts, struct ly_set *node_types, struct ly_set *meta_types, struct ly_set *ext_node,
286 struct ly_set *ext_val, uint32_t val_opts, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100287{
Michal Vaskod027f382023-02-10 09:13:25 +0100288 LY_ERR r, rc = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200289 uint32_t i;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100290
Michal Vaskoddd76592022-01-17 13:34:48 +0100291 if (ext_val && ext_val->count) {
292 /* first validate parsed extension data */
293 i = ext_val->count;
294 do {
295 --i;
296
297 struct lyd_ctx_ext_val *ext_v = ext_val->objs[i];
298
299 /* validate extension data */
Michal Vaskod027f382023-02-10 09:13:25 +0100300 r = ext_v->ext->def->plugin->validate(ext_v->ext, ext_v->sibling, *tree, data_type, val_opts, diff);
301 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskoddd76592022-01-17 13:34:48 +0100302
303 /* remove this item from the set */
Michal Vasko8cc3f662022-03-29 11:25:51 +0200304 ly_set_rm_index(ext_val, i, free);
Michal Vaskoddd76592022-01-17 13:34:48 +0100305 } while (i);
306 }
307
Michal Vasko135719f2022-08-25 12:18:17 +0200308 if (ext_node && ext_node->count) {
309 /* validate data nodes with extension instances */
310 i = ext_node->count;
311 do {
312 --i;
313
314 struct lyd_ctx_ext_node *ext_n = ext_node->objs[i];
315
316 /* validate the node */
Michal Vaskod027f382023-02-10 09:13:25 +0100317 r = ext_n->ext->def->plugin->node(ext_n->ext, ext_n->node, val_opts);
318 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vasko135719f2022-08-25 12:18:17 +0200319
320 /* remove this item from the set */
321 ly_set_rm_index(ext_node, i, free);
322 } while (i);
323 }
324
Michal Vaskob1b5c262020-03-05 14:29:47 +0100325 if (node_when) {
326 /* evaluate all when conditions */
327 uint32_t prev_count;
Michal Vasko26bbb272022-08-02 14:54:33 +0200328
Michal Vaskob1b5c262020-03-05 14:29:47 +0100329 do {
330 prev_count = node_when->count;
Michal Vaskod027f382023-02-10 09:13:25 +0100331 r = lyd_validate_unres_when(tree, mod, node_when, val_opts, when_xp_opts, node_types, diff);
332 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
333
Radek Krejci0f969882020-08-21 16:56:47 +0200334 /* there must have been some when conditions resolved */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100335 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100336
Michal Vaskob1b5c262020-03-05 14:29:47 +0100337 /* there could have been no cyclic when dependencies, checked during compilation */
338 assert(!node_when->count);
339 }
340
341 if (node_types && node_types->count) {
342 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200343 i = node_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_node_term *node = node_types->objs[i];
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200348 struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100349
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200350 /* resolve the value of the node */
Michal Vaskoe0608fa2022-10-25 15:01:24 +0200351 LOG_LOCSET(NULL, &node->node, NULL, NULL);
Michal Vaskod027f382023-02-10 09:13:25 +0100352 r = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, &node->node, *tree);
Michal Vaskoe0608fa2022-10-25 15:01:24 +0200353 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskod027f382023-02-10 09:13:25 +0100354 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100355
356 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200357 ly_set_rm_index(node_types, i, NULL);
358 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100359 }
360
Michal Vasko9f96a052020-03-10 09:41:45 +0100361 if (meta_types && meta_types->count) {
362 /* ... and metadata values */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200363 i = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100364 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200365 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100366
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100367 struct lyd_meta *meta = meta_types->objs[i];
Michal Vasko193dacd2022-10-13 08:43:05 +0200368 struct lysc_type *type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100369
Michal Vasko9f96a052020-03-10 09:41:45 +0100370 /* validate and store the value of the metadata */
Michal Vaskofbd037c2022-11-08 10:34:20 +0100371 lyplg_ext_get_storage(meta->annotation, LY_STMT_TYPE, sizeof type, (const void **)&type);
Michal Vaskod027f382023-02-10 09:13:25 +0100372 r = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree);
373 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100374
375 /* remove this attr from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200376 ly_set_rm_index(meta_types, i, NULL);
377 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100378 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100379
Michal Vaskod027f382023-02-10 09:13:25 +0100380cleanup:
381 return rc;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100382}
383
Michal Vaskobb844672020-07-03 11:06:12 +0200384/**
385 * @brief Validate instance duplication.
386 *
387 * @param[in] first First sibling to search in.
388 * @param[in] node Data node instance to check.
389 * @return LY_ERR value.
390 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100391static LY_ERR
392lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100393{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100394 struct lyd_node **match_p;
Radek Krejci857189e2020-09-01 13:26:36 +0200395 ly_bool fail = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100396
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100397 assert(node->flags & LYD_NEW);
398
Michal Vaskod6c18af2021-02-12 12:07:31 +0100399 /* key-less list or non-configuration leaf-list */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200400 if (lysc_is_dup_inst_list(node->schema)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100401 /* duplicate instances allowed */
402 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100403 }
404
Michal Vaskob1b5c262020-03-05 14:29:47 +0100405 /* find exactly the same next instance using hashes if possible */
406 if (node->parent && node->parent->children_ht) {
407 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
408 fail = 1;
409 }
410 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +0200411 for ( ; first; first = first->next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100412 if (first == node) {
413 continue;
414 }
415
416 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
417 if (first->schema == node->schema) {
418 fail = 1;
419 break;
420 }
Michal Vasko8f359bf2020-07-28 10:41:15 +0200421 } else if (!lyd_compare_single(first, node, 0)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100422 fail = 1;
423 break;
424 }
425 }
426 }
427
428 if (fail) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100429 LOGVAL(node->schema->module->ctx, LY_VCODE_DUP, node->schema->name);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100430 return LY_EVALID;
431 }
432 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100433}
434
Michal Vaskobb844672020-07-03 11:06:12 +0200435/**
436 * @brief Validate multiple case data existence with possible autodelete.
437 *
438 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100439 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200440 * @param[in] choic Choice node whose cases to check.
Michal Vasko8104fd42020-07-13 11:09:51 +0200441 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200442 * @return LY_ERR value.
443 */
Michal Vaskocde73ac2019-11-14 16:10:27 +0100444static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100445lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic,
446 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100447{
448 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
449 struct lyd_node *match, *to_del;
Radek Krejci857189e2020-09-01 13:26:36 +0200450 ly_bool found;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100451
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100452 LOG_LOCSET(&choic->node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100453
Michal Vaskob1b5c262020-03-05 14:29:47 +0100454 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
455 found = 0;
456 iter = NULL;
457 match = NULL;
458 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
459 if (match->flags & LYD_NEW) {
460 /* a new case data found, nothing more to look for */
461 found = 2;
462 break;
463 } else {
464 /* and old case data found */
465 if (found == 0) {
466 found = 1;
467 }
468 }
469 }
470
471 if (found == 1) {
472 /* there should not be 2 old cases */
473 if (old_case) {
474 /* old data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100475 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, old_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100476 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100477 return LY_EVALID;
478 }
479
480 /* remember an old existing case */
481 old_case = scase;
482 } else if (found == 2) {
483 if (new_case) {
484 /* new data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100485 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, new_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100486 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100487 return LY_EVALID;
488 }
489
490 /* remember a new existing case */
491 new_case = scase;
492 }
493 }
494
Radek Krejciddace2c2021-01-08 11:30:56 +0100495 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100496
Michal Vaskob1b5c262020-03-05 14:29:47 +0100497 if (old_case && new_case) {
498 /* auto-delete old case */
499 iter = NULL;
500 match = NULL;
501 to_del = NULL;
502 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100503 lyd_del_move_root(first, to_del, mod);
504
Michal Vasko8104fd42020-07-13 11:09:51 +0200505 /* free previous node */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100506 lyd_free_tree(to_del);
Michal Vasko8104fd42020-07-13 11:09:51 +0200507 if (diff) {
508 /* add into diff */
509 LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff));
510 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100511 to_del = match;
512 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100513 lyd_del_move_root(first, to_del, mod);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100514 lyd_free_tree(to_del);
515 }
516
517 return LY_SUCCESS;
518}
519
Michal Vaskobb844672020-07-03 11:06:12 +0200520/**
521 * @brief Check whether a schema node can have some default values (true for NP containers as well).
522 *
523 * @param[in] schema Schema node to check.
524 * @return non-zero if yes,
525 * @return 0 otherwise.
526 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100527static int
528lyd_val_has_default(const struct lysc_node *schema)
529{
530 switch (schema->nodetype) {
531 case LYS_LEAF:
532 if (((struct lysc_node_leaf *)schema)->dflt) {
533 return 1;
534 }
535 break;
536 case LYS_LEAFLIST:
537 if (((struct lysc_node_leaflist *)schema)->dflts) {
538 return 1;
539 }
540 break;
541 case LYS_CONTAINER:
542 if (!(schema->flags & LYS_PRESENCE)) {
543 return 1;
544 }
545 break;
546 default:
547 break;
548 }
549
550 return 0;
551}
552
Michal Vaskobb844672020-07-03 11:06:12 +0200553/**
Michal Vasko42266212022-12-01 08:33:11 +0100554 * @brief Properly delete a node as part of auto-delete validation tasks.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100555 *
556 * @param[in,out] first First sibling, is updated if needed.
Michal Vasko42266212022-12-01 08:33:11 +0100557 * @param[in] del Node instance to delete.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100558 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vasko42266212022-12-01 08:33:11 +0100559 * @param[in,out] node Current iteration node, update it if it is deleted.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100560 * @param[in,out] diff Validation diff.
Michal Vasko42266212022-12-01 08:33:11 +0100561 * @return 1 if @p node auto-deleted and updated to its next sibling.
562 * @return 0 if @p node was not auto-deleted.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100563 */
Michal Vasko42266212022-12-01 08:33:11 +0100564static ly_bool
565lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *del, const struct lys_module *mod,
566 struct lyd_node **node, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100567{
568 struct lyd_node *iter;
Michal Vasko42266212022-12-01 08:33:11 +0100569 ly_bool node_autodel = 0;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100570
Michal Vasko42266212022-12-01 08:33:11 +0100571 lyd_del_move_root(first, del, mod);
572 if (del == *node) {
573 *node = (*node)->next;
574 node_autodel = 1;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100575 }
576 if (diff) {
577 /* add into diff */
Michal Vasko42266212022-12-01 08:33:11 +0100578 if ((del->schema->nodetype == LYS_CONTAINER) && !(del->schema->flags & LYS_PRESENCE)) {
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100579 /* we do not want to track NP container changes, but remember any removed children */
Michal Vasko42266212022-12-01 08:33:11 +0100580 LY_LIST_FOR(lyd_child(del), iter) {
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100581 lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff);
582 }
583 } else {
Michal Vasko42266212022-12-01 08:33:11 +0100584 lyd_val_diff_add(del, LYD_DIFF_OP_DELETE, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100585 }
586 }
Michal Vasko42266212022-12-01 08:33:11 +0100587 lyd_free_tree(del);
588
589 return node_autodel;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100590}
591
592/**
Michal Vasko42266212022-12-01 08:33:11 +0100593 * @brief Auto-delete leaf-list default instances to prevent validation errors.
Michal Vaskobb844672020-07-03 11:06:12 +0200594 *
595 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vasko42266212022-12-01 08:33:11 +0100596 * @param[in,out] node New data node instance to check, is updated if auto-deleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100597 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vasko8104fd42020-07-13 11:09:51 +0200598 * @param[in,out] diff Validation diff.
Michal Vasko42266212022-12-01 08:33:11 +0100599 * @return 1 if @p node auto-deleted and updated to its next sibling.
600 * @return 0 if @p node was not auto-deleted.
Michal Vaskobb844672020-07-03 11:06:12 +0200601 */
Michal Vasko42266212022-12-01 08:33:11 +0100602static ly_bool
603lyd_validate_autodel_leaflist_dflt(struct lyd_node **first, struct lyd_node **node, const struct lys_module *mod,
604 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100605{
Michal Vasko42266212022-12-01 08:33:11 +0100606 const struct lysc_node *schema;
607 struct lyd_node *iter, *next;
608 ly_bool found = 0, node_autodel = 0;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100609
Michal Vasko42266212022-12-01 08:33:11 +0100610 assert((*node)->flags & LYD_NEW);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100611
Michal Vasko42266212022-12-01 08:33:11 +0100612 schema = (*node)->schema;
613 assert(schema->nodetype == LYS_LEAFLIST);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100614
Michal Vasko42266212022-12-01 08:33:11 +0100615 /* check whether there is any explicit instance */
616 LYD_LIST_FOR_INST(*first, schema, iter) {
617 if (!(iter->flags & LYD_DEFAULT)) {
618 found = 1;
619 break;
620 }
621 }
622 if (!found) {
623 /* no explicit instance, keep defaults as they are */
624 return 0;
625 }
626
627 LYD_LIST_FOR_INST_SAFE(*first, schema, next, iter) {
628 if (iter->flags & LYD_DEFAULT) {
629 /* default instance found, remove it */
630 if (lyd_validate_autodel_node_del(first, iter, mod, node, diff)) {
631 node_autodel = 1;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100632 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100633 }
634 }
Michal Vasko42266212022-12-01 08:33:11 +0100635
636 return node_autodel;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100637}
638
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100639/**
Michal Vasko42266212022-12-01 08:33:11 +0100640 * @brief Auto-delete container or leaf default instances to prevent validation errors.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100641 *
642 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vasko42266212022-12-01 08:33:11 +0100643 * @param[in,out] node New data node instance to check, is updated if auto-deleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100644 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100645 * @param[in,out] diff Validation diff.
Michal Vasko42266212022-12-01 08:33:11 +0100646 * @return 1 if @p node auto-deleted and updated to its next sibling.
647 * @return 0 if @p node was not auto-deleted.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100648 */
Michal Vasko42266212022-12-01 08:33:11 +0100649static ly_bool
650lyd_validate_autodel_cont_leaf_dflt(struct lyd_node **first, struct lyd_node **node, const struct lys_module *mod,
651 struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100652{
Michal Vasko42266212022-12-01 08:33:11 +0100653 const struct lysc_node *schema;
654 struct lyd_node *iter, *next;
655 ly_bool found = 0, node_autodel = 0;
656
657 assert((*node)->flags & LYD_NEW);
658
659 schema = (*node)->schema;
660 assert(schema->nodetype & (LYS_LEAF | LYS_CONTAINER));
661
662 /* check whether there is any explicit instance */
663 LYD_LIST_FOR_INST(*first, schema, iter) {
664 if (!(iter->flags & LYD_DEFAULT)) {
665 found = 1;
666 break;
667 }
668 }
669
670 if (found) {
671 /* remove all default instances */
672 LYD_LIST_FOR_INST_SAFE(*first, schema, next, iter) {
673 if (iter->flags & LYD_DEFAULT) {
674 /* default instance, remove it */
675 if (lyd_validate_autodel_node_del(first, iter, mod, node, diff)) {
676 node_autodel = 1;
677 }
678 }
679 }
680 } else {
681 /* remove a single old default instance, if any */
682 LYD_LIST_FOR_INST(*first, schema, iter) {
683 if ((iter->flags & LYD_DEFAULT) && !(iter->flags & LYD_NEW)) {
684 /* old default instance, remove it */
685 if (lyd_validate_autodel_node_del(first, iter, mod, node, diff)) {
686 node_autodel = 1;
687 }
688 break;
689 }
690 }
691 }
692
693 return node_autodel;
694}
695
696/**
697 * @brief Auto-delete leftover default nodes of deleted cases (that have no existing explicit data).
698 *
699 * @param[in,out] first First sibling to search in, is updated if needed.
700 * @param[in,out] node Default data node instance to check.
701 * @param[in] mod Module of the siblings, NULL for nested siblings.
702 * @param[in,out] diff Validation diff.
703 * @return 1 if @p node auto-deleted and updated to its next sibling.
704 * @return 0 if @p node was not auto-deleted.
705 */
706static ly_bool
707lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node **node, const struct lys_module *mod,
708 struct lyd_node **diff)
709{
710 const struct lysc_node *schema;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100711 struct lysc_node_choice *choic;
712 struct lyd_node *iter = NULL;
713 const struct lysc_node *slast = NULL;
Michal Vasko42266212022-12-01 08:33:11 +0100714 ly_bool node_autodel = 0;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100715
Michal Vasko42266212022-12-01 08:33:11 +0100716 assert((*node)->flags & LYD_DEFAULT);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100717
Michal Vasko42266212022-12-01 08:33:11 +0100718 schema = (*node)->schema;
719
720 if (!schema->parent || (schema->parent->nodetype != LYS_CASE)) {
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100721 /* the default node is not a descendant of a case */
Michal Vasko42266212022-12-01 08:33:11 +0100722 return 0;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100723 }
724
Michal Vasko42266212022-12-01 08:33:11 +0100725 choic = (struct lysc_node_choice *)schema->parent->parent;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100726 assert(choic->nodetype == LYS_CHOICE);
727
Michal Vasko42266212022-12-01 08:33:11 +0100728 if (choic->dflt && (choic->dflt == (struct lysc_node_case *)schema->parent)) {
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100729 /* data of a default case, keep them */
Michal Vasko42266212022-12-01 08:33:11 +0100730 return 0;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100731 }
732
733 /* try to find an explicit node of the case */
Michal Vasko42266212022-12-01 08:33:11 +0100734 while ((iter = lys_getnext_data(iter, *first, &slast, schema->parent, NULL))) {
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100735 if (!(iter->flags & LYD_DEFAULT)) {
736 break;
737 }
738 }
739
740 if (!iter) {
741 /* there are only default nodes of the case meaning it does not exist and neither should any default nodes
742 * of the case, remove this one default node */
Michal Vasko42266212022-12-01 08:33:11 +0100743 if (lyd_validate_autodel_node_del(first, *node, mod, node, diff)) {
744 node_autodel = 1;
745 }
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100746 }
Michal Vasko42266212022-12-01 08:33:11 +0100747
748 return node_autodel;
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100749}
750
Michal Vasko17f76642021-08-03 17:01:30 +0200751/**
752 * @brief Validate new siblings in choices, recursively for nested choices.
753 *
754 * @param[in,out] first First sibling.
755 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
756 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskod027f382023-02-10 09:13:25 +0100757 * @param[in] val_opts Validation options.
Michal Vasko17f76642021-08-03 17:01:30 +0200758 * @param[in,out] diff Validation diff.
759 * @return LY_ERR value.
760 */
761static LY_ERR
762lyd_validate_choice_r(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Michal Vaskod027f382023-02-10 09:13:25 +0100763 uint32_t val_opts, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100764{
Michal Vaskod027f382023-02-10 09:13:25 +0100765 LY_ERR r, rc = LY_SUCCESS;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100766 const struct lysc_node *snode = NULL;
767
Michal Vaskob1b5c262020-03-05 14:29:47 +0100768 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
769 /* check case duplicites */
770 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskod027f382023-02-10 09:13:25 +0100771 r = lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff);
772 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vasko17f76642021-08-03 17:01:30 +0200773
774 /* check for nested choice */
Michal Vaskod027f382023-02-10 09:13:25 +0100775 r = lyd_validate_choice_r(first, snode, mod, val_opts, diff);
776 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100777 }
778 }
779
Michal Vaskod027f382023-02-10 09:13:25 +0100780cleanup:
781 return rc;
Michal Vasko17f76642021-08-03 17:01:30 +0200782}
783
784LY_ERR
785lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Michal Vaskod027f382023-02-10 09:13:25 +0100786 uint32_t val_opts, struct lyd_node **diff)
Michal Vasko17f76642021-08-03 17:01:30 +0200787{
Michal Vaskod027f382023-02-10 09:13:25 +0100788 LY_ERR r, rc = LY_SUCCESS;
Michal Vasko42266212022-12-01 08:33:11 +0100789 struct lyd_node *node;
790 const struct lysc_node *last_dflt_schema = NULL;
Michal Vasko17f76642021-08-03 17:01:30 +0200791
792 assert(first && (sparent || mod));
793
794 /* validate choices */
Michal Vaskod027f382023-02-10 09:13:25 +0100795 r = lyd_validate_choice_r(first, sparent, mod, val_opts, diff);
796 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vasko17f76642021-08-03 17:01:30 +0200797
Michal Vasko42266212022-12-01 08:33:11 +0100798 node = *first;
799 while (node) {
Michal Vasko6a6e3082022-05-10 10:32:38 +0200800 if (!node->schema || (mod && (lyd_owner_module(node) != mod))) {
801 /* opaque node or all top-level data from this module checked */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100802 break;
803 }
804
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100805 if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) {
806 /* check only new and default nodes */
Michal Vasko42266212022-12-01 08:33:11 +0100807 node = node->next;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100808 continue;
809 }
810
Michal Vasko42266212022-12-01 08:33:11 +0100811 if (lyd_val_has_default(node->schema) && (node->schema != last_dflt_schema) && (node->flags & LYD_NEW)) {
812 /* remove old default(s) of the new node if an explicit instance exists */
813 last_dflt_schema = node->schema;
814 if (node->schema->nodetype == LYS_LEAFLIST) {
815 if (lyd_validate_autodel_leaflist_dflt(first, &node, mod, diff)) {
816 continue;
817 }
818 } else {
819 if (lyd_validate_autodel_cont_leaf_dflt(first, &node, mod, diff)) {
820 continue;
821 }
822 }
823 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100824
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100825 if (node->flags & LYD_NEW) {
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100826 /* then check new node instance duplicities */
Michal Vasko42266212022-12-01 08:33:11 +0100827 LOG_LOCSET(NULL, node, NULL, NULL);
828 r = lyd_validate_duplicates(*first, node);
829 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskod027f382023-02-10 09:13:25 +0100830 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100831
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100832 /* this node is valid */
833 node->flags &= ~LYD_NEW;
834 }
835
836 if (node->flags & LYD_DEFAULT) {
837 /* remove leftover default nodes from a no-longer existing case */
Michal Vasko42266212022-12-01 08:33:11 +0100838 if (lyd_validate_autodel_case_dflt(first, &node, mod, diff)) {
839 continue;
840 }
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100841 }
Michal Vasko42266212022-12-01 08:33:11 +0100842
843 /* next iter */
844 node = node->next;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100845 }
846
Michal Vaskod027f382023-02-10 09:13:25 +0100847cleanup:
848 return rc;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100849}
850
Michal Vaskobb844672020-07-03 11:06:12 +0200851/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100852 * @brief Evaluate any "when" conditions of a non-existent data node with existing parent.
853 *
854 * @param[in] first First data sibling of the non-existing node.
855 * @param[in] parent Data parent of the non-existing node.
856 * @param[in] snode Schema node of the non-existing node.
857 * @param[out] disabled First when that evaluated false, if any.
858 * @return LY_ERR value.
859 */
860static LY_ERR
861lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
862 const struct lysc_when **disabled)
863{
Michal Vaskod027f382023-02-10 09:13:25 +0100864 LY_ERR rc = LY_SUCCESS;
Michal Vaskobd4db892020-11-23 16:58:20 +0100865 struct lyd_node *tree, *dummy = NULL;
Michal Vaskoa27245c2022-05-02 09:01:35 +0200866 uint32_t xp_opts;
Michal Vaskobd4db892020-11-23 16:58:20 +0100867
868 /* find root */
869 if (parent) {
870 tree = (struct lyd_node *)parent;
871 while (tree->parent) {
872 tree = lyd_parent(tree);
873 }
874 tree = lyd_first_sibling(tree);
875 } else {
Michal Vaskobd99b5e2022-04-29 11:15:47 +0200876 /* is the first sibling from the same module, but may not be the actual first */
877 tree = lyd_first_sibling(first);
Michal Vaskobd4db892020-11-23 16:58:20 +0100878 }
879
880 /* create dummy opaque node */
Michal Vaskod027f382023-02-10 09:13:25 +0100881 rc = lyd_new_opaq((struct lyd_node *)parent, snode->module->ctx, snode->name, NULL, NULL, snode->module->name, &dummy);
882 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskobd4db892020-11-23 16:58:20 +0100883
884 /* connect it if needed */
885 if (!parent) {
886 if (first) {
887 lyd_insert_sibling((struct lyd_node *)first, dummy, &tree);
888 } else {
889 assert(!tree);
890 tree = dummy;
891 }
892 }
893
Michal Vaskoa27245c2022-05-02 09:01:35 +0200894 /* explicitly specified accesible tree */
895 if (snode->flags & LYS_CONFIG_W) {
896 xp_opts = LYXP_ACCESS_TREE_CONFIG;
897 } else {
898 xp_opts = LYXP_ACCESS_TREE_ALL;
899 }
900
Michal Vaskobd4db892020-11-23 16:58:20 +0100901 /* evaluate all when */
Michal Vaskod027f382023-02-10 09:13:25 +0100902 rc = lyd_validate_node_when(tree, dummy, snode, xp_opts, disabled);
903 if (rc == LY_EINCOMPLETE) {
Michal Vaskobd4db892020-11-23 16:58:20 +0100904 /* all other when must be resolved by now */
905 LOGINT(snode->module->ctx);
Michal Vaskod027f382023-02-10 09:13:25 +0100906 rc = LY_EINT;
Michal Vaskobd4db892020-11-23 16:58:20 +0100907 goto cleanup;
Michal Vaskod027f382023-02-10 09:13:25 +0100908 } else if (rc) {
Michal Vaskobd4db892020-11-23 16:58:20 +0100909 /* error */
910 goto cleanup;
911 }
912
913cleanup:
914 lyd_free_tree(dummy);
Michal Vaskod027f382023-02-10 09:13:25 +0100915 return rc;
Michal Vaskobd4db892020-11-23 16:58:20 +0100916}
917
918/**
Michal Vaskobb844672020-07-03 11:06:12 +0200919 * @brief Validate mandatory node existence.
920 *
921 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100922 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200923 * @param[in] snode Schema node to validate.
924 * @return LY_ERR value.
925 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100926static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100927lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100928{
Michal Vaskobd4db892020-11-23 16:58:20 +0100929 const struct lysc_when *disabled;
930
Michal Vaskoa3881362020-01-21 15:57:35 +0100931 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100932 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100933 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100934 return LY_SUCCESS;
935 }
936 } else {
937 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100938
Michal Vaskob1b5c262020-03-05 14:29:47 +0100939 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100940 /* data instance found */
941 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100942 }
943 }
944
Michal Vaskobd4db892020-11-23 16:58:20 +0100945 disabled = NULL;
946 if (lysc_has_when(snode)) {
947 /* if there are any when conditions, they must be true for a validation error */
948 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
949 }
950
951 if (!disabled) {
952 /* node instance not found */
Michal Vasko538b8952021-02-17 11:27:26 +0100953 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskoe9391c72021-10-05 10:04:56 +0200954 LOGVAL_APPTAG(snode->module->ctx, "missing-choice", LY_VCODE_NOMAND_CHOIC, snode->name);
Michal Vasko538b8952021-02-17 11:27:26 +0100955 } else {
956 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND, snode->name);
957 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100958 return LY_EVALID;
959 }
960
961 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100962}
963
Michal Vaskobb844672020-07-03 11:06:12 +0200964/**
965 * @brief Validate min/max-elements constraints, if any.
966 *
967 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100968 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200969 * @param[in] snode Schema node to validate.
970 * @param[in] min Minimum number of elements, 0 for no restriction.
971 * @param[in] max Max number of elements, 0 for no restriction.
972 * @return LY_ERR value.
973 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100974static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100975lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
976 uint32_t min, uint32_t max)
Michal Vaskoa3881362020-01-21 15:57:35 +0100977{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100978 uint32_t count = 0;
Michal Vasko4c583e82020-07-17 12:16:14 +0200979 struct lyd_node *iter;
Michal Vaskobd4db892020-11-23 16:58:20 +0100980 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100981 ly_bool invalid_instance = 0;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100982
Michal Vasko9b368d32020-02-14 13:53:31 +0100983 assert(min || max);
984
Michal Vasko4c583e82020-07-17 12:16:14 +0200985 LYD_LIST_FOR_INST(first, snode, iter) {
986 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100987
Michal Vasko4c583e82020-07-17 12:16:14 +0200988 if (min && (count == min)) {
989 /* satisfied */
990 min = 0;
991 if (!max) {
992 /* nothing more to check */
Michal Vasko9b368d32020-02-14 13:53:31 +0100993 break;
994 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100995 }
Michal Vasko4c583e82020-07-17 12:16:14 +0200996 if (max && (count > max)) {
997 /* not satisifed */
Radek Krejciddace2c2021-01-08 11:30:56 +0100998 LOG_LOCSET(NULL, iter, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100999 invalid_instance = 1;
Michal Vasko4c583e82020-07-17 12:16:14 +02001000 break;
1001 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001002 }
1003
Michal Vasko9b368d32020-02-14 13:53:31 +01001004 if (min) {
1005 assert(count < min);
Michal Vaskobd4db892020-11-23 16:58:20 +01001006
1007 disabled = NULL;
1008 if (lysc_has_when(snode)) {
1009 /* if there are any when conditions, they must be true for a validation error */
1010 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
1011 }
1012
1013 if (!disabled) {
Michal Vaskoe9391c72021-10-05 10:04:56 +02001014 LOGVAL_APPTAG(snode->module->ctx, "too-few-elements", LY_VCODE_NOMIN, snode->name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001015 goto failure;
Michal Vaskobd4db892020-11-23 16:58:20 +01001016 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001017 } else if (max && (count > max)) {
Michal Vaskoe9391c72021-10-05 10:04:56 +02001018 LOGVAL_APPTAG(snode->module->ctx, "too-many-elements", LY_VCODE_NOMAX, snode->name);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001019 goto failure;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001020 }
1021
Michal Vaskoa3881362020-01-21 15:57:35 +01001022 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001023
1024failure:
Radek Krejciddace2c2021-01-08 11:30:56 +01001025 LOG_LOCBACK(0, invalid_instance, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001026 return LY_EVALID;
Michal Vaskoa3881362020-01-21 15:57:35 +01001027}
1028
Michal Vaskobb844672020-07-03 11:06:12 +02001029/**
1030 * @brief Find node referenced by a list unique statement.
1031 *
1032 * @param[in] uniq_leaf Unique leaf to find.
1033 * @param[in] list List instance to use for the search.
1034 * @return Found leaf,
1035 * @return NULL if no leaf found.
1036 */
Michal Vasko14654712020-02-06 08:35:21 +01001037static struct lyd_node *
Michal Vaskobb844672020-07-03 11:06:12 +02001038lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list)
Michal Vasko14654712020-02-06 08:35:21 +01001039{
Michal Vasko9b368d32020-02-14 13:53:31 +01001040 struct lyd_node *node;
1041 const struct lysc_node *iter;
1042 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +01001043
Michal Vasko9b368d32020-02-14 13:53:31 +01001044 /* get leaf depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001045 for (iter = &uniq_leaf->node; iter && (iter != list->schema); iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02001046 ++depth;
Michal Vasko14654712020-02-06 08:35:21 +01001047 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001048
Michal Vaskobb844672020-07-03 11:06:12 +02001049 node = (struct lyd_node *)list;
Michal Vasko9b368d32020-02-14 13:53:31 +01001050 while (node && depth) {
1051 /* find schema node with this depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001052 for (i = depth - 1, iter = &uniq_leaf->node; i; iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +02001053 --i;
Michal Vasko9b368d32020-02-14 13:53:31 +01001054 }
1055
1056 /* find iter instance in children */
1057 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
Radek Krejcia1c1e542020-09-29 16:06:52 +02001058 lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node);
Michal Vasko9b368d32020-02-14 13:53:31 +01001059 --depth;
1060 }
1061
Michal Vasko14654712020-02-06 08:35:21 +01001062 return node;
1063}
1064
Michal Vaskobb844672020-07-03 11:06:12 +02001065/**
1066 * @brief Callback for comparing 2 list unique leaf values.
1067 *
Michal Vasko62524a92021-02-26 10:08:50 +01001068 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +02001069 *
Michal Vaskobb844672020-07-03 11:06:12 +02001070 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +01001071 */
Radek Krejci857189e2020-09-01 13:26:36 +02001072static ly_bool
1073lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data)
Michal Vasko14654712020-02-06 08:35:21 +01001074{
1075 struct ly_ctx *ctx;
1076 struct lysc_node_list *slist;
1077 struct lyd_node *diter, *first, *second;
1078 struct lyd_value *val1, *val2;
1079 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001080 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +01001081
1082 assert(val1_p && val2_p);
1083
1084 first = *((struct lyd_node **)val1_p);
1085 second = *((struct lyd_node **)val2_p);
Michal Vasko41e630c2021-07-23 12:47:18 +02001086 action = (uintptr_t)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +01001087
1088 assert(first && (first->schema->nodetype == LYS_LIST));
1089 assert(second && (second->schema == first->schema));
1090
1091 ctx = first->schema->module->ctx;
1092
1093 slist = (struct lysc_node_list *)first->schema;
1094
1095 /* compare unique leaves */
1096 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001097 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001098 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +01001099 goto uniquecheck;
1100 }
1101 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001102 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +01001103uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001104 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +01001105 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001106 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +01001107 if (diter) {
1108 val1 = &((struct lyd_node_term *)diter)->value;
1109 } else {
1110 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001111 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001112 }
1113
1114 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001115 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +01001116 if (diter) {
1117 val2 = &((struct lyd_node_term *)diter)->value;
1118 } else {
1119 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001120 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001121 }
1122
1123 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
1124 /* values differ or either one is not set */
1125 break;
1126 }
1127 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001128 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +01001129 /* all unique leafs are the same in this set, create this nice error */
Radek Krejci635d2b82021-01-04 11:26:51 +01001130 path1 = lyd_path(first, LYD_PATH_STD, NULL, 0);
1131 path2 = lyd_path(second, LYD_PATH_STD, NULL, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001132
1133 /* use buffer to rebuild the unique string */
Radek Krejcif13b87b2020-12-01 22:02:17 +01001134#define UNIQ_BUF_SIZE 1024
1135 uniq_str = malloc(UNIQ_BUF_SIZE);
Michal Vasko14654712020-02-06 08:35:21 +01001136 uniq_str[0] = '\0';
1137 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001138 LY_ARRAY_FOR(slist->uniques[u], v) {
1139 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +01001140 strcpy(ptr, " ");
1141 ++ptr;
1142 }
Michal Vasko14ed9cd2021-01-28 14:16:25 +01001143 ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], &slist->node, LYSC_PATH_LOG,
Radek Krejcif13b87b2020-12-01 22:02:17 +01001144 ptr, UNIQ_BUF_SIZE - (ptr - uniq_str));
Michal Vasko14654712020-02-06 08:35:21 +01001145 if (!ptr) {
1146 /* path will be incomplete, whatever */
1147 break;
1148 }
1149
1150 ptr += strlen(ptr);
1151 }
Radek Krejciddace2c2021-01-08 11:30:56 +01001152 LOG_LOCSET(NULL, second, NULL, NULL);
Michal Vaskoe9391c72021-10-05 10:04:56 +02001153 LOGVAL_APPTAG(ctx, "data-not-unique", LY_VCODE_NOUNIQ, uniq_str, path1, path2);
Radek Krejciddace2c2021-01-08 11:30:56 +01001154 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001155
1156 free(path1);
1157 free(path2);
1158 free(uniq_str);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001159#undef UNIQ_BUF_SIZE
1160
Michal Vasko14654712020-02-06 08:35:21 +01001161 return 1;
1162 }
1163
1164 if (action > 0) {
1165 /* done */
1166 return 0;
1167 }
1168 }
1169
1170 return 0;
1171}
1172
Michal Vaskobb844672020-07-03 11:06:12 +02001173/**
1174 * @brief Validate list unique leaves.
1175 *
1176 * @param[in] first First sibling to search in.
1177 * @param[in] snode Schema node to validate.
1178 * @param[in] uniques List unique arrays to validate.
1179 * @return LY_ERR value.
1180 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001181static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +02001182lyd_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 +01001183{
Michal Vaskob1b5c262020-03-05 14:29:47 +01001184 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +01001185 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001186 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +01001187 LY_ERR ret = LY_SUCCESS;
Michal Vasko626196f2022-08-05 12:49:52 +02001188 uint32_t hash, i;
Radek Krejci813c02d2021-04-26 10:29:19 +02001189 size_t key_len;
1190 ly_bool dyn;
1191 const void *hash_key;
Michal Vasko41e630c2021-07-23 12:47:18 +02001192 void *cb_data;
Michal Vasko14654712020-02-06 08:35:21 +01001193 struct hash_table **uniqtables = NULL;
1194 struct lyd_value *val;
1195 struct ly_ctx *ctx = snode->module->ctx;
1196
1197 assert(uniques);
1198
1199 /* get all list instances */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001200 LY_CHECK_RET(ly_set_new(&set));
Michal Vaskob1b5c262020-03-05 14:29:47 +01001201 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +01001202 if (diter->schema == snode) {
Radek Krejci3d92e442020-10-12 12:48:13 +02001203 ret = ly_set_add(set, (void *)diter, 1, NULL);
Michal Vaskob0099a92020-08-31 14:55:23 +02001204 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko9b368d32020-02-14 13:53:31 +01001205 }
1206 }
Michal Vasko14654712020-02-06 08:35:21 +01001207
1208 if (set->count == 2) {
1209 /* simple comparison */
1210 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
1211 /* instance duplication */
1212 ret = LY_EVALID;
1213 goto cleanup;
1214 }
1215 } else if (set->count > 2) {
1216 /* use hashes for comparison */
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001217 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +01001218 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001219 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001220 for (v = 0; v < x; v++) {
Michal Vasko41e630c2021-07-23 12:47:18 +02001221 cb_data = (void *)(uintptr_t)(v + 1L);
Michal Vasko626196f2022-08-05 12:49:52 +02001222 uniqtables[v] = lyht_new(lyht_get_fixed_size(set->count), sizeof(struct lyd_node *),
1223 lyd_val_uniq_list_equal, cb_data, 0);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001224 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +01001225 }
1226
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001227 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +01001228 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001229 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +01001230 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001231 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001232 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +01001233 if (diter) {
1234 val = &((struct lyd_node_term *)diter)->value;
1235 } else {
1236 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001237 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001238 }
1239 if (!val) {
1240 /* unique item not present nor has default value */
1241 break;
1242 }
1243
Radek Krejci813c02d2021-04-26 10:29:19 +02001244 /* get hash key */
Michal Vaskodcfac2c2021-05-10 11:36:37 +02001245 hash_key = val->realtype->plugin->print(NULL, val, LY_VALUE_LYB, NULL, &dyn, &key_len);
Radek Krejci813c02d2021-04-26 10:29:19 +02001246 hash = dict_hash_multi(hash, hash_key, key_len);
1247 if (dyn) {
1248 free((void *)hash_key);
Michal Vasko14654712020-02-06 08:35:21 +01001249 }
1250 }
1251 if (!val) {
1252 /* skip this list instance since its unique set is incomplete */
1253 continue;
1254 }
1255
1256 /* finish the hash value */
1257 hash = dict_hash_multi(hash, NULL, 0);
1258
1259 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001260 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +01001261 if (ret == LY_EEXIST) {
1262 /* instance duplication */
1263 ret = LY_EVALID;
1264 }
1265 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
1266 }
1267 }
1268 }
1269
1270cleanup:
1271 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001272 for (v = 0; v < x; v++) {
1273 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +01001274 /* failed when allocating uniquetables[j], following j are not allocated */
1275 break;
1276 }
Michal Vasko77b7f90a2023-01-31 15:42:41 +01001277 lyht_free(uniqtables[v], NULL);
Michal Vasko14654712020-02-06 08:35:21 +01001278 }
1279 free(uniqtables);
1280
1281 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +01001282}
1283
Michal Vaskobb844672020-07-03 11:06:12 +02001284/**
1285 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
1286 *
1287 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +01001288 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +02001289 * @param[in] sparent Schema parent of the nodes to check.
1290 * @param[in] mod Module of the nodes to check.
1291 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskoe0665742021-02-11 11:08:44 +01001292 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001293 * @return LY_ERR value.
1294 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001295static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001296lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001297 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 +01001298{
Michal Vaskod027f382023-02-10 09:13:25 +01001299 LY_ERR r, rc = LY_SUCCESS;
Michal Vasko6c16cda2021-02-04 11:05:52 +01001300 const struct lysc_node *snode = NULL, *scase;
Michal Vaskoa3881362020-01-21 15:57:35 +01001301 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +02001302 struct lysc_node_leaflist *sllist;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001303 uint32_t getnext_opts;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001304
Michal Vaskoe0665742021-02-11 11:08:44 +01001305 getnext_opts = LYS_GETNEXT_WITHCHOICE | (int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001306
Michal Vaskoa3881362020-01-21 15:57:35 +01001307 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001308 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +02001309 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001310 continue;
1311 }
1312
Radek Krejciddace2c2021-01-08 11:30:56 +01001313 LOG_LOCSET(snode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001314
Michal Vaskoa3881362020-01-21 15:57:35 +01001315 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +02001316 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +01001317 slist = (struct lysc_node_list *)snode;
1318 if (slist->min || slist->max) {
Michal Vaskod027f382023-02-10 09:13:25 +01001319 r = lyd_validate_minmax(first, parent, snode, slist->min, slist->max);
1320 LY_VAL_ERR_GOTO(r, rc = r, val_opts, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001321 }
Michal Vaskod8958df2020-08-05 13:27:36 +02001322 } else if (snode->nodetype == LYS_LEAFLIST) {
1323 sllist = (struct lysc_node_leaflist *)snode;
1324 if (sllist->min || sllist->max) {
Michal Vaskod027f382023-02-10 09:13:25 +01001325 r = lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max);
1326 LY_VAL_ERR_GOTO(r, rc = r, val_opts, error);
Michal Vaskod8958df2020-08-05 13:27:36 +02001327 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001328
Michal Vaskoacd83e72020-02-04 14:12:01 +01001329 } else if (snode->flags & LYS_MAND_TRUE) {
Radek Krejcif6a11002020-08-21 13:29:07 +02001330 /* check generic mandatory existence */
Michal Vaskod027f382023-02-10 09:13:25 +01001331 r = lyd_validate_mandatory(first, parent, snode);
1332 LY_VAL_ERR_GOTO(r, rc = r, val_opts, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001333 }
1334
1335 /* check unique */
1336 if (snode->nodetype == LYS_LIST) {
1337 slist = (struct lysc_node_list *)snode;
1338 if (slist->uniques) {
Michal Vaskod027f382023-02-10 09:13:25 +01001339 r = lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques);
1340 LY_VAL_ERR_GOTO(r, rc = r, val_opts, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001341 }
1342 }
1343
Michal Vasko6c16cda2021-02-04 11:05:52 +01001344 if (snode->nodetype == LYS_CHOICE) {
1345 /* find the existing case, if any */
1346 LY_LIST_FOR(lysc_node_child(snode), scase) {
1347 if (lys_getnext_data(NULL, first, NULL, scase, NULL)) {
1348 /* validate only this case */
Michal Vaskod027f382023-02-10 09:13:25 +01001349 r = lyd_validate_siblings_schema_r(first, parent, scase, mod, val_opts, int_opts);
1350 LY_VAL_ERR_GOTO(r, rc = r, val_opts, error);
Michal Vasko6c16cda2021-02-04 11:05:52 +01001351 break;
1352 }
1353 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001354 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001355
Radek Krejciddace2c2021-01-08 11:30:56 +01001356 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001357 }
1358
Michal Vaskod027f382023-02-10 09:13:25 +01001359 return rc;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001360
1361error:
Radek Krejciddace2c2021-01-08 11:30:56 +01001362 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskod027f382023-02-10 09:13:25 +01001363 return rc;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001364}
1365
Michal Vaskobb844672020-07-03 11:06:12 +02001366/**
1367 * @brief Validate obsolete nodes, only warnings are printed.
1368 *
1369 * @param[in] node Node to check.
1370 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001371static void
1372lyd_validate_obsolete(const struct lyd_node *node)
1373{
1374 const struct lysc_node *snode;
1375
1376 snode = node->schema;
1377 do {
1378 if (snode->flags & LYS_STATUS_OBSLT) {
1379 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
1380 break;
1381 }
1382
1383 snode = snode->parent;
1384 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
1385}
1386
Michal Vaskobb844672020-07-03 11:06:12 +02001387/**
1388 * @brief Validate must conditions of a data node.
1389 *
1390 * @param[in] node Node to validate.
Michal Vaskod027f382023-02-10 09:13:25 +01001391 * @param[in] val_opts Validation options.
Michal Vaskoe0665742021-02-11 11:08:44 +01001392 * @param[in] int_opts Internal parser options.
Michal Vasko906bafa2022-04-22 12:28:55 +02001393 * @param[in] xpath_options Additional XPath options to use.
Michal Vaskobb844672020-07-03 11:06:12 +02001394 * @return LY_ERR value.
1395 */
Michal Vaskocc048b22020-03-27 15:52:38 +01001396static LY_ERR
Michal Vaskod027f382023-02-10 09:13:25 +01001397lyd_validate_must(const struct lyd_node *node, uint32_t val_opts, uint32_t int_opts, uint32_t xpath_options)
Michal Vaskocc048b22020-03-27 15:52:38 +01001398{
Michal Vaskod027f382023-02-10 09:13:25 +01001399 LY_ERR r, rc = LY_SUCCESS;
Michal Vaskocc048b22020-03-27 15:52:38 +01001400 struct lyxp_set xp_set;
1401 struct lysc_must *musts;
1402 const struct lyd_node *tree;
Radek Krejci9a3823e2021-01-27 20:26:46 +01001403 const struct lysc_node *schema;
Michal Vaskoe9391c72021-10-05 10:04:56 +02001404 const char *emsg, *eapptag;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001405 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +01001406
Michal Vaskoe0665742021-02-11 11:08:44 +01001407 assert((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) != (LYD_INTOPT_RPC | LYD_INTOPT_REPLY));
1408 assert((int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) != (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY));
1409
Radek Krejci9a3823e2021-01-27 20:26:46 +01001410 if (node->schema->nodetype & (LYS_ACTION | LYS_RPC)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001411 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001412 schema = &((struct lysc_node_action *)node->schema)->input.node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001413 } else if (int_opts & LYD_INTOPT_REPLY) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001414 schema = &((struct lysc_node_action *)node->schema)->output.node;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001415 } else {
Michal Vaskoa1db2342021-07-19 12:23:23 +02001416 LOGINT_RET(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +02001417 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001418 } else {
1419 schema = node->schema;
Michal Vaskocc048b22020-03-27 15:52:38 +01001420 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001421 musts = lysc_node_musts(schema);
Michal Vaskocc048b22020-03-27 15:52:38 +01001422 if (!musts) {
1423 /* no must to evaluate */
1424 return LY_SUCCESS;
1425 }
1426
1427 /* find first top-level node */
Michal Vasko9e685082021-01-29 14:49:09 +01001428 for (tree = node; tree->parent; tree = lyd_parent(tree)) {}
Michal Vaskof9221e62021-02-04 12:10:14 +01001429 tree = lyd_first_sibling(tree);
Michal Vaskocc048b22020-03-27 15:52:38 +01001430
1431 LY_ARRAY_FOR(musts, u) {
1432 memset(&xp_set, 0, sizeof xp_set);
1433
1434 /* evaluate must */
Michal Vaskod027f382023-02-10 09:13:25 +01001435 r = lyxp_eval(LYD_CTX(node), musts[u].cond, node->schema->module, LY_VALUE_SCHEMA_RESOLVED,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02001436 musts[u].prefixes, node, node, tree, NULL, &xp_set, LYXP_SCHEMA | xpath_options);
Michal Vaskod027f382023-02-10 09:13:25 +01001437 if (r == LY_EINCOMPLETE) {
1438 LOGINT(LYD_CTX(node));
1439 r = LY_EINT;
Michal Vaskoa1db2342021-07-19 12:23:23 +02001440 }
Michal Vaskod027f382023-02-10 09:13:25 +01001441 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vaskocc048b22020-03-27 15:52:38 +01001442
1443 /* check the result */
1444 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02001445 if (!xp_set.val.bln) {
Michal Vaskoe9391c72021-10-05 10:04:56 +02001446 /* use specific error information */
1447 emsg = musts[u].emsg;
1448 eapptag = musts[u].eapptag ? musts[u].eapptag : "must-violation";
1449 if (emsg) {
1450 LOGVAL_APPTAG(LYD_CTX(node), eapptag, LYVE_DATA, "%s", emsg);
1451 } else {
1452 LOGVAL_APPTAG(LYD_CTX(node), eapptag, LY_VCODE_NOMUST, musts[u].cond->expr);
1453 }
Michal Vaskod027f382023-02-10 09:13:25 +01001454 r = LY_EVALID;
1455 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskocc048b22020-03-27 15:52:38 +01001456 }
1457 }
1458
Michal Vaskod027f382023-02-10 09:13:25 +01001459cleanup:
1460 return rc;
Michal Vaskocc048b22020-03-27 15:52:38 +01001461}
1462
Michal Vaskoe0665742021-02-11 11:08:44 +01001463/**
1464 * @brief Perform all remaining validation tasks, the data tree must be final when calling this function.
1465 *
1466 * @param[in] first First sibling.
1467 * @param[in] parent Data parent.
1468 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
1469 * @param[in] mod Module of the siblings, NULL for nested siblings.
1470 * @param[in] val_opts Validation options (@ref datavalidationoptions).
1471 * @param[in] int_opts Internal parser options.
Michal Vasko906bafa2022-04-22 12:28:55 +02001472 * @param[in] must_xp_opts Additional XPath options to use for evaluating "must".
Michal Vaskoe0665742021-02-11 11:08:44 +01001473 * @return LY_ERR value.
1474 */
1475static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001476lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent,
Michal Vasko906bafa2022-04-22 12:28:55 +02001477 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 +01001478{
Michal Vaskod027f382023-02-10 09:13:25 +01001479 LY_ERR r, rc = LY_SUCCESS;
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001480 const char *innode;
Radek Krejci7f769d72020-07-11 23:13:56 +02001481 struct lyd_node *next = NULL, *node;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001482
Michal Vasko14654712020-02-06 08:35:21 +01001483 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001484 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vasko61ad1ff2022-02-10 15:48:39 +01001485 if (node->flags & LYD_EXT) {
1486 /* ext instance data should have already been validated */
1487 continue;
1488 }
1489
Radek Krejciddace2c2021-01-08 11:30:56 +01001490 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001491
Michal Vaskoa8c61722020-03-27 16:59:32 +01001492 /* opaque data */
1493 if (!node->schema) {
Michal Vaskoac6f4be2022-05-02 10:16:50 +02001494 r = lyd_parse_opaq_error(node);
Michal Vaskod027f382023-02-10 09:13:25 +01001495 goto next_iter;
Michal Vaskoa8c61722020-03-27 16:59:32 +01001496 }
1497
Michal Vasko6344e7a2022-05-10 10:08:53 +02001498 if (!node->parent && mod && (lyd_owner_module(node) != mod)) {
1499 /* all top-level data from this module checked */
1500 LOG_LOCBACK(1, 1, 0, 0);
1501 break;
1502 }
1503
Michal Vasko8d289f92021-12-02 10:11:00 +01001504 /* no state/input/output/op data */
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001505 innode = NULL;
Radek Krejci7931b192020-06-25 17:05:03 +02001506 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001507 innode = "state";
Michal Vaskoe0665742021-02-11 11:08:44 +01001508 } else if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) && (node->schema->flags & LYS_IS_OUTPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001509 innode = "output";
Michal Vaskoe0665742021-02-11 11:08:44 +01001510 } else if ((int_opts & LYD_INTOPT_REPLY) && (node->schema->flags & LYS_IS_INPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001511 innode = "input";
Michal Vasko8d289f92021-12-02 10:11:00 +01001512 } else if (!(int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) && (node->schema->nodetype == LYS_RPC)) {
1513 innode = "rpc";
1514 } else if (!(int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) && (node->schema->nodetype == LYS_ACTION)) {
1515 innode = "action";
1516 } else if (!(int_opts & LYD_INTOPT_NOTIF) && (node->schema->nodetype == LYS_NOTIF)) {
1517 innode = "notification";
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001518 }
1519 if (innode) {
1520 LOGVAL(LYD_CTX(node), LY_VCODE_UNEXPNODE, innode, node->schema->name);
Michal Vaskod027f382023-02-10 09:13:25 +01001521 r = LY_EVALID;
1522 goto next_iter;
Michal Vasko5b37a352020-03-06 13:38:33 +01001523 }
1524
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001525 /* obsolete data */
1526 lyd_validate_obsolete(node);
1527
Michal Vaskocc048b22020-03-27 15:52:38 +01001528 /* node's musts */
Michal Vaskod027f382023-02-10 09:13:25 +01001529 if ((r = lyd_validate_must(node, val_opts, int_opts, must_xp_opts))) {
1530 goto next_iter;
Michal Vasko22e8f1f2021-12-02 09:26:06 +01001531 }
Michal Vaskocc048b22020-03-27 15:52:38 +01001532
Michal Vasko53d97a12020-11-05 17:39:10 +01001533 /* node value was checked by plugins */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001534
Michal Vaskod027f382023-02-10 09:13:25 +01001535next_iter:
1536 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
1537 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +01001538 }
Michal Vaskocde73ac2019-11-14 16:10:27 +01001539
Michal Vasko14654712020-02-06 08:35:21 +01001540 /* validate schema-based restrictions */
Michal Vaskod027f382023-02-10 09:13:25 +01001541 r = lyd_validate_siblings_schema_r(first, parent, sparent, mod ? mod->compiled : NULL, val_opts, int_opts);
1542 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +01001543
Michal Vaskob1b5c262020-03-05 14:29:47 +01001544 LY_LIST_FOR(first, node) {
Michal Vasko19034e22021-07-19 12:24:14 +02001545 if (!node->parent && mod && (lyd_owner_module(node) != mod)) {
1546 /* all top-level data from this module checked */
1547 break;
1548 }
1549
Michal Vasko14654712020-02-06 08:35:21 +01001550 /* validate all children recursively */
Michal Vaskod027f382023-02-10 09:13:25 +01001551 r = lyd_validate_final_r(lyd_child(node), node, node->schema, NULL, val_opts, int_opts, must_xp_opts);
1552 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001553
Michal Vaskob1b5c262020-03-05 14:29:47 +01001554 /* set default for containers */
Michal Vasko4754d4a2022-12-01 10:11:21 +01001555 lyd_cont_set_dflt(node);
Michal Vasko9b368d32020-02-14 13:53:31 +01001556 }
1557
Michal Vaskod027f382023-02-10 09:13:25 +01001558cleanup:
1559 return rc;
Michal Vasko9b368d32020-02-14 13:53:31 +01001560}
1561
Radek Krejci7931b192020-06-25 17:05:03 +02001562/**
Michal Vaskoddd76592022-01-17 13:34:48 +01001563 * @brief Validate extension instance data by storing it in its unres set.
1564 *
1565 * @param[in] sibling First sibling with ::LYD_EXT flag, all the following ones are expected to have it, too.
1566 * @param[in,out] ext_val Set with parsed extension instance data to validate.
1567 * @return LY_ERR value.
1568 */
1569static LY_ERR
1570lyd_validate_nested_ext(struct lyd_node *sibling, struct ly_set *ext_val)
1571{
1572 struct lyd_node *node;
1573 struct lyd_ctx_ext_val *ext_v;
1574 struct lysc_ext_instance *nested_exts, *ext = NULL;
1575 LY_ARRAY_COUNT_TYPE u;
1576
1577 /* check of basic assumptions */
1578 if (!sibling->parent || !sibling->parent->schema) {
1579 LOGINT_RET(LYD_CTX(sibling));
1580 }
1581 LY_LIST_FOR(sibling, node) {
1582 if (!(node->flags & LYD_EXT)) {
1583 LOGINT_RET(LYD_CTX(sibling));
1584 }
1585 }
1586
1587 /* try to find the extension instance */
1588 nested_exts = sibling->parent->schema->exts;
1589 LY_ARRAY_FOR(nested_exts, u) {
1590 if (nested_exts[u].def->plugin->validate) {
1591 if (ext) {
1592 /* more extension instances with validate callback */
1593 LOGINT_RET(LYD_CTX(sibling));
1594 }
1595 ext = &nested_exts[u];
1596 }
1597 }
1598 if (!ext) {
1599 /* no extension instance with validate callback */
1600 LOGINT_RET(LYD_CTX(sibling));
1601 }
1602
1603 /* store for validation */
1604 ext_v = malloc(sizeof *ext_v);
1605 LY_CHECK_ERR_RET(!ext_v, LOGMEM(LYD_CTX(sibling)), LY_EMEM);
1606 ext_v->ext = ext;
1607 ext_v->sibling = sibling;
1608 LY_CHECK_RET(ly_set_add(ext_val, ext_v, 1, NULL));
1609
1610 return LY_SUCCESS;
1611}
1612
Michal Vasko135719f2022-08-25 12:18:17 +02001613LY_ERR
1614lyd_validate_node_ext(struct lyd_node *node, struct ly_set *ext_node)
1615{
1616 struct lyd_ctx_ext_node *ext_n;
1617 struct lysc_ext_instance *exts;
1618 LY_ARRAY_COUNT_TYPE u;
1619
1620 /* try to find a relevant extension instance with node callback */
1621 exts = node->schema->exts;
1622 LY_ARRAY_FOR(exts, u) {
1623 if (exts[u].def->plugin && exts[u].def->plugin->node) {
1624 /* store for validation */
1625 ext_n = malloc(sizeof *ext_n);
1626 LY_CHECK_ERR_RET(!ext_n, LOGMEM(LYD_CTX(node)), LY_EMEM);
1627 ext_n->ext = &exts[u];
1628 ext_n->node = node;
1629 LY_CHECK_RET(ly_set_add(ext_node, ext_n, 1, NULL));
1630 }
1631 }
1632
1633 return LY_SUCCESS;
1634}
1635
Michal Vaskoddd76592022-01-17 13:34:48 +01001636/**
Michal Vaskobb844672020-07-03 11:06:12 +02001637 * @brief Validate the whole data subtree.
1638 *
1639 * @param[in] root Subtree root.
Michal Vaskoe0665742021-02-11 11:08:44 +01001640 * @param[in,out] node_when Set for nodes with when conditions.
Michal Vasko32711382020-12-03 14:14:31 +01001641 * @param[in,out] node_types Set for unres node types.
1642 * @param[in,out] meta_types Set for unres metadata types.
Michal Vasko1a6e6902022-08-26 08:35:09 +02001643 * @param[in,out] ext_node Set with nodes with extensions to validate.
Michal Vaskoddd76592022-01-17 13:34:48 +01001644 * @param[in,out] ext_val Set for parsed extension data to validate.
Michal Vaskod027f382023-02-10 09:13:25 +01001645 * @param[in] val_opts Validation options.
Michal Vasko8104fd42020-07-13 11:09:51 +02001646 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001647 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001648 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001649static LY_ERR
Michal Vaskoddd76592022-01-17 13:34:48 +01001650lyd_validate_subtree(struct lyd_node *root, struct ly_set *node_when, struct ly_set *node_types,
Michal Vaskod027f382023-02-10 09:13:25 +01001651 struct ly_set *meta_types, struct ly_set *ext_node, struct ly_set *ext_val, uint32_t val_opts,
Michal Vasko1a6e6902022-08-26 08:35:09 +02001652 struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001653{
Michal Vaskod027f382023-02-10 09:13:25 +01001654 LY_ERR r, rc = LY_SUCCESS;
Michal Vaskofea12c62020-03-30 11:00:15 +02001655 const struct lyd_meta *meta;
Michal Vasko193dacd2022-10-13 08:43:05 +02001656 const struct lysc_type *type;
Michal Vasko56daf732020-08-10 10:57:18 +02001657 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001658
Michal Vasko56daf732020-08-10 10:57:18 +02001659 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vaskoddd76592022-01-17 13:34:48 +01001660 if (node->flags & LYD_EXT) {
1661 /* validate using the extension instance callback */
1662 return lyd_validate_nested_ext(node, ext_val);
1663 }
1664
Michal Vasko5900da42021-08-04 11:02:43 +02001665 if (!node->schema) {
Michal Vaskoddd76592022-01-17 13:34:48 +01001666 /* do not validate opaque nodes */
aPiecek18a844e2021-08-10 11:06:24 +02001667 goto next_node;
Michal Vasko5900da42021-08-04 11:02:43 +02001668 }
1669
Michal Vasko0275cf62020-11-05 17:40:30 +01001670 LY_LIST_FOR(node->meta, meta) {
Michal Vaskofbd037c2022-11-08 10:34:20 +01001671 lyplg_ext_get_storage(meta->annotation, LY_STMT_TYPE, sizeof type, (const void **)&type);
Michal Vasko193dacd2022-10-13 08:43:05 +02001672 if (type->plugin->validate) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001673 /* metadata type resolution */
Michal Vaskod027f382023-02-10 09:13:25 +01001674 r = ly_set_add(meta_types, (void *)meta, 1, NULL);
1675 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001676 }
Michal Vasko0275cf62020-11-05 17:40:30 +01001677 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001678
Michal Vasko0275cf62020-11-05 17:40:30 +01001679 if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) {
1680 /* node type resolution */
Michal Vaskod027f382023-02-10 09:13:25 +01001681 r = ly_set_add(node_types, (void *)node, 1, NULL);
1682 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vasko0275cf62020-11-05 17:40:30 +01001683 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1684 /* new node validation, autodelete */
Michal Vaskod027f382023-02-10 09:13:25 +01001685 r = lyd_validate_new(lyd_node_child_p(node), node->schema, NULL, val_opts, diff);
1686 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001687
Michal Vasko0275cf62020-11-05 17:40:30 +01001688 /* add nested defaults */
Michal Vaskod027f382023-02-10 09:13:25 +01001689 r = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL, NULL, NULL,
1690 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
1691 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vasko0275cf62020-11-05 17:40:30 +01001692 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001693
Michal Vaskof4d67ea2021-03-31 13:53:21 +02001694 if (lysc_has_when(node->schema)) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001695 /* when evaluation */
Michal Vaskod027f382023-02-10 09:13:25 +01001696 r = ly_set_add(node_when, (void *)node, 1, NULL);
1697 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001698 }
1699
Michal Vasko1a6e6902022-08-26 08:35:09 +02001700 /* store for ext instance node validation, if needed */
Michal Vaskod027f382023-02-10 09:13:25 +01001701 r = lyd_validate_node_ext(node, ext_node);
1702 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vasko1a6e6902022-08-26 08:35:09 +02001703
aPiecek18a844e2021-08-10 11:06:24 +02001704next_node:
Michal Vasko56daf732020-08-10 10:57:18 +02001705 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001706 }
1707
Michal Vaskod027f382023-02-10 09:13:25 +01001708cleanup:
1709 return rc;
Michal Vaskofea12c62020-03-30 11:00:15 +02001710}
1711
Michal Vaskoe0665742021-02-11 11:08:44 +01001712LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001713lyd_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 +01001714 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 +02001715 struct ly_set *ext_node_p, struct ly_set *ext_val_p, struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001716{
Michal Vaskod027f382023-02-10 09:13:25 +01001717 LY_ERR r, rc = LY_SUCCESS;
Michal Vasko73e47212020-12-03 14:20:16 +01001718 struct lyd_node *first, *next, **first2, *iter;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001719 const struct lys_module *mod;
Michal Vasko135719f2022-08-25 12:18:17 +02001720 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 +01001721 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001722
Michal Vaskoe0665742021-02-11 11:08:44 +01001723 assert(tree && ctx);
Michal Vasko135719f2022-08-25 12:18:17 +02001724 assert((node_when_p && node_types_p && meta_types_p && ext_node_p && ext_val_p) ||
1725 (!node_when_p && !node_types_p && !meta_types_p && !ext_node_p && !ext_val_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001726
1727 if (!node_when_p) {
1728 node_when_p = &node_when;
1729 node_types_p = &node_types;
1730 meta_types_p = &meta_types;
Michal Vasko135719f2022-08-25 12:18:17 +02001731 ext_node_p = &ext_node;
Michal Vaskoddd76592022-01-17 13:34:48 +01001732 ext_val_p = &ext_val;
Michal Vasko8104fd42020-07-13 11:09:51 +02001733 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001734
Michal Vaskob1b5c262020-03-05 14:29:47 +01001735 next = *tree;
1736 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001737 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001738 mod = lyd_data_next_module(&next, &first);
1739 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001740 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001741 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001742 if (!mod) {
1743 break;
1744 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001745 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001746 /* make sure first2 changes are carried to tree */
1747 first2 = tree;
1748 } else {
1749 first2 = &first;
1750 }
1751
1752 /* validate new top-level nodes of this module, autodelete */
Michal Vaskod027f382023-02-10 09:13:25 +01001753 r = lyd_validate_new(first2, NULL, mod, val_opts, diff);
1754 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001755
Radek Krejci7be7b9f2021-02-24 11:46:27 +01001756 /* add all top-level defaults for this module, if going to validate subtree, do not add into unres sets
1757 * (lyd_validate_subtree() adds all the nodes in that case) */
Michal Vaskod027f382023-02-10 09:13:25 +01001758 r = lyd_new_implicit_r(NULL, first2, NULL, mod, validate_subtree ? NULL : node_when_p,
Michal Vaskofcbd78f2022-08-26 08:34:15 +02001759 validate_subtree ? NULL : node_types_p, validate_subtree ? NULL : ext_node_p,
1760 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
Michal Vaskod027f382023-02-10 09:13:25 +01001761 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001762
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001763 /* our first module node pointer may no longer be the first */
Michal Vasko598063b2021-07-19 11:39:05 +02001764 first = *first2;
1765 lyd_first_module_sibling(&first, mod);
1766 if (!first || (first == *tree)) {
1767 first2 = tree;
1768 } else {
1769 first2 = &first;
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001770 }
1771
Michal Vaskoe0665742021-02-11 11:08:44 +01001772 if (validate_subtree) {
1773 /* process nested nodes */
1774 LY_LIST_FOR(*first2, iter) {
Michal Vasko0e72b7a2021-07-16 14:53:27 +02001775 if (lyd_owner_module(iter) != mod) {
1776 break;
1777 }
1778
Michal Vaskod027f382023-02-10 09:13:25 +01001779 r = lyd_validate_subtree(iter, node_when_p, node_types_p, meta_types_p, ext_node_p, ext_val_p,
1780 val_opts, diff);
1781 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001782 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001783 }
1784
1785 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vaskod027f382023-02-10 09:13:25 +01001786 r = lyd_validate_unres(first2, mod, LYD_TYPE_DATA_YANG, node_when_p, 0, node_types_p, meta_types_p,
Michal Vasko135719f2022-08-25 12:18:17 +02001787 ext_node_p, ext_val_p, val_opts, diff);
Michal Vaskod027f382023-02-10 09:13:25 +01001788 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001789
1790 /* perform final validation that assumes the data tree is final */
Michal Vaskod027f382023-02-10 09:13:25 +01001791 r = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0, 0);
1792 LY_VAL_ERR_GOTO(r, rc = r, val_opts, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001793 }
1794
Michal Vaskof03ed032020-03-04 13:31:44 +01001795cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +01001796 ly_set_erase(&node_when, NULL);
Michal Vasko32711382020-12-03 14:14:31 +01001797 ly_set_erase(&node_types, NULL);
1798 ly_set_erase(&meta_types, NULL);
Michal Vasko135719f2022-08-25 12:18:17 +02001799 ly_set_erase(&ext_node, free);
Michal Vaskoddd76592022-01-17 13:34:48 +01001800 ly_set_erase(&ext_val, free);
Michal Vaskod027f382023-02-10 09:13:25 +01001801 return rc;
Michal Vaskof03ed032020-03-04 13:31:44 +01001802}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001803
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001804LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001805lyd_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 +01001806{
Michal Vaskoe0665742021-02-11 11:08:44 +01001807 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001808 LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, ctx, LY_EINVAL);
Michal Vaskoe0665742021-02-11 11:08:44 +01001809 if (!ctx) {
1810 ctx = LYD_CTX(*tree);
1811 }
1812 if (diff) {
1813 *diff = NULL;
1814 }
1815
Michal Vasko135719f2022-08-25 12:18:17 +02001816 return lyd_validate(tree, NULL, ctx, val_opts, 1, NULL, NULL, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001817}
1818
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001819LIBYANG_API_DEF LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001820lyd_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 +01001821{
Michal Vaskoe0665742021-02-11 11:08:44 +01001822 LY_CHECK_ARG_RET(NULL, tree, *tree || module, LY_EINVAL);
Michal Vasko892f5bf2021-11-24 10:41:05 +01001823 LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, module ? module->ctx : NULL, LY_EINVAL);
Michal Vaskoe0665742021-02-11 11:08:44 +01001824 if (diff) {
1825 *diff = NULL;
1826 }
1827
Michal Vasko135719f2022-08-25 12:18:17 +02001828 return lyd_validate(tree, module, (*tree) ? LYD_CTX(*tree) : module->ctx, val_opts, 1, NULL, NULL, NULL, NULL, NULL,
1829 diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001830}
Michal Vaskofea12c62020-03-30 11:00:15 +02001831
Michal Vaskobb844672020-07-03 11:06:12 +02001832/**
1833 * @brief Find nodes for merging an operation into data tree for validation.
1834 *
1835 * @param[in] op_tree Full operation data tree.
1836 * @param[in] op_node Operation node itself.
1837 * @param[in] tree Data tree to be merged into.
1838 * @param[out] op_subtree Operation subtree to merge.
Michal Vasko2f03d222020-12-09 18:15:51 +01001839 * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL.
1840 * @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 +02001841 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001842static void
Michal Vaskobb844672020-07-03 11:06:12 +02001843lyd_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 +01001844 struct lyd_node **op_subtree, struct lyd_node **tree_sibling, struct lyd_node **tree_parent)
Michal Vaskofea12c62020-03-30 11:00:15 +02001845{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001846 const struct lyd_node *tree_iter, *op_iter;
Michal Vaskob10c93b2022-12-14 12:16:27 +01001847 struct lyd_node *match = NULL;
Michal Vaskofea12c62020-03-30 11:00:15 +02001848 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001849
Michal Vasko2f03d222020-12-09 18:15:51 +01001850 *op_subtree = NULL;
1851 *tree_sibling = NULL;
1852 *tree_parent = NULL;
1853
Michal Vaskocb7526d2020-03-30 15:08:26 +02001854 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001855 op_depth = 0;
Michal Vasko9e685082021-01-29 14:49:09 +01001856 for (op_iter = op_node; op_iter != op_tree; op_iter = lyd_parent(op_iter)) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001857 ++op_depth;
1858 }
1859
1860 /* find where to merge op */
1861 tree_iter = tree;
1862 cur_depth = op_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001863 while (cur_depth && tree_iter) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001864 /* find op iter in tree */
1865 lyd_find_sibling_first(tree_iter, op_iter, &match);
1866 if (!match) {
1867 break;
1868 }
1869
1870 /* move tree_iter */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001871 tree_iter = lyd_child(match);
Michal Vaskofea12c62020-03-30 11:00:15 +02001872
1873 /* move depth */
1874 --cur_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001875
1876 /* find next op parent */
1877 op_iter = op_node;
1878 for (i = 0; i < cur_depth; ++i) {
Michal Vasko9e685082021-01-29 14:49:09 +01001879 op_iter = lyd_parent(op_iter);
Michal Vasko2f03d222020-12-09 18:15:51 +01001880 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001881 }
1882
Michal Vasko2f03d222020-12-09 18:15:51 +01001883 assert(op_iter);
Michal Vaskobb844672020-07-03 11:06:12 +02001884 *op_subtree = (struct lyd_node *)op_iter;
Michal Vasko2f03d222020-12-09 18:15:51 +01001885 if (!tree || tree_iter) {
1886 /* there is no tree whatsoever or this is the last found sibling */
1887 *tree_sibling = (struct lyd_node *)tree_iter;
1888 } else {
1889 /* matching parent was found but it has no children to insert next to */
1890 assert(match);
1891 *tree_parent = match;
1892 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001893}
1894
Michal Vaskoe0665742021-02-11 11:08:44 +01001895/**
1896 * @brief Validate an RPC/action request, reply, or notification.
1897 *
1898 * @param[in] op_tree Full operation data tree.
1899 * @param[in] op_node Operation node itself.
1900 * @param[in] dep_tree Tree to be used for validating references from the operation subtree.
1901 * @param[in] int_opts Internal parser options.
Michal Vaskofbbea932022-06-07 11:00:55 +02001902 * @param[in] data_type Type of validated data.
Michal Vaskoe0665742021-02-11 11:08:44 +01001903 * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation).
1904 * @param[in] node_when_p Set of nodes with when conditions, if NULL a local set is used.
1905 * @param[in] node_types_p Set of unres node types, if NULL a local set is used.
1906 * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used.
Michal Vasko135719f2022-08-25 12:18:17 +02001907 * @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 +01001908 * @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 +01001909 * @param[out] diff Optional diff with any changes made by the validation.
1910 * @return LY_SUCCESS on success.
1911 * @return LY_ERR error on error.
1912 */
1913static LY_ERR
Michal Vaskofbbea932022-06-07 11:00:55 +02001914_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 +01001915 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 +02001916 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 +02001917{
Michal Vaskoe0665742021-02-11 11:08:44 +01001918 LY_ERR rc = LY_SUCCESS;
Michal Vaskofbbea932022-06-07 11:00:55 +02001919 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 +02001920 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 +02001921
Michal Vaskoe0665742021-02-11 11:08:44 +01001922 assert(op_tree && op_node);
Michal Vasko135719f2022-08-25 12:18:17 +02001923 assert((node_when_p && node_types_p && meta_types_p && ext_node_p && ext_val_p) ||
1924 (!node_when_p && !node_types_p && !meta_types_p && !ext_node_p && !ext_val_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001925
1926 if (!node_when_p) {
1927 node_when_p = &node_when;
1928 node_types_p = &node_types;
1929 meta_types_p = &meta_types;
Michal Vasko135719f2022-08-25 12:18:17 +02001930 ext_node_p = &ext_node;
Michal Vaskoddd76592022-01-17 13:34:48 +01001931 ext_val_p = &ext_val;
Michal Vaskoe0665742021-02-11 11:08:44 +01001932 }
1933
1934 /* merge op_tree into dep_tree */
1935 lyd_val_op_merge_find(op_tree, op_node, dep_tree, &op_subtree, &tree_sibling, &tree_parent);
Michal Vaskoc61dd062022-06-07 11:01:28 +02001936 op_sibling_before = op_subtree->prev->next ? op_subtree->prev : NULL;
1937 op_sibling_after = op_subtree->next;
Michal Vaskoe0665742021-02-11 11:08:44 +01001938 op_parent = lyd_parent(op_subtree);
Michal Vaskoc61dd062022-06-07 11:01:28 +02001939
Michal Vaskoe0665742021-02-11 11:08:44 +01001940 lyd_unlink_tree(op_subtree);
Michal Vasko6ee6f432021-07-16 09:49:14 +02001941 lyd_insert_node(tree_parent, &tree_sibling, op_subtree, 0);
Michal Vaskoe0665742021-02-11 11:08:44 +01001942 if (!dep_tree) {
1943 dep_tree = tree_sibling;
1944 }
1945
1946 LOG_LOCSET(NULL, op_node, NULL, NULL);
1947
1948 if (int_opts & LYD_INTOPT_REPLY) {
1949 /* add output children defaults */
Michal Vaskoddd76592022-01-17 13:34:48 +01001950 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 +02001951 ext_node_p, LYD_IMPLICIT_OUTPUT, diff);
Michal Vaskoe0665742021-02-11 11:08:44 +01001952 LY_CHECK_GOTO(rc, cleanup);
1953
1954 if (validate_subtree) {
1955 /* skip validating the operation itself, go to children directly */
1956 LY_LIST_FOR(lyd_child(op_node), child) {
Michal Vasko1a6e6902022-08-26 08:35:09 +02001957 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 +02001958 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001959 }
1960 }
1961 } else {
1962 if (validate_subtree) {
1963 /* prevalidate whole operation subtree */
Michal Vasko1a6e6902022-08-26 08:35:09 +02001964 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 +02001965 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001966 }
1967 }
1968
Michal Vasko906bafa2022-04-22 12:28:55 +02001969 /* finish incompletely validated terminal values/attributes and when conditions on the full tree,
1970 * account for unresolved 'when' that may appear in the non-validated dependency data tree */
Michal Vaskofbbea932022-06-07 11:00:55 +02001971 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 +02001972 node_types_p, meta_types_p, ext_node_p, ext_val_p, 0, diff), cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001973
1974 /* perform final validation of the operation/notification */
1975 lyd_validate_obsolete(op_node);
Michal Vaskod027f382023-02-10 09:13:25 +01001976 LY_CHECK_GOTO(rc = lyd_validate_must(op_node, 0, int_opts, LYXP_IGNORE_WHEN), cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001977
1978 /* final validation of all the descendants */
Michal Vasko906bafa2022-04-22 12:28:55 +02001979 rc = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, int_opts, LYXP_IGNORE_WHEN);
1980 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001981
1982cleanup:
1983 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskoc61dd062022-06-07 11:01:28 +02001984
Michal Vaskoe0665742021-02-11 11:08:44 +01001985 /* restore operation tree */
1986 lyd_unlink_tree(op_subtree);
Michal Vaskoc61dd062022-06-07 11:01:28 +02001987 if (op_sibling_before) {
1988 lyd_insert_after_node(op_sibling_before, op_subtree);
1989 } else if (op_sibling_after) {
1990 lyd_insert_before_node(op_sibling_after, op_subtree);
1991 } else if (op_parent) {
Michal Vasko6ee6f432021-07-16 09:49:14 +02001992 lyd_insert_node(op_parent, NULL, op_subtree, 0);
Michal Vaskoe0665742021-02-11 11:08:44 +01001993 }
1994
1995 ly_set_erase(&node_when, NULL);
1996 ly_set_erase(&node_types, NULL);
1997 ly_set_erase(&meta_types, NULL);
Michal Vasko135719f2022-08-25 12:18:17 +02001998 ly_set_erase(&ext_node, free);
Michal Vaskoddd76592022-01-17 13:34:48 +01001999 ly_set_erase(&ext_val, free);
Michal Vaskoe0665742021-02-11 11:08:44 +01002000 return rc;
2001}
2002
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002003LIBYANG_API_DEF LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01002004lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *dep_tree, enum lyd_type data_type, struct lyd_node **diff)
2005{
2006 struct lyd_node *op_node;
2007 uint32_t int_opts;
Michal Vaskofbbea932022-06-07 11:00:55 +02002008 struct ly_set ext_val = {0};
2009 LY_ERR rc;
Michal Vaskoe0665742021-02-11 11:08:44 +01002010
Michal Vasko2da45692022-04-29 09:51:08 +02002011 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 +01002012 (data_type == LYD_TYPE_NOTIF_YANG) || (data_type == LYD_TYPE_REPLY_YANG), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02002013 if (diff) {
2014 *diff = NULL;
2015 }
Michal Vasko1e4c68e2021-02-18 15:03:01 +01002016 if (data_type == LYD_TYPE_RPC_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01002017 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01002018 } else if (data_type == LYD_TYPE_NOTIF_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01002019 int_opts = LYD_INTOPT_NOTIF;
2020 } else {
2021 int_opts = LYD_INTOPT_REPLY;
2022 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02002023
Michal Vasko2da45692022-04-29 09:51:08 +02002024 if (op_tree->schema && (op_tree->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))) {
2025 /* we have the operation/notification, adjust the pointers */
2026 op_node = op_tree;
2027 while (op_tree->parent) {
2028 op_tree = lyd_parent(op_tree);
Michal Vaskocb7526d2020-03-30 15:08:26 +02002029 }
Michal Vasko2da45692022-04-29 09:51:08 +02002030 } else {
2031 /* find the operation/notification */
2032 while (op_tree->parent) {
2033 op_tree = lyd_parent(op_tree);
2034 }
2035 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
2036 if (!op_node->schema) {
Michal Vaskoac6f4be2022-05-02 10:16:50 +02002037 return lyd_parse_opaq_error(op_node);
Michal Vaskofbbea932022-06-07 11:00:55 +02002038 } else if (op_node->flags & LYD_EXT) {
2039 /* fully validate the rest using the extension instance callback */
2040 LY_CHECK_RET(lyd_validate_nested_ext(op_node, &ext_val));
Michal Vasko135719f2022-08-25 12:18:17 +02002041 rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL, data_type, NULL, 0, NULL, NULL, NULL,
2042 &ext_val, 0, diff);
Michal Vaskofbbea932022-06-07 11:00:55 +02002043 ly_set_erase(&ext_val, free);
2044 return rc;
Michal Vasko2da45692022-04-29 09:51:08 +02002045 }
2046
2047 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) &&
2048 (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
2049 break;
2050 } else if ((int_opts & LYD_INTOPT_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
2051 break;
2052 }
2053 LYD_TREE_DFS_END(op_tree, op_node);
2054 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02002055 }
Michal Vasko2da45692022-04-29 09:51:08 +02002056
Michal Vaskoe0665742021-02-11 11:08:44 +01002057 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) {
Michal Vasko9b232082022-06-07 10:59:31 +02002058 if (!op_node || !(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002059 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02002060 return LY_EINVAL;
2061 }
2062 } else {
Michal Vasko9b232082022-06-07 10:59:31 +02002063 if (!op_node || (op_node->schema->nodetype != LYS_NOTIF)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02002064 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02002065 return LY_EINVAL;
2066 }
2067 }
2068
Michal Vaskoe0665742021-02-11 11:08:44 +01002069 /* validate */
Michal Vasko135719f2022-08-25 12:18:17 +02002070 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 +02002071}