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 | * |
| 6 | * Copyright (c) 2019 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
Radek Krejci | f8dc59a | 2020-11-25 13:47:44 +0100 | [diff] [blame] | 14 | #define _POSIX_C_SOURCE 200809L /* 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 | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 20 | #include <stdio.h> |
| 21 | #include <stdlib.h> |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 22 | #include <string.h> |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 23 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 24 | #include "common.h" |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 25 | #include "compat.h" |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 26 | #include "diff.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 27 | #include "hash_table.h" |
| 28 | #include "log.h" |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 29 | #include "parser_data.h" |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 30 | #include "plugins_exts_metadata.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 31 | #include "plugins_types.h" |
| 32 | #include "set.h" |
| 33 | #include "tree.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 34 | #include "tree_data.h" |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 35 | #include "tree_data_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 36 | #include "tree_schema.h" |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 37 | #include "tree_schema_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 38 | #include "xpath.h" |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 39 | |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 40 | LY_ERR |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 41 | lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff) |
| 42 | { |
| 43 | LY_ERR ret = LY_SUCCESS; |
| 44 | struct lyd_node *new_diff = NULL; |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 45 | const struct lyd_node *prev_inst; |
| 46 | char *key = NULL, *value = NULL; |
| 47 | size_t buflen = 0, bufused = 0; |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 48 | |
| 49 | assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE)); |
| 50 | |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 51 | if ((op == LYD_DIFF_OP_CREATE) && lysc_is_userordered(node->schema)) { |
| 52 | if (node->prev->next && (node->prev->schema == node->schema)) { |
| 53 | prev_inst = node->prev; |
| 54 | } else { |
| 55 | /* first instance */ |
| 56 | prev_inst = NULL; |
| 57 | } |
| 58 | |
| 59 | if (node->schema->nodetype == LYS_LIST) { |
| 60 | /* generate key meta */ |
| 61 | if (prev_inst) { |
| 62 | LY_CHECK_GOTO(ret = lyd_path_list_predicate(prev_inst, &key, &buflen, &bufused, 0), cleanup); |
| 63 | } else { |
| 64 | key = strdup(""); |
| 65 | LY_CHECK_ERR_GOTO(!key, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup); |
| 66 | } |
| 67 | } else { |
| 68 | /* generate value meta */ |
| 69 | if (prev_inst) { |
| 70 | value = strdup(LYD_CANON_VALUE(prev_inst)); |
| 71 | LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup); |
| 72 | } else { |
| 73 | value = strdup(""); |
| 74 | LY_CHECK_ERR_GOTO(!value, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, cleanup); |
| 75 | } |
| 76 | } |
| 77 | } |
| 78 | |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 79 | /* create new diff tree */ |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 80 | LY_CHECK_GOTO(ret = lyd_diff_add(node, op, NULL, NULL, key, value, NULL, &new_diff), cleanup); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 81 | |
| 82 | /* merge into existing diff */ |
Michal Vasko | c0e58e8 | 2020-11-11 19:04:33 +0100 | [diff] [blame] | 83 | ret = lyd_diff_merge_all(diff, new_diff, 0); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 84 | |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 85 | cleanup: |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 86 | lyd_free_tree(new_diff); |
Michal Vasko | 81bc551 | 2020-11-13 18:05:18 +0100 | [diff] [blame] | 87 | free(key); |
| 88 | free(value); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 89 | return ret; |
| 90 | } |
| 91 | |
| 92 | /** |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 93 | * @brief Evaluate all relevant "when" conditions of a node. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 94 | * |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 95 | * @param[in] tree Data tree. |
| 96 | * @param[in] node Node whose relevant when conditions will be evaluated. |
| 97 | * @param[in] schema Schema node of @p node. It may not be possible to use directly if @p node is opaque. |
| 98 | * @param[out] disabled First when that evaluated false, if any. |
| 99 | * @return LY_SUCCESS on success. |
| 100 | * @return LY_EINCOMPLETE if a referenced node does not have its when evaluated. |
| 101 | * @return LY_ERR value on error. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 102 | */ |
| 103 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 104 | lyd_validate_node_when(const struct lyd_node *tree, const struct lyd_node *node, const struct lysc_node *schema, |
| 105 | const struct lysc_when **disabled) |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 106 | { |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 107 | LY_ERR ret; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 108 | const struct lyd_node *ctx_node; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 109 | const struct lysc_when *when; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 110 | struct lyxp_set xp_set; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 111 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 112 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 113 | assert(!node->schema || (node->schema == schema)); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 114 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 115 | *disabled = NULL; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 116 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 117 | do { |
| 118 | LY_ARRAY_FOR(schema->when, u) { |
| 119 | when = schema->when[u]; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 120 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 121 | /* get context node */ |
| 122 | if (when->context == schema) { |
| 123 | ctx_node = node; |
| 124 | } else { |
| 125 | assert((!when->context && !node->parent) || (when->context == node->parent->schema)); |
| 126 | ctx_node = (struct lyd_node *)node->parent; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 127 | } |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 128 | |
| 129 | /* evaluate when */ |
| 130 | memset(&xp_set, 0, sizeof xp_set); |
| 131 | ret = lyxp_eval(when->cond, schema->module, LY_PREF_SCHEMA_RESOLVED, when->prefixes, ctx_node, tree, |
| 132 | &xp_set, LYXP_SCHEMA); |
| 133 | lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN); |
| 134 | |
| 135 | /* return error or LY_EINCOMPLETE for dependant unresolved when */ |
| 136 | LY_CHECK_RET(ret); |
| 137 | |
| 138 | if (!xp_set.val.bln) { |
| 139 | /* false when */ |
| 140 | *disabled = when; |
| 141 | return LY_SUCCESS; |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 142 | } |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 143 | } |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 144 | |
| 145 | schema = schema->parent; |
| 146 | } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE))); |
| 147 | |
| 148 | return LY_SUCCESS; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * @brief Evaluate when conditions of collected unres nodes. |
| 153 | * |
| 154 | * @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] | 155 | * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it. |
| 156 | * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be |
| 157 | * the first top-level sibling. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 158 | * @param[in] node_when Set with nodes with "when" conditions. |
| 159 | * @param[in,out] diff Validation diff. |
| 160 | * @return LY_SUCCESS on success. |
| 161 | * @return LY_ERR value on error. |
| 162 | */ |
| 163 | static LY_ERR |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 164 | lyd_validate_unres_when(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when, |
| 165 | struct lyd_node **diff) |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 166 | { |
| 167 | LY_ERR ret; |
| 168 | uint32_t i; |
| 169 | const struct lysc_when *disabled; |
| 170 | struct lyd_node *node; |
| 171 | |
| 172 | if (!node_when->count) { |
| 173 | return LY_SUCCESS; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 174 | } |
| 175 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 176 | i = node_when->count; |
| 177 | do { |
| 178 | --i; |
| 179 | node = node_when->dnodes[i]; |
| 180 | |
| 181 | /* evaluate all when expressions that affect this node's existence */ |
| 182 | ret = lyd_validate_node_when(*tree, node, node->schema, &disabled); |
| 183 | if (!ret) { |
| 184 | if (disabled) { |
| 185 | /* when false */ |
| 186 | if (node->flags & LYD_WHEN_TRUE) { |
| 187 | /* autodelete */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 188 | lyd_del_move_root(tree, node, mod); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 189 | if (diff) { |
| 190 | /* add into diff */ |
| 191 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff)); |
| 192 | } |
| 193 | lyd_free_tree(node); |
| 194 | } else { |
| 195 | /* invalid data */ |
| 196 | LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOWHEN, disabled->cond->expr); |
| 197 | return LY_EVALID; |
| 198 | } |
| 199 | } else { |
| 200 | /* when true */ |
| 201 | node->flags |= LYD_WHEN_TRUE; |
| 202 | } |
| 203 | |
| 204 | /* remove this node from the set, its when was resolved */ |
| 205 | ly_set_rm_index(node_when, i, NULL); |
| 206 | } else if (ret != LY_EINCOMPLETE) { |
| 207 | /* error */ |
| 208 | return ret; |
| 209 | } |
| 210 | } while (i); |
| 211 | |
| 212 | return LY_SUCCESS; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | LY_ERR |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 216 | lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when, |
| 217 | struct ly_set *node_types, struct ly_set *meta_types, struct lyd_node **diff) |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 218 | { |
| 219 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 220 | uint32_t i; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 221 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 222 | if (node_when) { |
| 223 | /* evaluate all when conditions */ |
| 224 | uint32_t prev_count; |
| 225 | do { |
| 226 | prev_count = node_when->count; |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 227 | LY_CHECK_RET(lyd_validate_unres_when(tree, mod, node_when, diff)); |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 228 | /* there must have been some when conditions resolved */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 229 | } while (prev_count > node_when->count); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 230 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 231 | /* there could have been no cyclic when dependencies, checked during compilation */ |
| 232 | assert(!node_when->count); |
| 233 | } |
| 234 | |
| 235 | if (node_types && node_types->count) { |
| 236 | /* 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] | 237 | i = node_types->count; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 238 | do { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 239 | --i; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 240 | |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 241 | struct lyd_node_term *node = (struct lyd_node_term *)node_types->objs[i]; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 242 | struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 243 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 244 | /* resolve the value of the node */ |
| 245 | ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, (struct lyd_node *)node, *tree, |
| 246 | LY_VLOG_LYD, node); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 247 | LY_CHECK_RET(ret); |
| 248 | |
| 249 | /* remove this node from the set */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 250 | ly_set_rm_index(node_types, i, NULL); |
| 251 | } while (i); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 252 | } |
| 253 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 254 | if (meta_types && meta_types->count) { |
| 255 | /* ... and metadata values */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 256 | i = meta_types->count; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 257 | do { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 258 | --i; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 259 | |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 260 | struct lyd_meta *meta = (struct lyd_meta *)meta_types->objs[i]; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 261 | struct lysc_type *type = ((struct lyext_metadata *)meta->annotation->data)->type; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 262 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 263 | /* validate and store the value of the metadata */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 264 | ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree, |
| 265 | LY_VLOG_NONE, NULL); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 266 | LY_CHECK_RET(ret); |
| 267 | |
| 268 | /* remove this attr from the set */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 269 | ly_set_rm_index(meta_types, i, NULL); |
| 270 | } while (i); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 271 | } |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 272 | |
| 273 | return ret; |
| 274 | } |
| 275 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 276 | /** |
| 277 | * @brief Validate instance duplication. |
| 278 | * |
| 279 | * @param[in] first First sibling to search in. |
| 280 | * @param[in] node Data node instance to check. |
| 281 | * @return LY_ERR value. |
| 282 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 283 | static LY_ERR |
| 284 | lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node) |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 285 | { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 286 | struct lyd_node **match_p; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 287 | ly_bool fail = 0; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 288 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 289 | assert(node->flags & LYD_NEW); |
| 290 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 291 | if ((node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && (node->schema->flags & LYS_CONFIG_R)) { |
| 292 | /* duplicate instances allowed */ |
| 293 | return LY_SUCCESS; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 294 | } |
| 295 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 296 | /* find exactly the same next instance using hashes if possible */ |
| 297 | if (node->parent && node->parent->children_ht) { |
| 298 | if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) { |
| 299 | fail = 1; |
| 300 | } |
| 301 | } else { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 302 | for ( ; first; first = first->next) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 303 | if (first == node) { |
| 304 | continue; |
| 305 | } |
| 306 | |
| 307 | if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) { |
| 308 | if (first->schema == node->schema) { |
| 309 | fail = 1; |
| 310 | break; |
| 311 | } |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 312 | } else if (!lyd_compare_single(first, node, 0)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 313 | fail = 1; |
| 314 | break; |
| 315 | } |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | if (fail) { |
| 320 | LOGVAL(node->schema->module->ctx, LY_VLOG_LYD, node, LY_VCODE_DUP, node->schema->name); |
| 321 | return LY_EVALID; |
| 322 | } |
| 323 | return LY_SUCCESS; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 324 | } |
| 325 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 326 | /** |
| 327 | * @brief Validate multiple case data existence with possible autodelete. |
| 328 | * |
| 329 | * @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] | 330 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 331 | * @param[in] choic Choice node whose cases to check. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 332 | * @param[in,out] diff Validation diff. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 333 | * @return LY_ERR value. |
| 334 | */ |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 335 | static LY_ERR |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 336 | lyd_validate_cases(struct lyd_node **first, const struct lys_module *mod, const struct lysc_node_choice *choic, |
| 337 | struct lyd_node **diff) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 338 | { |
| 339 | const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL; |
| 340 | struct lyd_node *match, *to_del; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 341 | ly_bool found; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 342 | |
| 343 | LY_LIST_FOR((struct lysc_node *)choic->cases, scase) { |
| 344 | found = 0; |
| 345 | iter = NULL; |
| 346 | match = NULL; |
| 347 | while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) { |
| 348 | if (match->flags & LYD_NEW) { |
| 349 | /* a new case data found, nothing more to look for */ |
| 350 | found = 2; |
| 351 | break; |
| 352 | } else { |
| 353 | /* and old case data found */ |
| 354 | if (found == 0) { |
| 355 | found = 1; |
| 356 | } |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | if (found == 1) { |
| 361 | /* there should not be 2 old cases */ |
| 362 | if (old_case) { |
| 363 | /* old data from 2 cases */ |
| 364 | LOGVAL(choic->module->ctx, LY_VLOG_LYSC, choic, LY_VCODE_DUPCASE, old_case->name, scase->name); |
| 365 | return LY_EVALID; |
| 366 | } |
| 367 | |
| 368 | /* remember an old existing case */ |
| 369 | old_case = scase; |
| 370 | } else if (found == 2) { |
| 371 | if (new_case) { |
| 372 | /* new data from 2 cases */ |
| 373 | LOGVAL(choic->module->ctx, LY_VLOG_LYSC, choic, LY_VCODE_DUPCASE, new_case->name, scase->name); |
| 374 | return LY_EVALID; |
| 375 | } |
| 376 | |
| 377 | /* remember a new existing case */ |
| 378 | new_case = scase; |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | if (old_case && new_case) { |
| 383 | /* auto-delete old case */ |
| 384 | iter = NULL; |
| 385 | match = NULL; |
| 386 | to_del = NULL; |
| 387 | while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) { |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 388 | lyd_del_move_root(first, to_del, mod); |
| 389 | |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 390 | /* free previous node */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 391 | lyd_free_tree(to_del); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 392 | if (diff) { |
| 393 | /* add into diff */ |
| 394 | LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff)); |
| 395 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 396 | to_del = match; |
| 397 | } |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 398 | lyd_del_move_root(first, to_del, mod); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 399 | lyd_free_tree(to_del); |
| 400 | } |
| 401 | |
| 402 | return LY_SUCCESS; |
| 403 | } |
| 404 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 405 | /** |
| 406 | * @brief Check whether a schema node can have some default values (true for NP containers as well). |
| 407 | * |
| 408 | * @param[in] schema Schema node to check. |
| 409 | * @return non-zero if yes, |
| 410 | * @return 0 otherwise. |
| 411 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 412 | static int |
| 413 | lyd_val_has_default(const struct lysc_node *schema) |
| 414 | { |
| 415 | switch (schema->nodetype) { |
| 416 | case LYS_LEAF: |
| 417 | if (((struct lysc_node_leaf *)schema)->dflt) { |
| 418 | return 1; |
| 419 | } |
| 420 | break; |
| 421 | case LYS_LEAFLIST: |
| 422 | if (((struct lysc_node_leaflist *)schema)->dflts) { |
| 423 | return 1; |
| 424 | } |
| 425 | break; |
| 426 | case LYS_CONTAINER: |
| 427 | if (!(schema->flags & LYS_PRESENCE)) { |
| 428 | return 1; |
| 429 | } |
| 430 | break; |
| 431 | default: |
| 432 | break; |
| 433 | } |
| 434 | |
| 435 | return 0; |
| 436 | } |
| 437 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 438 | /** |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 439 | * @brief Properly delete a node as part of autodelete validation tasks. |
| 440 | * |
| 441 | * @param[in,out] first First sibling, is updated if needed. |
| 442 | * @param[in] node Node instance to delete. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 443 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 444 | * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed. |
| 445 | * @param[in,out] diff Validation diff. |
| 446 | */ |
| 447 | static void |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 448 | lyd_validate_autodel_node_del(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod, |
| 449 | struct lyd_node **next_p, struct lyd_node **diff) |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 450 | { |
| 451 | struct lyd_node *iter; |
| 452 | |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 453 | lyd_del_move_root(first, node, mod); |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 454 | if (node == *next_p) { |
| 455 | *next_p = (*next_p)->next; |
| 456 | } |
| 457 | if (diff) { |
| 458 | /* add into diff */ |
| 459 | if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) { |
| 460 | /* we do not want to track NP container changes, but remember any removed children */ |
| 461 | LY_LIST_FOR(lyd_child(node), iter) { |
| 462 | lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff); |
| 463 | } |
| 464 | } else { |
| 465 | lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff); |
| 466 | } |
| 467 | } |
| 468 | lyd_free_tree(node); |
| 469 | } |
| 470 | |
| 471 | /** |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 472 | * @brief Autodelete old instances to prevent validation errors. |
| 473 | * |
| 474 | * @param[in,out] first First sibling to search in, is updated if needed. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 475 | * @param[in] node New data node instance to check. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 476 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 477 | * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 478 | * @param[in,out] diff Validation diff. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 479 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 480 | static void |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 481 | lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod, |
| 482 | struct lyd_node **next_p, struct lyd_node **diff) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 483 | { |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 484 | struct lyd_node *match, *next; |
| 485 | |
| 486 | assert(node->flags & LYD_NEW); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 487 | |
| 488 | if (lyd_val_has_default(node->schema)) { |
| 489 | assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER)); |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 490 | LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 491 | if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) { |
| 492 | /* default instance found, remove it */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 493 | lyd_validate_autodel_node_del(first, match, mod, next_p, diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 494 | |
| 495 | /* remove only a single container/leaf default instance, if there are more, it is an error */ |
| 496 | if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) { |
| 497 | break; |
| 498 | } |
| 499 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 500 | } |
| 501 | } |
| 502 | } |
| 503 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 504 | /** |
| 505 | * @brief Autodelete leftover default nodes of deleted cases (that have no existing explicit data). |
| 506 | * |
| 507 | * @param[in,out] first First sibling to search in, is updated if needed. |
| 508 | * @param[in] node Default data node instance to check. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 509 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 510 | * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed. |
| 511 | * @param[in,out] diff Validation diff. |
| 512 | */ |
| 513 | static void |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 514 | lyd_validate_autodel_case_dflt(struct lyd_node **first, struct lyd_node *node, const struct lys_module *mod, |
| 515 | struct lyd_node **next_p, struct lyd_node **diff) |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 516 | { |
| 517 | struct lysc_node_choice *choic; |
| 518 | struct lyd_node *iter = NULL; |
| 519 | const struct lysc_node *slast = NULL; |
| 520 | |
| 521 | assert(node->flags & LYD_DEFAULT); |
| 522 | |
| 523 | if (!node->schema->parent || (node->schema->parent->nodetype != LYS_CASE)) { |
| 524 | /* the default node is not a descendant of a case */ |
| 525 | return; |
| 526 | } |
| 527 | |
| 528 | choic = (struct lysc_node_choice *)node->schema->parent->parent; |
| 529 | assert(choic->nodetype == LYS_CHOICE); |
| 530 | |
| 531 | if (choic->dflt && (choic->dflt == (struct lysc_node_case *)node->schema->parent)) { |
| 532 | /* data of a default case, keep them */ |
| 533 | return; |
| 534 | } |
| 535 | |
| 536 | /* try to find an explicit node of the case */ |
| 537 | while ((iter = lys_getnext_data(iter, *first, &slast, node->schema->parent, NULL))) { |
| 538 | if (!(iter->flags & LYD_DEFAULT)) { |
| 539 | break; |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | if (!iter) { |
| 544 | /* there are only default nodes of the case meaning it does not exist and neither should any default nodes |
| 545 | * of the case, remove this one default node */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 546 | lyd_validate_autodel_node_del(first, node, mod, next_p, diff); |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 547 | } |
| 548 | } |
| 549 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 550 | LY_ERR |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 551 | lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 552 | struct lyd_node **diff) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 553 | { |
| 554 | struct lyd_node *next, *node; |
| 555 | const struct lysc_node *snode = NULL; |
| 556 | |
| 557 | assert(first && (sparent || mod)); |
| 558 | |
| 559 | while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) { |
| 560 | /* check case duplicites */ |
| 561 | if (snode->nodetype == LYS_CHOICE) { |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 562 | LY_CHECK_RET(lyd_validate_cases(first, mod, (struct lysc_node_choice *)snode, diff)); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 563 | } |
| 564 | } |
| 565 | |
| 566 | LY_LIST_FOR_SAFE(*first, next, node) { |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 567 | if (mod && (lyd_owner_module(node) != mod)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 568 | /* all top-level data from this module checked */ |
| 569 | break; |
| 570 | } |
| 571 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 572 | if (!(node->flags & (LYD_NEW | LYD_DEFAULT))) { |
| 573 | /* check only new and default nodes */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 574 | continue; |
| 575 | } |
| 576 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 577 | if (node->flags & LYD_NEW) { |
| 578 | /* remove old default(s) of the new node if it exists */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 579 | lyd_validate_autodel_dup(first, node, mod, &next, diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 580 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 581 | /* then check new node instance duplicities */ |
| 582 | LY_CHECK_RET(lyd_validate_duplicates(*first, node)); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 583 | |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 584 | /* this node is valid */ |
| 585 | node->flags &= ~LYD_NEW; |
| 586 | } |
| 587 | |
| 588 | if (node->flags & LYD_DEFAULT) { |
| 589 | /* remove leftover default nodes from a no-longer existing case */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 590 | lyd_validate_autodel_case_dflt(first, node, mod, &next, diff); |
Michal Vasko | dcacf2f | 2020-11-18 18:18:15 +0100 | [diff] [blame] | 591 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | return LY_SUCCESS; |
| 595 | } |
| 596 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 597 | /** |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 598 | * @brief Evaluate any "when" conditions of a non-existent data node with existing parent. |
| 599 | * |
| 600 | * @param[in] first First data sibling of the non-existing node. |
| 601 | * @param[in] parent Data parent of the non-existing node. |
| 602 | * @param[in] snode Schema node of the non-existing node. |
| 603 | * @param[out] disabled First when that evaluated false, if any. |
| 604 | * @return LY_ERR value. |
| 605 | */ |
| 606 | static LY_ERR |
| 607 | lyd_validate_dummy_when(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode, |
| 608 | const struct lysc_when **disabled) |
| 609 | { |
| 610 | LY_ERR ret = LY_SUCCESS; |
| 611 | struct lyd_node *tree, *dummy = NULL; |
| 612 | |
| 613 | /* find root */ |
| 614 | if (parent) { |
| 615 | tree = (struct lyd_node *)parent; |
| 616 | while (tree->parent) { |
| 617 | tree = lyd_parent(tree); |
| 618 | } |
| 619 | tree = lyd_first_sibling(tree); |
| 620 | } else { |
| 621 | assert(!first || !first->prev->next); |
| 622 | tree = (struct lyd_node *)first; |
| 623 | } |
| 624 | |
| 625 | /* create dummy opaque node */ |
| 626 | ret = lyd_new_opaq((struct lyd_node *)parent, snode->module->ctx, snode->name, NULL, snode->module->name, &dummy); |
| 627 | LY_CHECK_GOTO(ret, cleanup); |
| 628 | |
| 629 | /* connect it if needed */ |
| 630 | if (!parent) { |
| 631 | if (first) { |
| 632 | lyd_insert_sibling((struct lyd_node *)first, dummy, &tree); |
| 633 | } else { |
| 634 | assert(!tree); |
| 635 | tree = dummy; |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | /* evaluate all when */ |
| 640 | ret = lyd_validate_node_when(tree, dummy, snode, disabled); |
| 641 | if (ret == LY_EINCOMPLETE) { |
| 642 | /* all other when must be resolved by now */ |
| 643 | LOGINT(snode->module->ctx); |
| 644 | ret = LY_EINT; |
| 645 | goto cleanup; |
| 646 | } else if (ret) { |
| 647 | /* error */ |
| 648 | goto cleanup; |
| 649 | } |
| 650 | |
| 651 | cleanup: |
| 652 | lyd_free_tree(dummy); |
| 653 | return ret; |
| 654 | } |
| 655 | |
| 656 | /** |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 657 | * @brief Validate mandatory node existence. |
| 658 | * |
| 659 | * @param[in] first First sibling to search in. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 660 | * @param[in] parent Data parent. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 661 | * @param[in] snode Schema node to validate. |
| 662 | * @return LY_ERR value. |
| 663 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 664 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 665 | lyd_validate_mandatory(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode) |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 666 | { |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 667 | const struct lysc_when *disabled; |
| 668 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 669 | if (snode->nodetype == LYS_CHOICE) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 670 | /* some data of a choice case exist */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 671 | if (lys_getnext_data(NULL, first, NULL, snode, NULL)) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 672 | return LY_SUCCESS; |
| 673 | } |
| 674 | } else { |
| 675 | assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY)); |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 676 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 677 | if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 678 | /* data instance found */ |
| 679 | return LY_SUCCESS; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 680 | } |
| 681 | } |
| 682 | |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 683 | disabled = NULL; |
| 684 | if (lysc_has_when(snode)) { |
| 685 | /* if there are any when conditions, they must be true for a validation error */ |
| 686 | LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled)); |
| 687 | } |
| 688 | |
| 689 | if (!disabled) { |
| 690 | /* node instance not found */ |
| 691 | LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMAND, snode->name); |
| 692 | return LY_EVALID; |
| 693 | } |
| 694 | |
| 695 | return LY_SUCCESS; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 696 | } |
| 697 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 698 | /** |
| 699 | * @brief Validate min/max-elements constraints, if any. |
| 700 | * |
| 701 | * @param[in] first First sibling to search in. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 702 | * @param[in] parent Data parent. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 703 | * @param[in] snode Schema node to validate. |
| 704 | * @param[in] min Minimum number of elements, 0 for no restriction. |
| 705 | * @param[in] max Max number of elements, 0 for no restriction. |
| 706 | * @return LY_ERR value. |
| 707 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 708 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 709 | lyd_validate_minmax(const struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *snode, |
| 710 | uint32_t min, uint32_t max) |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 711 | { |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 712 | uint32_t count = 0; |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 713 | struct lyd_node *iter; |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 714 | const struct lysc_when *disabled; |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 715 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 716 | assert(min || max); |
| 717 | |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 718 | LYD_LIST_FOR_INST(first, snode, iter) { |
| 719 | ++count; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 720 | |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 721 | if (min && (count == min)) { |
| 722 | /* satisfied */ |
| 723 | min = 0; |
| 724 | if (!max) { |
| 725 | /* nothing more to check */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 726 | break; |
| 727 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 728 | } |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 729 | if (max && (count > max)) { |
| 730 | /* not satisifed */ |
| 731 | break; |
| 732 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 733 | } |
| 734 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 735 | if (min) { |
| 736 | assert(count < min); |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 737 | |
| 738 | disabled = NULL; |
| 739 | if (lysc_has_when(snode)) { |
| 740 | /* if there are any when conditions, they must be true for a validation error */ |
| 741 | LY_CHECK_RET(lyd_validate_dummy_when(first, parent, snode, &disabled)); |
| 742 | } |
| 743 | |
| 744 | if (!disabled) { |
| 745 | LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMIN, snode->name); |
| 746 | return LY_EVALID; |
| 747 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 748 | } else if (max && (count > max)) { |
| 749 | LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMAX, snode->name); |
| 750 | return LY_EVALID; |
| 751 | } |
| 752 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 753 | return LY_SUCCESS; |
| 754 | } |
| 755 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 756 | /** |
| 757 | * @brief Find node referenced by a list unique statement. |
| 758 | * |
| 759 | * @param[in] uniq_leaf Unique leaf to find. |
| 760 | * @param[in] list List instance to use for the search. |
| 761 | * @return Found leaf, |
| 762 | * @return NULL if no leaf found. |
| 763 | */ |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 764 | static struct lyd_node * |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 765 | 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] | 766 | { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 767 | struct lyd_node *node; |
| 768 | const struct lysc_node *iter; |
| 769 | size_t depth = 0, i; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 770 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 771 | /* get leaf depth */ |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 772 | for (iter = (struct lysc_node *)uniq_leaf; iter && (iter != list->schema); iter = lysc_data_parent(iter)) { |
| 773 | ++depth; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 774 | } |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 775 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 776 | node = (struct lyd_node *)list; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 777 | while (node && depth) { |
| 778 | /* find schema node with this depth */ |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 779 | for (i = depth - 1, iter = (struct lysc_node *)uniq_leaf; i; iter = lysc_data_parent(iter)) { |
| 780 | --i; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | /* find iter instance in children */ |
| 784 | assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF)); |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 785 | lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 786 | --depth; |
| 787 | } |
| 788 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 789 | return node; |
| 790 | } |
| 791 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 792 | /** |
| 793 | * @brief Callback for comparing 2 list unique leaf values. |
| 794 | * |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 795 | * Implementation of ::values_equal_cb. |
| 796 | * |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 797 | * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique. |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 798 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 799 | static ly_bool |
| 800 | 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] | 801 | { |
| 802 | struct ly_ctx *ctx; |
| 803 | struct lysc_node_list *slist; |
| 804 | struct lyd_node *diter, *first, *second; |
| 805 | struct lyd_value *val1, *val2; |
| 806 | char *path1, *path2, *uniq_str, *ptr; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 807 | LY_ARRAY_COUNT_TYPE u, v, action; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 808 | |
| 809 | assert(val1_p && val2_p); |
| 810 | |
| 811 | first = *((struct lyd_node **)val1_p); |
| 812 | second = *((struct lyd_node **)val2_p); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 813 | action = (LY_ARRAY_COUNT_TYPE)cb_data; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 814 | |
| 815 | assert(first && (first->schema->nodetype == LYS_LIST)); |
| 816 | assert(second && (second->schema == first->schema)); |
| 817 | |
| 818 | ctx = first->schema->module->ctx; |
| 819 | |
| 820 | slist = (struct lysc_node_list *)first->schema; |
| 821 | |
| 822 | /* compare unique leaves */ |
| 823 | if (action > 0) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 824 | u = action - 1; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 825 | if (u < LY_ARRAY_COUNT(slist->uniques)) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 826 | goto uniquecheck; |
| 827 | } |
| 828 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 829 | LY_ARRAY_FOR(slist->uniques, u) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 830 | uniquecheck: |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 831 | LY_ARRAY_FOR(slist->uniques[u], v) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 832 | /* first */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 833 | diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 834 | if (diter) { |
| 835 | val1 = &((struct lyd_node_term *)diter)->value; |
| 836 | } else { |
| 837 | /* use default value */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 838 | val1 = slist->uniques[u][v]->dflt; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 839 | } |
| 840 | |
| 841 | /* second */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 842 | diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 843 | if (diter) { |
| 844 | val2 = &((struct lyd_node_term *)diter)->value; |
| 845 | } else { |
| 846 | /* use default value */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 847 | val2 = slist->uniques[u][v]->dflt; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) { |
| 851 | /* values differ or either one is not set */ |
| 852 | break; |
| 853 | } |
| 854 | } |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 855 | if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 856 | /* all unique leafs are the same in this set, create this nice error */ |
Radek Krejci | 635d2b8 | 2021-01-04 11:26:51 +0100 | [diff] [blame^] | 857 | path1 = lyd_path(first, LYD_PATH_STD, NULL, 0); |
| 858 | path2 = lyd_path(second, LYD_PATH_STD, NULL, 0); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 859 | |
| 860 | /* use buffer to rebuild the unique string */ |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 861 | #define UNIQ_BUF_SIZE 1024 |
| 862 | uniq_str = malloc(UNIQ_BUF_SIZE); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 863 | uniq_str[0] = '\0'; |
| 864 | ptr = uniq_str; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 865 | LY_ARRAY_FOR(slist->uniques[u], v) { |
| 866 | if (v) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 867 | strcpy(ptr, " "); |
| 868 | ++ptr; |
| 869 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 870 | ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], (struct lysc_node *)slist, LYSC_PATH_LOG, |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 871 | ptr, UNIQ_BUF_SIZE - (ptr - uniq_str)); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 872 | if (!ptr) { |
| 873 | /* path will be incomplete, whatever */ |
| 874 | break; |
| 875 | } |
| 876 | |
| 877 | ptr += strlen(ptr); |
| 878 | } |
| 879 | LOGVAL(ctx, LY_VLOG_LYD, second, LY_VCODE_NOUNIQ, uniq_str, path1, path2); |
| 880 | |
| 881 | free(path1); |
| 882 | free(path2); |
| 883 | free(uniq_str); |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 884 | #undef UNIQ_BUF_SIZE |
| 885 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 886 | return 1; |
| 887 | } |
| 888 | |
| 889 | if (action > 0) { |
| 890 | /* done */ |
| 891 | return 0; |
| 892 | } |
| 893 | } |
| 894 | |
| 895 | return 0; |
| 896 | } |
| 897 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 898 | /** |
| 899 | * @brief Validate list unique leaves. |
| 900 | * |
| 901 | * @param[in] first First sibling to search in. |
| 902 | * @param[in] snode Schema node to validate. |
| 903 | * @param[in] uniques List unique arrays to validate. |
| 904 | * @return LY_ERR value. |
| 905 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 906 | static LY_ERR |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 907 | lyd_validate_unique(const struct lyd_node *first, const struct lysc_node *snode, const struct lysc_node_leaf ***uniques) |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 908 | { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 909 | const struct lyd_node *diter; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 910 | struct ly_set *set; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 911 | LY_ARRAY_COUNT_TYPE u, v, x = 0; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 912 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 913 | uint32_t hash, i, size = 0; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 914 | ly_bool dynamic; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 915 | const char *str; |
| 916 | struct hash_table **uniqtables = NULL; |
| 917 | struct lyd_value *val; |
| 918 | struct ly_ctx *ctx = snode->module->ctx; |
| 919 | |
| 920 | assert(uniques); |
| 921 | |
| 922 | /* get all list instances */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 923 | LY_CHECK_RET(ly_set_new(&set)); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 924 | LY_LIST_FOR(first, diter) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 925 | if (diter->schema == snode) { |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 926 | ret = ly_set_add(set, (void *)diter, 1, NULL); |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 927 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 928 | } |
| 929 | } |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 930 | |
| 931 | if (set->count == 2) { |
| 932 | /* simple comparison */ |
| 933 | if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) { |
| 934 | /* instance duplication */ |
| 935 | ret = LY_EVALID; |
| 936 | goto cleanup; |
| 937 | } |
| 938 | } else if (set->count > 2) { |
| 939 | /* use hashes for comparison */ |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 940 | /* first, allocate the table, the size depends on number of items in the set, |
| 941 | * the following code detects number of upper zero bits in the items' counter value ... */ |
| 942 | for (i = (sizeof set->count * CHAR_BIT) - 1; i > 0; i--) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 943 | size = set->count << i; |
| 944 | size = size >> i; |
| 945 | if (size == set->count) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 946 | break; |
| 947 | } |
| 948 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 949 | LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup); |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 950 | /* ... and then we convert it to the position of the highest non-zero bit ... */ |
| 951 | i = (sizeof set->count * CHAR_BIT) - i; |
| 952 | /* ... and by using it to shift 1 to the left we get the closest sufficient hash table size */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 953 | size = 1 << i; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 954 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 955 | uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 956 | LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 957 | x = LY_ARRAY_COUNT(uniques); |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 958 | for (v = 0; v < x; v++) { |
| 959 | uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(v + 1L), 0); |
| 960 | LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 961 | } |
| 962 | |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 963 | for (i = 0; i < set->count; i++) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 964 | /* loop for unique - get the hash for the instances */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 965 | for (u = 0; u < x; u++) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 966 | val = NULL; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 967 | for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 968 | diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 969 | if (diter) { |
| 970 | val = &((struct lyd_node_term *)diter)->value; |
| 971 | } else { |
| 972 | /* use default value */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 973 | val = uniques[u][v]->dflt; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 974 | } |
| 975 | if (!val) { |
| 976 | /* unique item not present nor has default value */ |
| 977 | break; |
| 978 | } |
| 979 | |
| 980 | /* get canonical string value */ |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 981 | str = val->realtype->plugin->print(val, LY_PREF_JSON, NULL, &dynamic); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 982 | hash = dict_hash_multi(hash, str, strlen(str)); |
| 983 | if (dynamic) { |
| 984 | free((char *)str); |
| 985 | } |
| 986 | } |
| 987 | if (!val) { |
| 988 | /* skip this list instance since its unique set is incomplete */ |
| 989 | continue; |
| 990 | } |
| 991 | |
| 992 | /* finish the hash value */ |
| 993 | hash = dict_hash_multi(hash, NULL, 0); |
| 994 | |
| 995 | /* insert into the hashtable */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 996 | ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 997 | if (ret == LY_EEXIST) { |
| 998 | /* instance duplication */ |
| 999 | ret = LY_EVALID; |
| 1000 | } |
| 1001 | LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup); |
| 1002 | } |
| 1003 | } |
| 1004 | } |
| 1005 | |
| 1006 | cleanup: |
| 1007 | ly_set_free(set, NULL); |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1008 | for (v = 0; v < x; v++) { |
| 1009 | if (!uniqtables[v]) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1010 | /* failed when allocating uniquetables[j], following j are not allocated */ |
| 1011 | break; |
| 1012 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 1013 | lyht_free(uniqtables[v]); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1014 | } |
| 1015 | free(uniqtables); |
| 1016 | |
| 1017 | return ret; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1018 | } |
| 1019 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1020 | /** |
| 1021 | * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes. |
| 1022 | * |
| 1023 | * @param[in] first First sibling to search in. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1024 | * @param[in] parent Data parent. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1025 | * @param[in] sparent Schema parent of the nodes to check. |
| 1026 | * @param[in] mod Module of the nodes to check. |
| 1027 | * @param[in] val_opts Validation options, see @ref datavalidationoptions. |
| 1028 | * @param[in] op Operation being validated, if any. |
| 1029 | * @return LY_ERR value. |
| 1030 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1031 | static LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1032 | lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lyd_node *parent, |
| 1033 | const struct lysc_node *sparent, const struct lysc_module *mod, uint32_t val_opts, LYD_VALIDATE_OP op) |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1034 | { |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1035 | const struct lysc_node *snode = NULL; |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1036 | struct lysc_node_list *slist; |
Michal Vasko | d8958df | 2020-08-05 13:27:36 +0200 | [diff] [blame] | 1037 | struct lysc_node_leaflist *sllist; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1038 | uint32_t getnext_opts; |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1039 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1040 | getnext_opts = LYS_GETNEXT_WITHCHOICE | LYS_GETNEXT_WITHCASE | (op == LYD_VALIDATE_OP_REPLY ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1041 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1042 | /* disabled nodes are skipped by lys_getnext */ |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1043 | while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1044 | if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) { |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 1045 | continue; |
| 1046 | } |
| 1047 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1048 | /* check min-elements and max-elements */ |
Michal Vasko | d8958df | 2020-08-05 13:27:36 +0200 | [diff] [blame] | 1049 | if (snode->nodetype == LYS_LIST) { |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1050 | slist = (struct lysc_node_list *)snode; |
| 1051 | if (slist->min || slist->max) { |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1052 | LY_CHECK_RET(lyd_validate_minmax(first, parent, snode, slist->min, slist->max)); |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1053 | } |
Michal Vasko | d8958df | 2020-08-05 13:27:36 +0200 | [diff] [blame] | 1054 | } else if (snode->nodetype == LYS_LEAFLIST) { |
| 1055 | sllist = (struct lysc_node_leaflist *)snode; |
| 1056 | if (sllist->min || sllist->max) { |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1057 | LY_CHECK_RET(lyd_validate_minmax(first, parent, snode, sllist->min, sllist->max)); |
Michal Vasko | d8958df | 2020-08-05 13:27:36 +0200 | [diff] [blame] | 1058 | } |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1059 | |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1060 | } else if (snode->flags & LYS_MAND_TRUE) { |
Radek Krejci | f6a1100 | 2020-08-21 13:29:07 +0200 | [diff] [blame] | 1061 | /* check generic mandatory existence */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1062 | LY_CHECK_RET(lyd_validate_mandatory(first, parent, snode)); |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1063 | } |
| 1064 | |
| 1065 | /* check unique */ |
| 1066 | if (snode->nodetype == LYS_LIST) { |
| 1067 | slist = (struct lysc_node_list *)snode; |
| 1068 | if (slist->uniques) { |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1069 | LY_CHECK_RET(lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques)); |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1070 | } |
| 1071 | } |
| 1072 | |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1073 | if (snode->nodetype & (LYS_CHOICE | LYS_CASE)) { |
| 1074 | /* go recursively for schema-only nodes */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1075 | LY_CHECK_RET(lyd_validate_siblings_schema_r(first, parent, snode, mod, val_opts, op)); |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1076 | } |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1077 | } |
| 1078 | |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1079 | return LY_SUCCESS; |
| 1080 | } |
| 1081 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1082 | /** |
| 1083 | * @brief Validate obsolete nodes, only warnings are printed. |
| 1084 | * |
| 1085 | * @param[in] node Node to check. |
| 1086 | */ |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 1087 | static void |
| 1088 | lyd_validate_obsolete(const struct lyd_node *node) |
| 1089 | { |
| 1090 | const struct lysc_node *snode; |
| 1091 | |
| 1092 | snode = node->schema; |
| 1093 | do { |
| 1094 | if (snode->flags & LYS_STATUS_OBSLT) { |
| 1095 | LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name); |
| 1096 | break; |
| 1097 | } |
| 1098 | |
| 1099 | snode = snode->parent; |
| 1100 | } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE))); |
| 1101 | } |
| 1102 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1103 | /** |
| 1104 | * @brief Validate must conditions of a data node. |
| 1105 | * |
| 1106 | * @param[in] node Node to validate. |
| 1107 | * @param[in] op Operation being validated, if any. |
| 1108 | * @return LY_ERR value. |
| 1109 | */ |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1110 | static LY_ERR |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1111 | lyd_validate_must(const struct lyd_node *node, LYD_VALIDATE_OP op) |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1112 | { |
| 1113 | struct lyxp_set xp_set; |
| 1114 | struct lysc_must *musts; |
| 1115 | const struct lyd_node *tree; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1116 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1117 | |
| 1118 | switch (node->schema->nodetype) { |
| 1119 | case LYS_CONTAINER: |
| 1120 | musts = ((struct lysc_node_container *)node->schema)->musts; |
| 1121 | break; |
| 1122 | case LYS_LEAF: |
| 1123 | musts = ((struct lysc_node_leaf *)node->schema)->musts; |
| 1124 | break; |
| 1125 | case LYS_LEAFLIST: |
| 1126 | musts = ((struct lysc_node_leaflist *)node->schema)->musts; |
| 1127 | break; |
| 1128 | case LYS_LIST: |
| 1129 | musts = ((struct lysc_node_list *)node->schema)->musts; |
| 1130 | break; |
| 1131 | case LYS_ANYXML: |
| 1132 | case LYS_ANYDATA: |
| 1133 | musts = ((struct lysc_node_anydata *)node->schema)->musts; |
| 1134 | break; |
| 1135 | case LYS_NOTIF: |
| 1136 | musts = ((struct lysc_notif *)node->schema)->musts; |
| 1137 | break; |
| 1138 | case LYS_RPC: |
| 1139 | case LYS_ACTION: |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1140 | if (op == LYD_VALIDATE_OP_RPC) { |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1141 | musts = ((struct lysc_action *)node->schema)->input.musts; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1142 | } else if (op == LYD_VALIDATE_OP_REPLY) { |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1143 | musts = ((struct lysc_action *)node->schema)->output.musts; |
| 1144 | } else { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1145 | LOGINT(LYD_CTX(node)); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1146 | return LY_EINT; |
| 1147 | } |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1148 | break; |
| 1149 | default: |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1150 | LOGINT(LYD_CTX(node)); |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1151 | return LY_EINT; |
| 1152 | } |
| 1153 | |
| 1154 | if (!musts) { |
| 1155 | /* no must to evaluate */ |
| 1156 | return LY_SUCCESS; |
| 1157 | } |
| 1158 | |
| 1159 | /* find first top-level node */ |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 1160 | for (tree = node; tree->parent; tree = (struct lyd_node *)tree->parent) {} |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1161 | while (tree->prev->next) { |
| 1162 | tree = tree->prev; |
| 1163 | } |
| 1164 | |
| 1165 | LY_ARRAY_FOR(musts, u) { |
| 1166 | memset(&xp_set, 0, sizeof xp_set); |
| 1167 | |
| 1168 | /* evaluate must */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 1169 | LY_CHECK_RET(lyxp_eval(musts[u].cond, node->schema->module, LY_PREF_SCHEMA_RESOLVED, musts[u].prefixes, node, |
| 1170 | tree, &xp_set, LYXP_SCHEMA)); |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1171 | |
| 1172 | /* check the result */ |
| 1173 | lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1174 | if (!xp_set.val.bln) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1175 | LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOMUST, musts[u].cond->expr); |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1176 | return LY_EVALID; |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | return LY_SUCCESS; |
| 1181 | } |
| 1182 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1183 | LY_ERR |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1184 | lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent, |
| 1185 | const struct lys_module *mod, uint32_t val_opts, LYD_VALIDATE_OP op) |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1186 | { |
Radek Krejci | 7f769d7 | 2020-07-11 23:13:56 +0200 | [diff] [blame] | 1187 | struct lyd_node *next = NULL, *node; |
Michal Vasko | acd83e7 | 2020-02-04 14:12:01 +0100 | [diff] [blame] | 1188 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1189 | /* validate all restrictions of nodes themselves */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1190 | LY_LIST_FOR_SAFE(first, next, node) { |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 1191 | if (mod && (lyd_owner_module(node) != mod)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1192 | /* all top-level data from this module checked */ |
| 1193 | break; |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1194 | } |
| 1195 | |
Michal Vasko | a8c6172 | 2020-03-27 16:59:32 +0100 | [diff] [blame] | 1196 | /* opaque data */ |
| 1197 | if (!node->schema) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1198 | LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LYVE_DATA, "Opaque node \"%s\" found.", |
Michal Vasko | 6a66ffb | 2020-11-23 16:59:22 +0100 | [diff] [blame] | 1199 | ((struct lyd_node_opaq *)node)->name.name); |
Michal Vasko | a8c6172 | 2020-03-27 16:59:32 +0100 | [diff] [blame] | 1200 | return LY_EVALID; |
| 1201 | } |
| 1202 | |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1203 | /* no state/input/output data */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1204 | if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1205 | LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "state", node->schema->name); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1206 | return LY_EVALID; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1207 | } else if ((op == LYD_VALIDATE_OP_RPC) && (node->schema->flags & LYS_CONFIG_R)) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1208 | LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "output", node->schema->name); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1209 | return LY_EVALID; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1210 | } else if ((op == LYD_VALIDATE_OP_REPLY) && (node->schema->flags & LYS_CONFIG_W)) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1211 | LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "input", node->schema->name); |
Michal Vasko | 5b37a35 | 2020-03-06 13:38:33 +0100 | [diff] [blame] | 1212 | return LY_EVALID; |
| 1213 | } |
| 1214 | |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 1215 | /* obsolete data */ |
| 1216 | lyd_validate_obsolete(node); |
| 1217 | |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1218 | /* node's musts */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1219 | LY_CHECK_RET(lyd_validate_must(node, op)); |
Michal Vasko | cc048b2 | 2020-03-27 15:52:38 +0100 | [diff] [blame] | 1220 | |
Michal Vasko | 53d97a1 | 2020-11-05 17:39:10 +0100 | [diff] [blame] | 1221 | /* node value was checked by plugins */ |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1222 | } |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1223 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1224 | /* validate schema-based restrictions */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1225 | LY_CHECK_RET(lyd_validate_siblings_schema_r(first, parent, sparent, mod ? mod->compiled : NULL, val_opts, op)); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1226 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1227 | LY_LIST_FOR(first, node) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1228 | /* validate all children recursively */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1229 | LY_CHECK_RET(lyd_validate_final_r(lyd_child(node), node, node->schema, NULL, val_opts, op)); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1230 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1231 | /* set default for containers */ |
| 1232 | if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) { |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 1233 | LY_LIST_FOR(lyd_child(node), next) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1234 | if (!(next->flags & LYD_DEFAULT)) { |
| 1235 | break; |
| 1236 | } |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1237 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1238 | if (!next) { |
| 1239 | node->flags |= LYD_DEFAULT; |
| 1240 | } |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1241 | } |
| 1242 | } |
| 1243 | |
| 1244 | return LY_SUCCESS; |
| 1245 | } |
| 1246 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1247 | /** |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1248 | * @brief Validate the whole data subtree. |
| 1249 | * |
| 1250 | * @param[in] root Subtree root. |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1251 | * @param[in,out] node_types Set for unres node types. |
| 1252 | * @param[in,out] meta_types Set for unres metadata types. |
| 1253 | * @param[in,out] node_when Set for nodes with when conditions. |
Michal Vasko | 29adfbe | 2020-12-08 17:12:03 +0100 | [diff] [blame] | 1254 | * @param[in] impl_opts Implicit options, see @ref implicitoptions. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1255 | * @param[in,out] diff Validation diff. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1256 | * @return LY_ERR value. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1257 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1258 | static LY_ERR |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1259 | lyd_validate_subtree(struct lyd_node *root, struct ly_set *node_types, struct ly_set *meta_types, |
Michal Vasko | 29adfbe | 2020-12-08 17:12:03 +0100 | [diff] [blame] | 1260 | struct ly_set *node_when, uint32_t impl_opts, struct lyd_node **diff) |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1261 | { |
| 1262 | const struct lyd_meta *meta; |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1263 | struct lyd_node *node; |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1264 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1265 | LYD_TREE_DFS_BEGIN(root, node) { |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1266 | LY_LIST_FOR(node->meta, meta) { |
| 1267 | if (((struct lyext_metadata *)meta->annotation->data)->type->plugin->validate) { |
| 1268 | /* metadata type resolution */ |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1269 | LY_CHECK_RET(ly_set_add(meta_types, (void *)meta, 1, NULL)); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1270 | } |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1271 | } |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1272 | |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1273 | if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) { |
| 1274 | /* node type resolution */ |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1275 | LY_CHECK_RET(ly_set_add(node_types, (void *)node, 1, NULL)); |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1276 | } else if (node->schema->nodetype & LYD_NODE_INNER) { |
| 1277 | /* new node validation, autodelete */ |
| 1278 | LY_CHECK_RET(lyd_validate_new(lyd_node_children_p((struct lyd_node *)node), node->schema, NULL, diff)); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1279 | |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1280 | /* add nested defaults */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1281 | LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, NULL, |
Michal Vasko | 29adfbe | 2020-12-08 17:12:03 +0100 | [diff] [blame] | 1282 | NULL, impl_opts, diff)); |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1283 | } |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1284 | |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1285 | if (!(node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && node->schema->when) { |
| 1286 | /* when evaluation */ |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1287 | LY_CHECK_RET(ly_set_add(node_when, (void *)node, 1, NULL)); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1288 | } |
| 1289 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1290 | LYD_TREE_DFS_END(root, node); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1291 | } |
| 1292 | |
| 1293 | return LY_SUCCESS; |
| 1294 | } |
| 1295 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1296 | /** |
| 1297 | * @brief Validate data tree. |
| 1298 | * |
| 1299 | * @param[in,out] tree Data tree to validate, nodes may be autodeleted. |
| 1300 | * @param[in] modules Array of modules to validate, NULL for all modules. |
| 1301 | * @param[in] mod_count Count of @p modules. |
| 1302 | * @param[in] ly_ctx libyang context. |
| 1303 | * @param[in] val_opts Validation options, see @ref datavalidationoptions. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1304 | * @param[out] diff Generated validation diff, not generated if NULL. |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1305 | * @return LY_ERR value. |
| 1306 | */ |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1307 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1308 | lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1309 | struct lyd_node **diff) |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1310 | { |
| 1311 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 73e4721 | 2020-12-03 14:20:16 +0100 | [diff] [blame] | 1312 | struct lyd_node *first, *next, **first2, *iter; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1313 | const struct lys_module *mod; |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1314 | struct ly_set node_types = {0}, meta_types = {0}, node_when = {0}; |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1315 | uint32_t i = 0; |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1316 | |
Michal Vasko | 26e8001 | 2020-07-08 10:55:46 +0200 | [diff] [blame] | 1317 | LY_CHECK_ARG_RET(NULL, tree, *tree || ctx || module, LY_EINVAL); |
Michal Vasko | 5a532f3 | 2020-12-10 12:18:47 +0100 | [diff] [blame] | 1318 | if (!ctx && !module) { |
| 1319 | ctx = LYD_CTX(*tree); |
| 1320 | } |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1321 | if (diff) { |
| 1322 | *diff = NULL; |
| 1323 | } |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1324 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1325 | next = *tree; |
| 1326 | while (1) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1327 | if (val_opts & LYD_VALIDATE_PRESENT) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1328 | mod = lyd_data_next_module(&next, &first); |
| 1329 | } else { |
Michal Vasko | 26e8001 | 2020-07-08 10:55:46 +0200 | [diff] [blame] | 1330 | mod = lyd_mod_next_module(next, module, ctx, &i, &first); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1331 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1332 | if (!mod) { |
| 1333 | break; |
| 1334 | } |
Michal Vasko | 7c4cf1e | 2020-06-22 10:04:30 +0200 | [diff] [blame] | 1335 | if (!first || (first == *tree)) { |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1336 | /* make sure first2 changes are carried to tree */ |
| 1337 | first2 = tree; |
| 1338 | } else { |
| 1339 | first2 = &first; |
| 1340 | } |
| 1341 | |
| 1342 | /* validate new top-level nodes of this module, autodelete */ |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1343 | ret = lyd_validate_new(first2, NULL, mod, diff); |
| 1344 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1345 | |
Michal Vasko | 0275cf6 | 2020-11-05 17:40:30 +0100 | [diff] [blame] | 1346 | /* add all top-level defaults for this module, do not add into unres sets, will occur in the next step */ |
| 1347 | ret = lyd_new_implicit_r(NULL, first2, NULL, mod, NULL, NULL, val_opts & LYD_VALIDATE_NO_STATE ? |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1348 | LYD_IMPLICIT_NO_STATE : 0, diff); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1349 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1350 | |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 1351 | /* our first module node pointer may no longer be the first */ |
| 1352 | while (*first2 && (*first2)->prev->next && (lyd_owner_module(*first2) == lyd_owner_module((*first2)->prev))) { |
| 1353 | *first2 = (*first2)->prev; |
| 1354 | } |
| 1355 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1356 | /* process nested nodes */ |
Michal Vasko | 73e4721 | 2020-12-03 14:20:16 +0100 | [diff] [blame] | 1357 | LY_LIST_FOR(*first2, iter) { |
Michal Vasko | 79135ae | 2020-12-16 10:08:35 +0100 | [diff] [blame] | 1358 | ret = lyd_validate_subtree(iter, &node_types, &meta_types, &node_when, val_opts & LYD_VALIDATE_NO_STATE ? |
| 1359 | LYD_IMPLICIT_NO_STATE : 0, diff); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1360 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1361 | } |
| 1362 | |
| 1363 | /* finish incompletely validated terminal values/attributes and when conditions */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 1364 | ret = lyd_validate_unres(first2, mod, &node_when, &node_types, &meta_types, diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1365 | LY_CHECK_GOTO(ret, cleanup); |
| 1366 | |
| 1367 | /* perform final validation that assumes the data tree is final */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1368 | ret = lyd_validate_final_r(*first2, NULL, NULL, mod, val_opts, 0); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1369 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1370 | } |
| 1371 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1372 | cleanup: |
Michal Vasko | 3271138 | 2020-12-03 14:14:31 +0100 | [diff] [blame] | 1373 | ly_set_erase(&node_types, NULL); |
| 1374 | ly_set_erase(&meta_types, NULL); |
| 1375 | ly_set_erase(&node_when, NULL); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1376 | return ret; |
| 1377 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1378 | |
| 1379 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1380 | 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] | 1381 | { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1382 | return lyd_validate(tree, NULL, ctx, val_opts, diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1383 | } |
| 1384 | |
| 1385 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1386 | 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] | 1387 | { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1388 | return lyd_validate(tree, module, NULL, val_opts, diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1389 | } |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1390 | |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1391 | /** |
| 1392 | * @brief Find nodes for merging an operation into data tree for validation. |
| 1393 | * |
| 1394 | * @param[in] op_tree Full operation data tree. |
| 1395 | * @param[in] op_node Operation node itself. |
| 1396 | * @param[in] tree Data tree to be merged into. |
| 1397 | * @param[out] op_subtree Operation subtree to merge. |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1398 | * @param[out] tree_sibling Data tree sibling to merge next to, is set if @p tree_parent is NULL. |
| 1399 | * @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] | 1400 | */ |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1401 | static void |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1402 | 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] | 1403 | 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] | 1404 | { |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1405 | const struct lyd_node *tree_iter, *op_iter; |
| 1406 | struct lyd_node *match; |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1407 | uint32_t i, cur_depth, op_depth; |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1408 | |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1409 | *op_subtree = NULL; |
| 1410 | *tree_sibling = NULL; |
| 1411 | *tree_parent = NULL; |
| 1412 | |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1413 | /* learn op depth (top-level being depth 0) */ |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1414 | op_depth = 0; |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1415 | for (op_iter = op_node; op_iter != op_tree; op_iter = (struct lyd_node *)op_iter->parent) { |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1416 | ++op_depth; |
| 1417 | } |
| 1418 | |
| 1419 | /* find where to merge op */ |
| 1420 | tree_iter = tree; |
| 1421 | cur_depth = op_depth; |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1422 | while (cur_depth && tree_iter) { |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1423 | /* find op iter in tree */ |
| 1424 | lyd_find_sibling_first(tree_iter, op_iter, &match); |
| 1425 | if (!match) { |
| 1426 | break; |
| 1427 | } |
| 1428 | |
| 1429 | /* move tree_iter */ |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 1430 | tree_iter = lyd_child(match); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1431 | |
| 1432 | /* move depth */ |
| 1433 | --cur_depth; |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1434 | |
| 1435 | /* find next op parent */ |
| 1436 | op_iter = op_node; |
| 1437 | for (i = 0; i < cur_depth; ++i) { |
| 1438 | op_iter = (struct lyd_node *)op_iter->parent; |
| 1439 | } |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1440 | } |
| 1441 | |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1442 | assert(op_iter); |
Michal Vasko | bb84467 | 2020-07-03 11:06:12 +0200 | [diff] [blame] | 1443 | *op_subtree = (struct lyd_node *)op_iter; |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1444 | if (!tree || tree_iter) { |
| 1445 | /* there is no tree whatsoever or this is the last found sibling */ |
| 1446 | *tree_sibling = (struct lyd_node *)tree_iter; |
| 1447 | } else { |
| 1448 | /* matching parent was found but it has no children to insert next to */ |
| 1449 | assert(match); |
| 1450 | *tree_parent = match; |
| 1451 | } |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1452 | } |
| 1453 | |
| 1454 | API LY_ERR |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1455 | lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *tree, LYD_VALIDATE_OP op, struct lyd_node **diff) |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1456 | { |
| 1457 | LY_ERR ret; |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1458 | struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_node, *op_parent; |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1459 | struct ly_set type_check = {0}, type_meta_check = {0}, when_check = {0}; |
| 1460 | |
| 1461 | LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !tree || !tree->parent, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1462 | (op == LYD_VALIDATE_OP_NOTIF) || (op == LYD_VALIDATE_OP_RPC) || (op == LYD_VALIDATE_OP_REPLY), LY_EINVAL); |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 1463 | if (diff) { |
| 1464 | *diff = NULL; |
| 1465 | } |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1466 | |
| 1467 | /* find the operation/notification */ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1468 | LYD_TREE_DFS_BEGIN(op_tree, op_node) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1469 | if (((op == LYD_VALIDATE_OP_RPC) || (op == LYD_VALIDATE_OP_REPLY)) && (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) { |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1470 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1471 | } else if ((op == LYD_VALIDATE_OP_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) { |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1472 | break; |
| 1473 | } |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1474 | LYD_TREE_DFS_END(op_tree, op_node); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1475 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1476 | if ((op == LYD_VALIDATE_OP_RPC) || (op == LYD_VALIDATE_OP_REPLY)) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1477 | if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1478 | 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] | 1479 | return LY_EINVAL; |
| 1480 | } |
| 1481 | } else { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1482 | if (op_node->schema->nodetype != LYS_NOTIF) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1483 | LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found."); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1484 | return LY_EINVAL; |
| 1485 | } |
| 1486 | } |
| 1487 | |
| 1488 | /* move op_tree to top-level node */ |
| 1489 | while (op_tree->parent) { |
| 1490 | op_tree = (struct lyd_node *)op_tree->parent; |
| 1491 | } |
| 1492 | |
| 1493 | /* merge op_tree into tree */ |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1494 | lyd_val_op_merge_find(op_tree, op_node, tree, &op_subtree, &tree_sibling, &tree_parent); |
| 1495 | op_parent = lyd_parent(op_subtree); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1496 | lyd_unlink_tree(op_subtree); |
Michal Vasko | 2f03d22 | 2020-12-09 18:15:51 +0100 | [diff] [blame] | 1497 | lyd_insert_node(tree_parent, &tree_sibling, op_subtree); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1498 | if (!tree) { |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1499 | tree = tree_sibling; |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1500 | } |
| 1501 | |
| 1502 | /* prevalidate whole operation subtree */ |
Michal Vasko | 29adfbe | 2020-12-08 17:12:03 +0100 | [diff] [blame] | 1503 | LY_CHECK_GOTO(ret = lyd_validate_subtree(op_node, &type_check, &type_meta_check, &when_check, |
| 1504 | op == LYD_VALIDATE_OP_REPLY ? LYD_IMPLICIT_OUTPUT : 0, diff), cleanup); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1505 | |
| 1506 | /* finish incompletely validated terminal values/attributes and when conditions on the full tree */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 1507 | LY_CHECK_GOTO(ret = lyd_validate_unres((struct lyd_node **)&tree, NULL, &when_check, &type_check, &type_meta_check, |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1508 | diff), cleanup); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1509 | |
| 1510 | /* perform final validation of the operation/notification */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1511 | lyd_validate_obsolete(op_node); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1512 | LY_CHECK_GOTO(ret = lyd_validate_must(op_node, op), cleanup); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1513 | |
| 1514 | /* final validation of all the descendants */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 1515 | LY_CHECK_GOTO(ret = lyd_validate_final_r(lyd_child(op_node), op_node, op_node->schema, NULL, 0, op), cleanup); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1516 | |
| 1517 | cleanup: |
| 1518 | /* restore operation tree */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1519 | lyd_unlink_tree(op_subtree); |
Michal Vasko | cb7526d | 2020-03-30 15:08:26 +0200 | [diff] [blame] | 1520 | if (op_parent) { |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1521 | lyd_insert_node(op_parent, NULL, op_subtree); |
Michal Vasko | fea12c6 | 2020-03-30 11:00:15 +0200 | [diff] [blame] | 1522 | } |
| 1523 | |
| 1524 | ly_set_erase(&type_check, NULL); |
| 1525 | ly_set_erase(&type_meta_check, NULL); |
| 1526 | ly_set_erase(&when_check, NULL); |
| 1527 | return ret; |
| 1528 | } |