blob: 9a9e342bbf3ad726a1990f51afc1bd786092b370 [file] [log] [blame]
Michal Vasko004d3152020-06-11 19:59:22 +02001/**
2 * @file path.h
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief Path structure and manipulation routines.
5 *
Michal Vasko90189962023-02-28 12:10:34 +01006 * Copyright (c) 2020 - 2023 CESNET, z.s.p.o.
Michal Vasko004d3152020-06-11 19:59:22 +02007 *
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 Krejciad97c5f2020-06-30 09:19:28 +020018#include <stddef.h>
Michal Vasko004d3152020-06-11 19:59:22 +020019#include <stdint.h>
20
21#include "log.h"
Michal Vasko00cbf532020-06-15 13:58:47 +020022#include "tree.h"
Michal Vasko004d3152020-06-11 19:59:22 +020023#include "tree_data.h"
24
Radek Krejciad97c5f2020-06-30 09:19:28 +020025struct ly_ctx;
Radek Krejci0aa1f702021-04-01 16:16:19 +020026struct lys_module;
27struct lysc_ext_instance;
28struct lysc_node;
Michal Vasko004d3152020-06-11 19:59:22 +020029struct lyxp_expr;
30
31enum ly_path_pred_type {
Michal Vasko004d3152020-06-11 19:59:22 +020032 LY_PATH_PREDTYPE_POSITION, /**< position predicate - [2] */
33 LY_PATH_PREDTYPE_LIST, /**< keys predicate - [key1='val1'][key2='val2']... */
Michal Vasko90189962023-02-28 12:10:34 +010034 LY_PATH_PREDTYPE_LEAFLIST, /**< leaflist value predicate - [.='value'] */
35 LY_PATH_PREDTYPE_LIST_VAR /**< keys predicate with variable instead of value - [key1=$USER]... */
Michal Vasko004d3152020-06-11 19:59:22 +020036};
37
38/**
Christian Hopps61213e02021-04-12 20:41:32 -040039 * @brief Structure for simple path predicate.
40 */
41struct ly_path_predicate {
Michal Vasko90189962023-02-28 12:10:34 +010042 enum ly_path_pred_type type; /**< Predicate type (see YANG ABNF) */
Christian Hopps61213e02021-04-12 20:41:32 -040043 union {
Michal Vasko90189962023-02-28 12:10:34 +010044 uint64_t position; /**< position value for the position-predicate */
Christian Hopps61213e02021-04-12 20:41:32 -040045 struct {
Michal Vasko90189962023-02-28 12:10:34 +010046 const struct lysc_node *key; /**< key node of the predicate, NULL in case of a leaf-list predicate */
47 union {
48 struct lyd_value value; /**< stored value representation according to the key's type (realtype ref) */
49 char *variable; /**< XPath variable used instead of the value */
50 };
Christian Hopps61213e02021-04-12 20:41:32 -040051 };
52 };
53};
54
55/**
56 * @brief Structure for holding one segment of resolved path on schema including
57 * simple predicates. Is used as a [sized array](@ref sizedarrays).
Michal Vasko004d3152020-06-11 19:59:22 +020058 */
59struct ly_path {
60 const struct lysc_node *node; /**< Schema node representing the path segment, first node has special meaning:
61 - is a top-level node - path is absolute,
62 - is inner node - path is relative */
Michal Vasko8cc3f662022-03-29 11:25:51 +020063 const struct lysc_ext_instance *ext; /**< Extension instance of @p node, if any */
64 struct ly_path_predicate *predicates; /**< [Sized array](@ref sizedarrays) of the path segment's predicates */
Michal Vasko004d3152020-06-11 19:59:22 +020065};
66
67/**
68 * @defgroup path_begin_options Path begin options.
69 * @{
70 */
71#define LY_PATH_BEGIN_ABSOLUTE 0x01 /**< path must be absolute */
aPiecekb0445f22021-06-24 11:34:07 +020072#define LY_PATH_BEGIN_EITHER 0x02 /**< path be be either absolute or relative */
Michal Vasko004d3152020-06-11 19:59:22 +020073/** @} */
74
75/**
Michal Vasko004d3152020-06-11 19:59:22 +020076 * @defgroup path_prefix_options Path prefix options.
77 * @{
78 */
Michal Vasko32ca49b2023-02-17 15:11:35 +010079#define LY_PATH_PREFIX_OPTIONAL 0x10 /**< prefixes in the path are optional (XML path) */
Michal Vasko8b06a5e2020-08-06 12:13:08 +020080#define LY_PATH_PREFIX_MANDATORY 0x20 /**< prefixes in the path are mandatory (XML instance-identifier) */
Michal Vasko32ca49b2023-02-17 15:11:35 +010081#define LY_PATH_PREFIX_FIRST 0x40 /**< prefixes in the path are mandatory only in the first node of absolute path (JSON path) */
82#define LY_PATH_PREFIX_STRICT_INHERIT 0x80 /**< prefixes in the path are mandatory in case they differ from the
Michal Vasko8b06a5e2020-08-06 12:13:08 +020083 previous prefixes, otherwise they are prohibited (JSON instance-identifier) */
Michal Vasko004d3152020-06-11 19:59:22 +020084/** @} */
85
86/**
87 * @defgroup path_pred_options Path predicate options.
88 * @{
89 */
Michal Vasko90189962023-02-28 12:10:34 +010090#define LY_PATH_PRED_KEYS 0x0100 /** expected predicate only - [node='value']* */
91#define LY_PATH_PRED_SIMPLE 0x0200 /** expected predicates - ( [node='value'] | [node=$VAR] )*; [.='value']; [1] */
92#define LY_PATH_PRED_LEAFREF 0x0400 /** expected predicates only leafref - [node=current()/../../../node/node];
93 at least 1 ".." and 1 "node" after */
Michal Vasko004d3152020-06-11 19:59:22 +020094/** @} */
95
96/**
97 * @brief Parse path into XPath token structure and perform all additional checks.
98 *
99 * @param[in] ctx libyang context.
Michal Vaskoaef00cb2020-10-16 11:58:57 +0200100 * @param[in] ctx_node Optional context node, used for logging.
Michal Vasko004d3152020-06-11 19:59:22 +0200101 * @param[in] str_path Path to parse.
102 * @param[in] path_len Length of @p str_path.
Michal Vaskoed725d72021-06-23 12:03:45 +0200103 * @param[in] lref Whether leafref is being parsed or not.
Michal Vasko004d3152020-06-11 19:59:22 +0200104 * @param[in] begin Begin option (@ref path_begin_options).
Michal Vasko004d3152020-06-11 19:59:22 +0200105 * @param[in] prefix Prefix option (@ref path_prefix_options).
106 * @param[in] pred Predicate option (@ref path_pred_options).
107 * @param[out] expr Parsed path.
108 * @return LY_ERR value.
109 */
Michal Vasko6b26e742020-07-17 15:02:10 +0200110LY_ERR ly_path_parse(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *str_path, size_t path_len,
Michal Vasko32ca49b2023-02-17 15:11:35 +0100111 ly_bool lref, uint16_t begin, uint16_t prefix, uint16_t pred, struct lyxp_expr **expr);
Michal Vasko004d3152020-06-11 19:59:22 +0200112
113/**
114 * @brief Parse predicate into XPath token structure and perform all additional checks.
115 *
116 * @param[in] ctx libyang context.
Michal Vaskoaef00cb2020-10-16 11:58:57 +0200117 * @param[in] cur_node Optional current (original context) node, used for logging.
Michal Vasko004d3152020-06-11 19:59:22 +0200118 * @param[in] str_path Path to parse.
119 * @param[in] path_len Length of @p str_path.
120 * @param[in] prefix Prefix option (@ref path_prefix_options).
121 * @param[in] pred Predicate option (@ref path_pred_options).
122 * @param[out] expr Parsed path.
123 * @return LY_ERR value.
124 */
Michal Vasko6b26e742020-07-17 15:02:10 +0200125LY_ERR ly_path_parse_predicate(const struct ly_ctx *ctx, const struct lysc_node *cur_node, const char *str_path,
Michal Vasko32ca49b2023-02-17 15:11:35 +0100126 size_t path_len, uint16_t prefix, uint16_t pred, struct lyxp_expr **expr);
Michal Vasko004d3152020-06-11 19:59:22 +0200127
128/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200129 * @defgroup path_oper_options Path operation options.
130 * @{
131 */
132#define LY_PATH_OPER_INPUT 0x01 /**< if any RPC/action is traversed, its input nodes are used */
133#define LY_PATH_OPER_OUTPUT 0x02 /**< if any RPC/action is traversed, its output nodes are used */
134/** @} */
135
136/* lref */
137
138/**
139 * @defgroup path_target_options Path target options.
140 * @{
141 */
142#define LY_PATH_TARGET_SINGLE 0x10 /**< last (target) node must identify an exact instance */
143#define LY_PATH_TARGET_MANY 0x20 /**< last (target) node may identify all instances (of leaf-list/list) */
144/** @} */
145
146/**
Michal Vaskoed725d72021-06-23 12:03:45 +0200147 * @brief Compile path into ly_path structure.
Michal Vasko004d3152020-06-11 19:59:22 +0200148 *
Michal Vasko00cbf532020-06-15 13:58:47 +0200149 * @param[in] ctx libyang context.
Michal Vaskoed725d72021-06-23 12:03:45 +0200150 * @param[in] cur_mod Current module of the path (where it was "instantiated"). Used for nodes in schema-nodeid
Radek Krejci84d7fd72021-07-14 18:32:21 +0200151 * without a prefix for ::LY_VALUE_SCHEMA and ::LY_VALUE_SCHEMA_RESOLVED format.
Michal Vasko6b26e742020-07-17 15:02:10 +0200152 * @param[in] ctx_node Optional context node.
Michal Vasko8cc3f662022-03-29 11:25:51 +0200153 * @param[in] top_ext Extension instance containing the definition of the data being created. It is used to find the top-level
Radek Krejcid5d37432021-03-12 13:46:40 +0100154 * node inside the extension instance instead of a module. Note that this is the case not only if the @p ctx_node is NULL,
155 * but also if the relative path starting in @p ctx_node reaches the document root via double dots.
Michal Vasko004d3152020-06-11 19:59:22 +0200156 * @param[in] expr Parsed path.
Michal Vasko00cbf532020-06-15 13:58:47 +0200157 * @param[in] oper Oper option (@ref path_oper_options).
158 * @param[in] target Target option (@ref path_target_options).
Michal Vasko0884d212021-10-14 09:21:46 +0200159 * @param[in] limit_access_tree Whether to limit accessible tree.
Michal Vasko004d3152020-06-11 19:59:22 +0200160 * @param[in] format Format of the path.
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200161 * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix).
Michal Vasko004d3152020-06-11 19:59:22 +0200162 * @param[out] path Compiled path.
163 * @return LY_ERR value.
164 */
Michal Vasko00cbf532020-06-15 13:58:47 +0200165LY_ERR ly_path_compile(const struct ly_ctx *ctx, const struct lys_module *cur_mod, const struct lysc_node *ctx_node,
Michal Vasko32ca49b2023-02-17 15:11:35 +0100166 const struct lysc_ext_instance *top_ext, const struct lyxp_expr *expr, uint16_t oper, uint16_t target,
Michal Vasko0884d212021-10-14 09:21:46 +0200167 ly_bool limit_access_tree, LY_VALUE_FORMAT format, void *prefix_data, struct ly_path **path);
Michal Vaskoed725d72021-06-23 12:03:45 +0200168
169/**
170 * @brief Compile path into ly_path structure. Any predicates of a leafref are only checked, not compiled.
171 *
172 * @param[in] ctx libyang context.
173 * @param[in] ctx_node Context node.
Michal Vasko8cc3f662022-03-29 11:25:51 +0200174 * @param[in] top_ext Extension instance containing the definition of the data being created. It is used to find the top-level
Michal Vaskoed725d72021-06-23 12:03:45 +0200175 * node inside the extension instance instead of a module. Note that this is the case not only if the @p ctx_node is NULL,
176 * but also if the relative path starting in @p ctx_node reaches the document root via double dots.
177 * @param[in] expr Parsed path.
178 * @param[in] oper Oper option (@ref path_oper_options).
179 * @param[in] target Target option (@ref path_target_options).
180 * @param[in] format Format of the path.
181 * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix).
Michal Vaskoed725d72021-06-23 12:03:45 +0200182 * @param[out] path Compiled path.
Michal Vaskoed725d72021-06-23 12:03:45 +0200183 * @return LY_ERR value.
184 */
185LY_ERR ly_path_compile_leafref(const struct ly_ctx *ctx, const struct lysc_node *ctx_node,
Michal Vasko32ca49b2023-02-17 15:11:35 +0100186 const struct lysc_ext_instance *top_ext, const struct lyxp_expr *expr, uint16_t oper, uint16_t target,
Michal Vasko24fc4d12021-07-12 14:41:20 +0200187 LY_VALUE_FORMAT format, void *prefix_data, struct ly_path **path);
Michal Vasko004d3152020-06-11 19:59:22 +0200188
189/**
190 * @brief Compile predicate into ly_path_predicate structure. Only simple predicates (not leafref) are supported.
191 *
Michal Vasko00cbf532020-06-15 13:58:47 +0200192 * @param[in] ctx libyang context.
Michal Vasko6b26e742020-07-17 15:02:10 +0200193 * @param[in] cur_node Optional current (original context) node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200194 * @param[in] cur_mod Current module of the path (where it was "instantiated"). Used for nodes without a prefix
Radek Krejci84d7fd72021-07-14 18:32:21 +0200195 * for ::LY_VALUE_SCHEMA and ::LY_VALUE_SCHEMA_RESOLVED format.
Michal Vasko004d3152020-06-11 19:59:22 +0200196 * @param[in] ctx_node Context node, node for which the predicate is defined.
197 * @param[in] expr Parsed path.
198 * @param[in,out] tok_idx Index in @p expr, is adjusted for parsed tokens.
Michal Vasko004d3152020-06-11 19:59:22 +0200199 * @param[in] format Format of the path.
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200200 * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix).
Michal Vasko004d3152020-06-11 19:59:22 +0200201 * @param[out] predicates Compiled predicates.
Michal Vasko004d3152020-06-11 19:59:22 +0200202 * @return LY_ERR value.
203 */
Michal Vasko6b26e742020-07-17 15:02:10 +0200204LY_ERR ly_path_compile_predicate(const struct ly_ctx *ctx, const struct lysc_node *cur_node, const struct lys_module *cur_mod,
Michal Vaskodd528af2022-08-08 14:35:07 +0200205 const struct lysc_node *ctx_node, const struct lyxp_expr *expr, uint32_t *tok_idx, LY_VALUE_FORMAT format,
Michal Vasko90189962023-02-28 12:10:34 +0100206 void *prefix_data, struct ly_path_predicate **predicates);
Michal Vasko00cbf532020-06-15 13:58:47 +0200207
208/**
209 * @brief Resolve at least partially the target defined by ly_path structure. Not supported for leafref!
210 *
211 * @param[in] path Path structure specifying the target.
212 * @param[in] start Starting node for relative paths, can be any for absolute paths.
Michal Vasko90189962023-02-28 12:10:34 +0100213 * @param[in] vars Array of defined variables to use in predicates, may be NULL.
Michal Vasko838829d2023-10-09 16:06:43 +0200214 * @param[in] with_opaq Whether to consider opaque nodes or not.
Michal Vasko00cbf532020-06-15 13:58:47 +0200215 * @param[out] path_idx Last found path segment index, can be NULL, set to 0 if not found.
216 * @param[out] match Last found matching node, can be NULL, set to NULL if not found.
217 * @return LY_ENOTFOUND if no nodes were found,
218 * @return LY_EINCOMPLETE if some node was found but not the last one,
219 * @return LY_SUCCESS when the last node in the path was found,
220 * @return LY_ERR on another error.
221 */
Michal Vasko90189962023-02-28 12:10:34 +0100222LY_ERR ly_path_eval_partial(const struct ly_path *path, const struct lyd_node *start, const struct lyxp_var *vars,
Michal Vasko838829d2023-10-09 16:06:43 +0200223 ly_bool with_opaq, LY_ARRAY_COUNT_TYPE *path_idx, struct lyd_node **match);
Michal Vasko004d3152020-06-11 19:59:22 +0200224
225/**
226 * @brief Resolve the target defined by ly_path structure. Not supported for leafref!
227 *
228 * @param[in] path Path structure specifying the target.
229 * @param[in] start Starting node for relative paths, can be any for absolute paths.
Michal Vasko90189962023-02-28 12:10:34 +0100230 * @param[in] vars Array of defined variables to use in predicates, may be NULL.
Michal Vasko004d3152020-06-11 19:59:22 +0200231 * @param[out] match Found matching node, can be NULL, set to NULL if not found.
232 * @return LY_ENOTFOUND if no nodes were found,
233 * @return LY_SUCCESS when the last node in the path was found,
234 * @return LY_ERR on another error.
235 */
Michal Vasko90189962023-02-28 12:10:34 +0100236LY_ERR ly_path_eval(const struct ly_path *path, const struct lyd_node *start, const struct lyxp_var *vars,
237 struct lyd_node **match);
Michal Vasko004d3152020-06-11 19:59:22 +0200238
239/**
240 * @brief Duplicate ly_path structure.
241 *
242 * @param[in] ctx libyang context.
243 * @param[in] path Path to duplicate.
244 * @param[out] dup Duplicated path.
245 * @return LY_ERR value.
246 */
247LY_ERR ly_path_dup(const struct ly_ctx *ctx, const struct ly_path *path, struct ly_path **dup);
248
249/**
250 * @brief Free ly_path_predicate structure.
251 *
252 * @param[in] ctx libyang context.
Michal Vasko004d3152020-06-11 19:59:22 +0200253 * @param[in] predicates Predicates ([sized array](@ref sizedarrays)) to free.
254 */
Michal Vasko90189962023-02-28 12:10:34 +0100255void ly_path_predicates_free(const struct ly_ctx *ctx, struct ly_path_predicate *predicates);
Michal Vasko004d3152020-06-11 19:59:22 +0200256
257/**
258 * @brief Free ly_path structure.
259 *
260 * @param[in] ctx libyang context.
261 * @param[in] path The structure ([sized array](@ref sizedarrays)) to free.
262 */
263void ly_path_free(const struct ly_ctx *ctx, struct ly_path *path);
264
265#endif /* LY_PATH_H_ */