blob: 7ee6fdbebd681af5f7f3cd8e6332e01274c162ee [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
Radek Krejci535ea9f2020-05-29 16:01:05 +020022#include "common.h"
23#include "config.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,
Michal Vaskoc8a230d2020-08-14 12:17:10 +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;
129 int 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
Michal Vaskob1b5c262020-03-05 14:29:47 +0100159 /* there must have been some when conditions resolved */
160 } 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;
216 int fail = 0;
217
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 {
229 for (; first; first = first->next) {
230 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;
266 int found;
267
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,
414 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 *
566 * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique.
Michal Vasko14654712020-02-06 08:35:21 +0100567 */
568static int
569lyd_val_uniq_list_equal(void *val1_p, void *val2_p, int UNUSED(mod), void *cb_data)
570{
571 struct ly_ctx *ctx;
572 struct lysc_node_list *slist;
573 struct lyd_node *diter, *first, *second;
574 struct lyd_value *val1, *val2;
575 char *path1, *path2, *uniq_str, *ptr;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200576 LY_ARRAY_COUNT_TYPE u, v, action;
Michal Vasko14654712020-02-06 08:35:21 +0100577
578 assert(val1_p && val2_p);
579
580 first = *((struct lyd_node **)val1_p);
581 second = *((struct lyd_node **)val2_p);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200582 action = (LY_ARRAY_COUNT_TYPE)cb_data;
Michal Vasko14654712020-02-06 08:35:21 +0100583
584 assert(first && (first->schema->nodetype == LYS_LIST));
585 assert(second && (second->schema == first->schema));
586
587 ctx = first->schema->module->ctx;
588
589 slist = (struct lysc_node_list *)first->schema;
590
591 /* compare unique leaves */
592 if (action > 0) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200593 u = action - 1;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200594 if (u < LY_ARRAY_COUNT(slist->uniques)) {
Michal Vasko14654712020-02-06 08:35:21 +0100595 goto uniquecheck;
596 }
597 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200598 LY_ARRAY_FOR(slist->uniques, u) {
Michal Vasko14654712020-02-06 08:35:21 +0100599uniquecheck:
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200600 LY_ARRAY_FOR(slist->uniques[u], v) {
Michal Vasko14654712020-02-06 08:35:21 +0100601 /* first */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200602 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first);
Michal Vasko14654712020-02-06 08:35:21 +0100603 if (diter) {
604 val1 = &((struct lyd_node_term *)diter)->value;
605 } else {
606 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200607 val1 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100608 }
609
610 /* second */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200611 diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second);
Michal Vasko14654712020-02-06 08:35:21 +0100612 if (diter) {
613 val2 = &((struct lyd_node_term *)diter)->value;
614 } else {
615 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200616 val2 = slist->uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100617 }
618
619 if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) {
620 /* values differ or either one is not set */
621 break;
622 }
623 }
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200624 if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) {
Michal Vasko14654712020-02-06 08:35:21 +0100625 /* all unique leafs are the same in this set, create this nice error */
626 path1 = lyd_path(first, LYD_PATH_LOG, NULL, 0);
627 path2 = lyd_path(second, LYD_PATH_LOG, NULL, 0);
628
629 /* use buffer to rebuild the unique string */
630 uniq_str = malloc(1024);
631 uniq_str[0] = '\0';
632 ptr = uniq_str;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200633 LY_ARRAY_FOR(slist->uniques[u], v) {
634 if (v) {
Michal Vasko14654712020-02-06 08:35:21 +0100635 strcpy(ptr, " ");
636 ++ptr;
637 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200638 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 +0100639 ptr, 1024 - (ptr - uniq_str));
640 if (!ptr) {
641 /* path will be incomplete, whatever */
642 break;
643 }
644
645 ptr += strlen(ptr);
646 }
647 LOGVAL(ctx, LY_VLOG_LYD, second, LY_VCODE_NOUNIQ, uniq_str, path1, path2);
648
649 free(path1);
650 free(path2);
651 free(uniq_str);
652 return 1;
653 }
654
655 if (action > 0) {
656 /* done */
657 return 0;
658 }
659 }
660
661 return 0;
662}
663
Michal Vaskobb844672020-07-03 11:06:12 +0200664/**
665 * @brief Validate list unique leaves.
666 *
667 * @param[in] first First sibling to search in.
668 * @param[in] snode Schema node to validate.
669 * @param[in] uniques List unique arrays to validate.
670 * @return LY_ERR value.
671 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100672static LY_ERR
Michal Vaskobb844672020-07-03 11:06:12 +0200673lyd_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 +0100674{
Michal Vaskob1b5c262020-03-05 14:29:47 +0100675 const struct lyd_node *diter;
Michal Vasko14654712020-02-06 08:35:21 +0100676 struct ly_set *set;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200677 LY_ARRAY_COUNT_TYPE u, v, x = 0;
Michal Vasko14654712020-02-06 08:35:21 +0100678 LY_ERR ret = LY_SUCCESS;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200679 uint32_t hash, i, size = 0;
Michal Vasko14654712020-02-06 08:35:21 +0100680 int dynamic;
681 const char *str;
682 struct hash_table **uniqtables = NULL;
683 struct lyd_value *val;
684 struct ly_ctx *ctx = snode->module->ctx;
685
686 assert(uniques);
687
688 /* get all list instances */
Michal Vasko9b368d32020-02-14 13:53:31 +0100689 set = ly_set_new();
690 LY_CHECK_ERR_RET(!set, LOGMEM(ctx), LY_EMEM);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100691 LY_LIST_FOR(first, diter) {
Michal Vasko9b368d32020-02-14 13:53:31 +0100692 if (diter->schema == snode) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100693 ly_set_add(set, (void *)diter, LY_SET_OPT_USEASLIST);
Michal Vasko9b368d32020-02-14 13:53:31 +0100694 }
695 }
Michal Vasko14654712020-02-06 08:35:21 +0100696
697 if (set->count == 2) {
698 /* simple comparison */
699 if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) {
700 /* instance duplication */
701 ret = LY_EVALID;
702 goto cleanup;
703 }
704 } else if (set->count > 2) {
705 /* use hashes for comparison */
706 /* first, allocate the table, the size depends on number of items in the set */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200707 for (i = 31; i > 0; i--) {
708 size = set->count << i;
709 size = size >> i;
710 if (size == set->count) {
Michal Vasko14654712020-02-06 08:35:21 +0100711 break;
712 }
713 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200714 LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup);
715 i = 32 - i;
716 size = 1 << i;
Michal Vasko14654712020-02-06 08:35:21 +0100717
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200718 uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables);
Michal Vasko14654712020-02-06 08:35:21 +0100719 LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200720 x = LY_ARRAY_COUNT(uniques);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200721 for (v = 0; v < x; v++) {
722 uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(v + 1L), 0);
723 LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko14654712020-02-06 08:35:21 +0100724 }
725
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200726 for (i = 0; i < set->count; i++) {
Michal Vasko14654712020-02-06 08:35:21 +0100727 /* loop for unique - get the hash for the instances */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200728 for (u = 0; u < x; u++) {
Michal Vasko14654712020-02-06 08:35:21 +0100729 val = NULL;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200730 for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200731 diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]);
Michal Vasko14654712020-02-06 08:35:21 +0100732 if (diter) {
733 val = &((struct lyd_node_term *)diter)->value;
734 } else {
735 /* use default value */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200736 val = uniques[u][v]->dflt;
Michal Vasko14654712020-02-06 08:35:21 +0100737 }
738 if (!val) {
739 /* unique item not present nor has default value */
740 break;
741 }
742
743 /* get canonical string value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200744 str = val->realtype->plugin->print(val, LY_PREF_JSON, NULL, &dynamic);
Michal Vasko14654712020-02-06 08:35:21 +0100745 hash = dict_hash_multi(hash, str, strlen(str));
746 if (dynamic) {
747 free((char *)str);
748 }
749 }
750 if (!val) {
751 /* skip this list instance since its unique set is incomplete */
752 continue;
753 }
754
755 /* finish the hash value */
756 hash = dict_hash_multi(hash, NULL, 0);
757
758 /* insert into the hashtable */
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200759 ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL);
Michal Vasko14654712020-02-06 08:35:21 +0100760 if (ret == LY_EEXIST) {
761 /* instance duplication */
762 ret = LY_EVALID;
763 }
764 LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup);
765 }
766 }
767 }
768
769cleanup:
770 ly_set_free(set, NULL);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200771 for (v = 0; v < x; v++) {
772 if (!uniqtables[v]) {
Michal Vasko14654712020-02-06 08:35:21 +0100773 /* failed when allocating uniquetables[j], following j are not allocated */
774 break;
775 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200776 lyht_free(uniqtables[v]);
Michal Vasko14654712020-02-06 08:35:21 +0100777 }
778 free(uniqtables);
779
780 return ret;
Michal Vaskoa3881362020-01-21 15:57:35 +0100781}
782
Michal Vaskobb844672020-07-03 11:06:12 +0200783/**
784 * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes.
785 *
786 * @param[in] first First sibling to search in.
787 * @param[in] sparent Schema parent of the nodes to check.
788 * @param[in] mod Module of the nodes to check.
789 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
790 * @param[in] op Operation being validated, if any.
791 * @return LY_ERR value.
792 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100793static LY_ERR
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100794lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lysc_node *sparent,
Radek Krejci7931b192020-06-25 17:05:03 +0200795 const struct lysc_module *mod, int val_opts, LYD_VALIDATE_OP op)
Michal Vaskocde73ac2019-11-14 16:10:27 +0100796{
Michal Vaskocde73ac2019-11-14 16:10:27 +0100797 const struct lysc_node *snode = NULL;
Michal Vaskoa3881362020-01-21 15:57:35 +0100798 struct lysc_node_list *slist;
Michal Vaskod8958df2020-08-05 13:27:36 +0200799 struct lysc_node_leaflist *sllist;
Michal Vaskocb7526d2020-03-30 15:08:26 +0200800 int getnext_opts;
801
Radek Krejci7931b192020-06-25 17:05:03 +0200802 getnext_opts = LYS_GETNEXT_WITHCHOICE | LYS_GETNEXT_WITHCASE | (op == LYD_VALIDATE_OP_REPLY ? LYS_GETNEXT_OUTPUT : 0);
Michal Vaskocde73ac2019-11-14 16:10:27 +0100803
Michal Vaskoa3881362020-01-21 15:57:35 +0100804 /* disabled nodes are skipped by lys_getnext */
Michal Vaskocb7526d2020-03-30 15:08:26 +0200805 while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) {
Radek Krejci7931b192020-06-25 17:05:03 +0200806 if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) {
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100807 continue;
808 }
809
Michal Vaskoa3881362020-01-21 15:57:35 +0100810 /* check min-elements and max-elements */
Michal Vaskod8958df2020-08-05 13:27:36 +0200811 if (snode->nodetype == LYS_LIST) {
Michal Vaskoa3881362020-01-21 15:57:35 +0100812 slist = (struct lysc_node_list *)snode;
813 if (slist->min || slist->max) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100814 LY_CHECK_RET(lyd_validate_minmax(first, snode, slist->min, slist->max));
Michal Vaskoa3881362020-01-21 15:57:35 +0100815 }
Michal Vaskod8958df2020-08-05 13:27:36 +0200816 } else if (snode->nodetype == LYS_LEAFLIST) {
817 sllist = (struct lysc_node_leaflist *)snode;
818 if (sllist->min || sllist->max) {
819 LY_CHECK_RET(lyd_validate_minmax(first, snode, sllist->min, sllist->max));
820 }
Michal Vaskoacd83e72020-02-04 14:12:01 +0100821
822 /* check generic mandatory existence */
823 } else if (snode->flags & LYS_MAND_TRUE) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100824 LY_CHECK_RET(lyd_validate_mandatory(first, snode));
Michal Vaskoa3881362020-01-21 15:57:35 +0100825 }
826
827 /* check unique */
828 if (snode->nodetype == LYS_LIST) {
829 slist = (struct lysc_node_list *)snode;
830 if (slist->uniques) {
Michal Vaskobb844672020-07-03 11:06:12 +0200831 LY_CHECK_RET(lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques));
Michal Vaskoa3881362020-01-21 15:57:35 +0100832 }
833 }
834
Michal Vaskoacd83e72020-02-04 14:12:01 +0100835 if (snode->nodetype & (LYS_CHOICE | LYS_CASE)) {
836 /* go recursively for schema-only nodes */
Radek Krejci7931b192020-06-25 17:05:03 +0200837 LY_CHECK_RET(lyd_validate_siblings_schema_r(first, snode, mod, val_opts, op));
Michal Vaskoacd83e72020-02-04 14:12:01 +0100838 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100839 }
840
Michal Vaskoacd83e72020-02-04 14:12:01 +0100841 return LY_SUCCESS;
842}
843
Michal Vaskobb844672020-07-03 11:06:12 +0200844/**
845 * @brief Validate obsolete nodes, only warnings are printed.
846 *
847 * @param[in] node Node to check.
848 */
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100849static void
850lyd_validate_obsolete(const struct lyd_node *node)
851{
852 const struct lysc_node *snode;
853
854 snode = node->schema;
855 do {
856 if (snode->flags & LYS_STATUS_OBSLT) {
857 LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name);
858 break;
859 }
860
861 snode = snode->parent;
862 } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE)));
863}
864
Michal Vaskobb844672020-07-03 11:06:12 +0200865/**
866 * @brief Validate must conditions of a data node.
867 *
868 * @param[in] node Node to validate.
869 * @param[in] op Operation being validated, if any.
870 * @return LY_ERR value.
871 */
Michal Vaskocc048b22020-03-27 15:52:38 +0100872static LY_ERR
Radek Krejci7931b192020-06-25 17:05:03 +0200873lyd_validate_must(const struct lyd_node *node, LYD_VALIDATE_OP op)
Michal Vaskocc048b22020-03-27 15:52:38 +0100874{
875 struct lyxp_set xp_set;
876 struct lysc_must *musts;
877 const struct lyd_node *tree;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200878 LY_ARRAY_COUNT_TYPE u;
Michal Vaskocc048b22020-03-27 15:52:38 +0100879
880 switch (node->schema->nodetype) {
881 case LYS_CONTAINER:
882 musts = ((struct lysc_node_container *)node->schema)->musts;
883 break;
884 case LYS_LEAF:
885 musts = ((struct lysc_node_leaf *)node->schema)->musts;
886 break;
887 case LYS_LEAFLIST:
888 musts = ((struct lysc_node_leaflist *)node->schema)->musts;
889 break;
890 case LYS_LIST:
891 musts = ((struct lysc_node_list *)node->schema)->musts;
892 break;
893 case LYS_ANYXML:
894 case LYS_ANYDATA:
895 musts = ((struct lysc_node_anydata *)node->schema)->musts;
896 break;
897 case LYS_NOTIF:
898 musts = ((struct lysc_notif *)node->schema)->musts;
899 break;
900 case LYS_RPC:
901 case LYS_ACTION:
Radek Krejci7931b192020-06-25 17:05:03 +0200902 if (op == LYD_VALIDATE_OP_RPC) {
Michal Vaskocb7526d2020-03-30 15:08:26 +0200903 musts = ((struct lysc_action *)node->schema)->input.musts;
Radek Krejci7931b192020-06-25 17:05:03 +0200904 } else if (op == LYD_VALIDATE_OP_REPLY) {
Michal Vaskocb7526d2020-03-30 15:08:26 +0200905 musts = ((struct lysc_action *)node->schema)->output.musts;
906 } else {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200907 LOGINT(LYD_CTX(node));
Michal Vaskocb7526d2020-03-30 15:08:26 +0200908 return LY_EINT;
909 }
Michal Vaskocc048b22020-03-27 15:52:38 +0100910 break;
911 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200912 LOGINT(LYD_CTX(node));
Michal Vaskocc048b22020-03-27 15:52:38 +0100913 return LY_EINT;
914 }
915
916 if (!musts) {
917 /* no must to evaluate */
918 return LY_SUCCESS;
919 }
920
921 /* find first top-level node */
922 for (tree = node; tree->parent; tree = (struct lyd_node *)tree->parent);
923 while (tree->prev->next) {
924 tree = tree->prev;
925 }
926
927 LY_ARRAY_FOR(musts, u) {
928 memset(&xp_set, 0, sizeof xp_set);
929
930 /* evaluate must */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200931 LY_CHECK_RET(lyxp_eval(musts[u].cond, LY_PREF_SCHEMA, musts[u].module, node, LYXP_NODE_ELEM, tree, &xp_set,
932 LYXP_SCHEMA));
Michal Vaskocc048b22020-03-27 15:52:38 +0100933
934 /* check the result */
935 lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +0200936 if (!xp_set.val.bln) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200937 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOMUST, musts[u].cond->expr);
Michal Vaskocc048b22020-03-27 15:52:38 +0100938 return LY_EVALID;
939 }
940 }
941
942 return LY_SUCCESS;
943}
944
Michal Vaskob1b5c262020-03-05 14:29:47 +0100945LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +0200946lyd_validate_final_r(struct lyd_node *first, const struct lysc_node *sparent, const struct lys_module *mod, int val_opts,
947 LYD_VALIDATE_OP op)
Michal Vaskoacd83e72020-02-04 14:12:01 +0100948{
Radek Krejci7f769d72020-07-11 23:13:56 +0200949 struct lyd_node *next = NULL, *node;
Michal Vaskoc193ce92020-03-06 11:04:48 +0100950 const struct lysc_node *snode;
Michal Vaskoacd83e72020-02-04 14:12:01 +0100951
Michal Vasko14654712020-02-06 08:35:21 +0100952 /* validate all restrictions of nodes themselves */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100953 LY_LIST_FOR_SAFE(first, next, node) {
Michal Vaskoc193ce92020-03-06 11:04:48 +0100954 if (mod && (lyd_owner_module(node) != mod)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +0100955 /* all top-level data from this module checked */
956 break;
Michal Vaskof03ed032020-03-04 13:31:44 +0100957 }
958
Michal Vaskoa8c61722020-03-27 16:59:32 +0100959 /* opaque data */
960 if (!node->schema) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200961 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LYVE_DATA, "Opaque node \"%s\" found.",
Michal Vaskoa8c61722020-03-27 16:59:32 +0100962 ((struct lyd_node_opaq *)node)->name);
963 return LY_EVALID;
964 }
965
Michal Vaskocb7526d2020-03-30 15:08:26 +0200966 /* no state/input/output data */
Radek Krejci7931b192020-06-25 17:05:03 +0200967 if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200968 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "state", node->schema->name);
Michal Vaskocb7526d2020-03-30 15:08:26 +0200969 return LY_EVALID;
Radek Krejci7931b192020-06-25 17:05:03 +0200970 } else if ((op == LYD_VALIDATE_OP_RPC) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200971 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "output", node->schema->name);
Michal Vaskocb7526d2020-03-30 15:08:26 +0200972 return LY_EVALID;
Radek Krejci7931b192020-06-25 17:05:03 +0200973 } else if ((op == LYD_VALIDATE_OP_REPLY) && (node->schema->flags & LYS_CONFIG_W)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200974 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "input", node->schema->name);
Michal Vasko5b37a352020-03-06 13:38:33 +0100975 return LY_EVALID;
976 }
977
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100978 /* obsolete data */
979 lyd_validate_obsolete(node);
980
Michal Vaskoc193ce92020-03-06 11:04:48 +0100981 /* node's schema if-features */
982 if ((snode = lysc_node_is_disabled(node->schema, 1))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200983 LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOIFF, snode->name);
Michal Vaskoc193ce92020-03-06 11:04:48 +0100984 return LY_EVALID;
985 }
986
Michal Vaskocc048b22020-03-27 15:52:38 +0100987 /* node's musts */
Radek Krejci7931b192020-06-25 17:05:03 +0200988 LY_CHECK_RET(lyd_validate_must(node, op));
Michal Vaskocc048b22020-03-27 15:52:38 +0100989
Michal Vaskoa8c61722020-03-27 16:59:32 +0100990 /* node value including if-feature was checked by plugins */
Michal Vasko14654712020-02-06 08:35:21 +0100991 }
Michal Vaskocde73ac2019-11-14 16:10:27 +0100992
Michal Vasko14654712020-02-06 08:35:21 +0100993 /* validate schema-based restrictions */
Radek Krejci7931b192020-06-25 17:05:03 +0200994 LY_CHECK_RET(lyd_validate_siblings_schema_r(first, sparent, mod ? mod->compiled : NULL, val_opts, op));
Michal Vasko14654712020-02-06 08:35:21 +0100995
Michal Vaskob1b5c262020-03-05 14:29:47 +0100996 LY_LIST_FOR(first, node) {
Michal Vasko14654712020-02-06 08:35:21 +0100997 /* validate all children recursively */
Radek Krejci7931b192020-06-25 17:05:03 +0200998 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 +0100999
Michal Vaskob1b5c262020-03-05 14:29:47 +01001000 /* set default for containers */
1001 if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) {
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001002 LY_LIST_FOR(lyd_node_children(node, 0), next) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001003 if (!(next->flags & LYD_DEFAULT)) {
1004 break;
1005 }
Michal Vaskoa3881362020-01-21 15:57:35 +01001006 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001007 if (!next) {
1008 node->flags |= LYD_DEFAULT;
1009 }
Michal Vasko9b368d32020-02-14 13:53:31 +01001010 }
1011 }
1012
1013 return LY_SUCCESS;
1014}
1015
Radek Krejci7931b192020-06-25 17:05:03 +02001016/**
Michal Vaskobb844672020-07-03 11:06:12 +02001017 * @brief Validate the whole data subtree.
1018 *
1019 * @param[in] root Subtree root.
1020 * @param[in,out] type_check Set for unres node types.
1021 * @param[in,out] type_meta_check Set for unres metadata types.
1022 * @param[in,out] when_check Set for nodes with when conditions.
1023 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001024 * @param[in,out] diff Validation diff.
Michal Vaskobb844672020-07-03 11:06:12 +02001025 * @return LY_ERR value.
Radek Krejci7931b192020-06-25 17:05:03 +02001026 */
Michal Vaskob1b5c262020-03-05 14:29:47 +01001027static LY_ERR
Michal Vaskofea12c62020-03-30 11:00:15 +02001028lyd_validate_subtree(struct lyd_node *root, struct ly_set *type_check, struct ly_set *type_meta_check,
Michal Vasko8104fd42020-07-13 11:09:51 +02001029 struct ly_set *when_check, int val_opts, struct lyd_node **diff)
Michal Vaskofea12c62020-03-30 11:00:15 +02001030{
1031 const struct lyd_meta *meta;
Michal Vasko56daf732020-08-10 10:57:18 +02001032 struct lyd_node *node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001033
Michal Vasko56daf732020-08-10 10:57:18 +02001034 LYD_TREE_DFS_BEGIN(root, node) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001035 /* skip added default nodes */
1036 if ((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) {
1037 LY_LIST_FOR(node->meta, meta) {
1038 /* metadata type resolution */
1039 ly_set_add(type_meta_check, (void *)meta, LY_SET_OPT_USEASLIST);
1040 }
1041
1042 if (node->schema->nodetype & LYD_NODE_TERM) {
1043 /* node type resolution */
1044 ly_set_add(type_check, (void *)node, LY_SET_OPT_USEASLIST);
1045 } else if (node->schema->nodetype & LYD_NODE_INNER) {
1046 /* new node validation, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001047 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 +02001048
1049 /* add nested defaults */
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001050 LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, type_check,
1051 when_check, val_opts & LYD_VALIDATE_NO_STATE ? LYD_IMPLICIT_NO_STATE : 0,
1052 diff));
Michal Vaskofea12c62020-03-30 11:00:15 +02001053 }
1054
1055 if (!(node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && node->schema->when) {
1056 /* when evaluation */
1057 ly_set_add(when_check, (void *)node, LY_SET_OPT_USEASLIST);
1058 }
1059 }
1060
Michal Vasko56daf732020-08-10 10:57:18 +02001061 LYD_TREE_DFS_END(root, node);
Michal Vaskofea12c62020-03-30 11:00:15 +02001062 }
1063
1064 return LY_SUCCESS;
1065}
1066
Michal Vaskobb844672020-07-03 11:06:12 +02001067/**
1068 * @brief Validate data tree.
1069 *
1070 * @param[in,out] tree Data tree to validate, nodes may be autodeleted.
1071 * @param[in] modules Array of modules to validate, NULL for all modules.
1072 * @param[in] mod_count Count of @p modules.
1073 * @param[in] ly_ctx libyang context.
1074 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
Michal Vasko8104fd42020-07-13 11:09:51 +02001075 * @param[out] diff Generated validation diff, not generated if NULL.
Michal Vaskobb844672020-07-03 11:06:12 +02001076 * @return LY_ERR value.
1077 */
Michal Vaskofea12c62020-03-30 11:00:15 +02001078static LY_ERR
Michal Vasko3a41dff2020-07-15 14:30:28 +02001079lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, int val_opts,
Michal Vasko8104fd42020-07-13 11:09:51 +02001080 struct lyd_node **diff)
Michal Vaskof03ed032020-03-04 13:31:44 +01001081{
1082 LY_ERR ret = LY_SUCCESS;
Michal Vaskofea12c62020-03-30 11:00:15 +02001083 struct lyd_node *first, *next, **first2;
Michal Vaskob1b5c262020-03-05 14:29:47 +01001084 const struct lys_module *mod;
Michal Vasko9f96a052020-03-10 09:41:45 +01001085 struct ly_set type_check = {0}, type_meta_check = {0}, when_check = {0};
Michal Vaskob1b5c262020-03-05 14:29:47 +01001086 uint32_t i = 0;
Michal Vaskof03ed032020-03-04 13:31:44 +01001087
Michal Vasko26e80012020-07-08 10:55:46 +02001088 LY_CHECK_ARG_RET(NULL, tree, *tree || ctx || module, LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001089 if (diff) {
1090 *diff = NULL;
1091 }
Michal Vaskof03ed032020-03-04 13:31:44 +01001092
Michal Vaskob1b5c262020-03-05 14:29:47 +01001093 next = *tree;
1094 while (1) {
Radek Krejci7931b192020-06-25 17:05:03 +02001095 if (val_opts & LYD_VALIDATE_PRESENT) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001096 mod = lyd_data_next_module(&next, &first);
1097 } else {
Michal Vasko26e80012020-07-08 10:55:46 +02001098 mod = lyd_mod_next_module(next, module, ctx, &i, &first);
Michal Vaskof03ed032020-03-04 13:31:44 +01001099 }
Michal Vaskob1b5c262020-03-05 14:29:47 +01001100 if (!mod) {
1101 break;
1102 }
Michal Vasko7c4cf1e2020-06-22 10:04:30 +02001103 if (!first || (first == *tree)) {
Michal Vaskob1b5c262020-03-05 14:29:47 +01001104 /* make sure first2 changes are carried to tree */
1105 first2 = tree;
1106 } else {
1107 first2 = &first;
1108 }
1109
1110 /* validate new top-level nodes of this module, autodelete */
Michal Vasko8104fd42020-07-13 11:09:51 +02001111 ret = lyd_validate_new(first2, NULL, mod, diff);
1112 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001113
1114 /* add all top-level defaults for this module */
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001115 ret = lyd_new_implicit_r(NULL, first2, NULL, mod, &type_check, &when_check, val_opts & LYD_VALIDATE_NO_STATE
1116 ? LYD_IMPLICIT_NO_STATE : 0, diff);
Michal Vasko8104fd42020-07-13 11:09:51 +02001117 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001118
1119 /* process nested nodes */
1120 LY_LIST_FOR(*first2, first) {
Michal Vasko8104fd42020-07-13 11:09:51 +02001121 ret = lyd_validate_subtree(first, &type_check, &type_meta_check, &when_check, val_opts, diff);
1122 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001123 }
1124
1125 /* finish incompletely validated terminal values/attributes and when conditions */
Michal Vaskoc8a230d2020-08-14 12:17:10 +02001126 ret = lyd_validate_unres(tree, &when_check, &type_check, &type_meta_check, LY_PREF_JSON, NULL, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001127 LY_CHECK_GOTO(ret, cleanup);
1128
1129 /* perform final validation that assumes the data tree is final */
Michal Vasko8104fd42020-07-13 11:09:51 +02001130 ret = lyd_validate_final_r(*first2, NULL, mod, val_opts, 0);
1131 LY_CHECK_GOTO(ret, cleanup);
Michal Vaskof03ed032020-03-04 13:31:44 +01001132 }
1133
Michal Vaskof03ed032020-03-04 13:31:44 +01001134cleanup:
1135 ly_set_erase(&type_check, NULL);
Michal Vasko9f96a052020-03-10 09:41:45 +01001136 ly_set_erase(&type_meta_check, NULL);
Michal Vaskof03ed032020-03-04 13:31:44 +01001137 ly_set_erase(&when_check, NULL);
1138 return ret;
1139}
Michal Vaskob1b5c262020-03-05 14:29:47 +01001140
1141API LY_ERR
Michal Vasko3a41dff2020-07-15 14:30:28 +02001142lyd_validate_all(struct lyd_node **tree, const struct ly_ctx *ctx, int val_opts, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +01001143{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001144 return lyd_validate(tree, NULL, ctx, val_opts, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001145}
1146
1147API LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +02001148lyd_validate_module(struct lyd_node **tree, const struct lys_module *module, int val_opts, struct lyd_node **diff)
Michal Vaskob1b5c262020-03-05 14:29:47 +01001149{
Michal Vasko3a41dff2020-07-15 14:30:28 +02001150 return lyd_validate(tree, module, NULL, val_opts, diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001151}
Michal Vaskofea12c62020-03-30 11:00:15 +02001152
Michal Vaskobb844672020-07-03 11:06:12 +02001153/**
1154 * @brief Find nodes for merging an operation into data tree for validation.
1155 *
1156 * @param[in] op_tree Full operation data tree.
1157 * @param[in] op_node Operation node itself.
1158 * @param[in] tree Data tree to be merged into.
1159 * @param[out] op_subtree Operation subtree to merge.
1160 * @param[out] tree_sibling Data tree sibling to merge next to.
1161 */
Michal Vaskocb7526d2020-03-30 15:08:26 +02001162static void
Michal Vaskobb844672020-07-03 11:06:12 +02001163lyd_val_op_merge_find(const struct lyd_node *op_tree, const struct lyd_node *op_node, const struct lyd_node *tree,
1164 struct lyd_node **op_subtree, struct lyd_node **tree_sibling)
Michal Vaskofea12c62020-03-30 11:00:15 +02001165{
Michal Vaskocb7526d2020-03-30 15:08:26 +02001166 const struct lyd_node *tree_iter, *op_iter;
1167 struct lyd_node *match;
Michal Vaskofea12c62020-03-30 11:00:15 +02001168 uint32_t i, cur_depth, op_depth;
Michal Vaskofea12c62020-03-30 11:00:15 +02001169
Michal Vaskocb7526d2020-03-30 15:08:26 +02001170 /* learn op depth (top-level being depth 0) */
Michal Vaskofea12c62020-03-30 11:00:15 +02001171 op_depth = 0;
Michal Vaskobb844672020-07-03 11:06:12 +02001172 for (op_iter = op_node; op_iter != op_tree; op_iter = (struct lyd_node *)op_iter->parent) {
Michal Vaskofea12c62020-03-30 11:00:15 +02001173 ++op_depth;
1174 }
1175
1176 /* find where to merge op */
1177 tree_iter = tree;
1178 cur_depth = op_depth;
Michal Vaskobb844672020-07-03 11:06:12 +02001179 op_iter = op_node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001180 while (cur_depth) {
1181 /* find next op parent */
Michal Vaskobb844672020-07-03 11:06:12 +02001182 op_iter = op_node;
Michal Vaskofea12c62020-03-30 11:00:15 +02001183 for (i = 0; i < cur_depth; ++i) {
1184 op_iter = (struct lyd_node *)op_iter->parent;
1185 }
1186
1187 /* find op iter in tree */
1188 lyd_find_sibling_first(tree_iter, op_iter, &match);
1189 if (!match) {
1190 break;
1191 }
1192
1193 /* move tree_iter */
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001194 tree_iter = lyd_node_children(match, 0);
Michal Vaskofea12c62020-03-30 11:00:15 +02001195
1196 /* move depth */
1197 --cur_depth;
1198 }
1199
Michal Vaskobb844672020-07-03 11:06:12 +02001200 *op_subtree = (struct lyd_node *)op_iter;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001201 *tree_sibling = (struct lyd_node *)tree_iter;
1202}
1203
1204API LY_ERR
Michal Vasko8104fd42020-07-13 11:09:51 +02001205lyd_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 +02001206{
1207 LY_ERR ret;
Michal Vasko56daf732020-08-10 10:57:18 +02001208 struct lyd_node *tree_sibling, *op_subtree, *op_node, *op_parent;
Michal Vaskocb7526d2020-03-30 15:08:26 +02001209 struct ly_set type_check = {0}, type_meta_check = {0}, when_check = {0};
1210
1211 LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !tree || !tree->parent,
Radek Krejci7931b192020-06-25 17:05:03 +02001212 (op == LYD_VALIDATE_OP_NOTIF) || (op == LYD_VALIDATE_OP_RPC) || (op == LYD_VALIDATE_OP_REPLY), LY_EINVAL);
Michal Vasko8104fd42020-07-13 11:09:51 +02001213 if (diff) {
1214 *diff = NULL;
1215 }
Michal Vaskocb7526d2020-03-30 15:08:26 +02001216
1217 /* find the operation/notification */
Michal Vasko56daf732020-08-10 10:57:18 +02001218 LYD_TREE_DFS_BEGIN(op_tree, op_node) {
Radek Krejci7931b192020-06-25 17:05:03 +02001219 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 +02001220 break;
Radek Krejci7931b192020-06-25 17:05:03 +02001221 } else if ((op == LYD_VALIDATE_OP_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001222 break;
1223 }
Michal Vasko56daf732020-08-10 10:57:18 +02001224 LYD_TREE_DFS_END(op_tree, op_node);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001225 }
Radek Krejci7931b192020-06-25 17:05:03 +02001226 if (op == LYD_VALIDATE_OP_RPC || op == LYD_VALIDATE_OP_REPLY) {
1227 if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001228 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001229 return LY_EINVAL;
1230 }
1231 } else {
Radek Krejci7931b192020-06-25 17:05:03 +02001232 if (op_node->schema->nodetype != LYS_NOTIF) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001233 LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found.");
Michal Vaskocb7526d2020-03-30 15:08:26 +02001234 return LY_EINVAL;
1235 }
1236 }
1237
1238 /* move op_tree to top-level node */
1239 while (op_tree->parent) {
1240 op_tree = (struct lyd_node *)op_tree->parent;
1241 }
1242
1243 /* merge op_tree into tree */
Radek Krejci7931b192020-06-25 17:05:03 +02001244 lyd_val_op_merge_find(op_tree, op_node, tree, &op_subtree, &tree_sibling);
1245 op_parent = (struct lyd_node *)op_subtree->parent;
1246 lyd_unlink_tree(op_subtree);
1247 lyd_insert_node(NULL, (struct lyd_node **)&tree_sibling, op_subtree);
Michal Vaskofea12c62020-03-30 11:00:15 +02001248 if (!tree) {
Michal Vaskocb7526d2020-03-30 15:08:26 +02001249 tree = tree_sibling;
Michal Vaskofea12c62020-03-30 11:00:15 +02001250 }
1251
1252 /* prevalidate whole operation subtree */
Michal Vasko8104fd42020-07-13 11:09:51 +02001253 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 +02001254
1255 /* finish incompletely validated terminal values/attributes and when conditions on the full tree */
1256 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 +02001257 LY_PREF_JSON, NULL, diff), cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001258
1259 /* perform final validation of the operation/notification */
Radek Krejci7931b192020-06-25 17:05:03 +02001260 lyd_validate_obsolete(op_node);
1261 if (lysc_node_is_disabled(op_node->schema, 1)) {
Michal Vaskob7be7a82020-08-20 09:09:04 +02001262 LOGVAL(LYD_CTX(op_tree), LY_VLOG_LYD, op_node, LY_VCODE_NOIFF, op_node->schema->name);
Michal Vaskofea12c62020-03-30 11:00:15 +02001263 ret = LY_EVALID;
1264 goto cleanup;
1265 }
Radek Krejci7931b192020-06-25 17:05:03 +02001266 LY_CHECK_GOTO(ret = lyd_validate_must(op_node, op), cleanup);
Michal Vaskofea12c62020-03-30 11:00:15 +02001267
1268 /* final validation of all the descendants */
Radek Krejci7931b192020-06-25 17:05:03 +02001269 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 +02001270
1271cleanup:
1272 /* restore operation tree */
Radek Krejci7931b192020-06-25 17:05:03 +02001273 lyd_unlink_tree(op_subtree);
Michal Vaskocb7526d2020-03-30 15:08:26 +02001274 if (op_parent) {
Radek Krejci7931b192020-06-25 17:05:03 +02001275 lyd_insert_node(op_parent, NULL, op_subtree);
Michal Vaskofea12c62020-03-30 11:00:15 +02001276 }
1277
1278 ly_set_erase(&type_check, NULL);
1279 ly_set_erase(&type_meta_check, NULL);
1280 ly_set_erase(&when_check, NULL);
1281 return ret;
1282}