Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file validation.c |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief Validation |
| 5 | * |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 6 | * Copyright (c) 2019 - 2022 CESNET, z.s.p.o. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 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 | */ |
Christian Hopps | 32874e1 | 2021-05-01 09:43:54 -0400 | [diff] [blame] | 14 | #define _GNU_SOURCE /* asprintf, strdup */ |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 15 | |
Michal Vasko | fbed4ea | 2020-07-08 10:43:30 +0200 | [diff] [blame] | 16 | #include "validation.h" |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 17 | |
| 18 | #include <assert.h> |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 19 | #include <limits.h> |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 20 | #include <stdint.h> |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 23 | #include <string.h> |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 24 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 25 | #include "common.h" |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 26 | #include "compat.h" |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 27 | #include "diff.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 28 | #include "hash_table.h" |
| 29 | #include "log.h" |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 30 | #include "parser_data.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 31 | #include "parser_internal.h" |
Radek Krejci | 1b2eef8 | 2021-02-17 11:17:27 +0100 | [diff] [blame] | 32 | #include "plugins_exts.h" |
Radek Krejci | f1ca0ac | 2021-04-12 16:00:06 +0200 | [diff] [blame] | 33 | #include "plugins_exts/metadata.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 34 | #include "plugins_types.h" |
| 35 | #include "set.h" |
| 36 | #include "tree.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 37 | #include "tree_data.h" |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 38 | #include "tree_data_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 39 | #include "tree_schema.h" |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 40 | #include "tree_schema_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 41 | #include "xpath.h" |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 42 | |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 43 | LY_ERR |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 44 | lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff) |
| 45 | { |
| 46 | LY_ERR ret = LY_SUCCESS; |
| 47 | struct lyd_node *new_diff = NULL; |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 48 | const struct lyd_node *prev_inst; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 49 | char *key = NULL, *value = NULL, *position = NULL; |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 50 | size_t buflen = 0, bufused = 0; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 51 | uint32_t pos; |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 52 | |
| 53 | assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE)); |
| 54 | |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 55 | if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) { |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 56 | if (lysc_is_dup_inst_list(node->schema)) { |
| 57 | pos = lyd_list_pos(node); |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 58 | |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 59 | /* generate position meta */ |
| 60 | if (pos > 1) { |
| 61 | if (asprintf(&position, "%" PRIu32, pos - 1) == -1) { |
| 62 | LOGMEM(LYD_CTX(node)); |
| 63 | ret = LY_EMEM; |
| 64 | goto cleanup; |
| 65 | } |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 66 | } else { |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 67 | position = strdup(""); |
| 68 | LY_CHECK_ERR_GOTO(!position, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup); |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 69 | } |
| 70 | } else { |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 71 | if (node->prev->next && (node->prev->schema == node->schema)) { |
| 72 | prev_inst = node->prev; |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 73 | } else { |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 74 | /* first instance */ |
| 75 | prev_inst = NULL; |
| 76 | } |
| 77 | |
| 78 | if (node->schema->nodetype == LYS_LIST) { |
| 79 | /* generate key meta */ |
| 80 | if (prev_inst) { |
| 81 | LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup); |
| 82 | } else { |
| 83 | key = strdup(""); |
| 84 | LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup); |
| 85 | } |
| 86 | } else { |
| 87 | /* generate value meta */ |
| 88 | if (prev_inst) { |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 89 | value = strdup(lyd_get_value(prev_inst)); |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 90 | LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup); |
| 91 | } else { |
| 92 | value = strdup(""); |
| 93 | LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup); |
| 94 | } |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | } |
| 98 | |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 99 | /* create new diff tree */ |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 100 | LY_CHECK_GOTO(ret = lyd_diff_add(node, op, NULL, NULL, key, value, position, NULL, NULL, &new_diff), cleanup); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 101 | |
| 102 | /* merge into existing diff */ |
Michal Vasko | c0e58e8 | 2020-11-11 19:04:33 +0100 | [diff] [blame] | 103 | ret = lyd_diff_merge_all(diff, new_diff, 0); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 104 | |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 105 | cleanup: |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 106 | lyd_free_tree(new_diff); |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 107 | free(key); |
| 108 | free(value); |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 109 | free(position); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 110 | return ret; |
| 111 | } |
| 112 | |
| 113 | /** |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 114 | * @brief Evaluate all relevant "when" conditions of a node. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 115 | * |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 116 | * @param[in] tree Data tree. |
| 117 | * @param[in] node Node whose relevant when conditions will be evaluated. |
| 118 | * @param[in] schema Schema node of @p node. It may not be possible to use directly if @p node is opaque. |
Michal Vasko | 976ec43 | 2021-12-06 15:42:22 +0100 | [diff] [blame] | 119 | * @param[in] xpath_options Additional XPath options to use. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 120 | * @param[out] disabled First when that evaluated false, if any. |
| 121 | * @return LY_SUCCESS on success. |
| 122 | * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated. |
| 123 | * @return LY_ERR value on error. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 124 | */ |
| 125 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 126 | lyd_validate_node_when(const struct lyd_node *tree, const struct lyd_node *node, const struct lysc_node *schema, |
Michal Vasko | 976ec43 | 2021-12-06 15:42:22 +0100 | [diff] [blame] | 127 | uint32_t xpath_options, const struct lysc_when **disabled) |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 128 | { |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 129 | LY_ERR ret; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 130 | const struct lyd_node *ctx_node; |
| 131 | struct lyxp_set xp_set; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 132 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 133 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 134 | assert(!node->schema || (node->schema == schema)); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 135 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 136 | *disabled = NULL; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 137 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 138 | do { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 139 | const struct lysc_when *when; |
| 140 | struct lysc_when **when_list = lysc_node_when(schema); |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 141 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 142 | LY_ARRAY_FOR(when_list, u) { |
| 143 | when = when_list[u]; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 144 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 145 | /* get context node */ |
| 146 | if (when->context == schema) { |
| 147 | ctx_node = node; |
| 148 | } else { |
| 149 | assert((!when->context && !node->parent) || (when->context == node->parent->schema)); |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 150 | ctx_node = lyd_parent(node); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 151 | } |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 152 | |
| 153 | /* evaluate when */ |
| 154 | memset(&xp_set, 0, sizeof xp_set); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 155 | ret = lyxp_eval(LYD_CTX(node), when->cond, schema->module, LY_VALUE_SCHEMA_RESOLVED, when->prefixes, |
Michal Vasko | a3e92bc | 2022-07-29 14:56:23 +0200 | [diff] [blame] | 156 | ctx_node, ctx_node, tree, NULL, &xp_set, LYXP_SCHEMA | xpath_options); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 157 | lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN); |
| 158 | |
| 159 | /* return error or LY_EINCOMPLETE for dependant unresolved when */ |
| 160 | LY_CHECK_RET(ret); |
| 161 | |
| 162 | if (!xp_set.val.bln) { |
| 163 | /* false when */ |
| 164 | *disabled = when; |
| 165 | return LY_SUCCESS; |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 166 | } |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 167 | } |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 168 | |
| 169 | schema = schema->parent; |
| 170 | } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE))); |
| 171 | |
| 172 | return LY_SUCCESS; |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * @brief Evaluate when conditions of collected unres nodes. |
| 177 | * |
| 178 | * @param[in,out] tree Data tree, is updated if some nodes are autodeleted. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 179 | * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it. |
| 180 | * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be |
| 181 | * the first top-level sibling. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 182 | * @param[in] node_when Set with nodes with "when" conditions. |
Michal Vasko | 976ec43 | 2021-12-06 15:42:22 +0100 | [diff] [blame] | 183 | * @param[in] xpath_options Additional XPath options to use. |
Michal Vasko | 27d2b1b | 2021-07-19 15:20:02 +0200 | [diff] [blame] | 184 | * @param[in,out] node_types Set with nodes with unresolved types, remove any with false "when" parents. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 185 | * @param[in,out] diff Validation diff. |
| 186 | * @return LY_SUCCESS on success. |
| 187 | * @return LY_ERR value on error. |
| 188 | */ |
| 189 | static LY_ERR |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 190 | lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when, |
Michal Vasko | 976ec43 | 2021-12-06 15:42:22 +0100 | [diff] [blame] | 191 | uint32_t xpath_options, struct ly_set *node_types, struct lyd_node **diff) |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 192 | { |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 193 | LY_ERR rc, r; |
Michal Vasko | 27d2b1b | 2021-07-19 15:20:02 +0200 | [diff] [blame] | 194 | uint32_t i, idx; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 195 | const struct lysc_when *disabled; |
Michal Vasko | 27d2b1b | 2021-07-19 15:20:02 +0200 | [diff] [blame] | 196 | struct lyd_node *node = NULL, *elem; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 197 | |
| 198 | if (!node_when->count) { |
| 199 | return LY_SUCCESS; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 200 | } |
| 201 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 202 | i = node_when->count; |
| 203 | do { |
| 204 | --i; |
| 205 | node = node_when->dnodes[i]; |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 206 | LOG_LOCSET(node->schema, node, NULL, NULL); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 207 | |
| 208 | /* evaluate all when expressions that affect this node's existence */ |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 209 | r = lyd_validate_node_when(*tree, node, node->schema, xpath_options, &disabled); |
| 210 | if (!r) { |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 211 | if (disabled) { |
| 212 | /* when false */ |
| 213 | if (node->flags & LYD_WHEN_TRUE) { |
| 214 | /* autodelete */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 215 | lyd_del_move_root(tree, node, mod); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 216 | if (diff) { |
| 217 | /* add into diff */ |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 218 | LY_CHECK_GOTO(rc = lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff), error); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 219 | } |
Michal Vasko | 27d2b1b | 2021-07-19 15:20:02 +0200 | [diff] [blame] | 220 | |
| 221 | /* remove from node types set, if present */ |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 222 | if (node_types && node_types->count) { |
Michal Vasko | 36ce6b2 | 2021-07-26 09:19:21 +0200 | [diff] [blame] | 223 | LYD_TREE_DFS_BEGIN(node, elem) { |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 224 | /* only term nodes with a validation callback can be in node_types */ |
| 225 | if ((elem->schema->nodetype & LYD_NODE_TERM) && |
| 226 | ((struct lysc_node_leaf *)elem->schema)->type->plugin->validate && |
| 227 | ly_set_contains(node_types, elem, &idx)) { |
| 228 | LY_CHECK_GOTO(rc = ly_set_rm_index(node_types, idx, NULL), error); |
Michal Vasko | 36ce6b2 | 2021-07-26 09:19:21 +0200 | [diff] [blame] | 229 | } |
| 230 | LYD_TREE_DFS_END(node, elem); |
Michal Vasko | 27d2b1b | 2021-07-19 15:20:02 +0200 | [diff] [blame] | 231 | } |
Michal Vasko | 27d2b1b | 2021-07-19 15:20:02 +0200 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | /* free */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 235 | lyd_free_tree(node); |
| 236 | } else { |
| 237 | /* invalid data */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 238 | LOGVAL(LYD_CTX(node), LY_VCODE_NOWHEN, disabled->cond->expr); |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 239 | rc = LY_EVALID; |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 240 | goto error; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 241 | } |
| 242 | } else { |
| 243 | /* when true */ |
| 244 | node->flags |= LYD_WHEN_TRUE; |
| 245 | } |
| 246 | |
Michal Vasko | 413af59 | 2021-12-13 11:50:51 +0100 | [diff] [blame] | 247 | /* remove this node from the set keeping the order, its when was resolved */ |
| 248 | ly_set_rm_index_ordered(node_when, i, NULL); |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 249 | } else if (r != LY_EINCOMPLETE) { |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 250 | /* error */ |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 251 | rc = r; |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 252 | goto error; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 253 | } |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 254 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 255 | LOG_LOCBACK(1, 1, 0, 0); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 256 | } while (i); |
| 257 | |
| 258 | return LY_SUCCESS; |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 259 | |
| 260 | error: |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 261 | LOG_LOCBACK(1, 1, 0, 0); |
Michal Vasko | 6f0c5c7 | 2022-08-05 15:28:14 +0200 | [diff] [blame] | 262 | return rc; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 263 | } |
| 264 | |
Radek Krejci | 4f2e3e5 | 2021-03-30 14:20:28 +0200 | [diff] [blame] | 265 | LY_ERR |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 266 | lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, enum lyd_type data_type, struct ly_set *node_when, |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 267 | uint32_t when_xp_opts, struct ly_set *node_types, struct ly_set *meta_types, struct ly_set *ext_node, |
| 268 | struct ly_set *ext_val, uint32_t val_opts, struct lyd_node **diff) |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 269 | { |
| 270 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 271 | uint32_t i; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 272 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 273 | if (ext_val && ext_val->count) { |
| 274 | /* first validate parsed extension data */ |
| 275 | i = ext_val->count; |
| 276 | do { |
| 277 | --i; |
| 278 | |
| 279 | struct lyd_ctx_ext_val *ext_v = ext_val->objs[i]; |
| 280 | |
| 281 | /* validate extension data */ |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 282 | ret = ext_v->ext->def->plugin->validate(ext_v->ext, ext_v->sibling, *tree, data_type, val_opts, diff); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 283 | LY_CHECK_RET(ret); |
| 284 | |
| 285 | /* remove this item from the set */ |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 286 | ly_set_rm_index(ext_val, i, free); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 287 | } while (i); |
| 288 | } |
| 289 | |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 290 | if (ext_node && ext_node->count) { |
| 291 | /* validate data nodes with extension instances */ |
| 292 | i = ext_node->count; |
| 293 | do { |
| 294 | --i; |
| 295 | |
| 296 | struct lyd_ctx_ext_node *ext_n = ext_node->objs[i]; |
| 297 | |
| 298 | /* validate the node */ |
Michal Vasko | eba2311 | 2022-08-26 08:35:41 +0200 | [diff] [blame] | 299 | ret = ext_n->ext->def->plugin->node(ext_n->ext, ext_n->node, val_opts); |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 300 | LY_CHECK_RET(ret); |
| 301 | |
| 302 | /* remove this item from the set */ |
| 303 | ly_set_rm_index(ext_node, i, free); |
| 304 | } while (i); |
| 305 | } |
| 306 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 307 | if (node_when) { |
| 308 | /* evaluate all when conditions */ |
| 309 | uint32_t prev_count; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 310 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 311 | do { |
| 312 | prev_count = node_when->count; |
Michal Vasko | 976ec43 | 2021-12-06 15:42:22 +0100 | [diff] [blame] | 313 | LY_CHECK_RET(lyd_validate_unres_when(tree, mod, node_when, when_xp_opts, node_types, diff)); |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 314 | /* there must have been some when conditions resolved */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 315 | } while (prev_count > node_when->count); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 316 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 317 | /* there could have been no cyclic when dependencies, checked during compilation */ |
| 318 | assert(!node_when->count); |
| 319 | } |
| 320 | |
| 321 | if (node_types && node_types->count) { |
| 322 | /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 323 | i = node_types->count; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 324 | do { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 325 | --i; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 326 | |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 327 | struct lyd_node_term *node = node_types->objs[i]; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 328 | struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 329 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 330 | /* resolve the value of the node */ |
Michal Vasko | e0608fa | 2022-10-25 15:01:24 +0200 | [diff] [blame] | 331 | LOG_LOCSET(NULL, &node->node, NULL, NULL); |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 332 | ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, &node->node, *tree); |
Michal Vasko | e0608fa | 2022-10-25 15:01:24 +0200 | [diff] [blame] | 333 | LOG_LOCBACK(0, 1, 0, 0); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 334 | LY_CHECK_RET(ret); |
| 335 | |
| 336 | /* remove this node from the set */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 337 | ly_set_rm_index(node_types, i, NULL); |
| 338 | } while (i); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 339 | } |
| 340 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 341 | if (meta_types && meta_types->count) { |
| 342 | /* ... and metadata values */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 343 | i = meta_types->count; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 344 | do { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 345 | --i; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 346 | |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 347 | struct lyd_meta *meta = meta_types->objs[i]; |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 348 | struct lysc_type *type; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 349 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 350 | /* validate and store the value of the metadata */ |
Michal Vasko | fbd037c | 2022-11-08 10:34:20 +0100 | [diff] [blame] | 351 | lyplg_ext_get_storage(meta->annotation, LY_STMT_TYPE, sizeof type, (const void **)&type); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 352 | ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 353 | LY_CHECK_RET(ret); |
| 354 | |
| 355 | /* remove this attr from the set */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 356 | ly_set_rm_index(meta_types, i, NULL); |
| 357 | } while (i); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 358 | } |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 359 | |
| 360 | return ret; |
| 361 | } |
| 362 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 363 | /** |
| 364 | * @brief Validate instance duplication. |
| 365 | * |
| 366 | * @param[in] first First sibling to search in. |
| 367 | * @param[in] node Data node instance to check. |
| 368 | * @return LY_ERR value. |
| 369 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 370 | static LY_ERR |
| 371 | lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node) |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 372 | { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 373 | struct lyd_node **match_p; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 374 | ly_bool fail = 0; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 375 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 376 | assert(node->flags & LYD_NEW); |
| 377 | |
Michal Vasko | d6c18af | 2021-02-12 12:07:31 +0100 | [diff] [blame] | 378 | /* key-less list or non-configuration leaf-list */ |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 379 | if (lysc_is_dup_inst_list(node->schema)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 380 | /* duplicate instances allowed */ |
| 381 | return LY_SUCCESS; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 382 | } |
| 383 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 384 | /* find exactly the same next instance using hashes if possible */ |
| 385 | if (node->parent && node->parent->children_ht) { |
| 386 | if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) { |
| 387 | fail = 1; |
| 388 | } |
| 389 | } else { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 390 | for ( ; first; first = first->next) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 391 | if (first == node) { |
| 392 | continue; |
| 393 | } |
| 394 | |
| 395 | if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) { |
| 396 | if (first->schema == node->schema) { |
| 397 | fail = 1; |
| 398 | break; |
| 399 | } |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 400 | } else if (!lyd_compare_single(first, node, 0)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 401 | fail = 1; |
| 402 | break; |
| 403 | } |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | if (fail) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 408 | LOGVAL(node->schema->module->ctx, LY_VCODE_DUP, node->schema->name); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 409 | return LY_EVALID; |
| 410 | } |
| 411 | return LY_SUCCESS; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 412 | } |
| 413 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 414 | /** |
| 415 | * @brief Validate multiple case data existence with possible autodelete. |
| 416 | * |
| 417 | * @param[in,out] first First sibling to search in, is updated if needed. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 418 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 419 | * @param[in] choic Choice node whose cases to check. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 420 | * @param[in,out] diff Validation diff. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 421 | * @return LY_ERR value. |
| 422 | */ |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 423 | static LY_ERR |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 424 | lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic, |
| 425 | struct lyd_node **diff) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 426 | { |
| 427 | const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL; |
| 428 | struct lyd_node *match, *to_del; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 429 | ly_bool found; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 430 | |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 431 | LOG_LOCSET(&choic->node, NULL, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 432 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 433 | LY_LIST_FOR((struct lysc_node *)choic->cases, scase) { |
| 434 | found = 0; |
| 435 | iter = NULL; |
| 436 | match = NULL; |
| 437 | while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) { |
| 438 | if (match->flags & LYD_NEW) { |
| 439 | /* a new case data found, nothing more to look for */ |
| 440 | found = 2; |
| 441 | break; |
| 442 | } else { |
| 443 | /* and old case data found */ |
| 444 | if (found == 0) { |
| 445 | found = 1; |
| 446 | } |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | if (found == 1) { |
| 451 | /* there should not be 2 old cases */ |
| 452 | if (old_case) { |
| 453 | /* old data from 2 cases */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 454 | LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, old_case->name, scase->name); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 455 | LOG_LOCBACK(1, 0, 0, 0); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 456 | return LY_EVALID; |
| 457 | } |
| 458 | |
| 459 | /* remember an old existing case */ |
| 460 | old_case = scase; |
| 461 | } else if (found == 2) { |
| 462 | if (new_case) { |
| 463 | /* new data from 2 cases */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 464 | LOGVAL(choic->module->ctx, LY_VCODE_DUPCASE, new_case->name, scase->name); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 465 | LOG_LOCBACK(1, 0, 0, 0); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 466 | return LY_EVALID; |
| 467 | } |
| 468 | |
| 469 | /* remember a new existing case */ |
| 470 | new_case = scase; |
| 471 | } |
| 472 | } |
| 473 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 474 | LOG_LOCBACK(1, 0, 0, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 475 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 476 | if (old_case && new_case) { |
| 477 | /* auto-delete old case */ |
| 478 | iter = NULL; |
| 479 | match = NULL; |
| 480 | to_del = NULL; |
| 481 | while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) { |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 482 | lyd_del_move_root(first, to_del, mod); |
| 483 | |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 484 | /* free previous node */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 485 | lyd_free_tree(to_del); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 486 | if (diff) { |
| 487 | /* add into diff */ |
| 488 | LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff)); |
| 489 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 490 | to_del = match; |
| 491 | } |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 492 | lyd_del_move_root(first, to_del, mod); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 493 | lyd_free_tree(to_del); |
| 494 | } |
| 495 | |
| 496 | return LY_SUCCESS; |
| 497 | } |
| 498 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 499 | /** |
| 500 | * @brief Check whether a schema node can have some default values (true for NP containers as well). |
| 501 | * |
| 502 | * @param[in] schema Schema node to check. |
| 503 | * @return non-zero if yes, |
| 504 | * @return 0 otherwise. |
| 505 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 506 | static int |
| 507 | lyd_val_has_default(const struct lysc_node *schema) |
| 508 | { |
| 509 | switch (schema->nodetype) { |
| 510 | case LYS_LEAF: |
| 511 | if (((struct lysc_node_leaf *)schema)->dflt) { |
| 512 | return 1; |
| 513 | } |
| 514 | break; |
| 515 | case LYS_LEAFLIST: |
| 516 | if (((struct lysc_node_leaflist *)schema)->dflts) { |
| 517 | return 1; |
| 518 | } |
| 519 | break; |
| 520 | case LYS_CONTAINER: |
| 521 | if (!(schema->flags & LYS_PRESENCE)) { |
| 522 | return 1; |
| 523 | } |
| 524 | break; |
| 525 | default: |
| 526 | break; |
| 527 | } |
| 528 | |
| 529 | return 0; |
| 530 | } |
| 531 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 532 | /** |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 533 | * @brief Properly delete a node as part of auto-delete validation tasks. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 534 | * |
| 535 | * @param[in,out] first First sibling, is updated if needed. |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 536 | * @param[in] del Node instance to delete. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 537 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 538 | * @param[in,out] node Current iteration node, update it if it is deleted. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 539 | * @param[in,out] diff Validation diff. |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 540 | * @return 1 if @p node auto-deleted and updated to its next sibling. |
| 541 | * @return 0 if @p node was not auto-deleted. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 542 | */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 543 | static ly_bool |
| 544 | lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *del, const struct lys_module *mod, |
| 545 | struct lyd_node **node, struct lyd_node **diff) |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 546 | { |
| 547 | struct lyd_node *iter; |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 548 | ly_bool node_autodel = 0; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 549 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 550 | lyd_del_move_root(first, del, mod); |
| 551 | if (del == *node) { |
| 552 | *node = (*node)->next; |
| 553 | node_autodel = 1; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 554 | } |
| 555 | if (diff) { |
| 556 | /* add into diff */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 557 | if ((del->schema->nodetype == LYS_CONTAINER) && !(del->schema->flags & LYS_PRESENCE)) { |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 558 | /* we do not want to track NP container changes, but remember any removed children */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 559 | LY_LIST_FOR(lyd_child(del), iter) { |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 560 | lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff); |
| 561 | } |
| 562 | } else { |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 563 | lyd_val_diff_add(del, LYD_DIFF_OP_DELETE, diff); |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 564 | } |
| 565 | } |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 566 | lyd_free_tree(del); |
| 567 | |
| 568 | return node_autodel; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | /** |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 572 | * @brief Auto-delete leaf-list default instances to prevent validation errors. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 573 | * |
| 574 | * @param[in,out] first First sibling to search in, is updated if needed. |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 575 | * @param[in,out] node New data node instance to check, is updated if auto-deleted. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 576 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 577 | * @param[in,out] diff Validation diff. |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 578 | * @return 1 if @p node auto-deleted and updated to its next sibling. |
| 579 | * @return 0 if @p node was not auto-deleted. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 580 | */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 581 | static ly_bool |
| 582 | lyd_validate_autodel_leaflist_dflt(struct lyd_node **first, struct lyd_node **node, const struct lys_module *mod, |
| 583 | struct lyd_node **diff) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 584 | { |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 585 | const struct lysc_node *schema; |
| 586 | struct lyd_node *iter, *next; |
| 587 | ly_bool found = 0, node_autodel = 0; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 588 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 589 | assert((*node)->flags & LYD_NEW); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 590 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 591 | schema = (*node)->schema; |
| 592 | assert(schema->nodetype == LYS_LEAFLIST); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 593 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 594 | /* check whether there is any explicit instance */ |
| 595 | LYD_LIST_FOR_INST(*first, schema, iter) { |
| 596 | if (!(iter->flags & LYD_DEFAULT)) { |
| 597 | found = 1; |
| 598 | break; |
| 599 | } |
| 600 | } |
| 601 | if (!found) { |
| 602 | /* no explicit instance, keep defaults as they are */ |
| 603 | return 0; |
| 604 | } |
| 605 | |
| 606 | LYD_LIST_FOR_INST_SAFE(*first, schema, next, iter) { |
| 607 | if (iter->flags & LYD_DEFAULT) { |
| 608 | /* default instance found, remove it */ |
| 609 | if (lyd_validate_autodel_node_del(first, iter, mod, node, diff)) { |
| 610 | node_autodel = 1; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 611 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 612 | } |
| 613 | } |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 614 | |
| 615 | return node_autodel; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 616 | } |
| 617 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 618 | /** |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 619 | * @brief Auto-delete container or leaf default instances to prevent validation errors. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 620 | * |
| 621 | * @param[in,out] first First sibling to search in, is updated if needed. |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 622 | * @param[in,out] node New data node instance to check, is updated if auto-deleted. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 623 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 624 | * @param[in,out] diff Validation diff. |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 625 | * @return 1 if @p node auto-deleted and updated to its next sibling. |
| 626 | * @return 0 if @p node was not auto-deleted. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 627 | */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 628 | static ly_bool |
| 629 | lyd_validate_autodel_cont_leaf_dflt(struct lyd_node **first, struct lyd_node **node, const struct lys_module *mod, |
| 630 | struct lyd_node **diff) |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 631 | { |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 632 | const struct lysc_node *schema; |
| 633 | struct lyd_node *iter, *next; |
| 634 | ly_bool found = 0, node_autodel = 0; |
| 635 | |
| 636 | assert((*node)->flags & LYD_NEW); |
| 637 | |
| 638 | schema = (*node)->schema; |
| 639 | assert(schema->nodetype & (LYS_LEAF | LYS_CONTAINER)); |
| 640 | |
| 641 | /* check whether there is any explicit instance */ |
| 642 | LYD_LIST_FOR_INST(*first, schema, iter) { |
| 643 | if (!(iter->flags & LYD_DEFAULT)) { |
| 644 | found = 1; |
| 645 | break; |
| 646 | } |
| 647 | } |
| 648 | |
| 649 | if (found) { |
| 650 | /* remove all default instances */ |
| 651 | LYD_LIST_FOR_INST_SAFE(*first, schema, next, iter) { |
| 652 | if (iter->flags & LYD_DEFAULT) { |
| 653 | /* default instance, remove it */ |
| 654 | if (lyd_validate_autodel_node_del(first, iter, mod, node, diff)) { |
| 655 | node_autodel = 1; |
| 656 | } |
| 657 | } |
| 658 | } |
| 659 | } else { |
| 660 | /* remove a single old default instance, if any */ |
| 661 | LYD_LIST_FOR_INST(*first, schema, iter) { |
| 662 | if ((iter->flags & LYD_DEFAULT) && !(iter->flags & LYD_NEW)) { |
| 663 | /* old default instance, remove it */ |
| 664 | if (lyd_validate_autodel_node_del(first, iter, mod, node, diff)) { |
| 665 | node_autodel = 1; |
| 666 | } |
| 667 | break; |
| 668 | } |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | return node_autodel; |
| 673 | } |
| 674 | |
| 675 | /** |
| 676 | * @brief Auto-delete leftover default nodes of deleted cases (that have no existing explicit data). |
| 677 | * |
| 678 | * @param[in,out] first First sibling to search in, is updated if needed. |
| 679 | * @param[in,out] node Default data node instance to check. |
| 680 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
| 681 | * @param[in,out] diff Validation diff. |
| 682 | * @return 1 if @p node auto-deleted and updated to its next sibling. |
| 683 | * @return 0 if @p node was not auto-deleted. |
| 684 | */ |
| 685 | static ly_bool |
| 686 | lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node **node, const struct lys_module *mod, |
| 687 | struct lyd_node **diff) |
| 688 | { |
| 689 | const struct lysc_node *schema; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 690 | struct lysc_node_choice *choic; |
| 691 | struct lyd_node *iter = NULL; |
| 692 | const struct lysc_node *slast = NULL; |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 693 | ly_bool node_autodel = 0; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 694 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 695 | assert((*node)->flags & LYD_DEFAULT); |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 696 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 697 | schema = (*node)->schema; |
| 698 | |
| 699 | if (!schema->parent || (schema->parent->nodetype != LYS_CASE)) { |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 700 | /* the default node is not a descendant of a case */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 701 | return 0; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 702 | } |
| 703 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 704 | choic = (struct lysc_node_choice *)schema->parent->parent; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 705 | assert(choic->nodetype == LYS_CHOICE); |
| 706 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 707 | if (choic->dflt && (choic->dflt == (struct lysc_node_case *)schema->parent)) { |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 708 | /* data of a default case, keep them */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 709 | return 0; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | /* try to find an explicit node of the case */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 713 | while ((iter = lys_getnext_data(iter, *first, &slast, schema->parent, NULL))) { |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 714 | if (!(iter->flags & LYD_DEFAULT)) { |
| 715 | break; |
| 716 | } |
| 717 | } |
| 718 | |
| 719 | if (!iter) { |
| 720 | /* there are only default nodes of the case meaning it does not exist and neither should any default nodes |
| 721 | * of the case, remove this one default node */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 722 | if (lyd_validate_autodel_node_del(first, *node, mod, node, diff)) { |
| 723 | node_autodel = 1; |
| 724 | } |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 725 | } |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 726 | |
| 727 | return node_autodel; |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 728 | } |
| 729 | |
Michal Vasko | 17f7664 | 2021-08-03 17:01:30 +0200 | [diff] [blame] | 730 | /** |
| 731 | * @brief Validate new siblings in choices, recursively for nested choices. |
| 732 | * |
| 733 | * @param[in,out] first First sibling. |
| 734 | * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings. |
| 735 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
| 736 | * @param[in,out] diff Validation diff. |
| 737 | * @return LY_ERR value. |
| 738 | */ |
| 739 | static LY_ERR |
| 740 | lyd_validate_choice_r(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 741 | struct lyd_node **diff) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 742 | { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 743 | const struct lysc_node *snode = NULL; |
| 744 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 745 | while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) { |
| 746 | /* check case duplicites */ |
| 747 | if (snode->nodetype == LYS_CHOICE) { |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 748 | LY_CHECK_RET(lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff)); |
Michal Vasko | 17f7664 | 2021-08-03 17:01:30 +0200 | [diff] [blame] | 749 | |
| 750 | /* check for nested choice */ |
| 751 | LY_CHECK_RET(lyd_validate_choice_r(first, snode, mod, diff)); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 752 | } |
| 753 | } |
| 754 | |
Michal Vasko | 17f7664 | 2021-08-03 17:01:30 +0200 | [diff] [blame] | 755 | return LY_SUCCESS; |
| 756 | } |
| 757 | |
| 758 | LY_ERR |
| 759 | lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod, |
| 760 | struct lyd_node **diff) |
| 761 | { |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 762 | LY_ERR r; |
| 763 | struct lyd_node *node; |
| 764 | const struct lysc_node *last_dflt_schema = NULL; |
Michal Vasko | 17f7664 | 2021-08-03 17:01:30 +0200 | [diff] [blame] | 765 | |
| 766 | assert(first && (sparent || mod)); |
| 767 | |
| 768 | /* validate choices */ |
| 769 | LY_CHECK_RET(lyd_validate_choice_r(first, sparent, mod, diff)); |
| 770 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 771 | node = *first; |
| 772 | while (node) { |
Michal Vasko | 6a6e308 | 2022-05-10 10:32:38 +0200 | [diff] [blame] | 773 | if (!node->schema || (mod && (lyd_owner_module(node) != mod))) { |
| 774 | /* opaque node or all top-level data from this module checked */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 775 | break; |
| 776 | } |
| 777 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 778 | if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) { |
| 779 | /* check only new and default nodes */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 780 | node = node->next; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 781 | continue; |
| 782 | } |
| 783 | |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 784 | if (lyd_val_has_default(node->schema) && (node->schema != last_dflt_schema) && (node->flags & LYD_NEW)) { |
| 785 | /* remove old default(s) of the new node if an explicit instance exists */ |
| 786 | last_dflt_schema = node->schema; |
| 787 | if (node->schema->nodetype == LYS_LEAFLIST) { |
| 788 | if (lyd_validate_autodel_leaflist_dflt(first, &node, mod, diff)) { |
| 789 | continue; |
| 790 | } |
| 791 | } else { |
| 792 | if (lyd_validate_autodel_cont_leaf_dflt(first, &node, mod, diff)) { |
| 793 | continue; |
| 794 | } |
| 795 | } |
| 796 | } |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 797 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 798 | if (node->flags & LYD_NEW) { |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 799 | /* then check new node instance duplicities */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 800 | LOG_LOCSET(NULL, node, NULL, NULL); |
| 801 | r = lyd_validate_duplicates(*first, node); |
| 802 | LOG_LOCBACK(0, 1, 0, 0); |
| 803 | LY_CHECK_RET(r); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 804 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 805 | /* this node is valid */ |
| 806 | node->flags &= ~LYD_NEW; |
| 807 | } |
| 808 | |
| 809 | if (node->flags & LYD_DEFAULT) { |
| 810 | /* remove leftover default nodes from a no-longer existing case */ |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 811 | if (lyd_validate_autodel_case_dflt(first, &node, mod, diff)) { |
| 812 | continue; |
| 813 | } |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 814 | } |
Michal Vasko | 4226621 | 2022-12-01 08:33:11 +0100 | [diff] [blame] | 815 | |
| 816 | /* next iter */ |
| 817 | node = node->next; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | return LY_SUCCESS; |
| 821 | } |
| 822 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 823 | /** |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 824 | * @brief Evaluate any "when" conditions of a non-existent data node with existing parent. |
| 825 | * |
| 826 | * @param[in] first First data sibling of the non-existing node. |
| 827 | * @param[in] parent Data parent of the non-existing node. |
| 828 | * @param[in] snode Schema node of the non-existing node. |
| 829 | * @param[out] disabled First when that evaluated false, if any. |
| 830 | * @return LY_ERR value. |
| 831 | */ |
| 832 | static LY_ERR |
| 833 | lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode, |
| 834 | const struct lysc_when **disabled) |
| 835 | { |
| 836 | LY_ERR ret = LY_SUCCESS; |
| 837 | struct lyd_node *tree, *dummy = NULL; |
Michal Vasko | a27245c | 2022-05-02 09:01:35 +0200 | [diff] [blame] | 838 | uint32_t xp_opts; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 839 | |
| 840 | /* find root */ |
| 841 | if (parent) { |
| 842 | tree = (struct lyd_node *)parent; |
| 843 | while (tree->parent) { |
| 844 | tree = lyd_parent(tree); |
| 845 | } |
| 846 | tree = lyd_first_sibling(tree); |
| 847 | } else { |
Michal Vasko | bd99b5e | 2022-04-29 11:15:47 +0200 | [diff] [blame] | 848 | /* is the first sibling from the same module, but may not be the actual first */ |
| 849 | tree = lyd_first_sibling(first); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 850 | } |
| 851 | |
| 852 | /* create dummy opaque node */ |
Michal Vasko | 0ab974d | 2021-02-24 13:18:26 +0100 | [diff] [blame] | 853 | ret = lyd_new_opaq((struct lyd_node *)parent, snode->module->ctx, snode->name, NULL, NULL, snode->module->name, &dummy); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 854 | LY_CHECK_GOTO(ret, cleanup); |
| 855 | |
| 856 | /* connect it if needed */ |
| 857 | if (!parent) { |
| 858 | if (first) { |
| 859 | lyd_insert_sibling((struct lyd_node *)first, dummy, &tree); |
| 860 | } else { |
| 861 | assert(!tree); |
| 862 | tree = dummy; |
| 863 | } |
| 864 | } |
| 865 | |
Michal Vasko | a27245c | 2022-05-02 09:01:35 +0200 | [diff] [blame] | 866 | /* explicitly specified accesible tree */ |
| 867 | if (snode->flags & LYS_CONFIG_W) { |
| 868 | xp_opts = LYXP_ACCESS_TREE_CONFIG; |
| 869 | } else { |
| 870 | xp_opts = LYXP_ACCESS_TREE_ALL; |
| 871 | } |
| 872 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 873 | /* evaluate all when */ |
Michal Vasko | a27245c | 2022-05-02 09:01:35 +0200 | [diff] [blame] | 874 | ret = lyd_validate_node_when(tree, dummy, snode, xp_opts, disabled); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 875 | if (ret == LY_EINCOMPLETE) { |
| 876 | /* all other when must be resolved by now */ |
| 877 | LOGINT(snode->module->ctx); |
| 878 | ret = LY_EINT; |
| 879 | goto cleanup; |
| 880 | } else if (ret) { |
| 881 | /* error */ |
| 882 | goto cleanup; |
| 883 | } |
| 884 | |
| 885 | cleanup: |
| 886 | lyd_free_tree(dummy); |
| 887 | return ret; |
| 888 | } |
| 889 | |
| 890 | /** |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 891 | * @brief Validate mandatory node existence. |
| 892 | * |
| 893 | * @param[in] first First sibling to search in. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 894 | * @param[in] parent Data parent. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 895 | * @param[in] snode Schema node to validate. |
| 896 | * @return LY_ERR value. |
| 897 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 898 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 899 | lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode) |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 900 | { |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 901 | const struct lysc_when *disabled; |
| 902 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 903 | if (snode->nodetype == LYS_CHOICE) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 904 | /* some data of a choice case exist */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 905 | if (lys_getnext_data(NULL, first, NULL, snode, NULL)) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 906 | return LY_SUCCESS; |
| 907 | } |
| 908 | } else { |
| 909 | assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY)); |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 910 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 911 | if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 912 | /* data instance found */ |
| 913 | return LY_SUCCESS; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 914 | } |
| 915 | } |
| 916 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 917 | disabled = NULL; |
| 918 | if (lysc_has_when(snode)) { |
| 919 | /* if there are any when conditions, they must be true for a validation error */ |
| 920 | LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled)); |
| 921 | } |
| 922 | |
| 923 | if (!disabled) { |
| 924 | /* node instance not found */ |
Michal Vasko | 538b895 | 2021-02-17 11:27:26 +0100 | [diff] [blame] | 925 | if (snode->nodetype == LYS_CHOICE) { |
Michal Vasko | e9391c7 | 2021-10-05 10:04:56 +0200 | [diff] [blame] | 926 | LOGVAL_APPTAG(snode->module->ctx, "missing-choice", LY_VCODE_NOMAND_CHOIC, snode->name); |
Michal Vasko | 538b895 | 2021-02-17 11:27:26 +0100 | [diff] [blame] | 927 | } else { |
| 928 | LOGVAL(snode->module->ctx, LY_VCODE_NOMAND, snode->name); |
| 929 | } |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 930 | return LY_EVALID; |
| 931 | } |
| 932 | |
| 933 | return LY_SUCCESS; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 934 | } |
| 935 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 936 | /** |
| 937 | * @brief Validate min/max-elements constraints, if any. |
| 938 | * |
| 939 | * @param[in] first First sibling to search in. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 940 | * @param[in] parent Data parent. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 941 | * @param[in] snode Schema node to validate. |
| 942 | * @param[in] min Minimum number of elements, 0 for no restriction. |
| 943 | * @param[in] max Max number of elements, 0 for no restriction. |
| 944 | * @return LY_ERR value. |
| 945 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 946 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 947 | lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode, |
| 948 | uint32_t min, uint32_t max) |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 949 | { |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 950 | uint32_t count = 0; |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 951 | struct lyd_node *iter; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 952 | const struct lysc_when *disabled; |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 953 | ly_bool invalid_instance = 0; |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 954 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 955 | assert(min || max); |
| 956 | |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 957 | LYD_LIST_FOR_INST(first, snode, iter) { |
| 958 | ++count; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 959 | |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 960 | if (min && (count == min)) { |
| 961 | /* satisfied */ |
| 962 | min = 0; |
| 963 | if (!max) { |
| 964 | /* nothing more to check */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 965 | break; |
| 966 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 967 | } |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 968 | if (max && (count > max)) { |
| 969 | /* not satisifed */ |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 970 | LOG_LOCSET(NULL, iter, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 971 | invalid_instance = 1; |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 972 | break; |
| 973 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 974 | } |
| 975 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 976 | if (min) { |
| 977 | assert(count < min); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 978 | |
| 979 | disabled = NULL; |
| 980 | if (lysc_has_when(snode)) { |
| 981 | /* if there are any when conditions, they must be true for a validation error */ |
| 982 | LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled)); |
| 983 | } |
| 984 | |
| 985 | if (!disabled) { |
Michal Vasko | e9391c7 | 2021-10-05 10:04:56 +0200 | [diff] [blame] | 986 | LOGVAL_APPTAG(snode->module->ctx, "too-few-elements", LY_VCODE_NOMIN, snode->name); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 987 | goto failure; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 988 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 989 | } else if (max && (count > max)) { |
Michal Vasko | e9391c7 | 2021-10-05 10:04:56 +0200 | [diff] [blame] | 990 | LOGVAL_APPTAG(snode->module->ctx, "too-many-elements", LY_VCODE_NOMAX, snode->name); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 991 | goto failure; |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 992 | } |
| 993 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 994 | return LY_SUCCESS; |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 995 | |
| 996 | failure: |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 997 | LOG_LOCBACK(0, invalid_instance, 0, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 998 | return LY_EVALID; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 999 | } |
| 1000 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1001 | /** |
| 1002 | * @brief Find node referenced by a list unique statement. |
| 1003 | * |
| 1004 | * @param[in] uniq_leaf Unique leaf to find. |
| 1005 | * @param[in] list List instance to use for the search. |
| 1006 | * @return Found leaf, |
| 1007 | * @return NULL if no leaf found. |
| 1008 | */ |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1009 | static struct lyd_node * |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1010 | lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list) |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1011 | { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1012 | struct lyd_node *node; |
| 1013 | const struct lysc_node *iter; |
| 1014 | size_t depth = 0, i; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1015 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1016 | /* get leaf depth */ |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 1017 | for (iter = &uniq_leaf->node; iter && (iter != list->schema); iter = lysc_data_parent(iter)) { |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 1018 | ++depth; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1019 | } |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1020 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1021 | node = (struct lyd_node *)list; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1022 | while (node && depth) { |
| 1023 | /* find schema node with this depth */ |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 1024 | for (i = depth - 1, iter = &uniq_leaf->node; i; iter = lysc_data_parent(iter)) { |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 1025 | --i; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1026 | } |
| 1027 | |
| 1028 | /* find iter instance in children */ |
| 1029 | assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF)); |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 1030 | lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1031 | --depth; |
| 1032 | } |
| 1033 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1034 | return node; |
| 1035 | } |
| 1036 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1037 | /** |
| 1038 | * @brief Callback for comparing 2 list unique leaf values. |
| 1039 | * |
Michal Vasko | 62524a9 | 2021-02-26 10:08:50 +0100 | [diff] [blame] | 1040 | * Implementation of ::lyht_value_equal_cb. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1041 | * |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1042 | * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique. |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1043 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1044 | static ly_bool |
| 1045 | lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data) |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1046 | { |
| 1047 | struct ly_ctx *ctx; |
| 1048 | struct lysc_node_list *slist; |
| 1049 | struct lyd_node *diter, *first, *second; |
| 1050 | struct lyd_value *val1, *val2; |
| 1051 | char *path1, *path2, *uniq_str, *ptr; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1052 | LY_ARRAY_COUNT_TYPE u, v, action; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1053 | |
| 1054 | assert(val1_p && val2_p); |
| 1055 | |
| 1056 | first = *((struct lyd_node **)val1_p); |
| 1057 | second = *((struct lyd_node **)val2_p); |
Michal Vasko | 41e630c | 2021-07-23 12:47:18 +0200 | [diff] [blame] | 1058 | action = (uintptr_t)cb_data; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1059 | |
| 1060 | assert(first && (first->schema->nodetype == LYS_LIST)); |
| 1061 | assert(second && (second->schema == first->schema)); |
| 1062 | |
| 1063 | ctx = first->schema->module->ctx; |
| 1064 | |
| 1065 | slist = (struct lysc_node_list *)first->schema; |
| 1066 | |
| 1067 | /* compare unique leaves */ |
| 1068 | if (action > 0) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1069 | u = action - 1; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1070 | if (u < LY_ARRAY_COUNT(slist->uniques)) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1071 | goto uniquecheck; |
| 1072 | } |
| 1073 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1074 | LY_ARRAY_FOR(slist->uniques, u) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1075 | uniquecheck: |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1076 | LY_ARRAY_FOR(slist->uniques[u], v) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1077 | /* first */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1078 | diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1079 | if (diter) { |
| 1080 | val1 = &((struct lyd_node_term *)diter)->value; |
| 1081 | } else { |
| 1082 | /* use default value */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1083 | val1 = slist->uniques[u][v]->dflt; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1084 | } |
| 1085 | |
| 1086 | /* second */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1087 | diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1088 | if (diter) { |
| 1089 | val2 = &((struct lyd_node_term *)diter)->value; |
| 1090 | } else { |
| 1091 | /* use default value */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1092 | val2 = slist->uniques[u][v]->dflt; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) { |
| 1096 | /* values differ or either one is not set */ |
| 1097 | break; |
| 1098 | } |
| 1099 | } |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1100 | if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1101 | /* all unique leafs are the same in this set, create this nice error */ |
Radek Krejci | 635d2b8 | 2021-01-04 11:26:51 +0100 | [diff] [blame] | 1102 | path1 = lyd_path(first, LYD_PATH_STD, NULL, 0); |
| 1103 | path2 = lyd_path(second, LYD_PATH_STD, NULL, 0); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1104 | |
| 1105 | /* use buffer to rebuild the unique string */ |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1106 | #define UNIQ_BUF_SIZE 1024 |
| 1107 | uniq_str = malloc(UNIQ_BUF_SIZE); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1108 | uniq_str[0] = '\0'; |
| 1109 | ptr = uniq_str; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1110 | LY_ARRAY_FOR(slist->uniques[u], v) { |
| 1111 | if (v) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1112 | strcpy(ptr, " "); |
| 1113 | ++ptr; |
| 1114 | } |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 1115 | ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], &slist->node, LYSC_PATH_LOG, |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1116 | ptr, UNIQ_BUF_SIZE - (ptr - uniq_str)); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1117 | if (!ptr) { |
| 1118 | /* path will be incomplete, whatever */ |
| 1119 | break; |
| 1120 | } |
| 1121 | |
| 1122 | ptr += strlen(ptr); |
| 1123 | } |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1124 | LOG_LOCSET(NULL, second, NULL, NULL); |
Michal Vasko | e9391c7 | 2021-10-05 10:04:56 +0200 | [diff] [blame] | 1125 | LOGVAL_APPTAG(ctx, "data-not-unique", LY_VCODE_NOUNIQ, uniq_str, path1, path2); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1126 | LOG_LOCBACK(0, 1, 0, 0); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1127 | |
| 1128 | free(path1); |
| 1129 | free(path2); |
| 1130 | free(uniq_str); |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1131 | #undef UNIQ_BUF_SIZE |
| 1132 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1133 | return 1; |
| 1134 | } |
| 1135 | |
| 1136 | if (action > 0) { |
| 1137 | /* done */ |
| 1138 | return 0; |
| 1139 | } |
| 1140 | } |
| 1141 | |
| 1142 | return 0; |
| 1143 | } |
| 1144 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1145 | /** |
| 1146 | * @brief Validate list unique leaves. |
| 1147 | * |
| 1148 | * @param[in] first First sibling to search in. |
| 1149 | * @param[in] snode Schema node to validate. |
| 1150 | * @param[in] uniques List unique arrays to validate. |
| 1151 | * @return LY_ERR value. |
| 1152 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1153 | static LY_ERR |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1154 | lyd_validate_unique(const struct lyd_node *first, const struct lysc_node *snode, const struct lysc_node_leaf ***uniques) |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1155 | { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1156 | const struct lyd_node *diter; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1157 | struct ly_set *set; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1158 | LY_ARRAY_COUNT_TYPE u, v, x = 0; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1159 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 626196f | 2022-08-05 12:49:52 +0200 | [diff] [blame] | 1160 | uint32_t hash, i; |
Radek Krejci | 813c02d | 2021-04-26 10:29:19 +0200 | [diff] [blame] | 1161 | size_t key_len; |
| 1162 | ly_bool dyn; |
| 1163 | const void *hash_key; |
Michal Vasko | 41e630c | 2021-07-23 12:47:18 +0200 | [diff] [blame] | 1164 | void *cb_data; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1165 | struct hash_table **uniqtables = NULL; |
| 1166 | struct lyd_value *val; |
| 1167 | struct ly_ctx *ctx = snode->module->ctx; |
| 1168 | |
| 1169 | assert(uniques); |
| 1170 | |
| 1171 | /* get all list instances */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1172 | LY_CHECK_RET(ly_set_new(&set)); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1173 | LY_LIST_FOR(first, diter) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1174 | if (diter->schema == snode) { |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 1175 | ret = ly_set_add(set, (void *)diter, 1, NULL); |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 1176 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1177 | } |
| 1178 | } |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1179 | |
| 1180 | if (set->count == 2) { |
| 1181 | /* simple comparison */ |
| 1182 | if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) { |
| 1183 | /* instance duplication */ |
| 1184 | ret = LY_EVALID; |
| 1185 | goto cleanup; |
| 1186 | } |
| 1187 | } else if (set->count > 2) { |
| 1188 | /* use hashes for comparison */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1189 | uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1190 | LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1191 | x = LY_ARRAY_COUNT(uniques); |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1192 | for (v = 0; v < x; v++) { |
Michal Vasko | 41e630c | 2021-07-23 12:47:18 +0200 | [diff] [blame] | 1193 | cb_data = (void *)(uintptr_t)(v + 1L); |
Michal Vasko | 626196f | 2022-08-05 12:49:52 +0200 | [diff] [blame] | 1194 | uniqtables[v] = lyht_new(lyht_get_fixed_size(set->count), sizeof(struct lyd_node *), |
| 1195 | lyd_val_uniq_list_equal, cb_data, 0); |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1196 | LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1197 | } |
| 1198 | |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1199 | for (i = 0; i < set->count; i++) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1200 | /* loop for unique - get the hash for the instances */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1201 | for (u = 0; u < x; u++) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1202 | val = NULL; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1203 | for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1204 | diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1205 | if (diter) { |
| 1206 | val = &((struct lyd_node_term *)diter)->value; |
| 1207 | } else { |
| 1208 | /* use default value */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1209 | val = uniques[u][v]->dflt; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1210 | } |
| 1211 | if (!val) { |
| 1212 | /* unique item not present nor has default value */ |
| 1213 | break; |
| 1214 | } |
| 1215 | |
Radek Krejci | 813c02d | 2021-04-26 10:29:19 +0200 | [diff] [blame] | 1216 | /* get hash key */ |
Michal Vasko | dcfac2c | 2021-05-10 11:36:37 +0200 | [diff] [blame] | 1217 | hash_key = val->realtype->plugin->print(NULL, val, LY_VALUE_LYB, NULL, &dyn, &key_len); |
Radek Krejci | 813c02d | 2021-04-26 10:29:19 +0200 | [diff] [blame] | 1218 | hash = dict_hash_multi(hash, hash_key, key_len); |
| 1219 | if (dyn) { |
| 1220 | free((void *)hash_key); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1221 | } |
| 1222 | } |
| 1223 | if (!val) { |
| 1224 | /* skip this list instance since its unique set is incomplete */ |
| 1225 | continue; |
| 1226 | } |
| 1227 | |
| 1228 | /* finish the hash value */ |
| 1229 | hash = dict_hash_multi(hash, NULL, 0); |
| 1230 | |
| 1231 | /* insert into the hashtable */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1232 | ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1233 | if (ret == LY_EEXIST) { |
| 1234 | /* instance duplication */ |
| 1235 | ret = LY_EVALID; |
| 1236 | } |
| 1237 | LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup); |
| 1238 | } |
| 1239 | } |
| 1240 | } |
| 1241 | |
| 1242 | cleanup: |
| 1243 | ly_set_free(set, NULL); |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1244 | for (v = 0; v < x; v++) { |
| 1245 | if (!uniqtables[v]) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1246 | /* failed when allocating uniquetables[j], following j are not allocated */ |
| 1247 | break; |
| 1248 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1249 | lyht_free(uniqtables[v]); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1250 | } |
| 1251 | free(uniqtables); |
| 1252 | |
| 1253 | return ret; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1254 | } |
| 1255 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1256 | /** |
| 1257 | * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes. |
| 1258 | * |
| 1259 | * @param[in] first First sibling to search in. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1260 | * @param[in] parent Data parent. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1261 | * @param[in] sparent Schema parent of the nodes to check. |
| 1262 | * @param[in] mod Module of the nodes to check. |
| 1263 | * @param[in] val_opts Validation options, see @ref datavalidationoptions. |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1264 | * @param[in] int_opts Internal parser options. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1265 | * @return LY_ERR value. |
| 1266 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1267 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1268 | lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent, |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1269 | const struct lysc_node *sparent, const struct lysc_module *mod, uint32_t val_opts, uint32_t int_opts) |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1270 | { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1271 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 6c16cda | 2021-02-04 11:05:52 +0100 | [diff] [blame] | 1272 | const struct lysc_node *snode = NULL, *scase; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1273 | struct lysc_node_list *slist; |
Michal Vasko | d8958df | 2020-08-05 13:27:36 +0200 | [diff] [blame] | 1274 | struct lysc_node_leaflist *sllist; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1275 | uint32_t getnext_opts; |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1276 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1277 | getnext_opts = LYS_GETNEXT_WITHCHOICE | (int_opts & LYD_INTOPT_REPLY ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1278 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1279 | /* disabled nodes are skipped by lys_getnext */ |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1280 | while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1281 | if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) { |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 1282 | continue; |
| 1283 | } |
| 1284 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1285 | LOG_LOCSET(snode, NULL, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1286 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1287 | /* check min-elements and max-elements */ |
Michal Vasko | d8958df | 2020-08-05 13:27:36 +0200 | [diff] [blame] | 1288 | if (snode->nodetype == LYS_LIST) { |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1289 | slist = (struct lysc_node_list *)snode; |
| 1290 | if (slist->min || slist->max) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1291 | ret = lyd_validate_minmax(first, parent, snode, slist->min, slist->max); |
| 1292 | LY_CHECK_GOTO(ret, error); |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1293 | } |
Michal Vasko | d8958df | 2020-08-05 13:27:36 +0200 | [diff] [blame] | 1294 | } else if (snode->nodetype == LYS_LEAFLIST) { |
| 1295 | sllist = (struct lysc_node_leaflist *)snode; |
| 1296 | if (sllist->min || sllist->max) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1297 | ret = lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max); |
| 1298 | LY_CHECK_GOTO(ret, error); |
Michal Vasko | d8958df | 2020-08-05 13:27:36 +0200 | [diff] [blame] | 1299 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1300 | |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1301 | } else if (snode->flags & LYS_MAND_TRUE) { |
Radek Krejci | f6a1100 | 2020-08-21 13:29:07 +0200 | [diff] [blame] | 1302 | /* check generic mandatory existence */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1303 | ret = lyd_validate_mandatory(first, parent, snode); |
| 1304 | LY_CHECK_GOTO(ret, error); |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1305 | } |
| 1306 | |
| 1307 | /* check unique */ |
| 1308 | if (snode->nodetype == LYS_LIST) { |
| 1309 | slist = (struct lysc_node_list *)snode; |
| 1310 | if (slist->uniques) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1311 | ret = lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques); |
| 1312 | LY_CHECK_GOTO(ret, error); |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1313 | } |
| 1314 | } |
| 1315 | |
Michal Vasko | 6c16cda | 2021-02-04 11:05:52 +0100 | [diff] [blame] | 1316 | if (snode->nodetype == LYS_CHOICE) { |
| 1317 | /* find the existing case, if any */ |
| 1318 | LY_LIST_FOR(lysc_node_child(snode), scase) { |
| 1319 | if (lys_getnext_data(NULL, first, NULL, scase, NULL)) { |
| 1320 | /* validate only this case */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1321 | ret = lyd_validate_siblings_schema_r(first, parent, scase, mod, val_opts, int_opts); |
Michal Vasko | 6c16cda | 2021-02-04 11:05:52 +0100 | [diff] [blame] | 1322 | LY_CHECK_GOTO(ret, error); |
| 1323 | break; |
| 1324 | } |
| 1325 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1326 | } |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1327 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1328 | LOG_LOCBACK(1, 0, 0, 0); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1329 | } |
| 1330 | |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1331 | return LY_SUCCESS; |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1332 | |
| 1333 | error: |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1334 | LOG_LOCBACK(1, 0, 0, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1335 | return ret; |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1336 | } |
| 1337 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1338 | /** |
| 1339 | * @brief Validate obsolete nodes, only warnings are printed. |
| 1340 | * |
| 1341 | * @param[in] node Node to check. |
| 1342 | */ |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 1343 | static void |
| 1344 | lyd_validate_obsolete(const struct lyd_node *node) |
| 1345 | { |
| 1346 | const struct lysc_node *snode; |
| 1347 | |
| 1348 | snode = node->schema; |
| 1349 | do { |
| 1350 | if (snode->flags & LYS_STATUS_OBSLT) { |
| 1351 | LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name); |
| 1352 | break; |
| 1353 | } |
| 1354 | |
| 1355 | snode = snode->parent; |
| 1356 | } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE))); |
| 1357 | } |
| 1358 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1359 | /** |
| 1360 | * @brief Validate must conditions of a data node. |
| 1361 | * |
| 1362 | * @param[in] node Node to validate. |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1363 | * @param[in] int_opts Internal parser options. |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1364 | * @param[in] xpath_options Additional XPath options to use. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1365 | * @return LY_ERR value. |
| 1366 | */ |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1367 | static LY_ERR |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1368 | lyd_validate_must(const struct lyd_node *node, uint32_t int_opts, uint32_t xpath_options) |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1369 | { |
Michal Vasko | a1db234 | 2021-07-19 12:23:23 +0200 | [diff] [blame] | 1370 | LY_ERR ret; |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1371 | struct lyxp_set xp_set; |
| 1372 | struct lysc_must *musts; |
| 1373 | const struct lyd_node *tree; |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1374 | const struct lysc_node *schema; |
Michal Vasko | e9391c7 | 2021-10-05 10:04:56 +0200 | [diff] [blame] | 1375 | const char *emsg, *eapptag; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1376 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1377 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1378 | assert((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) != (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)); |
| 1379 | assert((int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) != (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)); |
| 1380 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1381 | if (node->schema->nodetype & (LYS_ACTION | LYS_RPC)) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1382 | if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1383 | schema = &((struct lysc_node_action *)node->schema)->input.node; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1384 | } else if (int_opts & LYD_INTOPT_REPLY) { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1385 | schema = &((struct lysc_node_action *)node->schema)->output.node; |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1386 | } else { |
Michal Vasko | a1db234 | 2021-07-19 12:23:23 +0200 | [diff] [blame] | 1387 | LOGINT_RET(LYD_CTX(node)); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1388 | } |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1389 | } else { |
| 1390 | schema = node->schema; |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1391 | } |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1392 | musts = lysc_node_musts(schema); |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1393 | if (!musts) { |
| 1394 | /* no must to evaluate */ |
| 1395 | return LY_SUCCESS; |
| 1396 | } |
| 1397 | |
| 1398 | /* find first top-level node */ |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 1399 | for (tree = node; tree->parent; tree = lyd_parent(tree)) {} |
Michal Vasko | f9221e6 | 2021-02-04 12:10:14 +0100 | [diff] [blame] | 1400 | tree = lyd_first_sibling(tree); |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1401 | |
| 1402 | LY_ARRAY_FOR(musts, u) { |
| 1403 | memset(&xp_set, 0, sizeof xp_set); |
| 1404 | |
| 1405 | /* evaluate must */ |
Michal Vasko | a1db234 | 2021-07-19 12:23:23 +0200 | [diff] [blame] | 1406 | ret = lyxp_eval(LYD_CTX(node), musts[u].cond, node->schema->module, LY_VALUE_SCHEMA_RESOLVED, |
Michal Vasko | a3e92bc | 2022-07-29 14:56:23 +0200 | [diff] [blame] | 1407 | musts[u].prefixes, node, node, tree, NULL, &xp_set, LYXP_SCHEMA | xpath_options); |
Michal Vasko | a1db234 | 2021-07-19 12:23:23 +0200 | [diff] [blame] | 1408 | if (ret == LY_EINCOMPLETE) { |
| 1409 | LOGINT_RET(LYD_CTX(node)); |
| 1410 | } else if (ret) { |
| 1411 | return ret; |
| 1412 | } |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1413 | |
| 1414 | /* check the result */ |
| 1415 | lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1416 | if (!xp_set.val.bln) { |
Michal Vasko | e9391c7 | 2021-10-05 10:04:56 +0200 | [diff] [blame] | 1417 | /* use specific error information */ |
| 1418 | emsg = musts[u].emsg; |
| 1419 | eapptag = musts[u].eapptag ? musts[u].eapptag : "must-violation"; |
| 1420 | if (emsg) { |
| 1421 | LOGVAL_APPTAG(LYD_CTX(node), eapptag, LYVE_DATA, "%s", emsg); |
| 1422 | } else { |
| 1423 | LOGVAL_APPTAG(LYD_CTX(node), eapptag, LY_VCODE_NOMUST, musts[u].cond->expr); |
| 1424 | } |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1425 | return LY_EVALID; |
| 1426 | } |
| 1427 | } |
| 1428 | |
| 1429 | return LY_SUCCESS; |
| 1430 | } |
| 1431 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1432 | /** |
| 1433 | * @brief Perform all remaining validation tasks, the data tree must be final when calling this function. |
| 1434 | * |
| 1435 | * @param[in] first First sibling. |
| 1436 | * @param[in] parent Data parent. |
| 1437 | * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings. |
| 1438 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
| 1439 | * @param[in] val_opts Validation options (@ref datavalidationoptions). |
| 1440 | * @param[in] int_opts Internal parser options. |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1441 | * @param[in] must_xp_opts Additional XPath options to use for evaluating "must". |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1442 | * @return LY_ERR value. |
| 1443 | */ |
| 1444 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1445 | lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent, |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1446 | const struct lys_module *mod, uint32_t val_opts, uint32_t int_opts, uint32_t must_xp_opts) |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1447 | { |
Michal Vasko | 22e8f1f | 2021-12-02 09:26:06 +0100 | [diff] [blame] | 1448 | LY_ERR r; |
| 1449 | const char *innode; |
Radek Krejci | 7f769d7 | 2020-07-11 23:13:56 +0200 | [diff] [blame] | 1450 | struct lyd_node *next = NULL, *node; |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1451 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1452 | /* validate all restrictions of nodes themselves */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1453 | LY_LIST_FOR_SAFE(first, next, node) { |
Michal Vasko | 61ad1ff | 2022-02-10 15:48:39 +0100 | [diff] [blame] | 1454 | if (node->flags & LYD_EXT) { |
| 1455 | /* ext instance data should have already been validated */ |
| 1456 | continue; |
| 1457 | } |
| 1458 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1459 | LOG_LOCSET(node->schema, node, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1460 | |
Michal Vasko | a8c6172 | 2020-03-27 16:59:32 +0100 | [diff] [blame] | 1461 | /* opaque data */ |
| 1462 | if (!node->schema) { |
Michal Vasko | ac6f4be | 2022-05-02 10:16:50 +0200 | [diff] [blame] | 1463 | r = lyd_parse_opaq_error(node); |
Michal Vasko | 6344e7a | 2022-05-10 10:08:53 +0200 | [diff] [blame] | 1464 | LOG_LOCBACK(0, 1, 0, 0); |
Michal Vasko | ac6f4be | 2022-05-02 10:16:50 +0200 | [diff] [blame] | 1465 | return r; |
Michal Vasko | a8c6172 | 2020-03-27 16:59:32 +0100 | [diff] [blame] | 1466 | } |
| 1467 | |
Michal Vasko | 6344e7a | 2022-05-10 10:08:53 +0200 | [diff] [blame] | 1468 | if (!node->parent && mod && (lyd_owner_module(node) != mod)) { |
| 1469 | /* all top-level data from this module checked */ |
| 1470 | LOG_LOCBACK(1, 1, 0, 0); |
| 1471 | break; |
| 1472 | } |
| 1473 | |
Michal Vasko | 8d289f9 | 2021-12-02 10:11:00 +0100 | [diff] [blame] | 1474 | /* no state/input/output/op data */ |
Michal Vasko | 22e8f1f | 2021-12-02 09:26:06 +0100 | [diff] [blame] | 1475 | innode = NULL; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1476 | if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1477 | innode = "state"; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1478 | } else if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION)) && (node->schema->flags & LYS_IS_OUTPUT)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1479 | innode = "output"; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1480 | } else if ((int_opts & LYD_INTOPT_REPLY) && (node->schema->flags & LYS_IS_INPUT)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1481 | innode = "input"; |
Michal Vasko | 8d289f9 | 2021-12-02 10:11:00 +0100 | [diff] [blame] | 1482 | } else if (!(int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_REPLY)) && (node->schema->nodetype == LYS_RPC)) { |
| 1483 | innode = "rpc"; |
| 1484 | } else if (!(int_opts & (LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) && (node->schema->nodetype == LYS_ACTION)) { |
| 1485 | innode = "action"; |
| 1486 | } else if (!(int_opts & LYD_INTOPT_NOTIF) && (node->schema->nodetype == LYS_NOTIF)) { |
| 1487 | innode = "notification"; |
Michal Vasko | 22e8f1f | 2021-12-02 09:26:06 +0100 | [diff] [blame] | 1488 | } |
| 1489 | if (innode) { |
| 1490 | LOGVAL(LYD_CTX(node), LY_VCODE_UNEXPNODE, innode, node->schema->name); |
| 1491 | LOG_LOCBACK(1, 1, 0, 0); |
| 1492 | return LY_EVALID; |
Michal Vasko | 5b37a35 | 2020-03-06 13:38:33 +0100 | [diff] [blame] | 1493 | } |
| 1494 | |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 1495 | /* obsolete data */ |
| 1496 | lyd_validate_obsolete(node); |
| 1497 | |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1498 | /* node's musts */ |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1499 | if ((r = lyd_validate_must(node, int_opts, must_xp_opts))) { |
Michal Vasko | 22e8f1f | 2021-12-02 09:26:06 +0100 | [diff] [blame] | 1500 | LOG_LOCBACK(1, 1, 0, 0); |
| 1501 | return r; |
| 1502 | } |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1503 | |
Michal Vasko | 53d97a1 | 2020-11-05 17:39:10 +0100 | [diff] [blame] | 1504 | /* node value was checked by plugins */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1505 | |
Michal Vasko | 22e8f1f | 2021-12-02 09:26:06 +0100 | [diff] [blame] | 1506 | /* next iter */ |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1507 | LOG_LOCBACK(1, 1, 0, 0); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1508 | } |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1509 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1510 | /* validate schema-based restrictions */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1511 | LY_CHECK_RET(lyd_validate_siblings_schema_r(first, parent, sparent, mod ? mod->compiled : NULL, val_opts, int_opts)); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1512 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1513 | LY_LIST_FOR(first, node) { |
Michal Vasko | 19034e2 | 2021-07-19 12:24:14 +0200 | [diff] [blame] | 1514 | if (!node->parent && mod && (lyd_owner_module(node) != mod)) { |
| 1515 | /* all top-level data from this module checked */ |
| 1516 | break; |
| 1517 | } |
| 1518 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1519 | /* validate all children recursively */ |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1520 | LY_CHECK_RET(lyd_validate_final_r(lyd_child(node), node, node->schema, NULL, val_opts, int_opts, must_xp_opts)); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1521 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1522 | /* set default for containers */ |
Michal Vasko | 4754d4a | 2022-12-01 10:11:21 +0100 | [diff] [blame] | 1523 | lyd_cont_set_dflt(node); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1524 | } |
| 1525 | |
| 1526 | return LY_SUCCESS; |
| 1527 | } |
| 1528 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1529 | /** |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1530 | * @brief Validate extension instance data by storing it in its unres set. |
| 1531 | * |
| 1532 | * @param[in] sibling First sibling with ::LYD_EXT flag, all the following ones are expected to have it, too. |
| 1533 | * @param[in,out] ext_val Set with parsed extension instance data to validate. |
| 1534 | * @return LY_ERR value. |
| 1535 | */ |
| 1536 | static LY_ERR |
| 1537 | lyd_validate_nested_ext(struct lyd_node *sibling, struct ly_set *ext_val) |
| 1538 | { |
| 1539 | struct lyd_node *node; |
| 1540 | struct lyd_ctx_ext_val *ext_v; |
| 1541 | struct lysc_ext_instance *nested_exts, *ext = NULL; |
| 1542 | LY_ARRAY_COUNT_TYPE u; |
| 1543 | |
| 1544 | /* check of basic assumptions */ |
| 1545 | if (!sibling->parent || !sibling->parent->schema) { |
| 1546 | LOGINT_RET(LYD_CTX(sibling)); |
| 1547 | } |
| 1548 | LY_LIST_FOR(sibling, node) { |
| 1549 | if (!(node->flags & LYD_EXT)) { |
| 1550 | LOGINT_RET(LYD_CTX(sibling)); |
| 1551 | } |
| 1552 | } |
| 1553 | |
| 1554 | /* try to find the extension instance */ |
| 1555 | nested_exts = sibling->parent->schema->exts; |
| 1556 | LY_ARRAY_FOR(nested_exts, u) { |
| 1557 | if (nested_exts[u].def->plugin->validate) { |
| 1558 | if (ext) { |
| 1559 | /* more extension instances with validate callback */ |
| 1560 | LOGINT_RET(LYD_CTX(sibling)); |
| 1561 | } |
| 1562 | ext = &nested_exts[u]; |
| 1563 | } |
| 1564 | } |
| 1565 | if (!ext) { |
| 1566 | /* no extension instance with validate callback */ |
| 1567 | LOGINT_RET(LYD_CTX(sibling)); |
| 1568 | } |
| 1569 | |
| 1570 | /* store for validation */ |
| 1571 | ext_v = malloc(sizeof *ext_v); |
| 1572 | LY_CHECK_ERR_RET(!ext_v, LOGMEM(LYD_CTX(sibling)), LY_EMEM); |
| 1573 | ext_v->ext = ext; |
| 1574 | ext_v->sibling = sibling; |
| 1575 | LY_CHECK_RET(ly_set_add(ext_val, ext_v, 1, NULL)); |
| 1576 | |
| 1577 | return LY_SUCCESS; |
| 1578 | } |
| 1579 | |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1580 | LY_ERR |
| 1581 | lyd_validate_node_ext(struct lyd_node *node, struct ly_set *ext_node) |
| 1582 | { |
| 1583 | struct lyd_ctx_ext_node *ext_n; |
| 1584 | struct lysc_ext_instance *exts; |
| 1585 | LY_ARRAY_COUNT_TYPE u; |
| 1586 | |
| 1587 | /* try to find a relevant extension instance with node callback */ |
| 1588 | exts = node->schema->exts; |
| 1589 | LY_ARRAY_FOR(exts, u) { |
| 1590 | if (exts[u].def->plugin && exts[u].def->plugin->node) { |
| 1591 | /* store for validation */ |
| 1592 | ext_n = malloc(sizeof *ext_n); |
| 1593 | LY_CHECK_ERR_RET(!ext_n, LOGMEM(LYD_CTX(node)), LY_EMEM); |
| 1594 | ext_n->ext = &exts[u]; |
| 1595 | ext_n->node = node; |
| 1596 | LY_CHECK_RET(ly_set_add(ext_node, ext_n, 1, NULL)); |
| 1597 | } |
| 1598 | } |
| 1599 | |
| 1600 | return LY_SUCCESS; |
| 1601 | } |
| 1602 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1603 | /** |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1604 | * @brief Validate the whole data subtree. |
| 1605 | * |
| 1606 | * @param[in] root Subtree root. |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1607 | * @param[in,out] node_when Set for nodes with when conditions. |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1608 | * @param[in,out] node_types Set for unres node types. |
| 1609 | * @param[in,out] meta_types Set for unres metadata types. |
Michal Vasko | 1a6e690 | 2022-08-26 08:35:09 +0200 | [diff] [blame] | 1610 | * @param[in,out] ext_node Set with nodes with extensions to validate. |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1611 | * @param[in,out] ext_val Set for parsed extension data to validate. |
Michal Vasko | 29adfbe | 2020-12-08 17:12:03 +0100 | [diff] [blame] | 1612 | * @param[in] impl_opts Implicit options, see @ref implicitoptions. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1613 | * @param[in,out] diff Validation diff. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1614 | * @return LY_ERR value. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1615 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1616 | static LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1617 | lyd_validate_subtree(struct lyd_node *root, struct ly_set *node_when, struct ly_set *node_types, |
Michal Vasko | 1a6e690 | 2022-08-26 08:35:09 +0200 | [diff] [blame] | 1618 | struct ly_set *meta_types, struct ly_set *ext_node, struct ly_set *ext_val, uint32_t impl_opts, |
| 1619 | struct lyd_node **diff) |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1620 | { |
| 1621 | const struct lyd_meta *meta; |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 1622 | const struct lysc_type *type; |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1623 | struct lyd_node *node; |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1624 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1625 | LYD_TREE_DFS_BEGIN(root, node) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1626 | if (node->flags & LYD_EXT) { |
| 1627 | /* validate using the extension instance callback */ |
| 1628 | return lyd_validate_nested_ext(node, ext_val); |
| 1629 | } |
| 1630 | |
Michal Vasko | 5900da4 | 2021-08-04 11:02:43 +0200 | [diff] [blame] | 1631 | if (!node->schema) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1632 | /* do not validate opaque nodes */ |
aPiecek | 18a844e | 2021-08-10 11:06:24 +0200 | [diff] [blame] | 1633 | goto next_node; |
Michal Vasko | 5900da4 | 2021-08-04 11:02:43 +0200 | [diff] [blame] | 1634 | } |
| 1635 | |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1636 | LY_LIST_FOR(node->meta, meta) { |
Michal Vasko | fbd037c | 2022-11-08 10:34:20 +0100 | [diff] [blame] | 1637 | lyplg_ext_get_storage(meta->annotation, LY_STMT_TYPE, sizeof type, (const void **)&type); |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 1638 | if (type->plugin->validate) { |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1639 | /* metadata type resolution */ |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1640 | LY_CHECK_RET(ly_set_add(meta_types, (void *)meta, 1, NULL)); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1641 | } |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1642 | } |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1643 | |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1644 | if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) { |
| 1645 | /* node type resolution */ |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1646 | LY_CHECK_RET(ly_set_add(node_types, (void *)node, 1, NULL)); |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1647 | } else if (node->schema->nodetype & LYD_NODE_INNER) { |
| 1648 | /* new node validation, autodelete */ |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1649 | LY_CHECK_RET(lyd_validate_new(lyd_node_child_p(node), node->schema, NULL, diff)); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1650 | |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1651 | /* add nested defaults */ |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1652 | LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, NULL, NULL, NULL, impl_opts, diff)); |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1653 | } |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1654 | |
Michal Vasko | f4d67ea | 2021-03-31 13:53:21 +0200 | [diff] [blame] | 1655 | if (lysc_has_when(node->schema)) { |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1656 | /* when evaluation */ |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1657 | LY_CHECK_RET(ly_set_add(node_when, (void *)node, 1, NULL)); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1658 | } |
| 1659 | |
Michal Vasko | 1a6e690 | 2022-08-26 08:35:09 +0200 | [diff] [blame] | 1660 | /* store for ext instance node validation, if needed */ |
| 1661 | LY_CHECK_RET(lyd_validate_node_ext(node, ext_node)); |
| 1662 | |
aPiecek | 18a844e | 2021-08-10 11:06:24 +0200 | [diff] [blame] | 1663 | next_node: |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1664 | LYD_TREE_DFS_END(root, node); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1665 | } |
| 1666 | |
| 1667 | return LY_SUCCESS; |
| 1668 | } |
| 1669 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1670 | LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1671 | lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1672 | ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_types_p, struct ly_set *meta_types_p, |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1673 | struct ly_set *ext_node_p, struct ly_set *ext_val_p, struct lyd_node **diff) |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1674 | { |
| 1675 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 73e4721 | 2020-12-03 14:20:16 +0100 | [diff] [blame] | 1676 | struct lyd_node *first, *next, **first2, *iter; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1677 | const struct lys_module *mod; |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1678 | struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, ext_node = {0}, ext_val = {0}; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1679 | uint32_t i = 0; |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1680 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1681 | assert(tree && ctx); |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1682 | assert((node_when_p && node_types_p && meta_types_p && ext_node_p && ext_val_p) || |
| 1683 | (!node_when_p && !node_types_p && !meta_types_p && !ext_node_p && !ext_val_p)); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1684 | |
| 1685 | if (!node_when_p) { |
| 1686 | node_when_p = &node_when; |
| 1687 | node_types_p = &node_types; |
| 1688 | meta_types_p = &meta_types; |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1689 | ext_node_p = &ext_node; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1690 | ext_val_p = &ext_val; |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1691 | } |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1692 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1693 | next = *tree; |
| 1694 | while (1) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1695 | if (val_opts & LYD_VALIDATE_PRESENT) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1696 | mod = lyd_data_next_module(&next, &first); |
| 1697 | } else { |
Michal Vasko | 26e8001 | 2020-07-08 10:55:46 +0200 | [diff] [blame] | 1698 | mod = lyd_mod_next_module(next, module, ctx, &i, &first); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1699 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1700 | if (!mod) { |
| 1701 | break; |
| 1702 | } |
Michal Vasko | 7c4cf1e | 2020-06-22 10:04:30 +0200 | [diff] [blame] | 1703 | if (!first || (first == *tree)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1704 | /* make sure first2 changes are carried to tree */ |
| 1705 | first2 = tree; |
| 1706 | } else { |
| 1707 | first2 = &first; |
| 1708 | } |
| 1709 | |
| 1710 | /* validate new top-level nodes of this module, autodelete */ |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1711 | ret = lyd_validate_new(first2, NULL, mod, diff); |
| 1712 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1713 | |
Radek Krejci | 7be7b9f | 2021-02-24 11:46:27 +0100 | [diff] [blame] | 1714 | /* add all top-level defaults for this module, if going to validate subtree, do not add into unres sets |
| 1715 | * (lyd_validate_subtree() adds all the nodes in that case) */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1716 | ret = lyd_new_implicit_r(NULL, first2, NULL, mod, validate_subtree ? NULL : node_when_p, |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1717 | validate_subtree ? NULL : node_types_p, validate_subtree ? NULL : ext_node_p, |
| 1718 | (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1719 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1720 | |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 1721 | /* our first module node pointer may no longer be the first */ |
Michal Vasko | 598063b | 2021-07-19 11:39:05 +0200 | [diff] [blame] | 1722 | first = *first2; |
| 1723 | lyd_first_module_sibling(&first, mod); |
| 1724 | if (!first || (first == *tree)) { |
| 1725 | first2 = tree; |
| 1726 | } else { |
| 1727 | first2 = &first; |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 1728 | } |
| 1729 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1730 | if (validate_subtree) { |
| 1731 | /* process nested nodes */ |
| 1732 | LY_LIST_FOR(*first2, iter) { |
Michal Vasko | 0e72b7a | 2021-07-16 14:53:27 +0200 | [diff] [blame] | 1733 | if (lyd_owner_module(iter) != mod) { |
| 1734 | break; |
| 1735 | } |
| 1736 | |
Michal Vasko | 1a6e690 | 2022-08-26 08:35:09 +0200 | [diff] [blame] | 1737 | ret = lyd_validate_subtree(iter, node_when_p, node_types_p, meta_types_p, ext_node_p, ext_val_p, |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1738 | (val_opts & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, diff); |
| 1739 | LY_CHECK_GOTO(ret, cleanup); |
| 1740 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1741 | } |
| 1742 | |
| 1743 | /* finish incompletely validated terminal values/attributes and when conditions */ |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1744 | ret = lyd_validate_unres(first2, mod, LYD_TYPE_DATA_YANG, node_when_p, 0, node_types_p, meta_types_p, |
| 1745 | ext_node_p, ext_val_p, val_opts, diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1746 | LY_CHECK_GOTO(ret, cleanup); |
| 1747 | |
| 1748 | /* perform final validation that assumes the data tree is final */ |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1749 | ret = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0, 0); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1750 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1751 | } |
| 1752 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1753 | cleanup: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1754 | ly_set_erase(&node_when, NULL); |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1755 | ly_set_erase(&node_types, NULL); |
| 1756 | ly_set_erase(&meta_types, NULL); |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1757 | ly_set_erase(&ext_node, free); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1758 | ly_set_erase(&ext_val, free); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1759 | return ret; |
| 1760 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1761 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1762 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1763 | lyd_validate_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t val_opts, struct lyd_node **diff) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1764 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1765 | LY_CHECK_ARG_RET(NULL, tree, *tree || ctx, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1766 | LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, ctx, LY_EINVAL); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1767 | if (!ctx) { |
| 1768 | ctx = LYD_CTX(*tree); |
| 1769 | } |
| 1770 | if (diff) { |
| 1771 | *diff = NULL; |
| 1772 | } |
| 1773 | |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1774 | return lyd_validate(tree, NULL, ctx, val_opts, 1, NULL, NULL, NULL, NULL, NULL, diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1775 | } |
| 1776 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1777 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1778 | lyd_validate_module(struct lyd_node **tree, const struct lys_module *module, uint32_t val_opts, struct lyd_node **diff) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1779 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1780 | LY_CHECK_ARG_RET(NULL, tree, *tree || module, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1781 | LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1782 | if (diff) { |
| 1783 | *diff = NULL; |
| 1784 | } |
| 1785 | |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1786 | return lyd_validate(tree, module, (*tree) ? LYD_CTX(*tree) : module->ctx, val_opts, 1, NULL, NULL, NULL, NULL, NULL, |
| 1787 | diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1788 | } |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1789 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1790 | /** |
| 1791 | * @brief Find nodes for merging an operation into data tree for validation. |
| 1792 | * |
| 1793 | * @param[in] op_tree Full operation data tree. |
| 1794 | * @param[in] op_node Operation node itself. |
| 1795 | * @param[in] tree Data tree to be merged into. |
| 1796 | * @param[out] op_subtree Operation subtree to merge. |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1797 | * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL. |
| 1798 | * @param[out] tree_parent Data tree parent to merge into, is set if @p tree_sibling is NULL. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1799 | */ |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1800 | static void |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1801 | lyd_val_op_merge_find(const struct lyd_node *op_tree, const struct lyd_node *op_node, const struct lyd_node *tree, |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1802 | struct lyd_node **op_subtree, struct lyd_node **tree_sibling, struct lyd_node **tree_parent) |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1803 | { |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1804 | const struct lyd_node *tree_iter, *op_iter; |
Michal Vasko | b10c93b | 2022-12-14 12:16:27 +0100 | [diff] [blame] | 1805 | struct lyd_node *match = NULL; |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1806 | uint32_t i, cur_depth, op_depth; |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1807 | |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1808 | *op_subtree = NULL; |
| 1809 | *tree_sibling = NULL; |
| 1810 | *tree_parent = NULL; |
| 1811 | |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1812 | /* learn op depth (top-level being depth 0) */ |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1813 | op_depth = 0; |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 1814 | for (op_iter = op_node; op_iter != op_tree; op_iter = lyd_parent(op_iter)) { |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1815 | ++op_depth; |
| 1816 | } |
| 1817 | |
| 1818 | /* find where to merge op */ |
| 1819 | tree_iter = tree; |
| 1820 | cur_depth = op_depth; |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1821 | while (cur_depth && tree_iter) { |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1822 | /* find op iter in tree */ |
| 1823 | lyd_find_sibling_first(tree_iter, op_iter, &match); |
| 1824 | if (!match) { |
| 1825 | break; |
| 1826 | } |
| 1827 | |
| 1828 | /* move tree_iter */ |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 1829 | tree_iter = lyd_child(match); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1830 | |
| 1831 | /* move depth */ |
| 1832 | --cur_depth; |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1833 | |
| 1834 | /* find next op parent */ |
| 1835 | op_iter = op_node; |
| 1836 | for (i = 0; i < cur_depth; ++i) { |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 1837 | op_iter = lyd_parent(op_iter); |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1838 | } |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1839 | } |
| 1840 | |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1841 | assert(op_iter); |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1842 | *op_subtree = (struct lyd_node *)op_iter; |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1843 | if (!tree || tree_iter) { |
| 1844 | /* there is no tree whatsoever or this is the last found sibling */ |
| 1845 | *tree_sibling = (struct lyd_node *)tree_iter; |
| 1846 | } else { |
| 1847 | /* matching parent was found but it has no children to insert next to */ |
| 1848 | assert(match); |
| 1849 | *tree_parent = match; |
| 1850 | } |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1851 | } |
| 1852 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1853 | /** |
| 1854 | * @brief Validate an RPC/action request, reply, or notification. |
| 1855 | * |
| 1856 | * @param[in] op_tree Full operation data tree. |
| 1857 | * @param[in] op_node Operation node itself. |
| 1858 | * @param[in] dep_tree Tree to be used for validating references from the operation subtree. |
| 1859 | * @param[in] int_opts Internal parser options. |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 1860 | * @param[in] data_type Type of validated data. |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1861 | * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation). |
| 1862 | * @param[in] node_when_p Set of nodes with when conditions, if NULL a local set is used. |
| 1863 | * @param[in] node_types_p Set of unres node types, if NULL a local set is used. |
| 1864 | * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used. |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1865 | * @param[in] ext_node_p Set of unres nodes with extensions to validate, if NULL a local set is used. |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1866 | * @param[in] ext_val_p Set of parsed extension data to validate, if NULL a local set is used. |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1867 | * @param[out] diff Optional diff with any changes made by the validation. |
| 1868 | * @return LY_SUCCESS on success. |
| 1869 | * @return LY_ERR error on error. |
| 1870 | */ |
| 1871 | static LY_ERR |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 1872 | _lyd_validate_op(struct lyd_node *op_tree, struct lyd_node *op_node, const struct lyd_node *dep_tree, enum lyd_type data_type, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1873 | uint32_t int_opts, ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_types_p, |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1874 | struct ly_set *meta_types_p, struct ly_set *ext_node_p, struct ly_set *ext_val_p, struct lyd_node **diff) |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1875 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1876 | LY_ERR rc = LY_SUCCESS; |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 1877 | struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_parent, *op_sibling_before, *op_sibling_after, *child; |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1878 | struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}, ext_node = {0}, ext_val = {0}; |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1879 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1880 | assert(op_tree && op_node); |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1881 | assert((node_when_p && node_types_p && meta_types_p && ext_node_p && ext_val_p) || |
| 1882 | (!node_when_p && !node_types_p && !meta_types_p && !ext_node_p && !ext_val_p)); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1883 | |
| 1884 | if (!node_when_p) { |
| 1885 | node_when_p = &node_when; |
| 1886 | node_types_p = &node_types; |
| 1887 | meta_types_p = &meta_types; |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1888 | ext_node_p = &ext_node; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1889 | ext_val_p = &ext_val; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1890 | } |
| 1891 | |
| 1892 | /* merge op_tree into dep_tree */ |
| 1893 | lyd_val_op_merge_find(op_tree, op_node, dep_tree, &op_subtree, &tree_sibling, &tree_parent); |
Michal Vasko | c61dd06 | 2022-06-07 11:01:28 +0200 | [diff] [blame] | 1894 | op_sibling_before = op_subtree->prev->next ? op_subtree->prev : NULL; |
| 1895 | op_sibling_after = op_subtree->next; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1896 | op_parent = lyd_parent(op_subtree); |
Michal Vasko | c61dd06 | 2022-06-07 11:01:28 +0200 | [diff] [blame] | 1897 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1898 | lyd_unlink_tree(op_subtree); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1899 | lyd_insert_node(tree_parent, &tree_sibling, op_subtree, 0); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1900 | if (!dep_tree) { |
| 1901 | dep_tree = tree_sibling; |
| 1902 | } |
| 1903 | |
| 1904 | LOG_LOCSET(NULL, op_node, NULL, NULL); |
| 1905 | |
| 1906 | if (int_opts & LYD_INTOPT_REPLY) { |
| 1907 | /* add output children defaults */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1908 | rc = lyd_new_implicit_r(op_node, lyd_node_child_p(op_node), NULL, NULL, node_when_p, node_types_p, |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1909 | ext_node_p, LYD_IMPLICIT_OUTPUT, diff); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1910 | LY_CHECK_GOTO(rc, cleanup); |
| 1911 | |
| 1912 | if (validate_subtree) { |
| 1913 | /* skip validating the operation itself, go to children directly */ |
| 1914 | LY_LIST_FOR(lyd_child(op_node), child) { |
Michal Vasko | 1a6e690 | 2022-08-26 08:35:09 +0200 | [diff] [blame] | 1915 | rc = lyd_validate_subtree(child, node_when_p, node_types_p, meta_types_p, ext_node_p, ext_val_p, 0, diff); |
Radek Krejci | 4f2e3e5 | 2021-03-30 14:20:28 +0200 | [diff] [blame] | 1916 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1917 | } |
| 1918 | } |
| 1919 | } else { |
| 1920 | if (validate_subtree) { |
| 1921 | /* prevalidate whole operation subtree */ |
Michal Vasko | 1a6e690 | 2022-08-26 08:35:09 +0200 | [diff] [blame] | 1922 | rc = lyd_validate_subtree(op_node, node_when_p, node_types_p, meta_types_p, ext_node_p, ext_val_p, 0, diff); |
Radek Krejci | 4f2e3e5 | 2021-03-30 14:20:28 +0200 | [diff] [blame] | 1923 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1924 | } |
| 1925 | } |
| 1926 | |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1927 | /* finish incompletely validated terminal values/attributes and when conditions on the full tree, |
| 1928 | * account for unresolved 'when' that may appear in the non-validated dependency data tree */ |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 1929 | LY_CHECK_GOTO(rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL, data_type, node_when_p, LYXP_IGNORE_WHEN, |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1930 | node_types_p, meta_types_p, ext_node_p, ext_val_p, 0, diff), cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1931 | |
| 1932 | /* perform final validation of the operation/notification */ |
| 1933 | lyd_validate_obsolete(op_node); |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1934 | LY_CHECK_GOTO(rc = lyd_validate_must(op_node, int_opts, LYXP_IGNORE_WHEN), cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1935 | |
| 1936 | /* final validation of all the descendants */ |
Michal Vasko | 906bafa | 2022-04-22 12:28:55 +0200 | [diff] [blame] | 1937 | rc = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, int_opts, LYXP_IGNORE_WHEN); |
| 1938 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1939 | |
| 1940 | cleanup: |
| 1941 | LOG_LOCBACK(0, 1, 0, 0); |
Michal Vasko | c61dd06 | 2022-06-07 11:01:28 +0200 | [diff] [blame] | 1942 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1943 | /* restore operation tree */ |
| 1944 | lyd_unlink_tree(op_subtree); |
Michal Vasko | c61dd06 | 2022-06-07 11:01:28 +0200 | [diff] [blame] | 1945 | if (op_sibling_before) { |
| 1946 | lyd_insert_after_node(op_sibling_before, op_subtree); |
| 1947 | } else if (op_sibling_after) { |
| 1948 | lyd_insert_before_node(op_sibling_after, op_subtree); |
| 1949 | } else if (op_parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1950 | lyd_insert_node(op_parent, NULL, op_subtree, 0); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1951 | } |
| 1952 | |
| 1953 | ly_set_erase(&node_when, NULL); |
| 1954 | ly_set_erase(&node_types, NULL); |
| 1955 | ly_set_erase(&meta_types, NULL); |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1956 | ly_set_erase(&ext_node, free); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1957 | ly_set_erase(&ext_val, free); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1958 | return rc; |
| 1959 | } |
| 1960 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1961 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1962 | lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *dep_tree, enum lyd_type data_type, struct lyd_node **diff) |
| 1963 | { |
| 1964 | struct lyd_node *op_node; |
| 1965 | uint32_t int_opts; |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 1966 | struct ly_set ext_val = {0}; |
| 1967 | LY_ERR rc; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1968 | |
Michal Vasko | 2da4569 | 2022-04-29 09:51:08 +0200 | [diff] [blame] | 1969 | LY_CHECK_ARG_RET(NULL, op_tree, !dep_tree || !dep_tree->parent, (data_type == LYD_TYPE_RPC_YANG) || |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1970 | (data_type == LYD_TYPE_NOTIF_YANG) || (data_type == LYD_TYPE_REPLY_YANG), LY_EINVAL); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1971 | if (diff) { |
| 1972 | *diff = NULL; |
| 1973 | } |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1974 | if (data_type == LYD_TYPE_RPC_YANG) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1975 | int_opts = LYD_INTOPT_RPC | LYD_INTOPT_ACTION; |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 1976 | } else if (data_type == LYD_TYPE_NOTIF_YANG) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 1977 | int_opts = LYD_INTOPT_NOTIF; |
| 1978 | } else { |
| 1979 | int_opts = LYD_INTOPT_REPLY; |
| 1980 | } |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1981 | |
Michal Vasko | 2da4569 | 2022-04-29 09:51:08 +0200 | [diff] [blame] | 1982 | if (op_tree->schema && (op_tree->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF))) { |
| 1983 | /* we have the operation/notification, adjust the pointers */ |
| 1984 | op_node = op_tree; |
| 1985 | while (op_tree->parent) { |
| 1986 | op_tree = lyd_parent(op_tree); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1987 | } |
Michal Vasko | 2da4569 | 2022-04-29 09:51:08 +0200 | [diff] [blame] | 1988 | } else { |
| 1989 | /* find the operation/notification */ |
| 1990 | while (op_tree->parent) { |
| 1991 | op_tree = lyd_parent(op_tree); |
| 1992 | } |
| 1993 | LYD_TREE_DFS_BEGIN(op_tree, op_node) { |
| 1994 | if (!op_node->schema) { |
Michal Vasko | ac6f4be | 2022-05-02 10:16:50 +0200 | [diff] [blame] | 1995 | return lyd_parse_opaq_error(op_node); |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 1996 | } else if (op_node->flags & LYD_EXT) { |
| 1997 | /* fully validate the rest using the extension instance callback */ |
| 1998 | LY_CHECK_RET(lyd_validate_nested_ext(op_node, &ext_val)); |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 1999 | rc = lyd_validate_unres((struct lyd_node **)&dep_tree, NULL, data_type, NULL, 0, NULL, NULL, NULL, |
| 2000 | &ext_val, 0, diff); |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 2001 | ly_set_erase(&ext_val, free); |
| 2002 | return rc; |
Michal Vasko | 2da4569 | 2022-04-29 09:51:08 +0200 | [diff] [blame] | 2003 | } |
| 2004 | |
| 2005 | if ((int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) && |
| 2006 | (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) { |
| 2007 | break; |
| 2008 | } else if ((int_opts & LYD_INTOPT_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) { |
| 2009 | break; |
| 2010 | } |
| 2011 | LYD_TREE_DFS_END(op_tree, op_node); |
| 2012 | } |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 2013 | } |
Michal Vasko | 2da4569 | 2022-04-29 09:51:08 +0200 | [diff] [blame] | 2014 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 2015 | if (int_opts & (LYD_INTOPT_RPC | LYD_INTOPT_ACTION | LYD_INTOPT_REPLY)) { |
Michal Vasko | 9b23208 | 2022-06-07 10:59:31 +0200 | [diff] [blame] | 2016 | if (!op_node || !(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2017 | LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found."); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 2018 | return LY_EINVAL; |
| 2019 | } |
| 2020 | } else { |
Michal Vasko | 9b23208 | 2022-06-07 10:59:31 +0200 | [diff] [blame] | 2021 | if (!op_node || (op_node->schema->nodetype != LYS_NOTIF)) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2022 | LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found."); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 2023 | return LY_EINVAL; |
| 2024 | } |
| 2025 | } |
| 2026 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 2027 | /* validate */ |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 2028 | return _lyd_validate_op(op_tree, op_node, dep_tree, data_type, int_opts, 1, NULL, NULL, NULL, NULL, NULL, diff); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 2029 | } |