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