blob: d00ad46c243ad8fb288988ece4770e368529f034 [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 */
Michal Vaskofbed4ea2020-07-08 10:43:30 +020014#include "validation.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010015
16#include <assert.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020017#include <stdint.h>
Michal Vasko52927e22020-03-16 17:26:14 +010018#include <stdio.h>
19#include <stdlib.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include <string.h>
Michal Vaskocde73ac2019-11-14 16:10:27 +010021
Michal Vaskoc5a22832020-08-20 13:21:33 +020022#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020023#include "common.h"
Michal Vasko8104fd42020-07-13 11:09:51 +020024#include "diff.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include "hash_table.h"
26#include "log.h"
Radek Krejci7931b192020-06-25 17:05:03 +020027#include "parser_data.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020028#include "plugins_types.h"
29#include "set.h"
30#include "tree.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010031#include "tree_data_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020032#include "tree_schema.h"
Michal Vasko14654712020-02-06 08:35:21 +010033#include "tree_schema_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020034#include "xpath.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010035
Michal Vaskoa6669ba2020-08-06 16:14:26 +020036LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020037lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff)
38{
39 LY_ERR ret = LY_SUCCESS;
40 struct lyd_node *new_diff = NULL;
41
42 assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE));
43
44 /* create new diff tree */
45 LY_CHECK_RET(lyd_diff_add(node, op, NULL, NULL, NULL, NULL, NULL, &new_diff));
46
47 /* merge into existing diff */
Michal Vaskofb737aa2020-08-06 13:53:53 +020048 ret = lyd_diff_merge_all(diff, new_diff);
Michal Vasko8104fd42020-07-13 11:09:51 +020049
50 lyd_free_tree(new_diff);
51 return ret;
52}
53
54/**
Michal Vaskocde73ac2019-11-14 16:10:27 +010055 * @brief Evaluate a single "when" condition.
56 *
Michal Vaskob1b5c262020-03-05 14:29:47 +010057 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskocde73ac2019-11-14 16:10:27 +010058 * @param[in] node Node whose existence depends on this when.
Michal Vaskob1b5c262020-03-05 14:29:47 +010059 * @param[in] when When to evaluate.
Michal Vasko8104fd42020-07-13 11:09:51 +020060 * @param[in,out] diff Validation diff.
Michal Vaskocde73ac2019-11-14 16:10:27 +010061 * @return LY_ERR value (LY_EINCOMPLETE if a referenced node does not have its when evaluated)
62 */
63static LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +020064lyd_validate_when(struct lyd_node **tree, struct lyd_node *node, struct lysc_when *when, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +010065{
Michal Vasko8104fd42020-07-13 11:09:51 +020066 LY_ERR ret;
Michal Vaskocde73ac2019-11-14 16:10:27 +010067 const struct lyd_node *ctx_node;
68 struct lyxp_set xp_set;
69
70 memset(&xp_set, 0, sizeof xp_set);
71
72 if (when->context == node->schema) {
73 ctx_node = node;
74 } else {
75 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
76 ctx_node = (struct lyd_node *)node->parent;
77 }
78
79 /* evaluate when */
Michal Vaskoc8a230d2020-08-14 12:17:10 +020080 ret = lyxp_eval(when->cond, LY_PREF_SCHEMA, when->module, ctx_node, ctx_node ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG,
Michal Vaskob1b5c262020-03-05 14:29:47 +010081 *tree, &xp_set, LYXP_SCHEMA);
Michal Vaskocde73ac2019-11-14 16:10:27 +010082 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
83
84 /* return error or LY_EINCOMPLETE for dependant unresolved when */
85 LY_CHECK_RET(ret);
86
87 /* take action based on the result */
Michal Vasko004d3152020-06-11 19:59:22 +020088 if (!xp_set.val.bln) {
Michal Vaskocde73ac2019-11-14 16:10:27 +010089 if (node->flags & LYD_WHEN_TRUE) {
90 /* autodelete */
Michal Vaskob1b5c262020-03-05 14:29:47 +010091 if (LYD_DEL_IS_ROOT(*tree, node)) {
92 *tree = (*tree)->next;
93 }
Michal Vasko8104fd42020-07-13 11:09:51 +020094 if (diff) {
95 /* add into diff */
96 LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff));
97 }
Michal Vaskocde73ac2019-11-14 16:10:27 +010098 lyd_free_tree(node);
99 } else {
100 /* invalid data */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200101 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOWHEN, when->cond->expr);
Michal Vasko8104fd42020-07-13 11:09:51 +0200102 return LY_EVALID;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100103 }
104 } else {
105 /* remember that when evaluated to true */
106 node->flags |= LYD_WHEN_TRUE;
107 }
108
109 return ret;
110}
111
112LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +0100113lyd_validate_unres(struct lyd_node **tree, struct ly_set *node_when, struct ly_set *node_types, struct ly_set *meta_types,
Radek Krejci0f969882020-08-21 16:56:47 +0200114 LY_PREFIX_FORMAT format, void *prefix_data, struct lyd_node **diff)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100115{
116 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200117 uint32_t i;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100118
Michal Vaskob1b5c262020-03-05 14:29:47 +0100119 if (node_when) {
120 /* evaluate all when conditions */
121 uint32_t prev_count;
122 do {
123 prev_count = node_when->count;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200124 i = 0;
125 while (i < node_when->count) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100126 /* evaluate all when expressions that affect this node's existence */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200127 struct lyd_node *node = (struct lyd_node *)node_when->objs[i];
Michal Vaskob1b5c262020-03-05 14:29:47 +0100128 const struct lysc_node *schema = node->schema;
Radek Krejci857189e2020-09-01 13:26:36 +0200129 ly_bool unres_when = 0;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100130
Michal Vaskob1b5c262020-03-05 14:29:47 +0100131 do {
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200132 LY_ARRAY_COUNT_TYPE u;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200133 LY_ARRAY_FOR(schema->when, u) {
Michal Vasko8104fd42020-07-13 11:09:51 +0200134 ret = lyd_validate_when(tree, node, schema->when[u], diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100135 if (ret) {
136 break;
137 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100138 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100139 if (ret == LY_EINCOMPLETE) {
140 /* could not evaluate this when */
141 unres_when = 1;
142 break;
143 } else if (ret) {
144 /* error */
145 return ret;
146 }
147 schema = schema->parent;
148 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100149
Michal Vaskob1b5c262020-03-05 14:29:47 +0100150 if (unres_when) {
151 /* keep in set and go to the next node */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200152 ++i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100153 } else {
154 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200155 ly_set_rm_index(node_when, i, NULL);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100156 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100157 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100158
Radek Krejci0f969882020-08-21 16:56:47 +0200159 /* there must have been some when conditions resolved */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100160 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100161
Michal Vaskob1b5c262020-03-05 14:29:47 +0100162 /* there could have been no cyclic when dependencies, checked during compilation */
163 assert(!node_when->count);
164 }
165
166 if (node_types && node_types->count) {
167 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200168 i = node_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100169 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200170 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100171
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200172 struct lyd_node_term *node = (struct lyd_node_term *)node_types->objs[i];
Michal Vaskob1b5c262020-03-05 14:29:47 +0100173
174 /* validate and store the value of the node */
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200175 ret = lyd_value_parse(node, node->value.canonical, strlen(node->value.canonical), 0, 1, 0, format,
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200176 prefix_data, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100177 LY_CHECK_RET(ret);
178
179 /* remove this node from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200180 ly_set_rm_index(node_types, i, NULL);
181 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100182 }
183
Michal Vasko9f96a052020-03-10 09:41:45 +0100184 if (meta_types && meta_types->count) {
185 /* ... and metadata values */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200186 i = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100187 do {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200188 --i;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100189
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200190 struct lyd_meta *meta = (struct lyd_meta *)meta_types->objs[i];
Michal Vaskob1b5c262020-03-05 14:29:47 +0100191
Michal Vasko9f96a052020-03-10 09:41:45 +0100192 /* validate and store the value of the metadata */
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200193 ret = lyd_value_parse_meta(meta->parent->schema->module->ctx, meta, meta->value.canonical,
194 strlen(meta->value.canonical), 0, 1, 0, format, prefix_data, NULL, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100195 LY_CHECK_RET(ret);
196
197 /* remove this attr from the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200198 ly_set_rm_index(meta_types, i, NULL);
199 } while (i);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100200 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100201
202 return ret;
203}
204
Michal Vaskobb844672020-07-03 11:06:12 +0200205/**
206 * @brief Validate instance duplication.
207 *
208 * @param[in] first First sibling to search in.
209 * @param[in] node Data node instance to check.
210 * @return LY_ERR value.
211 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100212static LY_ERR
213lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100214{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100215 struct lyd_node **match_p;
Radek Krejci857189e2020-09-01 13:26:36 +0200216 ly_bool fail = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100217
218 if ((node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && (node->schema->flags & LYS_CONFIG_R)) {
219 /* duplicate instances allowed */
220 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100221 }
222
Michal Vaskob1b5c262020-03-05 14:29:47 +0100223 /* find exactly the same next instance using hashes if possible */
224 if (node->parent && node->parent->children_ht) {
225 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
226 fail = 1;
227 }
228 } else {
Michal Vaskod989ba02020-08-24 10:59:24 +0200229 for ( ; first; first = first->next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100230 if (first == node) {
231 continue;
232 }
233
234 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
235 if (first->schema == node->schema) {
236 fail = 1;
237 break;
238 }
Michal Vasko8f359bf2020-07-28 10:41:15 +0200239 } else if (!lyd_compare_single(first, node, 0)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100240 fail = 1;
241 break;
242 }
243 }
244 }
245
246 if (fail) {
247 LOGVAL(node->schema->module->ctx, LY_VLOG_LYD, node, LY_VCODE_DUP, node->schema->name);
248 return LY_EVALID;
249 }
250 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100251}
252
Michal Vaskobb844672020-07-03 11:06:12 +0200253/**
254 * @brief Validate multiple case data existence with possible autodelete.
255 *
256 * @param[in,out] first First sibling to search in, is updated if needed.
257 * @param[in] choic Choice node whose cases to check.
Michal Vasko8104fd42020-07-13 11:09:51 +0200258 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200259 * @return LY_ERR value.
260 */
Michal Vaskocde73ac2019-11-14 16:10:27 +0100261static LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +0200262lyd_validate_cases(struct lyd_node **first, const struct lysc_node_choice *choic, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100263{
264 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
265 struct lyd_node *match, *to_del;
Radek Krejci857189e2020-09-01 13:26:36 +0200266 ly_bool found;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100267
268 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
269 found = 0;
270 iter = NULL;
271 match = NULL;
272 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
273 if (match->flags & LYD_NEW) {
274 /* a new case data found, nothing more to look for */
275 found = 2;
276 break;
277 } else {
278 /* and old case data found */
279 if (found == 0) {
280 found = 1;
281 }
282 }
283 }
284
285 if (found == 1) {
286 /* there should not be 2 old cases */
287 if (old_case) {
288 /* old data from 2 cases */
289 LOGVAL(choic->module->ctx, LY_VLOG_LYSC, choic, LY_VCODE_DUPCASE, old_case->name, scase->name);
290 return LY_EVALID;
291 }
292
293 /* remember an old existing case */
294 old_case = scase;
295 } else if (found == 2) {
296 if (new_case) {
297 /* new data from 2 cases */
298 LOGVAL(choic->module->ctx, LY_VLOG_LYSC, choic, LY_VCODE_DUPCASE, new_case->name, scase->name);
299 return LY_EVALID;
300 }
301
302 /* remember a new existing case */
303 new_case = scase;
304 }
305 }
306
307 if (old_case && new_case) {
308 /* auto-delete old case */
309 iter = NULL;
310 match = NULL;
311 to_del = NULL;
312 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
313 if (LYD_DEL_IS_ROOT(*first, to_del)) {
314 *first = (*first)->next;
315 }
Michal Vasko8104fd42020-07-13 11:09:51 +0200316 /* free previous node */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100317 lyd_free_tree(to_del);
Michal Vasko8104fd42020-07-13 11:09:51 +0200318 if (diff) {
319 /* add into diff */
320 LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff));
321 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100322 to_del = match;
323 }
324 if (LYD_DEL_IS_ROOT(*first, to_del)) {
325 *first = (*first)->next;
326 }
327 lyd_free_tree(to_del);
328 }
329
330 return LY_SUCCESS;
331}
332
Michal Vaskobb844672020-07-03 11:06:12 +0200333/**
334 * @brief Check whether a schema node can have some default values (true for NP containers as well).
335 *
336 * @param[in] schema Schema node to check.
337 * @return non-zero if yes,
338 * @return 0 otherwise.
339 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100340static int
341lyd_val_has_default(const struct lysc_node *schema)
342{
343 switch (schema->nodetype) {
344 case LYS_LEAF:
345 if (((struct lysc_node_leaf *)schema)->dflt) {
346 return 1;
347 }
348 break;
349 case LYS_LEAFLIST:
350 if (((struct lysc_node_leaflist *)schema)->dflts) {
351 return 1;
352 }
353 break;
354 case LYS_CONTAINER:
355 if (!(schema->flags & LYS_PRESENCE)) {
356 return 1;
357 }
358 break;
359 default:
360 break;
361 }
362
363 return 0;
364}
365
Michal Vaskobb844672020-07-03 11:06:12 +0200366/**
367 * @brief Autodelete old instances to prevent validation errors.
368 *
369 * @param[in,out] first First sibling to search in, is updated if needed.
370 * @param[in] node Data node instance to check.
371 * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed.
Michal Vasko8104fd42020-07-13 11:09:51 +0200372 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +0200373 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100374static void
Michal Vasko8104fd42020-07-13 11:09:51 +0200375lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, struct lyd_node **next_p, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100376{
Michal Vasko8104fd42020-07-13 11:09:51 +0200377 struct lyd_node *match, *next, *iter;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100378
379 if (lyd_val_has_default(node->schema)) {
380 assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER));
Michal Vasko4c583e82020-07-17 12:16:14 +0200381 LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100382 if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) {
383 /* default instance found, remove it */
384 if (LYD_DEL_IS_ROOT(*first, match)) {
385 *first = (*first)->next;
386 }
387 if (match == *next_p) {
388 *next_p = (*next_p)->next;
389 }
Michal Vasko8104fd42020-07-13 11:09:51 +0200390 if (diff) {
391 /* add into diff */
392 if ((match->schema->nodetype == LYS_CONTAINER) && !(match->schema->flags & LYS_PRESENCE)) {
393 /* we do not want to track NP container changes, but remember any removed children */
394 LY_LIST_FOR(LYD_CHILD(match), iter) {
395 lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff);
396 }
397 } else {
398 lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff);
399 }
400 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100401 lyd_free_tree(match);
402
403 /* remove only a single container/leaf default instance, if there are more, it is an error */
404 if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) {
405 break;
406 }
407 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100408 }
409 }
410}
411
412LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +0200413lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +0200414 struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +0100415{
416 struct lyd_node *next, *node;
417 const struct lysc_node *snode = NULL;
418
419 assert(first && (sparent || mod));
420
421 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
422 /* check case duplicites */
423 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko8104fd42020-07-13 11:09:51 +0200424 LY_CHECK_RET(lyd_validate_cases(first, (struct lysc_node_choice *)snode, diff));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100425 }
426 }
427
428 LY_LIST_FOR_SAFE(*first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100429 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100430 /* all top-level data from this module checked */
431 break;
432 }
433
434 if (!(node->flags & LYD_NEW)) {
435 /* check only new nodes */
436 continue;
437 }
438
439 /* remove old default(s) if it exists */
Michal Vasko8104fd42020-07-13 11:09:51 +0200440 lyd_validate_autodel_dup(first, node, &next, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100441
442 /* then check new node instance duplicities */
443 LY_CHECK_RET(lyd_validate_duplicates(*first, node));
444
445 /* this node is valid */
446 node->flags &= ~LYD_NEW;
447 }
448
449 return LY_SUCCESS;
450}
451
Michal Vaskobb844672020-07-03 11:06:12 +0200452/**
453 * @brief Validate mandatory node existence.
454 *
455 * @param[in] first First sibling to search in.
456 * @param[in] snode Schema node to validate.
457 * @return LY_ERR value.
458 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100459static LY_ERR
460lyd_validate_mandatory(const struct lyd_node *first, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100461{
Michal Vaskoa3881362020-01-21 15:57:35 +0100462 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100463 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100464 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100465 return LY_SUCCESS;
466 }
467 } else {
468 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100469
Michal Vaskob1b5c262020-03-05 14:29:47 +0100470 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100471 /* data instance found */
472 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100473 }
474 }
475
476 /* node instance not found */
477 LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMAND, snode->name);
478 return LY_EVALID;
479}
480
Michal Vaskobb844672020-07-03 11:06:12 +0200481/**
482 * @brief Validate min/max-elements constraints, if any.
483 *
484 * @param[in] first First sibling to search in.
485 * @param[in] snode Schema node to validate.
486 * @param[in] min Minimum number of elements, 0 for no restriction.
487 * @param[in] max Max number of elements, 0 for no restriction.
488 * @return LY_ERR value.
489 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100490static LY_ERR
Michal Vaskob1b5c262020-03-05 14:29:47 +0100491lyd_validate_minmax(const struct lyd_node *first, const struct lysc_node *snode, uint32_t min, uint32_t max)
Michal Vaskoa3881362020-01-21 15:57:35 +0100492{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100493 uint32_t count = 0;
Michal Vasko4c583e82020-07-17 12:16:14 +0200494 struct lyd_node *iter;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100495
Michal Vasko9b368d32020-02-14 13:53:31 +0100496 assert(min || max);
497
Michal Vasko4c583e82020-07-17 12:16:14 +0200498 LYD_LIST_FOR_INST(first, snode, iter) {
499 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100500
Michal Vasko4c583e82020-07-17 12:16:14 +0200501 if (min && (count == min)) {
502 /* satisfied */
503 min = 0;
504 if (!max) {
505 /* nothing more to check */
Michal Vasko9b368d32020-02-14 13:53:31 +0100506 break;
507 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100508 }
Michal Vasko4c583e82020-07-17 12:16:14 +0200509 if (max && (count > max)) {
510 /* not satisifed */
511 break;
512 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100513 }
514
Michal Vasko9b368d32020-02-14 13:53:31 +0100515 if (min) {
516 assert(count < min);
Michal Vaskoacd83e72020-02-04 14:12:01 +0100517 LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMIN, snode->name);
518 return LY_EVALID;
519 } else if (max && (count > max)) {
520 LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMAX, snode->name);
521 return LY_EVALID;
522 }
523
Michal Vaskoa3881362020-01-21 15:57:35 +0100524 return LY_SUCCESS;
525}
526
Michal Vaskobb844672020-07-03 11:06:12 +0200527/**
528 * @brief Find node referenced by a list unique statement.
529 *
530 * @param[in] uniq_leaf Unique leaf to find.
531 * @param[in] list List instance to use for the search.
532 * @return Found leaf,
533 * @return NULL if no leaf found.
534 */
Michal Vasko14654712020-02-06 08:35:21 +0100535static struct lyd_node *
Michal Vaskobb844672020-07-03 11:06:12 +0200536lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list)
Michal Vasko14654712020-02-06 08:35:21 +0100537{
Michal Vasko9b368d32020-02-14 13:53:31 +0100538 struct lyd_node *node;
539 const struct lysc_node *iter;
540 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +0100541
Michal Vasko9b368d32020-02-14 13:53:31 +0100542 /* get leaf depth */
Michal Vasko62ed12d2020-05-21 10:08:25 +0200543 for (iter = (struct lysc_node *)uniq_leaf; iter && (iter != list->schema); iter = lysc_data_parent(iter)) {
544 ++depth;
Michal Vasko14654712020-02-06 08:35:21 +0100545 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100546
Michal Vaskobb844672020-07-03 11:06:12 +0200547 node = (struct lyd_node *)list;
Michal Vasko9b368d32020-02-14 13:53:31 +0100548 while (node && depth) {
549 /* find schema node with this depth */
Michal Vasko62ed12d2020-05-21 10:08:25 +0200550 for (i = depth - 1, iter = (struct lysc_node *)uniq_leaf; i; iter = lysc_data_parent(iter)) {
551 --i;
Michal Vasko9b368d32020-02-14 13:53:31 +0100552 }
553
554 /* find iter instance in children */
555 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200556 lyd_find_sibling_val(lyd_node_children(node, 0), iter, NULL, 0, &node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100557 --depth;
558 }
559
Michal Vasko14654712020-02-06 08:35:21 +0100560 return node;
561}
562
Michal Vaskobb844672020-07-03 11:06:12 +0200563/**
564 * @brief Callback for comparing 2 list unique leaf values.
565 *
Radek Krejci857189e2020-09-01 13:26:36 +0200566 * Implementation of ::values_equal_cb.
567 *
Michal Vaskobb844672020-07-03 11:06:12 +0200568 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +0100569 */
Radek Krejci857189e2020-09-01 13:26:36 +0200570static ly_bool
571lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data)
Michal Vasko14654712020-02-06 08:35:21 +0100572{
573 struct ly_ctx *ctx;
574 struct lysc_node_list *slist;
575 struct lyd_node *diter, *first, *second;
576 struct lyd_value *val1, *val2;
577 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200578 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +0100579
580 assert(val1_p && val2_p);
581
582 first = *((struct lyd_node **)val1_p);
583 second = *((struct lyd_node **)val2_p);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200584 action = (LY_ARRAY_COUNT_TYPE)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +0100585
586 assert(first && (first->schema->nodetype == LYS_LIST));
587 assert(second && (second->schema == first->schema));
588
589 ctx = first->schema->module->ctx;
590
591 slist = (struct lysc_node_list *)first->schema;
592
593 /* compare unique leaves */
594 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200595 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200596 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +0100597 goto uniquecheck;
598 }
599 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200600 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +0100601uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200602 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +0100603 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200604 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +0100605 if (diter) {
606 val1 = &((struct lyd_node_term *)diter)->value;
607 } else {
608 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200609 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100610 }
611
612 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200613 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +0100614 if (diter) {
615 val2 = &((struct lyd_node_term *)diter)->value;
616 } else {
617 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200618 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100619 }
620
621 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
622 /* values differ or either one is not set */
623 break;
624 }
625 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200626 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +0100627 /* all unique leafs are the same in this set, create this nice error */
628 path1 = lyd_path(first, LYD_PATH_LOG, NULL, 0);
629 path2 = lyd_path(second, LYD_PATH_LOG, NULL, 0);
630
631 /* use buffer to rebuild the unique string */
632 uniq_str = malloc(1024);
633 uniq_str[0] = '\0';
634 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200635 LY_ARRAY_FOR(slist->uniques[u], v) {
636 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +0100637 strcpy(ptr, " ");
638 ++ptr;
639 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200640 ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], (struct lysc_node *)slist, LYSC_PATH_LOG,
Michal Vasko14654712020-02-06 08:35:21 +0100641 ptr, 1024 - (ptr - uniq_str));
642 if (!ptr) {
643 /* path will be incomplete, whatever */
644 break;
645 }
646
647 ptr += strlen(ptr);
648 }
649 LOGVAL(ctx, LY_VLOG_LYD, second, LY_VCODE_NOUNIQ, uniq_str, path1, path2);
650
651 free(path1);
652 free(path2);
653 free(uniq_str);
654 return 1;
655 }
656
657 if (action > 0) {
658 /* done */
659 return 0;
660 }
661 }
662
663 return 0;
664}
665
Michal Vaskobb844672020-07-03 11:06:12 +0200666/**
667 * @brief Validate list unique leaves.
668 *
669 * @param[in] first First sibling to search in.
670 * @param[in] snode Schema node to validate.
671 * @param[in] uniques List unique arrays to validate.
672 * @return LY_ERR value.
673 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100674static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +0200675lyd_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 +0100676{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100677 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +0100678 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200679 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +0100680 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200681 uint32_t hash, i, size = 0;
Radek Krejci857189e2020-09-01 13:26:36 +0200682 ly_bool dynamic;
Michal Vasko14654712020-02-06 08:35:21 +0100683 const char *str;
684 struct hash_table **uniqtables = NULL;
685 struct lyd_value *val;
686 struct ly_ctx *ctx = snode->module->ctx;
687
688 assert(uniques);
689
690 /* get all list instances */
Radek Krejciba03a5a2020-08-27 14:40:41 +0200691 LY_CHECK_RET(ly_set_new(&set));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100692 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100693 if (diter->schema == snode) {
Michal Vaskob0099a92020-08-31 14:55:23 +0200694 ret = ly_set_add(set, (void *)diter, LY_SET_OPT_USEASLIST, NULL);
695 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko9b368d32020-02-14 13:53:31 +0100696 }
697 }
Michal Vasko14654712020-02-06 08:35:21 +0100698
699 if (set->count == 2) {
700 /* simple comparison */
701 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
702 /* instance duplication */
703 ret = LY_EVALID;
704 goto cleanup;
705 }
706 } else if (set->count > 2) {
707 /* use hashes for comparison */
708 /* first, allocate the table, the size depends on number of items in the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200709 for (i = 31; i > 0; i--) {
710 size = set->count << i;
711 size = size >> i;
712 if (size == set->count) {
Michal Vasko14654712020-02-06 08:35:21 +0100713 break;
714 }
715 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200716 LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup);
717 i = 32 - i;
718 size = 1 << i;
Michal Vasko14654712020-02-06 08:35:21 +0100719
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200720 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +0100721 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200722 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200723 for (v = 0; v < x; v++) {
724 uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(v + 1L), 0);
725 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +0100726 }
727
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200728 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +0100729 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200730 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +0100731 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200732 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200733 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +0100734 if (diter) {
735 val = &((struct lyd_node_term *)diter)->value;
736 } else {
737 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200738 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100739 }
740 if (!val) {
741 /* unique item not present nor has default value */
742 break;
743 }
744
745 /* get canonical string value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200746 str = val->realtype->plugin->print(val, LY_PREF_JSON, NULL, &dynamic);
Michal Vasko14654712020-02-06 08:35:21 +0100747 hash = dict_hash_multi(hash, str, strlen(str));
748 if (dynamic) {
749 free((char *)str);
750 }
751 }
752 if (!val) {
753 /* skip this list instance since its unique set is incomplete */
754 continue;
755 }
756
757 /* finish the hash value */
758 hash = dict_hash_multi(hash, NULL, 0);
759
760 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200761 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +0100762 if (ret == LY_EEXIST) {
763 /* instance duplication */
764 ret = LY_EVALID;
765 }
766 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
767 }
768 }
769 }
770
771cleanup:
772 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200773 for (v = 0; v < x; v++) {
774 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +0100775 /* failed when allocating uniquetables[j], following j are not allocated */
776 break;
777 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200778 lyht_free(uniqtables[v]);
Michal Vasko14654712020-02-06 08:35:21 +0100779 }
780 free(uniqtables);
781
782 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +0100783}
784
Michal Vaskobb844672020-07-03 11:06:12 +0200785/**
786 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
787 *
788 * @param[in] first First sibling to search in.
789 * @param[in] sparent Schema parent of the nodes to check.
790 * @param[in] mod Module of the nodes to check.
791 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
792 * @param[in] op Operation being validated, if any.
793 * @return LY_ERR value.
794 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100795static LY_ERR
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100796lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lysc_node *sparent,
Radek Krejci1deb5be2020-08-26 16:43:36 +0200797 const struct lysc_module *mod, uint32_t val_opts, LYD_VALIDATE_OP op)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100798{
Michal Vaskocde73ac2019-11-14 16:10:27 +0100799 const struct lysc_node *snode = NULL;
Michal Vaskoa3881362020-01-21 15:57:35 +0100800 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +0200801 struct lysc_node_leaflist *sllist;
Radek Krejci1deb5be2020-08-26 16:43:36 +0200802 uint32_t getnext_opts;
Michal Vaskocb7526d2020-03-30 15:08:26 +0200803
Radek Krejci7931b192020-06-25 17:05:03 +0200804 getnext_opts = LYS_GETNEXT_WITHCHOICE | LYS_GETNEXT_WITHCASE | (op == LYD_VALIDATE_OP_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100805
Michal Vaskoa3881362020-01-21 15:57:35 +0100806 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +0200807 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +0200808 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100809 continue;
810 }
811
Michal Vaskoa3881362020-01-21 15:57:35 +0100812 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +0200813 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100814 slist = (struct lysc_node_list *)snode;
815 if (slist->min || slist->max) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100816 LY_CHECK_RET(lyd_validate_minmax(first, snode, slist->min, slist->max));
Michal Vaskoa3881362020-01-21 15:57:35 +0100817 }
Michal Vaskod8958df2020-08-05 13:27:36 +0200818 } else if (snode->nodetype == LYS_LEAFLIST) {
819 sllist = (struct lysc_node_leaflist *)snode;
820 if (sllist->min || sllist->max) {
821 LY_CHECK_RET(lyd_validate_minmax(first, snode, sllist->min, sllist->max));
822 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100823
Michal Vaskoacd83e72020-02-04 14:12:01 +0100824 } else if (snode->flags & LYS_MAND_TRUE) {
Radek Krejcif6a11002020-08-21 13:29:07 +0200825 /* check generic mandatory existence */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100826 LY_CHECK_RET(lyd_validate_mandatory(first, snode));
Michal Vaskoa3881362020-01-21 15:57:35 +0100827 }
828
829 /* check unique */
830 if (snode->nodetype == LYS_LIST) {
831 slist = (struct lysc_node_list *)snode;
832 if (slist->uniques) {
Michal Vaskobb844672020-07-03 11:06:12 +0200833 LY_CHECK_RET(lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques));
Michal Vaskoa3881362020-01-21 15:57:35 +0100834 }
835 }
836
Michal Vaskoacd83e72020-02-04 14:12:01 +0100837 if (snode->nodetype & (LYS_CHOICE | LYS_CASE)) {
838 /* go recursively for schema-only nodes */
Radek Krejci7931b192020-06-25 17:05:03 +0200839 LY_CHECK_RET(lyd_validate_siblings_schema_r(first, snode, mod, val_opts, op));
Michal Vaskoacd83e72020-02-04 14:12:01 +0100840 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100841 }
842
Michal Vaskoacd83e72020-02-04 14:12:01 +0100843 return LY_SUCCESS;
844}
845
Michal Vaskobb844672020-07-03 11:06:12 +0200846/**
847 * @brief Validate obsolete nodes, only warnings are printed.
848 *
849 * @param[in] node Node to check.
850 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100851static void
852lyd_validate_obsolete(const struct lyd_node *node)
853{
854 const struct lysc_node *snode;
855
856 snode = node->schema;
857 do {
858 if (snode->flags & LYS_STATUS_OBSLT) {
859 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
860 break;
861 }
862
863 snode = snode->parent;
864 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
865}
866
Michal Vaskobb844672020-07-03 11:06:12 +0200867/**
868 * @brief Validate must conditions of a data node.
869 *
870 * @param[in] node Node to validate.
871 * @param[in] op Operation being validated, if any.
872 * @return LY_ERR value.
873 */
Michal Vaskocc048b22020-03-27 15:52:38 +0100874static LY_ERR
Radek Krejci7931b192020-06-25 17:05:03 +0200875lyd_validate_must(const struct lyd_node *node, LYD_VALIDATE_OP op)
Michal Vaskocc048b22020-03-27 15:52:38 +0100876{
877 struct lyxp_set xp_set;
878 struct lysc_must *musts;
879 const struct lyd_node *tree;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200880 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +0100881
882 switch (node->schema->nodetype) {
883 case LYS_CONTAINER:
884 musts = ((struct lysc_node_container *)node->schema)->musts;
885 break;
886 case LYS_LEAF:
887 musts = ((struct lysc_node_leaf *)node->schema)->musts;
888 break;
889 case LYS_LEAFLIST:
890 musts = ((struct lysc_node_leaflist *)node->schema)->musts;
891 break;
892 case LYS_LIST:
893 musts = ((struct lysc_node_list *)node->schema)->musts;
894 break;
895 case LYS_ANYXML:
896 case LYS_ANYDATA:
897 musts = ((struct lysc_node_anydata *)node->schema)->musts;
898 break;
899 case LYS_NOTIF:
900 musts = ((struct lysc_notif *)node->schema)->musts;
901 break;
902 case LYS_RPC:
903 case LYS_ACTION:
Radek Krejci7931b192020-06-25 17:05:03 +0200904 if (op == LYD_VALIDATE_OP_RPC) {
Michal Vaskocb7526d2020-03-30 15:08:26 +0200905 musts = ((struct lysc_action *)node->schema)->input.musts;
Radek Krejci7931b192020-06-25 17:05:03 +0200906 } else if (op == LYD_VALIDATE_OP_REPLY) {
Michal Vaskocb7526d2020-03-30 15:08:26 +0200907 musts = ((struct lysc_action *)node->schema)->output.musts;
908 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200909 LOGINT(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +0200910 return LY_EINT;
911 }
Michal Vaskocc048b22020-03-27 15:52:38 +0100912 break;
913 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200914 LOGINT(LYD_CTX(node));
Michal Vaskocc048b22020-03-27 15:52:38 +0100915 return LY_EINT;
916 }
917
918 if (!musts) {
919 /* no must to evaluate */
920 return LY_SUCCESS;
921 }
922
923 /* find first top-level node */
Radek Krejci1e008d22020-08-17 11:37:37 +0200924 for (tree = node; tree->parent; tree = (struct lyd_node *)tree->parent) {}
Michal Vaskocc048b22020-03-27 15:52:38 +0100925 while (tree->prev->next) {
926 tree = tree->prev;
927 }
928
929 LY_ARRAY_FOR(musts, u) {
930 memset(&xp_set, 0, sizeof xp_set);
931
932 /* evaluate must */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200933 LY_CHECK_RET(lyxp_eval(musts[u].cond, LY_PREF_SCHEMA, musts[u].module, node, LYXP_NODE_ELEM, tree, &xp_set,
934 LYXP_SCHEMA));
Michal Vaskocc048b22020-03-27 15:52:38 +0100935
936 /* check the result */
937 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +0200938 if (!xp_set.val.bln) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200939 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOMUST, musts[u].cond->expr);
Michal Vaskocc048b22020-03-27 15:52:38 +0100940 return LY_EVALID;
941 }
942 }
943
944 return LY_SUCCESS;
945}
946
Michal Vaskob1b5c262020-03-05 14:29:47 +0100947LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200948lyd_validate_final_r(struct lyd_node *first, const struct lysc_node *sparent, const struct lys_module *mod, uint32_t val_opts,
Radek Krejci0f969882020-08-21 16:56:47 +0200949 LYD_VALIDATE_OP op)
Michal Vaskoacd83e72020-02-04 14:12:01 +0100950{
Radek Krejci7f769d72020-07-11 23:13:56 +0200951 struct lyd_node *next = NULL, *node;
Michal Vaskoc193ce92020-03-06 11:04:48 +0100952 const struct lysc_node *snode;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100953
Michal Vasko14654712020-02-06 08:35:21 +0100954 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100955 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100956 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100957 /* all top-level data from this module checked */
958 break;
Michal Vaskof03ed032020-03-04 13:31:44 +0100959 }
960
Michal Vaskoa8c61722020-03-27 16:59:32 +0100961 /* opaque data */
962 if (!node->schema) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200963 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LYVE_DATA, "Opaque node \"%s\" found.",
Radek Krejci0f969882020-08-21 16:56:47 +0200964 ((struct lyd_node_opaq *)node)->name);
Michal Vaskoa8c61722020-03-27 16:59:32 +0100965 return LY_EVALID;
966 }
967
Michal Vaskocb7526d2020-03-30 15:08:26 +0200968 /* no state/input/output data */
Radek Krejci7931b192020-06-25 17:05:03 +0200969 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200970 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "state", node->schema->name);
Michal Vaskocb7526d2020-03-30 15:08:26 +0200971 return LY_EVALID;
Radek Krejci7931b192020-06-25 17:05:03 +0200972 } else if ((op == LYD_VALIDATE_OP_RPC) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200973 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "output", node->schema->name);
Michal Vaskocb7526d2020-03-30 15:08:26 +0200974 return LY_EVALID;
Radek Krejci7931b192020-06-25 17:05:03 +0200975 } else if ((op == LYD_VALIDATE_OP_REPLY) && (node->schema->flags & LYS_CONFIG_W)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200976 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "input", node->schema->name);
Michal Vasko5b37a352020-03-06 13:38:33 +0100977 return LY_EVALID;
978 }
979
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100980 /* obsolete data */
981 lyd_validate_obsolete(node);
982
Michal Vaskoc193ce92020-03-06 11:04:48 +0100983 /* node's schema if-features */
984 if ((snode = lysc_node_is_disabled(node->schema, 1))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200985 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOIFF, snode->name);
Michal Vaskoc193ce92020-03-06 11:04:48 +0100986 return LY_EVALID;
987 }
988
Michal Vaskocc048b22020-03-27 15:52:38 +0100989 /* node's musts */
Radek Krejci7931b192020-06-25 17:05:03 +0200990 LY_CHECK_RET(lyd_validate_must(node, op));
Michal Vaskocc048b22020-03-27 15:52:38 +0100991
Michal Vaskoa8c61722020-03-27 16:59:32 +0100992 /* node value including if-feature was checked by plugins */
Michal Vasko14654712020-02-06 08:35:21 +0100993 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100994
Michal Vasko14654712020-02-06 08:35:21 +0100995 /* validate schema-based restrictions */
Radek Krejci7931b192020-06-25 17:05:03 +0200996 LY_CHECK_RET(lyd_validate_siblings_schema_r(first, sparent, mod ? mod->compiled : NULL, val_opts, op));
Michal Vasko14654712020-02-06 08:35:21 +0100997
Michal Vaskob1b5c262020-03-05 14:29:47 +0100998 LY_LIST_FOR(first, node) {
Michal Vasko14654712020-02-06 08:35:21 +0100999 /* validate all children recursively */
Radek Krejci7931b192020-06-25 17:05:03 +02001000 LY_CHECK_RET(lyd_validate_final_r(lyd_node_children(node, 0), node->schema, NULL, val_opts, op));
Michal Vaskocde73ac2019-11-14 16:10:27 +01001001
Michal Vaskob1b5c262020-03-05 14:29:47 +01001002 /* set default for containers */
1003 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001004 LY_LIST_FOR(lyd_node_children(node, 0), next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001005 if (!(next->flags & LYD_DEFAULT)) {
1006 break;
1007 }
Michal Vaskoa3881362020-01-21 15:57:35 +01001008 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001009 if (!next) {
1010 node->flags |= LYD_DEFAULT;
1011 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001012 }
1013 }
1014
1015 return LY_SUCCESS;
1016}
1017
Radek Krejci7931b192020-06-25 17:05:03 +02001018/**
Michal Vaskobb844672020-07-03 11:06:12 +02001019 * @brief Validate the whole data subtree.
1020 *
1021 * @param[in] root Subtree root.
1022 * @param[in,out] type_check Set for unres node types.
1023 * @param[in,out] type_meta_check Set for unres metadata types.
1024 * @param[in,out] when_check Set for nodes with when conditions.
1025 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001026 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001027 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001028 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001029static LY_ERR
Michal Vaskofea12c62020-03-30 11:00:15 +02001030lyd_validate_subtree(struct lyd_node *root, struct ly_set *type_check, struct ly_set *type_meta_check,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001031 struct ly_set *when_check, uint32_t val_opts, struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001032{
1033 const struct lyd_meta *meta;
Michal Vasko56daf732020-08-10 10:57:18 +02001034 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001035
Michal Vasko56daf732020-08-10 10:57:18 +02001036 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001037 /* skip added default nodes */
1038 if ((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1039 LY_LIST_FOR(node->meta, meta) {
1040 /* metadata type resolution */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001041 LY_CHECK_RET(ly_set_add(type_meta_check, (void *)meta, LY_SET_OPT_USEASLIST, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001042 }
1043
1044 if (node->schema->nodetype & LYD_NODE_TERM) {
1045 /* node type resolution */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001046 LY_CHECK_RET(ly_set_add(type_check, (void *)node, LY_SET_OPT_USEASLIST, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001047 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1048 /* new node validation, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001049 LY_CHECK_RET(lyd_validate_new(lyd_node_children_p((struct lyd_node *)node), node->schema, NULL, diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001050
1051 /* add nested defaults */
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001052 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, type_check,
1053 when_check, val_opts & LYD_VALIDATE_NO_STATE ? LYD_IMPLICIT_NO_STATE : 0,
1054 diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001055 }
1056
1057 if (!(node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && node->schema->when) {
1058 /* when evaluation */
Radek Krejciba03a5a2020-08-27 14:40:41 +02001059 LY_CHECK_RET(ly_set_add(when_check, (void *)node, LY_SET_OPT_USEASLIST, NULL));
Michal Vaskofea12c62020-03-30 11:00:15 +02001060 }
1061 }
1062
Michal Vasko56daf732020-08-10 10:57:18 +02001063 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001064 }
1065
1066 return LY_SUCCESS;
1067}
1068
Michal Vaskobb844672020-07-03 11:06:12 +02001069/**
1070 * @brief Validate data tree.
1071 *
1072 * @param[in,out] tree Data tree to validate, nodes may be autodeleted.
1073 * @param[in] modules Array of modules to validate, NULL for all modules.
1074 * @param[in] mod_count Count of @p modules.
1075 * @param[in] ly_ctx libyang context.
1076 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001077 * @param[out] diff Generated validation diff, not generated if NULL.
Michal Vaskobb844672020-07-03 11:06:12 +02001078 * @return LY_ERR value.
1079 */
Michal Vaskofea12c62020-03-30 11:00:15 +02001080static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001081lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts,
Radek Krejci0f969882020-08-21 16:56:47 +02001082 struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001083{
1084 LY_ERR ret = LY_SUCCESS;
Michal Vaskofea12c62020-03-30 11:00:15 +02001085 struct lyd_node *first, *next, **first2;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001086 const struct lys_module *mod;
Michal Vasko9f96a052020-03-10 09:41:45 +01001087 struct ly_set type_check = {0}, type_meta_check = {0}, when_check = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001088 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001089
Michal Vasko26e80012020-07-08 10:55:46 +02001090 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx || module, LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001091 if (diff) {
1092 *diff = NULL;
1093 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001094
Michal Vaskob1b5c262020-03-05 14:29:47 +01001095 next = *tree;
1096 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001097 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001098 mod = lyd_data_next_module(&next, &first);
1099 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001100 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001101 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001102 if (!mod) {
1103 break;
1104 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001105 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001106 /* make sure first2 changes are carried to tree */
1107 first2 = tree;
1108 } else {
1109 first2 = &first;
1110 }
1111
1112 /* validate new top-level nodes of this module, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001113 ret = lyd_validate_new(first2, NULL, mod, diff);
1114 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001115
1116 /* add all top-level defaults for this module */
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001117 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, &type_check, &when_check, val_opts & LYD_VALIDATE_NO_STATE
1118 ? LYD_IMPLICIT_NO_STATE : 0, diff);
Michal Vasko8104fd42020-07-13 11:09:51 +02001119 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001120
1121 /* process nested nodes */
1122 LY_LIST_FOR(*first2, first) {
Michal Vasko8104fd42020-07-13 11:09:51 +02001123 ret = lyd_validate_subtree(first, &type_check, &type_meta_check, &when_check, val_opts, diff);
1124 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001125 }
1126
1127 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001128 ret = lyd_validate_unres(tree, &when_check, &type_check, &type_meta_check, LY_PREF_JSON, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001129 LY_CHECK_GOTO(ret, cleanup);
1130
1131 /* perform final validation that assumes the data tree is final */
Michal Vasko8104fd42020-07-13 11:09:51 +02001132 ret = lyd_validate_final_r(*first2, NULL, mod, val_opts, 0);
1133 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001134 }
1135
Michal Vaskof03ed032020-03-04 13:31:44 +01001136cleanup:
1137 ly_set_erase(&type_check, NULL);
Michal Vasko9f96a052020-03-10 09:41:45 +01001138 ly_set_erase(&type_meta_check, NULL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001139 ly_set_erase(&when_check, NULL);
1140 return ret;
1141}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001142
1143API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001144lyd_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 +01001145{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001146 return lyd_validate(tree, NULL, ctx, val_opts, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001147}
1148
1149API LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02001150lyd_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 +01001151{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001152 return lyd_validate(tree, module, NULL, val_opts, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001153}
Michal Vaskofea12c62020-03-30 11:00:15 +02001154
Michal Vaskobb844672020-07-03 11:06:12 +02001155/**
1156 * @brief Find nodes for merging an operation into data tree for validation.
1157 *
1158 * @param[in] op_tree Full operation data tree.
1159 * @param[in] op_node Operation node itself.
1160 * @param[in] tree Data tree to be merged into.
1161 * @param[out] op_subtree Operation subtree to merge.
1162 * @param[out] tree_sibling Data tree sibling to merge next to.
1163 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001164static void
Michal Vaskobb844672020-07-03 11:06:12 +02001165lyd_val_op_merge_find(const struct lyd_node *op_tree, const struct lyd_node *op_node, const struct lyd_node *tree,
Radek Krejci0f969882020-08-21 16:56:47 +02001166 struct lyd_node **op_subtree, struct lyd_node **tree_sibling)
Michal Vaskofea12c62020-03-30 11:00:15 +02001167{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001168 const struct lyd_node *tree_iter, *op_iter;
1169 struct lyd_node *match;
Michal Vaskofea12c62020-03-30 11:00:15 +02001170 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001171
Michal Vaskocb7526d2020-03-30 15:08:26 +02001172 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001173 op_depth = 0;
Michal Vaskobb844672020-07-03 11:06:12 +02001174 for (op_iter = op_node; op_iter != op_tree; op_iter = (struct lyd_node *)op_iter->parent) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001175 ++op_depth;
1176 }
1177
1178 /* find where to merge op */
1179 tree_iter = tree;
1180 cur_depth = op_depth;
Michal Vaskobb844672020-07-03 11:06:12 +02001181 op_iter = op_node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001182 while (cur_depth) {
1183 /* find next op parent */
Michal Vaskobb844672020-07-03 11:06:12 +02001184 op_iter = op_node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001185 for (i = 0; i < cur_depth; ++i) {
1186 op_iter = (struct lyd_node *)op_iter->parent;
1187 }
1188
1189 /* find op iter in tree */
1190 lyd_find_sibling_first(tree_iter, op_iter, &match);
1191 if (!match) {
1192 break;
1193 }
1194
1195 /* move tree_iter */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001196 tree_iter = lyd_node_children(match, 0);
Michal Vaskofea12c62020-03-30 11:00:15 +02001197
1198 /* move depth */
1199 --cur_depth;
1200 }
1201
Michal Vaskobb844672020-07-03 11:06:12 +02001202 *op_subtree = (struct lyd_node *)op_iter;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001203 *tree_sibling = (struct lyd_node *)tree_iter;
1204}
1205
1206API LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +02001207lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *tree, LYD_VALIDATE_OP op, struct lyd_node **diff)
Michal Vaskocb7526d2020-03-30 15:08:26 +02001208{
1209 LY_ERR ret;
Michal Vasko56daf732020-08-10 10:57:18 +02001210 struct lyd_node *tree_sibling, *op_subtree, *op_node, *op_parent;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001211 struct ly_set type_check = {0}, type_meta_check = {0}, when_check = {0};
1212
1213 LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !tree || !tree->parent,
Radek Krejci0f969882020-08-21 16:56:47 +02001214 (op == LYD_VALIDATE_OP_NOTIF) || (op == LYD_VALIDATE_OP_RPC) || (op == LYD_VALIDATE_OP_REPLY), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001215 if (diff) {
1216 *diff = NULL;
1217 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001218
1219 /* find the operation/notification */
Michal Vasko56daf732020-08-10 10:57:18 +02001220 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
Radek Krejci7931b192020-06-25 17:05:03 +02001221 if ((op == LYD_VALIDATE_OP_RPC || op == LYD_VALIDATE_OP_REPLY) && (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001222 break;
Radek Krejci7931b192020-06-25 17:05:03 +02001223 } else if ((op == LYD_VALIDATE_OP_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001224 break;
1225 }
Michal Vasko56daf732020-08-10 10:57:18 +02001226 LYD_TREE_DFS_END(op_tree, op_node);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001227 }
Radek Krejci7931b192020-06-25 17:05:03 +02001228 if (op == LYD_VALIDATE_OP_RPC || op == LYD_VALIDATE_OP_REPLY) {
1229 if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001230 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001231 return LY_EINVAL;
1232 }
1233 } else {
Radek Krejci7931b192020-06-25 17:05:03 +02001234 if (op_node->schema->nodetype != LYS_NOTIF) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001235 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001236 return LY_EINVAL;
1237 }
1238 }
1239
1240 /* move op_tree to top-level node */
1241 while (op_tree->parent) {
1242 op_tree = (struct lyd_node *)op_tree->parent;
1243 }
1244
1245 /* merge op_tree into tree */
Radek Krejci7931b192020-06-25 17:05:03 +02001246 lyd_val_op_merge_find(op_tree, op_node, tree, &op_subtree, &tree_sibling);
1247 op_parent = (struct lyd_node *)op_subtree->parent;
1248 lyd_unlink_tree(op_subtree);
1249 lyd_insert_node(NULL, (struct lyd_node **)&tree_sibling, op_subtree);
Michal Vaskofea12c62020-03-30 11:00:15 +02001250 if (!tree) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001251 tree = tree_sibling;
Michal Vaskofea12c62020-03-30 11:00:15 +02001252 }
1253
1254 /* prevalidate whole operation subtree */
Michal Vasko8104fd42020-07-13 11:09:51 +02001255 LY_CHECK_GOTO(ret = lyd_validate_subtree(op_node, &type_check, &type_meta_check, &when_check, 0, diff), cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001256
1257 /* finish incompletely validated terminal values/attributes and when conditions on the full tree */
1258 LY_CHECK_GOTO(ret = lyd_validate_unres((struct lyd_node **)&tree, &when_check, &type_check, &type_meta_check,
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001259 LY_PREF_JSON, NULL, diff), cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001260
1261 /* perform final validation of the operation/notification */
Radek Krejci7931b192020-06-25 17:05:03 +02001262 lyd_validate_obsolete(op_node);
1263 if (lysc_node_is_disabled(op_node->schema, 1)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001264 LOGVAL(LYD_CTX(op_tree), LY_VLOG_LYD, op_node, LY_VCODE_NOIFF, op_node->schema->name);
Michal Vaskofea12c62020-03-30 11:00:15 +02001265 ret = LY_EVALID;
1266 goto cleanup;
1267 }
Radek Krejci7931b192020-06-25 17:05:03 +02001268 LY_CHECK_GOTO(ret = lyd_validate_must(op_node, op), cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001269
1270 /* final validation of all the descendants */
Radek Krejci7931b192020-06-25 17:05:03 +02001271 LY_CHECK_GOTO(ret = lyd_validate_final_r(lyd_node_children(op_node, 0), op_node->schema, NULL, 0, op), cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001272
1273cleanup:
1274 /* restore operation tree */
Radek Krejci7931b192020-06-25 17:05:03 +02001275 lyd_unlink_tree(op_subtree);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001276 if (op_parent) {
Radek Krejci7931b192020-06-25 17:05:03 +02001277 lyd_insert_node(op_parent, NULL, op_subtree);
Michal Vaskofea12c62020-03-30 11:00:15 +02001278 }
1279
1280 ly_set_erase(&type_check, NULL);
1281 ly_set_erase(&type_meta_check, NULL);
1282 ly_set_erase(&when_check, NULL);
1283 return ret;
1284}