| /** |
| * @file validation.c |
| * @author Michal Vasko <mvasko@cesnet.cz> |
| * @brief Validation |
| * |
| * Copyright (c) 2019 CESNET, z.s.p.o. |
| * |
| * This source code is licensed under BSD 3-Clause License (the "License"). |
| * You may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * https://opensource.org/licenses/BSD-3-Clause |
| */ |
| #include "validation.h" |
| |
| #include <assert.h> |
| #include <stdint.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <string.h> |
| |
| #include "common.h" |
| #include "compat.h" |
| #include "diff.h" |
| #include "hash_table.h" |
| #include "log.h" |
| #include "parser_data.h" |
| #include "plugins_exts_metadata.h" |
| #include "plugins_types.h" |
| #include "set.h" |
| #include "tree.h" |
| #include "tree_data_internal.h" |
| #include "tree_schema.h" |
| #include "tree_schema_internal.h" |
| #include "xpath.h" |
| |
| LY_ERR |
| lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff) |
| { |
| LY_ERR ret = LY_SUCCESS; |
| struct lyd_node *new_diff = NULL; |
| |
| assert((op == LYD_DIFF_OP_DELETE) || (op == LYD_DIFF_OP_CREATE)); |
| |
| /* create new diff tree */ |
| LY_CHECK_RET(lyd_diff_add(node, op, NULL, NULL, NULL, NULL, NULL, &new_diff)); |
| |
| /* merge into existing diff */ |
| ret = lyd_diff_merge_all(diff, new_diff); |
| |
| lyd_free_tree(new_diff); |
| return ret; |
| } |
| |
| /** |
| * @brief Evaluate a single "when" condition. |
| * |
| * @param[in,out] tree Data tree, is updated if some nodes are autodeleted. |
| * @param[in] node Node whose existence depends on this when. |
| * @param[in] when When to evaluate. |
| * @param[in,out] diff Validation diff. |
| * @return LY_ERR value (LY_EINCOMPLETE if a referenced node does not have its when evaluated) |
| */ |
| static LY_ERR |
| lyd_validate_when(struct lyd_node **tree, struct lyd_node *node, struct lysc_when *when, struct lyd_node **diff) |
| { |
| LY_ERR ret; |
| const struct lyd_node *ctx_node; |
| struct lyxp_set xp_set; |
| |
| memset(&xp_set, 0, sizeof xp_set); |
| |
| if (when->context == node->schema) { |
| ctx_node = node; |
| } else { |
| assert((!when->context && !node->parent) || (when->context == node->parent->schema)); |
| ctx_node = (struct lyd_node *)node->parent; |
| } |
| |
| /* evaluate when */ |
| ret = lyxp_eval(when->cond, node->schema->module, LY_PREF_SCHEMA_RESOLVED, when->prefixes, ctx_node, *tree, |
| &xp_set, LYXP_SCHEMA); |
| lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN); |
| |
| /* return error or LY_EINCOMPLETE for dependant unresolved when */ |
| LY_CHECK_RET(ret); |
| |
| /* take action based on the result */ |
| if (!xp_set.val.bln) { |
| if (node->flags & LYD_WHEN_TRUE) { |
| /* autodelete */ |
| if (LYD_DEL_IS_ROOT(*tree, node)) { |
| *tree = (*tree)->next; |
| } |
| if (diff) { |
| /* add into diff */ |
| LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_DELETE, diff)); |
| } |
| lyd_free_tree(node); |
| } else { |
| /* invalid data */ |
| LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOWHEN, when->cond->expr); |
| return LY_EVALID; |
| } |
| } else { |
| /* remember that when evaluated to true */ |
| node->flags |= LYD_WHEN_TRUE; |
| } |
| |
| return ret; |
| } |
| |
| LY_ERR |
| lyd_validate_unres(struct lyd_node **tree, struct ly_set *node_when, struct ly_set *node_types, struct ly_set *meta_types, |
| struct lyd_node **diff) |
| { |
| LY_ERR ret = LY_SUCCESS; |
| uint32_t i; |
| |
| if (node_when) { |
| /* evaluate all when conditions */ |
| uint32_t prev_count; |
| do { |
| prev_count = node_when->count; |
| i = 0; |
| while (i < node_when->count) { |
| /* evaluate all when expressions that affect this node's existence */ |
| struct lyd_node *node = (struct lyd_node *)node_when->objs[i]; |
| const struct lysc_node *schema = node->schema; |
| ly_bool unres_when = 0; |
| |
| do { |
| LY_ARRAY_COUNT_TYPE u; |
| LY_ARRAY_FOR(schema->when, u) { |
| ret = lyd_validate_when(tree, node, schema->when[u], diff); |
| if (ret) { |
| break; |
| } |
| } |
| if (ret == LY_EINCOMPLETE) { |
| /* could not evaluate this when */ |
| unres_when = 1; |
| break; |
| } else if (ret) { |
| /* error */ |
| return ret; |
| } |
| schema = schema->parent; |
| } while (schema && (schema->nodetype & (LYS_CASE | LYS_CHOICE))); |
| |
| if (unres_when) { |
| /* keep in set and go to the next node */ |
| ++i; |
| } else { |
| /* remove this node from the set */ |
| ly_set_rm_index(node_when, i, NULL); |
| } |
| } |
| |
| /* there must have been some when conditions resolved */ |
| } while (prev_count > node_when->count); |
| |
| /* there could have been no cyclic when dependencies, checked during compilation */ |
| assert(!node_when->count); |
| } |
| |
| if (node_types && node_types->count) { |
| /* finish incompletely validated terminal values (traverse from the end for efficient set removal) */ |
| i = node_types->count; |
| do { |
| --i; |
| |
| struct lyd_node_term *node = (struct lyd_node_term *)node_types->objs[i]; |
| struct lysc_type *type = ((struct lysc_node_leaf *)node->schema)->type; |
| |
| /* resolve the value of the node */ |
| ret = lyd_value_validate_incomplete(LYD_CTX(node), type, &node->value, (struct lyd_node *)node, *tree, |
| LY_VLOG_LYD, node); |
| LY_CHECK_RET(ret); |
| |
| /* remove this node from the set */ |
| ly_set_rm_index(node_types, i, NULL); |
| } while (i); |
| } |
| |
| if (meta_types && meta_types->count) { |
| /* ... and metadata values */ |
| i = meta_types->count; |
| do { |
| --i; |
| |
| struct lyd_meta *meta = (struct lyd_meta *)meta_types->objs[i]; |
| struct lysc_type *type = ((struct lyext_metadata *)meta->annotation->data)->type; |
| |
| /* validate and store the value of the metadata */ |
| ret = lyd_value_validate_incomplete(LYD_CTX(meta->parent), type, &meta->value, meta->parent, *tree, |
| LY_VLOG_NONE, NULL); |
| LY_CHECK_RET(ret); |
| |
| /* remove this attr from the set */ |
| ly_set_rm_index(meta_types, i, NULL); |
| } while (i); |
| } |
| |
| return ret; |
| } |
| |
| /** |
| * @brief Validate instance duplication. |
| * |
| * @param[in] first First sibling to search in. |
| * @param[in] node Data node instance to check. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate_duplicates(const struct lyd_node *first, const struct lyd_node *node) |
| { |
| struct lyd_node **match_p; |
| ly_bool fail = 0; |
| |
| if ((node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && (node->schema->flags & LYS_CONFIG_R)) { |
| /* duplicate instances allowed */ |
| return LY_SUCCESS; |
| } |
| |
| /* find exactly the same next instance using hashes if possible */ |
| if (node->parent && node->parent->children_ht) { |
| if (!lyht_find_next(node->parent->children_ht, &node, node->hash, (void **)&match_p)) { |
| fail = 1; |
| } |
| } else { |
| for ( ; first; first = first->next) { |
| if (first == node) { |
| continue; |
| } |
| |
| if (node->schema->nodetype & (LYD_NODE_ANY | LYS_LEAF)) { |
| if (first->schema == node->schema) { |
| fail = 1; |
| break; |
| } |
| } else if (!lyd_compare_single(first, node, 0)) { |
| fail = 1; |
| break; |
| } |
| } |
| } |
| |
| if (fail) { |
| LOGVAL(node->schema->module->ctx, LY_VLOG_LYD, node, LY_VCODE_DUP, node->schema->name); |
| return LY_EVALID; |
| } |
| return LY_SUCCESS; |
| } |
| |
| /** |
| * @brief Validate multiple case data existence with possible autodelete. |
| * |
| * @param[in,out] first First sibling to search in, is updated if needed. |
| * @param[in] choic Choice node whose cases to check. |
| * @param[in,out] diff Validation diff. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate_cases(struct lyd_node **first, const struct lysc_node_choice *choic, struct lyd_node **diff) |
| { |
| const struct lysc_node *scase, *iter, *old_case = NULL, *new_case = NULL; |
| struct lyd_node *match, *to_del; |
| ly_bool found; |
| |
| LY_LIST_FOR((struct lysc_node *)choic->cases, scase) { |
| found = 0; |
| iter = NULL; |
| match = NULL; |
| while ((match = lys_getnext_data(match, *first, &iter, scase, NULL))) { |
| if (match->flags & LYD_NEW) { |
| /* a new case data found, nothing more to look for */ |
| found = 2; |
| break; |
| } else { |
| /* and old case data found */ |
| if (found == 0) { |
| found = 1; |
| } |
| } |
| } |
| |
| if (found == 1) { |
| /* there should not be 2 old cases */ |
| if (old_case) { |
| /* old data from 2 cases */ |
| LOGVAL(choic->module->ctx, LY_VLOG_LYSC, choic, LY_VCODE_DUPCASE, old_case->name, scase->name); |
| return LY_EVALID; |
| } |
| |
| /* remember an old existing case */ |
| old_case = scase; |
| } else if (found == 2) { |
| if (new_case) { |
| /* new data from 2 cases */ |
| LOGVAL(choic->module->ctx, LY_VLOG_LYSC, choic, LY_VCODE_DUPCASE, new_case->name, scase->name); |
| return LY_EVALID; |
| } |
| |
| /* remember a new existing case */ |
| new_case = scase; |
| } |
| } |
| |
| if (old_case && new_case) { |
| /* auto-delete old case */ |
| iter = NULL; |
| match = NULL; |
| to_del = NULL; |
| while ((match = lys_getnext_data(match, *first, &iter, old_case, NULL))) { |
| if (LYD_DEL_IS_ROOT(*first, to_del)) { |
| *first = (*first)->next; |
| } |
| /* free previous node */ |
| lyd_free_tree(to_del); |
| if (diff) { |
| /* add into diff */ |
| LY_CHECK_RET(lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff)); |
| } |
| to_del = match; |
| } |
| if (LYD_DEL_IS_ROOT(*first, to_del)) { |
| *first = (*first)->next; |
| } |
| lyd_free_tree(to_del); |
| } |
| |
| return LY_SUCCESS; |
| } |
| |
| /** |
| * @brief Check whether a schema node can have some default values (true for NP containers as well). |
| * |
| * @param[in] schema Schema node to check. |
| * @return non-zero if yes, |
| * @return 0 otherwise. |
| */ |
| static int |
| lyd_val_has_default(const struct lysc_node *schema) |
| { |
| switch (schema->nodetype) { |
| case LYS_LEAF: |
| if (((struct lysc_node_leaf *)schema)->dflt) { |
| return 1; |
| } |
| break; |
| case LYS_LEAFLIST: |
| if (((struct lysc_node_leaflist *)schema)->dflts) { |
| return 1; |
| } |
| break; |
| case LYS_CONTAINER: |
| if (!(schema->flags & LYS_PRESENCE)) { |
| return 1; |
| } |
| break; |
| default: |
| break; |
| } |
| |
| return 0; |
| } |
| |
| /** |
| * @brief Autodelete old instances to prevent validation errors. |
| * |
| * @param[in,out] first First sibling to search in, is updated if needed. |
| * @param[in] node Data node instance to check. |
| * @param[in,out] next_p Temporary LY_LIST_FOR_SAFE next pointer, is updated if needed. |
| * @param[in,out] diff Validation diff. |
| */ |
| static void |
| lyd_validate_autodel_dup(struct lyd_node **first, struct lyd_node *node, struct lyd_node **next_p, struct lyd_node **diff) |
| { |
| struct lyd_node *match, *next, *iter; |
| |
| if (lyd_val_has_default(node->schema)) { |
| assert(node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST | LYS_CONTAINER)); |
| LYD_LIST_FOR_INST_SAFE(*first, node->schema, next, match) { |
| if ((match->flags & LYD_DEFAULT) && !(match->flags & LYD_NEW)) { |
| /* default instance found, remove it */ |
| if (LYD_DEL_IS_ROOT(*first, match)) { |
| *first = (*first)->next; |
| } |
| if (match == *next_p) { |
| *next_p = (*next_p)->next; |
| } |
| if (diff) { |
| /* add into diff */ |
| if ((match->schema->nodetype == LYS_CONTAINER) && !(match->schema->flags & LYS_PRESENCE)) { |
| /* we do not want to track NP container changes, but remember any removed children */ |
| LY_LIST_FOR(lyd_child(match), iter) { |
| lyd_val_diff_add(iter, LYD_DIFF_OP_DELETE, diff); |
| } |
| } else { |
| lyd_val_diff_add(match, LYD_DIFF_OP_DELETE, diff); |
| } |
| } |
| lyd_free_tree(match); |
| |
| /* remove only a single container/leaf default instance, if there are more, it is an error */ |
| if (node->schema->nodetype & (LYS_LEAF | LYS_CONTAINER)) { |
| break; |
| } |
| } |
| } |
| } |
| } |
| |
| LY_ERR |
| lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod, |
| struct lyd_node **diff) |
| { |
| struct lyd_node *next, *node; |
| const struct lysc_node *snode = NULL; |
| |
| assert(first && (sparent || mod)); |
| |
| while (*first && (snode = lys_getnext(snode, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) { |
| /* check case duplicites */ |
| if (snode->nodetype == LYS_CHOICE) { |
| LY_CHECK_RET(lyd_validate_cases(first, (struct lysc_node_choice *)snode, diff)); |
| } |
| } |
| |
| LY_LIST_FOR_SAFE(*first, next, node) { |
| if (mod && (lyd_owner_module(node) != mod)) { |
| /* all top-level data from this module checked */ |
| break; |
| } |
| |
| if (!(node->flags & LYD_NEW)) { |
| /* check only new nodes */ |
| continue; |
| } |
| |
| /* remove old default(s) if it exists */ |
| lyd_validate_autodel_dup(first, node, &next, diff); |
| |
| /* then check new node instance duplicities */ |
| LY_CHECK_RET(lyd_validate_duplicates(*first, node)); |
| |
| /* this node is valid */ |
| node->flags &= ~LYD_NEW; |
| } |
| |
| return LY_SUCCESS; |
| } |
| |
| /** |
| * @brief Validate mandatory node existence. |
| * |
| * @param[in] first First sibling to search in. |
| * @param[in] snode Schema node to validate. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate_mandatory(const struct lyd_node *first, const struct lysc_node *snode) |
| { |
| if (snode->nodetype == LYS_CHOICE) { |
| /* some data of a choice case exist */ |
| if (lys_getnext_data(NULL, first, NULL, snode, NULL)) { |
| return LY_SUCCESS; |
| } |
| } else { |
| assert(snode->nodetype & (LYS_LEAF | LYS_CONTAINER | LYD_NODE_ANY)); |
| |
| if (!lyd_find_sibling_val(first, snode, NULL, 0, NULL)) { |
| /* data instance found */ |
| return LY_SUCCESS; |
| } |
| } |
| |
| /* node instance not found */ |
| LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMAND, snode->name); |
| return LY_EVALID; |
| } |
| |
| /** |
| * @brief Validate min/max-elements constraints, if any. |
| * |
| * @param[in] first First sibling to search in. |
| * @param[in] snode Schema node to validate. |
| * @param[in] min Minimum number of elements, 0 for no restriction. |
| * @param[in] max Max number of elements, 0 for no restriction. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate_minmax(const struct lyd_node *first, const struct lysc_node *snode, uint32_t min, uint32_t max) |
| { |
| uint32_t count = 0; |
| struct lyd_node *iter; |
| |
| assert(min || max); |
| |
| LYD_LIST_FOR_INST(first, snode, iter) { |
| ++count; |
| |
| if (min && (count == min)) { |
| /* satisfied */ |
| min = 0; |
| if (!max) { |
| /* nothing more to check */ |
| break; |
| } |
| } |
| if (max && (count > max)) { |
| /* not satisifed */ |
| break; |
| } |
| } |
| |
| if (min) { |
| assert(count < min); |
| LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMIN, snode->name); |
| return LY_EVALID; |
| } else if (max && (count > max)) { |
| LOGVAL(snode->module->ctx, LY_VLOG_LYSC, snode, LY_VCODE_NOMAX, snode->name); |
| return LY_EVALID; |
| } |
| |
| return LY_SUCCESS; |
| } |
| |
| /** |
| * @brief Find node referenced by a list unique statement. |
| * |
| * @param[in] uniq_leaf Unique leaf to find. |
| * @param[in] list List instance to use for the search. |
| * @return Found leaf, |
| * @return NULL if no leaf found. |
| */ |
| static struct lyd_node * |
| lyd_val_uniq_find_leaf(const struct lysc_node_leaf *uniq_leaf, const struct lyd_node *list) |
| { |
| struct lyd_node *node; |
| const struct lysc_node *iter; |
| size_t depth = 0, i; |
| |
| /* get leaf depth */ |
| for (iter = (struct lysc_node *)uniq_leaf; iter && (iter != list->schema); iter = lysc_data_parent(iter)) { |
| ++depth; |
| } |
| |
| node = (struct lyd_node *)list; |
| while (node && depth) { |
| /* find schema node with this depth */ |
| for (i = depth - 1, iter = (struct lysc_node *)uniq_leaf; i; iter = lysc_data_parent(iter)) { |
| --i; |
| } |
| |
| /* find iter instance in children */ |
| assert(iter->nodetype & (LYS_CONTAINER | LYS_LEAF)); |
| lyd_find_sibling_val(lyd_child(node), iter, NULL, 0, &node); |
| --depth; |
| } |
| |
| return node; |
| } |
| |
| /** |
| * @brief Callback for comparing 2 list unique leaf values. |
| * |
| * Implementation of ::values_equal_cb. |
| * |
| * @param[in] cb_data 0 to compare all uniques, n to compare only n-th unique. |
| */ |
| static ly_bool |
| lyd_val_uniq_list_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *cb_data) |
| { |
| struct ly_ctx *ctx; |
| struct lysc_node_list *slist; |
| struct lyd_node *diter, *first, *second; |
| struct lyd_value *val1, *val2; |
| char *path1, *path2, *uniq_str, *ptr; |
| LY_ARRAY_COUNT_TYPE u, v, action; |
| |
| assert(val1_p && val2_p); |
| |
| first = *((struct lyd_node **)val1_p); |
| second = *((struct lyd_node **)val2_p); |
| action = (LY_ARRAY_COUNT_TYPE)cb_data; |
| |
| assert(first && (first->schema->nodetype == LYS_LIST)); |
| assert(second && (second->schema == first->schema)); |
| |
| ctx = first->schema->module->ctx; |
| |
| slist = (struct lysc_node_list *)first->schema; |
| |
| /* compare unique leaves */ |
| if (action > 0) { |
| u = action - 1; |
| if (u < LY_ARRAY_COUNT(slist->uniques)) { |
| goto uniquecheck; |
| } |
| } |
| LY_ARRAY_FOR(slist->uniques, u) { |
| uniquecheck: |
| LY_ARRAY_FOR(slist->uniques[u], v) { |
| /* first */ |
| diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], first); |
| if (diter) { |
| val1 = &((struct lyd_node_term *)diter)->value; |
| } else { |
| /* use default value */ |
| val1 = slist->uniques[u][v]->dflt; |
| } |
| |
| /* second */ |
| diter = lyd_val_uniq_find_leaf(slist->uniques[u][v], second); |
| if (diter) { |
| val2 = &((struct lyd_node_term *)diter)->value; |
| } else { |
| /* use default value */ |
| val2 = slist->uniques[u][v]->dflt; |
| } |
| |
| if (!val1 || !val2 || val1->realtype->plugin->compare(val1, val2)) { |
| /* values differ or either one is not set */ |
| break; |
| } |
| } |
| if (v && (v == LY_ARRAY_COUNT(slist->uniques[u]))) { |
| /* all unique leafs are the same in this set, create this nice error */ |
| path1 = lyd_path(first, LYD_PATH_LOG, NULL, 0); |
| path2 = lyd_path(second, LYD_PATH_LOG, NULL, 0); |
| |
| /* use buffer to rebuild the unique string */ |
| uniq_str = malloc(1024); |
| uniq_str[0] = '\0'; |
| ptr = uniq_str; |
| LY_ARRAY_FOR(slist->uniques[u], v) { |
| if (v) { |
| strcpy(ptr, " "); |
| ++ptr; |
| } |
| ptr = lysc_path_until((struct lysc_node *)slist->uniques[u][v], (struct lysc_node *)slist, LYSC_PATH_LOG, |
| ptr, 1024 - (ptr - uniq_str)); |
| if (!ptr) { |
| /* path will be incomplete, whatever */ |
| break; |
| } |
| |
| ptr += strlen(ptr); |
| } |
| LOGVAL(ctx, LY_VLOG_LYD, second, LY_VCODE_NOUNIQ, uniq_str, path1, path2); |
| |
| free(path1); |
| free(path2); |
| free(uniq_str); |
| return 1; |
| } |
| |
| if (action > 0) { |
| /* done */ |
| return 0; |
| } |
| } |
| |
| return 0; |
| } |
| |
| /** |
| * @brief Validate list unique leaves. |
| * |
| * @param[in] first First sibling to search in. |
| * @param[in] snode Schema node to validate. |
| * @param[in] uniques List unique arrays to validate. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate_unique(const struct lyd_node *first, const struct lysc_node *snode, const struct lysc_node_leaf ***uniques) |
| { |
| const struct lyd_node *diter; |
| struct ly_set *set; |
| LY_ARRAY_COUNT_TYPE u, v, x = 0; |
| LY_ERR ret = LY_SUCCESS; |
| uint32_t hash, i, size = 0; |
| ly_bool dynamic; |
| const char *str; |
| struct hash_table **uniqtables = NULL; |
| struct lyd_value *val; |
| struct ly_ctx *ctx = snode->module->ctx; |
| |
| assert(uniques); |
| |
| /* get all list instances */ |
| LY_CHECK_RET(ly_set_new(&set)); |
| LY_LIST_FOR(first, diter) { |
| if (diter->schema == snode) { |
| ret = ly_set_add(set, (void *)diter, 1, NULL); |
| LY_CHECK_GOTO(ret, cleanup); |
| } |
| } |
| |
| if (set->count == 2) { |
| /* simple comparison */ |
| if (lyd_val_uniq_list_equal(&set->objs[0], &set->objs[1], 0, (void *)0)) { |
| /* instance duplication */ |
| ret = LY_EVALID; |
| goto cleanup; |
| } |
| } else if (set->count > 2) { |
| /* use hashes for comparison */ |
| /* first, allocate the table, the size depends on number of items in the set */ |
| for (i = 31; i > 0; i--) { |
| size = set->count << i; |
| size = size >> i; |
| if (size == set->count) { |
| break; |
| } |
| } |
| LY_CHECK_ERR_GOTO(!i, LOGINT(ctx); ret = LY_EINT, cleanup); |
| i = 32 - i; |
| size = 1 << i; |
| |
| uniqtables = malloc(LY_ARRAY_COUNT(uniques) * sizeof *uniqtables); |
| LY_CHECK_ERR_GOTO(!uniqtables, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| x = LY_ARRAY_COUNT(uniques); |
| for (v = 0; v < x; v++) { |
| uniqtables[v] = lyht_new(size, sizeof(struct lyd_node *), lyd_val_uniq_list_equal, (void *)(v + 1L), 0); |
| LY_CHECK_ERR_GOTO(!uniqtables[v], LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| } |
| |
| for (i = 0; i < set->count; i++) { |
| /* loop for unique - get the hash for the instances */ |
| for (u = 0; u < x; u++) { |
| val = NULL; |
| for (v = hash = 0; v < LY_ARRAY_COUNT(uniques[u]); v++) { |
| diter = lyd_val_uniq_find_leaf(uniques[u][v], set->objs[i]); |
| if (diter) { |
| val = &((struct lyd_node_term *)diter)->value; |
| } else { |
| /* use default value */ |
| val = uniques[u][v]->dflt; |
| } |
| if (!val) { |
| /* unique item not present nor has default value */ |
| break; |
| } |
| |
| /* get canonical string value */ |
| str = val->realtype->plugin->print(val, LY_PREF_JSON, NULL, &dynamic); |
| hash = dict_hash_multi(hash, str, strlen(str)); |
| if (dynamic) { |
| free((char *)str); |
| } |
| } |
| if (!val) { |
| /* skip this list instance since its unique set is incomplete */ |
| continue; |
| } |
| |
| /* finish the hash value */ |
| hash = dict_hash_multi(hash, NULL, 0); |
| |
| /* insert into the hashtable */ |
| ret = lyht_insert(uniqtables[u], &set->objs[i], hash, NULL); |
| if (ret == LY_EEXIST) { |
| /* instance duplication */ |
| ret = LY_EVALID; |
| } |
| LY_CHECK_GOTO(ret != LY_SUCCESS, cleanup); |
| } |
| } |
| } |
| |
| cleanup: |
| ly_set_free(set, NULL); |
| for (v = 0; v < x; v++) { |
| if (!uniqtables[v]) { |
| /* failed when allocating uniquetables[j], following j are not allocated */ |
| break; |
| } |
| lyht_free(uniqtables[v]); |
| } |
| free(uniqtables); |
| |
| return ret; |
| } |
| |
| /** |
| * @brief Validate data siblings based on generic schema node restrictions, recursively for schema-only nodes. |
| * |
| * @param[in] first First sibling to search in. |
| * @param[in] sparent Schema parent of the nodes to check. |
| * @param[in] mod Module of the nodes to check. |
| * @param[in] val_opts Validation options, see @ref datavalidationoptions. |
| * @param[in] op Operation being validated, if any. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate_siblings_schema_r(const struct lyd_node *first, const struct lysc_node *sparent, |
| const struct lysc_module *mod, uint32_t val_opts, LYD_VALIDATE_OP op) |
| { |
| const struct lysc_node *snode = NULL; |
| struct lysc_node_list *slist; |
| struct lysc_node_leaflist *sllist; |
| uint32_t getnext_opts; |
| |
| getnext_opts = LYS_GETNEXT_WITHCHOICE | LYS_GETNEXT_WITHCASE | (op == LYD_VALIDATE_OP_REPLY ? LYS_GETNEXT_OUTPUT : 0); |
| |
| /* disabled nodes are skipped by lys_getnext */ |
| while ((snode = lys_getnext(snode, sparent, mod, getnext_opts))) { |
| if ((val_opts & LYD_VALIDATE_NO_STATE) && (snode->flags & LYS_CONFIG_R)) { |
| continue; |
| } |
| |
| /* check min-elements and max-elements */ |
| if (snode->nodetype == LYS_LIST) { |
| slist = (struct lysc_node_list *)snode; |
| if (slist->min || slist->max) { |
| LY_CHECK_RET(lyd_validate_minmax(first, snode, slist->min, slist->max)); |
| } |
| } else if (snode->nodetype == LYS_LEAFLIST) { |
| sllist = (struct lysc_node_leaflist *)snode; |
| if (sllist->min || sllist->max) { |
| LY_CHECK_RET(lyd_validate_minmax(first, snode, sllist->min, sllist->max)); |
| } |
| |
| } else if (snode->flags & LYS_MAND_TRUE) { |
| /* check generic mandatory existence */ |
| LY_CHECK_RET(lyd_validate_mandatory(first, snode)); |
| } |
| |
| /* check unique */ |
| if (snode->nodetype == LYS_LIST) { |
| slist = (struct lysc_node_list *)snode; |
| if (slist->uniques) { |
| LY_CHECK_RET(lyd_validate_unique(first, snode, (const struct lysc_node_leaf ***)slist->uniques)); |
| } |
| } |
| |
| if (snode->nodetype & (LYS_CHOICE | LYS_CASE)) { |
| /* go recursively for schema-only nodes */ |
| LY_CHECK_RET(lyd_validate_siblings_schema_r(first, snode, mod, val_opts, op)); |
| } |
| } |
| |
| return LY_SUCCESS; |
| } |
| |
| /** |
| * @brief Validate obsolete nodes, only warnings are printed. |
| * |
| * @param[in] node Node to check. |
| */ |
| static void |
| lyd_validate_obsolete(const struct lyd_node *node) |
| { |
| const struct lysc_node *snode; |
| |
| snode = node->schema; |
| do { |
| if (snode->flags & LYS_STATUS_OBSLT) { |
| LOGWRN(snode->module->ctx, "Obsolete schema node \"%s\" instantiated in data.", snode->name); |
| break; |
| } |
| |
| snode = snode->parent; |
| } while (snode && (snode->nodetype & (LYS_CHOICE | LYS_CASE))); |
| } |
| |
| /** |
| * @brief Validate must conditions of a data node. |
| * |
| * @param[in] node Node to validate. |
| * @param[in] op Operation being validated, if any. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate_must(const struct lyd_node *node, LYD_VALIDATE_OP op) |
| { |
| struct lyxp_set xp_set; |
| struct lysc_must *musts; |
| const struct lyd_node *tree; |
| LY_ARRAY_COUNT_TYPE u; |
| |
| switch (node->schema->nodetype) { |
| case LYS_CONTAINER: |
| musts = ((struct lysc_node_container *)node->schema)->musts; |
| break; |
| case LYS_LEAF: |
| musts = ((struct lysc_node_leaf *)node->schema)->musts; |
| break; |
| case LYS_LEAFLIST: |
| musts = ((struct lysc_node_leaflist *)node->schema)->musts; |
| break; |
| case LYS_LIST: |
| musts = ((struct lysc_node_list *)node->schema)->musts; |
| break; |
| case LYS_ANYXML: |
| case LYS_ANYDATA: |
| musts = ((struct lysc_node_anydata *)node->schema)->musts; |
| break; |
| case LYS_NOTIF: |
| musts = ((struct lysc_notif *)node->schema)->musts; |
| break; |
| case LYS_RPC: |
| case LYS_ACTION: |
| if (op == LYD_VALIDATE_OP_RPC) { |
| musts = ((struct lysc_action *)node->schema)->input.musts; |
| } else if (op == LYD_VALIDATE_OP_REPLY) { |
| musts = ((struct lysc_action *)node->schema)->output.musts; |
| } else { |
| LOGINT(LYD_CTX(node)); |
| return LY_EINT; |
| } |
| break; |
| default: |
| LOGINT(LYD_CTX(node)); |
| return LY_EINT; |
| } |
| |
| if (!musts) { |
| /* no must to evaluate */ |
| return LY_SUCCESS; |
| } |
| |
| /* find first top-level node */ |
| for (tree = node; tree->parent; tree = (struct lyd_node *)tree->parent) {} |
| while (tree->prev->next) { |
| tree = tree->prev; |
| } |
| |
| LY_ARRAY_FOR(musts, u) { |
| memset(&xp_set, 0, sizeof xp_set); |
| |
| /* evaluate must */ |
| LY_CHECK_RET(lyxp_eval(musts[u].cond, node->schema->module, LY_PREF_SCHEMA_RESOLVED, musts[u].prefixes, node, |
| tree, &xp_set, LYXP_SCHEMA)); |
| |
| /* check the result */ |
| lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN); |
| if (!xp_set.val.bln) { |
| LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_NOMUST, musts[u].cond->expr); |
| return LY_EVALID; |
| } |
| } |
| |
| return LY_SUCCESS; |
| } |
| |
| LY_ERR |
| lyd_validate_final_r(struct lyd_node *first, const struct lysc_node *sparent, const struct lys_module *mod, uint32_t val_opts, |
| LYD_VALIDATE_OP op) |
| { |
| struct lyd_node *next = NULL, *node; |
| |
| /* validate all restrictions of nodes themselves */ |
| LY_LIST_FOR_SAFE(first, next, node) { |
| if (mod && (lyd_owner_module(node) != mod)) { |
| /* all top-level data from this module checked */ |
| break; |
| } |
| |
| /* opaque data */ |
| if (!node->schema) { |
| LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LYVE_DATA, "Opaque node \"%s\" found.", |
| ((struct lyd_node_opaq *)node)->name); |
| return LY_EVALID; |
| } |
| |
| /* no state/input/output data */ |
| if ((val_opts & LYD_VALIDATE_NO_STATE) && (node->schema->flags & LYS_CONFIG_R)) { |
| LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "state", node->schema->name); |
| return LY_EVALID; |
| } else if ((op == LYD_VALIDATE_OP_RPC) && (node->schema->flags & LYS_CONFIG_R)) { |
| LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "output", node->schema->name); |
| return LY_EVALID; |
| } else if ((op == LYD_VALIDATE_OP_REPLY) && (node->schema->flags & LYS_CONFIG_W)) { |
| LOGVAL(LYD_CTX(node), LY_VLOG_LYD, node, LY_VCODE_INNODE, "input", node->schema->name); |
| return LY_EVALID; |
| } |
| |
| /* obsolete data */ |
| lyd_validate_obsolete(node); |
| |
| /* node's musts */ |
| LY_CHECK_RET(lyd_validate_must(node, op)); |
| |
| /* node value including if-feature was checked by plugins */ |
| } |
| |
| /* validate schema-based restrictions */ |
| LY_CHECK_RET(lyd_validate_siblings_schema_r(first, sparent, mod ? mod->compiled : NULL, val_opts, op)); |
| |
| LY_LIST_FOR(first, node) { |
| /* validate all children recursively */ |
| LY_CHECK_RET(lyd_validate_final_r(lyd_child(node), node->schema, NULL, val_opts, op)); |
| |
| /* set default for containers */ |
| if ((node->schema->nodetype == LYS_CONTAINER) && !(node->schema->flags & LYS_PRESENCE)) { |
| LY_LIST_FOR(lyd_child(node), next) { |
| if (!(next->flags & LYD_DEFAULT)) { |
| break; |
| } |
| } |
| if (!next) { |
| node->flags |= LYD_DEFAULT; |
| } |
| } |
| } |
| |
| return LY_SUCCESS; |
| } |
| |
| /** |
| * @brief Validate the whole data subtree. |
| * |
| * @param[in] root Subtree root. |
| * @param[in,out] type_check Set for unres node types. |
| * @param[in,out] type_meta_check Set for unres metadata types. |
| * @param[in,out] when_check Set for nodes with when conditions. |
| * @param[in] val_opts Validation options, see @ref datavalidationoptions. |
| * @param[in,out] diff Validation diff. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate_subtree(struct lyd_node *root, struct ly_set *type_check, struct ly_set *type_meta_check, |
| struct ly_set *when_check, uint32_t val_opts, struct lyd_node **diff) |
| { |
| const struct lyd_meta *meta; |
| struct lyd_node *node; |
| |
| LYD_TREE_DFS_BEGIN(root, node) { |
| /* skip added default nodes */ |
| if ((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) { |
| LY_LIST_FOR(node->meta, meta) { |
| if (((struct lyext_metadata *)meta->annotation->data)->type->plugin->validate) { |
| /* metadata type resolution */ |
| LY_CHECK_RET(ly_set_add(type_meta_check, (void *)meta, 1, NULL)); |
| } |
| } |
| |
| if ((node->schema->nodetype & LYD_NODE_TERM) && ((struct lysc_node_leaf *)node->schema)->type->plugin->validate) { |
| /* node type resolution */ |
| LY_CHECK_RET(ly_set_add(type_check, (void *)node, 1, NULL)); |
| } else if (node->schema->nodetype & LYD_NODE_INNER) { |
| /* new node validation, autodelete */ |
| LY_CHECK_RET(lyd_validate_new(lyd_node_children_p((struct lyd_node *)node), node->schema, NULL, diff)); |
| |
| /* add nested defaults */ |
| LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, type_check, |
| when_check, val_opts & LYD_VALIDATE_NO_STATE ? LYD_IMPLICIT_NO_STATE : 0, |
| diff)); |
| } |
| |
| if (!(node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && node->schema->when) { |
| /* when evaluation */ |
| LY_CHECK_RET(ly_set_add(when_check, (void *)node, 1, NULL)); |
| } |
| } |
| |
| LYD_TREE_DFS_END(root, node); |
| } |
| |
| return LY_SUCCESS; |
| } |
| |
| /** |
| * @brief Validate data tree. |
| * |
| * @param[in,out] tree Data tree to validate, nodes may be autodeleted. |
| * @param[in] modules Array of modules to validate, NULL for all modules. |
| * @param[in] mod_count Count of @p modules. |
| * @param[in] ly_ctx libyang context. |
| * @param[in] val_opts Validation options, see @ref datavalidationoptions. |
| * @param[out] diff Generated validation diff, not generated if NULL. |
| * @return LY_ERR value. |
| */ |
| static LY_ERR |
| lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts, |
| struct lyd_node **diff) |
| { |
| LY_ERR ret = LY_SUCCESS; |
| struct lyd_node *first, *next, **first2; |
| const struct lys_module *mod; |
| struct ly_set type_check = {0}, type_meta_check = {0}, when_check = {0}; |
| uint32_t i = 0; |
| |
| LY_CHECK_ARG_RET(NULL, tree, *tree || ctx || module, LY_EINVAL); |
| if (diff) { |
| *diff = NULL; |
| } |
| |
| next = *tree; |
| while (1) { |
| if (val_opts & LYD_VALIDATE_PRESENT) { |
| mod = lyd_data_next_module(&next, &first); |
| } else { |
| mod = lyd_mod_next_module(next, module, ctx, &i, &first); |
| } |
| if (!mod) { |
| break; |
| } |
| if (!first || (first == *tree)) { |
| /* make sure first2 changes are carried to tree */ |
| first2 = tree; |
| } else { |
| first2 = &first; |
| } |
| |
| /* validate new top-level nodes of this module, autodelete */ |
| ret = lyd_validate_new(first2, NULL, mod, diff); |
| LY_CHECK_GOTO(ret, cleanup); |
| |
| /* add all top-level defaults for this module */ |
| ret = lyd_new_implicit_r(NULL, first2, NULL, mod, &type_check, &when_check, val_opts & LYD_VALIDATE_NO_STATE ? |
| LYD_IMPLICIT_NO_STATE : 0, diff); |
| LY_CHECK_GOTO(ret, cleanup); |
| |
| /* process nested nodes */ |
| LY_LIST_FOR(*first2, first) { |
| ret = lyd_validate_subtree(first, &type_check, &type_meta_check, &when_check, val_opts, diff); |
| LY_CHECK_GOTO(ret, cleanup); |
| } |
| |
| /* finish incompletely validated terminal values/attributes and when conditions */ |
| ret = lyd_validate_unres(tree, &when_check, &type_check, &type_meta_check, diff); |
| LY_CHECK_GOTO(ret, cleanup); |
| |
| /* perform final validation that assumes the data tree is final */ |
| ret = lyd_validate_final_r(*first2, NULL, mod, val_opts, 0); |
| LY_CHECK_GOTO(ret, cleanup); |
| } |
| |
| cleanup: |
| ly_set_erase(&type_check, NULL); |
| ly_set_erase(&type_meta_check, NULL); |
| ly_set_erase(&when_check, NULL); |
| return ret; |
| } |
| |
| API LY_ERR |
| lyd_validate_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t val_opts, struct lyd_node **diff) |
| { |
| return lyd_validate(tree, NULL, ctx, val_opts, diff); |
| } |
| |
| API LY_ERR |
| lyd_validate_module(struct lyd_node **tree, const struct lys_module *module, uint32_t val_opts, struct lyd_node **diff) |
| { |
| return lyd_validate(tree, module, NULL, val_opts, diff); |
| } |
| |
| /** |
| * @brief Find nodes for merging an operation into data tree for validation. |
| * |
| * @param[in] op_tree Full operation data tree. |
| * @param[in] op_node Operation node itself. |
| * @param[in] tree Data tree to be merged into. |
| * @param[out] op_subtree Operation subtree to merge. |
| * @param[out] tree_sibling Data tree sibling to merge next to. |
| */ |
| static void |
| lyd_val_op_merge_find(const struct lyd_node *op_tree, const struct lyd_node *op_node, const struct lyd_node *tree, |
| struct lyd_node **op_subtree, struct lyd_node **tree_sibling) |
| { |
| const struct lyd_node *tree_iter, *op_iter; |
| struct lyd_node *match; |
| uint32_t i, cur_depth, op_depth; |
| |
| /* learn op depth (top-level being depth 0) */ |
| op_depth = 0; |
| for (op_iter = op_node; op_iter != op_tree; op_iter = (struct lyd_node *)op_iter->parent) { |
| ++op_depth; |
| } |
| |
| /* find where to merge op */ |
| tree_iter = tree; |
| cur_depth = op_depth; |
| op_iter = op_node; |
| while (cur_depth) { |
| /* find next op parent */ |
| op_iter = op_node; |
| for (i = 0; i < cur_depth; ++i) { |
| op_iter = (struct lyd_node *)op_iter->parent; |
| } |
| |
| /* find op iter in tree */ |
| lyd_find_sibling_first(tree_iter, op_iter, &match); |
| if (!match) { |
| break; |
| } |
| |
| /* move tree_iter */ |
| tree_iter = lyd_child(match); |
| |
| /* move depth */ |
| --cur_depth; |
| } |
| |
| *op_subtree = (struct lyd_node *)op_iter; |
| *tree_sibling = (struct lyd_node *)tree_iter; |
| } |
| |
| API LY_ERR |
| lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *tree, LYD_VALIDATE_OP op, struct lyd_node **diff) |
| { |
| LY_ERR ret; |
| struct lyd_node *tree_sibling, *op_subtree, *op_node, *op_parent; |
| struct ly_set type_check = {0}, type_meta_check = {0}, when_check = {0}; |
| |
| LY_CHECK_ARG_RET(NULL, op_tree, !op_tree->parent, !tree || !tree->parent, |
| (op == LYD_VALIDATE_OP_NOTIF) || (op == LYD_VALIDATE_OP_RPC) || (op == LYD_VALIDATE_OP_REPLY), LY_EINVAL); |
| if (diff) { |
| *diff = NULL; |
| } |
| |
| /* find the operation/notification */ |
| LYD_TREE_DFS_BEGIN(op_tree, op_node) { |
| if (((op == LYD_VALIDATE_OP_RPC) || (op == LYD_VALIDATE_OP_REPLY)) && (op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) { |
| break; |
| } else if ((op == LYD_VALIDATE_OP_NOTIF) && (op_node->schema->nodetype == LYS_NOTIF)) { |
| break; |
| } |
| LYD_TREE_DFS_END(op_tree, op_node); |
| } |
| if ((op == LYD_VALIDATE_OP_RPC) || (op == LYD_VALIDATE_OP_REPLY)) { |
| if (!(op_node->schema->nodetype & (LYS_RPC | LYS_ACTION))) { |
| LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No RPC/action to validate found."); |
| return LY_EINVAL; |
| } |
| } else { |
| if (op_node->schema->nodetype != LYS_NOTIF) { |
| LOGERR(LYD_CTX(op_tree), LY_EINVAL, "No notification to validate found."); |
| return LY_EINVAL; |
| } |
| } |
| |
| /* move op_tree to top-level node */ |
| while (op_tree->parent) { |
| op_tree = (struct lyd_node *)op_tree->parent; |
| } |
| |
| /* merge op_tree into tree */ |
| lyd_val_op_merge_find(op_tree, op_node, tree, &op_subtree, &tree_sibling); |
| op_parent = (struct lyd_node *)op_subtree->parent; |
| lyd_unlink_tree(op_subtree); |
| lyd_insert_node(NULL, (struct lyd_node **)&tree_sibling, op_subtree); |
| if (!tree) { |
| tree = tree_sibling; |
| } |
| |
| /* prevalidate whole operation subtree */ |
| LY_CHECK_GOTO(ret = lyd_validate_subtree(op_node, &type_check, &type_meta_check, &when_check, 0, diff), cleanup); |
| |
| /* finish incompletely validated terminal values/attributes and when conditions on the full tree */ |
| LY_CHECK_GOTO(ret = lyd_validate_unres((struct lyd_node **)&tree, &when_check, &type_check, &type_meta_check, |
| diff), cleanup); |
| |
| /* perform final validation of the operation/notification */ |
| lyd_validate_obsolete(op_node); |
| LY_CHECK_GOTO(ret = lyd_validate_must(op_node, op), cleanup); |
| |
| /* final validation of all the descendants */ |
| LY_CHECK_GOTO(ret = lyd_validate_final_r(lyd_child(op_node), op_node->schema, NULL, 0, op), cleanup); |
| |
| cleanup: |
| /* restore operation tree */ |
| lyd_unlink_tree(op_subtree); |
| if (op_parent) { |
| lyd_insert_node(op_parent, NULL, op_subtree); |
| } |
| |
| ly_set_erase(&type_check, NULL); |
| ly_set_erase(&type_meta_check, NULL); |
| ly_set_erase(&when_check, NULL); |
| return ret; |
| } |