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