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