blob: 84975a3361bca722b340b90d9a0c0bc8e6df778d [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 */
14
Michal Vasko52927e22020-03-16 17:26:14 +010015#include "common.h"
16
Michal Vaskocde73ac2019-11-14 16:10:27 +010017#include <assert.h>
18#include <string.h>
Michal Vasko52927e22020-03-16 17:26:14 +010019#include <stdio.h>
20#include <stdlib.h>
Michal Vaskocde73ac2019-11-14 16:10:27 +010021
Michal Vaskocde73ac2019-11-14 16:10:27 +010022#include "xpath.h"
23#include "tree_data_internal.h"
Michal Vasko14654712020-02-06 08:35:21 +010024#include "tree_schema_internal.h"
Michal Vaskocde73ac2019-11-14 16:10:27 +010025
Michal Vaskof03ed032020-03-04 13:31:44 +010026static struct lyd_node *
27lys_getnext_data(const struct lyd_node *last, const struct lyd_node *sibling, const struct lysc_node **slast,
28 const struct lysc_node *parent, const struct lysc_module *module)
29{
30 const struct lysc_node *siter = NULL;
31 struct lyd_node *match = NULL;
32
33 assert(parent || module);
34 assert(!last || (slast && *slast));
35
36 if (slast) {
37 siter = *slast;
38 }
39
40 if (last && last->next) {
41 /* find next data instance */
42 lyd_find_sibling_next2(last->next, siter, NULL, 0, &match);
43 if (match) {
44 return match;
45 }
46 }
47
48 /* find next schema node data instance */
49 while ((siter = lys_getnext(siter, parent, module, 0))) {
50 switch (siter->nodetype) {
51 case LYS_CONTAINER:
52 case LYS_ANYXML:
53 case LYS_ANYDATA:
54 case LYS_LEAF:
55 lyd_find_sibling_val(sibling, siter, NULL, 0, &match);
56 break;
57 case LYS_LIST:
58 case LYS_LEAFLIST:
59 lyd_find_sibling_next2(sibling, siter, NULL, 0, &match);
60 break;
61 default:
62 assert(0);
63 LOGINT(NULL);
64 }
65
66 if (match) {
67 break;
68 }
69 }
70
71 if (slast) {
72 *slast = siter;
73 }
74 return match;
75}
76
Michal Vaskocde73ac2019-11-14 16:10:27 +010077/**
78 * @brief Evaluate a single "when" condition.
79 *
Michal Vaskob1b5c262020-03-05 14:29:47 +010080 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskocde73ac2019-11-14 16:10:27 +010081 * @param[in] node Node whose existence depends on this when.
Michal Vaskob1b5c262020-03-05 14:29:47 +010082 * @param[in] when When to evaluate.
Michal Vaskocde73ac2019-11-14 16:10:27 +010083 * @return LY_ERR value (LY_EINCOMPLETE if a referenced node does not have its when evaluated)
84 */
85static LY_ERR
Michal Vaskoc193ce92020-03-06 11:04:48 +010086lyd_validate_when(struct lyd_node **tree, struct lyd_node *node, struct lysc_when *when)
Michal Vaskocde73ac2019-11-14 16:10:27 +010087{
Michal Vaskob1b5c262020-03-05 14:29:47 +010088 LY_ERR ret = LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +010089 const struct lyd_node *ctx_node;
90 struct lyxp_set xp_set;
91
92 memset(&xp_set, 0, sizeof xp_set);
93
94 if (when->context == node->schema) {
95 ctx_node = node;
96 } else {
97 assert((!when->context && !node->parent) || (when->context == node->parent->schema));
98 ctx_node = (struct lyd_node *)node->parent;
99 }
100
101 /* evaluate when */
Michal Vasko52927e22020-03-16 17:26:14 +0100102 ret = lyxp_eval(when->cond, LYD_SCHEMA, when->module, ctx_node, ctx_node ? LYXP_NODE_ELEM : LYXP_NODE_ROOT_CONFIG,
Michal Vaskob1b5c262020-03-05 14:29:47 +0100103 *tree, &xp_set, LYXP_SCHEMA);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100104 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
105
106 /* return error or LY_EINCOMPLETE for dependant unresolved when */
107 LY_CHECK_RET(ret);
108
109 /* take action based on the result */
110 if (!xp_set.val.bool) {
111 if (node->flags & LYD_WHEN_TRUE) {
112 /* autodelete */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100113 if (LYD_DEL_IS_ROOT(*tree, node)) {
114 *tree = (*tree)->next;
115 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100116 lyd_free_tree(node);
117 } else {
118 /* invalid data */
Michal Vaskocc048b22020-03-27 15:52:38 +0100119 LOGVAL(LYD_NODE_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOWHEN, when->cond->expr);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100120 ret = LY_EVALID;
121 }
122 } else {
123 /* remember that when evaluated to true */
124 node->flags |= LYD_WHEN_TRUE;
125 }
126
127 return ret;
128}
129
130LY_ERR
Michal Vasko9f96a052020-03-10 09:41:45 +0100131lyd_validate_unres(struct lyd_node **tree, struct ly_set *node_when, struct ly_set *node_types, struct ly_set *meta_types,
Michal Vaskob1b5c262020-03-05 14:29:47 +0100132 LYD_FORMAT format, ly_clb_resolve_prefix get_prefix_clb, void *parser_data)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100133{
134 LY_ERR ret = LY_SUCCESS;
135 uint32_t u;
136
Michal Vaskob1b5c262020-03-05 14:29:47 +0100137 if (node_when) {
138 /* evaluate all when conditions */
139 uint32_t prev_count;
140 do {
141 prev_count = node_when->count;
142 u = 0;
143 while (u < node_when->count) {
144 /* evaluate all when expressions that affect this node's existence */
145 struct lyd_node *node = (struct lyd_node *)node_when->objs[u];
146 const struct lysc_node *schema = node->schema;
147 int unres_when = 0;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100148
Michal Vaskob1b5c262020-03-05 14:29:47 +0100149 do {
150 uint32_t i;
151 LY_ARRAY_FOR(schema->when, i) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100152 ret = lyd_validate_when(tree, node, schema->when[i]);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100153 if (ret) {
154 break;
155 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100156 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100157 if (ret == LY_EINCOMPLETE) {
158 /* could not evaluate this when */
159 unres_when = 1;
160 break;
161 } else if (ret) {
162 /* error */
163 return ret;
164 }
165 schema = schema->parent;
166 } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE)));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100167
Michal Vaskob1b5c262020-03-05 14:29:47 +0100168 if (unres_when) {
169 /* keep in set and go to the next node */
170 ++u;
171 } else {
172 /* remove this node from the set */
173 ly_set_rm_index(node_when, u, NULL);
174 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100175 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100176
Michal Vaskob1b5c262020-03-05 14:29:47 +0100177 /* there must have been some when conditions resolved */
178 } while (prev_count > node_when->count);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100179
Michal Vaskob1b5c262020-03-05 14:29:47 +0100180 /* there could have been no cyclic when dependencies, checked during compilation */
181 assert(!node_when->count);
182 }
183
184 if (node_types && node_types->count) {
185 /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */
186 u = node_types->count;
187 do {
188 --u;
189
190 struct lyd_node_term *node = (struct lyd_node_term *)node_types->objs[u];
191
192 /* validate and store the value of the node */
193 ret = lyd_value_parse(node, node->value.original, strlen(node->value.original), 0, 1, get_prefix_clb,
194 parser_data, format, *tree);
195 LY_CHECK_RET(ret);
196
197 /* remove this node from the set */
198 ly_set_rm_index(node_types, u, NULL);
199 } while (u);
200 }
201
Michal Vasko9f96a052020-03-10 09:41:45 +0100202 if (meta_types && meta_types->count) {
203 /* ... and metadata values */
204 u = meta_types->count;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100205 do {
206 --u;
207
Michal Vasko9f96a052020-03-10 09:41:45 +0100208 struct lyd_meta *meta = (struct lyd_meta *)meta_types->objs[u];
Michal Vaskob1b5c262020-03-05 14:29:47 +0100209
Michal Vasko9f96a052020-03-10 09:41:45 +0100210 /* validate and store the value of the metadata */
211 ret = lyd_value_parse_meta(meta->parent->schema->module->ctx, meta, meta->value.original,
212 strlen(meta->value.original), 0, 1, get_prefix_clb, parser_data, format, NULL, *tree);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100213 LY_CHECK_RET(ret);
214
215 /* remove this attr from the set */
Michal Vasko9f96a052020-03-10 09:41:45 +0100216 ly_set_rm_index(meta_types, u, NULL);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100217 } while (u);
218 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100219
220 return ret;
221}
222
Michal Vaskob1b5c262020-03-05 14:29:47 +0100223static LY_ERR
224lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100225{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100226 struct lyd_node **match_p;
227 int fail = 0;
228
229 if ((node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && (node->schema->flags & LYS_CONFIG_R)) {
230 /* duplicate instances allowed */
231 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100232 }
233
Michal Vaskob1b5c262020-03-05 14:29:47 +0100234 /* find exactly the same next instance using hashes if possible */
235 if (node->parent && node->parent->children_ht) {
236 if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) {
237 fail = 1;
238 }
239 } else {
240 for (; first; first = first->next) {
241 if (first == node) {
242 continue;
243 }
244
245 if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) {
246 if (first->schema == node->schema) {
247 fail = 1;
248 break;
249 }
250 } else if (!lyd_compare(first, node, 0)) {
251 fail = 1;
252 break;
253 }
254 }
255 }
256
257 if (fail) {
258 LOGVAL(node->schema->module->ctx, LY_VLOG_LYD, node, LY_VCODE_DUP, node->schema->name);
259 return LY_EVALID;
260 }
261 return LY_SUCCESS;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100262}
263
264static LY_ERR
Michal Vaskob1b5c262020-03-05 14:29:47 +0100265lyd_validate_cases(struct lyd_node **first, const struct lysc_node_choice *choic)
266{
267 const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL;
268 struct lyd_node *match, *to_del;
269 int found;
270
271 LY_LIST_FOR((struct lysc_node *)choic->cases, scase) {
272 found = 0;
273 iter = NULL;
274 match = NULL;
275 while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) {
276 if (match->flags & LYD_NEW) {
277 /* a new case data found, nothing more to look for */
278 found = 2;
279 break;
280 } else {
281 /* and old case data found */
282 if (found == 0) {
283 found = 1;
284 }
285 }
286 }
287
288 if (found == 1) {
289 /* there should not be 2 old cases */
290 if (old_case) {
291 /* old data from 2 cases */
292 LOGVAL(choic->module->ctx, LY_VLOG_LYSC, choic, LY_VCODE_DUPCASE, old_case->name, scase->name);
293 return LY_EVALID;
294 }
295
296 /* remember an old existing case */
297 old_case = scase;
298 } else if (found == 2) {
299 if (new_case) {
300 /* new data from 2 cases */
301 LOGVAL(choic->module->ctx, LY_VLOG_LYSC, choic, LY_VCODE_DUPCASE, new_case->name, scase->name);
302 return LY_EVALID;
303 }
304
305 /* remember a new existing case */
306 new_case = scase;
307 }
308 }
309
310 if (old_case && new_case) {
311 /* auto-delete old case */
312 iter = NULL;
313 match = NULL;
314 to_del = NULL;
315 while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) {
316 if (LYD_DEL_IS_ROOT(*first, to_del)) {
317 *first = (*first)->next;
318 }
319 lyd_free_tree(to_del);
320 to_del = match;
321 }
322 if (LYD_DEL_IS_ROOT(*first, to_del)) {
323 *first = (*first)->next;
324 }
325 lyd_free_tree(to_del);
326 }
327
328 return LY_SUCCESS;
329}
330
331static int
332lyd_val_has_default(const struct lysc_node *schema)
333{
334 switch (schema->nodetype) {
335 case LYS_LEAF:
336 if (((struct lysc_node_leaf *)schema)->dflt) {
337 return 1;
338 }
339 break;
340 case LYS_LEAFLIST:
341 if (((struct lysc_node_leaflist *)schema)->dflts) {
342 return 1;
343 }
344 break;
345 case LYS_CONTAINER:
346 if (!(schema->flags & LYS_PRESENCE)) {
347 return 1;
348 }
349 break;
350 default:
351 break;
352 }
353
354 return 0;
355}
356
357static void
358lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, struct lyd_node **next_p)
359{
360 struct lyd_node *match, *next;
361
362 if (lyd_val_has_default(node->schema)) {
363 assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER));
364 if (node->schema->nodetype == LYS_LEAFLIST) {
365 lyd_find_sibling_next2(*first, node->schema, NULL, 0, &match);
366 } else {
367 lyd_find_sibling_val(*first, node->schema, NULL, 0, &match);
368 }
369
370 while (match) {
371 next = match->next;
372 if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) {
373 /* default instance found, remove it */
374 if (LYD_DEL_IS_ROOT(*first, match)) {
375 *first = (*first)->next;
376 }
377 if (match == *next_p) {
378 *next_p = (*next_p)->next;
379 }
380 lyd_free_tree(match);
381
382 /* remove only a single container/leaf default instance, if there are more, it is an error */
383 if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) {
384 break;
385 }
386 }
387
388 lyd_find_sibling_next2(next, node->schema, NULL, 0, &match);
389 }
390 }
391}
392
393LY_ERR
394lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod)
395{
396 struct lyd_node *next, *node;
397 const struct lysc_node *snode = NULL;
398
399 assert(first && (sparent || mod));
400
401 while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
402 /* check case duplicites */
403 if (snode->nodetype == LYS_CHOICE) {
404 LY_CHECK_RET(lyd_validate_cases(first, (struct lysc_node_choice *)snode));
405 }
406 }
407
408 LY_LIST_FOR_SAFE(*first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100409 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100410 /* all top-level data from this module checked */
411 break;
412 }
413
414 if (!(node->flags & LYD_NEW)) {
415 /* check only new nodes */
416 continue;
417 }
418
419 /* remove old default(s) if it exists */
420 lyd_validate_autodel_dup(first, node, &next);
421
422 /* then check new node instance duplicities */
423 LY_CHECK_RET(lyd_validate_duplicates(*first, node));
424
425 /* this node is valid */
426 node->flags &= ~LYD_NEW;
427 }
428
429 return LY_SUCCESS;
430}
431
432static LY_ERR
433lyd_validate_mandatory(const struct lyd_node *first, const struct lysc_node *snode)
Michal Vaskoa3881362020-01-21 15:57:35 +0100434{
Michal Vaskoa3881362020-01-21 15:57:35 +0100435 if (snode->nodetype == LYS_CHOICE) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100436 /* some data of a choice case exist */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100437 if (lys_getnext_data(NULL, first, NULL, snode, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100438 return LY_SUCCESS;
439 }
440 } else {
441 assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY));
Michal Vaskoa3881362020-01-21 15:57:35 +0100442
Michal Vaskob1b5c262020-03-05 14:29:47 +0100443 if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100444 /* data instance found */
445 return LY_SUCCESS;
Michal Vaskoa3881362020-01-21 15:57:35 +0100446 }
447 }
448
449 /* node instance not found */
450 LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMAND, snode->name);
451 return LY_EVALID;
452}
453
454static LY_ERR
Michal Vaskob1b5c262020-03-05 14:29:47 +0100455lyd_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 +0100456{
Michal Vaskoacd83e72020-02-04 14:12:01 +0100457 uint32_t count = 0;
Michal Vaskob1b5c262020-03-05 14:29:47 +0100458 const struct lyd_node *iter;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100459
Michal Vasko9b368d32020-02-14 13:53:31 +0100460 assert(min || max);
461
Michal Vaskob1b5c262020-03-05 14:29:47 +0100462 LY_LIST_FOR(first, iter) {
Michal Vaskoacd83e72020-02-04 14:12:01 +0100463 if (iter->schema == snode) {
464 ++count;
Michal Vasko9b368d32020-02-14 13:53:31 +0100465
466 if (min && (count == min)) {
467 /* satisfied */
468 min = 0;
469 if (!max) {
470 /* nothing more to check */
471 break;
472 }
473 }
474 if (max && (count > max)) {
475 /* not satisifed */
476 break;
477 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100478 }
479 }
480
Michal Vasko9b368d32020-02-14 13:53:31 +0100481 if (min) {
482 assert(count < min);
Michal Vaskoacd83e72020-02-04 14:12:01 +0100483 LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMIN, snode->name);
484 return LY_EVALID;
485 } else if (max && (count > max)) {
486 LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMAX, snode->name);
487 return LY_EVALID;
488 }
489
Michal Vaskoa3881362020-01-21 15:57:35 +0100490 return LY_SUCCESS;
491}
492
Michal Vasko14654712020-02-06 08:35:21 +0100493static struct lyd_node *
494lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, struct lyd_node *list)
495{
Michal Vasko9b368d32020-02-14 13:53:31 +0100496 struct lyd_node *node;
497 const struct lysc_node *iter;
498 size_t depth = 0, i;
Michal Vasko14654712020-02-06 08:35:21 +0100499
Michal Vasko9b368d32020-02-14 13:53:31 +0100500 /* get leaf depth */
501 for (iter = (struct lysc_node *)uniq_leaf; iter && (iter != list->schema); iter = iter->parent) {
502 if (!(iter->nodetype & (LYS_CHOICE | LYS_CASE))) {
503 ++depth;
504 }
Michal Vasko14654712020-02-06 08:35:21 +0100505 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100506
507 node = list;
508 while (node && depth) {
509 /* find schema node with this depth */
510 for (i = depth - 1, iter = (struct lysc_node *)uniq_leaf; i; iter = iter->parent) {
511 if (!(iter->nodetype & (LYS_CHOICE | LYS_CASE))) {
512 --i;
513 }
514 }
515
516 /* find iter instance in children */
517 assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF));
518 lyd_find_sibling_val(lyd_node_children(node), iter, NULL, 0, &node);
519 --depth;
520 }
521
Michal Vasko14654712020-02-06 08:35:21 +0100522 return node;
523}
524
525/*
526 * actions (cb_data):
527 * 0 - compare all uniques
528 * n - compare n-th unique
529 */
530static int
531lyd_val_uniq_list_equal(void *val1_p, void *val2_p, int UNUSED(mod), void *cb_data)
532{
533 struct ly_ctx *ctx;
534 struct lysc_node_list *slist;
535 struct lyd_node *diter, *first, *second;
536 struct lyd_value *val1, *val2;
537 char *path1, *path2, *uniq_str, *ptr;
538 uint32_t i, j, action;
539
540 assert(val1_p && val2_p);
541
542 first = *((struct lyd_node **)val1_p);
543 second = *((struct lyd_node **)val2_p);
544 action = (uintptr_t)cb_data;
545
546 assert(first && (first->schema->nodetype == LYS_LIST));
547 assert(second && (second->schema == first->schema));
548
549 ctx = first->schema->module->ctx;
550
551 slist = (struct lysc_node_list *)first->schema;
552
553 /* compare unique leaves */
554 if (action > 0) {
555 i = action - 1;
556 if (i < LY_ARRAY_SIZE(slist->uniques)) {
557 goto uniquecheck;
558 }
559 }
560 LY_ARRAY_FOR(slist->uniques, i) {
561uniquecheck:
562 LY_ARRAY_FOR(slist->uniques[i], j) {
563 /* first */
564 diter = lyd_val_uniq_find_leaf(slist->uniques[i][j], first);
565 if (diter) {
566 val1 = &((struct lyd_node_term *)diter)->value;
567 } else {
568 /* use default value */
569 val1 = slist->uniques[i][j]->dflt;
570 }
571
572 /* second */
573 diter = lyd_val_uniq_find_leaf(slist->uniques[i][j], second);
574 if (diter) {
575 val2 = &((struct lyd_node_term *)diter)->value;
576 } else {
577 /* use default value */
578 val2 = slist->uniques[i][j]->dflt;
579 }
580
581 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
582 /* values differ or either one is not set */
583 break;
584 }
585 }
586 if (j && (j == LY_ARRAY_SIZE(slist->uniques[i]))) {
587 /* all unique leafs are the same in this set, create this nice error */
588 path1 = lyd_path(first, LYD_PATH_LOG, NULL, 0);
589 path2 = lyd_path(second, LYD_PATH_LOG, NULL, 0);
590
591 /* use buffer to rebuild the unique string */
592 uniq_str = malloc(1024);
593 uniq_str[0] = '\0';
594 ptr = uniq_str;
595 LY_ARRAY_FOR(slist->uniques[i], j) {
596 if (j) {
597 strcpy(ptr, " ");
598 ++ptr;
599 }
600 ptr = lysc_path_until((struct lysc_node *)slist->uniques[i][j], (struct lysc_node *)slist, LYSC_PATH_LOG,
601 ptr, 1024 - (ptr - uniq_str));
602 if (!ptr) {
603 /* path will be incomplete, whatever */
604 break;
605 }
606
607 ptr += strlen(ptr);
608 }
609 LOGVAL(ctx, LY_VLOG_LYD, second, LY_VCODE_NOUNIQ, uniq_str, path1, path2);
610
611 free(path1);
612 free(path2);
613 free(uniq_str);
614 return 1;
615 }
616
617 if (action > 0) {
618 /* done */
619 return 0;
620 }
621 }
622
623 return 0;
624}
625
Michal Vaskoa3881362020-01-21 15:57:35 +0100626static LY_ERR
Michal Vaskob1b5c262020-03-05 14:29:47 +0100627lyd_validate_unique(const struct lyd_node *first, const struct lysc_node *snode, struct lysc_node_leaf ***uniques)
Michal Vaskoa3881362020-01-21 15:57:35 +0100628{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100629 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +0100630 struct ly_set *set;
631 uint32_t i, j, n = 0;
632 LY_ERR ret = LY_SUCCESS;
633 uint32_t hash, u, usize = 0;
634 int dynamic;
635 const char *str;
636 struct hash_table **uniqtables = NULL;
637 struct lyd_value *val;
638 struct ly_ctx *ctx = snode->module->ctx;
639
640 assert(uniques);
641
642 /* get all list instances */
Michal Vasko9b368d32020-02-14 13:53:31 +0100643 set = ly_set_new();
644 LY_CHECK_ERR_RET(!set, LOGMEM(ctx), LY_EMEM);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100645 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100646 if (diter->schema == snode) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100647 ly_set_add(set, (void *)diter, LY_SET_OPT_USEASLIST);
Michal Vasko9b368d32020-02-14 13:53:31 +0100648 }
649 }
Michal Vasko14654712020-02-06 08:35:21 +0100650
651 if (set->count == 2) {
652 /* simple comparison */
653 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
654 /* instance duplication */
655 ret = LY_EVALID;
656 goto cleanup;
657 }
658 } else if (set->count > 2) {
659 /* use hashes for comparison */
660 /* first, allocate the table, the size depends on number of items in the set */
661 for (u = 31; u > 0; u--) {
662 usize = set->count << u;
663 usize = usize >> u;
664 if (usize == set->count) {
665 break;
666 }
667 }
668 LY_CHECK_ERR_GOTO(!u, LOGINT(ctx); ret = LY_EINT, cleanup);
669 u = 32 - u;
670 usize = 1 << u;
671
672 uniqtables = malloc(LY_ARRAY_SIZE(uniques) * sizeof *uniqtables);
673 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
674 n = LY_ARRAY_SIZE(uniques);
675 for (j = 0; j < n; j++) {
676 uniqtables[j] = lyht_new(usize, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(j + 1L), 0);
677 LY_CHECK_ERR_GOTO(!uniqtables[j], LOGMEM(ctx); ret = LY_EMEM, cleanup);
678 }
679
680 for (u = 0; u < set->count; u++) {
681 /* loop for unique - get the hash for the instances */
682 for (i = 0; i < n; i++) {
683 val = NULL;
684 for (j = hash = 0; j < LY_ARRAY_SIZE(uniques[i]); j++) {
685 diter = lyd_val_uniq_find_leaf(uniques[i][j], set->objs[u]);
686 if (diter) {
687 val = &((struct lyd_node_term *)diter)->value;
688 } else {
689 /* use default value */
690 val = uniques[i][j]->dflt;
691 }
692 if (!val) {
693 /* unique item not present nor has default value */
694 break;
695 }
696
697 /* get canonical string value */
698 str = val->realtype->plugin->print(val, LYD_JSON, json_print_get_prefix, NULL, &dynamic);
699 hash = dict_hash_multi(hash, str, strlen(str));
700 if (dynamic) {
701 free((char *)str);
702 }
703 }
704 if (!val) {
705 /* skip this list instance since its unique set is incomplete */
706 continue;
707 }
708
709 /* finish the hash value */
710 hash = dict_hash_multi(hash, NULL, 0);
711
712 /* insert into the hashtable */
713 ret = lyht_insert(uniqtables[i], &set->objs[u], hash, NULL);
714 if (ret == LY_EEXIST) {
715 /* instance duplication */
716 ret = LY_EVALID;
717 }
718 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
719 }
720 }
721 }
722
723cleanup:
724 ly_set_free(set, NULL);
725 for (j = 0; j < n; j++) {
726 if (!uniqtables[j]) {
727 /* failed when allocating uniquetables[j], following j are not allocated */
728 break;
729 }
730 lyht_free(uniqtables[j]);
731 }
732 free(uniqtables);
733
734 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +0100735}
736
737static LY_ERR
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100738lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lysc_node *sparent,
739 const struct lysc_module *mod, int val_opts)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100740{
Michal Vaskocde73ac2019-11-14 16:10:27 +0100741 const struct lysc_node *snode = NULL;
Michal Vaskoa3881362020-01-21 15:57:35 +0100742 struct lysc_node_list *slist;
Michal Vaskocde73ac2019-11-14 16:10:27 +0100743
Michal Vaskoa3881362020-01-21 15:57:35 +0100744 /* disabled nodes are skipped by lys_getnext */
745 while ((snode = lys_getnext(snode, sparent, mod, LYS_GETNEXT_WITHCHOICE | LYS_GETNEXT_WITHCASE))) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100746 if ((val_opts & LYD_VALOPT_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
747 continue;
748 }
749
Michal Vaskoa3881362020-01-21 15:57:35 +0100750 /* check min-elements and max-elements */
751 if (snode->nodetype & (LYS_LIST | LYS_LEAFLIST)) {
752 slist = (struct lysc_node_list *)snode;
753 if (slist->min || slist->max) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100754 LY_CHECK_RET(lyd_validate_minmax(first, snode, slist->min, slist->max));
Michal Vaskoa3881362020-01-21 15:57:35 +0100755 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100756
757 /* check generic mandatory existence */
758 } else if (snode->flags & LYS_MAND_TRUE) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100759 LY_CHECK_RET(lyd_validate_mandatory(first, snode));
Michal Vaskoa3881362020-01-21 15:57:35 +0100760 }
761
762 /* check unique */
763 if (snode->nodetype == LYS_LIST) {
764 slist = (struct lysc_node_list *)snode;
765 if (slist->uniques) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100766 LY_CHECK_RET(lyd_validate_unique(first, snode, slist->uniques));
Michal Vaskoa3881362020-01-21 15:57:35 +0100767 }
768 }
769
Michal Vaskoacd83e72020-02-04 14:12:01 +0100770 if (snode->nodetype & (LYS_CHOICE | LYS_CASE)) {
771 /* go recursively for schema-only nodes */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100772 LY_CHECK_RET(lyd_validate_siblings_schema_r(first, snode, mod, val_opts));
Michal Vaskoacd83e72020-02-04 14:12:01 +0100773 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100774 }
775
Michal Vaskoacd83e72020-02-04 14:12:01 +0100776 return LY_SUCCESS;
777}
778
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100779static void
780lyd_validate_obsolete(const struct lyd_node *node)
781{
782 const struct lysc_node *snode;
783
784 snode = node->schema;
785 do {
786 if (snode->flags & LYS_STATUS_OBSLT) {
787 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
788 break;
789 }
790
791 snode = snode->parent;
792 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
793}
794
Michal Vaskocc048b22020-03-27 15:52:38 +0100795static LY_ERR
796lyd_validate_must(const struct lyd_node *node)
797{
798 struct lyxp_set xp_set;
799 struct lysc_must *musts;
800 const struct lyd_node *tree;
801 uint32_t u;
802
803 switch (node->schema->nodetype) {
804 case LYS_CONTAINER:
805 musts = ((struct lysc_node_container *)node->schema)->musts;
806 break;
807 case LYS_LEAF:
808 musts = ((struct lysc_node_leaf *)node->schema)->musts;
809 break;
810 case LYS_LEAFLIST:
811 musts = ((struct lysc_node_leaflist *)node->schema)->musts;
812 break;
813 case LYS_LIST:
814 musts = ((struct lysc_node_list *)node->schema)->musts;
815 break;
816 case LYS_ANYXML:
817 case LYS_ANYDATA:
818 musts = ((struct lysc_node_anydata *)node->schema)->musts;
819 break;
820 case LYS_NOTIF:
821 musts = ((struct lysc_notif *)node->schema)->musts;
822 break;
823 case LYS_RPC:
824 case LYS_ACTION:
825 musts = ((struct lysc_action *)node->schema)->input.musts;
826 break;
827 default:
828 LOGINT(LYD_NODE_CTX(node));
829 return LY_EINT;
830 }
831
832 if (!musts) {
833 /* no must to evaluate */
834 return LY_SUCCESS;
835 }
836
837 /* find first top-level node */
838 for (tree = node; tree->parent; tree = (struct lyd_node *)tree->parent);
839 while (tree->prev->next) {
840 tree = tree->prev;
841 }
842
843 LY_ARRAY_FOR(musts, u) {
844 memset(&xp_set, 0, sizeof xp_set);
845
846 /* evaluate must */
847 LY_CHECK_RET(lyxp_eval(musts[u].cond, LYD_SCHEMA, musts[u].module, node, LYXP_NODE_ELEM, tree, &xp_set, LYXP_SCHEMA));
848
849 /* check the result */
850 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
851 if (!xp_set.val.bool) {
852 LOGVAL(LYD_NODE_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOMUST, musts[u].cond->expr);
853 return LY_EVALID;
854 }
855 }
856
857 return LY_SUCCESS;
858}
859
Michal Vaskob1b5c262020-03-05 14:29:47 +0100860LY_ERR
861lyd_validate_siblings_r(struct lyd_node *first, const struct lysc_node *sparent, const struct lys_module *mod,
862 int val_opts)
Michal Vaskoacd83e72020-02-04 14:12:01 +0100863{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100864 struct lyd_node *next, *node;
Michal Vaskoc193ce92020-03-06 11:04:48 +0100865 const struct lysc_node *snode;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100866
Michal Vasko14654712020-02-06 08:35:21 +0100867 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100868 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100869 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100870 /* all top-level data from this module checked */
871 break;
Michal Vaskof03ed032020-03-04 13:31:44 +0100872 }
873
Michal Vaskoa8c61722020-03-27 16:59:32 +0100874 /* opaque data */
875 if (!node->schema) {
876 LOGVAL(LYD_NODE_CTX(node), LY_VLOG_LYD, node, LYVE_DATA, "Opaque node \"%s\" found.",
877 ((struct lyd_node_opaq *)node)->name);
878 return LY_EVALID;
879 }
880
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100881 /* no state data */
Michal Vasko5b37a352020-03-06 13:38:33 +0100882 if ((val_opts & LYD_VALOPT_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vaskoa8c61722020-03-27 16:59:32 +0100883 LOGVAL(LYD_NODE_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INSTATE, node->schema->name);
Michal Vasko5b37a352020-03-06 13:38:33 +0100884 return LY_EVALID;
885 }
886
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100887 /* obsolete data */
888 lyd_validate_obsolete(node);
889
Michal Vaskoc193ce92020-03-06 11:04:48 +0100890 /* node's schema if-features */
891 if ((snode = lysc_node_is_disabled(node->schema, 1))) {
Michal Vaskoa8c61722020-03-27 16:59:32 +0100892 LOGVAL(LYD_NODE_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOIFF, snode->name);
Michal Vaskoc193ce92020-03-06 11:04:48 +0100893 return LY_EVALID;
894 }
895
Michal Vaskocc048b22020-03-27 15:52:38 +0100896 /* node's musts */
897 LY_CHECK_RET(lyd_validate_must(node));
898
Michal Vaskoa8c61722020-03-27 16:59:32 +0100899 /* node value including if-feature was checked by plugins */
Michal Vasko14654712020-02-06 08:35:21 +0100900 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100901
Michal Vasko14654712020-02-06 08:35:21 +0100902 /* validate schema-based restrictions */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100903 LY_CHECK_RET(lyd_validate_siblings_schema_r(first, sparent, mod ? mod->compiled : NULL, val_opts));
Michal Vasko14654712020-02-06 08:35:21 +0100904
Michal Vaskob1b5c262020-03-05 14:29:47 +0100905 LY_LIST_FOR(first, node) {
Michal Vasko14654712020-02-06 08:35:21 +0100906 /* validate all children recursively */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100907 LY_CHECK_RET(lyd_validate_siblings_r((struct lyd_node *)lyd_node_children(node), node->schema, NULL, val_opts));
Michal Vaskocde73ac2019-11-14 16:10:27 +0100908
Michal Vaskob1b5c262020-03-05 14:29:47 +0100909 /* set default for containers */
910 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
911 LY_LIST_FOR((struct lyd_node *)lyd_node_children(node), next) {
912 if (!(next->flags & LYD_DEFAULT)) {
913 break;
914 }
Michal Vaskoa3881362020-01-21 15:57:35 +0100915 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100916 if (!next) {
917 node->flags |= LYD_DEFAULT;
918 }
Michal Vasko9b368d32020-02-14 13:53:31 +0100919 }
920 }
921
922 return LY_SUCCESS;
923}
924
925LY_ERR
Michal Vaskob1b5c262020-03-05 14:29:47 +0100926lyd_validate_defaults_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent,
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100927 const struct lys_module *mod, struct ly_set *node_types, struct ly_set *node_when, int val_opts)
Michal Vasko9b368d32020-02-14 13:53:31 +0100928{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100929 LY_ERR ret;
Michal Vasko9b368d32020-02-14 13:53:31 +0100930 const struct lysc_node *iter = NULL;
931 struct lyd_node *node;
932 struct lyd_value **dflts;
933 size_t i;
934
Michal Vaskob1b5c262020-03-05 14:29:47 +0100935 assert(first && (parent || sparent || mod) && node_types && node_when);
Michal Vasko9b368d32020-02-14 13:53:31 +0100936
Michal Vaskob1b5c262020-03-05 14:29:47 +0100937 if (!sparent && parent) {
938 sparent = parent->schema;
939 }
940
941 while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100942 if ((val_opts & LYD_VALOPT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) {
943 continue;
944 }
945
Michal Vasko9b368d32020-02-14 13:53:31 +0100946 switch (iter->nodetype) {
947 case LYS_CHOICE:
Michal Vaskof03ed032020-03-04 13:31:44 +0100948 if (((struct lysc_node_choice *)iter)->dflt && !lys_getnext_data(NULL, *first, NULL, iter, NULL)) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100949 /* create default case data */
950 LY_CHECK_RET(lyd_validate_defaults_r(parent, first, (struct lysc_node *)((struct lysc_node_choice *)iter)->dflt,
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100951 NULL, node_types, node_when, val_opts));
Michal Vasko9b368d32020-02-14 13:53:31 +0100952 }
953 break;
954 case LYS_CONTAINER:
955 if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100956 /* create default NP container */
Michal Vasko9b368d32020-02-14 13:53:31 +0100957 LY_CHECK_RET(lyd_create_inner(iter, &node));
Michal Vaskob1b5c262020-03-05 14:29:47 +0100958 node->flags = LYD_DEFAULT;
959 lyd_insert_node(parent, first, node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100960
961 if (iter->when) {
962 /* remember to resolve when */
963 ly_set_add(node_when, node, LY_SET_OPT_USEASLIST);
964 }
Michal Vaskob1b5c262020-03-05 14:29:47 +0100965
966 /* create any default children */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100967 LY_CHECK_RET(lyd_validate_defaults_r(node, lyd_node_children_p(node), NULL, NULL, node_types, node_when, val_opts));
Michal Vasko9b368d32020-02-14 13:53:31 +0100968 }
969 break;
970 case LYS_LEAF:
971 if (((struct lysc_node_leaf *)iter)->dflt && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) {
972 /* create default leaf */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100973 ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node);
974 if (ret == LY_EINCOMPLETE) {
975 /* remember to resolve type */
976 ly_set_add(node_types, node, LY_SET_OPT_USEASLIST);
977 } else if (ret) {
978 return ret;
979 }
980 node->flags = LYD_DEFAULT;
981 lyd_insert_node(parent, first, node);
Michal Vasko9b368d32020-02-14 13:53:31 +0100982
983 if (iter->when) {
984 /* remember to resolve when */
985 ly_set_add(node_when, node, LY_SET_OPT_USEASLIST);
986 }
987 }
988 break;
989 case LYS_LEAFLIST:
990 if (((struct lysc_node_leaflist *)iter)->dflts && lyd_find_sibling_next2(*first, iter, NULL, 0, NULL)) {
991 /* create all default leaf-lists */
992 dflts = ((struct lysc_node_leaflist *)iter)->dflts;
993 LY_ARRAY_FOR(dflts, i) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100994 ret = lyd_create_term2(iter, dflts[i], &node);
995 if (ret == LY_EINCOMPLETE) {
996 /* remember to resolve type */
997 ly_set_add(node_types, node, LY_SET_OPT_USEASLIST);
998 } else if (ret) {
999 return ret;
1000 }
1001 node->flags = LYD_DEFAULT;
1002 lyd_insert_node(parent, first, node);
Michal Vasko9b368d32020-02-14 13:53:31 +01001003
1004 if (iter->when) {
1005 /* remember to resolve when */
1006 ly_set_add(node_when, node, LY_SET_OPT_USEASLIST);
1007 }
1008 }
1009 }
1010 break;
1011 default:
1012 /* without defaults */
1013 break;
1014 }
1015 }
1016
1017 return LY_SUCCESS;
1018}
1019
Michal Vaskob1b5c262020-03-05 14:29:47 +01001020static LY_ERR
1021_lyd_validate(struct lyd_node **tree, const struct lys_module **modules, int mod_count, const struct ly_ctx *ctx,
1022 int val_opts)
Michal Vaskof03ed032020-03-04 13:31:44 +01001023{
1024 LY_ERR ret = LY_SUCCESS;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001025 struct lyd_node *first, *next, *node, **first2;
1026 const struct lys_module *mod;
Michal Vasko9f96a052020-03-10 09:41:45 +01001027 const struct lyd_meta *meta;
1028 struct ly_set type_check = {0}, type_meta_check = {0}, when_check = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001029 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001030
Michal Vaskob1b5c262020-03-05 14:29:47 +01001031 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx || (modules && mod_count), LY_EINVAL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001032
Michal Vasko5b37a352020-03-06 13:38:33 +01001033 if (val_opts & ~LYD_VALOPT_MASK) {
1034 LOGERR(ctx, LY_EINVAL, "Some invalid flags passed to validation.");
1035 return LY_EINVAL;
1036 }
1037
Michal Vaskob1b5c262020-03-05 14:29:47 +01001038 next = *tree;
1039 while (1) {
1040 if (val_opts & LYD_VALOPT_DATA_ONLY) {
1041 mod = lyd_data_next_module(&next, &first);
1042 } else {
1043 mod = lyd_mod_next_module(next, modules, mod_count, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001044 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001045 if (!mod) {
1046 break;
1047 }
1048 if (first == *tree) {
1049 /* make sure first2 changes are carried to tree */
1050 first2 = tree;
1051 } else {
1052 first2 = &first;
1053 }
1054
1055 /* validate new top-level nodes of this module, autodelete */
1056 ret = lyd_validate_new(first2, NULL, mod);
1057 LY_CHECK_GOTO(ret, cleanup);
1058
1059 /* add all top-level defaults for this module */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001060 ret = lyd_validate_defaults_r(NULL, first2, NULL, mod, &type_check, &when_check, val_opts);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001061 LY_CHECK_GOTO(ret, cleanup);
1062
1063 /* process nested nodes */
1064 LY_LIST_FOR(*first2, first) {
1065 LYD_TREE_DFS_BEGIN(first, next, node) {
1066 /* skip added default nodes */
1067 if ((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001068 LY_LIST_FOR(node->meta, meta) {
1069 /* metadata type resolution */
1070 ly_set_add(&type_meta_check, (void *)meta, LY_SET_OPT_USEASLIST);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001071 }
1072
1073 if (node->schema->nodetype & LYD_NODE_TERM) {
1074 /* node type resolution */
1075 ly_set_add(&type_check, (void *)node, LY_SET_OPT_USEASLIST);
1076 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1077 /* new node validation, autodelete */
1078 ret = lyd_validate_new(lyd_node_children_p((struct lyd_node *)node), node->schema, NULL);
1079 LY_CHECK_GOTO(ret, cleanup);
1080
1081 /* add nested defaults */
1082 ret = lyd_validate_defaults_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, &type_check,
Michal Vaskoe75ecfd2020-03-06 14:12:28 +01001083 &when_check, val_opts);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001084 LY_CHECK_GOTO(ret, cleanup);
1085 }
1086
Michal Vasko1bf09392020-03-27 12:38:10 +01001087 if (!(node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && node->schema->when) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001088 /* when evaluation */
1089 ly_set_add(&when_check, (void *)node, LY_SET_OPT_USEASLIST);
1090 }
1091 }
1092
1093 LYD_TREE_DFS_END(first, next, node);
1094 }
1095 }
1096
1097 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vasko9f96a052020-03-10 09:41:45 +01001098 ret = lyd_validate_unres(tree, &when_check, &type_check, &type_meta_check, LYD_JSON, lydjson_resolve_prefix, NULL);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001099 LY_CHECK_GOTO(ret, cleanup);
1100
1101 /* perform final validation that assumes the data tree is final */
1102 ret = lyd_validate_siblings_r(*first2, NULL, mod, val_opts);
1103 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001104 }
1105
Michal Vaskof03ed032020-03-04 13:31:44 +01001106cleanup:
1107 ly_set_erase(&type_check, NULL);
Michal Vasko9f96a052020-03-10 09:41:45 +01001108 ly_set_erase(&type_meta_check, NULL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001109 ly_set_erase(&when_check, NULL);
1110 return ret;
1111}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001112
1113API LY_ERR
1114lyd_validate(struct lyd_node **tree, const struct ly_ctx *ctx, int val_opts)
1115{
1116 return _lyd_validate(tree, NULL, 0, ctx, val_opts);
1117}
1118
1119API LY_ERR
1120lyd_validate_modules(struct lyd_node **tree, const struct lys_module **modules, int mod_count, int val_opts)
1121{
1122 return _lyd_validate(tree, modules, mod_count, NULL, val_opts);
1123}