blob: 1e27ab19b469a0d650f1f9f9f48950104ee241f6 [file] [log] [blame]
Radek Krejcib1646a92018-11-02 16:08:26 +01001/**
2 * @file xpath.h
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief YANG XPath evaluation functions header
5 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02006 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
Radek Krejcib1646a92018-11-02 16:08:26 +01007 *
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 _XPATH_H
16#define _XPATH_H
17
18#include <stdint.h>
19
Radek Krejcie7b95092019-05-15 11:03:07 +020020#include "log.h"
21
22struct ly_ctx;
23struct lysc_node;
24
Radek Krejcib1646a92018-11-02 16:08:26 +010025/*
26 * XPath evaluator fully compliant with http://www.w3.org/TR/1999/REC-xpath-19991116/
27 * except the following restrictions in the grammar.
28 *
29 * PARSED GRAMMAR
30 *
31 * Full axes are not supported, abbreviated forms must be used,
32 * variables are not supported, "id()" function is not supported,
33 * and processing instruction and comment nodes are not supported,
34 * which is also reflected in the grammar. Undefined rules and
35 * constants are tokens.
36 *
37 * Modified full grammar:
38 *
39 * [1] Expr ::= OrExpr // just an alias
40 *
41 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
42 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
43 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
44 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
45 * [6] NodeTest ::= NameTest | NodeType '(' ')'
46 * [7] Predicate ::= '[' Expr ']'
47 * [8] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
48 * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
49 * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate*
50 * | PrimaryExpr Predicate* '/' RelativeLocationPath
51 * | PrimaryExpr Predicate* '//' RelativeLocationPath
52 * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
53 * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
54 * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
55 * | EqualityExpr '!=' RelationalExpr
56 * [14] RelationalExpr ::= AdditiveExpr
57 * | RelationalExpr '<' AdditiveExpr
58 * | RelationalExpr '>' AdditiveExpr
59 * | RelationalExpr '<=' AdditiveExpr
60 * | RelationalExpr '>=' AdditiveExpr
61 * [15] AdditiveExpr ::= MultiplicativeExpr
62 * | AdditiveExpr '+' MultiplicativeExpr
63 * | AdditiveExpr '-' MultiplicativeExpr
64 * [16] MultiplicativeExpr ::= UnaryExpr
65 * | MultiplicativeExpr '*' UnaryExpr
66 * | MultiplicativeExpr 'div' UnaryExpr
67 * | MultiplicativeExpr 'mod' UnaryExpr
68 * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr
69 * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
70 */
71
72/* expression tokens allocation */
73#define LYXP_EXPR_SIZE_START 10
74#define LYXP_EXPR_SIZE_STEP 5
75
76/* XPath matches allocation */
77#define LYXP_SET_SIZE_START 2
78#define LYXP_SET_SIZE_STEP 2
79
80/* building string when casting */
81#define LYXP_STRING_CAST_SIZE_START 64
82#define LYXP_STRING_CAST_SIZE_STEP 16
83
84/**
85 * @brief Tokens that can be in an XPath expression.
86 */
87enum lyxp_token {
88 LYXP_TOKEN_NONE = 0,
89 LYXP_TOKEN_PAR1, /* '(' */
90 LYXP_TOKEN_PAR2, /* ')' */
91 LYXP_TOKEN_BRACK1, /* '[' */
92 LYXP_TOKEN_BRACK2, /* ']' */
93 LYXP_TOKEN_DOT, /* '.' */
94 LYXP_TOKEN_DDOT, /* '..' */
95 LYXP_TOKEN_AT, /* '@' */
96 LYXP_TOKEN_COMMA, /* ',' */
97 /* LYXP_TOKEN_DCOLON, * '::' * axes not supported */
98 LYXP_TOKEN_NAMETEST, /* NameTest */
99 LYXP_TOKEN_NODETYPE, /* NodeType */
100 LYXP_TOKEN_FUNCNAME, /* FunctionName */
101 LYXP_TOKEN_OPERATOR_LOG, /* Operator 'and', 'or' */
102 LYXP_TOKEN_OPERATOR_COMP, /* Operator '=', '!=', '<', '<=', '>', '>=' */
103 LYXP_TOKEN_OPERATOR_MATH, /* Operator '+', '-', '*', 'div', 'mod', '-' (unary) */
104 LYXP_TOKEN_OPERATOR_UNI, /* Operator '|' */
105 LYXP_TOKEN_OPERATOR_PATH, /* Operator '/', '//' */
106 /* LYXP_TOKEN_AXISNAME, * AxisName * axes not supported */
107 LYXP_TOKEN_LITERAL, /* Literal - with either single or double quote */
108 LYXP_TOKEN_NUMBER /* Number */
109};
110
111/**
112 * @brief XPath (sub)expressions that can be repeated.
113 */
114enum lyxp_expr_type {
115 LYXP_EXPR_NONE = 0,
116 LYXP_EXPR_OR,
117 LYXP_EXPR_AND,
118 LYXP_EXPR_EQUALITY,
119 LYXP_EXPR_RELATIONAL,
120 LYXP_EXPR_ADDITIVE,
121 LYXP_EXPR_MULTIPLICATIVE,
122 LYXP_EXPR_UNARY,
123 LYXP_EXPR_UNION,
124};
125
126/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200127 * @brief Types of context nodes, #LYXP_NODE_ROOT_CONFIG used only in when or must conditions.
128 */
129enum lyxp_node_type {
130 /* XML document roots */
131 LYXP_NODE_ROOT, /* access to all the data (node value first top-level node) */
132 LYXP_NODE_ROOT_CONFIG, /* <running> data context, no state data (node value first top-level node) */
133
134 /* XML elements */
135 LYXP_NODE_ELEM, /* XML element (most common) */
136 LYXP_NODE_TEXT, /* XML text element (extremely specific use, unlikely to be ever needed) */
137 LYXP_NODE_ATTR /* XML attribute (in YANG cannot happen, do not use for the context node) */
138};
139
140/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100141 * @brief Structure holding a parsed XPath expression.
142 */
143struct lyxp_expr {
144 enum lyxp_token *tokens; /* array of tokens */
145 uint16_t *tok_pos; /* array of the token offsets in expr */
146 uint16_t *tok_len; /* array of token lengths in expr */
147 enum lyxp_expr_type **repeat; /* array of expression types that this token begins and is repeated ended with 0,
148 more in the comment after this declaration */
149 uint16_t used; /* used array items */
150 uint16_t size; /* allocated array items */
151
152 const char *expr; /* the original XPath expression */
153};
154
155/*
156 * lyxp_expr repeat
157 *
158 * This value is NULL for all the tokens that do not begin an
159 * expression which can be repeated. Otherwise it is an array
160 * of expression types that this token begins. These values
161 * are used during evaluation to know whether we need to
162 * duplicate the current context or not and to decide what
163 * the current expression is (for example, if we are only
164 * starting the parsing and the first token has no repeat,
165 * we do not parse it as an OrExpr but directly as PathExpr).
166 * Examples:
167 *
168 * Expression: "/ *[key1 and key2 or key1 < key2]"
169 * Tokens: '/', '*', '[', NameTest, 'and', NameTest, 'or', NameTest, '<', NameTest, ']'
170 * Repeat: NULL, NULL, NULL, [AndExpr, NULL, NULL, NULL, [RelationalExpr, NULL, NULL, NULL
171 * OrExpr, 0],
172 * 0],
173 *
174 * Expression: "//node[key and node2]/key | /cont"
175 * Tokens: '//', 'NameTest', '[', 'NameTest', 'and', 'NameTest', ']', '/', 'NameTest', '|', '/', 'NameTest'
176 * Repeat: [UnionExpr, NULL, NULL, [AndExpr, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
177 * 0], 0],
178 *
179 * Operators between expressions which this concerns:
180 * 'or', 'and', '=', '!=', '<', '>', '<=', '>=', '+', '-', '*', 'div', 'mod', '|'
181 */
182
183/**
184 * @brief Supported types of (partial) XPath results.
185 */
186enum lyxp_set_type {
187 LYXP_SET_EMPTY = 0,
188 LYXP_SET_NODE_SET,
Michal Vasko03ff5a72019-09-11 13:49:33 +0200189 LYXP_SET_SCNODE_SET,
Radek Krejcib1646a92018-11-02 16:08:26 +0100190 LYXP_SET_BOOLEAN,
191 LYXP_SET_NUMBER,
192 LYXP_SET_STRING
193};
Radek Krejcib1646a92018-11-02 16:08:26 +0100194
195/**
196 * @brief Item stored in an XPath set hash table.
197 */
198struct lyxp_set_hash_node {
199 struct lyd_node *node;
200 enum lyxp_node_type type;
201} _PACKED;
202
Radek Krejcib1646a92018-11-02 16:08:26 +0100203/**
204 * @brief XPath set - (partial) result.
205 */
206struct lyxp_set {
207 enum lyxp_set_type type;
208 union {
209 struct lyxp_set_node {
210 struct lyd_node *node;
211 enum lyxp_node_type type;
212 uint32_t pos;
213 } *nodes;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200214 struct lyxp_set_scnode {
215 struct lysc_node *scnode;
Radek Krejcib1646a92018-11-02 16:08:26 +0100216 enum lyxp_node_type type;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200217 /* 0 - scnode was traversed, but not currently in the context,
218 * 1 - scnode currently in context,
219 * 2 - scnode in context and just added, so skip it for the current operation,
220 * >=3 - scnode is not in context because we are in a predicate and this scnode was used/will be used later */
Radek Krejcib1646a92018-11-02 16:08:26 +0100221 uint32_t in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200222 } *scnodes;
Radek Krejcib1646a92018-11-02 16:08:26 +0100223 struct lyxp_set_attr {
224 struct lyd_attr *attr;
225 enum lyxp_node_type type;
226 uint32_t pos; /* if node_type is LYXP_SET_NODE_ATTR, it is the parent node position */
227 } *attrs;
228 char *str;
229 long double num;
230 int bool;
231 } val;
232
Michal Vasko03ff5a72019-09-11 13:49:33 +0200233 /* this is valid only for type LYXP_SET_NODE_SET and LYXP_SET_SCNODE_SET */
Radek Krejcib1646a92018-11-02 16:08:26 +0100234 uint32_t used;
235 uint32_t size;
Radek Krejcib1646a92018-11-02 16:08:26 +0100236 struct hash_table *ht;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200237
238 /* XPath context information, this is valid only for type LYXP_SET_NODE_SET */
Radek Krejcib1646a92018-11-02 16:08:26 +0100239 uint32_t ctx_pos;
240 uint32_t ctx_size;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200241
242 /* general context */
243 struct ly_ctx *ctx;
244 union {
245 const struct lyd_node *ctx_node;
246 const struct lysc_node *ctx_scnode;
247 };
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100248 enum lyxp_node_type root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200249 const struct lys_module *local_mod;
250 const struct lyd_node **trees;
251 LYD_FORMAT format;
Radek Krejcib1646a92018-11-02 16:08:26 +0100252};
253
254/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200255 * @brief Evaluate an XPath expression on data. Be careful when using this function, the result can often
256 * be confusing without thorough understanding of XPath evaluation rules defined in RFC 7950.
Radek Krejcib1646a92018-11-02 16:08:26 +0100257 *
Michal Vaskoecd62de2019-11-13 12:35:11 +0100258 * @param[in] exp Parsed XPath expression to be evaluated.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200259 * @param[in] format Format of the XPath expression (more specifcally, of any used prefixes).
260 * @param[in] local_mod Local module relative to the @p expr.
Michal Vaskod0aa1a82019-11-07 08:58:42 +0100261 * @param[in] ctx_node Current (context) data node, NULL for root node.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200262 * @param[in] ctx_node_type Current (context) data node type. For every standard case use #LYXP_NODE_ELEM. But there are
263 * cases when the context node @p ctx_node is actually supposed to be the XML root, there is no such data node. So, in
Michal Vaskod0aa1a82019-11-07 08:58:42 +0100264 * this case just pass NULL for @p ctx_node and use an enum value for this kind of root (#LYXP_NODE_ROOT_CONFIG if
265 * @p ctx_node has config true, otherwise #LYXP_NODE_ROOT). #LYXP_NODE_TEXT and #LYXP_NODE_ATTR can also be used,
Radek Krejcib1646a92018-11-02 16:08:26 +0100266 * but there are no use-cases in YANG.
Michal Vaskod0aa1a82019-11-07 08:58:42 +0100267 * @param[in] trees Data trees on which to perform the evaluation, they must include all the available tree (including
268 * the tree of @p ctx_node).
Michal Vasko03ff5a72019-09-11 13:49:33 +0200269 * @param[out] set Result set. Must be valid and in the same libyang context as @p ctx_node.
270 * To be safe, always either zero or cast the @p set to empty. After done using, either cast
271 * the @p set to empty (if allocated statically) or free it (if allocated dynamically) to
Radek Krejcib1646a92018-11-02 16:08:26 +0100272 * prevent memory leaks.
273 * @param[in] options Whether to apply some evaluation restrictions.
Michal Vaskoecd62de2019-11-13 12:35:11 +0100274 * @return LY_ERR (LY_EINVAL, LY_EMEM, LY_EINT, LY_EVALID for invalid argument types/count,
275 * LY_EINCOMPLETE for unresolved when).
Radek Krejcib1646a92018-11-02 16:08:26 +0100276 */
Michal Vaskoecd62de2019-11-13 12:35:11 +0100277LY_ERR lyxp_eval(struct lyxp_expr *exp, LYD_FORMAT format, const struct lys_module *local_mod, const struct lyd_node *ctx_node,
Michal Vasko03ff5a72019-09-11 13:49:33 +0200278 enum lyxp_node_type ctx_node_type, const struct lyd_node **trees, struct lyxp_set *set, int options);
279
280#define LYXP_SCHEMA 0x01 /**< Apply data node access restrictions defined for 'when' and 'must' evaluation. */
Radek Krejcib1646a92018-11-02 16:08:26 +0100281
282/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200283 * @brief Get all the partial XPath nodes (atoms) that are required for @p exp to be evaluated.
Radek Krejcib1646a92018-11-02 16:08:26 +0100284 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200285 * If any LYXP_SCNODE* options is set, only fatal errors are printed, otherwise they are downgraded
Radek Krejcib1646a92018-11-02 16:08:26 +0100286 * to warnings.
287 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200288 * @param[in] exp Parsed XPath expression to be evaluated.
289 * @param[in] format Format of the XPath expression (more specifcally, of any used prefixes).
290 * @param[in] local_mod Local module relative to the @p exp.
Michal Vaskod0aa1a82019-11-07 08:58:42 +0100291 * @param[in] ctx_scnode Current (context) schema node, NULL for root node.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200292 * @param[in] ctx_scnode_type Current (context) schema node type.
293 * @param[out] set Result set. Must be valid and in the same libyang context as @p ctx_scnode.
294 * To be safe, always either zero or cast the @p set to empty. After done using, either cast
295 * the @p set to empty (if allocated statically) or free it (if allocated dynamically) to
Radek Krejcib1646a92018-11-02 16:08:26 +0100296 * prevent memory leaks.
297 * @param[in] options Whether to apply some evaluation restrictions, one flag must always be used.
Michal Vaskoecd62de2019-11-13 12:35:11 +0100298 * @return LY_ERR (same as lyxp_eval()).
Radek Krejcib1646a92018-11-02 16:08:26 +0100299 */
Michal Vasko03ff5a72019-09-11 13:49:33 +0200300LY_ERR lyxp_atomize(struct lyxp_expr *exp, LYD_FORMAT format, const struct lys_module *local_mod, const struct lysc_node *ctx_scnode,
301 enum lyxp_node_type ctx_scnode_type, struct lyxp_set *set, int options);
Radek Krejcib1646a92018-11-02 16:08:26 +0100302
303/* these are used only internally */
Michal Vasko03ff5a72019-09-11 13:49:33 +0200304#define LYXP_SCNODE 0x02 /**< No special data tree access modifiers. */
305#define LYXP_SCNODE_SCHEMA 0x04 /**< Apply schema node access restrictions defined for 'when' and 'must' evaluation. */
306#define LYXP_SCNODE_OUTPUT 0x08 /**< Search RPC/action output instead of input. */
Radek Krejcib1646a92018-11-02 16:08:26 +0100307
Michal Vasko03ff5a72019-09-11 13:49:33 +0200308#define LYXP_SCNODE_ALL 0x0E
Radek Krejcib1646a92018-11-02 16:08:26 +0100309
310/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100311 * @brief Cast XPath set to another type.
312 * Indirectly context position aware.
313 *
314 * @param[in] set Set to cast.
315 * @param[in] target Target type to cast \p set into.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200316 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +0100317 */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100318LY_ERR lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200319
Radek Krejcib1646a92018-11-02 16:08:26 +0100320/**
Michal Vaskoecd62de2019-11-13 12:35:11 +0100321 * @brief Insert schema node into set.
322 *
323 * @param[in] set Set to insert into.
324 * @param[in] node Node to insert.
325 * @param[in] node_type Node type of @p node.
326 * @return Index of the inserted node in set.
327 */
328int lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type);
329
330/**
331 * @brief Check for duplicates in a schema node set.
332 *
333 * @param[in] set Set to check.
334 * @param[in] node Node to look for in @p set.
335 * @param[in] node_type Type of @p node.
336 * @param[in] skip_idx Index from @p set to skip.
337 * @return Index of the found node, -1 if not found.
338 */
339int lyxp_set_scnode_dup_node_check(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type,
340 int skip_idx);
341
342/**
343 * @brief Merge 2 schema node sets.
344 *
345 * @param[in] set1 Set to merge into.
346 * @param[in] set2 Set to merge. Its content is freed.
347 */
348void lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2);
349
350/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100351 * @brief Parse an XPath expression into a structure of tokens.
352 * Logs directly.
353 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200354 * https://www.w3.org/TR/1999/REC-xpath-19991116/#exprlex
Radek Krejcib1646a92018-11-02 16:08:26 +0100355 *
356 * @param[in] ctx Context for errors.
357 * @param[in] expr XPath expression to parse. It is duplicated.
Radek Krejcib1646a92018-11-02 16:08:26 +0100358 * @return Filled expression structure or NULL on error.
359 */
360struct lyxp_expr *lyxp_expr_parse(struct ly_ctx *ctx, const char *expr);
361
362/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200363 * @brief Frees a parsed XPath expression. @p expr should not be used afterwards.
Radek Krejcib1646a92018-11-02 16:08:26 +0100364 *
365 * @param[in] ctx libyang context of the expression.
366 * @param[in] expr Expression to free.
367 */
368void lyxp_expr_free(struct ly_ctx *ctx, struct lyxp_expr *expr);
369
370#endif /* _XPATH_H */