blob: b7f5abbf2640d153d3747df43a4feec6abd5474d [file] [log] [blame]
Michal Vaskocde73ac2019-11-14 16:10:27 +01001/**
2 * @file validation.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief Validation
5 *
Michal Vaskoe78faec2021-04-08 17:24:43 +02006 * Copyright (c) 2019 - 2021 CESNET, z.s.p.o.
Michal Vaskocde73ac2019-11-14 16:10:27 +01007 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Christian Hopps32874e12021-05-01 09:43:54 -040014#define _GNU_SOURCE /* asprintf, strdup */
15#include <sys/cdefs.h>
Michal Vasko81bc5512020-11-13 18:05:18 +010016
Michal Vaskofbed4ea2020-07-08 10:43:30 +020017#include "validation.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010018
19#include <assert.h>
Radek Krejci77114102021-03-10 15:21:57 +010020#include <limits.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020021#include <stdint.h>
Michal Vasko52927e22020-03-16 17:26:14 +010022#include <stdio.h>
23#include <stdlib.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include <string.h>
Michal Vaskocde73ac2019-11-14 16:10:27 +010025
Radek Krejci535ea9f2020-05-29 16:01:05 +020026#include "common.h"
Michal Vasko69730152020-10-09 16:30:07 +020027#include "compat.h"
Michal Vasko8104fd42020-07-13 11:09:51 +020028#include "diff.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020029#include "hash_table.h"
30#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020031#include "parser_data.h"
Radek Krejci77114102021-03-10 15:21:57 +010032#include "parser_internal.h"
Radek Krejci1b2eef82021-02-17 11:17:27 +010033#include "plugins_exts.h"
Radek Krejcif1ca0ac2021-04-12 16:00:06 +020034#include "plugins_exts/metadata.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020035#include "plugins_types.h"
36#include "set.h"
37#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010038#include "tree_data.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010039#include "tree_data_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020040#include "tree_schema.h"
Michal Vasko14654712020-02-06 08:35:21 +010041#include "tree_schema_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020042#include "xpath.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010043
Michal Vaskoa6669ba2020-08-06 16:14:26 +020044LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020045lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff)
46{
47 LY_ERR ret = LY_SUCCESS;
48 struct lyd_node *new_diff = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010049 const struct lyd_node *prev_inst;
Michal Vaskoe78faec2021-04-08 17:24:43 +020050 char *key = NULL, *value = NULL, *position = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010051 size_t buflen = 0, bufused = 0;
Michal Vaskoe78faec2021-04-08 17:24:43 +020052 uint32_t pos;
Michal Vasko8104fd42020-07-13 11:09:51 +020053
54 assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE));
55
Michal Vasko81bc5512020-11-13 18:05:18 +010056 if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) {
Michal Vaskoe78faec2021-04-08 17:24:43 +020057 if (lysc_is_dup_inst_list(node->schema)) {
58 pos = lyd_list_pos(node);
Michal Vasko81bc5512020-11-13 18:05:18 +010059
Michal Vaskoe78faec2021-04-08 17:24:43 +020060 /* generate position meta */
61 if (pos > 1) {
62 if (asprintf(&position, "%" PRIu32, pos - 1) == -1) {
63 LOGMEM(LYD_CTX(node));
64 ret = LY_EMEM;
65 goto cleanup;
66 }
Michal Vasko81bc5512020-11-13 18:05:18 +010067 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020068 position = strdup("");
69 LY_CHECK_ERR_GOTO(!position, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
Michal Vasko81bc5512020-11-13 18:05:18 +010070 }
71 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020072 if (node->prev->next && (node->prev->schema == node->schema)) {
73 prev_inst = node->prev;
Michal Vasko81bc5512020-11-13 18:05:18 +010074 } else {
Michal Vaskoe78faec2021-04-08 17:24:43 +020075 /* first instance */
76 prev_inst = NULL;
77 }
78
79 if (node->schema->nodetype == LYS_LIST) {
80 /* generate key meta */
81 if (prev_inst) {
82 LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup);
83 } else {
84 key = strdup("");
85 LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
86 }
87 } else {
88 /* generate value meta */
89 if (prev_inst) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020090 value = strdup(lyd_get_value(prev_inst));
Michal Vaskoe78faec2021-04-08 17:24:43 +020091 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
92 } else {
93 value = strdup("");
94 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
95 }
Michal Vasko81bc5512020-11-13 18:05:18 +010096 }
97 }
98 }
99
Michal Vasko8104fd42020-07-13 11:09:51 +0200100 /* create new diff tree */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200101 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 +0200102
103 /* merge into existing diff */
Michal Vaskoc0e58e82020-11-11 19:04:33 +0100104 ret = lyd_diff_merge_all(diff, new_diff, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +0200105
Michal Vasko81bc5512020-11-13 18:05:18 +0100106cleanup:
Michal Vasko8104fd42020-07-13 11:09:51 +0200107 lyd_free_tree(new_diff);
Michal Vasko81bc5512020-11-13 18:05:18 +0100108 free(key);
109 free(value);
Michal Vaskoe78faec2021-04-08 17:24:43 +0200110 free(position);
Michal Vasko8104fd42020-07-13 11:09:51 +0200111 return ret;
112}
113
114/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100115 * @brief Evaluate all relevant "when" conditions of a node.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100116 *
Michal Vaskobd4db892020-11-23 16:58:20 +0100117 * @param[in] tree Data tree.
118 * @param[in] node Node whose relevant when conditions will be evaluated.
119 * @param[in] schema Schema node of @p node. It may not be possible to use directly if @p node is opaque.
120 * @param[out] disabled First when that evaluated false, if any.
121 * @return LY_SUCCESS on success.
122 * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated.
123 * @return LY_ERR value on error.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100124 */
125static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100126lyd_validate_node_when(const struct lyd_node *tree, const struct lyd_node *node, const struct lysc_node *schema,
127 const struct lysc_when **disabled)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100128{
Michal Vasko8104fd42020-07-13 11:09:51 +0200129 LY_ERR ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100130 const struct lyd_node *ctx_node;
131 struct lyxp_set xp_set;
Michal Vaskobd4db892020-11-23 16:58:20 +0100132 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100133
Michal Vaskobd4db892020-11-23 16:58:20 +0100134 assert(!node->schema || (node->schema == schema));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100135
Michal Vaskobd4db892020-11-23 16:58:20 +0100136 *disabled = NULL;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100137
Michal Vaskobd4db892020-11-23 16:58:20 +0100138 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100139 const struct lysc_when *when;
140 struct lysc_when **when_list = lysc_node_when(schema);
141 LY_ARRAY_FOR(when_list, u) {
142 when = when_list[u];
Michal Vaskocde73ac2019-11-14 16:10:27 +0100143
Michal Vaskobd4db892020-11-23 16:58:20 +0100144 /* get context node */
145 if (when->context == schema) {
146 ctx_node = node;
147 } else {
148 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
Michal Vasko9e685082021-01-29 14:49:09 +0100149 ctx_node = lyd_parent(node);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100150 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100151
152 /* evaluate when */
153 memset(&xp_set, 0, sizeof xp_set);
Radek Krejci8df109d2021-04-23 12:19:08 +0200154 ret = lyxp_eval(LYD_CTX(node), when->cond, schema->module, LY_VALUE_SCHEMA_RESOLVED, when->prefixes,
Michal Vasko400e9672021-01-11 13:39:17 +0100155 ctx_node, tree, &xp_set, LYXP_SCHEMA);
Michal Vaskobd4db892020-11-23 16:58:20 +0100156 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
157
158 /* return error or LY_EINCOMPLETE for dependant unresolved when */
159 LY_CHECK_RET(ret);
160
161 if (!xp_set.val.bln) {
162 /* false when */
163 *disabled = when;
164 return LY_SUCCESS;
Michal Vasko8104fd42020-07-13 11:09:51 +0200165 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100166 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100167
168 schema = schema->parent;
169 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
170
171 return LY_SUCCESS;
172}
173
174/**
175 * @brief Evaluate when conditions of collected unres nodes.
176 *
177 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100178 * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it.
179 * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be
180 * the first top-level sibling.
Michal Vaskobd4db892020-11-23 16:58:20 +0100181 * @param[in] node_when Set with nodes with "when" conditions.
182 * @param[in,out] diff Validation diff.
183 * @return LY_SUCCESS on success.
184 * @return LY_ERR value on error.
185 */
186static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100187lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
188 struct lyd_node **diff)
Michal Vaskobd4db892020-11-23 16:58:20 +0100189{
190 LY_ERR ret;
191 uint32_t i;
192 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100193 struct lyd_node *node = NULL;
Michal Vaskobd4db892020-11-23 16:58:20 +0100194
195 if (!node_when->count) {
196 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100197 }
198
Michal Vaskobd4db892020-11-23 16:58:20 +0100199 i = node_when->count;
200 do {
201 --i;
202 node = node_when->dnodes[i];
Radek Krejciddace2c2021-01-08 11:30:56 +0100203 LOG_LOCSET(node->schema, node, NULL, NULL);
Michal Vaskobd4db892020-11-23 16:58:20 +0100204
205 /* evaluate all when expressions that affect this node's existence */
206 ret = lyd_validate_node_when(*tree, node, node->schema, &disabled);
207 if (!ret) {
208 if (disabled) {
209 /* when false */
210 if (node->flags & LYD_WHEN_TRUE) {
211 /* autodelete */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100212 lyd_del_move_root(tree, node, mod);
Michal Vaskobd4db892020-11-23 16:58:20 +0100213 if (diff) {
214 /* add into diff */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100215 ret = lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
216 LY_CHECK_GOTO(ret, error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100217 }
218 lyd_free_tree(node);
219 } else {
220 /* invalid data */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100221 LOGVAL(LYD_CTX(node), LY_VCODE_NOWHEN, disabled->cond->expr);
222 ret = LY_EVALID;
223 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100224 }
225 } else {
226 /* when true */
227 node->flags |= LYD_WHEN_TRUE;
228 }
229
230 /* remove this node from the set, its when was resolved */
231 ly_set_rm_index(node_when, i, NULL);
232 } else if (ret != LY_EINCOMPLETE) {
233 /* error */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100234 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100235 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100236
Radek Krejciddace2c2021-01-08 11:30:56 +0100237 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskobd4db892020-11-23 16:58:20 +0100238 } while (i);
239
240 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100241
242error:
Radek Krejciddace2c2021-01-08 11:30:56 +0100243 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100244 return ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100245}
246
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200247struct node_ext {
248 struct lyd_node *node;
249 struct lysc_ext_instance *ext;
250};
251
252static LY_ERR
253node_ext_tovalidate_add(struct ly_set *node_exts, struct lysc_ext_instance *exts, struct lyd_node *node)
254{
255 LY_ERR ret = LY_SUCCESS;
256 struct lysc_ext_instance *ext;
257 struct node_ext *rec;
258
Radek Krejci3011b072021-04-13 20:25:34 +0200259 LY_ARRAY_FOR(exts, struct lysc_ext_instance, ext) {
Radek Krejci4a4d1e02021-04-09 14:04:40 +0200260 if (ext->def->plugin && ext->def->plugin->validate) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200261 rec = malloc(sizeof *rec);
262 LY_CHECK_ERR_RET(!rec, LOGMEM(LYD_CTX(node)), LY_EMEM);
263 rec->ext = ext;
264 rec->node = node;
265
266 ret = ly_set_add(node_exts, rec, 1, NULL);
267 if (ret) {
268 free(rec);
269 break;
270 }
271 }
272 }
273
274 return ret;
275}
276
Michal Vaskocde73ac2019-11-14 16:10:27 +0100277LY_ERR
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200278lysc_node_ext_tovalidate(struct ly_set *node_exts, struct lyd_node *node)
279{
280 const struct lysc_node *schema = node->schema;
281
282 if (!schema) {
283 /* nothing to do */
284 return LY_SUCCESS;
285 }
286
287 /* node's extensions */
288 LY_CHECK_RET(node_ext_tovalidate_add(node_exts, schema->exts, node));
289
290 if (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
291 /* type's extensions */
292 LY_CHECK_RET(node_ext_tovalidate_add(node_exts, ((struct lysc_node_leaf *)schema)->type->exts, node));
293 }
294
295 return LY_SUCCESS;
296}
297
298LY_ERR
299lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when, struct ly_set *node_exts,
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100300 struct ly_set *node_types, struct ly_set *meta_types, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100301{
302 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200303 uint32_t i;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100304
Michal Vaskob1b5c262020-03-05 14:29:47 +0100305 if (node_when) {
306 /* evaluate all when conditions */
307 uint32_t prev_count;
308 do {
309 prev_count = node_when->count;
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100310 LY_CHECK_RET(lyd_validate_unres_when(tree, mod, node_when, diff));
Radek Krejci0f969882020-08-21 16:56:47 +0200311 /* there must have been some when conditions resolved */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100312 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100313
Michal Vaskob1b5c262020-03-05 14:29:47 +0100314 /* there could have been no cyclic when dependencies, checked during compilation */
315 assert(!node_when->count);
316 }
317
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200318 if (node_exts && node_exts->count) {
319 i = node_exts->count;
320 do {
321 --i;
322
323 struct node_ext *item = node_exts->objs[i];
324
325 LOG_LOCSET(item->node->schema, item->node, NULL, NULL);
326 ret = item->ext->def->plugin->validate(item->ext, item->node);
327 LOG_LOCBACK(item->node->schema ? 1 : 0, 1, 0, 0);
328 LY_CHECK_RET(ret);
329
330 /* remove this node from the set */
331 ly_set_rm_index(node_exts, i, free);
332 } while (i);
333 }
334
Michal Vaskob1b5c262020-03-05 14:29:47 +0100335 if (node_types && node_types->count) {
336 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200337 i = node_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100338 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200339 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100340
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100341 struct lyd_node_term *node = node_types->objs[i];
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200342 struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100343
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200344 /* resolve the value of the node */
Michal Vasko9e685082021-01-29 14:49:09 +0100345 LOG_LOCSET(node->schema, &node->node, NULL, NULL);
346 ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, &node->node, *tree);
Radek Krejciddace2c2021-01-08 11:30:56 +0100347 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100348 LY_CHECK_RET(ret);
349
350 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200351 ly_set_rm_index(node_types, i, NULL);
352 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100353 }
354
Michal Vasko9f96a052020-03-10 09:41:45 +0100355 if (meta_types && meta_types->count) {
356 /* ... and metadata values */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200357 i = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100358 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200359 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100360
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100361 struct lyd_meta *meta = meta_types->objs[i];
Radek Krejci1b2eef82021-02-17 11:17:27 +0100362 struct lysc_type *type = *(struct lysc_type **)meta->annotation->substmts[ANNOTATION_SUBSTMT_TYPE].storage;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100363
Michal Vasko9f96a052020-03-10 09:41:45 +0100364 /* validate and store the value of the metadata */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100365 ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100366 LY_CHECK_RET(ret);
367
368 /* remove this attr from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200369 ly_set_rm_index(meta_types, i, NULL);
370 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100371 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100372
373 return ret;
374}
375
Michal Vaskobb844672020-07-03 11:06:12 +0200376/**
377 * @brief Validate instance duplication.
378 *
379 * @param[in] first First sibling to search in.
380 * @param[in] node Data node instance to check.
381 * @return LY_ERR value.
382 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100383static LY_ERR
384lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100385{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100386 struct lyd_node **match_p;
Radek Krejci857189e2020-09-01 13:26:36 +0200387 ly_bool fail = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100388
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100389 assert(node->flags & LYD_NEW);
390
Michal Vaskod6c18af2021-02-12 12:07:31 +0100391 /* key-less list or non-configuration leaf-list */
Michal Vaskoe78faec2021-04-08 17:24:43 +0200392 if (lysc_is_dup_inst_list(node->schema)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100393 /* duplicate instances allowed */
394 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100395 }
396
Michal Vaskob1b5c262020-03-05 14:29:47 +0100397 /* find exactly the same next instance using hashes if possible */
398 if (node->parent && node->parent->children_ht) {
399 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
400 fail = 1;
401 }
402 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +0200403 for ( ; first; first = first->next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100404 if (first == node) {
405 continue;
406 }
407
408 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
409 if (first->schema == node->schema) {
410 fail = 1;
411 break;
412 }
Michal Vasko8f359bf2020-07-28 10:41:15 +0200413 } else if (!lyd_compare_single(first, node, 0)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100414 fail = 1;
415 break;
416 }
417 }
418 }
419
420 if (fail) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100421 LOGVAL(node->schema->module->ctx, LY_VCODE_DUP, node->schema->name);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100422 return LY_EVALID;
423 }
424 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100425}
426
Michal Vaskobb844672020-07-03 11:06:12 +0200427/**
428 * @brief Validate multiple case data existence with possible autodelete.
429 *
430 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100431 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200432 * @param[in] choic Choice node whose cases to check.
Michal Vasko8104fd42020-07-13 11:09:51 +0200433 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200434 * @return LY_ERR value.
435 */
Michal Vaskocde73ac2019-11-14 16:10:27 +0100436static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100437lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic,
438 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100439{
440 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
441 struct lyd_node *match, *to_del;
Radek Krejci857189e2020-09-01 13:26:36 +0200442 ly_bool found;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100443
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100444 LOG_LOCSET(&choic->node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100445
Michal Vaskob1b5c262020-03-05 14:29:47 +0100446 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
447 found = 0;
448 iter = NULL;
449 match = NULL;
450 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
451 if (match->flags & LYD_NEW) {
452 /* a new case data found, nothing more to look for */
453 found = 2;
454 break;
455 } else {
456 /* and old case data found */
457 if (found == 0) {
458 found = 1;
459 }
460 }
461 }
462
463 if (found == 1) {
464 /* there should not be 2 old cases */
465 if (old_case) {
466 /* old data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100467 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, old_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100468 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100469 return LY_EVALID;
470 }
471
472 /* remember an old existing case */
473 old_case = scase;
474 } else if (found == 2) {
475 if (new_case) {
476 /* new data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100477 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, new_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100478 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100479 return LY_EVALID;
480 }
481
482 /* remember a new existing case */
483 new_case = scase;
484 }
485 }
486
Radek Krejciddace2c2021-01-08 11:30:56 +0100487 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100488
Michal Vaskob1b5c262020-03-05 14:29:47 +0100489 if (old_case && new_case) {
490 /* auto-delete old case */
491 iter = NULL;
492 match = NULL;
493 to_del = NULL;
494 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100495 lyd_del_move_root(first, to_del, mod);
496
Michal Vasko8104fd42020-07-13 11:09:51 +0200497 /* free previous node */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100498 lyd_free_tree(to_del);
Michal Vasko8104fd42020-07-13 11:09:51 +0200499 if (diff) {
500 /* add into diff */
501 LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff));
502 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100503 to_del = match;
504 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100505 lyd_del_move_root(first, to_del, mod);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100506 lyd_free_tree(to_del);
507 }
508
509 return LY_SUCCESS;
510}
511
Michal Vaskobb844672020-07-03 11:06:12 +0200512/**
513 * @brief Check whether a schema node can have some default values (true for NP containers as well).
514 *
515 * @param[in] schema Schema node to check.
516 * @return non-zero if yes,
517 * @return 0 otherwise.
518 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100519static int
520lyd_val_has_default(const struct lysc_node *schema)
521{
522 switch (schema->nodetype) {
523 case LYS_LEAF:
524 if (((struct lysc_node_leaf *)schema)->dflt) {
525 return 1;
526 }
527 break;
528 case LYS_LEAFLIST:
529 if (((struct lysc_node_leaflist *)schema)->dflts) {
530 return 1;
531 }
532 break;
533 case LYS_CONTAINER:
534 if (!(schema->flags & LYS_PRESENCE)) {
535 return 1;
536 }
537 break;
538 default:
539 break;
540 }
541
542 return 0;
543}
544
Michal Vaskobb844672020-07-03 11:06:12 +0200545/**
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100546 * @brief Properly delete a node as part of autodelete validation tasks.
547 *
548 * @param[in,out] first First sibling, is updated if needed.
549 * @param[in] node Node instance to delete.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100550 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100551 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
552 * @param[in,out] diff Validation diff.
553 */
554static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100555lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
556 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100557{
558 struct lyd_node *iter;
559
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100560 lyd_del_move_root(first, node, mod);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100561 if (node == *next_p) {
562 *next_p = (*next_p)->next;
563 }
564 if (diff) {
565 /* add into diff */
566 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
567 /* we do not want to track NP container changes, but remember any removed children */
568 LY_LIST_FOR(lyd_child(node), iter) {
569 lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff);
570 }
571 } else {
572 lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
573 }
574 }
575 lyd_free_tree(node);
576}
577
578/**
Michal Vaskobb844672020-07-03 11:06:12 +0200579 * @brief Autodelete old instances to prevent validation errors.
580 *
581 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100582 * @param[in] node New data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100583 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200584 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
Michal Vasko8104fd42020-07-13 11:09:51 +0200585 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200586 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100587static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100588lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
589 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100590{
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100591 struct lyd_node *match, *next;
592
593 assert(node->flags & LYD_NEW);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100594
595 if (lyd_val_has_default(node->schema)) {
596 assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER));
Michal Vasko4c583e82020-07-17 12:16:14 +0200597 LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100598 if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) {
599 /* default instance found, remove it */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100600 lyd_validate_autodel_node_del(first, match, mod, next_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100601
602 /* remove only a single container/leaf default instance, if there are more, it is an error */
603 if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) {
604 break;
605 }
606 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100607 }
608 }
609}
610
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100611/**
612 * @brief Autodelete leftover default nodes of deleted cases (that have no existing explicit data).
613 *
614 * @param[in,out] first First sibling to search in, is updated if needed.
615 * @param[in] node Default data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100616 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100617 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
618 * @param[in,out] diff Validation diff.
619 */
620static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100621lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
622 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100623{
624 struct lysc_node_choice *choic;
625 struct lyd_node *iter = NULL;
626 const struct lysc_node *slast = NULL;
627
628 assert(node->flags & LYD_DEFAULT);
629
630 if (!node->schema->parent || (node->schema->parent->nodetype != LYS_CASE)) {
631 /* the default node is not a descendant of a case */
632 return;
633 }
634
635 choic = (struct lysc_node_choice *)node->schema->parent->parent;
636 assert(choic->nodetype == LYS_CHOICE);
637
638 if (choic->dflt && (choic->dflt == (struct lysc_node_case *)node->schema->parent)) {
639 /* data of a default case, keep them */
640 return;
641 }
642
643 /* try to find an explicit node of the case */
644 while ((iter = lys_getnext_data(iter, *first, &slast, node->schema->parent, NULL))) {
645 if (!(iter->flags & LYD_DEFAULT)) {
646 break;
647 }
648 }
649
650 if (!iter) {
651 /* there are only default nodes of the case meaning it does not exist and neither should any default nodes
652 * of the case, remove this one default node */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100653 lyd_validate_autodel_node_del(first, node, mod, next_p, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100654 }
655}
656
Michal Vaskob1b5c262020-03-05 14:29:47 +0100657LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +0200658lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +0200659 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100660{
661 struct lyd_node *next, *node;
662 const struct lysc_node *snode = NULL;
663
664 assert(first && (sparent || mod));
665
666 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
667 /* check case duplicites */
668 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100669 LY_CHECK_RET(lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100670 }
671 }
672
673 LY_LIST_FOR_SAFE(*first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100674 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100675 /* all top-level data from this module checked */
676 break;
677 }
678
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100679 if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) {
680 /* check only new and default nodes */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100681 continue;
682 }
683
Radek Krejciddace2c2021-01-08 11:30:56 +0100684 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100685
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100686 if (node->flags & LYD_NEW) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100687 LY_ERR ret;
688
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100689 /* remove old default(s) of the new node if it exists */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100690 lyd_validate_autodel_dup(first, node, mod, &next, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100691
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100692 /* then check new node instance duplicities */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100693 ret = lyd_validate_duplicates(*first, node);
Radek Krejciddace2c2021-01-08 11:30:56 +0100694 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0), ret);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100695
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100696 /* this node is valid */
697 node->flags &= ~LYD_NEW;
698 }
699
Michal Vasko0e6de512021-01-11 13:39:44 +0100700 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
701
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100702 if (node->flags & LYD_DEFAULT) {
703 /* remove leftover default nodes from a no-longer existing case */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100704 lyd_validate_autodel_case_dflt(first, node, mod, &next, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100705 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100706 }
707
708 return LY_SUCCESS;
709}
710
Michal Vaskobb844672020-07-03 11:06:12 +0200711/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100712 * @brief Evaluate any "when" conditions of a non-existent data node with existing parent.
713 *
714 * @param[in] first First data sibling of the non-existing node.
715 * @param[in] parent Data parent of the non-existing node.
716 * @param[in] snode Schema node of the non-existing node.
717 * @param[out] disabled First when that evaluated false, if any.
718 * @return LY_ERR value.
719 */
720static LY_ERR
721lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
722 const struct lysc_when **disabled)
723{
724 LY_ERR ret = LY_SUCCESS;
725 struct lyd_node *tree, *dummy = NULL;
726
727 /* find root */
728 if (parent) {
729 tree = (struct lyd_node *)parent;
730 while (tree->parent) {
731 tree = lyd_parent(tree);
732 }
733 tree = lyd_first_sibling(tree);
734 } else {
735 assert(!first || !first->prev->next);
736 tree = (struct lyd_node *)first;
737 }
738
739 /* create dummy opaque node */
Michal Vasko0ab974d2021-02-24 13:18:26 +0100740 ret = lyd_new_opaq((struct lyd_node *)parent, snode->module->ctx, snode->name, NULL, NULL, snode->module->name, &dummy);
Michal Vaskobd4db892020-11-23 16:58:20 +0100741 LY_CHECK_GOTO(ret, cleanup);
742
743 /* connect it if needed */
744 if (!parent) {
745 if (first) {
746 lyd_insert_sibling((struct lyd_node *)first, dummy, &tree);
747 } else {
748 assert(!tree);
749 tree = dummy;
750 }
751 }
752
753 /* evaluate all when */
754 ret = lyd_validate_node_when(tree, dummy, snode, disabled);
755 if (ret == LY_EINCOMPLETE) {
756 /* all other when must be resolved by now */
757 LOGINT(snode->module->ctx);
758 ret = LY_EINT;
759 goto cleanup;
760 } else if (ret) {
761 /* error */
762 goto cleanup;
763 }
764
765cleanup:
766 lyd_free_tree(dummy);
767 return ret;
768}
769
770/**
Michal Vaskobb844672020-07-03 11:06:12 +0200771 * @brief Validate mandatory node existence.
772 *
773 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100774 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200775 * @param[in] snode Schema node to validate.
776 * @return LY_ERR value.
777 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100778static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100779lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100780{
Michal Vaskobd4db892020-11-23 16:58:20 +0100781 const struct lysc_when *disabled;
782
Michal Vaskoa3881362020-01-21 15:57:35 +0100783 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100784 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100785 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100786 return LY_SUCCESS;
787 }
788 } else {
789 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100790
Michal Vaskob1b5c262020-03-05 14:29:47 +0100791 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100792 /* data instance found */
793 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100794 }
795 }
796
Michal Vaskobd4db892020-11-23 16:58:20 +0100797 disabled = NULL;
798 if (lysc_has_when(snode)) {
799 /* if there are any when conditions, they must be true for a validation error */
800 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
801 }
802
803 if (!disabled) {
804 /* node instance not found */
Michal Vasko538b8952021-02-17 11:27:26 +0100805 if (snode->nodetype == LYS_CHOICE) {
806 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND_CHOIC, snode->name);
807 } else {
808 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND, snode->name);
809 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100810 return LY_EVALID;
811 }
812
813 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100814}
815
Michal Vaskobb844672020-07-03 11:06:12 +0200816/**
817 * @brief Validate min/max-elements constraints, if any.
818 *
819 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100820 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200821 * @param[in] snode Schema node to validate.
822 * @param[in] min Minimum number of elements, 0 for no restriction.
823 * @param[in] max Max number of elements, 0 for no restriction.
824 * @return LY_ERR value.
825 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100826static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100827lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
828 uint32_t min, uint32_t max)
Michal Vaskoa3881362020-01-21 15:57:35 +0100829{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100830 uint32_t count = 0;
Michal Vasko4c583e82020-07-17 12:16:14 +0200831 struct lyd_node *iter;
Michal Vaskobd4db892020-11-23 16:58:20 +0100832 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100833 ly_bool invalid_instance = 0;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100834
Michal Vasko9b368d32020-02-14 13:53:31 +0100835 assert(min || max);
836
Michal Vasko4c583e82020-07-17 12:16:14 +0200837 LYD_LIST_FOR_INST(first, snode, iter) {
838 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100839
Michal Vasko4c583e82020-07-17 12:16:14 +0200840 if (min && (count == min)) {
841 /* satisfied */
842 min = 0;
843 if (!max) {
844 /* nothing more to check */
Michal Vasko9b368d32020-02-14 13:53:31 +0100845 break;
846 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100847 }
Michal Vasko4c583e82020-07-17 12:16:14 +0200848 if (max && (count > max)) {
849 /* not satisifed */
Radek Krejciddace2c2021-01-08 11:30:56 +0100850 LOG_LOCSET(NULL, iter, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100851 invalid_instance = 1;
Michal Vasko4c583e82020-07-17 12:16:14 +0200852 break;
853 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100854 }
855
Michal Vasko9b368d32020-02-14 13:53:31 +0100856 if (min) {
857 assert(count < min);
Michal Vaskobd4db892020-11-23 16:58:20 +0100858
859 disabled = NULL;
860 if (lysc_has_when(snode)) {
861 /* if there are any when conditions, they must be true for a validation error */
862 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
863 }
864
865 if (!disabled) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100866 LOGVAL(snode->module->ctx, LY_VCODE_NOMIN, snode->name);
867 goto failure;
Michal Vaskobd4db892020-11-23 16:58:20 +0100868 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100869 } else if (max && (count > max)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100870 LOGVAL(snode->module->ctx, LY_VCODE_NOMAX, snode->name);
871 goto failure;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100872 }
873
Michal Vaskoa3881362020-01-21 15:57:35 +0100874 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100875
876failure:
Radek Krejciddace2c2021-01-08 11:30:56 +0100877 LOG_LOCBACK(0, invalid_instance, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100878 return LY_EVALID;
Michal Vaskoa3881362020-01-21 15:57:35 +0100879}
880
Michal Vaskobb844672020-07-03 11:06:12 +0200881/**
882 * @brief Find node referenced by a list unique statement.
883 *
884 * @param[in] uniq_leaf Unique leaf to find.
885 * @param[in] list List instance to use for the search.
886 * @return Found leaf,
887 * @return NULL if no leaf found.
888 */
Michal Vasko14654712020-02-06 08:35:21 +0100889static struct lyd_node *
Michal Vaskobb844672020-07-03 11:06:12 +0200890lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list)
Michal Vasko14654712020-02-06 08:35:21 +0100891{
Michal Vasko9b368d32020-02-14 13:53:31 +0100892 struct lyd_node *node;
893 const struct lysc_node *iter;
894 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +0100895
Michal Vasko9b368d32020-02-14 13:53:31 +0100896 /* get leaf depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100897 for (iter = &uniq_leaf->node; iter && (iter != list->schema); iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200898 ++depth;
Michal Vasko14654712020-02-06 08:35:21 +0100899 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100900
Michal Vaskobb844672020-07-03 11:06:12 +0200901 node = (struct lyd_node *)list;
Michal Vasko9b368d32020-02-14 13:53:31 +0100902 while (node && depth) {
903 /* find schema node with this depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100904 for (i = depth - 1, iter = &uniq_leaf->node; i; iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200905 --i;
Michal Vasko9b368d32020-02-14 13:53:31 +0100906 }
907
908 /* find iter instance in children */
909 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
Radek Krejcia1c1e542020-09-29 16:06:52 +0200910 lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100911 --depth;
912 }
913
Michal Vasko14654712020-02-06 08:35:21 +0100914 return node;
915}
916
Michal Vaskobb844672020-07-03 11:06:12 +0200917/**
918 * @brief Callback for comparing 2 list unique leaf values.
919 *
Michal Vasko62524a92021-02-26 10:08:50 +0100920 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200921 *
Michal Vaskobb844672020-07-03 11:06:12 +0200922 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +0100923 */
Radek Krejci857189e2020-09-01 13:26:36 +0200924static ly_bool
925lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data)
Michal Vasko14654712020-02-06 08:35:21 +0100926{
927 struct ly_ctx *ctx;
928 struct lysc_node_list *slist;
929 struct lyd_node *diter, *first, *second;
930 struct lyd_value *val1, *val2;
931 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200932 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +0100933
934 assert(val1_p && val2_p);
935
936 first = *((struct lyd_node **)val1_p);
937 second = *((struct lyd_node **)val2_p);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200938 action = (LY_ARRAY_COUNT_TYPE)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +0100939
940 assert(first && (first->schema->nodetype == LYS_LIST));
941 assert(second && (second->schema == first->schema));
942
943 ctx = first->schema->module->ctx;
944
945 slist = (struct lysc_node_list *)first->schema;
946
947 /* compare unique leaves */
948 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200949 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200950 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +0100951 goto uniquecheck;
952 }
953 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200954 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +0100955uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200956 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +0100957 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200958 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +0100959 if (diter) {
960 val1 = &((struct lyd_node_term *)diter)->value;
961 } else {
962 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200963 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100964 }
965
966 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200967 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +0100968 if (diter) {
969 val2 = &((struct lyd_node_term *)diter)->value;
970 } else {
971 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200972 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100973 }
974
975 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
976 /* values differ or either one is not set */
977 break;
978 }
979 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200980 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +0100981 /* all unique leafs are the same in this set, create this nice error */
Radek Krejci635d2b82021-01-04 11:26:51 +0100982 path1 = lyd_path(first, LYD_PATH_STD, NULL, 0);
983 path2 = lyd_path(second, LYD_PATH_STD, NULL, 0);
Michal Vasko14654712020-02-06 08:35:21 +0100984
985 /* use buffer to rebuild the unique string */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100986#define UNIQ_BUF_SIZE 1024
987 uniq_str = malloc(UNIQ_BUF_SIZE);
Michal Vasko14654712020-02-06 08:35:21 +0100988 uniq_str[0] = '\0';
989 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200990 LY_ARRAY_FOR(slist->uniques[u], v) {
991 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +0100992 strcpy(ptr, " ");
993 ++ptr;
994 }
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100995 ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], &slist->node, LYSC_PATH_LOG,
Radek Krejcif13b87b2020-12-01 22:02:17 +0100996 ptr, UNIQ_BUF_SIZE - (ptr - uniq_str));
Michal Vasko14654712020-02-06 08:35:21 +0100997 if (!ptr) {
998 /* path will be incomplete, whatever */
999 break;
1000 }
1001
1002 ptr += strlen(ptr);
1003 }
Radek Krejciddace2c2021-01-08 11:30:56 +01001004 LOG_LOCSET(NULL, second, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001005 LOGVAL(ctx, LY_VCODE_NOUNIQ, uniq_str, path1, path2);
Radek Krejciddace2c2021-01-08 11:30:56 +01001006 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001007
1008 free(path1);
1009 free(path2);
1010 free(uniq_str);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001011#undef UNIQ_BUF_SIZE
1012
Michal Vasko14654712020-02-06 08:35:21 +01001013 return 1;
1014 }
1015
1016 if (action > 0) {
1017 /* done */
1018 return 0;
1019 }
1020 }
1021
1022 return 0;
1023}
1024
Michal Vaskobb844672020-07-03 11:06:12 +02001025/**
1026 * @brief Validate list unique leaves.
1027 *
1028 * @param[in] first First sibling to search in.
1029 * @param[in] snode Schema node to validate.
1030 * @param[in] uniques List unique arrays to validate.
1031 * @return LY_ERR value.
1032 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001033static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +02001034lyd_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 +01001035{
Michal Vaskob1b5c262020-03-05 14:29:47 +01001036 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +01001037 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001038 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +01001039 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001040 uint32_t hash, i, size = 0;
Radek Krejci813c02d2021-04-26 10:29:19 +02001041 size_t key_len;
1042 ly_bool dyn;
1043 const void *hash_key;
Michal Vasko14654712020-02-06 08:35:21 +01001044 struct hash_table **uniqtables = NULL;
1045 struct lyd_value *val;
1046 struct ly_ctx *ctx = snode->module->ctx;
1047
1048 assert(uniques);
1049
1050 /* get all list instances */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001051 LY_CHECK_RET(ly_set_new(&set));
Michal Vaskob1b5c262020-03-05 14:29:47 +01001052 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +01001053 if (diter->schema == snode) {
Radek Krejci3d92e442020-10-12 12:48:13 +02001054 ret = ly_set_add(set, (void *)diter, 1, NULL);
Michal Vaskob0099a92020-08-31 14:55:23 +02001055 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko9b368d32020-02-14 13:53:31 +01001056 }
1057 }
Michal Vasko14654712020-02-06 08:35:21 +01001058
1059 if (set->count == 2) {
1060 /* simple comparison */
1061 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
1062 /* instance duplication */
1063 ret = LY_EVALID;
1064 goto cleanup;
1065 }
1066 } else if (set->count > 2) {
1067 /* use hashes for comparison */
Radek Krejcif13b87b2020-12-01 22:02:17 +01001068 /* first, allocate the table, the size depends on number of items in the set,
1069 * the following code detects number of upper zero bits in the items' counter value ... */
1070 for (i = (sizeof set->count * CHAR_BIT) - 1; i > 0; i--) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001071 size = set->count << i;
1072 size = size >> i;
1073 if (size == set->count) {
Michal Vasko14654712020-02-06 08:35:21 +01001074 break;
1075 }
1076 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001077 LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001078 /* ... and then we convert it to the position of the highest non-zero bit ... */
1079 i = (sizeof set->count * CHAR_BIT) - i;
1080 /* ... and by using it to shift 1 to the left we get the closest sufficient hash table size */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001081 size = 1 << i;
Michal Vasko14654712020-02-06 08:35:21 +01001082
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001083 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +01001084 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001085 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001086 for (v = 0; v < x; v++) {
1087 uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(v + 1L), 0);
1088 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +01001089 }
1090
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001091 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +01001092 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001093 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +01001094 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001095 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001096 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +01001097 if (diter) {
1098 val = &((struct lyd_node_term *)diter)->value;
1099 } else {
1100 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001101 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001102 }
1103 if (!val) {
1104 /* unique item not present nor has default value */
1105 break;
1106 }
1107
Radek Krejci813c02d2021-04-26 10:29:19 +02001108 /* get hash key */
1109 hash_key = val->realtype->plugin->hash(val, &dyn, &key_len);
1110 hash = dict_hash_multi(hash, hash_key, key_len);
1111 if (dyn) {
1112 free((void *)hash_key);
Michal Vasko14654712020-02-06 08:35:21 +01001113 }
1114 }
1115 if (!val) {
1116 /* skip this list instance since its unique set is incomplete */
1117 continue;
1118 }
1119
1120 /* finish the hash value */
1121 hash = dict_hash_multi(hash, NULL, 0);
1122
1123 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001124 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +01001125 if (ret == LY_EEXIST) {
1126 /* instance duplication */
1127 ret = LY_EVALID;
1128 }
1129 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
1130 }
1131 }
1132 }
1133
1134cleanup:
1135 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001136 for (v = 0; v < x; v++) {
1137 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +01001138 /* failed when allocating uniquetables[j], following j are not allocated */
1139 break;
1140 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001141 lyht_free(uniqtables[v]);
Michal Vasko14654712020-02-06 08:35:21 +01001142 }
1143 free(uniqtables);
1144
1145 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +01001146}
1147
Michal Vaskobb844672020-07-03 11:06:12 +02001148/**
1149 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
1150 *
1151 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +01001152 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +02001153 * @param[in] sparent Schema parent of the nodes to check.
1154 * @param[in] mod Module of the nodes to check.
1155 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskoe0665742021-02-11 11:08:44 +01001156 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001157 * @return LY_ERR value.
1158 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001159static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001160lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001161 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 +01001162{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001163 LY_ERR ret = LY_SUCCESS;
Michal Vasko6c16cda2021-02-04 11:05:52 +01001164 const struct lysc_node *snode = NULL, *scase;
Michal Vaskoa3881362020-01-21 15:57:35 +01001165 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +02001166 struct lysc_node_leaflist *sllist;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001167 uint32_t getnext_opts;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001168
Michal Vaskoe0665742021-02-11 11:08:44 +01001169 getnext_opts = LYS_GETNEXT_WITHCHOICE | (int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001170
Michal Vaskoa3881362020-01-21 15:57:35 +01001171 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001172 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +02001173 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001174 continue;
1175 }
1176
Radek Krejciddace2c2021-01-08 11:30:56 +01001177 LOG_LOCSET(snode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001178
Michal Vaskoa3881362020-01-21 15:57:35 +01001179 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +02001180 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +01001181 slist = (struct lysc_node_list *)snode;
1182 if (slist->min || slist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001183 ret = lyd_validate_minmax(first, parent, snode, slist->min, slist->max);
1184 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001185 }
Michal Vaskod8958df2020-08-05 13:27:36 +02001186 } else if (snode->nodetype == LYS_LEAFLIST) {
1187 sllist = (struct lysc_node_leaflist *)snode;
1188 if (sllist->min || sllist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001189 ret = lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max);
1190 LY_CHECK_GOTO(ret, error);
Michal Vaskod8958df2020-08-05 13:27:36 +02001191 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001192
Michal Vaskoacd83e72020-02-04 14:12:01 +01001193 } else if (snode->flags & LYS_MAND_TRUE) {
Radek Krejcif6a11002020-08-21 13:29:07 +02001194 /* check generic mandatory existence */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001195 ret = lyd_validate_mandatory(first, parent, snode);
1196 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001197 }
1198
1199 /* check unique */
1200 if (snode->nodetype == LYS_LIST) {
1201 slist = (struct lysc_node_list *)snode;
1202 if (slist->uniques) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001203 ret = lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques);
1204 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001205 }
1206 }
1207
Michal Vasko6c16cda2021-02-04 11:05:52 +01001208 if (snode->nodetype == LYS_CHOICE) {
1209 /* find the existing case, if any */
1210 LY_LIST_FOR(lysc_node_child(snode), scase) {
1211 if (lys_getnext_data(NULL, first, NULL, scase, NULL)) {
1212 /* validate only this case */
Michal Vaskoe0665742021-02-11 11:08:44 +01001213 ret = lyd_validate_siblings_schema_r(first, parent, scase, mod, val_opts, int_opts);
Michal Vasko6c16cda2021-02-04 11:05:52 +01001214 LY_CHECK_GOTO(ret, error);
1215 break;
1216 }
1217 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001218 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001219
Radek Krejciddace2c2021-01-08 11:30:56 +01001220 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001221 }
1222
Michal Vaskoacd83e72020-02-04 14:12:01 +01001223 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001224
1225error:
Radek Krejciddace2c2021-01-08 11:30:56 +01001226 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001227 return ret;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001228}
1229
Michal Vaskobb844672020-07-03 11:06:12 +02001230/**
1231 * @brief Validate obsolete nodes, only warnings are printed.
1232 *
1233 * @param[in] node Node to check.
1234 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001235static void
1236lyd_validate_obsolete(const struct lyd_node *node)
1237{
1238 const struct lysc_node *snode;
1239
1240 snode = node->schema;
1241 do {
1242 if (snode->flags & LYS_STATUS_OBSLT) {
1243 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
1244 break;
1245 }
1246
1247 snode = snode->parent;
1248 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
1249}
1250
Michal Vaskobb844672020-07-03 11:06:12 +02001251/**
1252 * @brief Validate must conditions of a data node.
1253 *
1254 * @param[in] node Node to validate.
Michal Vaskoe0665742021-02-11 11:08:44 +01001255 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001256 * @return LY_ERR value.
1257 */
Michal Vaskocc048b22020-03-27 15:52:38 +01001258static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001259lyd_validate_must(const struct lyd_node *node, uint32_t int_opts)
Michal Vaskocc048b22020-03-27 15:52:38 +01001260{
1261 struct lyxp_set xp_set;
1262 struct lysc_must *musts;
1263 const struct lyd_node *tree;
Radek Krejci9a3823e2021-01-27 20:26:46 +01001264 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001265 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +01001266
Michal Vaskoe0665742021-02-11 11:08:44 +01001267 assert((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) != (LYD_INTOPT_RPC | LYD_INTOPT_REPLY));
1268 assert((int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) != (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY));
1269
Radek Krejci9a3823e2021-01-27 20:26:46 +01001270 if (node->schema->nodetype & (LYS_ACTION | LYS_RPC)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001271 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001272 schema = &((struct lysc_node_action *)node->schema)->input.node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001273 } else if (int_opts & LYD_INTOPT_REPLY) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001274 schema = &((struct lysc_node_action *)node->schema)->output.node;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001275 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001276 LOGINT(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +02001277 return LY_EINT;
1278 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001279 } else {
1280 schema = node->schema;
Michal Vaskocc048b22020-03-27 15:52:38 +01001281 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001282 musts = lysc_node_musts(schema);
Michal Vaskocc048b22020-03-27 15:52:38 +01001283 if (!musts) {
1284 /* no must to evaluate */
1285 return LY_SUCCESS;
1286 }
1287
1288 /* find first top-level node */
Michal Vasko9e685082021-01-29 14:49:09 +01001289 for (tree = node; tree->parent; tree = lyd_parent(tree)) {}
Michal Vaskof9221e62021-02-04 12:10:14 +01001290 tree = lyd_first_sibling(tree);
Michal Vaskocc048b22020-03-27 15:52:38 +01001291
1292 LY_ARRAY_FOR(musts, u) {
1293 memset(&xp_set, 0, sizeof xp_set);
1294
1295 /* evaluate must */
Radek Krejci8df109d2021-04-23 12:19:08 +02001296 LY_CHECK_RET(lyxp_eval(LYD_CTX(node), musts[u].cond, node->schema->module, LY_VALUE_SCHEMA_RESOLVED,
Michal Vasko400e9672021-01-11 13:39:17 +01001297 musts[u].prefixes, node, tree, &xp_set, LYXP_SCHEMA));
Michal Vaskocc048b22020-03-27 15:52:38 +01001298
1299 /* check the result */
1300 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02001301 if (!xp_set.val.bln) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001302 LOGVAL(LYD_CTX(node), LY_VCODE_NOMUST, musts[u].cond->expr);
Michal Vaskocc048b22020-03-27 15:52:38 +01001303 return LY_EVALID;
1304 }
1305 }
1306
1307 return LY_SUCCESS;
1308}
1309
Michal Vaskoe0665742021-02-11 11:08:44 +01001310/**
1311 * @brief Perform all remaining validation tasks, the data tree must be final when calling this function.
1312 *
1313 * @param[in] first First sibling.
1314 * @param[in] parent Data parent.
1315 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
1316 * @param[in] mod Module of the siblings, NULL for nested siblings.
1317 * @param[in] val_opts Validation options (@ref datavalidationoptions).
1318 * @param[in] int_opts Internal parser options.
1319 * @return LY_ERR value.
1320 */
1321static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001322lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001323 const struct lys_module *mod, uint32_t val_opts, uint32_t int_opts)
Michal Vaskoacd83e72020-02-04 14:12:01 +01001324{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001325 const char *innode = NULL;
Radek Krejci7f769d72020-07-11 23:13:56 +02001326 struct lyd_node *next = NULL, *node;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001327
Michal Vasko14654712020-02-06 08:35:21 +01001328 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001329 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +01001330 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001331 /* all top-level data from this module checked */
1332 break;
Michal Vaskof03ed032020-03-04 13:31:44 +01001333 }
1334
Radek Krejciddace2c2021-01-08 11:30:56 +01001335 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001336
Michal Vaskoa8c61722020-03-27 16:59:32 +01001337 /* opaque data */
1338 if (!node->schema) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001339 LOGVAL(LYD_CTX(node), LYVE_DATA, "Opaque node \"%s\" found.", ((struct lyd_node_opaq *)node)->name.name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001340 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskoa8c61722020-03-27 16:59:32 +01001341 return LY_EVALID;
1342 }
1343
Michal Vaskocb7526d2020-03-30 15:08:26 +02001344 /* no state/input/output data */
Radek Krejci7931b192020-06-25 17:05:03 +02001345 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001346 innode = "state";
Michal Vasko224e7772021-02-18 14:22:33 +01001347 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001348 } else if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) && (node->schema->flags & LYS_IS_OUTPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001349 innode = "output";
Michal Vasko224e7772021-02-18 14:22:33 +01001350 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001351 } else if ((int_opts & LYD_INTOPT_REPLY) && (node->schema->flags & LYS_IS_INPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001352 innode = "input";
Michal Vasko224e7772021-02-18 14:22:33 +01001353 goto unexpected_node;
Michal Vasko5b37a352020-03-06 13:38:33 +01001354 }
1355
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001356 /* obsolete data */
1357 lyd_validate_obsolete(node);
1358
Michal Vaskocc048b22020-03-27 15:52:38 +01001359 /* node's musts */
Michal Vaskoe0665742021-02-11 11:08:44 +01001360 LY_CHECK_RET(lyd_validate_must(node, int_opts));
Michal Vaskocc048b22020-03-27 15:52:38 +01001361
Michal Vasko53d97a12020-11-05 17:39:10 +01001362 /* node value was checked by plugins */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001363
Radek Krejciddace2c2021-01-08 11:30:56 +01001364 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001365 }
Michal Vaskocde73ac2019-11-14 16:10:27 +01001366
Michal Vasko14654712020-02-06 08:35:21 +01001367 /* validate schema-based restrictions */
Michal Vaskoe0665742021-02-11 11:08:44 +01001368 LY_CHECK_RET(lyd_validate_siblings_schema_r(first, parent, sparent, mod ? mod->compiled : NULL, val_opts, int_opts));
Michal Vasko14654712020-02-06 08:35:21 +01001369
Michal Vaskob1b5c262020-03-05 14:29:47 +01001370 LY_LIST_FOR(first, node) {
Michal Vasko14654712020-02-06 08:35:21 +01001371 /* validate all children recursively */
Michal Vaskoe0665742021-02-11 11:08:44 +01001372 LY_CHECK_RET(lyd_validate_final_r(lyd_child(node), node, node->schema, NULL, val_opts, int_opts));
Michal Vaskocde73ac2019-11-14 16:10:27 +01001373
Michal Vaskob1b5c262020-03-05 14:29:47 +01001374 /* set default for containers */
1375 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
Radek Krejcia1c1e542020-09-29 16:06:52 +02001376 LY_LIST_FOR(lyd_child(node), next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001377 if (!(next->flags & LYD_DEFAULT)) {
1378 break;
1379 }
Michal Vaskoa3881362020-01-21 15:57:35 +01001380 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001381 if (!next) {
1382 node->flags |= LYD_DEFAULT;
1383 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001384 }
1385 }
1386
1387 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001388
Michal Vasko224e7772021-02-18 14:22:33 +01001389unexpected_node:
1390 LOGVAL(LYD_CTX(node), LY_VCODE_UNEXPNODE, innode, node->schema->name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001391 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001392 return LY_EVALID;
Michal Vasko9b368d32020-02-14 13:53:31 +01001393}
1394
Radek Krejci7931b192020-06-25 17:05:03 +02001395/**
Michal Vaskobb844672020-07-03 11:06:12 +02001396 * @brief Validate the whole data subtree.
1397 *
1398 * @param[in] root Subtree root.
Michal Vaskoe0665742021-02-11 11:08:44 +01001399 * @param[in,out] node_when Set for nodes with when conditions.
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001400 * @param[in,out] node_exts Set for nodes and extension instances with validation plugin callback.
Michal Vasko32711382020-12-03 14:14:31 +01001401 * @param[in,out] node_types Set for unres node types.
1402 * @param[in,out] meta_types Set for unres metadata types.
Michal Vasko29adfbe2020-12-08 17:12:03 +01001403 * @param[in] impl_opts Implicit options, see @ref implicitoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001404 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001405 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001406 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001407static LY_ERR
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001408lyd_validate_subtree(struct lyd_node *root, struct ly_set *node_when, struct ly_set *node_exts, struct ly_set *node_types,
Michal Vaskoe0665742021-02-11 11:08:44 +01001409 struct ly_set *meta_types, uint32_t impl_opts, struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001410{
1411 const struct lyd_meta *meta;
Michal Vasko56daf732020-08-10 10:57:18 +02001412 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001413
Michal Vasko56daf732020-08-10 10:57:18 +02001414 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001415 LY_LIST_FOR(node->meta, meta) {
Radek Krejci1b2eef82021-02-17 11:17:27 +01001416 if ((*(const struct lysc_type **)meta->annotation->substmts[ANNOTATION_SUBSTMT_TYPE].storage)->plugin->validate) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001417 /* metadata type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001418 LY_CHECK_RET(ly_set_add(meta_types, (void *)meta, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001419 }
Michal Vasko0275cf62020-11-05 17:40:30 +01001420 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001421
Michal Vasko0275cf62020-11-05 17:40:30 +01001422 if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) {
1423 /* node type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001424 LY_CHECK_RET(ly_set_add(node_types, (void *)node, 1, NULL));
Michal Vasko0275cf62020-11-05 17:40:30 +01001425 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1426 /* new node validation, autodelete */
Michal Vaskoe0665742021-02-11 11:08:44 +01001427 LY_CHECK_RET(lyd_validate_new(lyd_node_child_p(node), node->schema, NULL, diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001428
Michal Vasko0275cf62020-11-05 17:40:30 +01001429 /* add nested defaults */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001430 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL, NULL, NULL, impl_opts, diff));
Michal Vasko0275cf62020-11-05 17:40:30 +01001431 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001432
Michal Vaskof4d67ea2021-03-31 13:53:21 +02001433 if (lysc_has_when(node->schema)) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001434 /* when evaluation */
Michal Vasko32711382020-12-03 14:14:31 +01001435 LY_CHECK_RET(ly_set_add(node_when, (void *)node, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001436 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001437 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
Michal Vaskofea12c62020-03-30 11:00:15 +02001438
Michal Vasko56daf732020-08-10 10:57:18 +02001439 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001440 }
1441
1442 return LY_SUCCESS;
1443}
1444
Michal Vaskoe0665742021-02-11 11:08:44 +01001445LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001446lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts,
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001447 ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_exts_p,
1448 struct ly_set *node_types_p, struct ly_set *meta_types_p, struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001449{
1450 LY_ERR ret = LY_SUCCESS;
Michal Vasko73e47212020-12-03 14:20:16 +01001451 struct lyd_node *first, *next, **first2, *iter;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001452 const struct lys_module *mod;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001453 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, node_exts = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001454 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001455
Michal Vaskoe0665742021-02-11 11:08:44 +01001456 assert(tree && ctx);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001457 assert((node_when_p && node_exts_p && node_types_p && meta_types_p) ||
1458 (!node_when_p && !node_exts_p && !node_types_p && !meta_types_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001459
1460 if (!node_when_p) {
1461 node_when_p = &node_when;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001462 node_exts_p = &node_exts;
Michal Vaskoe0665742021-02-11 11:08:44 +01001463 node_types_p = &node_types;
1464 meta_types_p = &meta_types;
Michal Vasko8104fd42020-07-13 11:09:51 +02001465 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001466
Michal Vaskob1b5c262020-03-05 14:29:47 +01001467 next = *tree;
1468 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001469 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001470 mod = lyd_data_next_module(&next, &first);
1471 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001472 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001473 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001474 if (!mod) {
1475 break;
1476 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001477 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001478 /* make sure first2 changes are carried to tree */
1479 first2 = tree;
1480 } else {
1481 first2 = &first;
1482 }
1483
1484 /* validate new top-level nodes of this module, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001485 ret = lyd_validate_new(first2, NULL, mod, diff);
1486 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001487
Radek Krejci7be7b9f2021-02-24 11:46:27 +01001488 /* add all top-level defaults for this module, if going to validate subtree, do not add into unres sets
1489 * (lyd_validate_subtree() adds all the nodes in that case) */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001490 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, validate_subtree ? NULL : node_when_p, validate_subtree ? NULL : node_exts_p,
Michal Vaskoc43c8ab2021-03-05 13:32:44 +01001491 validate_subtree ? NULL : node_types_p, (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
Michal Vasko8104fd42020-07-13 11:09:51 +02001492 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001493
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001494 /* our first module node pointer may no longer be the first */
1495 while (*first2 && (*first2)->prev->next && (lyd_owner_module(*first2) == lyd_owner_module((*first2)->prev))) {
1496 *first2 = (*first2)->prev;
1497 }
1498
Michal Vaskoe0665742021-02-11 11:08:44 +01001499 if (validate_subtree) {
1500 /* process nested nodes */
1501 LY_LIST_FOR(*first2, iter) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001502 ret = lyd_validate_subtree(iter, node_when_p, node_exts_p, node_types_p, meta_types_p,
Michal Vaskoe0665742021-02-11 11:08:44 +01001503 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
1504 LY_CHECK_GOTO(ret, cleanup);
1505 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001506 }
1507
1508 /* finish incompletely validated terminal values/attributes and when conditions */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001509 ret = lyd_validate_unres(first2, mod, node_when_p, node_exts_p, node_types_p, meta_types_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001510 LY_CHECK_GOTO(ret, cleanup);
1511
1512 /* perform final validation that assumes the data tree is final */
Michal Vaskobd4db892020-11-23 16:58:20 +01001513 ret = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +02001514 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001515 }
1516
Michal Vaskof03ed032020-03-04 13:31:44 +01001517cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +01001518 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001519 ly_set_erase(&node_exts, NULL);
Michal Vasko32711382020-12-03 14:14:31 +01001520 ly_set_erase(&node_types, NULL);
1521 ly_set_erase(&meta_types, NULL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001522 return ret;
1523}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001524
1525API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001526lyd_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 +01001527{
Michal Vaskoe0665742021-02-11 11:08:44 +01001528 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx, LY_EINVAL);
1529 if (!ctx) {
1530 ctx = LYD_CTX(*tree);
1531 }
1532 if (diff) {
1533 *diff = NULL;
1534 }
1535
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001536 return lyd_validate(tree, NULL, ctx, val_opts, 1, NULL, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001537}
1538
1539API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001540lyd_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 +01001541{
Michal Vaskoe0665742021-02-11 11:08:44 +01001542 LY_CHECK_ARG_RET(NULL, tree, *tree || module, LY_EINVAL);
1543 if (diff) {
1544 *diff = NULL;
1545 }
1546
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001547 return lyd_validate(tree, module, (*tree) ? LYD_CTX(*tree) : module->ctx, val_opts, 1, NULL, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001548}
Michal Vaskofea12c62020-03-30 11:00:15 +02001549
Michal Vaskobb844672020-07-03 11:06:12 +02001550/**
1551 * @brief Find nodes for merging an operation into data tree for validation.
1552 *
1553 * @param[in] op_tree Full operation data tree.
1554 * @param[in] op_node Operation node itself.
1555 * @param[in] tree Data tree to be merged into.
1556 * @param[out] op_subtree Operation subtree to merge.
Michal Vasko2f03d222020-12-09 18:15:51 +01001557 * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL.
1558 * @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 +02001559 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001560static void
Michal Vaskobb844672020-07-03 11:06:12 +02001561lyd_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 +01001562 struct lyd_node **op_subtree, struct lyd_node **tree_sibling, struct lyd_node **tree_parent)
Michal Vaskofea12c62020-03-30 11:00:15 +02001563{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001564 const struct lyd_node *tree_iter, *op_iter;
1565 struct lyd_node *match;
Michal Vaskofea12c62020-03-30 11:00:15 +02001566 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001567
Michal Vasko2f03d222020-12-09 18:15:51 +01001568 *op_subtree = NULL;
1569 *tree_sibling = NULL;
1570 *tree_parent = NULL;
1571
Michal Vaskocb7526d2020-03-30 15:08:26 +02001572 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001573 op_depth = 0;
Michal Vasko9e685082021-01-29 14:49:09 +01001574 for (op_iter = op_node; op_iter != op_tree; op_iter = lyd_parent(op_iter)) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001575 ++op_depth;
1576 }
1577
1578 /* find where to merge op */
1579 tree_iter = tree;
1580 cur_depth = op_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001581 while (cur_depth && tree_iter) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001582 /* find op iter in tree */
1583 lyd_find_sibling_first(tree_iter, op_iter, &match);
1584 if (!match) {
1585 break;
1586 }
1587
1588 /* move tree_iter */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001589 tree_iter = lyd_child(match);
Michal Vaskofea12c62020-03-30 11:00:15 +02001590
1591 /* move depth */
1592 --cur_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001593
1594 /* find next op parent */
1595 op_iter = op_node;
1596 for (i = 0; i < cur_depth; ++i) {
Michal Vasko9e685082021-01-29 14:49:09 +01001597 op_iter = lyd_parent(op_iter);
Michal Vasko2f03d222020-12-09 18:15:51 +01001598 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001599 }
1600
Michal Vasko2f03d222020-12-09 18:15:51 +01001601 assert(op_iter);
Michal Vaskobb844672020-07-03 11:06:12 +02001602 *op_subtree = (struct lyd_node *)op_iter;
Michal Vasko2f03d222020-12-09 18:15:51 +01001603 if (!tree || tree_iter) {
1604 /* there is no tree whatsoever or this is the last found sibling */
1605 *tree_sibling = (struct lyd_node *)tree_iter;
1606 } else {
1607 /* matching parent was found but it has no children to insert next to */
1608 assert(match);
1609 *tree_parent = match;
1610 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001611}
1612
Michal Vaskoe0665742021-02-11 11:08:44 +01001613/**
1614 * @brief Validate an RPC/action request, reply, or notification.
1615 *
1616 * @param[in] op_tree Full operation data tree.
1617 * @param[in] op_node Operation node itself.
1618 * @param[in] dep_tree Tree to be used for validating references from the operation subtree.
1619 * @param[in] int_opts Internal parser options.
1620 * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation).
1621 * @param[in] node_when_p Set of nodes with when conditions, if NULL a local set is used.
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001622 * @param[in] node_exts Set of nodes with extension instances with validation plugin callback, if NULL a local set is used.
Michal Vaskoe0665742021-02-11 11:08:44 +01001623 * @param[in] node_types_p Set of unres node types, if NULL a local set is used.
1624 * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used.
1625 * @param[out] diff Optional diff with any changes made by the validation.
1626 * @return LY_SUCCESS on success.
1627 * @return LY_ERR error on error.
1628 */
1629static LY_ERR
1630_lyd_validate_op(struct lyd_node *op_tree, struct lyd_node *op_node, const struct lyd_node *dep_tree,
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001631 uint32_t int_opts, ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_exts_p,
1632 struct ly_set *node_types_p, struct ly_set *meta_types_p, struct lyd_node **diff)
Michal Vaskocb7526d2020-03-30 15:08:26 +02001633{
Michal Vaskoe0665742021-02-11 11:08:44 +01001634 LY_ERR rc = LY_SUCCESS;
1635 struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_parent, *child;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001636 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, node_exts = {0};
Michal Vaskocb7526d2020-03-30 15:08:26 +02001637
Michal Vaskoe0665742021-02-11 11:08:44 +01001638 assert(op_tree && op_node);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001639 assert((node_when_p && node_exts_p && node_types_p && meta_types_p) ||
1640 (!node_when_p && !node_exts_p && !node_types_p && !meta_types_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001641
1642 if (!node_when_p) {
1643 node_when_p = &node_when;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001644 node_exts_p = &node_exts;
Michal Vaskoe0665742021-02-11 11:08:44 +01001645 node_types_p = &node_types;
1646 meta_types_p = &meta_types;
1647 }
1648
1649 /* merge op_tree into dep_tree */
1650 lyd_val_op_merge_find(op_tree, op_node, dep_tree, &op_subtree, &tree_sibling, &tree_parent);
1651 op_parent = lyd_parent(op_subtree);
1652 lyd_unlink_tree(op_subtree);
1653 lyd_insert_node(tree_parent, &tree_sibling, op_subtree);
1654 if (!dep_tree) {
1655 dep_tree = tree_sibling;
1656 }
1657
1658 LOG_LOCSET(NULL, op_node, NULL, NULL);
1659
1660 if (int_opts & LYD_INTOPT_REPLY) {
1661 /* add output children defaults */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001662 rc = lyd_new_implicit_r(op_node, lyd_node_child_p(op_node), NULL, NULL, node_when_p, node_exts_p, node_types_p,
Michal Vaskoe0665742021-02-11 11:08:44 +01001663 LYD_IMPLICIT_OUTPUT, diff);
1664 LY_CHECK_GOTO(rc, cleanup);
1665
1666 if (validate_subtree) {
1667 /* skip validating the operation itself, go to children directly */
1668 LY_LIST_FOR(lyd_child(op_node), child) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001669 rc = lyd_validate_subtree(child, node_when_p, node_exts_p, node_types_p, meta_types_p, 0, diff);
1670 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001671 }
1672 }
1673 } else {
1674 if (validate_subtree) {
1675 /* prevalidate whole operation subtree */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001676 rc = lyd_validate_subtree(op_node, node_when_p, node_exts_p, node_types_p, meta_types_p, 0, diff);
1677 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001678 }
1679 }
1680
1681 /* finish incompletely validated terminal values/attributes and when conditions on the full tree */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001682 LY_CHECK_GOTO(rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL,
1683 node_when_p, node_exts_p, node_types_p, meta_types_p, diff), cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001684
1685 /* perform final validation of the operation/notification */
1686 lyd_validate_obsolete(op_node);
1687 LY_CHECK_GOTO(rc = lyd_validate_must(op_node, int_opts), cleanup);
1688
1689 /* final validation of all the descendants */
1690 LY_CHECK_GOTO(rc = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, int_opts), cleanup);
1691
1692cleanup:
1693 LOG_LOCBACK(0, 1, 0, 0);
1694 /* restore operation tree */
1695 lyd_unlink_tree(op_subtree);
1696 if (op_parent) {
1697 lyd_insert_node(op_parent, NULL, op_subtree);
1698 }
1699
1700 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001701 ly_set_erase(&node_exts, NULL);
Michal Vaskoe0665742021-02-11 11:08:44 +01001702 ly_set_erase(&node_types, NULL);
1703 ly_set_erase(&meta_types, NULL);
1704 return rc;
1705}
1706
1707API LY_ERR
1708lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *dep_tree, enum lyd_type data_type, struct lyd_node **diff)
1709{
1710 struct lyd_node *op_node;
1711 uint32_t int_opts;
1712
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001713 LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !dep_tree || !dep_tree->parent, (data_type == LYD_TYPE_RPC_YANG) ||
1714 (data_type == LYD_TYPE_NOTIF_YANG) || (data_type == LYD_TYPE_REPLY_YANG), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001715 if (diff) {
1716 *diff = NULL;
1717 }
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001718 if (data_type == LYD_TYPE_RPC_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001719 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001720 } else if (data_type == LYD_TYPE_NOTIF_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001721 int_opts = LYD_INTOPT_NOTIF;
1722 } else {
1723 int_opts = LYD_INTOPT_REPLY;
1724 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001725
1726 /* find the operation/notification */
Michal Vasko56daf732020-08-10 10:57:18 +02001727 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001728 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) &&
1729 (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001730 break;
Michal Vaskoe0665742021-02-11 11:08:44 +01001731 } else if ((int_opts & LYD_INTOPT_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001732 break;
1733 }
Michal Vasko56daf732020-08-10 10:57:18 +02001734 LYD_TREE_DFS_END(op_tree, op_node);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001735 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001736 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) {
Radek Krejci7931b192020-06-25 17:05:03 +02001737 if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001738 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001739 return LY_EINVAL;
1740 }
1741 } else {
Radek Krejci7931b192020-06-25 17:05:03 +02001742 if (op_node->schema->nodetype != LYS_NOTIF) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001743 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001744 return LY_EINVAL;
1745 }
1746 }
1747
Michal Vaskoe0665742021-02-11 11:08:44 +01001748 /* validate */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001749 return _lyd_validate_op(op_tree, op_node, dep_tree, int_opts, 1, NULL, NULL, NULL, NULL, diff);
Michal Vaskofea12c62020-03-30 11:00:15 +02001750}