blob: aad751e9762d3410e483de032646a0004c38a380 [file] [log] [blame]
Michal Vaskocde73ac2019-11-14 16:10:27 +01001/**
2 * @file validation.h
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief Validation routines.
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 */
14
15#ifndef LY_VALIDATION_H_
16#define LY_VALIDATION_H_
17
Radek Krejci47fab892020-11-05 17:02:41 +010018#include <stdint.h>
19
Michal Vaskocde73ac2019-11-14 16:10:27 +010020#include "log.h"
Radek Krejci47fab892020-11-05 17:02:41 +010021
Radek Krejci77114102021-03-10 15:21:57 +010022struct ly_ctx;
Radek Krejci47fab892020-11-05 17:02:41 +010023struct ly_set;
24struct lyd_node;
25struct lys_module;
26struct lysc_node;
Michal Vaskocde73ac2019-11-14 16:10:27 +010027
Michal Vaskoa6669ba2020-08-06 16:14:26 +020028enum lyd_diff_op;
29
30/**
Radek Krejci4f2e3e52021-03-30 14:20:28 +020031 * @brief Add information about the node's extensions having their own validation callback into an unres set.
32 *
33 * @param[in,out] node_exts Unres set for holding information for validating extension instances.
34 * @param[in] node Data node to be examined.
35 * @return LY_ERR values.
36 */
37LY_ERR lysc_node_ext_tovalidate(struct ly_set *node_exts, struct lyd_node *node);
38
39/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +020040 * @brief Add new changes into a diff. They are always merged.
41 *
42 * @param[in] node Node/subtree to add.
43 * @param[in] op Operation of the change.
44 * @param[in,out] diff Diff to update.
45 * @return LY_ERR value.
46 */
47LY_ERR lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff);
48
Michal Vaskocde73ac2019-11-14 16:10:27 +010049/**
Michal Vaskob1b5c262020-03-05 14:29:47 +010050 * @brief Finish validation of nodes and attributes. Specifically, when (is processed first) and type validation.
Michal Vaskocde73ac2019-11-14 16:10:27 +010051 *
Michal Vaskob1b5c262020-03-05 14:29:47 +010052 * !! It is assumed autodeleted nodes cannot be in the unresolved node type set !!
53 *
54 * @param[in,out] tree Data tree, is updated if some nodes are autodeleted.
Michal Vaskod3bb12f2020-12-04 14:33:09 +010055 * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it.
56 * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be
57 * the first top-level sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +010058 * @param[in] node_when Set with nodes with "when" conditions, can be NULL.
Radek Krejci4f2e3e52021-03-30 14:20:28 +020059 * @param[in] node_exts Set with nodes with extension instances with validation plugin callback, can be NULL.
Michal Vaskocde73ac2019-11-14 16:10:27 +010060 * @param[in] node_types Set with nodes with unresolved types, can be NULL
Michal Vasko9f96a052020-03-10 09:41:45 +010061 * @param[in] meta_types Set with metdata with unresolved types, can be NULL.
Michal Vasko8104fd42020-07-13 11:09:51 +020062 * @param[in,out] diff Validation diff.
Michal Vaskocde73ac2019-11-14 16:10:27 +010063 * @return LY_ERR value.
64 */
Michal Vaskod3bb12f2020-12-04 14:33:09 +010065LY_ERR lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when,
Radek Krejci4f2e3e52021-03-30 14:20:28 +020066 struct ly_set *node_exts, struct ly_set *node_types, struct ly_set *meta_types, struct lyd_node **diff);
Michal Vaskocde73ac2019-11-14 16:10:27 +010067
68/**
Michal Vaskob1b5c262020-03-05 14:29:47 +010069 * @brief Validate new siblings. Specifically, check duplicated instances, autodelete default values and cases.
Michal Vaskocde73ac2019-11-14 16:10:27 +010070 *
Michal Vaskob1b5c262020-03-05 14:29:47 +010071 * !! It is assumed autodeleted nodes cannot yet be in the unresolved node type set !!
72 *
73 * @param[in,out] first First sibling.
74 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
75 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vasko8104fd42020-07-13 11:09:51 +020076 * @param[in,out] diff Validation diff.
Michal Vaskob1b5c262020-03-05 14:29:47 +010077 * @return LY_ERR value.
78 */
Michal Vasko8104fd42020-07-13 11:09:51 +020079LY_ERR lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +020080 struct lyd_node **diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +010081
82/**
Michal Vaskoe0665742021-02-11 11:08:44 +010083 * @brief Validate a data tree.
Michal Vaskob1b5c262020-03-05 14:29:47 +010084 *
Michal Vaskoe0665742021-02-11 11:08:44 +010085 * @param[in,out] tree Data tree to validate, nodes may be autodeleted.
86 * @param[in] module Module whose data (and schema restrictions) to validate, NULL for all modules.
87 * @param[in] ctx libyang context.
88 * @param[in] val_opts Validation options, see @ref datavalidationoptions.
89 * @param[in] validate_subtree Whether subtree was already validated (as part of data parsing) or not (separate validation).
90 * @param[in] node_when_p Set of nodes with when conditions, if NULL a local set is used.
Radek Krejci4f2e3e52021-03-30 14:20:28 +020091 * @param[in] node_exts Set with nodes with extension instances with validation plugin callback, if NULL a local set is used.
Michal Vaskoe0665742021-02-11 11:08:44 +010092 * @param[in] node_types_p Set of unres node types, if NULL a local set is used.
93 * @param[in] meta_types_p Set of unres metadata types, if NULL a local set is used.
94 * @param[out] diff Generated validation diff, not generated if NULL.
Michal Vaskocde73ac2019-11-14 16:10:27 +010095 * @return LY_ERR value.
96 */
Michal Vaskoe0665742021-02-11 11:08:44 +010097LY_ERR lyd_validate(struct lyd_node **tree, const struct lys_module *module, const struct ly_ctx *ctx, uint32_t val_opts,
Radek Krejci4f2e3e52021-03-30 14:20:28 +020098 ly_bool validate_subtree, struct ly_set *node_when_p, struct ly_set *node_exts_p,
99 struct ly_set *node_types_p, struct ly_set *meta_types_p, struct lyd_node **diff);
Michal Vasko9b368d32020-02-14 13:53:31 +0100100
Michal Vaskocde73ac2019-11-14 16:10:27 +0100101#endif /* LY_VALIDATION_H_ */