blob: 27d53714323f4886d00aadfbf77b2b8bbf7d4f66 [file] [log] [blame]
Michal Vaskocde73ac2019-11-14 16:10:27 +01001/**
2 * @file validation.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief Validation
5 *
6 * Copyright (c) 2019 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Krejcif8dc59a2020-11-25 13:47:44 +010014#define _POSIX_C_SOURCE 200809L /* strdup */
Michal Vasko81bc5512020-11-13 18:05:18 +010015
Michal Vaskofbed4ea2020-07-08 10:43:30 +020016#include "validation.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010017
18#include <assert.h>
Radek 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"
Michal Vaskofeca4fb2020-10-05 08:58:40 +020033#include "plugins_exts_metadata.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020034#include "plugins_types.h"
35#include "set.h"
36#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010037#include "tree_data.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010038#include "tree_data_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020039#include "tree_schema.h"
Michal Vasko14654712020-02-06 08:35:21 +010040#include "tree_schema_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020041#include "xpath.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010042
Michal Vaskoa6669ba2020-08-06 16:14:26 +020043LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020044lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff)
45{
46 LY_ERR ret = LY_SUCCESS;
47 struct lyd_node *new_diff = NULL;
Michal Vasko81bc5512020-11-13 18:05:18 +010048 const struct lyd_node *prev_inst;
49 char *key = NULL, *value = NULL;
50 size_t buflen = 0, bufused = 0;
Michal Vasko8104fd42020-07-13 11:09:51 +020051
52 assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE));
53
Michal Vasko81bc5512020-11-13 18:05:18 +010054 if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) {
55 if (node->prev->next && (node->prev->schema == node->schema)) {
56 prev_inst = node->prev;
57 } else {
58 /* first instance */
59 prev_inst = NULL;
60 }
61
62 if (node->schema->nodetype == LYS_LIST) {
63 /* generate key meta */
64 if (prev_inst) {
65 LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup);
66 } else {
67 key = strdup("");
68 LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
69 }
70 } else {
71 /* generate value meta */
72 if (prev_inst) {
73 value = strdup(LYD_CANON_VALUE(prev_inst));
74 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
75 } else {
76 value = strdup("");
77 LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup);
78 }
79 }
80 }
81
Michal Vasko8104fd42020-07-13 11:09:51 +020082 /* create new diff tree */
Michal Vasko81bc5512020-11-13 18:05:18 +010083 LY_CHECK_GOTO(ret = lyd_diff_add(node, op, NULL, NULL, key, value, NULL, &new_diff), cleanup);
Michal Vasko8104fd42020-07-13 11:09:51 +020084
85 /* merge into existing diff */
Michal Vaskoc0e58e82020-11-11 19:04:33 +010086 ret = lyd_diff_merge_all(diff, new_diff, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +020087
Michal Vasko81bc5512020-11-13 18:05:18 +010088cleanup:
Michal Vasko8104fd42020-07-13 11:09:51 +020089 lyd_free_tree(new_diff);
Michal Vasko81bc5512020-11-13 18:05:18 +010090 free(key);
91 free(value);
Michal Vasko8104fd42020-07-13 11:09:51 +020092 return ret;
93}
94
95/**
Michal Vaskobd4db892020-11-23 16:58:20 +010096 * @brief Evaluate all relevant "when" conditions of a node.
Michal Vaskocde73ac2019-11-14 16:10:27 +010097 *
Michal Vaskobd4db892020-11-23 16:58:20 +010098 * @param[in] tree Data tree.
99 * @param[in] node Node whose relevant when conditions will be evaluated.
100 * @param[in] schema Schema node of @p node. It may not be possible to use directly if @p node is opaque.
101 * @param[out] disabled First when that evaluated false, if any.
102 * @return LY_SUCCESS on success.
103 * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated.
104 * @return LY_ERR value on error.
Michal Vaskocde73ac2019-11-14 16:10:27 +0100105 */
106static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100107lyd_validate_node_when(const struct lyd_node *tree, const struct lyd_node *node, const struct lysc_node *schema,
108 const struct lysc_when **disabled)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100109{
Michal Vasko8104fd42020-07-13 11:09:51 +0200110 LY_ERR ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100111 const struct lyd_node *ctx_node;
112 struct lyxp_set xp_set;
Michal Vaskobd4db892020-11-23 16:58:20 +0100113 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100114
Michal Vaskobd4db892020-11-23 16:58:20 +0100115 assert(!node->schema || (node->schema == schema));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100116
Michal Vaskobd4db892020-11-23 16:58:20 +0100117 *disabled = NULL;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100118
Michal Vaskobd4db892020-11-23 16:58:20 +0100119 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +0100120 const struct lysc_when *when;
121 struct lysc_when **when_list = lysc_node_when(schema);
122 LY_ARRAY_FOR(when_list, u) {
123 when = when_list[u];
Michal Vaskocde73ac2019-11-14 16:10:27 +0100124
Michal Vaskobd4db892020-11-23 16:58:20 +0100125 /* get context node */
126 if (when->context == schema) {
127 ctx_node = node;
128 } else {
129 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
Michal Vasko9e685082021-01-29 14:49:09 +0100130 ctx_node = lyd_parent(node);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100131 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100132
133 /* evaluate when */
134 memset(&xp_set, 0, sizeof xp_set);
Michal Vasko400e9672021-01-11 13:39:17 +0100135 ret = lyxp_eval(LYD_CTX(node), when->cond, schema->module, LY_PREF_SCHEMA_RESOLVED, when->prefixes,
136 ctx_node, tree, &xp_set, LYXP_SCHEMA);
Michal Vaskobd4db892020-11-23 16:58:20 +0100137 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
138
139 /* return error or LY_EINCOMPLETE for dependant unresolved when */
140 LY_CHECK_RET(ret);
141
142 if (!xp_set.val.bln) {
143 /* false when */
144 *disabled = when;
145 return LY_SUCCESS;
Michal Vasko8104fd42020-07-13 11:09:51 +0200146 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100147 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100148
149 schema = schema->parent;
150 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
151
152 return LY_SUCCESS;
153}
154
155/**
156 * @brief Evaluate when conditions of collected unres nodes.
157 *
158 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100159 * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it.
160 * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be
161 * the first top-level sibling.
Michal Vaskobd4db892020-11-23 16:58:20 +0100162 * @param[in] node_when Set with nodes with "when" conditions.
163 * @param[in,out] diff Validation diff.
164 * @return LY_SUCCESS on success.
165 * @return LY_ERR value on error.
166 */
167static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100168lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
169 struct lyd_node **diff)
Michal Vaskobd4db892020-11-23 16:58:20 +0100170{
171 LY_ERR ret;
172 uint32_t i;
173 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100174 struct lyd_node *node = NULL;
Michal Vaskobd4db892020-11-23 16:58:20 +0100175
176 if (!node_when->count) {
177 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100178 }
179
Michal Vaskobd4db892020-11-23 16:58:20 +0100180 i = node_when->count;
181 do {
182 --i;
183 node = node_when->dnodes[i];
Radek Krejciddace2c2021-01-08 11:30:56 +0100184 LOG_LOCSET(node->schema, node, NULL, NULL);
Michal Vaskobd4db892020-11-23 16:58:20 +0100185
186 /* evaluate all when expressions that affect this node's existence */
187 ret = lyd_validate_node_when(*tree, node, node->schema, &disabled);
188 if (!ret) {
189 if (disabled) {
190 /* when false */
191 if (node->flags & LYD_WHEN_TRUE) {
192 /* autodelete */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100193 lyd_del_move_root(tree, node, mod);
Michal Vaskobd4db892020-11-23 16:58:20 +0100194 if (diff) {
195 /* add into diff */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100196 ret = lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
197 LY_CHECK_GOTO(ret, error);
Michal Vaskobd4db892020-11-23 16:58:20 +0100198 }
199 lyd_free_tree(node);
200 } else {
201 /* invalid data */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100202 LOGVAL(LYD_CTX(node), LY_VCODE_NOWHEN, disabled->cond->expr);
203 ret = LY_EVALID;
204 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100205 }
206 } else {
207 /* when true */
208 node->flags |= LYD_WHEN_TRUE;
209 }
210
211 /* remove this node from the set, its when was resolved */
212 ly_set_rm_index(node_when, i, NULL);
213 } else if (ret != LY_EINCOMPLETE) {
214 /* error */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100215 goto error;
Michal Vaskobd4db892020-11-23 16:58:20 +0100216 }
Radek Krejci2efc45b2020-12-22 16:25:44 +0100217
Radek Krejciddace2c2021-01-08 11:30:56 +0100218 LOG_LOCBACK(1, 1, 0, 0);
Michal Vaskobd4db892020-11-23 16:58:20 +0100219 } while (i);
220
221 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100222
223error:
Radek Krejciddace2c2021-01-08 11:30:56 +0100224 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100225 return ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100226}
227
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200228struct node_ext {
229 struct lyd_node *node;
230 struct lysc_ext_instance *ext;
231};
232
233static LY_ERR
234node_ext_tovalidate_add(struct ly_set *node_exts, struct lysc_ext_instance *exts, struct lyd_node *node)
235{
236 LY_ERR ret = LY_SUCCESS;
237 struct lysc_ext_instance *ext;
238 struct node_ext *rec;
239
240 LY_ARRAY_FOR(exts, const struct lysc_ext_instance, ext) {
241 if (ext->def->plugin->validate) {
242 rec = malloc(sizeof *rec);
243 LY_CHECK_ERR_RET(!rec, LOGMEM(LYD_CTX(node)), LY_EMEM);
244 rec->ext = ext;
245 rec->node = node;
246
247 ret = ly_set_add(node_exts, rec, 1, NULL);
248 if (ret) {
249 free(rec);
250 break;
251 }
252 }
253 }
254
255 return ret;
256}
257
Michal Vaskocde73ac2019-11-14 16:10:27 +0100258LY_ERR
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200259lysc_node_ext_tovalidate(struct ly_set *node_exts, struct lyd_node *node)
260{
261 const struct lysc_node *schema = node->schema;
262
263 if (!schema) {
264 /* nothing to do */
265 return LY_SUCCESS;
266 }
267
268 /* node's extensions */
269 LY_CHECK_RET(node_ext_tovalidate_add(node_exts, schema->exts, node));
270
271 if (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
272 /* type's extensions */
273 LY_CHECK_RET(node_ext_tovalidate_add(node_exts, ((struct lysc_node_leaf *)schema)->type->exts, node));
274 }
275
276 return LY_SUCCESS;
277}
278
279LY_ERR
280lyd_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 +0100281 struct ly_set *node_types, struct ly_set *meta_types, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100282{
283 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200284 uint32_t i;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100285
Michal Vaskob1b5c262020-03-05 14:29:47 +0100286 if (node_when) {
287 /* evaluate all when conditions */
288 uint32_t prev_count;
289 do {
290 prev_count = node_when->count;
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100291 LY_CHECK_RET(lyd_validate_unres_when(tree, mod, node_when, diff));
Radek Krejci0f969882020-08-21 16:56:47 +0200292 /* there must have been some when conditions resolved */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100293 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100294
Michal Vaskob1b5c262020-03-05 14:29:47 +0100295 /* there could have been no cyclic when dependencies, checked during compilation */
296 assert(!node_when->count);
297 }
298
Radek Krejci4f2e3e52021-03-30 14:20:28 +0200299 if (node_exts && node_exts->count) {
300 i = node_exts->count;
301 do {
302 --i;
303
304 struct node_ext *item = node_exts->objs[i];
305
306 LOG_LOCSET(item->node->schema, item->node, NULL, NULL);
307 ret = item->ext->def->plugin->validate(item->ext, item->node);
308 LOG_LOCBACK(item->node->schema ? 1 : 0, 1, 0, 0);
309 LY_CHECK_RET(ret);
310
311 /* remove this node from the set */
312 ly_set_rm_index(node_exts, i, free);
313 } while (i);
314 }
315
Michal Vaskob1b5c262020-03-05 14:29:47 +0100316 if (node_types && node_types->count) {
317 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200318 i = node_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100319 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200320 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100321
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100322 struct lyd_node_term *node = node_types->objs[i];
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200323 struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100324
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200325 /* resolve the value of the node */
Michal Vasko9e685082021-01-29 14:49:09 +0100326 LOG_LOCSET(node->schema, &node->node, NULL, NULL);
327 ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, &node->node, *tree);
Radek Krejciddace2c2021-01-08 11:30:56 +0100328 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100329 LY_CHECK_RET(ret);
330
331 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200332 ly_set_rm_index(node_types, i, NULL);
333 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100334 }
335
Michal Vasko9f96a052020-03-10 09:41:45 +0100336 if (meta_types && meta_types->count) {
337 /* ... and metadata values */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200338 i = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100339 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200340 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100341
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100342 struct lyd_meta *meta = meta_types->objs[i];
Radek Krejci1b2eef82021-02-17 11:17:27 +0100343 struct lysc_type *type = *(struct lysc_type **)meta->annotation->substmts[ANNOTATION_SUBSTMT_TYPE].storage;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100344
Michal Vasko9f96a052020-03-10 09:41:45 +0100345 /* validate and store the value of the metadata */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100346 ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100347 LY_CHECK_RET(ret);
348
349 /* remove this attr from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200350 ly_set_rm_index(meta_types, i, NULL);
351 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100352 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100353
354 return ret;
355}
356
Michal Vaskobb844672020-07-03 11:06:12 +0200357/**
358 * @brief Validate instance duplication.
359 *
360 * @param[in] first First sibling to search in.
361 * @param[in] node Data node instance to check.
362 * @return LY_ERR value.
363 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100364static LY_ERR
365lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100366{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100367 struct lyd_node **match_p;
Radek Krejci857189e2020-09-01 13:26:36 +0200368 ly_bool fail = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100369
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100370 assert(node->flags & LYD_NEW);
371
Michal Vaskod6c18af2021-02-12 12:07:31 +0100372 /* key-less list or non-configuration leaf-list */
373 if (((node->schema->nodetype == LYS_LIST) && (node->schema->flags & LYS_KEYLESS)) ||
374 ((node->schema->nodetype == LYS_LEAFLIST) && !(node->schema->flags & LYS_CONFIG_W))) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100375 /* duplicate instances allowed */
376 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100377 }
378
Michal Vaskob1b5c262020-03-05 14:29:47 +0100379 /* find exactly the same next instance using hashes if possible */
380 if (node->parent && node->parent->children_ht) {
381 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
382 fail = 1;
383 }
384 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +0200385 for ( ; first; first = first->next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100386 if (first == node) {
387 continue;
388 }
389
390 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
391 if (first->schema == node->schema) {
392 fail = 1;
393 break;
394 }
Michal Vasko8f359bf2020-07-28 10:41:15 +0200395 } else if (!lyd_compare_single(first, node, 0)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100396 fail = 1;
397 break;
398 }
399 }
400 }
401
402 if (fail) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100403 LOGVAL(node->schema->module->ctx, LY_VCODE_DUP, node->schema->name);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100404 return LY_EVALID;
405 }
406 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100407}
408
Michal Vaskobb844672020-07-03 11:06:12 +0200409/**
410 * @brief Validate multiple case data existence with possible autodelete.
411 *
412 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100413 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200414 * @param[in] choic Choice node whose cases to check.
Michal Vasko8104fd42020-07-13 11:09:51 +0200415 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200416 * @return LY_ERR value.
417 */
Michal Vaskocde73ac2019-11-14 16:10:27 +0100418static LY_ERR
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100419lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic,
420 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100421{
422 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
423 struct lyd_node *match, *to_del;
Radek Krejci857189e2020-09-01 13:26:36 +0200424 ly_bool found;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100425
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100426 LOG_LOCSET(&choic->node, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100427
Michal Vaskob1b5c262020-03-05 14:29:47 +0100428 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
429 found = 0;
430 iter = NULL;
431 match = NULL;
432 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
433 if (match->flags & LYD_NEW) {
434 /* a new case data found, nothing more to look for */
435 found = 2;
436 break;
437 } else {
438 /* and old case data found */
439 if (found == 0) {
440 found = 1;
441 }
442 }
443 }
444
445 if (found == 1) {
446 /* there should not be 2 old cases */
447 if (old_case) {
448 /* old data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100449 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, old_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100450 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100451 return LY_EVALID;
452 }
453
454 /* remember an old existing case */
455 old_case = scase;
456 } else if (found == 2) {
457 if (new_case) {
458 /* new data from 2 cases */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100459 LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, new_case->name, scase->name);
Radek Krejciddace2c2021-01-08 11:30:56 +0100460 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100461 return LY_EVALID;
462 }
463
464 /* remember a new existing case */
465 new_case = scase;
466 }
467 }
468
Radek Krejciddace2c2021-01-08 11:30:56 +0100469 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100470
Michal Vaskob1b5c262020-03-05 14:29:47 +0100471 if (old_case && new_case) {
472 /* auto-delete old case */
473 iter = NULL;
474 match = NULL;
475 to_del = NULL;
476 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100477 lyd_del_move_root(first, to_del, mod);
478
Michal Vasko8104fd42020-07-13 11:09:51 +0200479 /* free previous node */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100480 lyd_free_tree(to_del);
Michal Vasko8104fd42020-07-13 11:09:51 +0200481 if (diff) {
482 /* add into diff */
483 LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff));
484 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100485 to_del = match;
486 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100487 lyd_del_move_root(first, to_del, mod);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100488 lyd_free_tree(to_del);
489 }
490
491 return LY_SUCCESS;
492}
493
Michal Vaskobb844672020-07-03 11:06:12 +0200494/**
495 * @brief Check whether a schema node can have some default values (true for NP containers as well).
496 *
497 * @param[in] schema Schema node to check.
498 * @return non-zero if yes,
499 * @return 0 otherwise.
500 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100501static int
502lyd_val_has_default(const struct lysc_node *schema)
503{
504 switch (schema->nodetype) {
505 case LYS_LEAF:
506 if (((struct lysc_node_leaf *)schema)->dflt) {
507 return 1;
508 }
509 break;
510 case LYS_LEAFLIST:
511 if (((struct lysc_node_leaflist *)schema)->dflts) {
512 return 1;
513 }
514 break;
515 case LYS_CONTAINER:
516 if (!(schema->flags & LYS_PRESENCE)) {
517 return 1;
518 }
519 break;
520 default:
521 break;
522 }
523
524 return 0;
525}
526
Michal Vaskobb844672020-07-03 11:06:12 +0200527/**
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100528 * @brief Properly delete a node as part of autodelete validation tasks.
529 *
530 * @param[in,out] first First sibling, is updated if needed.
531 * @param[in] node Node instance to delete.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100532 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100533 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
534 * @param[in,out] diff Validation diff.
535 */
536static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100537lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
538 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100539{
540 struct lyd_node *iter;
541
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100542 lyd_del_move_root(first, node, mod);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100543 if (node == *next_p) {
544 *next_p = (*next_p)->next;
545 }
546 if (diff) {
547 /* add into diff */
548 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
549 /* we do not want to track NP container changes, but remember any removed children */
550 LY_LIST_FOR(lyd_child(node), iter) {
551 lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff);
552 }
553 } else {
554 lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff);
555 }
556 }
557 lyd_free_tree(node);
558}
559
560/**
Michal Vaskobb844672020-07-03 11:06:12 +0200561 * @brief Autodelete old instances to prevent validation errors.
562 *
563 * @param[in,out] first First sibling to search in, is updated if needed.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100564 * @param[in] node New data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100565 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskobb844672020-07-03 11:06:12 +0200566 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
Michal Vasko8104fd42020-07-13 11:09:51 +0200567 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200568 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100569static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100570lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
571 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100572{
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100573 struct lyd_node *match, *next;
574
575 assert(node->flags & LYD_NEW);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100576
577 if (lyd_val_has_default(node->schema)) {
578 assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER));
Michal Vasko4c583e82020-07-17 12:16:14 +0200579 LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100580 if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) {
581 /* default instance found, remove it */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100582 lyd_validate_autodel_node_del(first, match, mod, next_p, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100583
584 /* remove only a single container/leaf default instance, if there are more, it is an error */
585 if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) {
586 break;
587 }
588 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100589 }
590 }
591}
592
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100593/**
594 * @brief Autodelete leftover default nodes of deleted cases (that have no existing explicit data).
595 *
596 * @param[in,out] first First sibling to search in, is updated if needed.
597 * @param[in] node Default data node instance to check.
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100598 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100599 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
600 * @param[in,out] diff Validation diff.
601 */
602static void
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100603lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod,
604 struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100605{
606 struct lysc_node_choice *choic;
607 struct lyd_node *iter = NULL;
608 const struct lysc_node *slast = NULL;
609
610 assert(node->flags & LYD_DEFAULT);
611
612 if (!node->schema->parent || (node->schema->parent->nodetype != LYS_CASE)) {
613 /* the default node is not a descendant of a case */
614 return;
615 }
616
617 choic = (struct lysc_node_choice *)node->schema->parent->parent;
618 assert(choic->nodetype == LYS_CHOICE);
619
620 if (choic->dflt && (choic->dflt == (struct lysc_node_case *)node->schema->parent)) {
621 /* data of a default case, keep them */
622 return;
623 }
624
625 /* try to find an explicit node of the case */
626 while ((iter = lys_getnext_data(iter, *first, &slast, node->schema->parent, NULL))) {
627 if (!(iter->flags & LYD_DEFAULT)) {
628 break;
629 }
630 }
631
632 if (!iter) {
633 /* there are only default nodes of the case meaning it does not exist and neither should any default nodes
634 * of the case, remove this one default node */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100635 lyd_validate_autodel_node_del(first, node, mod, next_p, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100636 }
637}
638
Michal Vaskob1b5c262020-03-05 14:29:47 +0100639LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +0200640lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +0200641 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100642{
643 struct lyd_node *next, *node;
644 const struct lysc_node *snode = NULL;
645
646 assert(first && (sparent || mod));
647
648 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
649 /* check case duplicites */
650 if (snode->nodetype == LYS_CHOICE) {
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100651 LY_CHECK_RET(lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100652 }
653 }
654
655 LY_LIST_FOR_SAFE(*first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100656 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100657 /* all top-level data from this module checked */
658 break;
659 }
660
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100661 if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) {
662 /* check only new and default nodes */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100663 continue;
664 }
665
Radek Krejciddace2c2021-01-08 11:30:56 +0100666 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100667
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100668 if (node->flags & LYD_NEW) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100669 LY_ERR ret;
670
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100671 /* remove old default(s) of the new node if it exists */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100672 lyd_validate_autodel_dup(first, node, mod, &next, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100673
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100674 /* then check new node instance duplicities */
Radek Krejci2efc45b2020-12-22 16:25:44 +0100675 ret = lyd_validate_duplicates(*first, node);
Radek Krejciddace2c2021-01-08 11:30:56 +0100676 LY_CHECK_ERR_RET(ret, LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0), ret);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100677
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100678 /* this node is valid */
679 node->flags &= ~LYD_NEW;
680 }
681
Michal Vasko0e6de512021-01-11 13:39:44 +0100682 LOG_LOCBACK(node->schema ? 1 : 0, 1, 0, 0);
683
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100684 if (node->flags & LYD_DEFAULT) {
685 /* remove leftover default nodes from a no-longer existing case */
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100686 lyd_validate_autodel_case_dflt(first, node, mod, &next, diff);
Michal Vaskodcacf2f2020-11-18 18:18:15 +0100687 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100688 }
689
690 return LY_SUCCESS;
691}
692
Michal Vaskobb844672020-07-03 11:06:12 +0200693/**
Michal Vaskobd4db892020-11-23 16:58:20 +0100694 * @brief Evaluate any "when" conditions of a non-existent data node with existing parent.
695 *
696 * @param[in] first First data sibling of the non-existing node.
697 * @param[in] parent Data parent of the non-existing node.
698 * @param[in] snode Schema node of the non-existing node.
699 * @param[out] disabled First when that evaluated false, if any.
700 * @return LY_ERR value.
701 */
702static LY_ERR
703lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
704 const struct lysc_when **disabled)
705{
706 LY_ERR ret = LY_SUCCESS;
707 struct lyd_node *tree, *dummy = NULL;
708
709 /* find root */
710 if (parent) {
711 tree = (struct lyd_node *)parent;
712 while (tree->parent) {
713 tree = lyd_parent(tree);
714 }
715 tree = lyd_first_sibling(tree);
716 } else {
717 assert(!first || !first->prev->next);
718 tree = (struct lyd_node *)first;
719 }
720
721 /* create dummy opaque node */
Michal Vasko0ab974d2021-02-24 13:18:26 +0100722 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 +0100723 LY_CHECK_GOTO(ret, cleanup);
724
725 /* connect it if needed */
726 if (!parent) {
727 if (first) {
728 lyd_insert_sibling((struct lyd_node *)first, dummy, &tree);
729 } else {
730 assert(!tree);
731 tree = dummy;
732 }
733 }
734
735 /* evaluate all when */
736 ret = lyd_validate_node_when(tree, dummy, snode, disabled);
737 if (ret == LY_EINCOMPLETE) {
738 /* all other when must be resolved by now */
739 LOGINT(snode->module->ctx);
740 ret = LY_EINT;
741 goto cleanup;
742 } else if (ret) {
743 /* error */
744 goto cleanup;
745 }
746
747cleanup:
748 lyd_free_tree(dummy);
749 return ret;
750}
751
752/**
Michal Vaskobb844672020-07-03 11:06:12 +0200753 * @brief Validate mandatory node existence.
754 *
755 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100756 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200757 * @param[in] snode Schema node to validate.
758 * @return LY_ERR value.
759 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100760static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100761lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100762{
Michal Vaskobd4db892020-11-23 16:58:20 +0100763 const struct lysc_when *disabled;
764
Michal Vaskoa3881362020-01-21 15:57:35 +0100765 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100766 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100767 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100768 return LY_SUCCESS;
769 }
770 } else {
771 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100772
Michal Vaskob1b5c262020-03-05 14:29:47 +0100773 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100774 /* data instance found */
775 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100776 }
777 }
778
Michal Vaskobd4db892020-11-23 16:58:20 +0100779 disabled = NULL;
780 if (lysc_has_when(snode)) {
781 /* if there are any when conditions, they must be true for a validation error */
782 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
783 }
784
785 if (!disabled) {
786 /* node instance not found */
Michal Vasko538b8952021-02-17 11:27:26 +0100787 if (snode->nodetype == LYS_CHOICE) {
788 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND_CHOIC, snode->name);
789 } else {
790 LOGVAL(snode->module->ctx, LY_VCODE_NOMAND, snode->name);
791 }
Michal Vaskobd4db892020-11-23 16:58:20 +0100792 return LY_EVALID;
793 }
794
795 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100796}
797
Michal Vaskobb844672020-07-03 11:06:12 +0200798/**
799 * @brief Validate min/max-elements constraints, if any.
800 *
801 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +0100802 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +0200803 * @param[in] snode Schema node to validate.
804 * @param[in] min Minimum number of elements, 0 for no restriction.
805 * @param[in] max Max number of elements, 0 for no restriction.
806 * @return LY_ERR value.
807 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100808static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +0100809lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode,
810 uint32_t min, uint32_t max)
Michal Vaskoa3881362020-01-21 15:57:35 +0100811{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100812 uint32_t count = 0;
Michal Vasko4c583e82020-07-17 12:16:14 +0200813 struct lyd_node *iter;
Michal Vaskobd4db892020-11-23 16:58:20 +0100814 const struct lysc_when *disabled;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100815 ly_bool invalid_instance = 0;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100816
Michal Vasko9b368d32020-02-14 13:53:31 +0100817 assert(min || max);
818
Michal Vasko4c583e82020-07-17 12:16:14 +0200819 LYD_LIST_FOR_INST(first, snode, iter) {
820 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100821
Michal Vasko4c583e82020-07-17 12:16:14 +0200822 if (min && (count == min)) {
823 /* satisfied */
824 min = 0;
825 if (!max) {
826 /* nothing more to check */
Michal Vasko9b368d32020-02-14 13:53:31 +0100827 break;
828 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100829 }
Michal Vasko4c583e82020-07-17 12:16:14 +0200830 if (max && (count > max)) {
831 /* not satisifed */
Radek Krejciddace2c2021-01-08 11:30:56 +0100832 LOG_LOCSET(NULL, iter, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100833 invalid_instance = 1;
Michal Vasko4c583e82020-07-17 12:16:14 +0200834 break;
835 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100836 }
837
Michal Vasko9b368d32020-02-14 13:53:31 +0100838 if (min) {
839 assert(count < min);
Michal Vaskobd4db892020-11-23 16:58:20 +0100840
841 disabled = NULL;
842 if (lysc_has_when(snode)) {
843 /* if there are any when conditions, they must be true for a validation error */
844 LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled));
845 }
846
847 if (!disabled) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100848 LOGVAL(snode->module->ctx, LY_VCODE_NOMIN, snode->name);
849 goto failure;
Michal Vaskobd4db892020-11-23 16:58:20 +0100850 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100851 } else if (max && (count > max)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100852 LOGVAL(snode->module->ctx, LY_VCODE_NOMAX, snode->name);
853 goto failure;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100854 }
855
Michal Vaskoa3881362020-01-21 15:57:35 +0100856 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +0100857
858failure:
Radek Krejciddace2c2021-01-08 11:30:56 +0100859 LOG_LOCBACK(0, invalid_instance, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100860 return LY_EVALID;
Michal Vaskoa3881362020-01-21 15:57:35 +0100861}
862
Michal Vaskobb844672020-07-03 11:06:12 +0200863/**
864 * @brief Find node referenced by a list unique statement.
865 *
866 * @param[in] uniq_leaf Unique leaf to find.
867 * @param[in] list List instance to use for the search.
868 * @return Found leaf,
869 * @return NULL if no leaf found.
870 */
Michal Vasko14654712020-02-06 08:35:21 +0100871static struct lyd_node *
Michal Vaskobb844672020-07-03 11:06:12 +0200872lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list)
Michal Vasko14654712020-02-06 08:35:21 +0100873{
Michal Vasko9b368d32020-02-14 13:53:31 +0100874 struct lyd_node *node;
875 const struct lysc_node *iter;
876 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +0100877
Michal Vasko9b368d32020-02-14 13:53:31 +0100878 /* get leaf depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100879 for (iter = &uniq_leaf->node; iter && (iter != list->schema); iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200880 ++depth;
Michal Vasko14654712020-02-06 08:35:21 +0100881 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100882
Michal Vaskobb844672020-07-03 11:06:12 +0200883 node = (struct lyd_node *)list;
Michal Vasko9b368d32020-02-14 13:53:31 +0100884 while (node && depth) {
885 /* find schema node with this depth */
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100886 for (i = depth - 1, iter = &uniq_leaf->node; i; iter = lysc_data_parent(iter)) {
Michal Vasko62ed12d2020-05-21 10:08:25 +0200887 --i;
Michal Vasko9b368d32020-02-14 13:53:31 +0100888 }
889
890 /* find iter instance in children */
891 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
Radek Krejcia1c1e542020-09-29 16:06:52 +0200892 lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100893 --depth;
894 }
895
Michal Vasko14654712020-02-06 08:35:21 +0100896 return node;
897}
898
Michal Vaskobb844672020-07-03 11:06:12 +0200899/**
900 * @brief Callback for comparing 2 list unique leaf values.
901 *
Michal Vasko62524a92021-02-26 10:08:50 +0100902 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200903 *
Michal Vaskobb844672020-07-03 11:06:12 +0200904 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +0100905 */
Radek Krejci857189e2020-09-01 13:26:36 +0200906static ly_bool
907lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data)
Michal Vasko14654712020-02-06 08:35:21 +0100908{
909 struct ly_ctx *ctx;
910 struct lysc_node_list *slist;
911 struct lyd_node *diter, *first, *second;
912 struct lyd_value *val1, *val2;
913 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200914 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +0100915
916 assert(val1_p && val2_p);
917
918 first = *((struct lyd_node **)val1_p);
919 second = *((struct lyd_node **)val2_p);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200920 action = (LY_ARRAY_COUNT_TYPE)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +0100921
922 assert(first && (first->schema->nodetype == LYS_LIST));
923 assert(second && (second->schema == first->schema));
924
925 ctx = first->schema->module->ctx;
926
927 slist = (struct lysc_node_list *)first->schema;
928
929 /* compare unique leaves */
930 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200931 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200932 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +0100933 goto uniquecheck;
934 }
935 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200936 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +0100937uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200938 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +0100939 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200940 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +0100941 if (diter) {
942 val1 = &((struct lyd_node_term *)diter)->value;
943 } else {
944 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200945 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100946 }
947
948 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200949 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +0100950 if (diter) {
951 val2 = &((struct lyd_node_term *)diter)->value;
952 } else {
953 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200954 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100955 }
956
957 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
958 /* values differ or either one is not set */
959 break;
960 }
961 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200962 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +0100963 /* all unique leafs are the same in this set, create this nice error */
Radek Krejci635d2b82021-01-04 11:26:51 +0100964 path1 = lyd_path(first, LYD_PATH_STD, NULL, 0);
965 path2 = lyd_path(second, LYD_PATH_STD, NULL, 0);
Michal Vasko14654712020-02-06 08:35:21 +0100966
967 /* use buffer to rebuild the unique string */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100968#define UNIQ_BUF_SIZE 1024
969 uniq_str = malloc(UNIQ_BUF_SIZE);
Michal Vasko14654712020-02-06 08:35:21 +0100970 uniq_str[0] = '\0';
971 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200972 LY_ARRAY_FOR(slist->uniques[u], v) {
973 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +0100974 strcpy(ptr, " ");
975 ++ptr;
976 }
Michal Vasko14ed9cd2021-01-28 14:16:25 +0100977 ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], &slist->node, LYSC_PATH_LOG,
Radek Krejcif13b87b2020-12-01 22:02:17 +0100978 ptr, UNIQ_BUF_SIZE - (ptr - uniq_str));
Michal Vasko14654712020-02-06 08:35:21 +0100979 if (!ptr) {
980 /* path will be incomplete, whatever */
981 break;
982 }
983
984 ptr += strlen(ptr);
985 }
Radek Krejciddace2c2021-01-08 11:30:56 +0100986 LOG_LOCSET(NULL, second, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +0100987 LOGVAL(ctx, LY_VCODE_NOUNIQ, uniq_str, path1, path2);
Radek Krejciddace2c2021-01-08 11:30:56 +0100988 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +0100989
990 free(path1);
991 free(path2);
992 free(uniq_str);
Radek Krejcif13b87b2020-12-01 22:02:17 +0100993#undef UNIQ_BUF_SIZE
994
Michal Vasko14654712020-02-06 08:35:21 +0100995 return 1;
996 }
997
998 if (action > 0) {
999 /* done */
1000 return 0;
1001 }
1002 }
1003
1004 return 0;
1005}
1006
Michal Vaskobb844672020-07-03 11:06:12 +02001007/**
1008 * @brief Validate list unique leaves.
1009 *
1010 * @param[in] first First sibling to search in.
1011 * @param[in] snode Schema node to validate.
1012 * @param[in] uniques List unique arrays to validate.
1013 * @return LY_ERR value.
1014 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001015static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +02001016lyd_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 +01001017{
Michal Vaskob1b5c262020-03-05 14:29:47 +01001018 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +01001019 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001020 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +01001021 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001022 uint32_t hash, i, size = 0;
Radek Krejci857189e2020-09-01 13:26:36 +02001023 ly_bool dynamic;
Michal Vasko14654712020-02-06 08:35:21 +01001024 const char *str;
1025 struct hash_table **uniqtables = NULL;
1026 struct lyd_value *val;
1027 struct ly_ctx *ctx = snode->module->ctx;
1028
1029 assert(uniques);
1030
1031 /* get all list instances */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001032 LY_CHECK_RET(ly_set_new(&set));
Michal Vaskob1b5c262020-03-05 14:29:47 +01001033 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +01001034 if (diter->schema == snode) {
Radek Krejci3d92e442020-10-12 12:48:13 +02001035 ret = ly_set_add(set, (void *)diter, 1, NULL);
Michal Vaskob0099a92020-08-31 14:55:23 +02001036 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko9b368d32020-02-14 13:53:31 +01001037 }
1038 }
Michal Vasko14654712020-02-06 08:35:21 +01001039
1040 if (set->count == 2) {
1041 /* simple comparison */
1042 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
1043 /* instance duplication */
1044 ret = LY_EVALID;
1045 goto cleanup;
1046 }
1047 } else if (set->count > 2) {
1048 /* use hashes for comparison */
Radek Krejcif13b87b2020-12-01 22:02:17 +01001049 /* first, allocate the table, the size depends on number of items in the set,
1050 * the following code detects number of upper zero bits in the items' counter value ... */
1051 for (i = (sizeof set->count * CHAR_BIT) - 1; i > 0; i--) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001052 size = set->count << i;
1053 size = size >> i;
1054 if (size == set->count) {
Michal Vasko14654712020-02-06 08:35:21 +01001055 break;
1056 }
1057 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001058 LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup);
Radek Krejcif13b87b2020-12-01 22:02:17 +01001059 /* ... and then we convert it to the position of the highest non-zero bit ... */
1060 i = (sizeof set->count * CHAR_BIT) - i;
1061 /* ... 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 +02001062 size = 1 << i;
Michal Vasko14654712020-02-06 08:35:21 +01001063
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001064 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +01001065 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001066 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001067 for (v = 0; v < x; v++) {
1068 uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(v + 1L), 0);
1069 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +01001070 }
1071
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001072 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +01001073 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001074 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +01001075 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001076 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001077 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +01001078 if (diter) {
1079 val = &((struct lyd_node_term *)diter)->value;
1080 } else {
1081 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001082 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +01001083 }
1084 if (!val) {
1085 /* unique item not present nor has default value */
1086 break;
1087 }
1088
1089 /* get canonical string value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001090 str = val->realtype->plugin->print(val, LY_PREF_JSON, NULL, &dynamic);
Michal Vasko14654712020-02-06 08:35:21 +01001091 hash = dict_hash_multi(hash, str, strlen(str));
1092 if (dynamic) {
1093 free((char *)str);
1094 }
1095 }
1096 if (!val) {
1097 /* skip this list instance since its unique set is incomplete */
1098 continue;
1099 }
1100
1101 /* finish the hash value */
1102 hash = dict_hash_multi(hash, NULL, 0);
1103
1104 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001105 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +01001106 if (ret == LY_EEXIST) {
1107 /* instance duplication */
1108 ret = LY_EVALID;
1109 }
1110 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
1111 }
1112 }
1113 }
1114
1115cleanup:
1116 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001117 for (v = 0; v < x; v++) {
1118 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +01001119 /* failed when allocating uniquetables[j], following j are not allocated */
1120 break;
1121 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001122 lyht_free(uniqtables[v]);
Michal Vasko14654712020-02-06 08:35:21 +01001123 }
1124 free(uniqtables);
1125
1126 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +01001127}
1128
Michal Vaskobb844672020-07-03 11:06:12 +02001129/**
1130 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
1131 *
1132 * @param[in] first First sibling to search in.
Michal Vaskobd4db892020-11-23 16:58:20 +01001133 * @param[in] parent Data parent.
Michal Vaskobb844672020-07-03 11:06:12 +02001134 * @param[in] sparent Schema parent of the nodes to check.
1135 * @param[in] mod Module of the nodes to check.
1136 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vaskoe0665742021-02-11 11:08:44 +01001137 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001138 * @return LY_ERR value.
1139 */
Michal Vaskoa3881362020-01-21 15:57:35 +01001140static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001141lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001142 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 +01001143{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001144 LY_ERR ret = LY_SUCCESS;
Michal Vasko6c16cda2021-02-04 11:05:52 +01001145 const struct lysc_node *snode = NULL, *scase;
Michal Vaskoa3881362020-01-21 15:57:35 +01001146 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +02001147 struct lysc_node_leaflist *sllist;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001148 uint32_t getnext_opts;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001149
Michal Vaskoe0665742021-02-11 11:08:44 +01001150 getnext_opts = LYS_GETNEXT_WITHCHOICE | (int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001151
Michal Vaskoa3881362020-01-21 15:57:35 +01001152 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001153 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +02001154 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001155 continue;
1156 }
1157
Radek Krejciddace2c2021-01-08 11:30:56 +01001158 LOG_LOCSET(snode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001159
Michal Vaskoa3881362020-01-21 15:57:35 +01001160 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +02001161 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +01001162 slist = (struct lysc_node_list *)snode;
1163 if (slist->min || slist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001164 ret = lyd_validate_minmax(first, parent, snode, slist->min, slist->max);
1165 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001166 }
Michal Vaskod8958df2020-08-05 13:27:36 +02001167 } else if (snode->nodetype == LYS_LEAFLIST) {
1168 sllist = (struct lysc_node_leaflist *)snode;
1169 if (sllist->min || sllist->max) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001170 ret = lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max);
1171 LY_CHECK_GOTO(ret, error);
Michal Vaskod8958df2020-08-05 13:27:36 +02001172 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001173
Michal Vaskoacd83e72020-02-04 14:12:01 +01001174 } else if (snode->flags & LYS_MAND_TRUE) {
Radek Krejcif6a11002020-08-21 13:29:07 +02001175 /* check generic mandatory existence */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001176 ret = lyd_validate_mandatory(first, parent, snode);
1177 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001178 }
1179
1180 /* check unique */
1181 if (snode->nodetype == LYS_LIST) {
1182 slist = (struct lysc_node_list *)snode;
1183 if (slist->uniques) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001184 ret = lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques);
1185 LY_CHECK_GOTO(ret, error);
Michal Vaskoa3881362020-01-21 15:57:35 +01001186 }
1187 }
1188
Michal Vasko6c16cda2021-02-04 11:05:52 +01001189 if (snode->nodetype == LYS_CHOICE) {
1190 /* find the existing case, if any */
1191 LY_LIST_FOR(lysc_node_child(snode), scase) {
1192 if (lys_getnext_data(NULL, first, NULL, scase, NULL)) {
1193 /* validate only this case */
Michal Vaskoe0665742021-02-11 11:08:44 +01001194 ret = lyd_validate_siblings_schema_r(first, parent, scase, mod, val_opts, int_opts);
Michal Vasko6c16cda2021-02-04 11:05:52 +01001195 LY_CHECK_GOTO(ret, error);
1196 break;
1197 }
1198 }
Michal Vaskoacd83e72020-02-04 14:12:01 +01001199 }
Radek Krejci2efc45b2020-12-22 16:25:44 +01001200
Radek Krejciddace2c2021-01-08 11:30:56 +01001201 LOG_LOCBACK(1, 0, 0, 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +01001202 }
1203
Michal Vaskoacd83e72020-02-04 14:12:01 +01001204 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001205
1206error:
Radek Krejciddace2c2021-01-08 11:30:56 +01001207 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001208 return ret;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001209}
1210
Michal Vaskobb844672020-07-03 11:06:12 +02001211/**
1212 * @brief Validate obsolete nodes, only warnings are printed.
1213 *
1214 * @param[in] node Node to check.
1215 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001216static void
1217lyd_validate_obsolete(const struct lyd_node *node)
1218{
1219 const struct lysc_node *snode;
1220
1221 snode = node->schema;
1222 do {
1223 if (snode->flags & LYS_STATUS_OBSLT) {
1224 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
1225 break;
1226 }
1227
1228 snode = snode->parent;
1229 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
1230}
1231
Michal Vaskobb844672020-07-03 11:06:12 +02001232/**
1233 * @brief Validate must conditions of a data node.
1234 *
1235 * @param[in] node Node to validate.
Michal Vaskoe0665742021-02-11 11:08:44 +01001236 * @param[in] int_opts Internal parser options.
Michal Vaskobb844672020-07-03 11:06:12 +02001237 * @return LY_ERR value.
1238 */
Michal Vaskocc048b22020-03-27 15:52:38 +01001239static LY_ERR
Michal Vaskoe0665742021-02-11 11:08:44 +01001240lyd_validate_must(const struct lyd_node *node, uint32_t int_opts)
Michal Vaskocc048b22020-03-27 15:52:38 +01001241{
1242 struct lyxp_set xp_set;
1243 struct lysc_must *musts;
1244 const struct lyd_node *tree;
Radek Krejci9a3823e2021-01-27 20:26:46 +01001245 const struct lysc_node *schema;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001246 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +01001247
Michal Vaskoe0665742021-02-11 11:08:44 +01001248 assert((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) != (LYD_INTOPT_RPC | LYD_INTOPT_REPLY));
1249 assert((int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) != (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY));
1250
Radek Krejci9a3823e2021-01-27 20:26:46 +01001251 if (node->schema->nodetype & (LYS_ACTION | LYS_RPC)) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001252 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001253 schema = &((struct lysc_node_action *)node->schema)->input.node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001254 } else if (int_opts & LYD_INTOPT_REPLY) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001255 schema = &((struct lysc_node_action *)node->schema)->output.node;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001256 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001257 LOGINT(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +02001258 return LY_EINT;
1259 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001260 } else {
1261 schema = node->schema;
Michal Vaskocc048b22020-03-27 15:52:38 +01001262 }
Radek Krejci9a3823e2021-01-27 20:26:46 +01001263 musts = lysc_node_musts(schema);
Michal Vaskocc048b22020-03-27 15:52:38 +01001264 if (!musts) {
1265 /* no must to evaluate */
1266 return LY_SUCCESS;
1267 }
1268
1269 /* find first top-level node */
Michal Vasko9e685082021-01-29 14:49:09 +01001270 for (tree = node; tree->parent; tree = lyd_parent(tree)) {}
Michal Vaskof9221e62021-02-04 12:10:14 +01001271 tree = lyd_first_sibling(tree);
Michal Vaskocc048b22020-03-27 15:52:38 +01001272
1273 LY_ARRAY_FOR(musts, u) {
1274 memset(&xp_set, 0, sizeof xp_set);
1275
1276 /* evaluate must */
Michal Vasko400e9672021-01-11 13:39:17 +01001277 LY_CHECK_RET(lyxp_eval(LYD_CTX(node), musts[u].cond, node->schema->module, LY_PREF_SCHEMA_RESOLVED,
1278 musts[u].prefixes, node, tree, &xp_set, LYXP_SCHEMA));
Michal Vaskocc048b22020-03-27 15:52:38 +01001279
1280 /* check the result */
1281 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02001282 if (!xp_set.val.bln) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001283 LOGVAL(LYD_CTX(node), LY_VCODE_NOMUST, musts[u].cond->expr);
Michal Vaskocc048b22020-03-27 15:52:38 +01001284 return LY_EVALID;
1285 }
1286 }
1287
1288 return LY_SUCCESS;
1289}
1290
Michal Vaskoe0665742021-02-11 11:08:44 +01001291/**
1292 * @brief Perform all remaining validation tasks, the data tree must be final when calling this function.
1293 *
1294 * @param[in] first First sibling.
1295 * @param[in] parent Data parent.
1296 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
1297 * @param[in] mod Module of the siblings, NULL for nested siblings.
1298 * @param[in] val_opts Validation options (@ref datavalidationoptions).
1299 * @param[in] int_opts Internal parser options.
1300 * @return LY_ERR value.
1301 */
1302static LY_ERR
Michal Vaskobd4db892020-11-23 16:58:20 +01001303lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent,
Michal Vaskoe0665742021-02-11 11:08:44 +01001304 const struct lys_module *mod, uint32_t val_opts, uint32_t int_opts)
Michal Vaskoacd83e72020-02-04 14:12:01 +01001305{
Radek Krejci2efc45b2020-12-22 16:25:44 +01001306 const char *innode = NULL;
Radek Krejci7f769d72020-07-11 23:13:56 +02001307 struct lyd_node *next = NULL, *node;
Michal Vaskoacd83e72020-02-04 14:12:01 +01001308
Michal Vasko14654712020-02-06 08:35:21 +01001309 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001310 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +01001311 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001312 /* all top-level data from this module checked */
1313 break;
Michal Vaskof03ed032020-03-04 13:31:44 +01001314 }
1315
Radek Krejciddace2c2021-01-08 11:30:56 +01001316 LOG_LOCSET(node->schema, node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001317
Michal Vaskoa8c61722020-03-27 16:59:32 +01001318 /* opaque data */
1319 if (!node->schema) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001320 LOGVAL(LYD_CTX(node), LYVE_DATA, "Opaque node \"%s\" found.", ((struct lyd_node_opaq *)node)->name.name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001321 LOG_LOCBACK(0, 1, 0, 0);
Michal Vaskoa8c61722020-03-27 16:59:32 +01001322 return LY_EVALID;
1323 }
1324
Michal Vaskocb7526d2020-03-30 15:08:26 +02001325 /* no state/input/output data */
Radek Krejci7931b192020-06-25 17:05:03 +02001326 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001327 innode = "state";
Michal Vasko224e7772021-02-18 14:22:33 +01001328 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001329 } else if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) && (node->schema->flags & LYS_IS_OUTPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001330 innode = "output";
Michal Vasko224e7772021-02-18 14:22:33 +01001331 goto unexpected_node;
Michal Vaskoe0665742021-02-11 11:08:44 +01001332 } else if ((int_opts & LYD_INTOPT_REPLY) && (node->schema->flags & LYS_IS_INPUT)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001333 innode = "input";
Michal Vasko224e7772021-02-18 14:22:33 +01001334 goto unexpected_node;
Michal Vasko5b37a352020-03-06 13:38:33 +01001335 }
1336
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001337 /* obsolete data */
1338 lyd_validate_obsolete(node);
1339
Michal Vaskocc048b22020-03-27 15:52:38 +01001340 /* node's musts */
Michal Vaskoe0665742021-02-11 11:08:44 +01001341 LY_CHECK_RET(lyd_validate_must(node, int_opts));
Michal Vaskocc048b22020-03-27 15:52:38 +01001342
Michal Vasko53d97a12020-11-05 17:39:10 +01001343 /* node value was checked by plugins */
Radek Krejci2efc45b2020-12-22 16:25:44 +01001344
Radek Krejciddace2c2021-01-08 11:30:56 +01001345 LOG_LOCBACK(1, 1, 0, 0);
Michal Vasko14654712020-02-06 08:35:21 +01001346 }
Michal Vaskocde73ac2019-11-14 16:10:27 +01001347
Michal Vasko14654712020-02-06 08:35:21 +01001348 /* validate schema-based restrictions */
Michal Vaskoe0665742021-02-11 11:08:44 +01001349 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 +01001350
Michal Vaskob1b5c262020-03-05 14:29:47 +01001351 LY_LIST_FOR(first, node) {
Michal Vasko14654712020-02-06 08:35:21 +01001352 /* validate all children recursively */
Michal Vaskoe0665742021-02-11 11:08:44 +01001353 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 +01001354
Michal Vaskob1b5c262020-03-05 14:29:47 +01001355 /* set default for containers */
1356 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
Radek Krejcia1c1e542020-09-29 16:06:52 +02001357 LY_LIST_FOR(lyd_child(node), next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001358 if (!(next->flags & LYD_DEFAULT)) {
1359 break;
1360 }
Michal Vaskoa3881362020-01-21 15:57:35 +01001361 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001362 if (!next) {
1363 node->flags |= LYD_DEFAULT;
1364 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001365 }
1366 }
1367
1368 return LY_SUCCESS;
Radek Krejci2efc45b2020-12-22 16:25:44 +01001369
Michal Vasko224e7772021-02-18 14:22:33 +01001370unexpected_node:
1371 LOGVAL(LYD_CTX(node), LY_VCODE_UNEXPNODE, innode, node->schema->name);
Radek Krejciddace2c2021-01-08 11:30:56 +01001372 LOG_LOCBACK(1, 1, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01001373 return LY_EVALID;
Michal Vasko9b368d32020-02-14 13:53:31 +01001374}
1375
Radek Krejci7931b192020-06-25 17:05:03 +02001376/**
Michal Vaskobb844672020-07-03 11:06:12 +02001377 * @brief Validate the whole data subtree.
1378 *
1379 * @param[in] root Subtree root.
Michal Vaskoe0665742021-02-11 11:08:44 +01001380 * @param[in,out] node_when Set for nodes with when conditions.
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001381 * @param[in,out] node_exts Set for nodes and extension instances with validation plugin callback.
Michal Vasko32711382020-12-03 14:14:31 +01001382 * @param[in,out] node_types Set for unres node types.
1383 * @param[in,out] meta_types Set for unres metadata types.
Michal Vasko29adfbe2020-12-08 17:12:03 +01001384 * @param[in] impl_opts Implicit options, see @ref implicitoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001385 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001386 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001387 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001388static LY_ERR
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001389lyd_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 +01001390 struct ly_set *meta_types, uint32_t impl_opts, struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001391{
1392 const struct lyd_meta *meta;
Michal Vasko56daf732020-08-10 10:57:18 +02001393 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001394
Michal Vasko56daf732020-08-10 10:57:18 +02001395 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001396 LY_LIST_FOR(node->meta, meta) {
Radek Krejci1b2eef82021-02-17 11:17:27 +01001397 if ((*(const struct lysc_type **)meta->annotation->substmts[ANNOTATION_SUBSTMT_TYPE].storage)->plugin->validate) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001398 /* metadata type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001399 LY_CHECK_RET(ly_set_add(meta_types, (void *)meta, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001400 }
Michal Vasko0275cf62020-11-05 17:40:30 +01001401 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001402
Michal Vasko0275cf62020-11-05 17:40:30 +01001403 if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) {
1404 /* node type resolution */
Michal Vasko32711382020-12-03 14:14:31 +01001405 LY_CHECK_RET(ly_set_add(node_types, (void *)node, 1, NULL));
Michal Vasko0275cf62020-11-05 17:40:30 +01001406 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1407 /* new node validation, autodelete */
Michal Vaskoe0665742021-02-11 11:08:44 +01001408 LY_CHECK_RET(lyd_validate_new(lyd_node_child_p(node), node->schema, NULL, diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001409
Michal Vasko0275cf62020-11-05 17:40:30 +01001410 /* add nested defaults */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001411 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 +01001412 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001413
Michal Vaskof4d67ea2021-03-31 13:53:21 +02001414 if (lysc_has_when(node->schema)) {
Michal Vasko0275cf62020-11-05 17:40:30 +01001415 /* when evaluation */
Michal Vasko32711382020-12-03 14:14:31 +01001416 LY_CHECK_RET(ly_set_add(node_when, (void *)node, 1, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001417 }
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001418 LY_CHECK_RET(lysc_node_ext_tovalidate(node_exts, node));
Michal Vaskofea12c62020-03-30 11:00:15 +02001419
Michal Vasko56daf732020-08-10 10:57:18 +02001420 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001421 }
1422
1423 return LY_SUCCESS;
1424}
1425
Michal Vaskoe0665742021-02-11 11:08:44 +01001426LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001427lyd_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 +02001428 ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_exts_p,
1429 struct ly_set *node_types_p, struct ly_set *meta_types_p, struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001430{
1431 LY_ERR ret = LY_SUCCESS;
Michal Vasko73e47212020-12-03 14:20:16 +01001432 struct lyd_node *first, *next, **first2, *iter;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001433 const struct lys_module *mod;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001434 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, node_exts = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001435 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001436
Michal Vaskoe0665742021-02-11 11:08:44 +01001437 assert(tree && ctx);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001438 assert((node_when_p && node_exts_p && node_types_p && meta_types_p) ||
1439 (!node_when_p && !node_exts_p && !node_types_p && !meta_types_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001440
1441 if (!node_when_p) {
1442 node_when_p = &node_when;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001443 node_exts_p = &node_exts;
Michal Vaskoe0665742021-02-11 11:08:44 +01001444 node_types_p = &node_types;
1445 meta_types_p = &meta_types;
Michal Vasko8104fd42020-07-13 11:09:51 +02001446 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001447
Michal Vaskob1b5c262020-03-05 14:29:47 +01001448 next = *tree;
1449 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001450 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001451 mod = lyd_data_next_module(&next, &first);
1452 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001453 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001454 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001455 if (!mod) {
1456 break;
1457 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001458 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001459 /* make sure first2 changes are carried to tree */
1460 first2 = tree;
1461 } else {
1462 first2 = &first;
1463 }
1464
1465 /* validate new top-level nodes of this module, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001466 ret = lyd_validate_new(first2, NULL, mod, diff);
1467 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001468
Radek Krejci7be7b9f2021-02-24 11:46:27 +01001469 /* add all top-level defaults for this module, if going to validate subtree, do not add into unres sets
1470 * (lyd_validate_subtree() adds all the nodes in that case) */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001471 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 +01001472 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 +02001473 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001474
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001475 /* our first module node pointer may no longer be the first */
1476 while (*first2 && (*first2)->prev->next && (lyd_owner_module(*first2) == lyd_owner_module((*first2)->prev))) {
1477 *first2 = (*first2)->prev;
1478 }
1479
Michal Vaskoe0665742021-02-11 11:08:44 +01001480 if (validate_subtree) {
1481 /* process nested nodes */
1482 LY_LIST_FOR(*first2, iter) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001483 ret = lyd_validate_subtree(iter, node_when_p, node_exts_p, node_types_p, meta_types_p,
Michal Vaskoe0665742021-02-11 11:08:44 +01001484 (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff);
1485 LY_CHECK_GOTO(ret, cleanup);
1486 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001487 }
1488
1489 /* finish incompletely validated terminal values/attributes and when conditions */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001490 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 +01001491 LY_CHECK_GOTO(ret, cleanup);
1492
1493 /* perform final validation that assumes the data tree is final */
Michal Vaskobd4db892020-11-23 16:58:20 +01001494 ret = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0);
Michal Vasko8104fd42020-07-13 11:09:51 +02001495 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001496 }
1497
Michal Vaskof03ed032020-03-04 13:31:44 +01001498cleanup:
Michal Vaskoe0665742021-02-11 11:08:44 +01001499 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001500 ly_set_erase(&node_exts, NULL);
Michal Vasko32711382020-12-03 14:14:31 +01001501 ly_set_erase(&node_types, NULL);
1502 ly_set_erase(&meta_types, NULL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001503 return ret;
1504}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001505
1506API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001507lyd_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 +01001508{
Michal Vaskoe0665742021-02-11 11:08:44 +01001509 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx, LY_EINVAL);
1510 if (!ctx) {
1511 ctx = LYD_CTX(*tree);
1512 }
1513 if (diff) {
1514 *diff = NULL;
1515 }
1516
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001517 return lyd_validate(tree, NULL, ctx, val_opts, 1, NULL, NULL, NULL, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001518}
1519
1520API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001521lyd_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 +01001522{
Michal Vaskoe0665742021-02-11 11:08:44 +01001523 LY_CHECK_ARG_RET(NULL, tree, *tree || module, LY_EINVAL);
1524 if (diff) {
1525 *diff = NULL;
1526 }
1527
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001528 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 +01001529}
Michal Vaskofea12c62020-03-30 11:00:15 +02001530
Michal Vaskobb844672020-07-03 11:06:12 +02001531/**
1532 * @brief Find nodes for merging an operation into data tree for validation.
1533 *
1534 * @param[in] op_tree Full operation data tree.
1535 * @param[in] op_node Operation node itself.
1536 * @param[in] tree Data tree to be merged into.
1537 * @param[out] op_subtree Operation subtree to merge.
Michal Vasko2f03d222020-12-09 18:15:51 +01001538 * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL.
1539 * @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 +02001540 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001541static void
Michal Vaskobb844672020-07-03 11:06:12 +02001542lyd_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 +01001543 struct lyd_node **op_subtree, struct lyd_node **tree_sibling, struct lyd_node **tree_parent)
Michal Vaskofea12c62020-03-30 11:00:15 +02001544{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001545 const struct lyd_node *tree_iter, *op_iter;
1546 struct lyd_node *match;
Michal Vaskofea12c62020-03-30 11:00:15 +02001547 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001548
Michal Vasko2f03d222020-12-09 18:15:51 +01001549 *op_subtree = NULL;
1550 *tree_sibling = NULL;
1551 *tree_parent = NULL;
1552
Michal Vaskocb7526d2020-03-30 15:08:26 +02001553 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001554 op_depth = 0;
Michal Vasko9e685082021-01-29 14:49:09 +01001555 for (op_iter = op_node; op_iter != op_tree; op_iter = lyd_parent(op_iter)) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001556 ++op_depth;
1557 }
1558
1559 /* find where to merge op */
1560 tree_iter = tree;
1561 cur_depth = op_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001562 while (cur_depth && tree_iter) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001563 /* find op iter in tree */
1564 lyd_find_sibling_first(tree_iter, op_iter, &match);
1565 if (!match) {
1566 break;
1567 }
1568
1569 /* move tree_iter */
Radek Krejcia1c1e542020-09-29 16:06:52 +02001570 tree_iter = lyd_child(match);
Michal Vaskofea12c62020-03-30 11:00:15 +02001571
1572 /* move depth */
1573 --cur_depth;
Michal Vasko2f03d222020-12-09 18:15:51 +01001574
1575 /* find next op parent */
1576 op_iter = op_node;
1577 for (i = 0; i < cur_depth; ++i) {
Michal Vasko9e685082021-01-29 14:49:09 +01001578 op_iter = lyd_parent(op_iter);
Michal Vasko2f03d222020-12-09 18:15:51 +01001579 }
Michal Vaskofea12c62020-03-30 11:00:15 +02001580 }
1581
Michal Vasko2f03d222020-12-09 18:15:51 +01001582 assert(op_iter);
Michal Vaskobb844672020-07-03 11:06:12 +02001583 *op_subtree = (struct lyd_node *)op_iter;
Michal Vasko2f03d222020-12-09 18:15:51 +01001584 if (!tree || tree_iter) {
1585 /* there is no tree whatsoever or this is the last found sibling */
1586 *tree_sibling = (struct lyd_node *)tree_iter;
1587 } else {
1588 /* matching parent was found but it has no children to insert next to */
1589 assert(match);
1590 *tree_parent = match;
1591 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001592}
1593
Michal Vaskoe0665742021-02-11 11:08:44 +01001594/**
1595 * @brief Validate an RPC/action request, reply, or notification.
1596 *
1597 * @param[in] op_tree Full operation data tree.
1598 * @param[in] op_node Operation node itself.
1599 * @param[in] dep_tree Tree to be used for validating references from the operation subtree.
1600 * @param[in] int_opts Internal parser options.
1601 * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation).
1602 * @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 +02001603 * @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 +01001604 * @param[in] node_types_p Set of unres node types, if NULL a local set is used.
1605 * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used.
1606 * @param[out] diff Optional diff with any changes made by the validation.
1607 * @return LY_SUCCESS on success.
1608 * @return LY_ERR error on error.
1609 */
1610static LY_ERR
1611_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 +02001612 uint32_t int_opts, ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_exts_p,
1613 struct ly_set *node_types_p, struct ly_set *meta_types_p, struct lyd_node **diff)
Michal Vaskocb7526d2020-03-30 15:08:26 +02001614{
Michal Vaskoe0665742021-02-11 11:08:44 +01001615 LY_ERR rc = LY_SUCCESS;
1616 struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_parent, *child;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001617 struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, node_exts = {0};
Michal Vaskocb7526d2020-03-30 15:08:26 +02001618
Michal Vaskoe0665742021-02-11 11:08:44 +01001619 assert(op_tree && op_node);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001620 assert((node_when_p && node_exts_p && node_types_p && meta_types_p) ||
1621 (!node_when_p && !node_exts_p && !node_types_p && !meta_types_p));
Michal Vaskoe0665742021-02-11 11:08:44 +01001622
1623 if (!node_when_p) {
1624 node_when_p = &node_when;
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001625 node_exts_p = &node_exts;
Michal Vaskoe0665742021-02-11 11:08:44 +01001626 node_types_p = &node_types;
1627 meta_types_p = &meta_types;
1628 }
1629
1630 /* merge op_tree into dep_tree */
1631 lyd_val_op_merge_find(op_tree, op_node, dep_tree, &op_subtree, &tree_sibling, &tree_parent);
1632 op_parent = lyd_parent(op_subtree);
1633 lyd_unlink_tree(op_subtree);
1634 lyd_insert_node(tree_parent, &tree_sibling, op_subtree);
1635 if (!dep_tree) {
1636 dep_tree = tree_sibling;
1637 }
1638
1639 LOG_LOCSET(NULL, op_node, NULL, NULL);
1640
1641 if (int_opts & LYD_INTOPT_REPLY) {
1642 /* add output children defaults */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001643 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 +01001644 LYD_IMPLICIT_OUTPUT, diff);
1645 LY_CHECK_GOTO(rc, cleanup);
1646
1647 if (validate_subtree) {
1648 /* skip validating the operation itself, go to children directly */
1649 LY_LIST_FOR(lyd_child(op_node), child) {
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001650 rc = lyd_validate_subtree(child, node_when_p, node_exts_p, node_types_p, meta_types_p, 0, diff);
1651 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001652 }
1653 }
1654 } else {
1655 if (validate_subtree) {
1656 /* prevalidate whole operation subtree */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001657 rc = lyd_validate_subtree(op_node, node_when_p, node_exts_p, node_types_p, meta_types_p, 0, diff);
1658 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001659 }
1660 }
1661
1662 /* finish incompletely validated terminal values/attributes and when conditions on the full tree */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001663 LY_CHECK_GOTO(rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL,
1664 node_when_p, node_exts_p, node_types_p, meta_types_p, diff), cleanup);
Michal Vaskoe0665742021-02-11 11:08:44 +01001665
1666 /* perform final validation of the operation/notification */
1667 lyd_validate_obsolete(op_node);
1668 LY_CHECK_GOTO(rc = lyd_validate_must(op_node, int_opts), cleanup);
1669
1670 /* final validation of all the descendants */
1671 LY_CHECK_GOTO(rc = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, int_opts), cleanup);
1672
1673cleanup:
1674 LOG_LOCBACK(0, 1, 0, 0);
1675 /* restore operation tree */
1676 lyd_unlink_tree(op_subtree);
1677 if (op_parent) {
1678 lyd_insert_node(op_parent, NULL, op_subtree);
1679 }
1680
1681 ly_set_erase(&node_when, NULL);
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001682 ly_set_erase(&node_exts, NULL);
Michal Vaskoe0665742021-02-11 11:08:44 +01001683 ly_set_erase(&node_types, NULL);
1684 ly_set_erase(&meta_types, NULL);
1685 return rc;
1686}
1687
1688API LY_ERR
1689lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *dep_tree, enum lyd_type data_type, struct lyd_node **diff)
1690{
1691 struct lyd_node *op_node;
1692 uint32_t int_opts;
1693
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001694 LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !dep_tree || !dep_tree->parent, (data_type == LYD_TYPE_RPC_YANG) ||
1695 (data_type == LYD_TYPE_NOTIF_YANG) || (data_type == LYD_TYPE_REPLY_YANG), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001696 if (diff) {
1697 *diff = NULL;
1698 }
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001699 if (data_type == LYD_TYPE_RPC_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001700 int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION;
Michal Vasko1e4c68e2021-02-18 15:03:01 +01001701 } else if (data_type == LYD_TYPE_NOTIF_YANG) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001702 int_opts = LYD_INTOPT_NOTIF;
1703 } else {
1704 int_opts = LYD_INTOPT_REPLY;
1705 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001706
1707 /* find the operation/notification */
Michal Vasko56daf732020-08-10 10:57:18 +02001708 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
Michal Vaskoe0665742021-02-11 11:08:44 +01001709 if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) &&
1710 (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001711 break;
Michal Vaskoe0665742021-02-11 11:08:44 +01001712 } else if ((int_opts & LYD_INTOPT_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001713 break;
1714 }
Michal Vasko56daf732020-08-10 10:57:18 +02001715 LYD_TREE_DFS_END(op_tree, op_node);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001716 }
Michal Vaskoe0665742021-02-11 11:08:44 +01001717 if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) {
Radek Krejci7931b192020-06-25 17:05:03 +02001718 if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001719 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001720 return LY_EINVAL;
1721 }
1722 } else {
Radek Krejci7931b192020-06-25 17:05:03 +02001723 if (op_node->schema->nodetype != LYS_NOTIF) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001724 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001725 return LY_EINVAL;
1726 }
1727 }
1728
Michal Vaskoe0665742021-02-11 11:08:44 +01001729 /* validate */
Radek Krejci4f2e3e52021-03-30 14:20:28 +02001730 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 +02001731}