Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file parser_data.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Data parsers for libyang |
| 5 | * |
| 6 | * Copyright (c) 2015-2020 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_PARSER_DATA_H_ |
| 16 | #define LY_PARSER_DATA_H_ |
| 17 | |
| 18 | #include "tree_data.h" |
| 19 | |
| 20 | #ifdef __cplusplus |
| 21 | extern "C" { |
| 22 | #endif |
| 23 | |
| 24 | struct ly_in; |
| 25 | |
| 26 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 27 | * @page howtoDataParsers Parsing Data |
| 28 | * |
| 29 | * Data parser allows to read instances from a specific format. libyang supports the following data formats: |
| 30 | * |
| 31 | * - XML |
| 32 | * |
| 33 | * Original data format used in NETCONF protocol. XML mapping is part of the YANG specification |
| 34 | * ([RFC 6020](http://tools.ietf.org/html/rfc6020)). |
| 35 | * |
| 36 | * - JSON |
| 37 | * |
| 38 | * The alternative data format available in RESTCONF protocol. Specification of JSON encoding of data modeled by YANG |
| 39 | * can be found in [RFC 7951](http://tools.ietf.org/html/rfc7951). The specification does not cover RPCs, actions and |
| 40 | * Notifications, so the representation of these data trees is proprietary and corresponds to the representation of these |
| 41 | * trees in XML. |
| 42 | * |
| 43 | * While the parsers themselves process the input data only syntactically, all the parser functions actually incorporate |
| 44 | * the [common validator](@ref howtoDataValidation) checking the input data semantically. Therefore, the parser functions |
| 45 | * accepts two groups of options - @ref dataparseroptions and @ref datavalidationoptions. |
| 46 | * |
| 47 | * In contrast to the schema parser, data parser also accepts empty input data if such an empty data tree is valid |
| 48 | * according to the schemas in the libyang context (i.e. there are no top level mandatory nodes). |
| 49 | * |
| 50 | * There are individual functions to process different types of the data instances trees: |
| 51 | * - ::lyd_parse_data() is intended for standard configuration data trees. According to the given |
| 52 | * [parser options](@ref dataparseroptions), the caller can further specify which kind of data tree is expected: |
| 53 | * - *complete :running datastore*: this is the default case, possibly with the use of (some of) the |
| 54 | * ::LYD_PARSE_STRICT, ::LYD_PARSE_OPAQ or ::LYD_VALIDATE_PRESENT options. |
| 55 | * - *complete configuration-only datastore* (such as :startup): in this case it is necessary to except all state data |
| 56 | * using ::LYD_PARSE_NO_STATE option. |
| 57 | * - *incomplete datastore*: there are situation when the data tree is incomplete or invalid by specification. For |
| 58 | * example the *:operational* datastore is not necessarily valid and results of the NETCONF's \<get\> or \<get-config\> |
| 59 | * oprations used with filters will be incomplete (and thus invalid). This can be allowed using ::LYD_PARSE_ONLY, |
| 60 | * the ::LYD_PARSE_NO_STATE should be used for the data returned by \<get-config\> operation. |
| 61 | * - ::lyd_parse_rpc() is used for parsing RPCs/Actions, optionally including the RPC envelopes known from the NETCONF |
| 62 | * protocol. |
| 63 | * - ::lyd_parse_reply() processes reply to a previous RPC/Action, which must be provided. |
| 64 | * - ::lyd_parse_notif() is able to process complete Notification message. |
| 65 | * |
| 66 | * Further information regarding the processing input instance data can be found on the following pages. |
| 67 | * - @subpage howtoDataValidation |
| 68 | * - @subpage howtoDataWD |
| 69 | * |
| 70 | * Functions List |
| 71 | * -------------- |
| 72 | * - ::lyd_parse_data() |
| 73 | * - ::lyd_parse_data_mem() |
| 74 | * - ::lyd_parse_data_fd() |
| 75 | * - ::lyd_parse_data_path() |
| 76 | * - ::lyd_parse_rpc() |
| 77 | * - ::lyd_parse_reply() |
| 78 | * - ::lyd_parse_notif() |
| 79 | */ |
| 80 | |
| 81 | /** |
| 82 | * @page howtoDataValidation Validating Data |
| 83 | * |
| 84 | * Data validation is performed implicitly to the input data processed by the [parser](@ref howtoDataParsers) and |
| 85 | * on demand via the lyd_validate_*() functions. The explicit validation process is supposed to be used when a (complex or |
| 86 | * simple) change is done on the data tree (via [data manipulation](@ref howtoDataManipulation) functions) and the data |
| 87 | * tree is expected to be valid (it doesn't make sense to validate modified result of filtered \<get\> operation). |
| 88 | * |
| 89 | * Similarly to the [data parser](@ref howtoDataParsers), there are individual functions to validate standard data tree |
| 90 | * (::lyd_validate_all()) and RPC, Action and Notification (::lyd_validate_op()). For the standard data trees, it is possible |
| 91 | * to modify the validation process by @ref datavalidationoptions. This way the state data can be prohibited |
| 92 | * (::LYD_VALIDATE_NO_STATE) and checking for mandatory nodes can be limited to the YANG modules with already present data |
| 93 | * instances (::LYD_VALIDATE_PRESENT). Validation of the standard data tree can be also limited with ::lyd_validate_module() |
| 94 | * function, which scopes only to a specified single YANG module. |
| 95 | * |
| 96 | * Since the operation data trees (RPCs, Actions or Notifications) can reference (leafref, instance-identifier, when/must |
| 97 | * expressions) data from a datastore tree, ::lyd_validate_op() may require additional data tree to be provided. This is a |
| 98 | * difference in contrast to the parsing process, when the data are loaded from an external source and invalid reference |
| 99 | * outside the operation tree is acceptable. |
| 100 | * |
| 101 | * Functions List |
| 102 | * -------------- |
| 103 | * - ::lyd_validate_all() |
| 104 | * - ::lyd_validate_module() |
| 105 | * - ::lyd_validate_op() |
| 106 | */ |
| 107 | |
| 108 | /** |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 109 | * @addtogroup datatree |
| 110 | * @{ |
| 111 | */ |
| 112 | |
| 113 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 114 | * @ingroup datatree |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 115 | * @defgroup dataparseroptions Data parser options |
| 116 | * |
| 117 | * Various options to change the data tree parsers behavior. |
| 118 | * |
| 119 | * Default parser behavior: |
| 120 | * - complete input file is always parsed. In case of XML, even not well-formed XML document (multiple top-level |
| 121 | * elements) is parsed in its entirety, |
| 122 | * - parser silently ignores data without matching schema node definition, |
| 123 | * - list instances are checked whether they have all the keys, error is raised if not. |
| 124 | * |
| 125 | * Default parser validation behavior: |
| 126 | * - the provided data are expected to provide complete datastore content (both the configuration and state data) |
| 127 | * and performs data validation according to all YANG rules, specifics follow, |
| 128 | * - list instances are expected to have all the keys (it is not checked), |
| 129 | * - instantiated (status) obsolete data print a warning, |
| 130 | * - all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have |
| 131 | * all the keys, leaf(-lists) correct values), |
| 132 | * - when statements on existing nodes are evaluated, if not satisfied, a validation error is raised, |
| 133 | * - if-feature statements are evaluated, |
| 134 | * - invalid multiple data instances/data from several cases cause a validation error, |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 135 | * - implicit nodes (NP containers and default values) are added. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 136 | * @{ |
| 137 | */ |
| 138 | /* note: keep the lower 16bits free for use by LYD_VALIDATE_ flags. They are not supposed to be combined together, |
| 139 | * but since they are used (as a separate parameter) together in some functions, we want to keep them in a separated |
| 140 | * range to be able detect that the caller put wrong flags into the parser/validate options parameter. */ |
| 141 | #define LYD_PARSE_ONLY 0x010000 /**< Data will be only parsed and no validation will be performed. When statements |
| 142 | are kept unevaluated, union types may not be fully resolved, if-feature |
| 143 | statements are not checked, and default values are not added (only the ones |
| 144 | parsed are present). */ |
Michal Vasko | 0f3377d | 2020-11-09 20:56:11 +0100 | [diff] [blame] | 145 | #define LYD_PARSE_STRICT 0x020000 /**< Instead of silently ignoring data without schema definition raise an error. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 146 | Do not combine with #LYD_PARSE_OPAQ (except for ::LYD_LYB). */ |
Michal Vasko | 0f3377d | 2020-11-09 20:56:11 +0100 | [diff] [blame] | 147 | #define LYD_PARSE_OPAQ 0x040000 /**< Instead of silently ignoring data without definition, parse them into |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 148 | an opaq node. Do not combine with #LYD_PARSE_STRICT (except for ::LYD_LYB). */ |
Michal Vasko | 0f3377d | 2020-11-09 20:56:11 +0100 | [diff] [blame] | 149 | #define LYD_PARSE_NO_STATE 0x080000 /**< Forbid state data in the parsed data. */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 150 | |
Michal Vasko | 0f3377d | 2020-11-09 20:56:11 +0100 | [diff] [blame] | 151 | #define LYD_PARSE_LYB_MOD_UPDATE 0x100000 /**< Only for LYB format, allow parsing data printed using a specific module |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 152 | revision to be loaded even with a module with the same name but newer |
| 153 | revision. */ |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 154 | |
| 155 | #define LYD_PARSE_OPTS_MASK 0xFFFF0000 /**< Mask for all the LYD_PARSE_ options. */ |
| 156 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 157 | /** @} dataparseroptions */ |
| 158 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 159 | /** |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 160 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 161 | * @defgroup datavalidationoptions Data validation options |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 162 | * |
| 163 | * Various options to change data validation behaviour, both for the parser and separate validation. |
| 164 | * |
| 165 | * Default separate validation behavior: |
| 166 | * - the provided data are expected to provide complete datastore content (both the configuration and state data) |
| 167 | * and performs data validation according to all YANG rules, specifics follow, |
| 168 | * - instantiated (status) obsolete data print a warning, |
| 169 | * - all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have |
| 170 | * all the keys, leaf(-lists) correct values), |
| 171 | * - when statements on existing nodes are evaluated. Depending on the previous when state (from previous validation |
| 172 | * or parsing), the node is silently auto-deleted if the state changed from true to false, otherwise a validation error |
| 173 | * is raised if it evaluates to false, |
| 174 | * - if-feature statements are evaluated, |
| 175 | * - data from several cases behave based on their previous state (from previous validation or parsing). If there existed |
| 176 | * already a case and another one was added, the previous one is silently auto-deleted. Otherwise (if data from 2 or |
| 177 | * more cases were created) a validation error is raised, |
| 178 | * - default values are added. |
| 179 | * |
| 180 | * @{ |
| 181 | */ |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 182 | #define LYD_VALIDATE_NO_STATE 0x0001 /**< Consider state data not allowed and raise an error if they are found. */ |
| 183 | #define LYD_VALIDATE_PRESENT 0x0002 /**< Validate only modules whose data actually exist. */ |
| 184 | |
| 185 | #define LYD_VALIDATE_OPTS_MASK 0x0000FFFF /**< Mask for all the LYD_VALIDATE_* options. */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 186 | |
| 187 | /** @} datavalidationoptions */ |
| 188 | |
| 189 | /** |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 190 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 191 | * @defgroup datavalidateop Operation to validate |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 192 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 193 | * Operation provided to ::lyd_validate_op() to validate. |
| 194 | * |
| 195 | * The operation cannot be determined automatically since RPC/action and a reply to it share the common top level node |
| 196 | * referencing the RPC/action schema node and may not have any input/output children to use for distinction. |
Radek Krejci | 576f8fa | 2020-10-26 21:23:58 +0100 | [diff] [blame] | 197 | * |
| 198 | * @{ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 199 | */ |
| 200 | typedef enum { |
| 201 | LYD_VALIDATE_OP_RPC = 1, /**< Validate RPC/action request (input parameters). */ |
| 202 | LYD_VALIDATE_OP_REPLY, /**< Validate RPC/action reply (output parameters). */ |
| 203 | LYD_VALIDATE_OP_NOTIF /**< Validate Notification operation. */ |
| 204 | } LYD_VALIDATE_OP; |
| 205 | |
| 206 | /** @} datavalidateop */ |
| 207 | |
| 208 | /** |
| 209 | * @brief Parse (and validate) data from the input handler as a YANG data tree. |
| 210 | * |
| 211 | * @param[in] ctx Context to connect with the tree being built here. |
| 212 | * @param[in] in The input handle to provide the dumped data in the specified @p format to parse (and validate). |
| 213 | * @param[in] format Format of the input data to be parsed. Can be 0 to try to detect format from the input handler. |
| 214 | * @param[in] parse_options Options for parser, see @ref dataparseroptions. |
| 215 | * @param[in] validate_options Options for the validation phase, see @ref datavalidationoptions. |
| 216 | * @param[out] tree Resulting data tree built from the input data. Note that NULL can be a valid result as a representation of an empty YANG data tree. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 217 | * The returned data are expected to be freed using ::lyd_free_all(). |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 218 | * @return LY_SUCCESS in case of successful parsing (and validation). |
Michal Vasko | 6d49766 | 2020-07-08 10:42:57 +0200 | [diff] [blame] | 219 | * @return LY_ERR value in case of error. Additional error information can be obtained from the context using ly_err* functions. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 220 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 221 | LY_ERR lyd_parse_data(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, uint32_t parse_options, |
| 222 | uint32_t validate_options, struct lyd_node **tree); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 223 | |
| 224 | /** |
| 225 | * @brief Parse (and validate) input data as a YANG data tree. |
| 226 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 227 | * Wrapper around ::lyd_parse_data() hiding work with the input handler. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 228 | * |
| 229 | * @param[in] ctx Context to connect with the tree being built here. |
| 230 | * @param[in] data The input data in the specified @p format to parse (and validate). |
| 231 | * @param[in] format Format of the input data to be parsed. Can be 0 to try to detect format from the input handler. |
| 232 | * @param[in] parse_options Options for parser, see @ref dataparseroptions. |
| 233 | * @param[in] validate_options Options for the validation phase, see @ref datavalidationoptions. |
| 234 | * @param[out] tree Resulting data tree built from the input data. Note that NULL can be a valid result as a representation of an empty YANG data tree. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 235 | * The returned data are expected to be freed using ::lyd_free_all(). |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 236 | * @return LY_SUCCESS in case of successful parsing (and validation). |
Michal Vasko | 6d49766 | 2020-07-08 10:42:57 +0200 | [diff] [blame] | 237 | * @return LY_ERR value in case of error. Additional error information can be obtained from the context using ly_err* functions. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 238 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 239 | LY_ERR lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, uint32_t parse_options, |
| 240 | uint32_t validate_options, struct lyd_node **tree); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 241 | |
| 242 | /** |
| 243 | * @brief Parse (and validate) input data as a YANG data tree. |
| 244 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 245 | * Wrapper around ::lyd_parse_data() hiding work with the input handler. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 246 | * |
| 247 | * @param[in] ctx Context to connect with the tree being built here. |
| 248 | * @param[in] fd File descriptor of a regular file (e.g. sockets are not supported) containing the input data in the specified @p format to parse (and validate). |
| 249 | * @param[in] format Format of the input data to be parsed. Can be 0 to try to detect format from the input handler. |
| 250 | * @param[in] parse_options Options for parser, see @ref dataparseroptions. |
| 251 | * @param[in] validate_options Options for the validation phase, see @ref datavalidationoptions. |
| 252 | * @param[out] tree Resulting data tree built from the input data. Note that NULL can be a valid result as a representation of an empty YANG data tree. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 253 | * The returned data are expected to be freed using ::lyd_free_all(). |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 254 | * @return LY_SUCCESS in case of successful parsing (and validation). |
Michal Vasko | 6d49766 | 2020-07-08 10:42:57 +0200 | [diff] [blame] | 255 | * @return LY_ERR value in case of error. Additional error information can be obtained from the context using ly_err* functions. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 256 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 257 | LY_ERR lyd_parse_data_fd(const struct ly_ctx *ctx, int fd, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 258 | struct lyd_node **tree); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 259 | |
| 260 | /** |
| 261 | * @brief Parse (and validate) input data as a YANG data tree. |
| 262 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 263 | * Wrapper around ::lyd_parse_data() hiding work with the input handler. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 264 | * |
| 265 | * @param[in] ctx Context to connect with the tree being built here. |
| 266 | * @param[in] path Path to the file with the input data in the specified @p format to parse (and validate). |
| 267 | * @param[in] format Format of the input data to be parsed. Can be 0 to try to detect format from the input handler. |
| 268 | * @param[in] parse_options Options for parser, see @ref dataparseroptions. |
| 269 | * @param[in] validate_options Options for the validation phase, see @ref datavalidationoptions. |
| 270 | * @param[out] tree Resulting data tree built from the input data. Note that NULL can be a valid result as a representation of an empty YANG data tree. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 271 | * The returned data are expected to be freed using ::lyd_free_all(). |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 272 | * @return LY_SUCCESS in case of successful parsing (and validation). |
Michal Vasko | 6d49766 | 2020-07-08 10:42:57 +0200 | [diff] [blame] | 273 | * @return LY_ERR value in case of error. Additional error information can be obtained from the context using ly_err* functions. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 274 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 275 | LY_ERR lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options, |
| 276 | uint32_t validate_options, struct lyd_node **tree); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 277 | |
| 278 | /** |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 279 | * @brief Parse (no validation) data from the input handler as a YANG RPC/action request. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 280 | * |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 281 | * @param[in] ctx Context to connect with the tree being parsed. |
| 282 | * @param[in] in Input handle to provide the dumped data in the specified @p format to parse. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 283 | * @param[in] format Format of the input data to be parsed. |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 284 | * @param[out] tree Resulting full RPC/action request tree built from the input data. The returned data are expected to be freed using ::lyd_free_all(). |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 285 | * In contrast to YANG data tree, result of parsing RPC/action cannot be NULL until an error occurs. |
| 286 | * @param[out] op Optional pointer to the actual operation node inside the full action @p tree, useful only for action. |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 287 | * @return LY_SUCCESS in case of successful parsing. |
Michal Vasko | 6d49766 | 2020-07-08 10:42:57 +0200 | [diff] [blame] | 288 | * @return LY_ERR value in case of error. Additional error information can be obtained from the context using ly_err* functions. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 289 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 290 | LY_ERR lyd_parse_rpc(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 291 | struct lyd_node **op); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 292 | |
| 293 | /** |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 294 | * @brief Parse (no validation) data from the input handler as a YANG RPC/action reply. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 295 | * |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 296 | * @param[in] ctx Context to connect with the tree being parsed. |
| 297 | * @param[in] in Input handle to provide the dumped data in the specified @p format to parse (and validate). |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 298 | * @param[in] format Format of the input data to be parsed. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 299 | * @param[out] tree Resulting full RPC/action reply tree built from the input data. The returned data are expected to be freed using ::lyd_free_all(). |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 300 | * In contrast to YANG data tree, result of parsing RPC/action cannot be NULL until an error occurs. |
| 301 | * At least one of the @p tree and @p op output variables must be provided. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 302 | * @param[out] op Pointer to the actual operation node inside the full action reply @p tree, useful only for action. At least one of the @p op |
| 303 | * and @p tree output variables must be provided. |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 304 | * @return LY_SUCCESS in case of successful parsing. |
Michal Vasko | 6d49766 | 2020-07-08 10:42:57 +0200 | [diff] [blame] | 305 | * @return LY_ERR value in case of error. Additional error information can be obtained from the request's context using ly_err* functions. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 306 | */ |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 307 | LY_ERR lyd_parse_reply(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 308 | struct lyd_node **op); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 309 | |
| 310 | /** |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 311 | * @brief Parse (no validation) data from the input handler as a YANG notification. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 312 | * |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 313 | * @param[in] ctx Context to connect with the tree being parsed. |
| 314 | * @param[in] in Input handle to provide the dumped data in the specified @p format to parse (and validate). |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 315 | * @param[in] format Format of the input data to be parsed. |
Michal Vasko | 2552ea3 | 2020-12-08 15:32:34 +0100 | [diff] [blame] | 316 | * @param[out] tree Resulting full notification tree built from the input data. The returned data are expected to be freed using ::lyd_free_all(). |
| 317 | * In contrast to YANG data tree, result of parsing notification cannot be NULL until an error occurs. |
| 318 | * @param[out] ntf Optional pointer to the actual notification node inside the full notification @p tree, useful for nested notifications. |
| 319 | * @return LY_SUCCESS in case of successful parsing. |
Michal Vasko | 6d49766 | 2020-07-08 10:42:57 +0200 | [diff] [blame] | 320 | * @return LY_ERR value in case of error. Additional error information can be obtained from the context using ly_err* functions. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 321 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 322 | LY_ERR lyd_parse_notif(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 323 | struct lyd_node **ntf); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 324 | |
| 325 | /** |
| 326 | * @brief Fully validate a data tree. |
| 327 | * |
| 328 | * @param[in,out] tree Data tree to recursively validate. May be changed by validation. |
| 329 | * @param[in] ctx libyang context. Can be NULL if @p tree is set. |
| 330 | * @param[in] val_opts Validation options (@ref datavalidationoptions). |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 331 | * @param[out] diff Optional diff with any changes made by the validation. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 332 | * @return LY_SUCCESS on success. |
| 333 | * @return LY_ERR error on error. |
| 334 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 335 | LY_ERR lyd_validate_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t val_opts, struct lyd_node **diff); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 336 | |
| 337 | /** |
Michal Vasko | 26e8001 | 2020-07-08 10:55:46 +0200 | [diff] [blame] | 338 | * @brief Fully validate a data tree of a module. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 339 | * |
| 340 | * @param[in,out] tree Data tree to recursively validate. May be changed by validation. |
Michal Vasko | 26e8001 | 2020-07-08 10:55:46 +0200 | [diff] [blame] | 341 | * @param[in] module Module whose data (and schema restrictions) to validate. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 342 | * @param[in] val_opts Validation options (@ref datavalidationoptions). |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 343 | * @param[out] diff Optional diff with any changes made by the validation. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 344 | * @return LY_SUCCESS on success. |
| 345 | * @return LY_ERR error on error. |
| 346 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 347 | LY_ERR lyd_validate_module(struct lyd_node **tree, const struct lys_module *module, uint32_t val_opts, struct lyd_node **diff); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 348 | |
| 349 | /** |
| 350 | * @brief Validate an RPC/action, notification, or RPC/action reply. |
| 351 | * |
| 352 | * @param[in,out] op_tree Operation tree with any parents. It can point to the operation itself or any of |
| 353 | * its parents, only the operation subtree is actually validated. |
| 354 | * @param[in] tree Tree to be used for validating references from the operation subtree. |
| 355 | * @param[in] op Operation to validate (@ref datavalidateop), the given @p op_tree must correspond to this value. Note that |
| 356 | * it isn't possible to detect the operation simply from the @p op_tree since RPC/action and their reply share the same |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 357 | * RPC/action data node and in case one of the input and output do not define any data node children, it is not possible |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 358 | * to get know what is here given for validation and if it is really valid. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 359 | * @param[out] diff Optional diff with any changes made by the validation. |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 360 | * @return LY_SUCCESS on success. |
| 361 | * @return LY_ERR error on error. |
| 362 | */ |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 363 | LY_ERR lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *tree, LYD_VALIDATE_OP op, struct lyd_node **diff); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 364 | |
| 365 | /** @} datatree */ |
| 366 | |
| 367 | #ifdef __cplusplus |
| 368 | } |
| 369 | #endif |
| 370 | |
| 371 | #endif /* LY_PARSER_DATA_H_ */ |