Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file path.h |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief Path structure and manipulation routines. |
| 5 | * |
| 6 | * Copyright (c) 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_PATH_H_ |
| 16 | #define LY_PATH_H_ |
| 17 | |
Radek Krejci | ad97c5f | 2020-06-30 09:19:28 +0200 | [diff] [blame] | 18 | #include <stddef.h> |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
| 20 | |
| 21 | #include "log.h" |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 22 | #include "tree.h" |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 23 | #include "tree_data.h" |
| 24 | |
Radek Krejci | ad97c5f | 2020-06-30 09:19:28 +0200 | [diff] [blame] | 25 | struct ly_ctx; |
Radek Krejci | 0aa1f70 | 2021-04-01 16:16:19 +0200 | [diff] [blame] | 26 | struct lys_module; |
| 27 | struct lysc_ext_instance; |
| 28 | struct lysc_node; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 29 | struct lyxp_expr; |
| 30 | |
| 31 | enum ly_path_pred_type { |
| 32 | LY_PATH_PREDTYPE_NONE = 0, /**< no predicate */ |
| 33 | LY_PATH_PREDTYPE_POSITION, /**< position predicate - [2] */ |
| 34 | LY_PATH_PREDTYPE_LIST, /**< keys predicate - [key1='val1'][key2='val2']... */ |
| 35 | LY_PATH_PREDTYPE_LEAFLIST /**< leaflist value predicate - [.='value'] */ |
| 36 | }; |
| 37 | |
| 38 | /** |
Christian Hopps | 61213e0 | 2021-04-12 20:41:32 -0400 | [diff] [blame] | 39 | * @brief Structure for simple path predicate. |
| 40 | */ |
| 41 | struct ly_path_predicate { |
| 42 | union { |
| 43 | uint64_t position; /**< position value for the position-predicate */ |
| 44 | struct { |
| 45 | const struct lysc_node *key; /**< key node of the predicate, NULL in |
| 46 | case of a leaf-list predicate */ |
| 47 | struct lyd_value value; /**< value representation according to the |
| 48 | key's type, its realtype is allocated */ |
| 49 | }; |
| 50 | }; |
| 51 | }; |
| 52 | |
| 53 | /** |
| 54 | * @brief Structure for holding one segment of resolved path on schema including |
| 55 | * simple predicates. Is used as a [sized array](@ref sizedarrays). |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 56 | */ |
| 57 | struct ly_path { |
| 58 | const struct lysc_node *node; /**< Schema node representing the path segment, first node has special meaning: |
| 59 | - is a top-level node - path is absolute, |
| 60 | - is inner node - path is relative */ |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 61 | const struct lysc_ext_instance *ext; /**< Extension instance of @p node, if any */ |
| 62 | struct ly_path_predicate *predicates; /**< [Sized array](@ref sizedarrays) of the path segment's predicates */ |
| 63 | enum ly_path_pred_type pred_type; /**< Predicate type (see YANG ABNF) */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | /** |
| 67 | * @defgroup path_begin_options Path begin options. |
| 68 | * @{ |
| 69 | */ |
| 70 | #define LY_PATH_BEGIN_ABSOLUTE 0x01 /**< path must be absolute */ |
aPiecek | b0445f2 | 2021-06-24 11:34:07 +0200 | [diff] [blame] | 71 | #define LY_PATH_BEGIN_EITHER 0x02 /**< path be be either absolute or relative */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 72 | /** @} */ |
| 73 | |
| 74 | /** |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 75 | * @defgroup path_prefix_options Path prefix options. |
| 76 | * @{ |
| 77 | */ |
| 78 | #define LY_PATH_PREFIX_OPTIONAL 0x10 /**< prefixes in the path are optional */ |
Michal Vasko | 8b06a5e | 2020-08-06 12:13:08 +0200 | [diff] [blame] | 79 | #define LY_PATH_PREFIX_MANDATORY 0x20 /**< prefixes in the path are mandatory (XML instance-identifier) */ |
| 80 | #define LY_PATH_PREFIX_STRICT_INHERIT 0x30 /**< prefixes in the path are mandatory in case they differ from the |
| 81 | previous prefixes, otherwise they are prohibited (JSON instance-identifier) */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 82 | /** @} */ |
| 83 | |
| 84 | /** |
| 85 | * @defgroup path_pred_options Path predicate options. |
| 86 | * @{ |
| 87 | */ |
| 88 | #define LY_PATH_PRED_KEYS 0x40 /* expected predicate only - [node='value']* */ |
| 89 | #define LY_PATH_PRED_SIMPLE 0x80 /* expected predicates - [node='value']*; [.='value']; [1] */ |
| 90 | #define LY_PATH_PRED_LEAFREF 0xC0 /* expected predicates only leafref - [node=current()/../../../node/node]; |
| 91 | at least 1 ".." and 1 "node" after */ |
| 92 | /** @} */ |
| 93 | |
| 94 | /** |
| 95 | * @brief Parse path into XPath token structure and perform all additional checks. |
| 96 | * |
| 97 | * @param[in] ctx libyang context. |
Michal Vasko | aef00cb | 2020-10-16 11:58:57 +0200 | [diff] [blame] | 98 | * @param[in] ctx_node Optional context node, used for logging. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 99 | * @param[in] str_path Path to parse. |
| 100 | * @param[in] path_len Length of @p str_path. |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 101 | * @param[in] lref Whether leafref is being parsed or not. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 102 | * @param[in] begin Begin option (@ref path_begin_options). |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 103 | * @param[in] prefix Prefix option (@ref path_prefix_options). |
| 104 | * @param[in] pred Predicate option (@ref path_pred_options). |
| 105 | * @param[out] expr Parsed path. |
| 106 | * @return LY_ERR value. |
| 107 | */ |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 108 | LY_ERR ly_path_parse(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *str_path, size_t path_len, |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 109 | ly_bool lref, uint8_t begin, uint8_t prefix, uint8_t pred, struct lyxp_expr **expr); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 110 | |
| 111 | /** |
| 112 | * @brief Parse predicate into XPath token structure and perform all additional checks. |
| 113 | * |
| 114 | * @param[in] ctx libyang context. |
Michal Vasko | aef00cb | 2020-10-16 11:58:57 +0200 | [diff] [blame] | 115 | * @param[in] cur_node Optional current (original context) node, used for logging. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 116 | * @param[in] str_path Path to parse. |
| 117 | * @param[in] path_len Length of @p str_path. |
| 118 | * @param[in] prefix Prefix option (@ref path_prefix_options). |
| 119 | * @param[in] pred Predicate option (@ref path_pred_options). |
| 120 | * @param[out] expr Parsed path. |
| 121 | * @return LY_ERR value. |
| 122 | */ |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 123 | LY_ERR ly_path_parse_predicate(const struct ly_ctx *ctx, const struct lysc_node *cur_node, const char *str_path, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 124 | size_t path_len, uint8_t prefix, uint8_t pred, struct lyxp_expr **expr); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 125 | |
| 126 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 127 | * @defgroup path_oper_options Path operation options. |
| 128 | * @{ |
| 129 | */ |
| 130 | #define LY_PATH_OPER_INPUT 0x01 /**< if any RPC/action is traversed, its input nodes are used */ |
| 131 | #define LY_PATH_OPER_OUTPUT 0x02 /**< if any RPC/action is traversed, its output nodes are used */ |
| 132 | /** @} */ |
| 133 | |
| 134 | /* lref */ |
| 135 | |
| 136 | /** |
| 137 | * @defgroup path_target_options Path target options. |
| 138 | * @{ |
| 139 | */ |
| 140 | #define LY_PATH_TARGET_SINGLE 0x10 /**< last (target) node must identify an exact instance */ |
| 141 | #define LY_PATH_TARGET_MANY 0x20 /**< last (target) node may identify all instances (of leaf-list/list) */ |
| 142 | /** @} */ |
| 143 | |
| 144 | /** |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 145 | * @brief Compile path into ly_path structure. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 146 | * |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 147 | * @param[in] ctx libyang context. |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 148 | * @param[in] cur_mod Current module of the path (where it was "instantiated"). Used for nodes in schema-nodeid |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 149 | * without a prefix for ::LY_VALUE_SCHEMA and ::LY_VALUE_SCHEMA_RESOLVED format. |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 150 | * @param[in] ctx_node Optional context node. |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 151 | * @param[in] top_ext Extension instance containing the definition of the data being created. It is used to find the top-level |
Radek Krejci | d5d3743 | 2021-03-12 13:46:40 +0100 | [diff] [blame] | 152 | * node inside the extension instance instead of a module. Note that this is the case not only if the @p ctx_node is NULL, |
| 153 | * but also if the relative path starting in @p ctx_node reaches the document root via double dots. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 154 | * @param[in] expr Parsed path. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 155 | * @param[in] oper Oper option (@ref path_oper_options). |
| 156 | * @param[in] target Target option (@ref path_target_options). |
Michal Vasko | 0884d21 | 2021-10-14 09:21:46 +0200 | [diff] [blame] | 157 | * @param[in] limit_access_tree Whether to limit accessible tree. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 158 | * @param[in] format Format of the path. |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 159 | * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix). |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 160 | * @param[out] path Compiled path. |
| 161 | * @return LY_ERR value. |
| 162 | */ |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 163 | LY_ERR ly_path_compile(const struct ly_ctx *ctx, const struct lys_module *cur_mod, const struct lysc_node *ctx_node, |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 164 | const struct lysc_ext_instance *top_ext, const struct lyxp_expr *expr, uint8_t oper, uint8_t target, |
Michal Vasko | 0884d21 | 2021-10-14 09:21:46 +0200 | [diff] [blame] | 165 | ly_bool limit_access_tree, LY_VALUE_FORMAT format, void *prefix_data, struct ly_path **path); |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 166 | |
| 167 | /** |
| 168 | * @brief Compile path into ly_path structure. Any predicates of a leafref are only checked, not compiled. |
| 169 | * |
| 170 | * @param[in] ctx libyang context. |
| 171 | * @param[in] ctx_node Context node. |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 172 | * @param[in] top_ext Extension instance containing the definition of the data being created. It is used to find the top-level |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 173 | * node inside the extension instance instead of a module. Note that this is the case not only if the @p ctx_node is NULL, |
| 174 | * but also if the relative path starting in @p ctx_node reaches the document root via double dots. |
| 175 | * @param[in] expr Parsed path. |
| 176 | * @param[in] oper Oper option (@ref path_oper_options). |
| 177 | * @param[in] target Target option (@ref path_target_options). |
| 178 | * @param[in] format Format of the path. |
| 179 | * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix). |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 180 | * @param[out] path Compiled path. |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 181 | * @return LY_ERR value. |
| 182 | */ |
| 183 | LY_ERR ly_path_compile_leafref(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 184 | const struct lysc_ext_instance *top_ext, const struct lyxp_expr *expr, uint8_t oper, uint8_t target, |
Michal Vasko | 24fc4d1 | 2021-07-12 14:41:20 +0200 | [diff] [blame] | 185 | LY_VALUE_FORMAT format, void *prefix_data, struct ly_path **path); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 186 | |
| 187 | /** |
| 188 | * @brief Compile predicate into ly_path_predicate structure. Only simple predicates (not leafref) are supported. |
| 189 | * |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 190 | * @param[in] ctx libyang context. |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 191 | * @param[in] cur_node Optional current (original context) node. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 192 | * @param[in] cur_mod Current module of the path (where it was "instantiated"). Used for nodes without a prefix |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 193 | * for ::LY_VALUE_SCHEMA and ::LY_VALUE_SCHEMA_RESOLVED format. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 194 | * @param[in] ctx_node Context node, node for which the predicate is defined. |
| 195 | * @param[in] expr Parsed path. |
| 196 | * @param[in,out] tok_idx Index in @p expr, is adjusted for parsed tokens. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 197 | * @param[in] format Format of the path. |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 198 | * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix). |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 199 | * @param[out] predicates Compiled predicates. |
| 200 | * @param[out] pred_type Type of the compiled predicate(s). |
| 201 | * @return LY_ERR value. |
| 202 | */ |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 203 | LY_ERR ly_path_compile_predicate(const struct ly_ctx *ctx, const struct lysc_node *cur_node, const struct lys_module *cur_mod, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 204 | const struct lysc_node *ctx_node, const struct lyxp_expr *expr, uint16_t *tok_idx, LY_VALUE_FORMAT format, |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 205 | void *prefix_data, struct ly_path_predicate **predicates, enum ly_path_pred_type *pred_type); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 206 | |
| 207 | /** |
| 208 | * @brief Resolve at least partially the target defined by ly_path structure. Not supported for leafref! |
| 209 | * |
| 210 | * @param[in] path Path structure specifying the target. |
| 211 | * @param[in] start Starting node for relative paths, can be any for absolute paths. |
| 212 | * @param[out] path_idx Last found path segment index, can be NULL, set to 0 if not found. |
| 213 | * @param[out] match Last found matching node, can be NULL, set to NULL if not found. |
| 214 | * @return LY_ENOTFOUND if no nodes were found, |
| 215 | * @return LY_EINCOMPLETE if some node was found but not the last one, |
| 216 | * @return LY_SUCCESS when the last node in the path was found, |
| 217 | * @return LY_ERR on another error. |
| 218 | */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 219 | LY_ERR ly_path_eval_partial(const struct ly_path *path, const struct lyd_node *start, LY_ARRAY_COUNT_TYPE *path_idx, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 220 | struct lyd_node **match); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 221 | |
| 222 | /** |
| 223 | * @brief Resolve the target defined by ly_path structure. Not supported for leafref! |
| 224 | * |
| 225 | * @param[in] path Path structure specifying the target. |
| 226 | * @param[in] start Starting node for relative paths, can be any for absolute paths. |
| 227 | * @param[out] match Found matching node, can be NULL, set to NULL if not found. |
| 228 | * @return LY_ENOTFOUND if no nodes were found, |
| 229 | * @return LY_SUCCESS when the last node in the path was found, |
| 230 | * @return LY_ERR on another error. |
| 231 | */ |
| 232 | LY_ERR ly_path_eval(const struct ly_path *path, const struct lyd_node *start, struct lyd_node **match); |
| 233 | |
| 234 | /** |
| 235 | * @brief Duplicate ly_path structure. |
| 236 | * |
| 237 | * @param[in] ctx libyang context. |
| 238 | * @param[in] path Path to duplicate. |
| 239 | * @param[out] dup Duplicated path. |
| 240 | * @return LY_ERR value. |
| 241 | */ |
| 242 | LY_ERR ly_path_dup(const struct ly_ctx *ctx, const struct ly_path *path, struct ly_path **dup); |
| 243 | |
| 244 | /** |
| 245 | * @brief Free ly_path_predicate structure. |
| 246 | * |
| 247 | * @param[in] ctx libyang context. |
| 248 | * @param[in] pred_type Predicate type. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 249 | * @param[in] predicates Predicates ([sized array](@ref sizedarrays)) to free. |
| 250 | */ |
Michal Vasko | f7e16e2 | 2020-10-21 09:24:39 +0200 | [diff] [blame] | 251 | void ly_path_predicates_free(const struct ly_ctx *ctx, enum ly_path_pred_type pred_type, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 252 | struct ly_path_predicate *predicates); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 253 | |
| 254 | /** |
| 255 | * @brief Free ly_path structure. |
| 256 | * |
| 257 | * @param[in] ctx libyang context. |
| 258 | * @param[in] path The structure ([sized array](@ref sizedarrays)) to free. |
| 259 | */ |
| 260 | void ly_path_free(const struct ly_ctx *ctx, struct ly_path *path); |
| 261 | |
| 262 | #endif /* LY_PATH_H_ */ |