Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file validation.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Data tree validation functions |
| 5 | * |
| 6 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 7 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 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 |
Michal Vasko | 8de098c | 2016-02-26 10:00:25 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 15 | #include <assert.h> |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 16 | #include <stdlib.h> |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 17 | #include <string.h> |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 18 | |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 19 | #include "common.h" |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 20 | #include "validation.h" |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 21 | #include "libyang.h" |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 22 | #include "xpath.h" |
Radek Krejci | cf50998 | 2015-12-15 09:22:44 +0100 | [diff] [blame] | 23 | #include "parser.h" |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 24 | #include "resolve.h" |
| 25 | #include "tree_internal.h" |
Michal Vasko | fc5744d | 2015-10-22 12:09:34 +0200 | [diff] [blame] | 26 | #include "xml_internal.h" |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 27 | |
Radek Krejci | b45b308 | 2016-09-09 16:08:51 +0200 | [diff] [blame] | 28 | static int |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 29 | lyv_keys(const struct lyd_node *list) |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 30 | { |
Radek Krejci | 702deb8 | 2016-03-09 12:37:57 +0100 | [diff] [blame] | 31 | struct lyd_node *child; |
| 32 | struct lys_node_list *schema = (struct lys_node_list *)list->schema; /* shortcut */ |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 33 | int i; |
| 34 | |
Radek Krejci | 702deb8 | 2016-03-09 12:37:57 +0100 | [diff] [blame] | 35 | for (i = 0, child = list->child; i < schema->keys_size; i++, child = child->next) { |
| 36 | if (!child || child->schema != (struct lys_node *)schema->keys[i]) { |
| 37 | /* key not found on the correct place */ |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 38 | LOGVAL(LYE_MISSELEM, LY_VLOG_LYD, list, schema->keys[i]->name, schema->name); |
Radek Krejci | 702deb8 | 2016-03-09 12:37:57 +0100 | [diff] [blame] | 39 | for ( ; child; child = child->next) { |
| 40 | if (child->schema == (struct lys_node *)schema->keys[i]) { |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 41 | LOGVAL(LYE_SPEC, LY_VLOG_LYD, child, "Invalid position of the key element."); |
Radek Krejci | 702deb8 | 2016-03-09 12:37:57 +0100 | [diff] [blame] | 42 | break; |
| 43 | } |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 44 | } |
Radek Krejci | 702deb8 | 2016-03-09 12:37:57 +0100 | [diff] [blame] | 45 | return EXIT_FAILURE; |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 46 | } |
| 47 | } |
Radek Krejci | b1c1251 | 2015-08-11 11:22:04 +0200 | [diff] [blame] | 48 | return EXIT_SUCCESS; |
| 49 | } |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 50 | |
| 51 | int |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 52 | lyv_data_context(const struct lyd_node *node, int options, struct unres_data *unres) |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 53 | { |
Radek Krejci | 6baaa9a | 2016-02-23 16:07:12 +0100 | [diff] [blame] | 54 | const struct lys_node *siter = NULL; |
Radek Krejci | b1f318b | 2016-08-22 16:18:37 +0200 | [diff] [blame] | 55 | struct lyd_node_leaf_list *leaf = (struct lyd_node_leaf_list *)node; |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 56 | |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 57 | assert(node); |
Radek Krejci | 03b71f7 | 2016-03-16 11:10:09 +0100 | [diff] [blame] | 58 | assert(unres); |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 59 | |
| 60 | /* check if the node instance is enabled by if-feature */ |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 61 | if (lys_is_disabled(node->schema, 2)) { |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 62 | LOGVAL(LYE_INELEM, LY_VLOG_LYD, node, node->schema->name); |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 63 | return EXIT_FAILURE; |
| 64 | } |
| 65 | |
Radek Krejci | b1f318b | 2016-08-22 16:18:37 +0200 | [diff] [blame] | 66 | if (node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 67 | /* if union with leafref/intsid, leafref itself (invalid) or instance-identifier, store the node for later resolving */ |
| 68 | if ((((struct lys_node_leaf *)leaf->schema)->type.base == LY_TYPE_UNION) |
| 69 | && ((struct lys_node_leaf *)leaf->schema)->type.info.uni.has_ptr_type) { |
| 70 | if (unres_data_add(unres, (struct lyd_node *)node, UNRES_UNION)) { |
| 71 | return EXIT_FAILURE; |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 72 | } |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 73 | } else if ((((struct lys_node_leaf *)leaf->schema)->type.base == LY_TYPE_LEAFREF) && (leaf->validity & LYD_VAL_LEAFREF)) { |
| 74 | if (unres_data_add(unres, (struct lyd_node *)node, UNRES_LEAFREF)) { |
| 75 | return EXIT_FAILURE; |
| 76 | } |
| 77 | } else if (((struct lys_node_leaf *)leaf->schema)->type.base == LY_TYPE_INST) { |
| 78 | if (unres_data_add(unres, (struct lyd_node *)node, UNRES_INSTID)) { |
| 79 | return EXIT_FAILURE; |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 80 | } |
Michal Vasko | 0d182ba | 2015-10-09 09:29:14 +0200 | [diff] [blame] | 81 | } |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 82 | } |
| 83 | |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 84 | /* check all relevant when conditions */ |
Michal Vasko | ad2e44a | 2017-01-03 10:31:35 +0100 | [diff] [blame^] | 85 | if (node->when_status & LYD_WHEN) { |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 86 | if (unres_data_add(unres, (struct lyd_node *)node, UNRES_WHEN)) { |
Michal Vasko | 0d182ba | 2015-10-09 09:29:14 +0200 | [diff] [blame] | 87 | return EXIT_FAILURE; |
| 88 | } |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | /* check for (non-)presence of status data in edit-config data */ |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 92 | if ((options & (LYD_OPT_EDIT | LYD_OPT_GETCONFIG | LYD_OPT_CONFIG)) && (node->schema->flags & LYS_CONFIG_R)) { |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 93 | LOGVAL(LYE_INELEM, LY_VLOG_LYD, node, node->schema->name); |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 94 | return EXIT_FAILURE; |
| 95 | } |
| 96 | |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 97 | /* check elements order in case of RPC's input and output */ |
Michal Vasko | ad2e44a | 2017-01-03 10:31:35 +0100 | [diff] [blame^] | 98 | if (!(options & (LYD_OPT_TRUSTED | LYD_OPT_NOTIF_FILTER)) && (node->validity & LYD_VAL_MAND) && lyp_is_rpc_action(node->schema)) { |
Michal Vasko | 15e0bab | 2016-02-24 13:58:21 +0100 | [diff] [blame] | 99 | if ((node->prev != node) && node->prev->next) { |
Michal Vasko | dcf98e6 | 2016-05-05 17:53:53 +0200 | [diff] [blame] | 100 | for (siter = lys_getnext(node->schema, lys_parent(node->schema), node->schema->module, 0); |
Radek Krejci | 6baaa9a | 2016-02-23 16:07:12 +0100 | [diff] [blame] | 101 | siter; |
Michal Vasko | dcf98e6 | 2016-05-05 17:53:53 +0200 | [diff] [blame] | 102 | siter = lys_getnext(siter, lys_parent(siter), siter->module, 0)) { |
Radek Krejci | 6baaa9a | 2016-02-23 16:07:12 +0100 | [diff] [blame] | 103 | if (siter == node->prev->schema) { |
| 104 | /* data predecessor has the schema node after |
| 105 | * the schema node of the data node being checked */ |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 106 | LOGVAL(LYE_INORDER, LY_VLOG_LYD, node, node->schema->name, siter->name); |
Radek Krejci | 6baaa9a | 2016-02-23 16:07:12 +0100 | [diff] [blame] | 107 | return EXIT_FAILURE; |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 108 | } |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 109 | } |
| 110 | |
Radek Krejci | 4a49bdf | 2016-01-12 17:17:01 +0100 | [diff] [blame] | 111 | } |
| 112 | } |
| 113 | |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 114 | return EXIT_SUCCESS; |
| 115 | } |
Michal Vasko | cf02470 | 2015-10-08 15:01:42 +0200 | [diff] [blame] | 116 | |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 117 | struct eq_item { |
| 118 | struct lyd_node *node; |
| 119 | uint32_t hash; |
| 120 | uint32_t over; |
| 121 | }; |
| 122 | |
| 123 | static int |
| 124 | eq_table_insert(struct eq_item *table, struct lyd_node *node, uint32_t hash, uint32_t tablesize, int action) |
| 125 | { |
| 126 | uint32_t i, c; |
| 127 | |
| 128 | if (table[hash].node) { |
| 129 | /* is it collision or is the cell just filled by an overflow item? */ |
| 130 | for (i = hash; table[i].node && table[i].hash != hash; i = (i + 1) % tablesize); |
| 131 | if (!table[i].node) { |
| 132 | goto first; |
| 133 | } |
| 134 | |
| 135 | /* collision or instance duplication */ |
| 136 | c = table[i].over; |
| 137 | do { |
| 138 | if (table[i].hash != hash) { |
| 139 | i = (i + 1) % tablesize; |
| 140 | continue; |
| 141 | } |
| 142 | |
| 143 | /* compare nodes */ |
| 144 | if (lyd_list_equal(node, table[i].node, action, 1)) { |
| 145 | /* instance duplication */ |
| 146 | return EXIT_FAILURE; |
| 147 | } |
| 148 | } while (c--); |
| 149 | |
| 150 | /* collision, insert item into next free cell */ |
| 151 | table[hash].over++; |
| 152 | for (i = (i + 1) % tablesize; table[i].node; i = (i + 1) % tablesize); |
| 153 | table[i].hash = hash; |
| 154 | table[i].node = node; |
| 155 | } else { |
| 156 | first: |
| 157 | /* first hash instance */ |
| 158 | table[hash].node = node; |
| 159 | table[hash].hash = hash; |
| 160 | } |
| 161 | |
| 162 | return EXIT_SUCCESS; |
| 163 | } |
| 164 | |
| 165 | int |
| 166 | lyv_data_unique(struct lyd_node *node, struct lyd_node *start) |
| 167 | { |
| 168 | struct lyd_node *diter, *key; |
| 169 | struct lys_node_list *slist; |
| 170 | struct ly_set *set; |
| 171 | int i, j, n = 0, ret = EXIT_SUCCESS; |
| 172 | uint32_t hash, u, usize = 0, hashmask; |
| 173 | struct eq_item *keystable = NULL, **uniquetables = NULL; |
| 174 | const char *id; |
| 175 | |
| 176 | /* get the first list/leaflist instance sibling */ |
| 177 | if (!start) { |
| 178 | start = lyd_first_sibling(node); |
| 179 | } |
| 180 | |
| 181 | /* check uniqueness of the list/leaflist instances (compare values) */ |
| 182 | set = ly_set_new(); |
| 183 | for (diter = start; diter; diter = diter->next) { |
| 184 | if (diter->schema != node->schema) { |
| 185 | /* check only instances of the same list/leaflist */ |
| 186 | continue; |
| 187 | } |
| 188 | |
| 189 | /* remove the flag */ |
| 190 | diter->validity &= ~LYD_VAL_UNIQUE; |
| 191 | |
| 192 | /* store for comparison */ |
| 193 | ly_set_add(set, diter, LY_SET_OPT_USEASLIST); |
| 194 | } |
| 195 | |
| 196 | if (set->number == 2) { |
| 197 | /* simple comparison */ |
| 198 | if (lyd_list_equal(set->set.d[0], set->set.d[1], -1, 1)) { |
| 199 | /* instance duplication */ |
| 200 | ly_set_free(set); |
| 201 | return EXIT_FAILURE; |
| 202 | } |
| 203 | } else if (set->number > 2) { |
| 204 | /* use hashes for comparison */ |
| 205 | /* first, allocate the table, the size depends on number of items in the set */ |
| 206 | for (u = 31; u > 0; u--) { |
| 207 | usize = set->number << u; |
| 208 | usize = usize >> u; |
| 209 | if (usize == set->number) { |
| 210 | break; |
| 211 | } |
| 212 | } |
| 213 | if (u == 0) { |
| 214 | usize = hashmask = 0xffffffff; |
| 215 | } else { |
| 216 | u = 32 - u; |
| 217 | usize = 1 << u; |
| 218 | hashmask = usize - 1; |
| 219 | } |
| 220 | keystable = calloc(usize, sizeof *keystable); |
| 221 | if (!keystable) { |
| 222 | LOGMEM; |
| 223 | ret = EXIT_FAILURE; |
| 224 | goto unique_cleanup; |
| 225 | } |
| 226 | n = 0; |
| 227 | if (node->schema->nodetype == LYS_LIST) { |
| 228 | n = ((struct lys_node_list *)node->schema)->unique_size; |
| 229 | uniquetables = malloc(n * sizeof *uniquetables); |
| 230 | if (!uniquetables) { |
| 231 | LOGMEM; |
| 232 | ret = EXIT_FAILURE; |
Radek Krejci | 70292d2 | 2016-08-15 09:39:22 +0200 | [diff] [blame] | 233 | n = 0; |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 234 | goto unique_cleanup; |
| 235 | } |
| 236 | for (j = 0; j < n; j++) { |
| 237 | uniquetables[j] = calloc(usize, sizeof **uniquetables); |
| 238 | if (!uniquetables[j]) { |
| 239 | LOGMEM; |
| 240 | ret = EXIT_FAILURE; |
| 241 | goto unique_cleanup; |
| 242 | } |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | for (u = 0; u < set->number; u++) { |
| 247 | /* get the hash for the instance - keys */ |
| 248 | if (node->schema->nodetype == LYS_LEAFLIST) { |
| 249 | id = ((struct lyd_node_leaf_list *)set->set.d[u])->value_str; |
| 250 | hash = dict_hash_multi(0, id, strlen(id)); |
| 251 | } else { /* LYS_LIST */ |
| 252 | for (hash = i = 0, key = set->set.d[u]->child; |
| 253 | i < ((struct lys_node_list *)set->set.d[u]->schema)->keys_size; |
| 254 | i++, key = key->next) { |
| 255 | id = ((struct lyd_node_leaf_list *)key)->value_str; |
| 256 | hash = dict_hash_multi(hash, id, strlen(id)); |
| 257 | } |
| 258 | } |
| 259 | /* finish the hash value */ |
| 260 | hash = dict_hash_multi(hash, NULL, 0) & hashmask; |
| 261 | |
| 262 | /* insert into the hashtable */ |
| 263 | if (eq_table_insert(keystable, set->set.d[u], hash, usize, 0)) { |
| 264 | ret = EXIT_FAILURE; |
| 265 | goto unique_cleanup; |
| 266 | } |
| 267 | |
| 268 | /* and the same loop for unique (n is !0 only in case of list) - get the hash for the instances */ |
| 269 | for (j = 0; j < n; j++) { |
| 270 | slist = (struct lys_node_list *)node->schema; |
Radek Krejci | 50dc7ae | 2016-09-01 09:56:37 +0200 | [diff] [blame] | 271 | id = NULL; |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 272 | for (i = hash = 0; i < slist->unique[j].expr_size; i++) { |
| 273 | diter = resolve_data_descendant_schema_nodeid(slist->unique[j].expr[i], set->set.d[u]->child); |
| 274 | if (diter) { |
| 275 | id = ((struct lyd_node_leaf_list *)diter)->value_str; |
| 276 | } else { |
| 277 | /* use default value */ |
Radek Krejci | d5a5c28 | 2016-08-15 15:38:08 +0200 | [diff] [blame] | 278 | id = lyd_get_unique_default(slist->unique[j].expr[i], set->set.d[u]); |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 279 | if (ly_errno) { |
| 280 | ret = EXIT_FAILURE; |
| 281 | goto unique_cleanup; |
| 282 | } |
| 283 | } |
Radek Krejci | 2a5f52b | 2016-08-15 09:14:36 +0200 | [diff] [blame] | 284 | if (!id) { |
| 285 | /* unique item not present nor has default value */ |
| 286 | break; |
| 287 | } |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 288 | hash = dict_hash_multi(hash, id, strlen(id)); |
| 289 | } |
Radek Krejci | 2a5f52b | 2016-08-15 09:14:36 +0200 | [diff] [blame] | 290 | if (!id) { |
| 291 | /* skip this list instance since its unique set is incomplete */ |
| 292 | continue; |
| 293 | } |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 294 | |
| 295 | /* finish the hash value */ |
| 296 | hash = dict_hash_multi(hash, NULL, 0) & hashmask; |
| 297 | |
| 298 | /* insert into the hashtable */ |
| 299 | if (eq_table_insert(uniquetables[j], set->set.d[u], hash, usize, j + 1)) { |
| 300 | ret = EXIT_FAILURE; |
| 301 | goto unique_cleanup; |
| 302 | } |
| 303 | } |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | unique_cleanup: |
| 308 | /* cleanup */ |
| 309 | ly_set_free(set); |
| 310 | free(keystable); |
| 311 | for (j = 0; j < n; j++) { |
| 312 | if (!uniquetables[j]) { |
| 313 | /* failed when allocating uniquetables[j], following j are not allocated */ |
| 314 | break; |
| 315 | } |
| 316 | free(uniquetables[j]); |
| 317 | } |
| 318 | free(uniquetables); |
| 319 | |
| 320 | return ret; |
| 321 | } |
| 322 | |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 323 | int |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 324 | lyv_data_content(struct lyd_node *node, int options, struct unres_data *unres) |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 325 | { |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 326 | const struct lys_node *schema, *siter; |
Radek Krejci | d788a52 | 2016-07-25 14:57:38 +0200 | [diff] [blame] | 327 | struct lyd_node *diter, *start = NULL; |
Radek Krejci | cf50998 | 2015-12-15 09:22:44 +0100 | [diff] [blame] | 328 | struct lys_ident *ident; |
Radek Krejci | 4eaf5a8 | 2015-12-15 15:10:38 +0100 | [diff] [blame] | 329 | struct lys_tpdf *tpdf; |
Radek Krejci | e6a71b5 | 2016-08-10 15:11:16 +0200 | [diff] [blame] | 330 | struct lys_type *type = NULL; |
Radek Krejci | f1ee2e2 | 2016-08-02 16:36:48 +0200 | [diff] [blame] | 331 | struct lyd_node_leaf_list *leaf; |
Radek Krejci | e6a71b5 | 2016-08-10 15:11:16 +0200 | [diff] [blame] | 332 | int i, j = 0; |
Radek Krejci | f1ee2e2 | 2016-08-02 16:36:48 +0200 | [diff] [blame] | 333 | uint8_t iff_size; |
| 334 | struct lys_iffeature *iff; |
| 335 | const char *id, *idname; |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 336 | |
| 337 | assert(node); |
| 338 | assert(node->schema); |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 339 | assert(unres); |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 340 | |
| 341 | schema = node->schema; /* shortcut */ |
| 342 | |
Michal Vasko | ad2e44a | 2017-01-03 10:31:35 +0100 | [diff] [blame^] | 343 | if (!(options & (LYD_OPT_TRUSTED | LYD_OPT_NOTIF_FILTER)) && (node->validity & LYD_VAL_MAND)) { |
Radek Krejci | 702deb8 | 2016-03-09 12:37:57 +0100 | [diff] [blame] | 344 | /* check presence and correct order of all keys in case of list */ |
Radek Krejci | 92ece00 | 2016-04-04 15:45:05 +0200 | [diff] [blame] | 345 | if (schema->nodetype == LYS_LIST && !(options & (LYD_OPT_GET | LYD_OPT_GETCONFIG))) { |
Radek Krejci | 48464ed | 2016-03-17 15:44:09 +0100 | [diff] [blame] | 346 | if (lyv_keys(node)) { |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 347 | return EXIT_FAILURE; |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 348 | } |
| 349 | } |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 350 | |
Radek Krejci | 4616582 | 2016-08-26 14:06:27 +0200 | [diff] [blame] | 351 | if (schema->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_ANYDATA)) { |
Radek Krejci | d788a52 | 2016-07-25 14:57:38 +0200 | [diff] [blame] | 352 | /* check number of instances (similar to list uniqueness) for non-list nodes */ |
Radek Krejci | 3e0addb | 2015-08-27 16:37:59 +0200 | [diff] [blame] | 353 | |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 354 | /* find duplicity */ |
Radek Krejci | d788a52 | 2016-07-25 14:57:38 +0200 | [diff] [blame] | 355 | start = lyd_first_sibling(node); |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 356 | for (diter = start; diter; diter = diter->next) { |
| 357 | if (diter->schema == schema && diter != node) { |
Radek Krejci | 92ece00 | 2016-04-04 15:45:05 +0200 | [diff] [blame] | 358 | LOGVAL(LYE_TOOMANY, LY_VLOG_LYD, node, schema->name, |
Michal Vasko | dcf98e6 | 2016-05-05 17:53:53 +0200 | [diff] [blame] | 359 | lys_parent(schema) ? lys_parent(schema)->name : "data tree"); |
Radek Krejci | 92ece00 | 2016-04-04 15:45:05 +0200 | [diff] [blame] | 360 | return EXIT_FAILURE; |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 361 | } |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 362 | } |
Radek Krejci | d788a52 | 2016-07-25 14:57:38 +0200 | [diff] [blame] | 363 | } |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 364 | |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 365 | if (options & LYD_OPT_OBSOLETE) { |
| 366 | /* status - of the node's schema node itself and all its parents that |
| 367 | * cannot have their own instance (like a choice statement) */ |
| 368 | siter = node->schema; |
| 369 | do { |
| 370 | if (((siter->flags & LYS_STATUS_MASK) == LYS_STATUS_OBSLT) && (options & LYD_OPT_OBSOLETE)) { |
| 371 | LOGVAL(LYE_OBSDATA, LY_VLOG_LYD, node, schema->name); |
| 372 | return EXIT_FAILURE; |
| 373 | } |
| 374 | siter = lys_parent(siter); |
| 375 | } while (siter && !(siter->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA))); |
| 376 | |
| 377 | /* status of the identity value */ |
| 378 | if (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
| 379 | if (options & LYD_OPT_OBSOLETE) { |
| 380 | /* check that we are not instantiating obsolete type */ |
| 381 | tpdf = ((struct lys_node_leaf *)node->schema)->type.der; |
| 382 | while (tpdf) { |
| 383 | if ((tpdf->flags & LYS_STATUS_MASK) == LYS_STATUS_OBSLT) { |
| 384 | LOGVAL(LYE_OBSTYPE, LY_VLOG_LYD, node, schema->name, tpdf->name); |
| 385 | return EXIT_FAILURE; |
| 386 | } |
| 387 | tpdf = tpdf->type.der; |
| 388 | } |
| 389 | } |
| 390 | if (((struct lyd_node_leaf_list *)node)->value_type == LY_TYPE_IDENT) { |
| 391 | ident = ((struct lyd_node_leaf_list *)node)->value.ident; |
| 392 | if (lyp_check_status(schema->flags, schema->module, schema->name, |
| 393 | ident->flags, ident->module, ident->name, NULL)) { |
| 394 | LOGPATH(LY_VLOG_LYD, node); |
| 395 | return EXIT_FAILURE; |
| 396 | } |
| 397 | } |
| 398 | } |
| 399 | } |
| 400 | |
Radek Krejci | d788a52 | 2016-07-25 14:57:38 +0200 | [diff] [blame] | 401 | /* remove the flag */ |
| 402 | node->validity &= ~LYD_VAL_MAND; |
| 403 | } |
Radek Krejci | 4eaf5a8 | 2015-12-15 15:10:38 +0100 | [diff] [blame] | 404 | |
Radek Krejci | 63b79c8 | 2016-08-10 10:09:33 +0200 | [diff] [blame] | 405 | if (!(options & (LYD_OPT_GET | LYD_OPT_GETCONFIG))) { |
| 406 | /* skip key uniqueness check in case of get/get-config data */ |
| 407 | if (schema->nodetype & (LYS_LIST | LYS_CONTAINER)) { |
| 408 | LY_TREE_FOR(schema->child, siter) { |
| 409 | if (siter->nodetype & (LYS_LIST | LYS_LEAFLIST)) { |
| 410 | LY_TREE_FOR(node->child, diter) { |
| 411 | if (diter->schema == siter && (diter->validity & LYD_VAL_UNIQUE)) { |
| 412 | if (lyv_data_unique(diter, node->child)) { |
| 413 | return EXIT_FAILURE; |
| 414 | } |
| 415 | /* all schema instances checked, continue with another schema node */ |
| 416 | break; |
| 417 | } |
| 418 | } |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 419 | } |
Radek Krejci | 4eaf5a8 | 2015-12-15 15:10:38 +0100 | [diff] [blame] | 420 | } |
| 421 | } |
Radek Krejci | d788a52 | 2016-07-25 14:57:38 +0200 | [diff] [blame] | 422 | } |
| 423 | |
Radek Krejci | f1ee2e2 | 2016-08-02 16:36:48 +0200 | [diff] [blame] | 424 | if (schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
| 425 | /* since feature can be enabled/disabled, do this check despite the validity flag, |
| 426 | * - check if the type value (enum, bit, identity) is disabled via feature */ |
| 427 | leaf = (struct lyd_node_leaf_list *)node; |
| 428 | switch (leaf->value_type) { |
| 429 | case LY_TYPE_BITS: |
| 430 | id = "Bit"; |
| 431 | /* get the count of bits */ |
| 432 | for (type = &((struct lys_node_leaf *)leaf->schema)->type; !type->info.bits.count; type = &type->der->type); |
| 433 | for (j = iff_size = 0; j < type->info.bits.count; j++) { |
| 434 | if (!leaf->value.bit[j]) { |
| 435 | continue; |
| 436 | } |
| 437 | idname = leaf->value.bit[j]->name; |
| 438 | iff_size = leaf->value.bit[j]->iffeature_size; |
| 439 | iff = leaf->value.bit[j]->iffeature; |
| 440 | break; |
| 441 | nextbit: |
| 442 | iff_size = 0; |
| 443 | } |
| 444 | break; |
| 445 | case LY_TYPE_ENUM: |
| 446 | id = "Enum"; |
| 447 | idname = leaf->value_str; |
| 448 | iff_size = leaf->value.enm->iffeature_size; |
| 449 | iff = leaf->value.enm->iffeature; |
| 450 | break; |
| 451 | case LY_TYPE_IDENT: |
| 452 | id = "Identity"; |
| 453 | idname = leaf->value_str; |
| 454 | iff_size = leaf->value.ident->iffeature_size; |
| 455 | iff = leaf->value.ident->iffeature; |
| 456 | break; |
| 457 | default: |
| 458 | iff_size = 0; |
| 459 | break; |
| 460 | } |
| 461 | |
| 462 | if (iff_size) { |
| 463 | for (i = 0; i < iff_size; i++) { |
| 464 | if (!resolve_iffeature(&iff[i])) { |
| 465 | LOGVAL(LYE_INVAL, LY_VLOG_LYD, node, leaf->value_str, schema->name); |
| 466 | LOGVAL(LYE_SPEC, LY_VLOG_LYD, node, "%s \"%s\" is disabled by its if-feature condition.", |
| 467 | id, idname); |
| 468 | return EXIT_FAILURE; |
| 469 | } |
| 470 | } |
| 471 | if (leaf->value_type == LY_TYPE_BITS) { |
| 472 | goto nextbit; |
| 473 | } |
| 474 | } |
| 475 | } |
| 476 | |
Michal Vasko | ad2e44a | 2017-01-03 10:31:35 +0100 | [diff] [blame^] | 477 | /* check must conditions */ |
| 478 | if (!(options & (LYD_OPT_TRUSTED | LYD_OPT_NOTIF_FILTER | LYD_OPT_EDIT | LYD_OPT_GET | LYD_OPT_GETCONFIG))) { |
Michal Vasko | 4b5b625 | 2016-10-11 12:18:00 +0000 | [diff] [blame] | 479 | i = resolve_applies_must(node); |
| 480 | if ((i & 0x1) && (unres_data_add(unres, node, UNRES_MUST) == -1)) { |
| 481 | return EXIT_FAILURE; |
| 482 | } |
| 483 | if ((i & 0x2) && (unres_data_add(unres, node, UNRES_MUST_INOUT) == -1)) { |
| 484 | return EXIT_FAILURE; |
| 485 | } |
Michal Vasko | bf19d25 | 2015-10-08 15:39:17 +0200 | [diff] [blame] | 486 | } |
| 487 | |
Radek Krejci | eab784a | 2015-08-27 09:56:53 +0200 | [diff] [blame] | 488 | return EXIT_SUCCESS; |
| 489 | } |