blob: 29a32b2238d55ef39e3e635b42cec17b89efc430 [file] [log] [blame]
Radek Krejcib1646a92018-11-02 16:08:26 +01001/**
2 * @file xpath.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief YANG XPath evaluation functions
5 *
Michal Vasko49fec8e2022-05-24 10:28:33 +02006 * Copyright (c) 2015 - 2022 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 */
Christian Hopps32874e12021-05-01 09:43:54 -040014#define _GNU_SOURCE /* asprintf, strdup */
Radek Krejcib1646a92018-11-02 16:08:26 +010015
Radek Krejci535ea9f2020-05-29 16:01:05 +020016#include "xpath.h"
Radek Krejcib1646a92018-11-02 16:08:26 +010017
Radek Krejci535ea9f2020-05-29 16:01:05 +020018#include <assert.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010019#include <ctype.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include <errno.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020021#include <math.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020022#include <stdint.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010023#include <stdio.h>
24#include <stdlib.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010025#include <string.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010026
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020028#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020029#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020030#include "dict.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020031#include "hash_table.h"
Radek Krejci47fab892020-11-05 17:02:41 +010032#include "out.h"
Radek Krejci7931b192020-06-25 17:05:03 +020033#include "parser_data.h"
Michal Vasko004d3152020-06-11 19:59:22 +020034#include "path.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020035#include "plugins_types.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020036#include "printer_data.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020037#include "schema_compile_node.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020038#include "tree.h"
Radek Krejci77114102021-03-10 15:21:57 +010039#include "tree_data.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020040#include "tree_data_internal.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010041#include "tree_edit.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020042#include "tree_schema_internal.h"
43#include "xml.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020044
aPiecekbf968d92021-05-27 14:35:05 +020045static LY_ERR reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth);
Michal Vasko40308e72020-10-20 16:38:40 +020046static LY_ERR eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype,
47 struct lyxp_set *set, uint32_t options);
Michal Vasko93923692021-05-07 15:28:02 +020048static LY_ERR moveto_resolve_model(const char **qname, uint16_t *qname_len, const struct lyxp_set *set,
49 const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod);
Michal Vasko49fec8e2022-05-24 10:28:33 +020050static LY_ERR moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname,
51 enum lyxp_axis axis, uint32_t options);
52static LY_ERR moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname,
53 enum lyxp_axis axis, uint32_t options);
Michal Vasko03ff5a72019-09-11 13:49:33 +020054
aPiecek96dc1e32021-10-08 15:45:59 +020055/* Functions are divided into the following basic classes:
56 *
57 * (re)parse functions:
58 * Parse functions parse the expression into
59 * tokens (syntactic analysis).
60 * Reparse functions perform semantic analysis
61 * (do not save the result, just a check) of
62 * the expression and fill repeat indices.
63 *
64 * warn functions:
65 * Warn functions check specific reasonable conditions for schema XPath
66 * and print a warning if they are not satisfied.
67 *
68 * moveto functions:
69 * They and only they actually change the context (set).
70 *
71 * eval functions:
72 * They execute a parsed XPath expression on some data subtree.
73 */
74
Michal Vasko03ff5a72019-09-11 13:49:33 +020075/**
76 * @brief Print the type of an XPath \p set.
77 *
78 * @param[in] set Set to use.
79 * @return Set type string.
80 */
81static const char *
82print_set_type(struct lyxp_set *set)
83{
84 switch (set->type) {
Michal Vasko03ff5a72019-09-11 13:49:33 +020085 case LYXP_SET_NODE_SET:
86 return "node set";
87 case LYXP_SET_SCNODE_SET:
88 return "schema node set";
89 case LYXP_SET_BOOLEAN:
90 return "boolean";
91 case LYXP_SET_NUMBER:
92 return "number";
93 case LYXP_SET_STRING:
94 return "string";
95 }
96
97 return NULL;
98}
99
Michal Vasko24cddf82020-06-01 08:17:01 +0200100const char *
Michal Vasko49fec8e2022-05-24 10:28:33 +0200101lyxp_token2str(enum lyxp_token tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200102{
103 switch (tok) {
104 case LYXP_TOKEN_PAR1:
105 return "(";
106 case LYXP_TOKEN_PAR2:
107 return ")";
108 case LYXP_TOKEN_BRACK1:
109 return "[";
110 case LYXP_TOKEN_BRACK2:
111 return "]";
112 case LYXP_TOKEN_DOT:
113 return ".";
114 case LYXP_TOKEN_DDOT:
115 return "..";
116 case LYXP_TOKEN_AT:
117 return "@";
118 case LYXP_TOKEN_COMMA:
119 return ",";
120 case LYXP_TOKEN_NAMETEST:
121 return "NameTest";
122 case LYXP_TOKEN_NODETYPE:
123 return "NodeType";
aPiecekfba75362021-10-07 12:39:48 +0200124 case LYXP_TOKEN_VARREF:
125 return "VariableReference";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200126 case LYXP_TOKEN_FUNCNAME:
127 return "FunctionName";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200128 case LYXP_TOKEN_OPER_LOG:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200129 return "Operator(Logic)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200130 case LYXP_TOKEN_OPER_EQUAL:
131 return "Operator(Equal)";
132 case LYXP_TOKEN_OPER_NEQUAL:
133 return "Operator(Non-equal)";
134 case LYXP_TOKEN_OPER_COMP:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200135 return "Operator(Comparison)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200136 case LYXP_TOKEN_OPER_MATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200137 return "Operator(Math)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200138 case LYXP_TOKEN_OPER_UNI:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200139 return "Operator(Union)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200140 case LYXP_TOKEN_OPER_PATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200141 return "Operator(Path)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200142 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko14676352020-05-29 11:35:55 +0200143 return "Operator(Recursive Path)";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200144 case LYXP_TOKEN_LITERAL:
145 return "Literal";
146 case LYXP_TOKEN_NUMBER:
147 return "Number";
148 default:
149 LOGINT(NULL);
150 return "";
151 }
152}
153
154/**
Michal Vasko49fec8e2022-05-24 10:28:33 +0200155 * @brief Transform string into an axis.
156 *
157 * @param[in] str String to transform.
158 * @param[in] str_len Length of @p str.
159 * @return Transformed axis.
160 */
161static enum lyxp_axis
162str2axis(const char *str, uint16_t str_len)
163{
164 switch (str_len) {
165 case 4:
166 assert(!strncmp("self", str, str_len));
167 return LYXP_AXIS_SELF;
168 case 5:
169 assert(!strncmp("child", str, str_len));
170 return LYXP_AXIS_CHILD;
171 case 6:
172 assert(!strncmp("parent", str, str_len));
173 return LYXP_AXIS_PARENT;
174 case 8:
175 assert(!strncmp("ancestor", str, str_len));
176 return LYXP_AXIS_ANCESTOR;
177 case 9:
178 if (str[0] == 'a') {
179 assert(!strncmp("attribute", str, str_len));
180 return LYXP_AXIS_ATTRIBUTE;
181 } else if (str[0] == 'f') {
182 assert(!strncmp("following", str, str_len));
183 return LYXP_AXIS_FOLLOWING;
184 } else {
185 assert(!strncmp("preceding", str, str_len));
186 return LYXP_AXIS_PRECEDING;
187 }
188 break;
189 case 10:
190 assert(!strncmp("descendant", str, str_len));
191 return LYXP_AXIS_DESCENDANT;
192 case 16:
193 assert(!strncmp("ancestor-or-self", str, str_len));
194 return LYXP_AXIS_ANCESTOR_OR_SELF;
195 case 17:
196 if (str[0] == 'f') {
197 assert(!strncmp("following-sibling", str, str_len));
198 return LYXP_AXIS_FOLLOWING_SIBLING;
199 } else {
200 assert(!strncmp("preceding-sibling", str, str_len));
201 return LYXP_AXIS_PRECEDING_SIBLING;
202 }
203 break;
204 case 18:
205 assert(!strncmp("descendant-or-self", str, str_len));
206 return LYXP_AXIS_DESCENDANT_OR_SELF;
207 }
208
209 LOGINT(NULL);
210 return 0;
211}
212
213/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200214 * @brief Print the whole expression \p exp to debug output.
215 *
216 * @param[in] exp Expression to use.
217 */
218static void
Michal Vasko40308e72020-10-20 16:38:40 +0200219print_expr_struct_debug(const struct lyxp_expr *exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200220{
Radek Krejcif13b87b2020-12-01 22:02:17 +0100221#define MSG_BUFFER_SIZE 128
222 char tmp[MSG_BUFFER_SIZE];
Michal Vasko1fdd8fa2021-01-08 09:21:45 +0100223 uint32_t i, j;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200224
Radek Krejci52b6d512020-10-12 12:33:17 +0200225 if (!exp || (ly_ll < LY_LLDBG)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200226 return;
227 }
228
229 LOGDBG(LY_LDGXPATH, "expression \"%s\":", exp->expr);
230 for (i = 0; i < exp->used; ++i) {
Michal Vasko49fec8e2022-05-24 10:28:33 +0200231 sprintf(tmp, "\ttoken %s, in expression \"%.*s\"", lyxp_token2str(exp->tokens[i]), exp->tok_len[i],
Michal Vasko69730152020-10-09 16:30:07 +0200232 &exp->expr[exp->tok_pos[i]]);
Michal Vasko23049552021-03-04 15:57:44 +0100233 if (exp->repeat && exp->repeat[i]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200234 sprintf(tmp + strlen(tmp), " (repeat %d", exp->repeat[i][0]);
235 for (j = 1; exp->repeat[i][j]; ++j) {
236 sprintf(tmp + strlen(tmp), ", %d", exp->repeat[i][j]);
237 }
238 strcat(tmp, ")");
239 }
240 LOGDBG(LY_LDGXPATH, tmp);
241 }
Radek Krejcif13b87b2020-12-01 22:02:17 +0100242#undef MSG_BUFFER_SIZE
Michal Vasko03ff5a72019-09-11 13:49:33 +0200243}
244
245#ifndef NDEBUG
246
247/**
248 * @brief Print XPath set content to debug output.
249 *
250 * @param[in] set Set to print.
251 */
252static void
253print_set_debug(struct lyxp_set *set)
254{
255 uint32_t i;
256 char *str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200257 struct lyxp_set_node *item;
258 struct lyxp_set_scnode *sitem;
259
Radek Krejci52b6d512020-10-12 12:33:17 +0200260 if (ly_ll < LY_LLDBG) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200261 return;
262 }
263
264 switch (set->type) {
265 case LYXP_SET_NODE_SET:
266 LOGDBG(LY_LDGXPATH, "set NODE SET:");
267 for (i = 0; i < set->used; ++i) {
268 item = &set->val.nodes[i];
269
270 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100271 case LYXP_NODE_NONE:
272 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): NONE", i + 1, item->pos);
273 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200274 case LYXP_NODE_ROOT:
275 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT", i + 1, item->pos);
276 break;
277 case LYXP_NODE_ROOT_CONFIG:
278 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT CONFIG", i + 1, item->pos);
279 break;
280 case LYXP_NODE_ELEM:
Michal Vasko9e685082021-01-29 14:49:09 +0100281 if ((item->node->schema->nodetype == LYS_LIST) && (lyd_child(item->node)->schema->nodetype == LYS_LEAF)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200282 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos,
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200283 item->node->schema->name, lyd_get_value(lyd_child(item->node)));
Michal Vasko9e685082021-01-29 14:49:09 +0100284 } else if (item->node->schema->nodetype == LYS_LEAFLIST) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200285 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (val: %s)", i + 1, item->pos,
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200286 item->node->schema->name, lyd_get_value(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200287 } else {
288 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s", i + 1, item->pos, item->node->schema->name);
289 }
290 break;
291 case LYXP_NODE_TEXT:
292 if (item->node->schema->nodetype & LYS_ANYDATA) {
293 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT <%s>", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200294 item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata");
Michal Vasko03ff5a72019-09-11 13:49:33 +0200295 } else {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200296 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT %s", i + 1, item->pos, lyd_get_value(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200297 }
298 break;
Michal Vasko9f96a052020-03-10 09:41:45 +0100299 case LYXP_NODE_META:
300 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): META %s = %s", i + 1, item->pos, set->val.meta[i].meta->name,
Michal Vasko69730152020-10-09 16:30:07 +0200301 set->val.meta[i].meta->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200302 break;
303 }
304 }
305 break;
306
307 case LYXP_SET_SCNODE_SET:
308 LOGDBG(LY_LDGXPATH, "set SCNODE SET:");
309 for (i = 0; i < set->used; ++i) {
310 sitem = &set->val.scnodes[i];
311
312 switch (sitem->type) {
313 case LYXP_NODE_ROOT:
314 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT", i + 1, sitem->in_ctx);
315 break;
316 case LYXP_NODE_ROOT_CONFIG:
317 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT CONFIG", i + 1, sitem->in_ctx);
318 break;
319 case LYXP_NODE_ELEM:
320 LOGDBG(LY_LDGXPATH, "\t%d (%u): ELEM %s", i + 1, sitem->in_ctx, sitem->scnode->name);
321 break;
322 default:
323 LOGINT(NULL);
324 break;
325 }
326 }
327 break;
328
Michal Vasko03ff5a72019-09-11 13:49:33 +0200329 case LYXP_SET_BOOLEAN:
330 LOGDBG(LY_LDGXPATH, "set BOOLEAN");
Michal Vasko004d3152020-06-11 19:59:22 +0200331 LOGDBG(LY_LDGXPATH, "\t%s", (set->val.bln ? "true" : "false"));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200332 break;
333
334 case LYXP_SET_STRING:
335 LOGDBG(LY_LDGXPATH, "set STRING");
336 LOGDBG(LY_LDGXPATH, "\t%s", set->val.str);
337 break;
338
339 case LYXP_SET_NUMBER:
340 LOGDBG(LY_LDGXPATH, "set NUMBER");
341
342 if (isnan(set->val.num)) {
343 str = strdup("NaN");
344 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
345 str = strdup("0");
346 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
347 str = strdup("Infinity");
348 } else if (isinf(set->val.num) && signbit(set->val.num)) {
349 str = strdup("-Infinity");
350 } else if ((long long)set->val.num == set->val.num) {
351 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
352 str = NULL;
353 }
354 } else {
355 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
356 str = NULL;
357 }
358 }
359 LY_CHECK_ERR_RET(!str, LOGMEM(NULL), );
360
361 LOGDBG(LY_LDGXPATH, "\t%s", str);
362 free(str);
363 }
364}
365
366#endif
367
368/**
369 * @brief Realloc the string \p str.
370 *
371 * @param[in] ctx libyang context for logging.
372 * @param[in] needed How much free space is required.
373 * @param[in,out] str Pointer to the string to use.
374 * @param[in,out] used Used bytes in \p str.
375 * @param[in,out] size Allocated bytes in \p str.
376 * @return LY_ERR
377 */
378static LY_ERR
Michal Vasko52927e22020-03-16 17:26:14 +0100379cast_string_realloc(const struct ly_ctx *ctx, uint16_t needed, char **str, uint16_t *used, uint16_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200380{
381 if (*size - *used < needed) {
382 do {
383 if ((UINT16_MAX - *size) < LYXP_STRING_CAST_SIZE_STEP) {
384 LOGERR(ctx, LY_EINVAL, "XPath string length limit (%u) reached.", UINT16_MAX);
385 return LY_EINVAL;
386 }
387 *size += LYXP_STRING_CAST_SIZE_STEP;
388 } while (*size - *used < needed);
389 *str = ly_realloc(*str, *size * sizeof(char));
390 LY_CHECK_ERR_RET(!(*str), LOGMEM(ctx), LY_EMEM);
391 }
392
393 return LY_SUCCESS;
394}
395
396/**
397 * @brief Cast nodes recursively to one string @p str.
398 *
399 * @param[in] node Node to cast.
400 * @param[in] fake_cont Whether to put the data into a "fake" container.
401 * @param[in] root_type Type of the XPath root.
402 * @param[in] indent Current indent.
403 * @param[in,out] str Resulting string.
404 * @param[in,out] used Used bytes in @p str.
405 * @param[in,out] size Allocated bytes in @p str.
406 * @return LY_ERR
407 */
408static LY_ERR
Michal Vaskoddd76592022-01-17 13:34:48 +0100409cast_string_recursive(const struct lyd_node *node, ly_bool fake_cont, enum lyxp_node_type root_type, uint16_t indent,
410 char **str, uint16_t *used, uint16_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200411{
Radek Krejci7f769d72020-07-11 23:13:56 +0200412 char *buf, *line, *ptr = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200413 const char *value_str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200414 const struct lyd_node *child;
Michal Vasko60ea6352020-06-29 13:39:39 +0200415 struct lyd_node *tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200416 struct lyd_node_any *any;
417 LY_ERR rc;
418
419 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
420 return LY_SUCCESS;
421 }
422
423 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200424 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200425 LY_CHECK_RET(rc);
426 strcpy(*str + (*used - 1), "\n");
427 ++(*used);
428
429 ++indent;
430 }
431
432 switch (node->schema->nodetype) {
433 case LYS_CONTAINER:
434 case LYS_LIST:
435 case LYS_RPC:
436 case LYS_NOTIF:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200437 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200438 LY_CHECK_RET(rc);
439 strcpy(*str + (*used - 1), "\n");
440 ++(*used);
441
Radek Krejcia1c1e542020-09-29 16:06:52 +0200442 for (child = lyd_child(node); child; child = child->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200443 rc = cast_string_recursive(child, 0, root_type, indent + 1, str, used, size);
444 LY_CHECK_RET(rc);
445 }
446
447 break;
448
449 case LYS_LEAF:
450 case LYS_LEAFLIST:
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200451 value_str = lyd_get_value(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200452
453 /* print indent */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200454 LY_CHECK_RET(cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(value_str) + 1, str, used, size));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200455 memset(*str + (*used - 1), ' ', indent * 2);
456 *used += indent * 2;
457
458 /* print value */
459 if (*used == 1) {
460 sprintf(*str + (*used - 1), "%s", value_str);
461 *used += strlen(value_str);
462 } else {
463 sprintf(*str + (*used - 1), "%s\n", value_str);
464 *used += strlen(value_str) + 1;
465 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200466
467 break;
468
469 case LYS_ANYXML:
470 case LYS_ANYDATA:
471 any = (struct lyd_node_any *)node;
472 if (!(void *)any->value.tree) {
473 /* no content */
474 buf = strdup("");
Michal Vaskob7be7a82020-08-20 09:09:04 +0200475 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200476 } else {
Radek Krejci241f6b52020-05-21 18:13:49 +0200477 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100478
Michal Vasko60ea6352020-06-29 13:39:39 +0200479 if (any->value_type == LYD_ANYDATA_LYB) {
480 /* try to parse it into a data tree */
Michal Vaskoddd76592022-01-17 13:34:48 +0100481 if (lyd_parse_data_mem((struct ly_ctx *)LYD_CTX(node), any->value.mem, LYD_LYB,
482 LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &tree) == LY_SUCCESS) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200483 /* successfully parsed */
484 free(any->value.mem);
485 any->value.tree = tree;
486 any->value_type = LYD_ANYDATA_DATATREE;
487 }
Radek Krejci7931b192020-06-25 17:05:03 +0200488 /* error is covered by the following switch where LYD_ANYDATA_LYB causes failure */
Michal Vasko60ea6352020-06-29 13:39:39 +0200489 }
490
Michal Vasko03ff5a72019-09-11 13:49:33 +0200491 switch (any->value_type) {
492 case LYD_ANYDATA_STRING:
493 case LYD_ANYDATA_XML:
494 case LYD_ANYDATA_JSON:
495 buf = strdup(any->value.json);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200496 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200497 break;
498 case LYD_ANYDATA_DATATREE:
Radek Krejci84ce7b12020-06-11 17:28:25 +0200499 LY_CHECK_RET(ly_out_new_memory(&buf, 0, &out));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200500 rc = lyd_print_all(out, any->value.tree, LYD_XML, 0);
Radek Krejci241f6b52020-05-21 18:13:49 +0200501 ly_out_free(out, NULL, 0);
Radek Krejcia5bba312020-01-09 15:41:20 +0100502 LY_CHECK_RET(rc < 0, -rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200503 break;
Michal Vasko60ea6352020-06-29 13:39:39 +0200504 case LYD_ANYDATA_LYB:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200505 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot convert LYB anydata into string.");
Michal Vasko60ea6352020-06-29 13:39:39 +0200506 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200507 }
508 }
509
510 line = strtok_r(buf, "\n", &ptr);
511 do {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200512 rc = cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(line) + 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200513 if (rc != LY_SUCCESS) {
514 free(buf);
515 return rc;
516 }
517 memset(*str + (*used - 1), ' ', indent * 2);
518 *used += indent * 2;
519
520 strcpy(*str + (*used - 1), line);
521 *used += strlen(line);
522
523 strcpy(*str + (*used - 1), "\n");
524 *used += 1;
525 } while ((line = strtok_r(NULL, "\n", &ptr)));
526
527 free(buf);
528 break;
529
530 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200531 LOGINT_RET(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200532 }
533
534 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200535 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200536 LY_CHECK_RET(rc);
537 strcpy(*str + (*used - 1), "\n");
538 ++(*used);
539
540 --indent;
541 }
542
543 return LY_SUCCESS;
544}
545
546/**
547 * @brief Cast an element into a string.
548 *
549 * @param[in] node Node to cast.
550 * @param[in] fake_cont Whether to put the data into a "fake" container.
551 * @param[in] root_type Type of the XPath root.
552 * @param[out] str Element cast to dynamically-allocated string.
553 * @return LY_ERR
554 */
555static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200556cast_string_elem(struct lyd_node *node, ly_bool fake_cont, enum lyxp_node_type root_type, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200557{
558 uint16_t used, size;
559 LY_ERR rc;
560
561 *str = malloc(LYXP_STRING_CAST_SIZE_START * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200562 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200563 (*str)[0] = '\0';
564 used = 1;
565 size = LYXP_STRING_CAST_SIZE_START;
566
567 rc = cast_string_recursive(node, fake_cont, root_type, 0, str, &used, &size);
568 if (rc != LY_SUCCESS) {
569 free(*str);
570 return rc;
571 }
572
573 if (size > used) {
574 *str = ly_realloc(*str, used * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200575 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200576 }
577 return LY_SUCCESS;
578}
579
580/**
581 * @brief Cast a LYXP_SET_NODE_SET set into a string.
582 * Context position aware.
583 *
584 * @param[in] set Set to cast.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200585 * @param[out] str Cast dynamically-allocated string.
586 * @return LY_ERR
587 */
588static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100589cast_node_set_to_string(struct lyxp_set *set, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200590{
Michal Vaskoaa677062021-03-09 13:52:53 +0100591 if (!set->used) {
592 *str = strdup("");
593 if (!*str) {
594 LOGMEM_RET(set->ctx);
595 }
596 return LY_SUCCESS;
597 }
598
Michal Vasko03ff5a72019-09-11 13:49:33 +0200599 switch (set->val.nodes[0].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100600 case LYXP_NODE_NONE:
601 /* invalid */
602 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200603 case LYXP_NODE_ROOT:
604 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100605 return cast_string_elem(set->val.nodes[0].node, 1, set->root_type, str);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200606 case LYXP_NODE_ELEM:
607 case LYXP_NODE_TEXT:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100608 return cast_string_elem(set->val.nodes[0].node, 0, set->root_type, str);
Michal Vasko9f96a052020-03-10 09:41:45 +0100609 case LYXP_NODE_META:
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200610 *str = strdup(lyd_get_meta_value(set->val.meta[0].meta));
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200611 if (!*str) {
612 LOGMEM_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200613 }
614 return LY_SUCCESS;
615 }
616
617 LOGINT_RET(set->ctx);
618}
619
620/**
621 * @brief Cast a string into an XPath number.
622 *
623 * @param[in] str String to use.
624 * @return Cast number.
625 */
626static long double
627cast_string_to_number(const char *str)
628{
629 long double num;
630 char *ptr;
631
632 errno = 0;
633 num = strtold(str, &ptr);
634 if (errno || *ptr) {
635 num = NAN;
636 }
637 return num;
638}
639
640/**
641 * @brief Callback for checking value equality.
642 *
Michal Vasko62524a92021-02-26 10:08:50 +0100643 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200644 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200645 * @param[in] val1_p First value.
646 * @param[in] val2_p Second value.
647 * @param[in] mod Whether hash table is being modified.
648 * @param[in] cb_data Callback data.
Radek Krejci857189e2020-09-01 13:26:36 +0200649 * @return Boolean value whether values are equal or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200650 */
Radek Krejci857189e2020-09-01 13:26:36 +0200651static ly_bool
652set_values_equal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko03ff5a72019-09-11 13:49:33 +0200653{
654 struct lyxp_set_hash_node *val1, *val2;
655
656 val1 = (struct lyxp_set_hash_node *)val1_p;
657 val2 = (struct lyxp_set_hash_node *)val2_p;
658
659 if ((val1->node == val2->node) && (val1->type == val2->type)) {
660 return 1;
661 }
662
663 return 0;
664}
665
666/**
667 * @brief Insert node and its hash into set.
668 *
669 * @param[in] set et to insert to.
670 * @param[in] node Node with hash.
671 * @param[in] type Node type.
672 */
673static void
674set_insert_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
675{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200676 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200677 uint32_t i, hash;
678 struct lyxp_set_hash_node hnode;
679
680 if (!set->ht && (set->used >= LYD_HT_MIN_ITEMS)) {
681 /* create hash table and add all the nodes */
682 set->ht = lyht_new(1, sizeof(struct lyxp_set_hash_node), set_values_equal_cb, NULL, 1);
683 for (i = 0; i < set->used; ++i) {
684 hnode.node = set->val.nodes[i].node;
685 hnode.type = set->val.nodes[i].type;
686
687 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
688 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
689 hash = dict_hash_multi(hash, NULL, 0);
690
691 r = lyht_insert(set->ht, &hnode, hash, NULL);
692 assert(!r);
693 (void)r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200694
Michal Vasko9d6befd2019-12-11 14:56:56 +0100695 if (hnode.node == node) {
696 /* it was just added, do not add it twice */
697 node = NULL;
698 }
699 }
700 }
701
702 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200703 /* add the new node into hash table */
704 hnode.node = node;
705 hnode.type = type;
706
707 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
708 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
709 hash = dict_hash_multi(hash, NULL, 0);
710
711 r = lyht_insert(set->ht, &hnode, hash, NULL);
712 assert(!r);
713 (void)r;
714 }
715}
716
717/**
718 * @brief Remove node and its hash from set.
719 *
720 * @param[in] set Set to remove from.
721 * @param[in] node Node to remove.
722 * @param[in] type Node type.
723 */
724static void
725set_remove_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
726{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200727 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200728 struct lyxp_set_hash_node hnode;
729 uint32_t hash;
730
731 if (set->ht) {
732 hnode.node = node;
733 hnode.type = type;
734
735 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
736 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
737 hash = dict_hash_multi(hash, NULL, 0);
738
739 r = lyht_remove(set->ht, &hnode, hash);
740 assert(!r);
741 (void)r;
742
743 if (!set->ht->used) {
744 lyht_free(set->ht);
745 set->ht = NULL;
746 }
747 }
748}
749
750/**
751 * @brief Check whether node is in set based on its hash.
752 *
753 * @param[in] set Set to search in.
754 * @param[in] node Node to search for.
755 * @param[in] type Node type.
756 * @param[in] skip_idx Index in @p set to skip.
757 * @return LY_ERR
758 */
759static LY_ERR
760set_dup_node_hash_check(const struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type, int skip_idx)
761{
762 struct lyxp_set_hash_node hnode, *match_p;
763 uint32_t hash;
764
765 hnode.node = node;
766 hnode.type = type;
767
768 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
769 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
770 hash = dict_hash_multi(hash, NULL, 0);
771
772 if (!lyht_find(set->ht, &hnode, hash, (void **)&match_p)) {
773 if ((skip_idx > -1) && (set->val.nodes[skip_idx].node == match_p->node) && (set->val.nodes[skip_idx].type == match_p->type)) {
774 /* we found it on the index that should be skipped, find another */
775 hnode = *match_p;
776 if (lyht_find_next(set->ht, &hnode, hash, (void **)&match_p)) {
777 /* none other found */
778 return LY_SUCCESS;
779 }
780 }
781
782 return LY_EEXIST;
783 }
784
785 /* not found */
786 return LY_SUCCESS;
787}
788
Michal Vaskod3678892020-05-21 10:06:58 +0200789void
790lyxp_set_free_content(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200791{
792 if (!set) {
793 return;
794 }
795
796 if (set->type == LYXP_SET_NODE_SET) {
797 free(set->val.nodes);
798 lyht_free(set->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200799 } else if (set->type == LYXP_SET_SCNODE_SET) {
800 free(set->val.scnodes);
Michal Vaskod3678892020-05-21 10:06:58 +0200801 lyht_free(set->ht);
802 } else {
803 if (set->type == LYXP_SET_STRING) {
804 free(set->val.str);
805 }
806 set->type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200807 }
Michal Vaskod3678892020-05-21 10:06:58 +0200808
809 set->val.nodes = NULL;
810 set->used = 0;
811 set->size = 0;
812 set->ht = NULL;
813 set->ctx_pos = 0;
aPiecek748da732021-06-01 09:56:43 +0200814 set->ctx_size = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200815}
816
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100817/**
818 * @brief Free dynamically-allocated set.
819 *
820 * @param[in] set Set to free.
821 */
822static void
Michal Vasko03ff5a72019-09-11 13:49:33 +0200823lyxp_set_free(struct lyxp_set *set)
824{
825 if (!set) {
826 return;
827 }
828
Michal Vaskod3678892020-05-21 10:06:58 +0200829 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200830 free(set);
831}
832
833/**
834 * @brief Initialize set context.
835 *
836 * @param[in] new Set to initialize.
837 * @param[in] set Arbitrary initialized set.
838 */
839static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200840set_init(struct lyxp_set *new, const struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200841{
842 memset(new, 0, sizeof *new);
Michal Vasko02a77382019-09-12 11:47:35 +0200843 if (set) {
844 new->ctx = set->ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200845 new->cur_node = set->cur_node;
Michal Vasko588112f2019-12-10 14:51:53 +0100846 new->root_type = set->root_type;
Michal Vasko6b26e742020-07-17 15:02:10 +0200847 new->context_op = set->context_op;
Michal Vaskof03ed032020-03-04 13:31:44 +0100848 new->tree = set->tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200849 new->cur_mod = set->cur_mod;
Michal Vasko02a77382019-09-12 11:47:35 +0200850 new->format = set->format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200851 new->prefix_data = set->prefix_data;
aPiecekfba75362021-10-07 12:39:48 +0200852 new->vars = set->vars;
Michal Vasko02a77382019-09-12 11:47:35 +0200853 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200854}
855
856/**
857 * @brief Create a deep copy of a set.
858 *
859 * @param[in] set Set to copy.
860 * @return Copy of @p set.
861 */
862static struct lyxp_set *
863set_copy(struct lyxp_set *set)
864{
865 struct lyxp_set *ret;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +0100866 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200867
868 if (!set) {
869 return NULL;
870 }
871
872 ret = malloc(sizeof *ret);
873 LY_CHECK_ERR_RET(!ret, LOGMEM(set->ctx), NULL);
874 set_init(ret, set);
875
876 if (set->type == LYXP_SET_SCNODE_SET) {
877 ret->type = set->type;
878
879 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100880 if ((set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) ||
881 (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200882 uint32_t idx;
883 LY_CHECK_ERR_RET(lyxp_set_scnode_insert_node(ret, set->val.scnodes[i].scnode, set->val.scnodes[i].type, &idx),
884 lyxp_set_free(ret), NULL);
Michal Vasko3f27c522020-01-06 08:37:49 +0100885 /* coverity seems to think scnodes can be NULL */
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200886 if (!ret->val.scnodes) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200887 lyxp_set_free(ret);
888 return NULL;
889 }
Michal Vaskoba716542019-12-16 10:01:58 +0100890 ret->val.scnodes[idx].in_ctx = set->val.scnodes[i].in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200891 }
892 }
893 } else if (set->type == LYXP_SET_NODE_SET) {
894 ret->type = set->type;
Michal Vasko08e9b112021-06-11 15:41:17 +0200895 if (set->used) {
896 ret->val.nodes = malloc(set->used * sizeof *ret->val.nodes);
897 LY_CHECK_ERR_RET(!ret->val.nodes, LOGMEM(set->ctx); free(ret), NULL);
898 memcpy(ret->val.nodes, set->val.nodes, set->used * sizeof *ret->val.nodes);
899 } else {
900 ret->val.nodes = NULL;
901 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200902
903 ret->used = ret->size = set->used;
904 ret->ctx_pos = set->ctx_pos;
905 ret->ctx_size = set->ctx_size;
Michal Vasko4a04e542021-02-01 08:58:30 +0100906 if (set->ht) {
907 ret->ht = lyht_dup(set->ht);
908 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200909 } else {
Radek Krejci0f969882020-08-21 16:56:47 +0200910 memcpy(ret, set, sizeof *ret);
911 if (set->type == LYXP_SET_STRING) {
912 ret->val.str = strdup(set->val.str);
913 LY_CHECK_ERR_RET(!ret->val.str, LOGMEM(set->ctx); free(ret), NULL);
914 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200915 }
916
917 return ret;
918}
919
920/**
921 * @brief Fill XPath set with a string. Any current data are disposed of.
922 *
923 * @param[in] set Set to fill.
924 * @param[in] string String to fill into \p set.
925 * @param[in] str_len Length of \p string. 0 is a valid value!
926 */
927static void
928set_fill_string(struct lyxp_set *set, const char *string, uint16_t str_len)
929{
Michal Vaskod3678892020-05-21 10:06:58 +0200930 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200931
932 set->type = LYXP_SET_STRING;
933 if ((str_len == 0) && (string[0] != '\0')) {
934 string = "";
935 }
936 set->val.str = strndup(string, str_len);
937}
938
939/**
940 * @brief Fill XPath set with a number. Any current data are disposed of.
941 *
942 * @param[in] set Set to fill.
943 * @param[in] number Number to fill into \p set.
944 */
945static void
946set_fill_number(struct lyxp_set *set, long double number)
947{
Michal Vaskod3678892020-05-21 10:06:58 +0200948 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200949
950 set->type = LYXP_SET_NUMBER;
951 set->val.num = number;
952}
953
954/**
955 * @brief Fill XPath set with a boolean. Any current data are disposed of.
956 *
957 * @param[in] set Set to fill.
958 * @param[in] boolean Boolean to fill into \p set.
959 */
960static void
Radek Krejci857189e2020-09-01 13:26:36 +0200961set_fill_boolean(struct lyxp_set *set, ly_bool boolean)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200962{
Michal Vaskod3678892020-05-21 10:06:58 +0200963 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200964
965 set->type = LYXP_SET_BOOLEAN;
Michal Vasko004d3152020-06-11 19:59:22 +0200966 set->val.bln = boolean;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200967}
968
969/**
970 * @brief Fill XPath set with the value from another set (deep assign).
971 * Any current data are disposed of.
972 *
973 * @param[in] trg Set to fill.
974 * @param[in] src Source set to copy into \p trg.
975 */
976static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200977set_fill_set(struct lyxp_set *trg, const struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200978{
979 if (!trg || !src) {
980 return;
981 }
982
983 if (trg->type == LYXP_SET_NODE_SET) {
984 free(trg->val.nodes);
985 } else if (trg->type == LYXP_SET_STRING) {
986 free(trg->val.str);
987 }
988 set_init(trg, src);
989
990 if (src->type == LYXP_SET_SCNODE_SET) {
991 trg->type = LYXP_SET_SCNODE_SET;
992 trg->used = src->used;
993 trg->size = src->used;
994
Michal Vasko08e9b112021-06-11 15:41:17 +0200995 if (trg->size) {
996 trg->val.scnodes = ly_realloc(trg->val.scnodes, trg->size * sizeof *trg->val.scnodes);
997 LY_CHECK_ERR_RET(!trg->val.scnodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
998 memcpy(trg->val.scnodes, src->val.scnodes, src->used * sizeof *src->val.scnodes);
999 } else {
1000 trg->val.scnodes = NULL;
1001 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001002 } else if (src->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02001003 set_fill_boolean(trg, src->val.bln);
Michal Vasko44f3d2c2020-08-24 09:49:38 +02001004 } else if (src->type == LYXP_SET_NUMBER) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001005 set_fill_number(trg, src->val.num);
1006 } else if (src->type == LYXP_SET_STRING) {
1007 set_fill_string(trg, src->val.str, strlen(src->val.str));
1008 } else {
1009 if (trg->type == LYXP_SET_NODE_SET) {
1010 free(trg->val.nodes);
1011 } else if (trg->type == LYXP_SET_STRING) {
1012 free(trg->val.str);
1013 }
1014
Michal Vaskod3678892020-05-21 10:06:58 +02001015 assert(src->type == LYXP_SET_NODE_SET);
1016
1017 trg->type = LYXP_SET_NODE_SET;
1018 trg->used = src->used;
1019 trg->size = src->used;
1020 trg->ctx_pos = src->ctx_pos;
1021 trg->ctx_size = src->ctx_size;
1022
Michal Vasko08e9b112021-06-11 15:41:17 +02001023 if (trg->size) {
1024 trg->val.nodes = malloc(trg->size * sizeof *trg->val.nodes);
1025 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
1026 memcpy(trg->val.nodes, src->val.nodes, src->used * sizeof *src->val.nodes);
1027 } else {
1028 trg->val.nodes = NULL;
1029 }
Michal Vaskod3678892020-05-21 10:06:58 +02001030 if (src->ht) {
1031 trg->ht = lyht_dup(src->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001032 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02001033 trg->ht = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001034 }
1035 }
1036}
1037
1038/**
1039 * @brief Clear context of all schema nodes.
1040 *
1041 * @param[in] set Set to clear.
Michal Vasko1a09b212021-05-06 13:00:10 +02001042 * @param[in] new_ctx New context state for all the nodes currently in the context.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001043 */
1044static void
Michal Vasko1a09b212021-05-06 13:00:10 +02001045set_scnode_clear_ctx(struct lyxp_set *set, int32_t new_ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001046{
1047 uint32_t i;
1048
1049 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001050 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a09b212021-05-06 13:00:10 +02001051 set->val.scnodes[i].in_ctx = new_ctx;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001052 } else if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START) {
1053 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001054 }
1055 }
1056}
1057
1058/**
1059 * @brief Remove a node from a set. Removing last node changes
1060 * set into LYXP_SET_EMPTY. Context position aware.
1061 *
1062 * @param[in] set Set to use.
1063 * @param[in] idx Index from @p set of the node to be removed.
1064 */
1065static void
1066set_remove_node(struct lyxp_set *set, uint32_t idx)
1067{
1068 assert(set && (set->type == LYXP_SET_NODE_SET));
1069 assert(idx < set->used);
1070
1071 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1072
1073 --set->used;
Michal Vasko08e9b112021-06-11 15:41:17 +02001074 if (idx < set->used) {
1075 memmove(&set->val.nodes[idx], &set->val.nodes[idx + 1], (set->used - idx) * sizeof *set->val.nodes);
1076 } else if (!set->used) {
Michal Vaskod3678892020-05-21 10:06:58 +02001077 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001078 }
1079}
1080
1081/**
Michal Vasko2caefc12019-11-14 16:07:56 +01001082 * @brief Remove a node from a set by setting its type to LYXP_NODE_NONE.
Michal Vasko57eab132019-09-24 11:46:26 +02001083 *
1084 * @param[in] set Set to use.
1085 * @param[in] idx Index from @p set of the node to be removed.
1086 */
1087static void
Michal Vasko2caefc12019-11-14 16:07:56 +01001088set_remove_node_none(struct lyxp_set *set, uint32_t idx)
Michal Vasko57eab132019-09-24 11:46:26 +02001089{
1090 assert(set && (set->type == LYXP_SET_NODE_SET));
1091 assert(idx < set->used);
1092
Michal Vasko2caefc12019-11-14 16:07:56 +01001093 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1094 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1095 }
1096 set->val.nodes[idx].type = LYXP_NODE_NONE;
Michal Vasko57eab132019-09-24 11:46:26 +02001097}
1098
1099/**
Michal Vasko2caefc12019-11-14 16:07:56 +01001100 * @brief Remove all LYXP_NODE_NONE nodes from a set. Removing last node changes
Michal Vasko57eab132019-09-24 11:46:26 +02001101 * set into LYXP_SET_EMPTY. Context position aware.
1102 *
1103 * @param[in] set Set to consolidate.
1104 */
1105static void
Michal Vasko2caefc12019-11-14 16:07:56 +01001106set_remove_nodes_none(struct lyxp_set *set)
Michal Vasko57eab132019-09-24 11:46:26 +02001107{
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01001108 uint32_t i, orig_used, end = 0;
1109 int64_t start;
Michal Vasko57eab132019-09-24 11:46:26 +02001110
Michal Vaskod3678892020-05-21 10:06:58 +02001111 assert(set);
Michal Vasko57eab132019-09-24 11:46:26 +02001112
1113 orig_used = set->used;
1114 set->used = 0;
Michal Vaskod989ba02020-08-24 10:59:24 +02001115 for (i = 0; i < orig_used; ) {
Michal Vasko57eab132019-09-24 11:46:26 +02001116 start = -1;
1117 do {
Michal Vasko2caefc12019-11-14 16:07:56 +01001118 if ((set->val.nodes[i].type != LYXP_NODE_NONE) && (start == -1)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001119 start = i;
Michal Vasko2caefc12019-11-14 16:07:56 +01001120 } else if ((start > -1) && (set->val.nodes[i].type == LYXP_NODE_NONE)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001121 end = i;
1122 ++i;
1123 break;
1124 }
1125
1126 ++i;
1127 if (i == orig_used) {
1128 end = i;
1129 }
1130 } while (i < orig_used);
1131
1132 if (start > -1) {
1133 /* move the whole chunk of valid nodes together */
1134 if (set->used != (unsigned)start) {
1135 memmove(&set->val.nodes[set->used], &set->val.nodes[start], (end - start) * sizeof *set->val.nodes);
1136 }
1137 set->used += end - start;
1138 }
1139 }
Michal Vasko57eab132019-09-24 11:46:26 +02001140}
1141
1142/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001143 * @brief Check for duplicates in a node set.
1144 *
1145 * @param[in] set Set to check.
1146 * @param[in] node Node to look for in @p set.
1147 * @param[in] node_type Type of @p node.
1148 * @param[in] skip_idx Index from @p set to skip.
1149 * @return LY_ERR
1150 */
1151static LY_ERR
1152set_dup_node_check(const struct lyxp_set *set, const struct lyd_node *node, enum lyxp_node_type node_type, int skip_idx)
1153{
1154 uint32_t i;
1155
Michal Vasko2caefc12019-11-14 16:07:56 +01001156 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001157 return set_dup_node_hash_check(set, (struct lyd_node *)node, node_type, skip_idx);
1158 }
1159
1160 for (i = 0; i < set->used; ++i) {
1161 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1162 continue;
1163 }
1164
1165 if ((set->val.nodes[i].node == node) && (set->val.nodes[i].type == node_type)) {
1166 return LY_EEXIST;
1167 }
1168 }
1169
1170 return LY_SUCCESS;
1171}
1172
Radek Krejci857189e2020-09-01 13:26:36 +02001173ly_bool
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001174lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, int skip_idx,
1175 uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001176{
1177 uint32_t i;
1178
1179 for (i = 0; i < set->used; ++i) {
1180 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1181 continue;
1182 }
1183
1184 if ((set->val.scnodes[i].scnode == node) && (set->val.scnodes[i].type == node_type)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001185 if (index_p) {
1186 *index_p = i;
1187 }
1188 return 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001189 }
1190 }
1191
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001192 return 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001193}
1194
Michal Vaskoecd62de2019-11-13 12:35:11 +01001195void
1196lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001197{
1198 uint32_t orig_used, i, j;
1199
Michal Vaskod3678892020-05-21 10:06:58 +02001200 assert((set1->type == LYXP_SET_SCNODE_SET) && (set2->type == LYXP_SET_SCNODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001201
Michal Vaskod3678892020-05-21 10:06:58 +02001202 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001203 return;
1204 }
1205
Michal Vaskod3678892020-05-21 10:06:58 +02001206 if (!set1->used) {
aPiecekadc1e4f2021-10-07 11:15:12 +02001207 /* release hidden allocated data (lyxp_set.size) */
1208 lyxp_set_free_content(set1);
1209 /* direct copying of the entire structure */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001210 memcpy(set1, set2, sizeof *set1);
1211 return;
1212 }
1213
1214 if (set1->used + set2->used > set1->size) {
1215 set1->size = set1->used + set2->used;
1216 set1->val.scnodes = ly_realloc(set1->val.scnodes, set1->size * sizeof *set1->val.scnodes);
1217 LY_CHECK_ERR_RET(!set1->val.scnodes, LOGMEM(set1->ctx), );
1218 }
1219
1220 orig_used = set1->used;
1221
1222 for (i = 0; i < set2->used; ++i) {
1223 for (j = 0; j < orig_used; ++j) {
1224 /* detect duplicities */
1225 if (set1->val.scnodes[j].scnode == set2->val.scnodes[i].scnode) {
1226 break;
1227 }
1228 }
1229
Michal Vasko0587bce2020-12-10 12:19:21 +01001230 if (j < orig_used) {
1231 /* node is there, but update its status if needed */
1232 if (set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_START_USED) {
1233 set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx;
Michal Vasko1a09b212021-05-06 13:00:10 +02001234 } else if ((set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_ATOM_NODE) &&
1235 (set2->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL)) {
1236 set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx;
Michal Vasko0587bce2020-12-10 12:19:21 +01001237 }
1238 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001239 memcpy(&set1->val.scnodes[set1->used], &set2->val.scnodes[i], sizeof *set2->val.scnodes);
1240 ++set1->used;
1241 }
1242 }
1243
Michal Vaskod3678892020-05-21 10:06:58 +02001244 lyxp_set_free_content(set2);
1245 set2->type = LYXP_SET_SCNODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001246}
1247
1248/**
1249 * @brief Insert a node into a set. Context position aware.
1250 *
1251 * @param[in] set Set to use.
1252 * @param[in] node Node to insert to @p set.
1253 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1254 * @param[in] node_type Node type of @p node.
1255 * @param[in] idx Index in @p set to insert into.
1256 */
1257static void
1258set_insert_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1259{
Michal Vaskod3678892020-05-21 10:06:58 +02001260 assert(set && (set->type == LYXP_SET_NODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001261
Michal Vaskod3678892020-05-21 10:06:58 +02001262 if (!set->size) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001263 /* first item */
1264 if (idx) {
1265 /* no real harm done, but it is a bug */
1266 LOGINT(set->ctx);
1267 idx = 0;
1268 }
1269 set->val.nodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.nodes);
1270 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1271 set->type = LYXP_SET_NODE_SET;
1272 set->used = 0;
1273 set->size = LYXP_SET_SIZE_START;
1274 set->ctx_pos = 1;
1275 set->ctx_size = 1;
1276 set->ht = NULL;
1277 } else {
1278 /* not an empty set */
1279 if (set->used == set->size) {
1280
1281 /* set is full */
Michal Vasko871df522022-04-06 12:14:41 +02001282 set->val.nodes = ly_realloc(set->val.nodes, (set->size * LYXP_SET_SIZE_MUL_STEP) * sizeof *set->val.nodes);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001283 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
Michal Vasko871df522022-04-06 12:14:41 +02001284 set->size *= LYXP_SET_SIZE_MUL_STEP;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001285 }
1286
1287 if (idx > set->used) {
1288 LOGINT(set->ctx);
1289 idx = set->used;
1290 }
1291
1292 /* make space for the new node */
1293 if (idx < set->used) {
1294 memmove(&set->val.nodes[idx + 1], &set->val.nodes[idx], (set->used - idx) * sizeof *set->val.nodes);
1295 }
1296 }
1297
1298 /* finally assign the value */
1299 set->val.nodes[idx].node = (struct lyd_node *)node;
1300 set->val.nodes[idx].type = node_type;
1301 set->val.nodes[idx].pos = pos;
1302 ++set->used;
1303
Michal Vasko2416fdd2021-10-01 11:07:10 +02001304 /* add into hash table */
1305 set_insert_node_hash(set, (struct lyd_node *)node, node_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001306}
1307
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001308LY_ERR
Michal Vaskoddd76592022-01-17 13:34:48 +01001309lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type,
1310 uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001311{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001312 uint32_t index;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001313
1314 assert(set->type == LYXP_SET_SCNODE_SET);
1315
Michal Vasko871df522022-04-06 12:14:41 +02001316 if (!set->size) {
1317 /* first item */
1318 set->val.scnodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.scnodes);
1319 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM);
1320 set->type = LYXP_SET_SCNODE_SET;
1321 set->used = 0;
1322 set->size = LYXP_SET_SIZE_START;
1323 set->ctx_pos = 1;
1324 set->ctx_size = 1;
1325 set->ht = NULL;
1326 }
1327
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001328 if (lyxp_set_scnode_contains(set, node, node_type, -1, &index)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001329 set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001330 } else {
1331 if (set->used == set->size) {
Michal Vasko871df522022-04-06 12:14:41 +02001332 set->val.scnodes = ly_realloc(set->val.scnodes, (set->size * LYXP_SET_SIZE_MUL_STEP) * sizeof *set->val.scnodes);
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001333 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko871df522022-04-06 12:14:41 +02001334 set->size *= LYXP_SET_SIZE_MUL_STEP;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001335 }
1336
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001337 index = set->used;
1338 set->val.scnodes[index].scnode = (struct lysc_node *)node;
1339 set->val.scnodes[index].type = node_type;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001340 set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001341 ++set->used;
1342 }
1343
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001344 if (index_p) {
1345 *index_p = index;
1346 }
1347
1348 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001349}
1350
1351/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001352 * @brief Set all nodes with ctx 1 to a new unique context value.
1353 *
1354 * @param[in] set Set to modify.
1355 * @return New context value.
1356 */
Michal Vasko5c4e5892019-11-14 12:31:38 +01001357static int32_t
Michal Vasko03ff5a72019-09-11 13:49:33 +02001358set_scnode_new_in_ctx(struct lyxp_set *set)
1359{
Michal Vasko5c4e5892019-11-14 12:31:38 +01001360 uint32_t i;
1361 int32_t ret_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001362
1363 assert(set->type == LYXP_SET_SCNODE_SET);
1364
Radek Krejcif13b87b2020-12-01 22:02:17 +01001365 ret_ctx = LYXP_SET_SCNODE_ATOM_PRED_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001366retry:
1367 for (i = 0; i < set->used; ++i) {
1368 if (set->val.scnodes[i].in_ctx >= ret_ctx) {
1369 ret_ctx = set->val.scnodes[i].in_ctx + 1;
1370 goto retry;
1371 }
1372 }
1373 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001374 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001375 set->val.scnodes[i].in_ctx = ret_ctx;
1376 }
1377 }
1378
1379 return ret_ctx;
1380}
1381
1382/**
1383 * @brief Get unique @p node position in the data.
1384 *
1385 * @param[in] node Node to find.
1386 * @param[in] node_type Node type of @p node.
1387 * @param[in] root Root node.
1388 * @param[in] root_type Type of the XPath @p root node.
1389 * @param[in] prev Node that we think is before @p node in DFS from @p root. Can optionally
1390 * be used to increase efficiency and start the DFS from this node.
1391 * @param[in] prev_pos Node @p prev position. Optional, but must be set if @p prev is set.
1392 * @return Node position.
1393 */
1394static uint32_t
1395get_node_pos(const struct lyd_node *node, enum lyxp_node_type node_type, const struct lyd_node *root,
Radek Krejci0f969882020-08-21 16:56:47 +02001396 enum lyxp_node_type root_type, const struct lyd_node **prev, uint32_t *prev_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001397{
Michal Vasko56daf732020-08-10 10:57:18 +02001398 const struct lyd_node *elem = NULL, *top_sibling;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001399 uint32_t pos = 1;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001400 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001401
1402 assert(prev && prev_pos && !root->prev->next);
1403
1404 if ((node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ROOT_CONFIG)) {
1405 return 0;
1406 }
1407
1408 if (*prev) {
1409 /* start from the previous element instead from the root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001410 pos = *prev_pos;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001411 for (top_sibling = *prev; top_sibling->parent; top_sibling = lyd_parent(top_sibling)) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001412 goto dfs_search;
1413 }
1414
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001415 LY_LIST_FOR(root, top_sibling) {
Michal Vasko56daf732020-08-10 10:57:18 +02001416 LYD_TREE_DFS_BEGIN(top_sibling, elem) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001417dfs_search:
Michal Vaskoa9309bb2021-07-09 09:31:55 +02001418 LYD_TREE_DFS_continue = 0;
1419
Michal Vasko56daf732020-08-10 10:57:18 +02001420 if (*prev && !elem) {
1421 /* resume previous DFS */
1422 elem = LYD_TREE_DFS_next = (struct lyd_node *)*prev;
1423 LYD_TREE_DFS_continue = 0;
1424 }
1425
Michal Vasko482a6822022-05-06 08:56:12 +02001426 if (!elem->schema || ((root_type == LYXP_NODE_ROOT_CONFIG) && (elem->schema->flags & LYS_CONFIG_R))) {
Michal Vasko56daf732020-08-10 10:57:18 +02001427 /* skip */
1428 LYD_TREE_DFS_continue = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001429 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001430 if (elem == node) {
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001431 found = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001432 break;
1433 }
Michal Vasko56daf732020-08-10 10:57:18 +02001434 ++pos;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001435 }
Michal Vasko56daf732020-08-10 10:57:18 +02001436
1437 LYD_TREE_DFS_END(top_sibling, elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001438 }
1439
1440 /* node found */
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001441 if (found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001442 break;
1443 }
1444 }
1445
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001446 if (!found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001447 if (!(*prev)) {
1448 /* we went from root and failed to find it, cannot be */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001449 LOGINT(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001450 return 0;
1451 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001452 /* start the search again from the beginning */
1453 *prev = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001454
Michal Vasko56daf732020-08-10 10:57:18 +02001455 top_sibling = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001456 pos = 1;
1457 goto dfs_search;
1458 }
1459 }
1460
1461 /* remember the last found node for next time */
1462 *prev = node;
1463 *prev_pos = pos;
1464
1465 return pos;
1466}
1467
1468/**
1469 * @brief Assign (fill) missing node positions.
1470 *
1471 * @param[in] set Set to fill positions in.
1472 * @param[in] root Context root node.
1473 * @param[in] root_type Context root type.
1474 * @return LY_ERR
1475 */
1476static LY_ERR
1477set_assign_pos(struct lyxp_set *set, const struct lyd_node *root, enum lyxp_node_type root_type)
1478{
1479 const struct lyd_node *prev = NULL, *tmp_node;
1480 uint32_t i, tmp_pos = 0;
1481
1482 for (i = 0; i < set->used; ++i) {
1483 if (!set->val.nodes[i].pos) {
1484 tmp_node = NULL;
1485 switch (set->val.nodes[i].type) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001486 case LYXP_NODE_META:
1487 tmp_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001488 if (!tmp_node) {
1489 LOGINT_RET(root->schema->module->ctx);
1490 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001491 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001492 case LYXP_NODE_ELEM:
1493 case LYXP_NODE_TEXT:
1494 if (!tmp_node) {
1495 tmp_node = set->val.nodes[i].node;
1496 }
1497 set->val.nodes[i].pos = get_node_pos(tmp_node, set->val.nodes[i].type, root, root_type, &prev, &tmp_pos);
1498 break;
1499 default:
1500 /* all roots have position 0 */
1501 break;
1502 }
1503 }
1504 }
1505
1506 return LY_SUCCESS;
1507}
1508
1509/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001510 * @brief Get unique @p meta position in the parent metadata.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001511 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001512 * @param[in] meta Metadata to use.
1513 * @return Metadata position.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001514 */
1515static uint16_t
Michal Vasko9f96a052020-03-10 09:41:45 +01001516get_meta_pos(struct lyd_meta *meta)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001517{
1518 uint16_t pos = 0;
Michal Vasko9f96a052020-03-10 09:41:45 +01001519 struct lyd_meta *meta2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001520
Michal Vasko9f96a052020-03-10 09:41:45 +01001521 for (meta2 = meta->parent->meta; meta2 && (meta2 != meta); meta2 = meta2->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001522 ++pos;
1523 }
1524
Michal Vasko9f96a052020-03-10 09:41:45 +01001525 assert(meta2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001526 return pos;
1527}
1528
1529/**
1530 * @brief Compare 2 nodes in respect to XPath document order.
1531 *
1532 * @param[in] item1 1st node.
1533 * @param[in] item2 2nd node.
1534 * @return If 1st > 2nd returns 1, 1st == 2nd returns 0, and 1st < 2nd returns -1.
1535 */
1536static int
1537set_sort_compare(struct lyxp_set_node *item1, struct lyxp_set_node *item2)
1538{
Michal Vasko9f96a052020-03-10 09:41:45 +01001539 uint32_t meta_pos1 = 0, meta_pos2 = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001540
1541 if (item1->pos < item2->pos) {
1542 return -1;
1543 }
1544
1545 if (item1->pos > item2->pos) {
1546 return 1;
1547 }
1548
1549 /* node positions are equal, the fun case */
1550
1551 /* 1st ELEM - == - 2nd TEXT, 1st TEXT - == - 2nd ELEM */
1552 /* special case since text nodes are actually saved as their parents */
1553 if ((item1->node == item2->node) && (item1->type != item2->type)) {
1554 if (item1->type == LYXP_NODE_ELEM) {
1555 assert(item2->type == LYXP_NODE_TEXT);
1556 return -1;
1557 } else {
1558 assert((item1->type == LYXP_NODE_TEXT) && (item2->type == LYXP_NODE_ELEM));
1559 return 1;
1560 }
1561 }
1562
Michal Vasko9f96a052020-03-10 09:41:45 +01001563 /* we need meta positions now */
1564 if (item1->type == LYXP_NODE_META) {
1565 meta_pos1 = get_meta_pos((struct lyd_meta *)item1->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001566 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001567 if (item2->type == LYXP_NODE_META) {
1568 meta_pos2 = get_meta_pos((struct lyd_meta *)item2->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001569 }
1570
Michal Vasko9f96a052020-03-10 09:41:45 +01001571 /* 1st ROOT - 2nd ROOT, 1st ELEM - 2nd ELEM, 1st TEXT - 2nd TEXT, 1st META - =pos= - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001572 /* check for duplicates */
1573 if (item1->node == item2->node) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001574 assert((item1->type == item2->type) && ((item1->type != LYXP_NODE_META) || (meta_pos1 == meta_pos2)));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001575 return 0;
1576 }
1577
Michal Vasko9f96a052020-03-10 09:41:45 +01001578 /* 1st ELEM - 2nd TEXT, 1st ELEM - any pos - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001579 /* elem is always first, 2nd node is after it */
1580 if (item1->type == LYXP_NODE_ELEM) {
1581 assert(item2->type != LYXP_NODE_ELEM);
1582 return -1;
1583 }
1584
Michal Vasko9f96a052020-03-10 09:41:45 +01001585 /* 1st TEXT - 2nd ELEM, 1st TEXT - any pos - 2nd META, 1st META - any pos - 2nd ELEM, 1st META - >pos> - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001586 /* 2nd is before 1st */
Michal Vasko69730152020-10-09 16:30:07 +02001587 if (((item1->type == LYXP_NODE_TEXT) &&
1588 ((item2->type == LYXP_NODE_ELEM) || (item2->type == LYXP_NODE_META))) ||
1589 ((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_ELEM)) ||
1590 (((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_META)) &&
1591 (meta_pos1 > meta_pos2))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001592 return 1;
1593 }
1594
Michal Vasko9f96a052020-03-10 09:41:45 +01001595 /* 1st META - any pos - 2nd TEXT, 1st META <pos< - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001596 /* 2nd is after 1st */
1597 return -1;
1598}
1599
1600/**
1601 * @brief Set cast for comparisons.
1602 *
1603 * @param[in] trg Target set to cast source into.
1604 * @param[in] src Source set.
1605 * @param[in] type Target set type.
1606 * @param[in] src_idx Source set node index.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001607 * @return LY_ERR
1608 */
1609static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001610set_comp_cast(struct lyxp_set *trg, struct lyxp_set *src, enum lyxp_set_type type, uint32_t src_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001611{
1612 assert(src->type == LYXP_SET_NODE_SET);
1613
1614 set_init(trg, src);
1615
1616 /* insert node into target set */
1617 set_insert_node(trg, src->val.nodes[src_idx].node, src->val.nodes[src_idx].pos, src->val.nodes[src_idx].type, 0);
1618
1619 /* cast target set appropriately */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001620 return lyxp_set_cast(trg, type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001621}
1622
Michal Vasko4c7763f2020-07-27 17:40:37 +02001623/**
1624 * @brief Set content canonization for comparisons.
1625 *
1626 * @param[in] trg Target set to put the canononized source into.
1627 * @param[in] src Source set.
1628 * @param[in] xp_node Source XPath node/meta to use for canonization.
1629 * @return LY_ERR
1630 */
1631static LY_ERR
1632set_comp_canonize(struct lyxp_set *trg, const struct lyxp_set *src, const struct lyxp_set_node *xp_node)
1633{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001634 const struct lysc_type *type = NULL;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001635 struct lyd_value val;
1636 struct ly_err_item *err = NULL;
1637 char *str, *ptr;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001638 LY_ERR rc;
1639
1640 /* is there anything to canonize even? */
1641 if ((src->type == LYXP_SET_NUMBER) || (src->type == LYXP_SET_STRING)) {
1642 /* do we have a type to use for canonization? */
1643 if ((xp_node->type == LYXP_NODE_ELEM) && (xp_node->node->schema->nodetype & LYD_NODE_TERM)) {
1644 type = ((struct lyd_node_term *)xp_node->node)->value.realtype;
1645 } else if (xp_node->type == LYXP_NODE_META) {
1646 type = ((struct lyd_meta *)xp_node->node)->value.realtype;
1647 }
1648 }
1649 if (!type) {
1650 goto fill;
1651 }
1652
1653 if (src->type == LYXP_SET_NUMBER) {
1654 /* canonize number */
1655 if (asprintf(&str, "%Lf", src->val.num) == -1) {
1656 LOGMEM(src->ctx);
1657 return LY_EMEM;
1658 }
1659 } else {
1660 /* canonize string */
1661 str = strdup(src->val.str);
1662 }
1663
1664 /* ignore errors, the value may not satisfy schema constraints */
Radek Krejci0b013302021-03-29 15:22:32 +02001665 rc = type->plugin->store(src->ctx, type, str, strlen(str), LYPLG_TYPE_STORE_DYNAMIC, src->format, src->prefix_data,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001666 LYD_HINT_DATA, xp_node->node->schema, &val, NULL, &err);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001667 ly_err_free(err);
1668 if (rc) {
1669 /* invalid value */
Radek Iša48460222021-03-02 15:18:32 +01001670 /* function store automaticaly dealloc value when fail */
Michal Vasko4c7763f2020-07-27 17:40:37 +02001671 goto fill;
1672 }
1673
Michal Vasko4c7763f2020-07-27 17:40:37 +02001674 /* use the canonized value */
1675 set_init(trg, src);
1676 trg->type = src->type;
1677 if (src->type == LYXP_SET_NUMBER) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001678 trg->val.num = strtold(type->plugin->print(src->ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL), &ptr);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001679 LY_CHECK_ERR_RET(ptr[0], LOGINT(src->ctx), LY_EINT);
1680 } else {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001681 trg->val.str = strdup(type->plugin->print(src->ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL));
Michal Vasko4c7763f2020-07-27 17:40:37 +02001682 }
1683 type->plugin->free(src->ctx, &val);
1684 return LY_SUCCESS;
1685
1686fill:
1687 /* no canonization needed/possible */
1688 set_fill_set(trg, src);
1689 return LY_SUCCESS;
1690}
1691
Michal Vasko03ff5a72019-09-11 13:49:33 +02001692/**
1693 * @brief Bubble sort @p set into XPath document order.
Michal Vasko49fec8e2022-05-24 10:28:33 +02001694 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001695 *
1696 * @param[in] set Set to sort.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001697 * @return How many times the whole set was traversed - 1 (if set was sorted, returns 0).
1698 */
1699static int
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001700set_sort(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001701{
1702 uint32_t i, j;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001703 int ret = 0, cmp;
Radek Krejci857189e2020-09-01 13:26:36 +02001704 ly_bool inverted, change;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001705 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001706 struct lyxp_set_node item;
1707 struct lyxp_set_hash_node hnode;
1708 uint64_t hash;
1709
Michal Vasko3cf8fbf2020-05-27 15:21:21 +02001710 if ((set->type != LYXP_SET_NODE_SET) || (set->used < 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001711 return 0;
1712 }
1713
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001714 /* find first top-level node to be used as anchor for positions */
Michal Vasko4a7d4d62021-12-13 17:05:06 +01001715 for (root = set->tree; root->parent; root = lyd_parent(root)) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001716 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001717
1718 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001719 if (set_assign_pos(set, root, set->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001720 return -1;
1721 }
1722
Michal Vasko88a9e802022-05-24 10:50:28 +02001723#ifndef NDEBUG
Michal Vasko03ff5a72019-09-11 13:49:33 +02001724 LOGDBG(LY_LDGXPATH, "SORT BEGIN");
1725 print_set_debug(set);
Michal Vasko88a9e802022-05-24 10:50:28 +02001726#endif
Michal Vasko03ff5a72019-09-11 13:49:33 +02001727
1728 for (i = 0; i < set->used; ++i) {
1729 inverted = 0;
1730 change = 0;
1731
1732 for (j = 1; j < set->used - i; ++j) {
1733 /* compare node positions */
1734 if (inverted) {
1735 cmp = set_sort_compare(&set->val.nodes[j], &set->val.nodes[j - 1]);
1736 } else {
1737 cmp = set_sort_compare(&set->val.nodes[j - 1], &set->val.nodes[j]);
1738 }
1739
1740 /* swap if needed */
1741 if ((inverted && (cmp < 0)) || (!inverted && (cmp > 0))) {
1742 change = 1;
1743
1744 item = set->val.nodes[j - 1];
1745 set->val.nodes[j - 1] = set->val.nodes[j];
1746 set->val.nodes[j] = item;
1747 } else {
1748 /* whether node_pos1 should be smaller than node_pos2 or the other way around */
1749 inverted = !inverted;
1750 }
1751 }
1752
1753 ++ret;
1754
1755 if (!change) {
1756 break;
1757 }
1758 }
1759
Michal Vasko88a9e802022-05-24 10:50:28 +02001760#ifndef NDEBUG
Michal Vasko03ff5a72019-09-11 13:49:33 +02001761 LOGDBG(LY_LDGXPATH, "SORT END %d", ret);
1762 print_set_debug(set);
Michal Vasko88a9e802022-05-24 10:50:28 +02001763#endif
Michal Vasko03ff5a72019-09-11 13:49:33 +02001764
1765 /* check node hashes */
1766 if (set->used >= LYD_HT_MIN_ITEMS) {
1767 assert(set->ht);
1768 for (i = 0; i < set->used; ++i) {
1769 hnode.node = set->val.nodes[i].node;
1770 hnode.type = set->val.nodes[i].type;
1771
1772 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
1773 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
1774 hash = dict_hash_multi(hash, NULL, 0);
1775
1776 assert(!lyht_find(set->ht, &hnode, hash, NULL));
1777 }
1778 }
1779
1780 return ret - 1;
1781}
1782
Michal Vasko03ff5a72019-09-11 13:49:33 +02001783/**
1784 * @brief Merge 2 sorted sets into one.
1785 *
1786 * @param[in,out] trg Set to merge into. Duplicates are removed.
1787 * @param[in] src Set to be merged into @p trg. It is cast to #LYXP_SET_EMPTY on success.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001788 * @return LY_ERR
1789 */
1790static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001791set_sorted_merge(struct lyxp_set *trg, struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001792{
1793 uint32_t i, j, k, count, dup_count;
1794 int cmp;
1795 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001796
Michal Vaskod3678892020-05-21 10:06:58 +02001797 if ((trg->type != LYXP_SET_NODE_SET) || (src->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001798 return LY_EINVAL;
1799 }
1800
Michal Vaskod3678892020-05-21 10:06:58 +02001801 if (!src->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001802 return LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02001803 } else if (!trg->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001804 set_fill_set(trg, src);
Michal Vaskod3678892020-05-21 10:06:58 +02001805 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001806 return LY_SUCCESS;
1807 }
1808
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001809 /* find first top-level node to be used as anchor for positions */
Michal Vasko0143b682021-12-13 17:13:09 +01001810 for (root = trg->tree; root->parent; root = lyd_parent(root)) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001811 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001812
1813 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001814 if (set_assign_pos(trg, root, trg->root_type) || set_assign_pos(src, root, src->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001815 return LY_EINT;
1816 }
1817
1818#ifndef NDEBUG
1819 LOGDBG(LY_LDGXPATH, "MERGE target");
1820 print_set_debug(trg);
1821 LOGDBG(LY_LDGXPATH, "MERGE source");
1822 print_set_debug(src);
1823#endif
1824
1825 /* make memory for the merge (duplicates are not detected yet, so space
1826 * will likely be wasted on them, too bad) */
1827 if (trg->size - trg->used < src->used) {
1828 trg->size = trg->used + src->used;
1829
1830 trg->val.nodes = ly_realloc(trg->val.nodes, trg->size * sizeof *trg->val.nodes);
1831 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx), LY_EMEM);
1832 }
1833
1834 i = 0;
1835 j = 0;
1836 count = 0;
1837 dup_count = 0;
1838 do {
1839 cmp = set_sort_compare(&src->val.nodes[i], &trg->val.nodes[j]);
1840 if (!cmp) {
1841 if (!count) {
1842 /* duplicate, just skip it */
1843 ++i;
1844 ++j;
1845 } else {
1846 /* we are copying something already, so let's copy the duplicate too,
1847 * we are hoping that afterwards there are some more nodes to
1848 * copy and this way we can copy them all together */
1849 ++count;
1850 ++dup_count;
1851 ++i;
1852 ++j;
1853 }
1854 } else if (cmp < 0) {
1855 /* inserting src node into trg, just remember it for now */
1856 ++count;
1857 ++i;
1858
1859 /* insert the hash now */
1860 set_insert_node_hash(trg, src->val.nodes[i - 1].node, src->val.nodes[i - 1].type);
1861 } else if (count) {
1862copy_nodes:
1863 /* time to actually copy the nodes, we have found the largest block of nodes */
1864 memmove(&trg->val.nodes[j + (count - dup_count)],
1865 &trg->val.nodes[j],
1866 (trg->used - j) * sizeof *trg->val.nodes);
1867 memcpy(&trg->val.nodes[j - dup_count], &src->val.nodes[i - count], count * sizeof *src->val.nodes);
1868
1869 trg->used += count - dup_count;
1870 /* do not change i, except the copying above, we are basically doing exactly what is in the else branch below */
1871 j += count - dup_count;
1872
1873 count = 0;
1874 dup_count = 0;
1875 } else {
1876 ++j;
1877 }
1878 } while ((i < src->used) && (j < trg->used));
1879
1880 if ((i < src->used) || count) {
1881 /* insert all the hashes first */
1882 for (k = i; k < src->used; ++k) {
1883 set_insert_node_hash(trg, src->val.nodes[k].node, src->val.nodes[k].type);
1884 }
1885
1886 /* loop ended, but we need to copy something at trg end */
1887 count += src->used - i;
1888 i = src->used;
1889 goto copy_nodes;
1890 }
1891
1892 /* we are inserting hashes before the actual node insert, which causes
1893 * situations when there were initially not enough items for a hash table,
1894 * but even after some were inserted, hash table was not created (during
1895 * insertion the number of items is not updated yet) */
1896 if (!trg->ht && (trg->used >= LYD_HT_MIN_ITEMS)) {
1897 set_insert_node_hash(trg, NULL, 0);
1898 }
1899
1900#ifndef NDEBUG
1901 LOGDBG(LY_LDGXPATH, "MERGE result");
1902 print_set_debug(trg);
1903#endif
1904
Michal Vaskod3678892020-05-21 10:06:58 +02001905 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001906 return LY_SUCCESS;
1907}
1908
Michal Vasko14676352020-05-29 11:35:55 +02001909LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001910lyxp_check_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001911{
Michal Vasko004d3152020-06-11 19:59:22 +02001912 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001913 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001914 LOGVAL(ctx, LY_VCODE_XP_EOF);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001915 }
Michal Vasko14676352020-05-29 11:35:55 +02001916 return LY_EINCOMPLETE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001917 }
1918
Michal Vasko004d3152020-06-11 19:59:22 +02001919 if (want_tok && (exp->tokens[tok_idx] != want_tok)) {
Michal Vasko14676352020-05-29 11:35:55 +02001920 if (ctx) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02001921 LOGVAL(ctx, LY_VCODE_XP_INTOK2, lyxp_token2str(exp->tokens[tok_idx]),
1922 &exp->expr[exp->tok_pos[tok_idx]], lyxp_token2str(want_tok));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001923 }
Michal Vasko14676352020-05-29 11:35:55 +02001924 return LY_ENOT;
1925 }
1926
1927 return LY_SUCCESS;
1928}
1929
Michal Vasko004d3152020-06-11 19:59:22 +02001930LY_ERR
1931lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok)
1932{
1933 LY_CHECK_RET(lyxp_check_token(ctx, exp, *tok_idx, want_tok));
1934
1935 /* skip the token */
1936 ++(*tok_idx);
1937
1938 return LY_SUCCESS;
1939}
1940
Michal Vasko14676352020-05-29 11:35:55 +02001941/* just like lyxp_check_token() but tests for 2 tokens */
1942static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02001943exp_check_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok1,
Radek Krejci0f969882020-08-21 16:56:47 +02001944 enum lyxp_token want_tok2)
Michal Vasko14676352020-05-29 11:35:55 +02001945{
Michal Vasko004d3152020-06-11 19:59:22 +02001946 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001947 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001948 LOGVAL(ctx, LY_VCODE_XP_EOF);
Michal Vasko14676352020-05-29 11:35:55 +02001949 }
1950 return LY_EINCOMPLETE;
1951 }
1952
Michal Vasko004d3152020-06-11 19:59:22 +02001953 if ((exp->tokens[tok_idx] != want_tok1) && (exp->tokens[tok_idx] != want_tok2)) {
Michal Vasko14676352020-05-29 11:35:55 +02001954 if (ctx) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02001955 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[tok_idx]),
Michal Vasko0b468e62020-10-19 09:33:04 +02001956 &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko14676352020-05-29 11:35:55 +02001957 }
1958 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001959 }
1960
1961 return LY_SUCCESS;
1962}
1963
Michal Vasko4911eeb2021-06-28 11:23:05 +02001964LY_ERR
1965lyxp_next_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok1,
1966 enum lyxp_token want_tok2)
1967{
1968 LY_CHECK_RET(exp_check_token2(ctx, exp, *tok_idx, want_tok1, want_tok2));
1969
1970 /* skip the token */
1971 ++(*tok_idx);
1972
1973 return LY_SUCCESS;
1974}
1975
Michal Vasko03ff5a72019-09-11 13:49:33 +02001976/**
1977 * @brief Stack operation push on the repeat array.
1978 *
1979 * @param[in] exp Expression to use.
Michal Vasko004d3152020-06-11 19:59:22 +02001980 * @param[in] tok_idx Position in the expresion \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001981 * @param[in] repeat_op_idx Index from \p exp of the operator token. This value is pushed.
1982 */
1983static void
Michal Vasko004d3152020-06-11 19:59:22 +02001984exp_repeat_push(struct lyxp_expr *exp, uint16_t tok_idx, uint16_t repeat_op_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001985{
1986 uint16_t i;
1987
Michal Vasko004d3152020-06-11 19:59:22 +02001988 if (exp->repeat[tok_idx]) {
Radek Krejci1e008d22020-08-17 11:37:37 +02001989 for (i = 0; exp->repeat[tok_idx][i]; ++i) {}
Michal Vasko004d3152020-06-11 19:59:22 +02001990 exp->repeat[tok_idx] = realloc(exp->repeat[tok_idx], (i + 2) * sizeof *exp->repeat[tok_idx]);
1991 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1992 exp->repeat[tok_idx][i] = repeat_op_idx;
1993 exp->repeat[tok_idx][i + 1] = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001994 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02001995 exp->repeat[tok_idx] = calloc(2, sizeof *exp->repeat[tok_idx]);
1996 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1997 exp->repeat[tok_idx][0] = repeat_op_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001998 }
1999}
2000
2001/**
2002 * @brief Reparse Predicate. Logs directly on error.
2003 *
2004 * [7] Predicate ::= '[' Expr ']'
2005 *
2006 * @param[in] ctx Context for logging.
2007 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002008 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002009 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002010 * @return LY_ERR
2011 */
2012static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002013reparse_predicate(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002014{
2015 LY_ERR rc;
2016
Michal Vasko004d3152020-06-11 19:59:22 +02002017 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002018 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002019 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002020
aPiecekbf968d92021-05-27 14:35:05 +02002021 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002022 LY_CHECK_RET(rc);
2023
Michal Vasko004d3152020-06-11 19:59:22 +02002024 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002025 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002026 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002027
2028 return LY_SUCCESS;
2029}
2030
2031/**
2032 * @brief Reparse RelativeLocationPath. Logs directly on error.
2033 *
2034 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
2035 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
2036 * [6] NodeTest ::= NameTest | NodeType '(' ')'
2037 *
2038 * @param[in] ctx Context for logging.
2039 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002040 * @param[in] tok_idx Position in the expression \p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002041 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002042 * @return LY_ERR (LY_EINCOMPLETE on forward reference)
2043 */
2044static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002045reparse_relative_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002046{
2047 LY_ERR rc;
2048
Michal Vasko004d3152020-06-11 19:59:22 +02002049 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002050 LY_CHECK_RET(rc);
2051
2052 goto step;
2053 do {
2054 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002055 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002056
Michal Vasko004d3152020-06-11 19:59:22 +02002057 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002058 LY_CHECK_RET(rc);
2059step:
2060 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02002061 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002062 case LYXP_TOKEN_DOT:
Michal Vasko004d3152020-06-11 19:59:22 +02002063 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002064 break;
2065
2066 case LYXP_TOKEN_DDOT:
Michal Vasko004d3152020-06-11 19:59:22 +02002067 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002068 break;
2069
Michal Vasko49fec8e2022-05-24 10:28:33 +02002070 case LYXP_TOKEN_AXISNAME:
2071 ++(*tok_idx);
2072
2073 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_DCOLON);
2074 LY_CHECK_RET(rc);
2075
2076 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002077 case LYXP_TOKEN_AT:
Michal Vasko004d3152020-06-11 19:59:22 +02002078 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002079
Michal Vasko004d3152020-06-11 19:59:22 +02002080 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002081 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002082 if ((exp->tokens[*tok_idx] != LYXP_TOKEN_NAMETEST) && (exp->tokens[*tok_idx] != LYXP_TOKEN_NODETYPE)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02002083 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002084 return LY_EVALID;
2085 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02002086 if (exp->tokens[*tok_idx] == LYXP_TOKEN_NODETYPE) {
2087 goto reparse_nodetype;
2088 }
Radek Krejci0f969882020-08-21 16:56:47 +02002089 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002090 case LYXP_TOKEN_NAMETEST:
Michal Vasko004d3152020-06-11 19:59:22 +02002091 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002092 goto reparse_predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002093
2094 case LYXP_TOKEN_NODETYPE:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002095reparse_nodetype:
Michal Vasko004d3152020-06-11 19:59:22 +02002096 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002097
2098 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002099 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002100 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002101 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002102
2103 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002104 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002105 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002106 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002107
2108reparse_predicate:
2109 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002110 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
aPiecekbf968d92021-05-27 14:35:05 +02002111 rc = reparse_predicate(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002112 LY_CHECK_RET(rc);
2113 }
2114 break;
2115 default:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002116 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002117 return LY_EVALID;
2118 }
Michal Vasko004d3152020-06-11 19:59:22 +02002119 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02002120
2121 return LY_SUCCESS;
2122}
2123
2124/**
2125 * @brief Reparse AbsoluteLocationPath. Logs directly on error.
2126 *
2127 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
2128 *
2129 * @param[in] ctx Context for logging.
2130 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002131 * @param[in] tok_idx Position in the expression \p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002132 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002133 * @return LY_ERR
2134 */
2135static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002136reparse_absolute_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002137{
2138 LY_ERR rc;
2139
Michal Vasko004d3152020-06-11 19:59:22 +02002140 LY_CHECK_RET(exp_check_token2(ctx, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02002141
2142 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02002143 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002144 /* '/' */
Michal Vasko004d3152020-06-11 19:59:22 +02002145 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002146
Michal Vasko004d3152020-06-11 19:59:22 +02002147 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002148 return LY_SUCCESS;
2149 }
Michal Vasko004d3152020-06-11 19:59:22 +02002150 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002151 case LYXP_TOKEN_DOT:
2152 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002153 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002154 case LYXP_TOKEN_AT:
2155 case LYXP_TOKEN_NAMETEST:
2156 case LYXP_TOKEN_NODETYPE:
aPiecekbf968d92021-05-27 14:35:05 +02002157 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002158 LY_CHECK_RET(rc);
Radek Krejci0f969882020-08-21 16:56:47 +02002159 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002160 default:
2161 break;
2162 }
2163
Michal Vasko03ff5a72019-09-11 13:49:33 +02002164 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02002165 /* '//' RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002166 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002167
aPiecekbf968d92021-05-27 14:35:05 +02002168 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002169 LY_CHECK_RET(rc);
2170 }
2171
2172 return LY_SUCCESS;
2173}
2174
2175/**
2176 * @brief Reparse FunctionCall. Logs directly on error.
2177 *
2178 * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
2179 *
2180 * @param[in] ctx Context for logging.
2181 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002182 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002183 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002184 * @return LY_ERR
2185 */
2186static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002187reparse_function_call(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002188{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002189 int8_t min_arg_count = -1;
2190 uint32_t arg_count, max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002191 uint16_t func_tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002192 LY_ERR rc;
2193
Michal Vasko004d3152020-06-11 19:59:22 +02002194 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_FUNCNAME);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002195 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002196 func_tok_idx = *tok_idx;
2197 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002198 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02002199 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002200 min_arg_count = 1;
2201 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002202 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002203 min_arg_count = 1;
2204 max_arg_count = 1;
2205 }
2206 break;
2207 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02002208 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002209 min_arg_count = 1;
2210 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002211 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002212 min_arg_count = 0;
2213 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002214 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002215 min_arg_count = 0;
2216 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002217 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002218 min_arg_count = 0;
2219 max_arg_count = 0;
2220 }
2221 break;
2222 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02002223 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002224 min_arg_count = 1;
2225 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002226 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002227 min_arg_count = 0;
2228 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002229 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002230 min_arg_count = 1;
2231 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002232 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002233 min_arg_count = 1;
2234 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002235 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002236 min_arg_count = 1;
2237 max_arg_count = 1;
2238 }
2239 break;
2240 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02002241 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002242 min_arg_count = 2;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002243 max_arg_count = UINT32_MAX;
Michal Vasko004d3152020-06-11 19:59:22 +02002244 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002245 min_arg_count = 0;
2246 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002247 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002248 min_arg_count = 0;
2249 max_arg_count = 1;
2250 }
2251 break;
2252 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02002253 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002254 min_arg_count = 1;
2255 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002256 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002257 min_arg_count = 1;
2258 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002259 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002260 min_arg_count = 0;
2261 max_arg_count = 0;
2262 }
2263 break;
2264 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02002265 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002266 min_arg_count = 2;
2267 max_arg_count = 2;
Michal Vasko004d3152020-06-11 19:59:22 +02002268 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002269 min_arg_count = 0;
2270 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002271 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002272 min_arg_count = 2;
2273 max_arg_count = 2;
2274 }
2275 break;
2276 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02002277 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002278 min_arg_count = 2;
2279 max_arg_count = 3;
Michal Vasko004d3152020-06-11 19:59:22 +02002280 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002281 min_arg_count = 3;
2282 max_arg_count = 3;
2283 }
2284 break;
2285 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02002286 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002287 min_arg_count = 0;
2288 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002289 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002290 min_arg_count = 1;
2291 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002292 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002293 min_arg_count = 2;
2294 max_arg_count = 2;
2295 }
2296 break;
2297 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02002298 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002299 min_arg_count = 2;
2300 max_arg_count = 2;
2301 }
2302 break;
2303 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02002304 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002305 min_arg_count = 2;
2306 max_arg_count = 2;
2307 }
2308 break;
2309 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02002310 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002311 min_arg_count = 0;
2312 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002313 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002314 min_arg_count = 0;
2315 max_arg_count = 1;
2316 }
2317 break;
2318 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02002319 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002320 min_arg_count = 0;
2321 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002322 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002323 min_arg_count = 2;
2324 max_arg_count = 2;
2325 }
2326 break;
2327 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02002328 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002329 min_arg_count = 2;
2330 max_arg_count = 2;
2331 }
2332 break;
2333 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02002334 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002335 min_arg_count = 2;
2336 max_arg_count = 2;
2337 }
2338 break;
2339 }
2340 if (min_arg_count == -1) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002341 LOGVAL(ctx, LY_VCODE_XP_INFUNC, exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002342 return LY_EINVAL;
2343 }
Michal Vasko004d3152020-06-11 19:59:22 +02002344 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002345
2346 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002347 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002348 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002349 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002350
2351 /* ( Expr ( ',' Expr )* )? */
2352 arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002353 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002354 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002355 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002356 ++arg_count;
aPiecekbf968d92021-05-27 14:35:05 +02002357 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002358 LY_CHECK_RET(rc);
2359 }
Michal Vasko004d3152020-06-11 19:59:22 +02002360 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
2361 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002362
2363 ++arg_count;
aPiecekbf968d92021-05-27 14:35:05 +02002364 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002365 LY_CHECK_RET(rc);
2366 }
2367
2368 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002369 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002370 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002371 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002372
Radek Krejci857189e2020-09-01 13:26:36 +02002373 if ((arg_count < (uint32_t)min_arg_count) || (arg_count > max_arg_count)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002374 LOGVAL(ctx, LY_VCODE_XP_INARGCOUNT, arg_count, exp->tok_len[func_tok_idx], &exp->expr[exp->tok_pos[func_tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002375 return LY_EVALID;
2376 }
2377
2378 return LY_SUCCESS;
2379}
2380
2381/**
2382 * @brief Reparse PathExpr. Logs directly on error.
2383 *
2384 * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate*
2385 * | PrimaryExpr Predicate* '/' RelativeLocationPath
2386 * | PrimaryExpr Predicate* '//' RelativeLocationPath
2387 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
aPiecekfba75362021-10-07 12:39:48 +02002388 * [8] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02002389 *
2390 * @param[in] ctx Context for logging.
2391 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002392 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002393 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002394 * @return LY_ERR
2395 */
2396static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002397reparse_path_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002398{
2399 LY_ERR rc;
2400
Michal Vasko004d3152020-06-11 19:59:22 +02002401 if (lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko14676352020-05-29 11:35:55 +02002402 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002403 }
2404
Michal Vasko004d3152020-06-11 19:59:22 +02002405 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002406 case LYXP_TOKEN_PAR1:
2407 /* '(' Expr ')' Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002408 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002409
aPiecekbf968d92021-05-27 14:35:05 +02002410 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002411 LY_CHECK_RET(rc);
2412
Michal Vasko004d3152020-06-11 19:59:22 +02002413 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002414 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002415 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002416 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002417 case LYXP_TOKEN_DOT:
2418 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002419 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002420 case LYXP_TOKEN_AT:
2421 case LYXP_TOKEN_NAMETEST:
2422 case LYXP_TOKEN_NODETYPE:
2423 /* RelativeLocationPath */
aPiecekbf968d92021-05-27 14:35:05 +02002424 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002425 LY_CHECK_RET(rc);
2426 break;
aPiecekfba75362021-10-07 12:39:48 +02002427 case LYXP_TOKEN_VARREF:
2428 /* VariableReference */
2429 ++(*tok_idx);
2430 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002431 case LYXP_TOKEN_FUNCNAME:
2432 /* FunctionCall */
aPiecekbf968d92021-05-27 14:35:05 +02002433 rc = reparse_function_call(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002434 LY_CHECK_RET(rc);
2435 goto predicate;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002436 case LYXP_TOKEN_OPER_PATH:
2437 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002438 /* AbsoluteLocationPath */
aPiecekbf968d92021-05-27 14:35:05 +02002439 rc = reparse_absolute_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002440 LY_CHECK_RET(rc);
2441 break;
2442 case LYXP_TOKEN_LITERAL:
2443 /* Literal */
Michal Vasko004d3152020-06-11 19:59:22 +02002444 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002445 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002446 case LYXP_TOKEN_NUMBER:
2447 /* Number */
Michal Vasko004d3152020-06-11 19:59:22 +02002448 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002449 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002450 default:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002451 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002452 return LY_EVALID;
2453 }
2454
2455 return LY_SUCCESS;
2456
2457predicate:
2458 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002459 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
aPiecekbf968d92021-05-27 14:35:05 +02002460 rc = reparse_predicate(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002461 LY_CHECK_RET(rc);
2462 }
2463
2464 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002465 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002466
2467 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002468 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002469
aPiecekbf968d92021-05-27 14:35:05 +02002470 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002471 LY_CHECK_RET(rc);
2472 }
2473
2474 return LY_SUCCESS;
2475}
2476
2477/**
2478 * @brief Reparse UnaryExpr. Logs directly on error.
2479 *
2480 * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr
2481 * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
2482 *
2483 * @param[in] ctx Context for logging.
2484 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002485 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002486 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002487 * @return LY_ERR
2488 */
2489static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002490reparse_unary_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002491{
2492 uint16_t prev_exp;
2493 LY_ERR rc;
2494
2495 /* ('-')* */
Michal Vasko004d3152020-06-11 19:59:22 +02002496 prev_exp = *tok_idx;
Michal Vasko69730152020-10-09 16:30:07 +02002497 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2498 (exp->expr[exp->tok_pos[*tok_idx]] == '-')) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002499 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNARY);
Michal Vasko004d3152020-06-11 19:59:22 +02002500 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002501 }
2502
2503 /* PathExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002504 prev_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002505 rc = reparse_path_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002506 LY_CHECK_RET(rc);
2507
2508 /* ('|' PathExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002509 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_UNI)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002510 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNION);
Michal Vasko004d3152020-06-11 19:59:22 +02002511 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002512
aPiecekbf968d92021-05-27 14:35:05 +02002513 rc = reparse_path_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002514 LY_CHECK_RET(rc);
2515 }
2516
2517 return LY_SUCCESS;
2518}
2519
2520/**
2521 * @brief Reparse AdditiveExpr. Logs directly on error.
2522 *
2523 * [15] AdditiveExpr ::= MultiplicativeExpr
2524 * | AdditiveExpr '+' MultiplicativeExpr
2525 * | AdditiveExpr '-' MultiplicativeExpr
2526 * [16] MultiplicativeExpr ::= UnaryExpr
2527 * | MultiplicativeExpr '*' UnaryExpr
2528 * | MultiplicativeExpr 'div' UnaryExpr
2529 * | MultiplicativeExpr 'mod' UnaryExpr
2530 *
2531 * @param[in] ctx Context for logging.
2532 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002533 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002534 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002535 * @return LY_ERR
2536 */
2537static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002538reparse_additive_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002539{
2540 uint16_t prev_add_exp, prev_mul_exp;
2541 LY_ERR rc;
2542
Michal Vasko004d3152020-06-11 19:59:22 +02002543 prev_add_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002544 goto reparse_multiplicative_expr;
2545
2546 /* ('+' / '-' MultiplicativeExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002547 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2548 ((exp->expr[exp->tok_pos[*tok_idx]] == '+') || (exp->expr[exp->tok_pos[*tok_idx]] == '-'))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002549 exp_repeat_push(exp, prev_add_exp, LYXP_EXPR_ADDITIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002550 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002551
2552reparse_multiplicative_expr:
2553 /* UnaryExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002554 prev_mul_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002555 rc = reparse_unary_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002556 LY_CHECK_RET(rc);
2557
2558 /* ('*' / 'div' / 'mod' UnaryExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002559 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2560 ((exp->expr[exp->tok_pos[*tok_idx]] == '*') || (exp->tok_len[*tok_idx] == 3))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002561 exp_repeat_push(exp, prev_mul_exp, LYXP_EXPR_MULTIPLICATIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002562 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002563
aPiecekbf968d92021-05-27 14:35:05 +02002564 rc = reparse_unary_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002565 LY_CHECK_RET(rc);
2566 }
2567 }
2568
2569 return LY_SUCCESS;
2570}
2571
2572/**
2573 * @brief Reparse EqualityExpr. Logs directly on error.
2574 *
2575 * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
2576 * | EqualityExpr '!=' RelationalExpr
2577 * [14] RelationalExpr ::= AdditiveExpr
2578 * | RelationalExpr '<' AdditiveExpr
2579 * | RelationalExpr '>' AdditiveExpr
2580 * | RelationalExpr '<=' AdditiveExpr
2581 * | RelationalExpr '>=' AdditiveExpr
2582 *
2583 * @param[in] ctx Context for logging.
2584 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002585 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002586 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002587 * @return LY_ERR
2588 */
2589static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002590reparse_equality_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002591{
2592 uint16_t prev_eq_exp, prev_rel_exp;
2593 LY_ERR rc;
2594
Michal Vasko004d3152020-06-11 19:59:22 +02002595 prev_eq_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002596 goto reparse_additive_expr;
2597
2598 /* ('=' / '!=' RelationalExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002599 while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_EQUAL, LYXP_TOKEN_OPER_NEQUAL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002600 exp_repeat_push(exp, prev_eq_exp, LYXP_EXPR_EQUALITY);
Michal Vasko004d3152020-06-11 19:59:22 +02002601 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002602
2603reparse_additive_expr:
2604 /* AdditiveExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002605 prev_rel_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002606 rc = reparse_additive_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002607 LY_CHECK_RET(rc);
2608
2609 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002610 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_COMP)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002611 exp_repeat_push(exp, prev_rel_exp, LYXP_EXPR_RELATIONAL);
Michal Vasko004d3152020-06-11 19:59:22 +02002612 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002613
aPiecekbf968d92021-05-27 14:35:05 +02002614 rc = reparse_additive_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002615 LY_CHECK_RET(rc);
2616 }
2617 }
2618
2619 return LY_SUCCESS;
2620}
2621
2622/**
2623 * @brief Reparse OrExpr. Logs directly on error.
2624 *
2625 * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
2626 * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
2627 *
2628 * @param[in] ctx Context for logging.
2629 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002630 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002631 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002632 * @return LY_ERR
2633 */
2634static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002635reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002636{
2637 uint16_t prev_or_exp, prev_and_exp;
2638 LY_ERR rc;
2639
aPiecekbf968d92021-05-27 14:35:05 +02002640 ++depth;
2641 LY_CHECK_ERR_RET(depth > LYXP_MAX_BLOCK_DEPTH, LOGVAL(ctx, LY_VCODE_XP_DEPTH), LY_EINVAL);
2642
Michal Vasko004d3152020-06-11 19:59:22 +02002643 prev_or_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002644 goto reparse_equality_expr;
2645
2646 /* ('or' AndExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002647 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_LOG) && (exp->tok_len[*tok_idx] == 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002648 exp_repeat_push(exp, prev_or_exp, LYXP_EXPR_OR);
Michal Vasko004d3152020-06-11 19:59:22 +02002649 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002650
2651reparse_equality_expr:
2652 /* EqualityExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002653 prev_and_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002654 rc = reparse_equality_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002655 LY_CHECK_RET(rc);
2656
2657 /* ('and' EqualityExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002658 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_LOG) && (exp->tok_len[*tok_idx] == 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002659 exp_repeat_push(exp, prev_and_exp, LYXP_EXPR_AND);
Michal Vasko004d3152020-06-11 19:59:22 +02002660 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002661
aPiecekbf968d92021-05-27 14:35:05 +02002662 rc = reparse_equality_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002663 LY_CHECK_RET(rc);
2664 }
2665 }
2666
2667 return LY_SUCCESS;
2668}
Radek Krejcib1646a92018-11-02 16:08:26 +01002669
2670/**
2671 * @brief Parse NCName.
2672 *
2673 * @param[in] ncname Name to parse.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002674 * @return Length of @p ncname valid bytes.
Radek Krejcib1646a92018-11-02 16:08:26 +01002675 */
Michal Vasko49fec8e2022-05-24 10:28:33 +02002676static ssize_t
Radek Krejcib1646a92018-11-02 16:08:26 +01002677parse_ncname(const char *ncname)
2678{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002679 uint32_t uc;
Radek Krejcid4270262019-01-07 15:07:25 +01002680 size_t size;
Michal Vasko49fec8e2022-05-24 10:28:33 +02002681 ssize_t len = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002682
2683 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), 0);
2684 if (!is_xmlqnamestartchar(uc) || (uc == ':')) {
2685 return len;
2686 }
2687
2688 do {
2689 len += size;
Radek Krejci9a564c92019-01-07 14:53:57 +01002690 if (!*ncname) {
2691 break;
2692 }
Radek Krejcid4270262019-01-07 15:07:25 +01002693 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), -len);
Radek Krejcib1646a92018-11-02 16:08:26 +01002694 } while (is_xmlqnamechar(uc) && (uc != ':'));
2695
2696 return len;
2697}
2698
2699/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02002700 * @brief Add @p token into the expression @p exp.
Radek Krejcib1646a92018-11-02 16:08:26 +01002701 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02002702 * @param[in] ctx Context for logging.
Radek Krejcib1646a92018-11-02 16:08:26 +01002703 * @param[in] exp Expression to use.
2704 * @param[in] token Token to add.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002705 * @param[in] tok_pos Token position in the XPath expression.
Radek Krejcib1646a92018-11-02 16:08:26 +01002706 * @param[in] tok_len Token length in the XPath expression.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002707 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +01002708 */
2709static LY_ERR
Michal Vasko14676352020-05-29 11:35:55 +02002710exp_add_token(const struct ly_ctx *ctx, struct lyxp_expr *exp, enum lyxp_token token, uint16_t tok_pos, uint16_t tok_len)
Radek Krejcib1646a92018-11-02 16:08:26 +01002711{
2712 uint32_t prev;
2713
2714 if (exp->used == exp->size) {
2715 prev = exp->size;
2716 exp->size += LYXP_EXPR_SIZE_STEP;
2717 if (prev > exp->size) {
2718 LOGINT(ctx);
2719 return LY_EINT;
2720 }
2721
2722 exp->tokens = ly_realloc(exp->tokens, exp->size * sizeof *exp->tokens);
2723 LY_CHECK_ERR_RET(!exp->tokens, LOGMEM(ctx), LY_EMEM);
2724 exp->tok_pos = ly_realloc(exp->tok_pos, exp->size * sizeof *exp->tok_pos);
2725 LY_CHECK_ERR_RET(!exp->tok_pos, LOGMEM(ctx), LY_EMEM);
2726 exp->tok_len = ly_realloc(exp->tok_len, exp->size * sizeof *exp->tok_len);
2727 LY_CHECK_ERR_RET(!exp->tok_len, LOGMEM(ctx), LY_EMEM);
2728 }
2729
2730 exp->tokens[exp->used] = token;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002731 exp->tok_pos[exp->used] = tok_pos;
Radek Krejcib1646a92018-11-02 16:08:26 +01002732 exp->tok_len[exp->used] = tok_len;
2733 ++exp->used;
2734 return LY_SUCCESS;
2735}
2736
2737void
Michal Vasko14676352020-05-29 11:35:55 +02002738lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr)
Radek Krejcib1646a92018-11-02 16:08:26 +01002739{
2740 uint16_t i;
2741
2742 if (!expr) {
2743 return;
2744 }
2745
2746 lydict_remove(ctx, expr->expr);
2747 free(expr->tokens);
2748 free(expr->tok_pos);
2749 free(expr->tok_len);
2750 if (expr->repeat) {
2751 for (i = 0; i < expr->used; ++i) {
2752 free(expr->repeat[i]);
2753 }
2754 }
2755 free(expr->repeat);
2756 free(expr);
2757}
2758
Michal Vasko49fec8e2022-05-24 10:28:33 +02002759/**
2760 * @brief Parse Axis name.
2761 *
2762 * @param[in] str String to parse.
2763 * @param[in] str_len Length of @p str.
2764 * @return LY_SUCCESS if an axis.
2765 * @return LY_ENOT otherwise.
2766 */
2767static LY_ERR
2768expr_parse_axis(const char *str, size_t str_len)
2769{
2770 switch (str_len) {
2771 case 4:
2772 if (!strncmp("self", str, str_len)) {
2773 return LY_SUCCESS;
2774 }
2775 break;
2776 case 5:
2777 if (!strncmp("child", str, str_len)) {
2778 return LY_SUCCESS;
2779 }
2780 break;
2781 case 6:
2782 if (!strncmp("parent", str, str_len)) {
2783 return LY_SUCCESS;
2784 }
2785 break;
2786 case 8:
2787 if (!strncmp("ancestor", str, str_len)) {
2788 return LY_SUCCESS;
2789 }
2790 break;
2791 case 9:
2792 if (!strncmp("attribute", str, str_len)) {
2793 return LY_SUCCESS;
2794 } else if (!strncmp("following", str, str_len)) {
2795 return LY_SUCCESS;
2796 } else if (!strncmp("namespace", str, str_len)) {
2797 LOGERR(NULL, LY_EINVAL, "Axis \"namespace\" not supported.");
2798 return LY_ENOT;
2799 } else if (!strncmp("preceding", str, str_len)) {
2800 return LY_SUCCESS;
2801 }
2802 break;
2803 case 10:
2804 if (!strncmp("descendant", str, str_len)) {
2805 return LY_SUCCESS;
2806 }
2807 break;
2808 case 16:
2809 if (!strncmp("ancestor-or-self", str, str_len)) {
2810 return LY_SUCCESS;
2811 }
2812 break;
2813 case 17:
2814 if (!strncmp("following-sibling", str, str_len)) {
2815 return LY_SUCCESS;
2816 } else if (!strncmp("preceding-sibling", str, str_len)) {
2817 return LY_SUCCESS;
2818 }
2819 break;
2820 case 18:
2821 if (!strncmp("descendant-or-self", str, str_len)) {
2822 return LY_SUCCESS;
2823 }
2824 break;
2825 }
2826
2827 return LY_ENOT;
2828}
2829
Radek Krejcif03a9e22020-09-18 20:09:31 +02002830LY_ERR
2831lyxp_expr_parse(const struct ly_ctx *ctx, const char *expr_str, size_t expr_len, ly_bool reparse, struct lyxp_expr **expr_p)
Radek Krejcib1646a92018-11-02 16:08:26 +01002832{
Radek Krejcif03a9e22020-09-18 20:09:31 +02002833 LY_ERR ret = LY_SUCCESS;
2834 struct lyxp_expr *expr;
Radek Krejcid4270262019-01-07 15:07:25 +01002835 size_t parsed = 0, tok_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002836 enum lyxp_token tok_type;
Michal Vasko49fec8e2022-05-24 10:28:33 +02002837 ly_bool prev_func_check = 0, prev_ntype_check = 0, has_axis;
Michal Vasko004d3152020-06-11 19:59:22 +02002838 uint16_t tok_idx = 0;
Michal Vasko49fec8e2022-05-24 10:28:33 +02002839 ssize_t ncname_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002840
Radek Krejcif03a9e22020-09-18 20:09:31 +02002841 assert(expr_p);
2842
2843 if (!expr_str[0]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002844 LOGVAL(ctx, LY_VCODE_XP_EOF);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002845 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002846 }
2847
2848 if (!expr_len) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002849 expr_len = strlen(expr_str);
Michal Vasko004d3152020-06-11 19:59:22 +02002850 }
2851 if (expr_len > UINT16_MAX) {
Michal Vasko623ac7b2021-04-09 12:44:23 +02002852 LOGVAL(ctx, LYVE_XPATH, "XPath expression cannot be longer than %u characters.", UINT16_MAX);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002853 return LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002854 }
2855
2856 /* init lyxp_expr structure */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002857 expr = calloc(1, sizeof *expr);
2858 LY_CHECK_ERR_GOTO(!expr, LOGMEM(ctx); ret = LY_EMEM, error);
2859 LY_CHECK_GOTO(ret = lydict_insert(ctx, expr_str, expr_len, &expr->expr), error);
2860 expr->used = 0;
2861 expr->size = LYXP_EXPR_SIZE_START;
2862 expr->tokens = malloc(expr->size * sizeof *expr->tokens);
2863 LY_CHECK_ERR_GOTO(!expr->tokens, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002864
Radek Krejcif03a9e22020-09-18 20:09:31 +02002865 expr->tok_pos = malloc(expr->size * sizeof *expr->tok_pos);
2866 LY_CHECK_ERR_GOTO(!expr->tok_pos, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002867
Radek Krejcif03a9e22020-09-18 20:09:31 +02002868 expr->tok_len = malloc(expr->size * sizeof *expr->tok_len);
2869 LY_CHECK_ERR_GOTO(!expr->tok_len, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002870
Michal Vasko004d3152020-06-11 19:59:22 +02002871 /* make expr 0-terminated */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002872 expr_str = expr->expr;
Michal Vasko004d3152020-06-11 19:59:22 +02002873
Radek Krejcif03a9e22020-09-18 20:09:31 +02002874 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002875 ++parsed;
2876 }
2877
2878 do {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002879 if (expr_str[parsed] == '(') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002880
2881 /* '(' */
2882 tok_len = 1;
2883 tok_type = LYXP_TOKEN_PAR1;
2884
Michal Vasko49fec8e2022-05-24 10:28:33 +02002885 if (prev_ntype_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST) &&
2886 (((expr->tok_len[expr->used - 1] == 4) &&
2887 (!strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "node", 4) ||
2888 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "text", 4))) ||
2889 ((expr->tok_len[expr->used - 1] == 7) &&
2890 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "comment", 7)))) {
2891 /* it is NodeType after all */
2892 expr->tokens[expr->used - 1] = LYXP_TOKEN_NODETYPE;
2893
2894 prev_ntype_check = 0;
2895 prev_func_check = 0;
2896 } else if (prev_func_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST)) {
2897 /* it is FunctionName after all */
2898 expr->tokens[expr->used - 1] = LYXP_TOKEN_FUNCNAME;
2899
2900 prev_ntype_check = 0;
2901 prev_func_check = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002902 }
2903
Radek Krejcif03a9e22020-09-18 20:09:31 +02002904 } else if (expr_str[parsed] == ')') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002905
2906 /* ')' */
2907 tok_len = 1;
2908 tok_type = LYXP_TOKEN_PAR2;
2909
Radek Krejcif03a9e22020-09-18 20:09:31 +02002910 } else if (expr_str[parsed] == '[') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002911
2912 /* '[' */
2913 tok_len = 1;
2914 tok_type = LYXP_TOKEN_BRACK1;
2915
Radek Krejcif03a9e22020-09-18 20:09:31 +02002916 } else if (expr_str[parsed] == ']') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002917
2918 /* ']' */
2919 tok_len = 1;
2920 tok_type = LYXP_TOKEN_BRACK2;
2921
Radek Krejcif03a9e22020-09-18 20:09:31 +02002922 } else if (!strncmp(&expr_str[parsed], "..", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002923
2924 /* '..' */
2925 tok_len = 2;
2926 tok_type = LYXP_TOKEN_DDOT;
2927
Radek Krejcif03a9e22020-09-18 20:09:31 +02002928 } else if ((expr_str[parsed] == '.') && (!isdigit(expr_str[parsed + 1]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002929
2930 /* '.' */
2931 tok_len = 1;
2932 tok_type = LYXP_TOKEN_DOT;
2933
Radek Krejcif03a9e22020-09-18 20:09:31 +02002934 } else if (expr_str[parsed] == '@') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002935
2936 /* '@' */
2937 tok_len = 1;
2938 tok_type = LYXP_TOKEN_AT;
2939
Radek Krejcif03a9e22020-09-18 20:09:31 +02002940 } else if (expr_str[parsed] == ',') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002941
2942 /* ',' */
2943 tok_len = 1;
2944 tok_type = LYXP_TOKEN_COMMA;
2945
Radek Krejcif03a9e22020-09-18 20:09:31 +02002946 } else if (expr_str[parsed] == '\'') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002947
2948 /* Literal with ' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002949 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\''); ++tok_len) {}
2950 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Radek Krejci2efc45b2020-12-22 16:25:44 +01002951 LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002952 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002953 ++tok_len;
2954 tok_type = LYXP_TOKEN_LITERAL;
2955
Radek Krejcif03a9e22020-09-18 20:09:31 +02002956 } else if (expr_str[parsed] == '\"') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002957
2958 /* Literal with " */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002959 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\"'); ++tok_len) {}
2960 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Radek Krejci2efc45b2020-12-22 16:25:44 +01002961 LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002962 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002963 ++tok_len;
2964 tok_type = LYXP_TOKEN_LITERAL;
2965
Radek Krejcif03a9e22020-09-18 20:09:31 +02002966 } else if ((expr_str[parsed] == '.') || (isdigit(expr_str[parsed]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002967
2968 /* Number */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002969 for (tok_len = 0; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
2970 if (expr_str[parsed + tok_len] == '.') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002971 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002972 for ( ; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
Radek Krejcib1646a92018-11-02 16:08:26 +01002973 }
2974 tok_type = LYXP_TOKEN_NUMBER;
2975
aPiecekfba75362021-10-07 12:39:48 +02002976 } else if (expr_str[parsed] == '$') {
2977
2978 /* VariableReference */
2979 parsed++;
Michal Vasko49fec8e2022-05-24 10:28:33 +02002980 ncname_len = parse_ncname(&expr_str[parsed]);
aPiecekfba75362021-10-07 12:39:48 +02002981 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
2982 parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error);
2983 tok_len = ncname_len;
2984 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == ':',
2985 LOGVAL(ctx, LYVE_XPATH, "Variable with prefix is not supported."); ret = LY_EVALID,
2986 error);
2987 tok_type = LYXP_TOKEN_VARREF;
2988
Radek Krejcif03a9e22020-09-18 20:09:31 +02002989 } else if (expr_str[parsed] == '/') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002990
2991 /* Operator '/', '//' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002992 if (!strncmp(&expr_str[parsed], "//", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002993 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002994 tok_type = LYXP_TOKEN_OPER_RPATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002995 } else {
2996 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002997 tok_type = LYXP_TOKEN_OPER_PATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002998 }
Radek Krejcib1646a92018-11-02 16:08:26 +01002999
Radek Krejcif03a9e22020-09-18 20:09:31 +02003000 } else if (!strncmp(&expr_str[parsed], "!=", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003001
Michal Vasko3e48bf32020-06-01 08:39:07 +02003002 /* Operator '!=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01003003 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003004 tok_type = LYXP_TOKEN_OPER_NEQUAL;
3005
Radek Krejcif03a9e22020-09-18 20:09:31 +02003006 } else if (!strncmp(&expr_str[parsed], "<=", 2) || !strncmp(&expr_str[parsed], ">=", 2)) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02003007
3008 /* Operator '<=', '>=' */
3009 tok_len = 2;
3010 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01003011
Radek Krejcif03a9e22020-09-18 20:09:31 +02003012 } else if (expr_str[parsed] == '|') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003013
3014 /* Operator '|' */
3015 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003016 tok_type = LYXP_TOKEN_OPER_UNI;
Radek Krejcib1646a92018-11-02 16:08:26 +01003017
Radek Krejcif03a9e22020-09-18 20:09:31 +02003018 } else if ((expr_str[parsed] == '+') || (expr_str[parsed] == '-')) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003019
3020 /* Operator '+', '-' */
3021 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003022 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01003023
Radek Krejcif03a9e22020-09-18 20:09:31 +02003024 } else if (expr_str[parsed] == '=') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003025
Michal Vasko3e48bf32020-06-01 08:39:07 +02003026 /* Operator '=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01003027 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003028 tok_type = LYXP_TOKEN_OPER_EQUAL;
3029
Radek Krejcif03a9e22020-09-18 20:09:31 +02003030 } else if ((expr_str[parsed] == '<') || (expr_str[parsed] == '>')) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02003031
3032 /* Operator '<', '>' */
3033 tok_len = 1;
3034 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01003035
Michal Vasko69730152020-10-09 16:30:07 +02003036 } else if (expr->used && (expr->tokens[expr->used - 1] != LYXP_TOKEN_AT) &&
3037 (expr->tokens[expr->used - 1] != LYXP_TOKEN_PAR1) &&
3038 (expr->tokens[expr->used - 1] != LYXP_TOKEN_BRACK1) &&
3039 (expr->tokens[expr->used - 1] != LYXP_TOKEN_COMMA) &&
3040 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_LOG) &&
3041 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_EQUAL) &&
3042 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_NEQUAL) &&
3043 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_COMP) &&
3044 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_MATH) &&
3045 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_UNI) &&
3046 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_PATH) &&
3047 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_RPATH)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003048
3049 /* Operator '*', 'or', 'and', 'mod', or 'div' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003050 if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003051 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003052 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01003053
Radek Krejcif03a9e22020-09-18 20:09:31 +02003054 } else if (!strncmp(&expr_str[parsed], "or", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003055 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003056 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01003057
Radek Krejcif03a9e22020-09-18 20:09:31 +02003058 } else if (!strncmp(&expr_str[parsed], "and", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003059 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003060 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01003061
Radek Krejcif03a9e22020-09-18 20:09:31 +02003062 } else if (!strncmp(&expr_str[parsed], "mod", 3) || !strncmp(&expr_str[parsed], "div", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003063 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003064 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01003065
Michal Vasko49fec8e2022-05-24 10:28:33 +02003066 } else if (prev_ntype_check || prev_func_check) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003067 LOGVAL(ctx, LYVE_XPATH, "Invalid character 0x%x ('%c'), perhaps \"%.*s\" is supposed to be a function call.",
Michal Vasko69730152020-10-09 16:30:07 +02003068 expr_str[parsed], expr_str[parsed], expr->tok_len[expr->used - 1], &expr->expr[expr->tok_pos[expr->used - 1]]);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003069 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01003070 goto error;
3071 } else {
Michal Vasko774ce402021-04-14 15:35:06 +02003072 LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed], parsed + 1, expr_str);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003073 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01003074 goto error;
3075 }
Radek Krejcib1646a92018-11-02 16:08:26 +01003076 } else {
3077
Michal Vasko49fec8e2022-05-24 10:28:33 +02003078 /* (AxisName '::')? ((NCName ':')? '*' | QName) or NodeType/FunctionName */
3079 if (expr_str[parsed] == '*') {
3080 ncname_len = 1;
3081 } else {
3082 ncname_len = parse_ncname(&expr_str[parsed]);
3083 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
3084 parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error);
3085 }
Radek Krejcib1646a92018-11-02 16:08:26 +01003086 tok_len = ncname_len;
3087
Michal Vasko49fec8e2022-05-24 10:28:33 +02003088 has_axis = 0;
3089 if (!strncmp(&expr_str[parsed + tok_len], "::", 2)) {
3090 /* axis */
3091 LY_CHECK_ERR_GOTO(expr_parse_axis(&expr_str[parsed], ncname_len),
3092 LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed], parsed + 1, expr_str); ret = LY_EVALID, error);
3093 tok_type = LYXP_TOKEN_AXISNAME;
3094
3095 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
3096 parsed += tok_len;
3097
3098 /* '::' */
3099 tok_len = 2;
3100 tok_type = LYXP_TOKEN_DCOLON;
3101
3102 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
3103 parsed += tok_len;
3104
3105 if (expr_str[parsed] == '*') {
3106 ncname_len = 1;
3107 } else {
3108 ncname_len = parse_ncname(&expr_str[parsed]);
3109 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
3110 parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error);
3111 }
3112 tok_len = ncname_len;
3113
3114 has_axis = 1;
3115 }
3116
Radek Krejcif03a9e22020-09-18 20:09:31 +02003117 if (expr_str[parsed + tok_len] == ':') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003118 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003119 if (expr_str[parsed + tok_len] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003120 ++tok_len;
3121 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02003122 ncname_len = parse_ncname(&expr_str[parsed + tok_len]);
Michal Vaskoe2be5462021-08-04 10:49:42 +02003123 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
Michal Vasko774ce402021-04-14 15:35:06 +02003124 parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01003125 tok_len += ncname_len;
3126 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02003127 /* remove old flags to prevent ambiguities */
3128 prev_ntype_check = 0;
3129 prev_func_check = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01003130 tok_type = LYXP_TOKEN_NAMETEST;
3131 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02003132 /* if not '*', there is no prefix so it can still be NodeType/FunctionName, we can't finally decide now */
3133 prev_ntype_check = (expr_str[parsed] == '*') ? 0 : 1;
3134 prev_func_check = (prev_ntype_check && !has_axis) ? 1 : 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01003135 tok_type = LYXP_TOKEN_NAMETEST;
3136 }
3137 }
3138
3139 /* store the token, move on to the next one */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003140 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01003141 parsed += tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003142 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003143 ++parsed;
3144 }
3145
Radek Krejcif03a9e22020-09-18 20:09:31 +02003146 } while (expr_str[parsed]);
Radek Krejcib1646a92018-11-02 16:08:26 +01003147
Michal Vasko004d3152020-06-11 19:59:22 +02003148 if (reparse) {
3149 /* prealloc repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003150 expr->repeat = calloc(expr->size, sizeof *expr->repeat);
3151 LY_CHECK_ERR_GOTO(!expr->repeat, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01003152
Michal Vasko004d3152020-06-11 19:59:22 +02003153 /* fill repeat */
aPiecekbf968d92021-05-27 14:35:05 +02003154 LY_CHECK_ERR_GOTO(reparse_or_expr(ctx, expr, &tok_idx, 0), ret = LY_EVALID, error);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003155 if (expr->used > tok_idx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003156 LOGVAL(ctx, LYVE_XPATH, "Unparsed characters \"%s\" left at the end of an XPath expression.",
Michal Vasko69730152020-10-09 16:30:07 +02003157 &expr->expr[expr->tok_pos[tok_idx]]);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003158 ret = LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02003159 goto error;
3160 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003161 }
3162
Radek Krejcif03a9e22020-09-18 20:09:31 +02003163 print_expr_struct_debug(expr);
3164 *expr_p = expr;
3165 return LY_SUCCESS;
Radek Krejcib1646a92018-11-02 16:08:26 +01003166
3167error:
Radek Krejcif03a9e22020-09-18 20:09:31 +02003168 lyxp_expr_free(ctx, expr);
3169 return ret;
Radek Krejcib1646a92018-11-02 16:08:26 +01003170}
3171
Michal Vasko1734be92020-09-22 08:55:10 +02003172LY_ERR
3173lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, struct lyxp_expr **dup_p)
Michal Vasko004d3152020-06-11 19:59:22 +02003174{
Michal Vasko1734be92020-09-22 08:55:10 +02003175 LY_ERR ret = LY_SUCCESS;
3176 struct lyxp_expr *dup = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003177 uint32_t i, j;
3178
Michal Vasko7f45cf22020-10-01 12:49:44 +02003179 if (!exp) {
3180 goto cleanup;
3181 }
3182
Michal Vasko004d3152020-06-11 19:59:22 +02003183 dup = calloc(1, sizeof *dup);
Michal Vasko1734be92020-09-22 08:55:10 +02003184 LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02003185
Michal Vasko08e9b112021-06-11 15:41:17 +02003186 if (exp->used) {
3187 dup->tokens = malloc(exp->used * sizeof *dup->tokens);
3188 LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx); ret = LY_EMEM, cleanup);
3189 memcpy(dup->tokens, exp->tokens, exp->used * sizeof *dup->tokens);
Michal Vasko004d3152020-06-11 19:59:22 +02003190
Michal Vasko08e9b112021-06-11 15:41:17 +02003191 dup->tok_pos = malloc(exp->used * sizeof *dup->tok_pos);
3192 LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx); ret = LY_EMEM, cleanup);
3193 memcpy(dup->tok_pos, exp->tok_pos, exp->used * sizeof *dup->tok_pos);
Michal Vasko004d3152020-06-11 19:59:22 +02003194
Michal Vasko08e9b112021-06-11 15:41:17 +02003195 dup->tok_len = malloc(exp->used * sizeof *dup->tok_len);
3196 LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx); ret = LY_EMEM, cleanup);
3197 memcpy(dup->tok_len, exp->tok_len, exp->used * sizeof *dup->tok_len);
Michal Vasko004d3152020-06-11 19:59:22 +02003198
Michal Vasko08e9b112021-06-11 15:41:17 +02003199 dup->repeat = malloc(exp->used * sizeof *dup->repeat);
3200 LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx); ret = LY_EMEM, cleanup);
3201 for (i = 0; i < exp->used; ++i) {
3202 if (!exp->repeat[i]) {
3203 dup->repeat[i] = NULL;
3204 } else {
3205 for (j = 0; exp->repeat[i][j]; ++j) {}
3206 /* the ending 0 as well */
3207 ++j;
Michal Vasko004d3152020-06-11 19:59:22 +02003208
Michal Vasko08e9b112021-06-11 15:41:17 +02003209 dup->repeat[i] = malloc(j * sizeof **dup->repeat);
3210 LY_CHECK_ERR_GOTO(!dup->repeat[i], LOGMEM(ctx); ret = LY_EMEM, cleanup);
3211 memcpy(dup->repeat[i], exp->repeat[i], j * sizeof **dup->repeat);
3212 dup->repeat[i][j - 1] = 0;
3213 }
Michal Vasko004d3152020-06-11 19:59:22 +02003214 }
3215 }
3216
3217 dup->used = exp->used;
3218 dup->size = exp->used;
Michal Vasko1734be92020-09-22 08:55:10 +02003219 LY_CHECK_GOTO(ret = lydict_insert(ctx, exp->expr, 0, &dup->expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02003220
Michal Vasko1734be92020-09-22 08:55:10 +02003221cleanup:
3222 if (ret) {
3223 lyxp_expr_free(ctx, dup);
3224 } else {
3225 *dup_p = dup;
3226 }
3227 return ret;
Michal Vasko004d3152020-06-11 19:59:22 +02003228}
3229
Michal Vasko03ff5a72019-09-11 13:49:33 +02003230/**
3231 * @brief Get the last-added schema node that is currently in the context.
3232 *
3233 * @param[in] set Set to search in.
3234 * @return Last-added schema context node, NULL if no node is in context.
3235 */
3236static struct lysc_node *
3237warn_get_scnode_in_ctx(struct lyxp_set *set)
3238{
3239 uint32_t i;
3240
3241 if (!set || (set->type != LYXP_SET_SCNODE_SET)) {
3242 return NULL;
3243 }
3244
3245 i = set->used;
3246 do {
3247 --i;
Radek Krejcif13b87b2020-12-01 22:02:17 +01003248 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003249 /* if there are more, simply return the first found (last added) */
3250 return set->val.scnodes[i].scnode;
3251 }
3252 } while (i);
3253
3254 return NULL;
3255}
3256
3257/**
3258 * @brief Test whether a type is numeric - integer type or decimal64.
3259 *
3260 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003261 * @return Boolean value whether @p type is numeric type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003262 */
Radek Krejci857189e2020-09-01 13:26:36 +02003263static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003264warn_is_numeric_type(struct lysc_type *type)
3265{
3266 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003267 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003268 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003269
3270 switch (type->basetype) {
3271 case LY_TYPE_DEC64:
3272 case LY_TYPE_INT8:
3273 case LY_TYPE_UINT8:
3274 case LY_TYPE_INT16:
3275 case LY_TYPE_UINT16:
3276 case LY_TYPE_INT32:
3277 case LY_TYPE_UINT32:
3278 case LY_TYPE_INT64:
3279 case LY_TYPE_UINT64:
3280 return 1;
3281 case LY_TYPE_UNION:
3282 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003283 LY_ARRAY_FOR(uni->types, u) {
3284 ret = warn_is_numeric_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003285 if (ret) {
3286 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003287 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003288 }
3289 }
3290 /* did not find any suitable type */
3291 return 0;
3292 case LY_TYPE_LEAFREF:
3293 return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype);
3294 default:
3295 return 0;
3296 }
3297}
3298
3299/**
3300 * @brief Test whether a type is string-like - no integers, decimal64 or binary.
3301 *
3302 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003303 * @return Boolean value whether @p type's basetype is string type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003304 */
Radek Krejci857189e2020-09-01 13:26:36 +02003305static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003306warn_is_string_type(struct lysc_type *type)
3307{
3308 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003309 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003310 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003311
3312 switch (type->basetype) {
3313 case LY_TYPE_BITS:
3314 case LY_TYPE_ENUM:
3315 case LY_TYPE_IDENT:
3316 case LY_TYPE_INST:
3317 case LY_TYPE_STRING:
3318 return 1;
3319 case LY_TYPE_UNION:
3320 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003321 LY_ARRAY_FOR(uni->types, u) {
3322 ret = warn_is_string_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003323 if (ret) {
3324 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003325 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003326 }
3327 }
3328 /* did not find any suitable type */
3329 return 0;
3330 case LY_TYPE_LEAFREF:
3331 return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype);
3332 default:
3333 return 0;
3334 }
3335}
3336
3337/**
3338 * @brief Test whether a type is one specific type.
3339 *
3340 * @param[in] type Type to test.
3341 * @param[in] base Expected type.
Radek Krejci857189e2020-09-01 13:26:36 +02003342 * @return Boolean value whether the given @p type is of the specific basetype @p base.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003343 */
Radek Krejci857189e2020-09-01 13:26:36 +02003344static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003345warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base)
3346{
3347 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003348 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003349 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003350
3351 if (type->basetype == base) {
3352 return 1;
3353 } else if (type->basetype == LY_TYPE_UNION) {
3354 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003355 LY_ARRAY_FOR(uni->types, u) {
3356 ret = warn_is_specific_type(uni->types[u], base);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003357 if (ret) {
3358 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003359 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003360 }
3361 }
3362 /* did not find any suitable type */
3363 return 0;
3364 } else if (type->basetype == LY_TYPE_LEAFREF) {
3365 return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base);
3366 }
3367
3368 return 0;
3369}
3370
3371/**
3372 * @brief Get next type of a (union) type.
3373 *
3374 * @param[in] type Base type.
3375 * @param[in] prev_type Previously returned type.
3376 * @return Next type or NULL.
3377 */
3378static struct lysc_type *
3379warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type)
3380{
3381 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003382 ly_bool found = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003383 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003384
3385 switch (type->basetype) {
3386 case LY_TYPE_UNION:
3387 uni = (struct lysc_type_union *)type;
3388 if (!prev_type) {
3389 return uni->types[0];
3390 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003391 LY_ARRAY_FOR(uni->types, u) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003392 if (found) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003393 return uni->types[u];
Michal Vasko03ff5a72019-09-11 13:49:33 +02003394 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003395 if (prev_type == uni->types[u]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003396 found = 1;
3397 }
3398 }
3399 return NULL;
3400 default:
3401 if (prev_type) {
3402 assert(type == prev_type);
3403 return NULL;
3404 } else {
3405 return type;
3406 }
3407 }
3408}
3409
3410/**
3411 * @brief Test whether 2 types have a common type.
3412 *
3413 * @param[in] type1 First type.
3414 * @param[in] type2 Second type.
3415 * @return 1 if they do, 0 otherwise.
3416 */
3417static int
3418warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2)
3419{
3420 struct lysc_type *t1, *rt1, *t2, *rt2;
3421
3422 t1 = NULL;
3423 while ((t1 = warn_is_equal_type_next_type(type1, t1))) {
3424 if (t1->basetype == LY_TYPE_LEAFREF) {
3425 rt1 = ((struct lysc_type_leafref *)t1)->realtype;
3426 } else {
3427 rt1 = t1;
3428 }
3429
3430 t2 = NULL;
3431 while ((t2 = warn_is_equal_type_next_type(type2, t2))) {
3432 if (t2->basetype == LY_TYPE_LEAFREF) {
3433 rt2 = ((struct lysc_type_leafref *)t2)->realtype;
3434 } else {
3435 rt2 = t2;
3436 }
3437
3438 if (rt2->basetype == rt1->basetype) {
3439 /* match found */
3440 return 1;
3441 }
3442 }
3443 }
3444
3445 return 0;
3446}
3447
3448/**
Michal Vaskoaa956522021-11-11 10:45:34 +01003449 * @brief Print warning with information about the XPath subexpression that caused previous warning.
3450 *
3451 * @param[in] ctx Context for logging.
3452 * @param[in] tok_pos Index of the subexpression in the whole expression.
3453 * @param[in] subexpr Subexpression start.
3454 * @param[in] subexpr_len Length of @p subexpr to print.
3455 * @param[in] cur_scnode Expression context node.
3456 */
3457static void
3458warn_subexpr_log(const struct ly_ctx *ctx, uint16_t tok_pos, const char *subexpr, int subexpr_len,
3459 const struct lysc_node *cur_scnode)
3460{
3461 char *path;
3462
3463 path = lysc_path(cur_scnode, LYSC_PATH_LOG, NULL, 0);
3464 LOGWRN(ctx, "Previous warning generated by XPath subexpression[%" PRIu16 "] \"%.*s\" with context node \"%s\".",
3465 tok_pos, subexpr_len, subexpr, path);
3466 free(path);
3467}
3468
3469/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02003470 * @brief Check both operands of comparison operators.
3471 *
3472 * @param[in] ctx Context for errors.
3473 * @param[in] set1 First operand set.
3474 * @param[in] set2 Second operand set.
3475 * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!=').
3476 * @param[in] expr Start of the expression to print with the warning.
3477 * @param[in] tok_pos Token position.
3478 */
3479static void
Michal Vaskoaa956522021-11-11 10:45:34 +01003480warn_operands(struct ly_ctx *ctx, struct lyxp_set *set1, struct lyxp_set *set2, ly_bool numbers_only, const char *expr,
3481 uint16_t tok_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003482{
3483 struct lysc_node_leaf *node1, *node2;
Radek Krejci857189e2020-09-01 13:26:36 +02003484 ly_bool leaves = 1, warning = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003485
3486 node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1);
3487 node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2);
3488
3489 if (!node1 && !node2) {
3490 /* no node-sets involved, nothing to do */
3491 return;
3492 }
3493
3494 if (node1) {
3495 if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3496 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name);
3497 warning = 1;
3498 leaves = 0;
3499 } else if (numbers_only && !warn_is_numeric_type(node1->type)) {
3500 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name);
3501 warning = 1;
3502 }
3503 }
3504
3505 if (node2) {
3506 if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3507 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name);
3508 warning = 1;
3509 leaves = 0;
3510 } else if (numbers_only && !warn_is_numeric_type(node2->type)) {
3511 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name);
3512 warning = 1;
3513 }
3514 }
3515
3516 if (node1 && node2 && leaves && !numbers_only) {
Michal Vasko69730152020-10-09 16:30:07 +02003517 if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)) ||
3518 (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type)) ||
3519 (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type) &&
3520 !warn_is_equal_type(node1->type, node2->type))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003521 LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name);
3522 warning = 1;
3523 }
3524 }
3525
3526 if (warning) {
Michal Vaskoaa956522021-11-11 10:45:34 +01003527 warn_subexpr_log(ctx, tok_pos, expr + tok_pos, 20, set1->cur_scnode);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003528 }
3529}
3530
3531/**
3532 * @brief Check that a value is valid for a leaf. If not applicable, does nothing.
3533 *
3534 * @param[in] exp Parsed XPath expression.
3535 * @param[in] set Set with the leaf/leaf-list.
3536 * @param[in] val_exp Index of the value (literal/number) in @p exp.
3537 * @param[in] equal_exp Index of the start of the equality expression in @p exp.
3538 * @param[in] last_equal_exp Index of the end of the equality expression in @p exp.
3539 */
3540static void
Michal Vasko40308e72020-10-20 16:38:40 +02003541warn_equality_value(const struct lyxp_expr *exp, struct lyxp_set *set, uint16_t val_exp, uint16_t equal_exp,
3542 uint16_t last_equal_exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003543{
3544 struct lysc_node *scnode;
3545 struct lysc_type *type;
3546 char *value;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003547 struct lyd_value storage;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003548 LY_ERR rc;
3549 struct ly_err_item *err = NULL;
3550
Michal Vasko69730152020-10-09 16:30:07 +02003551 if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3552 ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003553 /* check that the node can have the specified value */
3554 if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) {
3555 value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2);
3556 } else {
3557 value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]);
3558 }
3559 if (!value) {
3560 LOGMEM(set->ctx);
3561 return;
3562 }
3563
3564 if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) {
3565 LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding"
Michal Vasko69730152020-10-09 16:30:07 +02003566 " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value);
Michal Vaskoaa956522021-11-11 10:45:34 +01003567 warn_subexpr_log(set->ctx, exp->tok_pos[equal_exp], exp->expr + exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003568 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vaskoaa956522021-11-11 10:45:34 +01003569 set->cur_scnode);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003570 }
3571
3572 type = ((struct lysc_node_leaf *)scnode)->type;
3573 if (type->basetype != LY_TYPE_IDENT) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003574 rc = type->plugin->store(set->ctx, type, value, strlen(value), 0, set->format, set->prefix_data,
Michal Vasko405cc9e2020-12-01 12:01:27 +01003575 LYD_HINT_DATA, scnode, &storage, NULL, &err);
Michal Vaskobf42e832020-11-23 16:59:42 +01003576 if (rc == LY_EINCOMPLETE) {
3577 rc = LY_SUCCESS;
3578 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003579
3580 if (err) {
3581 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg);
3582 ly_err_free(err);
3583 } else if (rc != LY_SUCCESS) {
3584 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value);
3585 }
3586 if (rc != LY_SUCCESS) {
Michal Vaskoaa956522021-11-11 10:45:34 +01003587 warn_subexpr_log(set->ctx, exp->tok_pos[equal_exp], exp->expr + exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003588 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vaskoaa956522021-11-11 10:45:34 +01003589 set->cur_scnode);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003590 } else {
3591 type->plugin->free(set->ctx, &storage);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003592 }
3593 }
3594 free(value);
3595 }
3596}
3597
3598/*
3599 * XPath functions
3600 */
3601
3602/**
3603 * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN
3604 * depending on whether the first node bit value from the second argument is set.
3605 *
3606 * @param[in] args Array of arguments.
3607 * @param[in] arg_count Count of elements in @p args.
3608 * @param[in,out] set Context and result set at the same time.
3609 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003610 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003611 */
3612static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003613xpath_bit_is_set(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003614{
3615 struct lyd_node_term *leaf;
3616 struct lysc_node_leaf *sleaf;
Michal Vasko2588b952021-07-29 07:43:26 +02003617 struct lyd_value_bits *bits;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003618 LY_ERR rc = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003619 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003620
3621 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003622 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003623 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003624 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3625 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3626 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3627 sleaf->name);
3628 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) {
3629 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name);
3630 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003631 }
3632
3633 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3634 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003635 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3636 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003637 } else if (!warn_is_string_type(sleaf->type)) {
3638 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003639 }
3640 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003641 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003642 return rc;
3643 }
3644
Michal Vaskod3678892020-05-21 10:06:58 +02003645 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003646 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "bit-is-set(node-set, string)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003647 return LY_EVALID;
3648 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003649 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003650 LY_CHECK_RET(rc);
3651
3652 set_fill_boolean(set, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02003653 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003654 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
Michal Vasko2588b952021-07-29 07:43:26 +02003655 if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (leaf->value.realtype->basetype == LY_TYPE_BITS)) {
3656 LYD_VALUE_GET(&leaf->value, bits);
3657 LY_ARRAY_FOR(bits->items, u) {
3658 if (!strcmp(bits->items[u]->name, args[1]->val.str)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003659 set_fill_boolean(set, 1);
3660 break;
3661 }
3662 }
3663 }
3664 }
3665
3666 return LY_SUCCESS;
3667}
3668
3669/**
3670 * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN
3671 * with the argument converted to boolean.
3672 *
3673 * @param[in] args Array of arguments.
3674 * @param[in] arg_count Count of elements in @p args.
3675 * @param[in,out] set Context and result set at the same time.
3676 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003677 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003678 */
3679static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003680xpath_boolean(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003681{
3682 LY_ERR rc;
3683
3684 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02003685 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003686 return LY_SUCCESS;
3687 }
3688
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003689 rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003690 LY_CHECK_RET(rc);
3691 set_fill_set(set, args[0]);
3692
3693 return LY_SUCCESS;
3694}
3695
3696/**
3697 * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER
3698 * with the first argument rounded up to the nearest integer.
3699 *
3700 * @param[in] args Array of arguments.
3701 * @param[in] arg_count Count of elements in @p args.
3702 * @param[in,out] set Context and result set at the same time.
3703 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003704 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003705 */
3706static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003707xpath_ceiling(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003708{
3709 struct lysc_node_leaf *sleaf;
3710 LY_ERR rc = LY_SUCCESS;
3711
3712 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003713 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003714 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003715 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3716 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3717 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3718 sleaf->name);
3719 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
3720 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
3721 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003722 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003723 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003724 return rc;
3725 }
3726
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003727 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003728 LY_CHECK_RET(rc);
3729 if ((long long)args[0]->val.num != args[0]->val.num) {
3730 set_fill_number(set, ((long long)args[0]->val.num) + 1);
3731 } else {
3732 set_fill_number(set, args[0]->val.num);
3733 }
3734
3735 return LY_SUCCESS;
3736}
3737
3738/**
3739 * @brief Execute the XPath concat(string, string, string*) function.
3740 * Returns LYXP_SET_STRING with the concatenation of all the arguments.
3741 *
3742 * @param[in] args Array of arguments.
3743 * @param[in] arg_count Count of elements in @p args.
3744 * @param[in,out] set Context and result set at the same time.
3745 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003746 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003747 */
3748static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003749xpath_concat(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003750{
3751 uint16_t i;
3752 char *str = NULL;
3753 size_t used = 1;
3754 LY_ERR rc = LY_SUCCESS;
3755 struct lysc_node_leaf *sleaf;
3756
3757 if (options & LYXP_SCNODE_ALL) {
3758 for (i = 0; i < arg_count; ++i) {
3759 if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) {
3760 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3761 LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02003762 i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003763 } else if (!warn_is_string_type(sleaf->type)) {
Radek Krejci70124c82020-08-14 22:17:03 +02003764 LOGWRN(set->ctx, "Argument #%u of %s is node \"%s\", not of string-type.", i + 1, __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003765 }
3766 }
3767 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003768 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003769 return rc;
3770 }
3771
3772 for (i = 0; i < arg_count; ++i) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003773 rc = lyxp_set_cast(args[i], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003774 if (rc != LY_SUCCESS) {
3775 free(str);
3776 return rc;
3777 }
3778
3779 str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char));
3780 LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM);
3781 strcpy(str + used - 1, args[i]->val.str);
3782 used += strlen(args[i]->val.str);
3783 }
3784
3785 /* free, kind of */
Michal Vaskod3678892020-05-21 10:06:58 +02003786 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003787 set->type = LYXP_SET_STRING;
3788 set->val.str = str;
3789
3790 return LY_SUCCESS;
3791}
3792
3793/**
3794 * @brief Execute the XPath contains(string, string) function.
3795 * Returns LYXP_SET_BOOLEAN whether the second argument can
3796 * be found in the first or not.
3797 *
3798 * @param[in] args Array of arguments.
3799 * @param[in] arg_count Count of elements in @p args.
3800 * @param[in,out] set Context and result set at the same time.
3801 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003802 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003803 */
3804static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003805xpath_contains(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003806{
3807 struct lysc_node_leaf *sleaf;
3808 LY_ERR rc = LY_SUCCESS;
3809
3810 if (options & LYXP_SCNODE_ALL) {
3811 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3812 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003813 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3814 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003815 } else if (!warn_is_string_type(sleaf->type)) {
3816 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003817 }
3818 }
3819
3820 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3821 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003822 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3823 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003824 } else if (!warn_is_string_type(sleaf->type)) {
3825 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003826 }
3827 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003828 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003829 return rc;
3830 }
3831
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003832 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003833 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003834 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003835 LY_CHECK_RET(rc);
3836
3837 if (strstr(args[0]->val.str, args[1]->val.str)) {
3838 set_fill_boolean(set, 1);
3839 } else {
3840 set_fill_boolean(set, 0);
3841 }
3842
3843 return LY_SUCCESS;
3844}
3845
3846/**
3847 * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER
3848 * with the size of the node-set from the argument.
3849 *
3850 * @param[in] args Array of arguments.
3851 * @param[in] arg_count Count of elements in @p args.
3852 * @param[in,out] set Context and result set at the same time.
3853 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003854 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003855 */
3856static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003857xpath_count(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003858{
Michal Vasko03ff5a72019-09-11 13:49:33 +02003859 LY_ERR rc = LY_SUCCESS;
3860
3861 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003862 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003863 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003864 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003865 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003866 return rc;
3867 }
3868
Michal Vasko03ff5a72019-09-11 13:49:33 +02003869 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003870 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003871 return LY_EVALID;
3872 }
3873
3874 set_fill_number(set, args[0]->used);
3875 return LY_SUCCESS;
3876}
3877
3878/**
3879 * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET
3880 * with the context with the intial node.
3881 *
3882 * @param[in] args Array of arguments.
3883 * @param[in] arg_count Count of elements in @p args.
3884 * @param[in,out] set Context and result set at the same time.
3885 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003886 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003887 */
3888static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003889xpath_current(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003890{
3891 if (arg_count || args) {
Radek Krejcie87c7dc2021-06-02 21:25:42 +02003892 LOGVAL(set->ctx, LY_VCODE_XP_INARGCOUNT, arg_count, LY_PRI_LENSTR("current()"));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003893 return LY_EVALID;
3894 }
3895
3896 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02003897 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003898
Michal Vasko296dfaf2021-12-13 16:57:42 +01003899 if (set->cur_scnode) {
3900 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, set->cur_scnode, LYXP_NODE_ELEM, NULL));
3901 } else {
3902 /* root node */
3903 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL));
3904 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003905 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02003906 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003907
Michal Vasko296dfaf2021-12-13 16:57:42 +01003908 if (set->cur_node) {
3909 /* position is filled later */
3910 set_insert_node(set, set->cur_node, 0, LYXP_NODE_ELEM, 0);
3911 } else {
3912 /* root node */
3913 set_insert_node(set, NULL, 0, set->root_type, 0);
3914 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003915 }
3916
3917 return LY_SUCCESS;
3918}
3919
3920/**
3921 * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either
3922 * leafref or instance-identifier target node(s).
3923 *
3924 * @param[in] args Array of arguments.
3925 * @param[in] arg_count Count of elements in @p args.
3926 * @param[in,out] set Context and result set at the same time.
3927 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003928 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003929 */
3930static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003931xpath_deref(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003932{
3933 struct lyd_node_term *leaf;
Michal Vasko42e497c2020-01-06 08:38:25 +01003934 struct lysc_node_leaf *sleaf = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003935 struct lysc_type_leafref *lref;
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003936 const struct lysc_node *target;
Michal Vasko004d3152020-06-11 19:59:22 +02003937 struct ly_path *p;
3938 struct lyd_node *node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003939 char *errmsg = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02003940 uint8_t oper;
Michal Vasko741bb562021-06-24 11:59:50 +02003941 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003942
3943 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003944 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003945 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003946 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
Michal Vasko423ba3f2021-07-19 13:08:50 +02003947 if (!(sleaf->nodetype & LYD_NODE_TERM)) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003948 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3949 sleaf->name);
Michal Vaskoed725d72021-06-23 12:03:45 +02003950 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) &&
3951 !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003952 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".",
3953 __func__, sleaf->name);
3954 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003955 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003956 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko423ba3f2021-07-19 13:08:50 +02003957 if (sleaf && (sleaf->nodetype & LYD_NODE_TERM) && (sleaf->type->basetype == LY_TYPE_LEAFREF)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003958 lref = (struct lysc_type_leafref *)sleaf->type;
Michal Vaskod1e53b92021-01-28 13:11:06 +01003959 oper = (sleaf->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko004d3152020-06-11 19:59:22 +02003960
3961 /* it was already evaluated on schema, it must succeed */
Michal Vasko741bb562021-06-24 11:59:50 +02003962 r = ly_path_compile_leafref(set->ctx, &sleaf->node, NULL, lref->path, oper, LY_PATH_TARGET_MANY,
Michal Vasko24fc4d12021-07-12 14:41:20 +02003963 LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, &p);
Michal Vasko741bb562021-06-24 11:59:50 +02003964 if (!r) {
3965 /* get the target node */
3966 target = p[LY_ARRAY_COUNT(p) - 1].node;
3967 ly_path_free(set->ctx, p);
Michal Vasko004d3152020-06-11 19:59:22 +02003968
Michal Vasko741bb562021-06-24 11:59:50 +02003969 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM, NULL));
3970 } /* else the target was found before but is disabled so it was removed */
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003971 }
3972
Michal Vasko741bb562021-06-24 11:59:50 +02003973 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003974 }
3975
Michal Vaskod3678892020-05-21 10:06:58 +02003976 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003977 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003978 return LY_EVALID;
3979 }
3980
Michal Vaskod3678892020-05-21 10:06:58 +02003981 lyxp_set_free_content(set);
3982 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003983 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3984 sleaf = (struct lysc_node_leaf *)leaf->schema;
3985 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
3986 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
3987 /* find leafref target */
Radek Krejci0b013302021-03-29 15:22:32 +02003988 if (lyplg_type_resolve_leafref((struct lysc_type_leafref *)sleaf->type, &leaf->node, &leaf->value, set->tree,
Michal Vasko9e685082021-01-29 14:49:09 +01003989 &node, &errmsg)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003990 LOGERR(set->ctx, LY_EVALID, errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003991 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02003992 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003993 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003994 } else {
3995 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko004d3152020-06-11 19:59:22 +02003996 if (ly_path_eval(leaf->value.target, set->tree, &node)) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003997 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.",
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02003998 lyd_get_value(&leaf->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003999 return LY_EVALID;
4000 }
4001 }
Michal Vasko004d3152020-06-11 19:59:22 +02004002
4003 /* insert it */
4004 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004005 }
4006 }
4007
4008 return LY_SUCCESS;
4009}
4010
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004011static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02004012xpath_derived_(struct lyxp_set **args, struct lyxp_set *set, uint32_t options, ly_bool self_match, const char *func)
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004013{
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01004014 uint32_t i;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004015 LY_ARRAY_COUNT_TYPE u;
4016 struct lyd_node_term *leaf;
4017 struct lysc_node_leaf *sleaf;
4018 struct lyd_meta *meta;
Michal Vasko93923692021-05-07 15:28:02 +02004019 struct lyd_value *val;
4020 const struct lys_module *mod;
4021 const char *id_name;
4022 uint16_t id_len;
4023 struct lysc_ident *id;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004024 LY_ERR rc = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +02004025 ly_bool found;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004026
4027 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004028 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004029 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004030 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4031 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4032 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
4033 sleaf->name);
4034 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
4035 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
4036 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004037 }
4038
4039 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4040 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4041 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
Michal Vasko69730152020-10-09 16:30:07 +02004042 sleaf->name);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004043 } else if (!warn_is_string_type(sleaf->type)) {
4044 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
4045 }
4046 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004047 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004048 return rc;
4049 }
4050
4051 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004052 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "derived-from(-or-self)(node-set, string)");
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004053 return LY_EVALID;
4054 }
4055 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
4056 LY_CHECK_RET(rc);
4057
Michal Vasko93923692021-05-07 15:28:02 +02004058 /* parse the identity */
4059 id_name = args[1]->val.str;
4060 id_len = strlen(id_name);
4061 rc = moveto_resolve_model(&id_name, &id_len, set, set->cur_node ? set->cur_node->schema : NULL, &mod);
4062 LY_CHECK_RET(rc);
4063 if (!mod) {
4064 LOGVAL(set->ctx, LYVE_XPATH, "Identity \"%.*s\" without a prefix.", (int)id_len, id_name);
4065 return LY_EVALID;
4066 }
4067
4068 /* find the identity */
4069 found = 0;
4070 LY_ARRAY_FOR(mod->identities, u) {
4071 if (!ly_strncmp(mod->identities[u].name, id_name, id_len)) {
4072 /* we have match */
4073 found = 1;
4074 break;
4075 }
4076 }
4077 if (!found) {
4078 LOGVAL(set->ctx, LYVE_XPATH, "Identity \"%.*s\" not found in module \"%s\".", (int)id_len, id_name, mod->name);
4079 return LY_EVALID;
4080 }
4081 id = &mod->identities[u];
4082
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004083 set_fill_boolean(set, 0);
4084 found = 0;
4085 for (i = 0; i < args[0]->used; ++i) {
4086 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
4087 continue;
4088 }
4089
4090 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
4091 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
4092 sleaf = (struct lysc_node_leaf *)leaf->schema;
4093 val = &leaf->value;
4094 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
4095 /* uninteresting */
4096 continue;
4097 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004098 } else {
4099 meta = args[0]->val.meta[i].meta;
4100 val = &meta->value;
4101 if (val->realtype->basetype != LY_TYPE_IDENT) {
4102 /* uninteresting */
4103 continue;
4104 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004105 }
4106
Michal Vasko93923692021-05-07 15:28:02 +02004107 /* check the identity itself */
4108 if (self_match && (id == val->ident)) {
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004109 set_fill_boolean(set, 1);
4110 found = 1;
4111 }
Michal Vasko93923692021-05-07 15:28:02 +02004112 if (!found && !lyplg_type_identity_isderived(id, val->ident)) {
4113 set_fill_boolean(set, 1);
4114 found = 1;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004115 }
4116
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004117 if (found) {
4118 break;
4119 }
4120 }
4121
4122 return LY_SUCCESS;
4123}
4124
Michal Vasko03ff5a72019-09-11 13:49:33 +02004125/**
4126 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
4127 * on whether the first argument nodes contain a node of an identity derived from the second
4128 * argument identity.
4129 *
4130 * @param[in] args Array of arguments.
4131 * @param[in] arg_count Count of elements in @p args.
4132 * @param[in,out] set Context and result set at the same time.
4133 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004134 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004135 */
4136static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004137xpath_derived_from(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004138{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004139 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004140}
4141
4142/**
4143 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
4144 * on whether the first argument nodes contain a node of an identity that either is or is derived from
4145 * the second argument identity.
4146 *
4147 * @param[in] args Array of arguments.
4148 * @param[in] arg_count Count of elements in @p args.
4149 * @param[in,out] set Context and result set at the same time.
4150 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004151 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004152 */
4153static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004154xpath_derived_from_or_self(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004155{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004156 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004157}
4158
4159/**
4160 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
4161 * with the integer value of the first node's enum value, otherwise NaN.
4162 *
4163 * @param[in] args Array of arguments.
4164 * @param[in] arg_count Count of elements in @p args.
4165 * @param[in,out] set Context and result set at the same time.
4166 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004167 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004168 */
4169static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004170xpath_enum_value(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004171{
4172 struct lyd_node_term *leaf;
4173 struct lysc_node_leaf *sleaf;
4174 LY_ERR rc = LY_SUCCESS;
4175
4176 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004177 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004178 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004179 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4180 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4181 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4182 sleaf->name);
4183 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
4184 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
4185 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004186 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004187 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004188 return rc;
4189 }
4190
Michal Vaskod3678892020-05-21 10:06:58 +02004191 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004192 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004193 return LY_EVALID;
4194 }
4195
4196 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02004197 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004198 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
4199 sleaf = (struct lysc_node_leaf *)leaf->schema;
4200 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
4201 set_fill_number(set, leaf->value.enum_item->value);
4202 }
4203 }
4204
4205 return LY_SUCCESS;
4206}
4207
4208/**
4209 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
4210 * with false value.
4211 *
4212 * @param[in] args Array of arguments.
4213 * @param[in] arg_count Count of elements in @p args.
4214 * @param[in,out] set Context and result set at the same time.
4215 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004216 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004217 */
4218static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004219xpath_false(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004220{
4221 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004222 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004223 return LY_SUCCESS;
4224 }
4225
4226 set_fill_boolean(set, 0);
4227 return LY_SUCCESS;
4228}
4229
4230/**
4231 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
4232 * with the first argument floored (truncated).
4233 *
4234 * @param[in] args Array of arguments.
4235 * @param[in] arg_count Count of elements in @p args.
4236 * @param[in,out] set Context and result set at the same time.
4237 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004238 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004239 */
4240static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004241xpath_floor(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t UNUSED(options))
Michal Vasko03ff5a72019-09-11 13:49:33 +02004242{
4243 LY_ERR rc;
4244
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004245 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004246 LY_CHECK_RET(rc);
4247 if (isfinite(args[0]->val.num)) {
4248 set_fill_number(set, (long long)args[0]->val.num);
4249 }
4250
4251 return LY_SUCCESS;
4252}
4253
4254/**
4255 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
4256 * whether the language of the text matches the one from the argument.
4257 *
4258 * @param[in] args Array of arguments.
4259 * @param[in] arg_count Count of elements in @p args.
4260 * @param[in,out] set Context and result set at the same time.
4261 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004262 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004263 */
4264static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004265xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004266{
4267 const struct lyd_node *node;
4268 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01004269 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004270 const char *val;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004271 LY_ERR rc = LY_SUCCESS;
4272
4273 if (options & LYXP_SCNODE_ALL) {
4274 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4275 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004276 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4277 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004278 } else if (!warn_is_string_type(sleaf->type)) {
4279 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004280 }
4281 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004282 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004283 return rc;
4284 }
4285
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004286 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004287 LY_CHECK_RET(rc);
4288
Michal Vasko03ff5a72019-09-11 13:49:33 +02004289 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004290 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004291 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004292 } else if (!set->used) {
4293 set_fill_boolean(set, 0);
4294 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004295 }
4296
4297 switch (set->val.nodes[0].type) {
4298 case LYXP_NODE_ELEM:
4299 case LYXP_NODE_TEXT:
4300 node = set->val.nodes[0].node;
4301 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004302 case LYXP_NODE_META:
4303 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004304 break;
4305 default:
4306 /* nothing to do with roots */
4307 set_fill_boolean(set, 0);
4308 return LY_SUCCESS;
4309 }
4310
Michal Vasko9f96a052020-03-10 09:41:45 +01004311 /* find lang metadata */
Michal Vasko9e685082021-01-29 14:49:09 +01004312 for ( ; node; node = lyd_parent(node)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004313 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004314 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004315 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004316 break;
4317 }
4318 }
4319
Michal Vasko9f96a052020-03-10 09:41:45 +01004320 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004321 break;
4322 }
4323 }
4324
4325 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004326 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004327 set_fill_boolean(set, 0);
4328 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004329 uint64_t i;
4330
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02004331 val = lyd_get_meta_value(meta);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004332 for (i = 0; args[0]->val.str[i]; ++i) {
4333 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4334 set_fill_boolean(set, 0);
4335 break;
4336 }
4337 }
4338 if (!args[0]->val.str[i]) {
4339 if (!val[i] || (val[i] == '-')) {
4340 set_fill_boolean(set, 1);
4341 } else {
4342 set_fill_boolean(set, 0);
4343 }
4344 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004345 }
4346
4347 return LY_SUCCESS;
4348}
4349
4350/**
4351 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4352 * with the context size.
4353 *
4354 * @param[in] args Array of arguments.
4355 * @param[in] arg_count Count of elements in @p args.
4356 * @param[in,out] set Context and result set at the same time.
4357 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004358 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004359 */
4360static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004361xpath_last(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004362{
4363 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004364 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004365 return LY_SUCCESS;
4366 }
4367
Michal Vasko03ff5a72019-09-11 13:49:33 +02004368 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004369 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004370 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004371 } else if (!set->used) {
4372 set_fill_number(set, 0);
4373 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004374 }
4375
4376 set_fill_number(set, set->ctx_size);
4377 return LY_SUCCESS;
4378}
4379
4380/**
4381 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4382 * with the node name without namespace from the argument or the context.
4383 *
4384 * @param[in] args Array of arguments.
4385 * @param[in] arg_count Count of elements in @p args.
4386 * @param[in,out] set Context and result set at the same time.
4387 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004388 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004389 */
4390static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004391xpath_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004392{
4393 struct lyxp_set_node *item;
Michal Vasko69730152020-10-09 16:30:07 +02004394
Michal Vasko03ff5a72019-09-11 13:49:33 +02004395 /* suppress unused variable warning */
4396 (void)options;
4397
4398 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004399 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004400 return LY_SUCCESS;
4401 }
4402
4403 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004404 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004405 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004406 "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004407 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004408 } else if (!args[0]->used) {
4409 set_fill_string(set, "", 0);
4410 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004411 }
4412
4413 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004414 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004415
4416 item = &args[0]->val.nodes[0];
4417 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004418 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004419 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004420 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004421 } else if (!set->used) {
4422 set_fill_string(set, "", 0);
4423 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004424 }
4425
4426 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004427 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004428
4429 item = &set->val.nodes[0];
4430 }
4431
4432 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004433 case LYXP_NODE_NONE:
4434 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004435 case LYXP_NODE_ROOT:
4436 case LYXP_NODE_ROOT_CONFIG:
4437 case LYXP_NODE_TEXT:
4438 set_fill_string(set, "", 0);
4439 break;
4440 case LYXP_NODE_ELEM:
4441 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4442 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004443 case LYXP_NODE_META:
4444 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004445 break;
4446 }
4447
4448 return LY_SUCCESS;
4449}
4450
4451/**
4452 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4453 * with the node name fully qualified (with namespace) from the argument or the context.
4454 *
4455 * @param[in] args Array of arguments.
4456 * @param[in] arg_count Count of elements in @p args.
4457 * @param[in,out] set Context and result set at the same time.
4458 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004459 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004460 */
4461static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004462xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004463{
4464 struct lyxp_set_node *item;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004465 struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004466 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004467 const char *name = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004468
4469 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004470 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004471 return LY_SUCCESS;
4472 }
4473
4474 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004475 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004476 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004477 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004478 } else if (!args[0]->used) {
4479 set_fill_string(set, "", 0);
4480 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004481 }
4482
4483 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004484 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004485
4486 item = &args[0]->val.nodes[0];
4487 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004488 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004489 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004490 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004491 } else if (!set->used) {
4492 set_fill_string(set, "", 0);
4493 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004494 }
4495
4496 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004497 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004498
4499 item = &set->val.nodes[0];
4500 }
4501
4502 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004503 case LYXP_NODE_NONE:
4504 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004505 case LYXP_NODE_ROOT:
4506 case LYXP_NODE_ROOT_CONFIG:
4507 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004508 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004509 break;
4510 case LYXP_NODE_ELEM:
4511 mod = item->node->schema->module;
4512 name = item->node->schema->name;
4513 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004514 case LYXP_NODE_META:
4515 mod = ((struct lyd_meta *)item->node)->annotation->module;
4516 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004517 break;
4518 }
4519
4520 if (mod && name) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004521 int rc = asprintf(&str, "%s:%s", ly_get_prefix(mod, set->format, set->prefix_data), name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004522 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4523 set_fill_string(set, str, strlen(str));
4524 free(str);
4525 } else {
4526 set_fill_string(set, "", 0);
4527 }
4528
4529 return LY_SUCCESS;
4530}
4531
4532/**
4533 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4534 * with the namespace of the node from the argument or the context.
4535 *
4536 * @param[in] args Array of arguments.
4537 * @param[in] arg_count Count of elements in @p args.
4538 * @param[in,out] set Context and result set at the same time.
4539 * @param[in] options XPath options.
4540 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4541 */
4542static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004543xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004544{
4545 struct lyxp_set_node *item;
4546 struct lys_module *mod;
Michal Vasko69730152020-10-09 16:30:07 +02004547
Michal Vasko03ff5a72019-09-11 13:49:33 +02004548 /* suppress unused variable warning */
4549 (void)options;
4550
4551 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004552 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004553 return LY_SUCCESS;
4554 }
4555
4556 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004557 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004558 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko69730152020-10-09 16:30:07 +02004559 "namespace-uri(node-set?)");
Michal Vaskod3678892020-05-21 10:06:58 +02004560 return LY_EVALID;
4561 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004562 set_fill_string(set, "", 0);
4563 return LY_SUCCESS;
4564 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004565
4566 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004567 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004568
4569 item = &args[0]->val.nodes[0];
4570 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004571 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004572 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004573 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004574 } else if (!set->used) {
4575 set_fill_string(set, "", 0);
4576 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004577 }
4578
4579 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004580 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004581
4582 item = &set->val.nodes[0];
4583 }
4584
4585 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004586 case LYXP_NODE_NONE:
4587 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004588 case LYXP_NODE_ROOT:
4589 case LYXP_NODE_ROOT_CONFIG:
4590 case LYXP_NODE_TEXT:
4591 set_fill_string(set, "", 0);
4592 break;
4593 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004594 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004595 if (item->type == LYXP_NODE_ELEM) {
4596 mod = item->node->schema->module;
Michal Vasko9f96a052020-03-10 09:41:45 +01004597 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004598 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004599 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004600 }
4601
4602 set_fill_string(set, mod->ns, strlen(mod->ns));
4603 break;
4604 }
4605
4606 return LY_SUCCESS;
4607}
4608
4609/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02004610 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4611 * with normalized value (no leading, trailing, double white spaces) of the node
4612 * from the argument or the context.
4613 *
4614 * @param[in] args Array of arguments.
4615 * @param[in] arg_count Count of elements in @p args.
4616 * @param[in,out] set Context and result set at the same time.
4617 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004618 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004619 */
4620static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004621xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004622{
4623 uint16_t i, new_used;
4624 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02004625 ly_bool have_spaces = 0, space_before = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004626 struct lysc_node_leaf *sleaf;
4627 LY_ERR rc = LY_SUCCESS;
4628
4629 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004630 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) &&
4631 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004632 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004633 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4634 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004635 } else if (!warn_is_string_type(sleaf->type)) {
4636 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004637 }
4638 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004639 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004640 return rc;
4641 }
4642
4643 if (arg_count) {
4644 set_fill_set(set, args[0]);
4645 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004646 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004647 LY_CHECK_RET(rc);
4648
4649 /* is there any normalization necessary? */
4650 for (i = 0; set->val.str[i]; ++i) {
4651 if (is_xmlws(set->val.str[i])) {
4652 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4653 have_spaces = 1;
4654 break;
4655 }
4656 space_before = 1;
4657 } else {
4658 space_before = 0;
4659 }
4660 }
4661
4662 /* yep, there is */
4663 if (have_spaces) {
4664 /* it's enough, at least one character will go, makes space for ending '\0' */
4665 new = malloc(strlen(set->val.str) * sizeof(char));
4666 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4667 new_used = 0;
4668
4669 space_before = 0;
4670 for (i = 0; set->val.str[i]; ++i) {
4671 if (is_xmlws(set->val.str[i])) {
4672 if ((i == 0) || space_before) {
4673 space_before = 1;
4674 continue;
4675 } else {
4676 space_before = 1;
4677 }
4678 } else {
4679 space_before = 0;
4680 }
4681
4682 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4683 ++new_used;
4684 }
4685
4686 /* at worst there is one trailing space now */
4687 if (new_used && is_xmlws(new[new_used - 1])) {
4688 --new_used;
4689 }
4690
4691 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4692 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4693 new[new_used] = '\0';
4694
4695 free(set->val.str);
4696 set->val.str = new;
4697 }
4698
4699 return LY_SUCCESS;
4700}
4701
4702/**
4703 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4704 * with the argument converted to boolean and logically inverted.
4705 *
4706 * @param[in] args Array of arguments.
4707 * @param[in] arg_count Count of elements in @p args.
4708 * @param[in,out] set Context and result set at the same time.
4709 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004710 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004711 */
4712static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004713xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004714{
4715 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004716 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004717 return LY_SUCCESS;
4718 }
4719
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004720 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004721 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004722 set_fill_boolean(set, 0);
4723 } else {
4724 set_fill_boolean(set, 1);
4725 }
4726
4727 return LY_SUCCESS;
4728}
4729
4730/**
4731 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4732 * with the number representation of either the argument or the context.
4733 *
4734 * @param[in] args Array of arguments.
4735 * @param[in] arg_count Count of elements in @p args.
4736 * @param[in,out] set Context and result set at the same time.
4737 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004738 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004739 */
4740static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004741xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004742{
4743 LY_ERR rc;
4744
4745 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004746 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004747 return LY_SUCCESS;
4748 }
4749
4750 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004751 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004752 LY_CHECK_RET(rc);
4753 set_fill_set(set, args[0]);
4754 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004755 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004756 LY_CHECK_RET(rc);
4757 }
4758
4759 return LY_SUCCESS;
4760}
4761
4762/**
4763 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4764 * with the context position.
4765 *
4766 * @param[in] args Array of arguments.
4767 * @param[in] arg_count Count of elements in @p args.
4768 * @param[in,out] set Context and result set at the same time.
4769 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004770 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004771 */
4772static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004773xpath_position(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004774{
4775 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004776 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004777 return LY_SUCCESS;
4778 }
4779
Michal Vasko03ff5a72019-09-11 13:49:33 +02004780 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004781 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004782 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004783 } else if (!set->used) {
4784 set_fill_number(set, 0);
4785 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004786 }
4787
4788 set_fill_number(set, set->ctx_pos);
4789
4790 /* UNUSED in 'Release' build type */
4791 (void)options;
4792 return LY_SUCCESS;
4793}
4794
4795/**
4796 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4797 * depending on whether the second argument regex matches the first argument string. For details refer to
4798 * YANG 1.1 RFC section 10.2.1.
4799 *
4800 * @param[in] args Array of arguments.
4801 * @param[in] arg_count Count of elements in @p args.
4802 * @param[in,out] set Context and result set at the same time.
4803 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004804 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004805 */
4806static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004807xpath_re_match(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004808{
4809 struct lysc_pattern **patterns = NULL, **pattern;
4810 struct lysc_node_leaf *sleaf;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004811 LY_ERR rc = LY_SUCCESS;
4812 struct ly_err_item *err;
4813
4814 if (options & LYXP_SCNODE_ALL) {
4815 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4816 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4817 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004818 } else if (!warn_is_string_type(sleaf->type)) {
4819 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004820 }
4821 }
4822
4823 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4824 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4825 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004826 } else if (!warn_is_string_type(sleaf->type)) {
4827 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004828 }
4829 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004830 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004831 return rc;
4832 }
4833
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004834 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004835 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004836 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004837 LY_CHECK_RET(rc);
4838
4839 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
Radek Iša45802b52021-02-09 09:21:58 +01004840 *pattern = calloc(1, sizeof **pattern);
Radek Krejciddace2c2021-01-08 11:30:56 +01004841 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01004842 rc = lys_compile_type_pattern_check(set->ctx, args[1]->val.str, &(*pattern)->code);
Michal Vasko4a7d4d62021-12-13 17:05:06 +01004843 if (set->cur_node) {
4844 LOG_LOCBACK(0, 1, 0, 0);
4845 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004846 if (rc != LY_SUCCESS) {
4847 LY_ARRAY_FREE(patterns);
4848 return rc;
4849 }
4850
Radek Krejci0b013302021-03-29 15:22:32 +02004851 rc = lyplg_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004852 pcre2_code_free((*pattern)->code);
4853 free(*pattern);
4854 LY_ARRAY_FREE(patterns);
4855 if (rc && (rc != LY_EVALID)) {
Michal Vasko177d0ed2020-11-23 16:43:03 +01004856 ly_err_print(set->ctx, err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004857 ly_err_free(err);
4858 return rc;
4859 }
4860
4861 if (rc == LY_EVALID) {
4862 ly_err_free(err);
4863 set_fill_boolean(set, 0);
4864 } else {
4865 set_fill_boolean(set, 1);
4866 }
4867
4868 return LY_SUCCESS;
4869}
4870
4871/**
4872 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4873 * with the rounded first argument. For details refer to
4874 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4875 *
4876 * @param[in] args Array of arguments.
4877 * @param[in] arg_count Count of elements in @p args.
4878 * @param[in,out] set Context and result set at the same time.
4879 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004880 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004881 */
4882static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004883xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004884{
4885 struct lysc_node_leaf *sleaf;
4886 LY_ERR rc = LY_SUCCESS;
4887
4888 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004889 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004890 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004891 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4892 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4893 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4894 sleaf->name);
4895 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4896 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
4897 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004898 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004899 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004900 return rc;
4901 }
4902
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004903 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004904 LY_CHECK_RET(rc);
4905
4906 /* cover only the cases where floor can't be used */
4907 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4908 set_fill_number(set, -0.0f);
4909 } else {
4910 args[0]->val.num += 0.5;
4911 rc = xpath_floor(args, 1, args[0], options);
4912 LY_CHECK_RET(rc);
4913 set_fill_number(set, args[0]->val.num);
4914 }
4915
4916 return LY_SUCCESS;
4917}
4918
4919/**
4920 * @brief Execute the XPath starts-with(string, string) function.
4921 * Returns LYXP_SET_BOOLEAN whether the second argument is
4922 * the prefix of the first or not.
4923 *
4924 * @param[in] args Array of arguments.
4925 * @param[in] arg_count Count of elements in @p args.
4926 * @param[in,out] set Context and result set at the same time.
4927 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004928 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004929 */
4930static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004931xpath_starts_with(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004932{
4933 struct lysc_node_leaf *sleaf;
4934 LY_ERR rc = LY_SUCCESS;
4935
4936 if (options & LYXP_SCNODE_ALL) {
4937 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4938 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4939 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004940 } else if (!warn_is_string_type(sleaf->type)) {
4941 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004942 }
4943 }
4944
4945 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4946 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4947 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004948 } else if (!warn_is_string_type(sleaf->type)) {
4949 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004950 }
4951 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004952 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004953 return rc;
4954 }
4955
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004956 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004957 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004958 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004959 LY_CHECK_RET(rc);
4960
4961 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
4962 set_fill_boolean(set, 0);
4963 } else {
4964 set_fill_boolean(set, 1);
4965 }
4966
4967 return LY_SUCCESS;
4968}
4969
4970/**
4971 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
4972 * with the string representation of either the argument or the context.
4973 *
4974 * @param[in] args Array of arguments.
4975 * @param[in] arg_count Count of elements in @p args.
4976 * @param[in,out] set Context and result set at the same time.
4977 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004978 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004979 */
4980static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004981xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004982{
4983 LY_ERR rc;
4984
4985 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004986 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004987 return LY_SUCCESS;
4988 }
4989
4990 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004991 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004992 LY_CHECK_RET(rc);
4993 set_fill_set(set, args[0]);
4994 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004995 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004996 LY_CHECK_RET(rc);
4997 }
4998
4999 return LY_SUCCESS;
5000}
5001
5002/**
5003 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
5004 * with the length of the string in either the argument or the context.
5005 *
5006 * @param[in] args Array of arguments.
5007 * @param[in] arg_count Count of elements in @p args.
5008 * @param[in,out] set Context and result set at the same time.
5009 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005010 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005011 */
5012static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005013xpath_string_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005014{
5015 struct lysc_node_leaf *sleaf;
5016 LY_ERR rc = LY_SUCCESS;
5017
5018 if (options & LYXP_SCNODE_ALL) {
5019 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5020 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5021 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005022 } else if (!warn_is_string_type(sleaf->type)) {
5023 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005024 }
5025 }
5026 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
5027 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5028 LOGWRN(set->ctx, "Argument #0 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005029 } else if (!warn_is_string_type(sleaf->type)) {
5030 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005031 }
5032 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005033 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005034 return rc;
5035 }
5036
5037 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005038 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005039 LY_CHECK_RET(rc);
5040 set_fill_number(set, strlen(args[0]->val.str));
5041 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005042 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005043 LY_CHECK_RET(rc);
5044 set_fill_number(set, strlen(set->val.str));
5045 }
5046
5047 return LY_SUCCESS;
5048}
5049
5050/**
5051 * @brief Execute the XPath substring(string, number, number?) function.
5052 * Returns LYXP_SET_STRING substring of the first argument starting
5053 * on the second argument index ending on the third argument index,
5054 * indexed from 1. For exact definition refer to
5055 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
5056 *
5057 * @param[in] args Array of arguments.
5058 * @param[in] arg_count Count of elements in @p args.
5059 * @param[in,out] set Context and result set at the same time.
5060 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005061 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005062 */
5063static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005064xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005065{
Radek Krejci1deb5be2020-08-26 16:43:36 +02005066 int32_t start, len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005067 uint16_t str_start, str_len, pos;
5068 struct lysc_node_leaf *sleaf;
5069 LY_ERR rc = LY_SUCCESS;
5070
5071 if (options & LYXP_SCNODE_ALL) {
5072 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5073 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5074 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005075 } else if (!warn_is_string_type(sleaf->type)) {
5076 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005077 }
5078 }
5079
5080 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5081 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5082 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005083 } else if (!warn_is_numeric_type(sleaf->type)) {
5084 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005085 }
5086 }
5087
Michal Vasko69730152020-10-09 16:30:07 +02005088 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET) &&
5089 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005090 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5091 LOGWRN(set->ctx, "Argument #3 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005092 } else if (!warn_is_numeric_type(sleaf->type)) {
5093 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005094 }
5095 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005096 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005097 return rc;
5098 }
5099
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005100 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005101 LY_CHECK_RET(rc);
5102
5103 /* start */
5104 if (xpath_round(&args[1], 1, args[1], options)) {
5105 return -1;
5106 }
5107 if (isfinite(args[1]->val.num)) {
5108 start = args[1]->val.num - 1;
5109 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02005110 start = INT32_MIN;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005111 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02005112 start = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005113 }
5114
5115 /* len */
5116 if (arg_count == 3) {
5117 rc = xpath_round(&args[2], 1, args[2], options);
5118 LY_CHECK_RET(rc);
Radek Krejci1deb5be2020-08-26 16:43:36 +02005119 if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005120 len = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005121 } else if (isfinite(args[2]->val.num)) {
5122 len = args[2]->val.num;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005123 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02005124 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005125 }
5126 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02005127 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005128 }
5129
5130 /* find matching character positions */
5131 str_start = 0;
5132 str_len = 0;
5133 for (pos = 0; args[0]->val.str[pos]; ++pos) {
5134 if (pos < start) {
5135 ++str_start;
5136 } else if (pos < start + len) {
5137 ++str_len;
5138 } else {
5139 break;
5140 }
5141 }
5142
5143 set_fill_string(set, args[0]->val.str + str_start, str_len);
5144 return LY_SUCCESS;
5145}
5146
5147/**
5148 * @brief Execute the XPath substring-after(string, string) function.
5149 * Returns LYXP_SET_STRING with the string succeeding the occurance
5150 * of the second argument in the first or an empty string.
5151 *
5152 * @param[in] args Array of arguments.
5153 * @param[in] arg_count Count of elements in @p args.
5154 * @param[in,out] set Context and result set at the same time.
5155 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005156 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005157 */
5158static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005159xpath_substring_after(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005160{
5161 char *ptr;
5162 struct lysc_node_leaf *sleaf;
5163 LY_ERR rc = LY_SUCCESS;
5164
5165 if (options & LYXP_SCNODE_ALL) {
5166 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5167 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5168 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005169 } else if (!warn_is_string_type(sleaf->type)) {
5170 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005171 }
5172 }
5173
5174 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5175 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5176 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005177 } else if (!warn_is_string_type(sleaf->type)) {
5178 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005179 }
5180 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005181 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005182 return rc;
5183 }
5184
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005185 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005186 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005187 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005188 LY_CHECK_RET(rc);
5189
5190 ptr = strstr(args[0]->val.str, args[1]->val.str);
5191 if (ptr) {
5192 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
5193 } else {
5194 set_fill_string(set, "", 0);
5195 }
5196
5197 return LY_SUCCESS;
5198}
5199
5200/**
5201 * @brief Execute the XPath substring-before(string, string) function.
5202 * Returns LYXP_SET_STRING with the string preceding the occurance
5203 * of the second argument in the first or an empty string.
5204 *
5205 * @param[in] args Array of arguments.
5206 * @param[in] arg_count Count of elements in @p args.
5207 * @param[in,out] set Context and result set at the same time.
5208 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005209 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005210 */
5211static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005212xpath_substring_before(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005213{
5214 char *ptr;
5215 struct lysc_node_leaf *sleaf;
5216 LY_ERR rc = LY_SUCCESS;
5217
5218 if (options & LYXP_SCNODE_ALL) {
5219 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5220 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5221 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005222 } else if (!warn_is_string_type(sleaf->type)) {
5223 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005224 }
5225 }
5226
5227 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5228 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5229 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005230 } else if (!warn_is_string_type(sleaf->type)) {
5231 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005232 }
5233 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005234 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005235 return rc;
5236 }
5237
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005238 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005239 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005240 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005241 LY_CHECK_RET(rc);
5242
5243 ptr = strstr(args[0]->val.str, args[1]->val.str);
5244 if (ptr) {
5245 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
5246 } else {
5247 set_fill_string(set, "", 0);
5248 }
5249
5250 return LY_SUCCESS;
5251}
5252
5253/**
5254 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5255 * with the sum of all the nodes in the context.
5256 *
5257 * @param[in] args Array of arguments.
5258 * @param[in] arg_count Count of elements in @p args.
5259 * @param[in,out] set Context and result set at the same time.
5260 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005261 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005262 */
5263static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005264xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005265{
5266 long double num;
5267 char *str;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01005268 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005269 struct lyxp_set set_item;
5270 struct lysc_node_leaf *sleaf;
5271 LY_ERR rc = LY_SUCCESS;
5272
5273 if (options & LYXP_SCNODE_ALL) {
5274 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5275 for (i = 0; i < args[0]->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005276 if (args[0]->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005277 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5278 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5279 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
Michal Vasko69730152020-10-09 16:30:07 +02005280 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005281 } else if (!warn_is_numeric_type(sleaf->type)) {
5282 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005283 }
5284 }
5285 }
5286 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005287 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005288 return rc;
5289 }
5290
5291 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005292
5293 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005294 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02005295 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005296 } else if (!args[0]->used) {
5297 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005298 }
5299
Michal Vasko5c4e5892019-11-14 12:31:38 +01005300 set_init(&set_item, set);
5301
Michal Vasko03ff5a72019-09-11 13:49:33 +02005302 set_item.type = LYXP_SET_NODE_SET;
Michal Vasko41decbf2021-11-02 11:50:21 +01005303 set_item.val.nodes = calloc(1, sizeof *set_item.val.nodes);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005304 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5305
5306 set_item.used = 1;
5307 set_item.size = 1;
5308
5309 for (i = 0; i < args[0]->used; ++i) {
5310 set_item.val.nodes[0] = args[0]->val.nodes[i];
5311
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005312 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005313 LY_CHECK_RET(rc);
5314 num = cast_string_to_number(str);
5315 free(str);
5316 set->val.num += num;
5317 }
5318
5319 free(set_item.val.nodes);
5320
5321 return LY_SUCCESS;
5322}
5323
5324/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005325 * @brief Execute the XPath translate(string, string, string) function.
5326 * Returns LYXP_SET_STRING with the first argument with the characters
5327 * from the second argument replaced by those on the corresponding
5328 * positions in the third argument.
5329 *
5330 * @param[in] args Array of arguments.
5331 * @param[in] arg_count Count of elements in @p args.
5332 * @param[in,out] set Context and result set at the same time.
5333 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005334 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005335 */
5336static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005337xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005338{
5339 uint16_t i, j, new_used;
5340 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02005341 ly_bool have_removed;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005342 struct lysc_node_leaf *sleaf;
5343 LY_ERR rc = LY_SUCCESS;
5344
5345 if (options & LYXP_SCNODE_ALL) {
5346 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5347 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5348 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005349 } else if (!warn_is_string_type(sleaf->type)) {
5350 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005351 }
5352 }
5353
5354 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5355 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5356 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005357 } else if (!warn_is_string_type(sleaf->type)) {
5358 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005359 }
5360 }
5361
5362 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5363 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5364 LOGWRN(set->ctx, "Argument #3 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005365 } else if (!warn_is_string_type(sleaf->type)) {
5366 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005367 }
5368 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005369 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005370 return rc;
5371 }
5372
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005373 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005374 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005375 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005376 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005377 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005378 LY_CHECK_RET(rc);
5379
5380 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5381 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5382 new_used = 0;
5383
5384 have_removed = 0;
5385 for (i = 0; args[0]->val.str[i]; ++i) {
Radek Krejci857189e2020-09-01 13:26:36 +02005386 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005387
5388 for (j = 0; args[1]->val.str[j]; ++j) {
5389 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5390 /* removing this char */
5391 if (j >= strlen(args[2]->val.str)) {
5392 have_removed = 1;
5393 found = 1;
5394 break;
5395 }
5396 /* replacing this char */
5397 new[new_used] = args[2]->val.str[j];
5398 ++new_used;
5399 found = 1;
5400 break;
5401 }
5402 }
5403
5404 /* copying this char */
5405 if (!found) {
5406 new[new_used] = args[0]->val.str[i];
5407 ++new_used;
5408 }
5409 }
5410
5411 if (have_removed) {
5412 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5413 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5414 }
5415 new[new_used] = '\0';
5416
Michal Vaskod3678892020-05-21 10:06:58 +02005417 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005418 set->type = LYXP_SET_STRING;
5419 set->val.str = new;
5420
5421 return LY_SUCCESS;
5422}
5423
5424/**
5425 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5426 * with true value.
5427 *
5428 * @param[in] args Array of arguments.
5429 * @param[in] arg_count Count of elements in @p args.
5430 * @param[in,out] set Context and result set at the same time.
5431 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005432 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005433 */
5434static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005435xpath_true(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005436{
5437 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02005438 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005439 return LY_SUCCESS;
5440 }
5441
5442 set_fill_boolean(set, 1);
5443 return LY_SUCCESS;
5444}
5445
Michal Vasko03ff5a72019-09-11 13:49:33 +02005446/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02005447 * @brief Execute the XPath node() processing instruction (node type). Returns LYXP_SET_NODE_SET
5448 * with only nodes from the context.
5449 *
5450 * @param[in,out] set Context and result set at the same time.
5451 * @param[in] axis Axis to search on.
5452 * @param[in] options XPath options.
5453 * @return LY_ERR
5454 */
5455static LY_ERR
5456xpath_pi_node(struct lyxp_set *set, enum lyxp_axis axis, uint32_t options)
5457{
5458 if (options & LYXP_SCNODE_ALL) {
5459 return moveto_scnode(set, NULL, NULL, axis, options);
5460 }
5461
5462 if (set->type != LYXP_SET_NODE_SET) {
5463 lyxp_set_free_content(set);
5464 return LY_SUCCESS;
5465 }
5466
5467 /* just like moving to a node with no restrictions */
5468 return moveto_node(set, NULL, NULL, axis, options);
5469}
5470
5471/**
5472 * @brief Execute the XPath text() processing instruction (node type). Returns LYXP_SET_NODE_SET
5473 * with the text content of the nodes in the context.
5474 *
5475 * @param[in,out] set Context and result set at the same time.
5476 * @param[in] axis Axis to search on.
5477 * @param[in] options XPath options.
5478 * @return LY_ERR
5479 */
5480static LY_ERR
5481xpath_pi_text(struct lyxp_set *set, enum lyxp_axis axis, uint32_t options)
5482{
5483 uint32_t i;
5484
5485 if (options & LYXP_SCNODE_ALL) {
5486 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
5487 return LY_SUCCESS;
5488 }
5489
5490 if (set->type != LYXP_SET_NODE_SET) {
5491 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
5492 return LY_EVALID;
5493 }
5494
5495 if (axis != LYXP_AXIS_CHILD) {
5496 /* even following and preceding axescan return text nodes, but whatever */
5497 lyxp_set_free_content(set);
5498 return LY_SUCCESS;
5499 }
5500
5501 for (i = 0; i < set->used; ++i) {
5502 switch (set->val.nodes[i].type) {
5503 case LYXP_NODE_NONE:
5504 LOGINT_RET(set->ctx);
5505 case LYXP_NODE_ELEM:
5506 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5507 set->val.nodes[i].type = LYXP_NODE_TEXT;
5508 break;
5509 }
5510 /* fall through */
5511 case LYXP_NODE_ROOT:
5512 case LYXP_NODE_ROOT_CONFIG:
5513 case LYXP_NODE_TEXT:
5514 case LYXP_NODE_META:
5515 set_remove_node_none(set, i);
5516 break;
5517 }
5518 }
5519 set_remove_nodes_none(set);
5520
5521 return LY_SUCCESS;
5522}
5523
5524/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005525 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005526 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005527 * XPath @p set is expected to be a (sc)node set!
5528 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005529 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5530 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005531 * @param[in] set Set with general XPath context.
5532 * @param[in] ctx_scnode Context node to inherit module for unprefixed node for ::LY_PREF_JSON.
Michal Vasko6346ece2019-09-24 13:12:53 +02005533 * @param[out] moveto_mod Expected module of a matching node.
5534 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005535 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005536static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005537moveto_resolve_model(const char **qname, uint16_t *qname_len, const struct lyxp_set *set,
5538 const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005539{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005540 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005541 const char *ptr;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005542 size_t pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005543
Michal Vasko2104e9f2020-03-06 08:23:25 +01005544 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5545
Michal Vasko6346ece2019-09-24 13:12:53 +02005546 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5547 /* specific module */
5548 pref_len = ptr - *qname;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005549 mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, set->prefix_data);
Michal Vasko6346ece2019-09-24 13:12:53 +02005550
Michal Vasko004d3152020-06-11 19:59:22 +02005551 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005552 if (!mod || !mod->implemented) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005553 LOGVAL(set->ctx, LY_VCODE_XP_INMOD, pref_len, *qname);
Michal Vasko6346ece2019-09-24 13:12:53 +02005554 return LY_EVALID;
5555 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005556
Michal Vasko6346ece2019-09-24 13:12:53 +02005557 *qname += pref_len + 1;
5558 *qname_len -= pref_len + 1;
5559 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5560 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005561 mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005562 } else {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005563 switch (set->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02005564 case LY_VALUE_SCHEMA:
5565 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005566 /* current module */
5567 mod = set->cur_mod;
5568 break;
Radek Krejci224d4b42021-04-23 13:54:59 +02005569 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +02005570 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +02005571 case LY_VALUE_LYB:
Michal Vaskoddd76592022-01-17 13:34:48 +01005572 case LY_VALUE_STR_NS:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005573 /* inherit parent (context node) module */
5574 if (ctx_scnode) {
5575 mod = ctx_scnode->module;
5576 } else {
5577 mod = NULL;
5578 }
5579 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02005580 case LY_VALUE_XML:
Michal Vasko52143d12021-04-14 15:36:39 +02005581 /* all nodes need to be prefixed */
5582 LOGVAL(set->ctx, LYVE_DATA, "Non-prefixed node \"%.*s\" in XML xpath found.", *qname_len, *qname);
5583 return LY_EVALID;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005584 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005585 }
5586
Michal Vasko6346ece2019-09-24 13:12:53 +02005587 *moveto_mod = mod;
5588 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005589}
5590
5591/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005592 * @brief Move context @p set to the root. Handles absolute path.
5593 * Result is LYXP_SET_NODE_SET.
5594 *
5595 * @param[in,out] set Set to use.
5596 * @param[in] options Xpath options.
Michal Vaskob0099a92020-08-31 14:55:23 +02005597 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005598 */
Michal Vaskob0099a92020-08-31 14:55:23 +02005599static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005600moveto_root(struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005601{
aPiecek8b0cc152021-05-31 16:40:31 +02005602 assert(!(options & LYXP_SKIP_EXPR));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005603
5604 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02005605 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskob0099a92020-08-31 14:55:23 +02005606 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005607 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005608 set->type = LYXP_SET_NODE_SET;
5609 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005610 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005611 }
Michal Vaskob0099a92020-08-31 14:55:23 +02005612
5613 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005614}
5615
5616/**
5617 * @brief Check @p node as a part of NameTest processing.
5618 *
5619 * @param[in] node Node to check.
Michal Vasko49fec8e2022-05-24 10:28:33 +02005620 * @param[in] node_type Node type of @p node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005621 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005622 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005623 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vaskocdad7122020-11-09 21:04:44 +01005624 * @param[in] options XPath options.
Michal Vasko6346ece2019-09-24 13:12:53 +02005625 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
Michal Vaskocd2c88a2022-06-07 10:54:34 +02005626 * LY_EINVAL if neither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005627 */
5628static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02005629moveto_node_check(const struct lyd_node *node, enum lyxp_node_type node_type, const struct lyxp_set *set,
5630 const char *node_name, const struct lys_module *moveto_mod, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005631{
Michal Vasko49fec8e2022-05-24 10:28:33 +02005632 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5633 assert(node_type == set->root_type);
5634
5635 if (node_name || moveto_mod) {
5636 /* root will not match a specific node */
5637 return LY_ENOT;
5638 }
5639 return LY_SUCCESS;
5640 } else if (node_type != LYXP_NODE_ELEM) {
5641 /* other types will not match */
5642 return LY_ENOT;
5643 }
5644
Michal Vaskodca9f122021-07-16 13:56:22 +02005645 if (!node->schema) {
5646 /* opaque node never matches */
5647 return LY_ENOT;
5648 }
5649
Michal Vasko03ff5a72019-09-11 13:49:33 +02005650 /* module check */
5651 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005652 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005653 }
5654
Michal Vasko5c4e5892019-11-14 12:31:38 +01005655 /* context check */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005656 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005657 return LY_EINVAL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005658 } else if (set->context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5659 (node->schema != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005660 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005661 }
5662
5663 /* name check */
Michal Vasko49fec8e2022-05-24 10:28:33 +02005664 if (node_name && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005665 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005666 }
5667
Michal Vaskoa1424542019-11-14 16:08:52 +01005668 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01005669 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(node->schema) && !(node->flags & LYD_WHEN_TRUE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005670 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005671 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005672
5673 /* match */
5674 return LY_SUCCESS;
5675}
5676
5677/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02005678 * @brief Get the next node in a forward DFS.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005679 *
Michal Vasko49fec8e2022-05-24 10:28:33 +02005680 * @param[in] iter Last returned node.
5681 * @param[in] stop Node to stop the search on and not return.
5682 * @return Next node, NULL if there are no more.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005683 */
Michal Vasko49fec8e2022-05-24 10:28:33 +02005684static const struct lyd_node *
5685moveto_axis_node_next_dfs_forward(const struct lyd_node *iter, const struct lyd_node *stop)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005686{
Michal Vasko49fec8e2022-05-24 10:28:33 +02005687 const struct lyd_node *next = NULL;
5688
5689 /* 1) child */
5690 next = lyd_child(iter);
5691 if (!next) {
5692 if (iter == stop) {
5693 /* reached stop, no more descendants */
5694 return NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005695 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02005696 /* 2) child next sibling */
5697 next = iter->next;
5698 }
5699 while (!next) {
5700 iter = lyd_parent(iter);
5701 if ((!stop && !iter) || (stop && (lyd_parent(iter) == lyd_parent(stop)))) {
5702 return NULL;
5703 }
5704 next = iter->next;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005705 }
5706
Michal Vasko49fec8e2022-05-24 10:28:33 +02005707 return next;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005708}
5709
5710/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02005711 * @brief Get the next node in a backward DFS.
5712 *
5713 * @param[in] iter Last returned node.
5714 * @param[in] stop Node to stop the search on and not return.
5715 * @return Next node, NULL if there are no more.
5716 */
5717static const struct lyd_node *
5718moveto_axis_node_next_dfs_backward(const struct lyd_node *iter, const struct lyd_node *stop)
5719{
5720 const struct lyd_node *next = NULL;
5721
5722 /* 1) previous sibling innermost last child */
5723 next = iter->prev->next ? iter->prev : NULL;
5724 while (next && lyd_child(next)) {
5725 next = lyd_child(next);
5726 next = next->prev;
5727 }
5728
5729 if (!next) {
5730 /* 2) parent */
5731 iter = lyd_parent(iter);
5732 if ((!stop && !iter) || (stop && (lyd_parent(iter) == lyd_parent(stop)))) {
5733 return NULL;
5734 }
5735 next = iter;
5736 }
5737
5738 return next;
5739}
5740
5741/**
5742 * @brief Get the first node on an axis for a context node.
5743 *
5744 * @param[in,out] iter NULL, updated to the next node.
5745 * @param[in,out] iter_type Node type 0 of @p iter, updated to the node type of the next node.
5746 * @param[in] node Context node.
5747 * @param[in] node_type Type of @p node.
5748 * @param[in] axis Axis to use.
5749 * @param[in] set XPath set with the general context.
5750 * @return LY_SUCCESS on success.
5751 * @return LY_ENOTFOUND if no next node found.
5752 */
5753static LY_ERR
5754moveto_axis_node_next_first(const struct lyd_node **iter, enum lyxp_node_type *iter_type, const struct lyd_node *node,
5755 enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set)
5756{
5757 const struct lyd_node *next = NULL;
5758 enum lyxp_node_type next_type = 0;
5759
5760 assert(!*iter);
5761 assert(!*iter_type);
5762
5763 switch (axis) {
5764 case LYXP_AXIS_ANCESTOR_OR_SELF:
5765 case LYXP_AXIS_DESCENDANT_OR_SELF:
5766 case LYXP_AXIS_SELF:
5767 /* return the context node */
5768 next = node;
5769 next_type = node_type;
5770 break;
5771
5772 case LYXP_AXIS_ANCESTOR:
5773 case LYXP_AXIS_PARENT:
5774 if (node_type == LYXP_NODE_ELEM) {
5775 next = lyd_parent(node);
5776 next_type = next ? LYXP_NODE_ELEM : set->root_type;
5777 } else if (node_type == LYXP_NODE_TEXT) {
5778 next = node;
5779 next_type = LYXP_NODE_ELEM;
5780 } else if (node_type == LYXP_NODE_META) {
5781 next = ((struct lyd_meta *)node)->parent;
5782 next_type = LYXP_NODE_ELEM;
5783 } /* else root does not have a parent */
5784 break;
5785
5786 case LYXP_AXIS_CHILD:
5787 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5788 assert(!node);
5789
5790 /* search in all the trees */
5791 next = set->tree;
5792 next_type = next ? LYXP_NODE_ELEM : 0;
5793 } else {
5794 /* search in children */
5795 next = lyd_child(node);
5796 next_type = next ? LYXP_NODE_ELEM : 0;
5797 }
5798 break;
5799
5800 case LYXP_AXIS_DESCENDANT:
5801 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5802 /* top-level nodes */
5803 next = set->tree;
5804 next_type = LYXP_NODE_ELEM;
5805 } else if (node_type == LYXP_NODE_ELEM) {
5806 /* start from the context node */
5807 next = moveto_axis_node_next_dfs_forward(node, node);
5808 next_type = next ? LYXP_NODE_ELEM : 0;
5809 } /* else no children */
5810 break;
5811
5812 case LYXP_AXIS_FOLLOWING:
5813 case LYXP_AXIS_FOLLOWING_SIBLING:
5814 if (node_type == LYXP_NODE_ELEM) {
5815 /* first next sibling */
5816 next = node->next;
5817 next_type = next ? LYXP_NODE_ELEM : 0;
5818 } /* else no sibling */
5819 break;
5820
5821 case LYXP_AXIS_PRECEDING:
5822 if ((node_type == LYXP_NODE_ELEM) && node->prev->next) {
5823 /* skip ancestors */
5824 next = moveto_axis_node_next_dfs_backward(node, NULL);
5825 assert(next);
5826 next_type = LYXP_NODE_ELEM;
5827 } /* else no sibling */
5828 break;
5829
5830 case LYXP_AXIS_PRECEDING_SIBLING:
5831 if (node_type == LYXP_NODE_ELEM) {
5832 /* first previous sibling */
5833 next = node->prev->next ? node->prev : NULL;
5834 next_type = next ? LYXP_NODE_ELEM : 0;
5835 } /* else no sibling */
5836 break;
5837
5838 case LYXP_AXIS_ATTRIBUTE:
5839 /* handled specially */
5840 assert(0);
5841 LOGINT(set->ctx);
5842 break;
5843 }
5844
5845 *iter = next;
5846 *iter_type = next_type;
5847 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
5848}
5849
5850/**
5851 * @brief Iterate over all nodes on an axis for a context node.
5852 *
5853 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
5854 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
5855 * @param[in] node Context node.
5856 * @param[in] node_type Type of @p node.
5857 * @param[in] axis Axis to use.
5858 * @param[in] set XPath set with the general context.
5859 * @return LY_SUCCESS on success.
5860 * @return LY_ENOTFOUND if no next node found.
5861 */
5862static LY_ERR
5863moveto_axis_node_next(const struct lyd_node **iter, enum lyxp_node_type *iter_type, const struct lyd_node *node,
5864 enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set)
5865{
5866 const struct lyd_node *next = NULL;
5867 enum lyxp_node_type next_type = 0;
5868
5869 if (!*iter_type) {
5870 /* first returned node */
5871 return moveto_axis_node_next_first(iter, iter_type, node, node_type, axis, set);
5872 }
5873
5874 switch (axis) {
5875 case LYXP_AXIS_ANCESTOR_OR_SELF:
5876 if ((*iter == node) && (*iter_type == node_type)) {
5877 /* fake first ancestor, we returned self before */
5878 *iter = NULL;
5879 *iter_type = 0;
5880 return moveto_axis_node_next_first(iter, iter_type, node, node_type, LYXP_AXIS_ANCESTOR, set);
5881 } /* else continue ancestor */
5882
5883 /* fallthrough */
5884 case LYXP_AXIS_ANCESTOR:
5885 if (*iter_type == LYXP_NODE_ELEM) {
5886 /* iter parent */
5887 next = lyd_parent(*iter);
5888 next_type = next ? LYXP_NODE_ELEM : set->root_type;
5889 } /* else root, no ancestors */
5890 break;
5891
5892 case LYXP_AXIS_CHILD:
5893 assert(*iter_type == LYXP_NODE_ELEM);
5894
5895 /* next sibling (child) */
5896 next = (*iter)->next;
5897 next_type = next ? LYXP_NODE_ELEM : 0;
5898 break;
5899
5900 case LYXP_AXIS_DESCENDANT_OR_SELF:
5901 if ((*iter == node) && (*iter_type == node_type)) {
5902 /* fake first descendant, we returned self before */
5903 *iter = NULL;
5904 *iter_type = 0;
5905 return moveto_axis_node_next_first(iter, iter_type, node, node_type, LYXP_AXIS_DESCENDANT, set);
5906 } /* else continue descendant */
5907
5908 /* fallthrough */
5909 case LYXP_AXIS_DESCENDANT:
5910 assert(*iter_type == LYXP_NODE_ELEM);
5911 next = moveto_axis_node_next_dfs_forward(*iter, node);
5912 next_type = next ? LYXP_NODE_ELEM : 0;
5913 break;
5914
5915 case LYXP_AXIS_FOLLOWING:
5916 assert(*iter_type == LYXP_NODE_ELEM);
5917 next = moveto_axis_node_next_dfs_forward(*iter, NULL);
5918 next_type = next ? LYXP_NODE_ELEM : 0;
5919 break;
5920
5921 case LYXP_AXIS_FOLLOWING_SIBLING:
5922 assert(*iter_type == LYXP_NODE_ELEM);
5923
5924 /* next sibling */
5925 next = (*iter)->next;
5926 next_type = next ? LYXP_NODE_ELEM : 0;
5927 break;
5928
5929 case LYXP_AXIS_PARENT:
5930 case LYXP_AXIS_SELF:
5931 /* parent/self was returned before */
5932 break;
5933
5934 case LYXP_AXIS_PRECEDING:
5935 assert(*iter_type == LYXP_NODE_ELEM);
5936 next = moveto_axis_node_next_dfs_backward(*iter, NULL);
5937 next_type = next ? LYXP_NODE_ELEM : 0;
5938 break;
5939
5940 case LYXP_AXIS_PRECEDING_SIBLING:
5941 assert(*iter_type == LYXP_NODE_ELEM);
5942
5943 /* previous sibling */
5944 next = (*iter)->prev->next ? (*iter)->prev : NULL;
5945 next_type = next ? LYXP_NODE_ELEM : 0;
5946 break;
5947
5948 case LYXP_AXIS_ATTRIBUTE:
5949 /* handled specially */
5950 assert(0);
5951 LOGINT(set->ctx);
5952 break;
5953 }
5954
5955 *iter = next;
5956 *iter_type = next_type;
5957 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
5958}
5959
5960/**
5961 * @brief Move context @p set to a node. Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005962 *
5963 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005964 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005965 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko49fec8e2022-05-24 10:28:33 +02005966 * @param[in] axis Axis to search on.
Michal Vaskocdad7122020-11-09 21:04:44 +01005967 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005968 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5969 */
5970static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02005971moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, enum lyxp_axis axis,
5972 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005973{
Michal Vasko230cf972021-12-02 12:31:00 +01005974 LY_ERR r, rc = LY_SUCCESS;
Michal Vasko49fec8e2022-05-24 10:28:33 +02005975 const struct lyd_node *iter;
5976 enum lyxp_node_type iter_type;
Michal Vasko230cf972021-12-02 12:31:00 +01005977 struct lyxp_set result;
Michal Vasko49fec8e2022-05-24 10:28:33 +02005978 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005979
aPiecek8b0cc152021-05-31 16:40:31 +02005980 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005981 return LY_SUCCESS;
5982 }
5983
5984 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005985 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005986 return LY_EVALID;
5987 }
5988
Michal Vasko230cf972021-12-02 12:31:00 +01005989 /* init result set */
5990 set_init(&result, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005991
Michal Vasko49fec8e2022-05-24 10:28:33 +02005992 for (i = 0; i < set->used; ++i) {
5993 /* iterate over all the nodes on the axis of the node */
5994 iter = NULL;
5995 iter_type = 0;
5996 while (!moveto_axis_node_next(&iter, &iter_type, set->val.nodes[i].node, set->val.nodes[i].type, axis, set)) {
5997 r = moveto_node_check(iter, iter_type, set, ncname, moveto_mod, options);
5998 if (r == LY_EINCOMPLETE) {
Michal Vasko230cf972021-12-02 12:31:00 +01005999 rc = r;
6000 goto cleanup;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006001 } else if (r) {
6002 continue;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006003 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02006004
6005 /* check for duplicates if they are possible */
6006 switch (axis) {
6007 case LYXP_AXIS_ANCESTOR:
6008 case LYXP_AXIS_ANCESTOR_OR_SELF:
6009 case LYXP_AXIS_DESCENDANT:
6010 case LYXP_AXIS_DESCENDANT_OR_SELF:
6011 case LYXP_AXIS_FOLLOWING:
6012 case LYXP_AXIS_FOLLOWING_SIBLING:
6013 case LYXP_AXIS_PARENT:
6014 case LYXP_AXIS_PRECEDING:
6015 case LYXP_AXIS_PRECEDING_SIBLING:
6016 if (set_dup_node_check(&result, iter, iter_type, -1)) {
6017 continue;
6018 }
6019 break;
6020 case LYXP_AXIS_CHILD:
6021 case LYXP_AXIS_SELF:
6022 break;
6023 case LYXP_AXIS_ATTRIBUTE:
6024 /* handled specially */
6025 assert(0);
6026 LOGINT(set->ctx);
6027 break;
6028 }
6029
6030 /* matching node */
6031 set_insert_node(&result, iter, 0, iter_type, result.used);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006032 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006033 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006034
Michal Vasko230cf972021-12-02 12:31:00 +01006035 /* move result to the set */
6036 lyxp_set_free_content(set);
6037 *set = result;
6038 result.type = LYXP_SET_NUMBER;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006039
6040 /* sort the final set */
6041 set_sort(set);
Michal Vasko230cf972021-12-02 12:31:00 +01006042
6043cleanup:
6044 lyxp_set_free_content(&result);
6045 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006046}
6047
6048/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006049 * @brief Move context @p set to child nodes using hashes. Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006050 *
6051 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02006052 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02006053 * @param[in] predicates If @p scnode is ::LYS_LIST or ::LYS_LEAFLIST, the predicates specifying a single instance.
Michal Vaskocdad7122020-11-09 21:04:44 +01006054 * @param[in] options XPath options.
Michal Vaskod3678892020-05-21 10:06:58 +02006055 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6056 */
6057static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006058moveto_node_hash_child(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates,
Michal Vaskocdad7122020-11-09 21:04:44 +01006059 uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02006060{
Michal Vaskoddd76592022-01-17 13:34:48 +01006061 LY_ERR ret = LY_SUCCESS, r;
Michal Vaskod3678892020-05-21 10:06:58 +02006062 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02006063 const struct lyd_node *siblings;
Michal Vasko230cf972021-12-02 12:31:00 +01006064 struct lyxp_set result;
Michal Vasko004d3152020-06-11 19:59:22 +02006065 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006066
Michal Vasko004d3152020-06-11 19:59:22 +02006067 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02006068
Michal Vasko50aaa072021-12-02 13:11:56 +01006069 /* init result set */
6070 set_init(&result, set);
6071
aPiecek8b0cc152021-05-31 16:40:31 +02006072 if (options & LYXP_SKIP_EXPR) {
Michal Vasko004d3152020-06-11 19:59:22 +02006073 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006074 }
6075
6076 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006077 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko004d3152020-06-11 19:59:22 +02006078 ret = LY_EVALID;
6079 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006080 }
6081
6082 /* context check for all the nodes since we have the schema node */
6083 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
6084 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02006085 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02006086 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
6087 (scnode != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02006088 lyxp_set_free_content(set);
6089 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02006090 }
6091
6092 /* create specific data instance if needed */
6093 if (scnode->nodetype == LYS_LIST) {
6094 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
6095 } else if (scnode->nodetype == LYS_LEAFLIST) {
6096 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02006097 }
6098
Michal Vasko230cf972021-12-02 12:31:00 +01006099 for (i = 0; i < set->used; ++i) {
Michal Vaskod3678892020-05-21 10:06:58 +02006100 siblings = NULL;
6101
6102 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
6103 assert(!set->val.nodes[i].node);
6104
6105 /* search in all the trees */
6106 siblings = set->tree;
6107 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
6108 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006109 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02006110 }
6111
6112 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02006113 if (inst) {
Michal Vaskoddd76592022-01-17 13:34:48 +01006114 r = lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02006115 } else {
Michal Vaskoddd76592022-01-17 13:34:48 +01006116 r = lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02006117 }
Michal Vaskoddd76592022-01-17 13:34:48 +01006118 LY_CHECK_ERR_GOTO(r && (r != LY_ENOTFOUND), ret = r, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02006119
6120 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006121 if (!(options & LYXP_IGNORE_WHEN) && sub && lysc_has_when(sub->schema) && !(sub->flags & LYD_WHEN_TRUE)) {
Michal Vasko004d3152020-06-11 19:59:22 +02006122 ret = LY_EINCOMPLETE;
6123 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006124 }
6125
6126 if (sub) {
6127 /* pos filled later */
Michal Vasko230cf972021-12-02 12:31:00 +01006128 set_insert_node(&result, sub, 0, LYXP_NODE_ELEM, result.used);
Michal Vaskod3678892020-05-21 10:06:58 +02006129 }
6130 }
6131
Michal Vasko230cf972021-12-02 12:31:00 +01006132 /* move result to the set */
6133 lyxp_set_free_content(set);
6134 *set = result;
6135 result.type = LYXP_SET_NUMBER;
6136 assert(!set_sort(set));
6137
Michal Vasko004d3152020-06-11 19:59:22 +02006138cleanup:
Michal Vasko230cf972021-12-02 12:31:00 +01006139 lyxp_set_free_content(&result);
Michal Vasko004d3152020-06-11 19:59:22 +02006140 lyd_free_tree(inst);
6141 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02006142}
6143
6144/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006145 * @brief Check @p node as a part of schema NameTest processing.
6146 *
6147 * @param[in] node Schema node to check.
6148 * @param[in] ctx_scnode Context node.
6149 * @param[in] set Set to read general context from.
6150 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
6151 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
6152 * @return LY_ERR (LY_ENOT if node does not match, LY_EINVAL if neither node nor any children match)
6153 */
6154static LY_ERR
6155moveto_scnode_check(const struct lysc_node *node, const struct lysc_node *ctx_scnode, const struct lyxp_set *set,
6156 const char *node_name, const struct lys_module *moveto_mod)
6157{
6158 if (!moveto_mod && node_name) {
6159 switch (set->format) {
6160 case LY_VALUE_SCHEMA:
6161 case LY_VALUE_SCHEMA_RESOLVED:
6162 /* use current module */
6163 moveto_mod = set->cur_mod;
6164 break;
6165 case LY_VALUE_JSON:
6166 case LY_VALUE_LYB:
6167 case LY_VALUE_STR_NS:
6168 /* inherit module of the context node, if any */
6169 if (ctx_scnode) {
6170 moveto_mod = ctx_scnode->module;
6171 }
6172 break;
6173 case LY_VALUE_CANON:
6174 case LY_VALUE_XML:
6175 /* not defined */
6176 LOGINT(set->ctx);
6177 return LY_EINVAL;
6178 }
6179 }
6180
6181 if (!node) {
6182 /* root will not match a specific node */
6183 if (node_name || moveto_mod) {
6184 return LY_ENOT;
6185 }
6186 return LY_SUCCESS;
6187 }
6188
6189 /* module check */
6190 if (moveto_mod && (node->module != moveto_mod)) {
6191 return LY_ENOT;
6192 }
6193
6194 /* context check */
6195 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
6196 return LY_EINVAL;
6197 } else if (set->context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != set->context_op)) {
6198 return LY_EINVAL;
6199 }
6200
6201 /* name check */
6202 if (node_name && (node->name != node_name)) {
6203 return LY_ENOT;
6204 }
6205
6206 /* match */
6207 return LY_SUCCESS;
6208}
6209
6210/**
6211 * @brief Get the next node in a forward schema node DFS.
6212 *
6213 * @param[in] iter Last returned node.
6214 * @param[in] stop Node to stop the search on and not return.
6215 * @param[in] getnext_opts Options for ::lys_getnext().
6216 * @return Next node, NULL if there are no more.
6217 */
6218static const struct lysc_node *
6219moveto_axis_scnode_next_dfs_forward(const struct lysc_node *iter, const struct lysc_node *stop, uint32_t getnext_opts)
6220{
6221 const struct lysc_node *next = NULL;
6222
6223 next = lysc_node_child(iter);
6224 if (!next) {
6225 /* no children, try siblings */
6226 if (iter == stop) {
6227 /* we are done, no next element to process */
6228 return NULL;
6229 }
6230
6231 next = lys_getnext(iter, lysc_data_parent(iter), NULL, getnext_opts);
6232 }
6233 while (!next && iter) {
6234 /* parent is already processed, go to its sibling */
6235 iter = iter->parent;
6236 if (iter == stop) {
6237 /* we are done, no next element to process */
6238 return NULL;
6239 }
6240 next = lys_getnext(iter, lysc_data_parent(iter), NULL, getnext_opts);
6241 }
6242
6243 return next;
6244}
6245
6246/**
6247 * @brief Consider schema node based on its in_ctx enum value.
6248 *
6249 * @param[in,out] in_ctx In_ctx enum of the schema node, may be updated.
6250 * @param[in] axis Axis to use.
6251 * @return LY_SUCCESS on success.
6252 * @return LY_ENOT if the node should not be returned.
6253 */
6254static LY_ERR
6255moveto_axis_scnode_next_in_ctx(int32_t *in_ctx, enum lyxp_axis axis)
6256{
6257 switch (axis) {
6258 case LYXP_AXIS_SELF:
6259 if ((*in_ctx == LYXP_SET_SCNODE_START) || (*in_ctx == LYXP_SET_SCNODE_ATOM_CTX)) {
6260 /* additionally put the start node into context */
6261 *in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
6262 return LY_SUCCESS;
6263 }
6264 break;
6265 case LYXP_AXIS_PARENT:
6266 case LYXP_AXIS_ANCESTOR_OR_SELF:
6267 case LYXP_AXIS_ANCESTOR:
6268 case LYXP_AXIS_DESCENDANT_OR_SELF:
6269 case LYXP_AXIS_DESCENDANT:
6270 case LYXP_AXIS_FOLLOWING:
6271 case LYXP_AXIS_FOLLOWING_SIBLING:
6272 case LYXP_AXIS_PRECEDING:
6273 case LYXP_AXIS_PRECEDING_SIBLING:
6274 case LYXP_AXIS_CHILD:
6275 if (*in_ctx == LYXP_SET_SCNODE_START) {
6276 /* remember that context node was used */
6277 *in_ctx = LYXP_SET_SCNODE_START_USED;
6278 return LY_SUCCESS;
6279 } else if (*in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
6280 /* traversed */
6281 *in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
6282 return LY_SUCCESS;
6283 }
6284 break;
6285 case LYXP_AXIS_ATTRIBUTE:
6286 /* unreachable */
6287 assert(0);
6288 LOGINT(NULL);
6289 break;
6290 }
6291
6292 return LY_ENOT;
6293}
6294
6295/**
6296 * @brief Get previous sibling for a schema node.
6297 *
6298 * @param[in] scnode Schema node.
6299 * @param[in] getnext_opts Options for ::lys_getnext().
6300 * @return Previous sibling, NULL if none.
6301 */
6302static const struct lysc_node *
6303moveto_axis_scnode_preceding_sibling(const struct lysc_node *scnode, uint32_t getnext_opts)
6304{
6305 const struct lysc_node *next = NULL, *prev = NULL;
6306
6307 while ((next = lys_getnext(next, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts))) {
6308 if (next == scnode) {
6309 break;
6310 }
6311
6312 prev = next;
6313 }
6314
6315 return prev;
6316}
6317
6318/**
6319 * @brief Get the first schema node on an axis for a context node.
6320 *
6321 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
6322 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
6323 * @param[in,out] iter_mod Internal module iterator, do not change.
6324 * @param[in,out] iter_mod_idx Internal module index iterator, do not change.
6325 * @param[in] scnode Context node.
6326 * @param[in] node_type Type of @p scnode.
6327 * @param[in] in_ctx In_ctx enum of @p scnode.
6328 * @param[in] axis Axis to use.
6329 * @param[in] set XPath set with the general context.
6330 * @param[in] getnext_opts Options for ::lys_getnext().
6331 * @return LY_SUCCESS on success.
6332 * @return LY_ENOTFOUND if no next node found.
6333 */
6334static LY_ERR
6335moveto_axis_scnode_next_first(const struct lysc_node **iter, enum lyxp_node_type *iter_type, const struct lys_module **iter_mod,
6336 uint32_t *iter_mod_idx, const struct lysc_node *scnode, enum lyxp_node_type node_type, enum lyxp_axis axis,
6337 struct lyxp_set *set, uint32_t getnext_opts)
6338{
6339 const struct lysc_node *next = NULL;
6340 enum lyxp_node_type next_type = 0;
6341
6342 assert(!*iter);
6343 assert(!*iter_type);
6344
6345 *iter_mod = NULL;
6346 *iter_mod_idx = 0;
6347
6348 switch (axis) {
6349 case LYXP_AXIS_ANCESTOR_OR_SELF:
6350 case LYXP_AXIS_DESCENDANT_OR_SELF:
6351 case LYXP_AXIS_SELF:
6352 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ELEM)) {
6353 /* just return the node */
6354 next = scnode;
6355 next_type = node_type;
6356 }
6357 break;
6358
6359 case LYXP_AXIS_ANCESTOR:
6360 case LYXP_AXIS_PARENT:
6361 if (node_type == LYXP_NODE_ELEM) {
6362 next = lysc_data_parent(scnode);
6363 next_type = next ? LYXP_NODE_ELEM : set->root_type;
6364 } /* else no parent */
6365 break;
6366
6367 case LYXP_AXIS_DESCENDANT:
6368 case LYXP_AXIS_CHILD:
6369 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
6370 /* it can actually be in any module, it's all <running>, and even if it's moveto_mod (if set),
6371 * it can be in a top-level augment */
6372 while ((*iter_mod = ly_ctx_get_module_iter(set->ctx, iter_mod_idx))) {
6373 /* module may not be implemented or not compiled yet */
6374 if (!(*iter_mod)->compiled) {
6375 continue;
6376 }
6377
6378 /* get next node */
6379 if ((next = lys_getnext(NULL, NULL, (*iter_mod)->compiled, getnext_opts))) {
6380 next_type = LYXP_NODE_ELEM;
6381 break;
6382 }
6383 }
6384 } else if (node_type == LYXP_NODE_ELEM) {
6385 /* get next node */
6386 next = lys_getnext(NULL, scnode, NULL, getnext_opts);
6387 next_type = next ? LYXP_NODE_ELEM : 0;
6388 }
6389 break;
6390
6391 case LYXP_AXIS_FOLLOWING:
6392 case LYXP_AXIS_FOLLOWING_SIBLING:
6393 if (node_type == LYXP_NODE_ELEM) {
6394 /* first next sibling */
6395 next = lys_getnext(scnode, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts);
6396 next_type = next ? LYXP_NODE_ELEM : 0;
6397 } /* else no sibling */
6398 break;
6399
6400 case LYXP_AXIS_PRECEDING:
6401 case LYXP_AXIS_PRECEDING_SIBLING:
6402 if (node_type == LYXP_NODE_ELEM) {
6403 /* first parent sibling */
6404 next = lys_getnext(NULL, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts);
6405 if (next == scnode) {
6406 /* no preceding sibling */
6407 next = NULL;
6408 }
6409 next_type = next ? LYXP_NODE_ELEM : 0;
6410 } /* else no sibling */
6411 break;
6412
6413 case LYXP_AXIS_ATTRIBUTE:
6414 /* unreachable */
6415 assert(0);
6416 LOGINT(set->ctx);
6417 break;
6418 }
6419
6420 *iter = next;
6421 *iter_type = next_type;
6422 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
6423}
6424
6425/**
6426 * @brief Iterate over all schema nodes on an axis for a context node.
6427 *
6428 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
6429 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
6430 * @param[in,out] iter_mod Internal module iterator, do not change.
6431 * @param[in,out] iter_mod_idx Internal module index iterator, do not change.
6432 * @param[in] scnode Context node.
6433 * @param[in] node_type Type of @p scnode.
6434 * @param[in] axis Axis to use.
6435 * @param[in] set XPath set with the general context.
6436 * @param[in] getnext_opts Options for ::lys_getnext().
6437 * @return LY_SUCCESS on success.
6438 * @return LY_ENOTFOUND if no next node found.
6439 */
6440static LY_ERR
6441moveto_axis_scnode_next(const struct lysc_node **iter, enum lyxp_node_type *iter_type, const struct lys_module **iter_mod,
6442 uint32_t *iter_mod_idx, const struct lysc_node *scnode, enum lyxp_node_type node_type, enum lyxp_axis axis,
6443 struct lyxp_set *set, uint32_t getnext_opts)
6444{
6445 const struct lysc_node *next = NULL, *dfs_stop;
6446 enum lyxp_node_type next_type = 0;
6447
6448 if (!*iter_type) {
6449 /* first returned node */
6450 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type, axis, set,
6451 getnext_opts);
6452 }
6453
6454 switch (axis) {
6455 case LYXP_AXIS_PARENT:
6456 case LYXP_AXIS_SELF:
6457 /* parent/self was returned before */
6458 break;
6459
6460 case LYXP_AXIS_ANCESTOR_OR_SELF:
6461 if ((*iter == scnode) && (*iter_type == node_type)) {
6462 /* fake first ancestor, we returned self before */
6463 *iter = NULL;
6464 *iter_type = 0;
6465 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type,
6466 LYXP_AXIS_ANCESTOR, set, getnext_opts);
6467 } /* else continue ancestor */
6468
6469 /* fallthrough */
6470 case LYXP_AXIS_ANCESTOR:
6471 if (*iter_type == LYXP_NODE_ELEM) {
6472 next = lysc_data_parent(*iter);
6473 next_type = next ? LYXP_NODE_ELEM : set->root_type;
6474 } /* else no ancestor */
6475 break;
6476
6477 case LYXP_AXIS_DESCENDANT_OR_SELF:
6478 if ((*iter == scnode) && (*iter_type == node_type)) {
6479 /* fake first descendant, we returned self before */
6480 *iter = NULL;
6481 *iter_type = 0;
6482 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type,
6483 LYXP_AXIS_DESCENDANT, set, getnext_opts);
6484 } /* else DFS until context node */
6485 dfs_stop = scnode;
6486
6487 /* fallthrough */
6488 case LYXP_AXIS_DESCENDANT:
6489 if (axis == LYXP_AXIS_DESCENDANT) {
6490 /* DFS until the context node */
6491 dfs_stop = scnode;
6492 }
6493
6494 /* fallthrough */
6495 case LYXP_AXIS_PRECEDING:
6496 if (axis == LYXP_AXIS_PRECEDING) {
6497 /* DFS until the previous sibling */
6498 dfs_stop = moveto_axis_scnode_preceding_sibling(scnode, getnext_opts);
6499 assert(dfs_stop);
6500
6501 if (*iter == dfs_stop) {
6502 /* we are done */
6503 break;
6504 }
6505 }
6506
6507 /* fallthrough */
6508 case LYXP_AXIS_FOLLOWING:
6509 if (axis == LYXP_AXIS_FOLLOWING) {
6510 /* DFS through the whole module */
6511 dfs_stop = NULL;
6512 }
6513
6514 /* nested nodes */
6515 assert(*iter);
6516 next = moveto_axis_scnode_next_dfs_forward(*iter, dfs_stop, getnext_opts);
6517 if (next) {
6518 next_type = LYXP_NODE_ELEM;
6519 break;
6520 } /* else get next top-level node just like a child */
6521
6522 /* fallthrough */
6523 case LYXP_AXIS_CHILD:
6524 case LYXP_AXIS_FOLLOWING_SIBLING:
6525 if (!*iter_mod) {
6526 /* nodes from a single module */
6527 if ((next = lys_getnext(*iter, lysc_data_parent(*iter), (*iter)->module->compiled, getnext_opts))) {
6528 next_type = LYXP_NODE_ELEM;
6529 break;
6530 }
6531
6532 assert(scnode);
6533 if (!lysc_data_parent(scnode)) {
6534 /* iterating over top-level nodes, find next */
6535 while (lysc_data_parent(*iter)) {
6536 *iter = lysc_data_parent(*iter);
6537 }
6538 if ((next = lys_getnext(*iter, NULL, (*iter)->module->compiled, getnext_opts))) {
6539 next_type = LYXP_NODE_ELEM;
6540 break;
6541 }
6542 }
6543 }
6544
6545 while (*iter_mod) {
6546 /* module top-level nodes */
6547 if ((next = lys_getnext(*iter, NULL, (*iter_mod)->compiled, getnext_opts))) {
6548 next_type = LYXP_NODE_ELEM;
6549 break;
6550 }
6551
6552 /* get next module */
6553 while ((*iter_mod = ly_ctx_get_module_iter(set->ctx, iter_mod_idx))) {
6554 /* module may not be implemented or not compiled yet */
6555 if ((*iter_mod)->compiled) {
6556 break;
6557 }
6558 }
6559
6560 /* new module, start over */
6561 *iter = NULL;
6562 }
6563 break;
6564
6565 case LYXP_AXIS_PRECEDING_SIBLING:
6566 assert(*iter);
6567
6568 /* next parent sibling until scnode */
6569 next = lys_getnext(*iter, lysc_data_parent(*iter), (*iter)->module->compiled, getnext_opts);
6570 if (next == scnode) {
6571 /* no previous sibling */
6572 next = NULL;
6573 }
6574 next_type = next ? LYXP_NODE_ELEM : 0;
6575 break;
6576
6577 case LYXP_AXIS_ATTRIBUTE:
6578 /* unreachable */
6579 assert(0);
6580 LOGINT(set->ctx);
6581 break;
6582 }
6583
6584 *iter = next;
6585 *iter_type = next_type;
6586 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
6587}
6588
6589/**
Michal Vaskod3678892020-05-21 10:06:58 +02006590 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
6591 *
6592 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006593 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006594 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko49fec8e2022-05-24 10:28:33 +02006595 * @param[in] axis Axis to search on.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006596 * @param[in] options XPath options.
6597 * @return LY_ERR
6598 */
6599static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006600moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, enum lyxp_axis axis,
6601 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006602{
Radek Krejci857189e2020-09-01 13:26:36 +02006603 ly_bool temp_ctx = 0;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006604 uint32_t getnext_opts, orig_used, i, mod_idx, idx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006605 const struct lys_module *mod;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006606 const struct lysc_node *iter;
6607 enum lyxp_node_type iter_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006608
aPiecek8b0cc152021-05-31 16:40:31 +02006609 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006610 return LY_SUCCESS;
6611 }
6612
6613 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006614 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006615 return LY_EVALID;
6616 }
6617
Michal Vaskocafad9d2019-11-07 15:20:03 +01006618 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01006619 getnext_opts = 0;
Michal Vaskocafad9d2019-11-07 15:20:03 +01006620 if (options & LYXP_SCNODE_OUTPUT) {
6621 getnext_opts |= LYS_GETNEXT_OUTPUT;
6622 }
6623
Michal Vasko03ff5a72019-09-11 13:49:33 +02006624 orig_used = set->used;
6625 for (i = 0; i < orig_used; ++i) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006626 /* update in_ctx first */
6627 if (moveto_axis_scnode_next_in_ctx(&set->val.scnodes[i].in_ctx, axis)) {
6628 /* not usable, skip */
6629 continue;
6630 }
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006631
Michal Vasko49fec8e2022-05-24 10:28:33 +02006632 iter = NULL;
6633 iter_type = 0;
6634 while (!moveto_axis_scnode_next(&iter, &iter_type, &mod, &mod_idx, set->val.scnodes[i].scnode,
6635 set->val.scnodes[i].type, axis, set, getnext_opts)) {
6636 if (moveto_scnode_check(iter, NULL, set, ncname, moveto_mod)) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006637 continue;
6638 }
6639
Michal Vasko49fec8e2022-05-24 10:28:33 +02006640 /* insert */
6641 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, iter_type, &idx));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006642
Michal Vasko49fec8e2022-05-24 10:28:33 +02006643 /* we need to prevent these nodes from being considered in this moveto */
6644 if ((idx < orig_used) && (idx > i)) {
6645 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
6646 temp_ctx = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006647 }
6648 }
6649 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006650
6651 /* correct temporary in_ctx values */
6652 if (temp_ctx) {
6653 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006654 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NEW_CTX) {
6655 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006656 }
6657 }
6658 }
6659
6660 return LY_SUCCESS;
6661}
6662
6663/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006664 * @brief Move context @p set to a child node and all its descendants. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006665 * Context position aware.
6666 *
6667 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006668 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006669 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01006670 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006671 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6672 */
6673static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006674moveto_node_alldesc_child(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006675{
6676 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006677 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006678 struct lyxp_set ret_set;
6679 LY_ERR rc;
6680
aPiecek8b0cc152021-05-31 16:40:31 +02006681 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006682 return LY_SUCCESS;
6683 }
6684
6685 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006686 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006687 return LY_EVALID;
6688 }
6689
Michal Vasko9f96a052020-03-10 09:41:45 +01006690 /* replace the original nodes (and throws away all text and meta nodes, root is replaced by a child) */
Michal Vasko49fec8e2022-05-24 10:28:33 +02006691 rc = xpath_pi_node(set, LYXP_AXIS_CHILD, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006692 LY_CHECK_RET(rc);
6693
Michal Vasko6346ece2019-09-24 13:12:53 +02006694 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006695 set_init(&ret_set, set);
6696 for (i = 0; i < set->used; ++i) {
6697
6698 /* TREE DFS */
6699 start = set->val.nodes[i].node;
6700 for (elem = next = start; elem; elem = next) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006701 rc = moveto_node_check(elem, LYXP_NODE_ELEM, set, ncname, moveto_mod, options);
Michal Vasko6346ece2019-09-24 13:12:53 +02006702 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006703 /* add matching node into result set */
6704 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
6705 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
6706 /* the node is a duplicate, we'll process it later in the set */
6707 goto skip_children;
6708 }
Michal Vasko6346ece2019-09-24 13:12:53 +02006709 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02006710 return rc;
6711 } else if (rc == LY_EINVAL) {
6712 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006713 }
6714
6715 /* TREE DFS NEXT ELEM */
6716 /* select element for the next run - children first */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006717 next = lyd_child(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006718 if (!next) {
6719skip_children:
6720 /* no children, so try siblings, but only if it's not the start,
6721 * that is considered to be the root and it's siblings are not traversed */
6722 if (elem != start) {
6723 next = elem->next;
6724 } else {
6725 break;
6726 }
6727 }
6728 while (!next) {
6729 /* no siblings, go back through the parents */
Michal Vasko9e685082021-01-29 14:49:09 +01006730 if (lyd_parent(elem) == start) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006731 /* we are done, no next element to process */
6732 break;
6733 }
6734 /* parent is already processed, go to its sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01006735 elem = lyd_parent(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006736 next = elem->next;
6737 }
6738 }
6739 }
6740
6741 /* make the temporary set the current one */
6742 ret_set.ctx_pos = set->ctx_pos;
6743 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006744 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006745 memcpy(set, &ret_set, sizeof *set);
6746
6747 return LY_SUCCESS;
6748}
6749
6750/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006751 * @brief Move context @p set to a child schema node and all its descendants starting from a node.
6752 * Result is LYXP_SET_NODE_SET.
6753 *
6754 * @param[in] set Set to use.
6755 * @param[in] start Start node whose subtree to add.
6756 * @param[in] start_idx Index of @p start in @p set.
6757 * @param[in] moveto_mod Matching node module, NULL for no prefix.
6758 * @param[in] ncname Matching node name in the dictionary, NULL for any.
6759 * @param[in] options XPath options.
6760 * @return LY_ERR value.
6761 */
6762static LY_ERR
6763moveto_scnode_dfs(struct lyxp_set *set, const struct lysc_node *start, uint32_t start_idx,
6764 const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
6765{
6766 const struct lysc_node *next, *elem;
6767 uint32_t idx;
6768 LY_ERR rc;
6769
6770 /* TREE DFS */
6771 for (elem = next = start; elem; elem = next) {
6772 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
6773 /* schema-only nodes, skip root */
6774 goto next_iter;
6775 }
6776
6777 rc = moveto_scnode_check(elem, start, set, ncname, moveto_mod);
6778 if (!rc) {
6779 if (lyxp_set_scnode_contains(set, elem, LYXP_NODE_ELEM, start_idx, &idx)) {
6780 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
6781 if (idx > start_idx) {
6782 /* we will process it later in the set */
6783 goto skip_children;
6784 }
6785 } else {
6786 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM, NULL));
6787 }
6788 } else if (rc == LY_EINVAL) {
6789 goto skip_children;
6790 }
6791
6792next_iter:
6793 /* TREE DFS NEXT ELEM */
6794 /* select element for the next run - children first */
6795 next = lysc_node_child(elem);
6796 if (next && (next->nodetype == LYS_INPUT) && (options & LYXP_SCNODE_OUTPUT)) {
6797 next = next->next;
6798 } else if (next && (next->nodetype == LYS_OUTPUT) && !(options & LYXP_SCNODE_OUTPUT)) {
6799 next = next->next;
6800 }
6801 if (!next) {
6802skip_children:
6803 /* no children, so try siblings, but only if it's not the start,
6804 * that is considered to be the root and it's siblings are not traversed */
6805 if (elem != start) {
6806 next = elem->next;
6807 } else {
6808 break;
6809 }
6810 }
6811 while (!next) {
6812 /* no siblings, go back through the parents */
6813 if (elem->parent == start) {
6814 /* we are done, no next element to process */
6815 break;
6816 }
6817 /* parent is already processed, go to its sibling */
6818 elem = elem->parent;
6819 next = elem->next;
6820 }
6821 }
6822
6823 return LY_SUCCESS;
6824}
6825
6826/**
6827 * @brief Move context @p set to a child schema node and all its descendants. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006828 *
6829 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006830 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006831 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006832 * @param[in] options XPath options.
Michal Vasko49fec8e2022-05-24 10:28:33 +02006833 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006834 */
6835static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006836moveto_scnode_alldesc_child(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006837{
Michal Vasko49fec8e2022-05-24 10:28:33 +02006838 uint32_t i, orig_used, mod_idx;
6839 const struct lys_module *mod;
6840 const struct lysc_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006841
aPiecek8b0cc152021-05-31 16:40:31 +02006842 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006843 return LY_SUCCESS;
6844 }
6845
6846 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006847 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006848 return LY_EVALID;
6849 }
6850
Michal Vasko03ff5a72019-09-11 13:49:33 +02006851 orig_used = set->used;
6852 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006853 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
6854 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006855 continue;
6856 }
6857
6858 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01006859 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01006860 } else {
Michal Vasko1a09b212021-05-06 13:00:10 +02006861 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006862 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006863
Michal Vasko49fec8e2022-05-24 10:28:33 +02006864 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6865 /* traverse all top-level nodes in all the modules */
6866 mod_idx = 0;
6867 while ((mod = ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6868 /* module may not be implemented or not compiled yet */
6869 if (!mod->compiled) {
6870 continue;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006871 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006872
Michal Vasko49fec8e2022-05-24 10:28:33 +02006873 root = NULL;
6874 /* no getnext opts needed */
6875 while ((root = lys_getnext(root, NULL, mod->compiled, 0))) {
6876 LY_CHECK_RET(moveto_scnode_dfs(set, root, i, moveto_mod, ncname, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006877 }
6878 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02006879
6880 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6881 /* add all the descendants recursively */
6882 LY_CHECK_RET(moveto_scnode_dfs(set, set->val.scnodes[i].scnode, i, moveto_mod, ncname, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006883 }
6884 }
6885
6886 return LY_SUCCESS;
6887}
6888
6889/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006890 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006891 * Indirectly context position aware.
6892 *
6893 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02006894 * @param[in] mod Matching metadata module, NULL for any.
6895 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
aPiecek8b0cc152021-05-31 16:40:31 +02006896 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006897 * @return LY_ERR
6898 */
6899static LY_ERR
aPiecek8b0cc152021-05-31 16:40:31 +02006900moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006901{
Michal Vasko9f96a052020-03-10 09:41:45 +01006902 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006903
aPiecek8b0cc152021-05-31 16:40:31 +02006904 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006905 return LY_SUCCESS;
6906 }
6907
6908 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006909 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006910 return LY_EVALID;
6911 }
6912
Radek Krejci1deb5be2020-08-26 16:43:36 +02006913 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02006914 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006915
6916 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
6917 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01006918 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006919 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006920
6921 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006922 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006923 continue;
6924 }
6925
Michal Vaskod3678892020-05-21 10:06:58 +02006926 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006927 /* match */
6928 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006929 set->val.meta[i].meta = sub;
6930 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006931 /* pos does not change */
6932 replaced = 1;
6933 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006934 set_insert_node(set, (struct lyd_node *)sub, set->val.nodes[i].pos, LYXP_NODE_META, i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006935 }
6936 ++i;
6937 }
6938 }
6939 }
6940
6941 if (!replaced) {
6942 /* no match */
6943 set_remove_node(set, i);
6944 }
6945 }
6946
6947 return LY_SUCCESS;
6948}
6949
6950/**
6951 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02006952 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006953 *
6954 * @param[in,out] set1 Set to use for the result.
6955 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006956 * @return LY_ERR
6957 */
6958static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006959moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006960{
6961 LY_ERR rc;
6962
Michal Vaskod3678892020-05-21 10:06:58 +02006963 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006964 LOGVAL(set1->ctx, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006965 return LY_EVALID;
6966 }
6967
6968 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02006969 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006970 return LY_SUCCESS;
6971 }
6972
Michal Vaskod3678892020-05-21 10:06:58 +02006973 if (!set1->used) {
aPiecekadc1e4f2021-10-07 11:15:12 +02006974 /* release hidden allocated data (lyxp_set.size) */
6975 lyxp_set_free_content(set1);
6976 /* direct copying of the entire structure */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006977 memcpy(set1, set2, sizeof *set1);
6978 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02006979 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006980 return LY_SUCCESS;
6981 }
6982
6983 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006984 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006985
6986 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006987 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006988 LY_CHECK_RET(rc);
6989
6990 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006991 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006992
6993 return LY_SUCCESS;
6994}
6995
6996/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006997 * @brief Move context @p set to an attribute in any of the descendants. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006998 * Context position aware.
6999 *
7000 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02007001 * @param[in] mod Matching metadata module, NULL for any.
7002 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01007003 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007004 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7005 */
7006static int
Michal Vaskocdad7122020-11-09 21:04:44 +01007007moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007008{
Michal Vasko9f96a052020-03-10 09:41:45 +01007009 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007010 struct lyxp_set *set_all_desc = NULL;
7011 LY_ERR rc;
7012
aPiecek8b0cc152021-05-31 16:40:31 +02007013 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007014 return LY_SUCCESS;
7015 }
7016
7017 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007018 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007019 return LY_EVALID;
7020 }
7021
Michal Vasko03ff5a72019-09-11 13:49:33 +02007022 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
7023 * but it likely won't be used much, so it's a waste of time */
7024 /* copy the context */
7025 set_all_desc = set_copy(set);
7026 /* get all descendant nodes (the original context nodes are removed) */
Michal Vasko49fec8e2022-05-24 10:28:33 +02007027 rc = moveto_node_alldesc_child(set_all_desc, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007028 if (rc != LY_SUCCESS) {
7029 lyxp_set_free(set_all_desc);
7030 return rc;
7031 }
7032 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007033 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007034 if (rc != LY_SUCCESS) {
7035 lyxp_set_free(set_all_desc);
7036 return rc;
7037 }
7038 lyxp_set_free(set_all_desc);
7039
Radek Krejci1deb5be2020-08-26 16:43:36 +02007040 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02007041 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007042
7043 /* only attributes of an elem can be in the result, skip all the rest,
7044 * we have all attributes qualified in lyd tree */
7045 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01007046 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007047 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02007048 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007049 continue;
7050 }
7051
Michal Vaskod3678892020-05-21 10:06:58 +02007052 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007053 /* match */
7054 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01007055 set->val.meta[i].meta = sub;
7056 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007057 /* pos does not change */
7058 replaced = 1;
7059 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01007060 set_insert_node(set, (struct lyd_node *)sub, set->val.meta[i].pos, LYXP_NODE_META, i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007061 }
7062 ++i;
7063 }
7064 }
7065 }
7066
7067 if (!replaced) {
7068 /* no match */
7069 set_remove_node(set, i);
7070 }
7071 }
7072
7073 return LY_SUCCESS;
7074}
7075
7076/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007077 * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
7078 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
7079 *
7080 * @param[in,out] set1 Set to use for the result.
7081 * @param[in] set2 Set acting as the second operand for @p op.
7082 * @param[in] op Comparison operator to process.
7083 * @param[in] options XPath options.
7084 * @return LY_ERR
7085 */
7086static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02007087moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007088{
7089 /*
7090 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
7091 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
7092 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7093 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7094 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
7095 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7096 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7097 *
7098 * '=' or '!='
7099 * BOOLEAN + BOOLEAN
7100 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7101 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7102 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7103 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7104 * NUMBER + NUMBER
7105 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7106 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7107 * STRING + STRING
7108 *
7109 * '<=', '<', '>=', '>'
7110 * NUMBER + NUMBER
7111 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7112 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7113 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7114 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7115 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7116 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7117 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7118 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7119 */
7120 struct lyxp_set iter1, iter2;
7121 int result;
7122 int64_t i;
7123 LY_ERR rc;
7124
Michal Vasko004d3152020-06-11 19:59:22 +02007125 memset(&iter1, 0, sizeof iter1);
7126 memset(&iter2, 0, sizeof iter2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007127
7128 /* iterative evaluation with node-sets */
7129 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
7130 if (set1->type == LYXP_SET_NODE_SET) {
7131 for (i = 0; i < set1->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02007132 /* cast set1 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007133 switch (set2->type) {
7134 case LYXP_SET_NUMBER:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007135 rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007136 break;
7137 case LYXP_SET_BOOLEAN:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007138 rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007139 break;
7140 default:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007141 rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007142 break;
7143 }
7144 LY_CHECK_RET(rc);
7145
Michal Vasko4c7763f2020-07-27 17:40:37 +02007146 /* canonize set2 */
7147 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc);
7148
7149 /* compare recursively */
7150 rc = moveto_op_comp(&iter1, &iter2, op, options);
7151 lyxp_set_free_content(&iter2);
7152 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007153
7154 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02007155 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007156 set_fill_boolean(set1, 1);
7157 return LY_SUCCESS;
7158 }
7159 }
7160 } else {
7161 for (i = 0; i < set2->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02007162 /* set set2 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007163 switch (set1->type) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02007164 case LYXP_SET_NUMBER:
7165 rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i);
7166 break;
7167 case LYXP_SET_BOOLEAN:
7168 rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i);
7169 break;
7170 default:
7171 rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i);
7172 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007173 }
7174 LY_CHECK_RET(rc);
7175
Michal Vasko4c7763f2020-07-27 17:40:37 +02007176 /* canonize set1 */
7177 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter1, set1, &set2->val.nodes[i]), lyxp_set_free_content(&iter2), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007178
Michal Vasko4c7763f2020-07-27 17:40:37 +02007179 /* compare recursively */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007180 rc = moveto_op_comp(&iter1, &iter2, op, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007181 lyxp_set_free_content(&iter2);
Michal Vasko4c7763f2020-07-27 17:40:37 +02007182 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007183
7184 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02007185 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007186 set_fill_boolean(set1, 1);
7187 return LY_SUCCESS;
7188 }
7189 }
7190 }
7191
7192 /* false for all nodes */
7193 set_fill_boolean(set1, 0);
7194 return LY_SUCCESS;
7195 }
7196
7197 /* first convert properly */
7198 if ((op[0] == '=') || (op[0] == '!')) {
7199 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007200 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
7201 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007202 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007203 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007204 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007205 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007206 LY_CHECK_RET(rc);
7207 } /* else we have 2 strings */
7208 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007209 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007210 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007211 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007212 LY_CHECK_RET(rc);
7213 }
7214
7215 assert(set1->type == set2->type);
7216
7217 /* compute result */
7218 if (op[0] == '=') {
7219 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02007220 result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007221 } else if (set1->type == LYXP_SET_NUMBER) {
7222 result = (set1->val.num == set2->val.num);
7223 } else {
7224 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01007225 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007226 }
7227 } else if (op[0] == '!') {
7228 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02007229 result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007230 } else if (set1->type == LYXP_SET_NUMBER) {
7231 result = (set1->val.num != set2->val.num);
7232 } else {
7233 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoc2058432020-11-06 17:26:21 +01007234 result = strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007235 }
7236 } else {
7237 assert(set1->type == LYXP_SET_NUMBER);
7238 if (op[0] == '<') {
7239 if (op[1] == '=') {
7240 result = (set1->val.num <= set2->val.num);
7241 } else {
7242 result = (set1->val.num < set2->val.num);
7243 }
7244 } else {
7245 if (op[1] == '=') {
7246 result = (set1->val.num >= set2->val.num);
7247 } else {
7248 result = (set1->val.num > set2->val.num);
7249 }
7250 }
7251 }
7252
7253 /* assign result */
7254 if (result) {
7255 set_fill_boolean(set1, 1);
7256 } else {
7257 set_fill_boolean(set1, 0);
7258 }
7259
7260 return LY_SUCCESS;
7261}
7262
7263/**
7264 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
7265 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
7266 *
7267 * @param[in,out] set1 Set to use for the result.
7268 * @param[in] set2 Set acting as the second operand for @p op.
7269 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007270 * @return LY_ERR
7271 */
7272static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007273moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007274{
7275 LY_ERR rc;
7276
7277 /* unary '-' */
7278 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007279 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007280 LY_CHECK_RET(rc);
7281 set1->val.num *= -1;
7282 lyxp_set_free(set2);
7283 return LY_SUCCESS;
7284 }
7285
7286 assert(set1 && set2);
7287
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007288 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007289 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007290 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007291 LY_CHECK_RET(rc);
7292
7293 switch (op[0]) {
7294 /* '+' */
7295 case '+':
7296 set1->val.num += set2->val.num;
7297 break;
7298
7299 /* '-' */
7300 case '-':
7301 set1->val.num -= set2->val.num;
7302 break;
7303
7304 /* '*' */
7305 case '*':
7306 set1->val.num *= set2->val.num;
7307 break;
7308
7309 /* 'div' */
7310 case 'd':
7311 set1->val.num /= set2->val.num;
7312 break;
7313
7314 /* 'mod' */
7315 case 'm':
7316 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
7317 break;
7318
7319 default:
7320 LOGINT_RET(set1->ctx);
7321 }
7322
7323 return LY_SUCCESS;
7324}
7325
Michal Vasko03ff5a72019-09-11 13:49:33 +02007326/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007327 * @brief Evaluate Predicate. Logs directly on error.
7328 *
Michal Vaskod3678892020-05-21 10:06:58 +02007329 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007330 *
7331 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007332 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02007333 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007334 * @param[in] options XPath options.
Michal Vasko49fec8e2022-05-24 10:28:33 +02007335 * @param[in] axis Axis to search on.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007336 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7337 */
7338static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02007339eval_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options, enum lyxp_axis axis)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007340{
7341 LY_ERR rc;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01007342 uint16_t orig_exp;
7343 uint32_t i, orig_pos, orig_size;
Michal Vasko5c4e5892019-11-14 12:31:38 +01007344 int32_t pred_in_ctx;
Michal Vasko88a9e802022-05-24 10:50:28 +02007345 ly_bool reverse_axis = 0;
aPiecekfff4dca2021-10-07 10:59:53 +02007346 struct lyxp_set set2 = {0};
Michal Vasko03ff5a72019-09-11 13:49:33 +02007347
7348 /* '[' */
aPiecek8b0cc152021-05-31 16:40:31 +02007349 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007350 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007351 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007352
aPiecek8b0cc152021-05-31 16:40:31 +02007353 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007354only_parse:
aPiecek8b0cc152021-05-31 16:40:31 +02007355 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007356 LY_CHECK_RET(rc);
7357 } else if (set->type == LYXP_SET_NODE_SET) {
7358 /* we (possibly) need the set sorted, it can affect the result (if the predicate result is a number) */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007359 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007360
7361 /* empty set, nothing to evaluate */
7362 if (!set->used) {
7363 goto only_parse;
7364 }
7365
Michal Vasko49fec8e2022-05-24 10:28:33 +02007366 /* decide forward or reverse axis */
7367 switch (axis) {
7368 case LYXP_AXIS_ANCESTOR:
7369 case LYXP_AXIS_ANCESTOR_OR_SELF:
7370 case LYXP_AXIS_PRECEDING:
7371 case LYXP_AXIS_PRECEDING_SIBLING:
7372 reverse_axis = 1;
7373 break;
7374 case LYXP_AXIS_DESCENDANT:
7375 case LYXP_AXIS_DESCENDANT_OR_SELF:
7376 case LYXP_AXIS_FOLLOWING:
7377 case LYXP_AXIS_FOLLOWING_SIBLING:
7378 case LYXP_AXIS_PARENT:
7379 case LYXP_AXIS_CHILD:
7380 case LYXP_AXIS_SELF:
7381 case LYXP_AXIS_ATTRIBUTE:
7382 reverse_axis = 0;
7383 break;
7384 }
7385
Michal Vasko004d3152020-06-11 19:59:22 +02007386 orig_exp = *tok_idx;
Michal Vasko49fec8e2022-05-24 10:28:33 +02007387 orig_pos = reverse_axis ? set->used + 1 : 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007388 orig_size = set->used;
Michal Vasko39dbf352020-05-21 10:08:59 +02007389 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007390 set_init(&set2, set);
7391 set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0);
Michal Vasko49fec8e2022-05-24 10:28:33 +02007392
7393 /* remember the node context position for position() and context size for last() */
7394 orig_pos += reverse_axis ? -1 : 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007395
7396 set2.ctx_pos = orig_pos;
7397 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02007398 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007399
Michal Vasko004d3152020-06-11 19:59:22 +02007400 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007401 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02007402 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007403 return rc;
7404 }
7405
Michal Vasko49fec8e2022-05-24 10:28:33 +02007406 /* number is a proximity position */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007407 if (set2.type == LYXP_SET_NUMBER) {
7408 if ((long long)set2.val.num == orig_pos) {
7409 set2.val.num = 1;
7410 } else {
7411 set2.val.num = 0;
7412 }
7413 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007414 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007415
7416 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02007417 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01007418 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007419 }
7420 }
Michal Vasko2caefc12019-11-14 16:07:56 +01007421 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007422
7423 } else if (set->type == LYXP_SET_SCNODE_SET) {
7424 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007425 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007426 /* there is a currently-valid node */
7427 break;
7428 }
7429 }
7430 /* empty set, nothing to evaluate */
7431 if (i == set->used) {
7432 goto only_parse;
7433 }
7434
Michal Vasko004d3152020-06-11 19:59:22 +02007435 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007436
Michal Vasko03ff5a72019-09-11 13:49:33 +02007437 /* set special in_ctx to all the valid snodes */
7438 pred_in_ctx = set_scnode_new_in_ctx(set);
7439
7440 /* use the valid snodes one-by-one */
7441 for (i = 0; i < set->used; ++i) {
7442 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
7443 continue;
7444 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01007445 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007446
Michal Vasko004d3152020-06-11 19:59:22 +02007447 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007448
Michal Vasko004d3152020-06-11 19:59:22 +02007449 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007450 LY_CHECK_RET(rc);
7451
7452 set->val.scnodes[i].in_ctx = pred_in_ctx;
7453 }
7454
7455 /* restore the state as it was before the predicate */
7456 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007457 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007458 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007459 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007460 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007461 }
7462 }
7463
7464 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02007465 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007466 set_fill_set(&set2, set);
7467
Michal Vasko004d3152020-06-11 19:59:22 +02007468 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007469 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02007470 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007471 return rc;
7472 }
7473
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007474 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02007475 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02007476 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007477 }
Michal Vaskod3678892020-05-21 10:06:58 +02007478 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007479 }
7480
7481 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02007482 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
aPiecek8b0cc152021-05-31 16:40:31 +02007483 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007484 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007485 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007486
7487 return LY_SUCCESS;
7488}
7489
7490/**
Michal Vaskod3678892020-05-21 10:06:58 +02007491 * @brief Evaluate Literal. Logs directly on error.
7492 *
7493 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007494 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007495 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7496 */
7497static void
Michal Vasko40308e72020-10-20 16:38:40 +02007498eval_literal(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02007499{
7500 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007501 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02007502 set_fill_string(set, "", 0);
7503 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007504 set_fill_string(set, &exp->expr[exp->tok_pos[*tok_idx] + 1], exp->tok_len[*tok_idx] - 2);
Michal Vaskod3678892020-05-21 10:06:58 +02007505 }
7506 }
7507 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007508 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007509 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007510}
7511
7512/**
Michal Vasko004d3152020-06-11 19:59:22 +02007513 * @brief Try to compile list or leaf-list predicate in the known format to be used for hash-based instance search.
Michal Vaskod3678892020-05-21 10:06:58 +02007514 *
Michal Vasko004d3152020-06-11 19:59:22 +02007515 * @param[in] exp Full parsed XPath expression.
7516 * @param[in,out] tok_idx Index in @p exp at the beginning of the predicate, is updated on success.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007517 * @param[in] ctx_node Found schema node as the context for the predicate.
7518 * @param[in] cur_mod Current module for the expression.
7519 * @param[in] cur_node Current (original context) node.
Michal Vasko004d3152020-06-11 19:59:22 +02007520 * @param[in] format Format of any prefixes in key names/values.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007521 * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix).
Michal Vasko004d3152020-06-11 19:59:22 +02007522 * @param[out] predicates Parsed predicates.
7523 * @param[out] pred_type Type of @p predicates.
7524 * @return LY_SUCCESS on success,
7525 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02007526 */
7527static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007528eval_name_test_try_compile_predicates(const struct lyxp_expr *exp, uint16_t *tok_idx, const struct lysc_node *ctx_node,
Radek Krejci8df109d2021-04-23 12:19:08 +02007529 const struct lys_module *cur_mod, const struct lysc_node *cur_node, LY_VALUE_FORMAT format, void *prefix_data,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007530 struct ly_path_predicate **predicates, enum ly_path_pred_type *pred_type)
Michal Vaskod3678892020-05-21 10:06:58 +02007531{
Michal Vasko004d3152020-06-11 19:59:22 +02007532 LY_ERR ret = LY_SUCCESS;
7533 uint16_t key_count, e_idx, pred_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02007534 const struct lysc_node *key;
Michal Vasko004d3152020-06-11 19:59:22 +02007535 size_t pred_len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02007536 uint32_t prev_lo;
Michal Vasko004d3152020-06-11 19:59:22 +02007537 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02007538
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007539 assert(ctx_node->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02007540
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007541 if (ctx_node->nodetype == LYS_LIST) {
Michal Vasko004d3152020-06-11 19:59:22 +02007542 /* get key count */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007543 if (ctx_node->flags & LYS_KEYLESS) {
Michal Vasko004d3152020-06-11 19:59:22 +02007544 return LY_EINVAL;
7545 }
Michal Vasko544e58a2021-01-28 14:33:41 +01007546 for (key_count = 0, key = lysc_node_child(ctx_node); key && (key->flags & LYS_KEY); key = key->next, ++key_count) {}
Michal Vasko004d3152020-06-11 19:59:22 +02007547 assert(key_count);
Michal Vaskod3678892020-05-21 10:06:58 +02007548
Michal Vasko004d3152020-06-11 19:59:22 +02007549 /* learn where the predicates end */
7550 e_idx = *tok_idx;
7551 while (key_count) {
7552 /* '[' */
7553 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
7554 return LY_EINVAL;
7555 }
7556 ++e_idx;
7557
Michal Vasko3354d272021-04-06 09:40:06 +02007558 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_NAMETEST)) {
7559 /* definitely not a key */
7560 return LY_EINVAL;
7561 }
7562
Michal Vasko004d3152020-06-11 19:59:22 +02007563 /* ']' */
7564 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
7565 ++e_idx;
7566 }
7567 ++e_idx;
7568
7569 /* another presumably key predicate parsed */
7570 --key_count;
7571 }
Michal Vasko004d3152020-06-11 19:59:22 +02007572 } else {
7573 /* learn just where this single predicate ends */
7574 e_idx = *tok_idx;
7575
Michal Vaskod3678892020-05-21 10:06:58 +02007576 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02007577 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
7578 return LY_EINVAL;
7579 }
7580 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02007581
Michal Vasko3354d272021-04-06 09:40:06 +02007582 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_DOT)) {
7583 /* definitely not the value */
7584 return LY_EINVAL;
7585 }
7586
Michal Vaskod3678892020-05-21 10:06:58 +02007587 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02007588 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
7589 ++e_idx;
7590 }
7591 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02007592 }
7593
Michal Vasko004d3152020-06-11 19:59:22 +02007594 /* get the joined length of all the keys predicates/of the single leaf-list predicate */
7595 pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx];
7596
7597 /* turn logging off */
7598 prev_lo = ly_log_options(0);
7599
7600 /* parse the predicate(s) */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007601 LY_CHECK_GOTO(ret = ly_path_parse_predicate(ctx_node->module->ctx, ctx_node, exp->expr + exp->tok_pos[*tok_idx],
7602 pred_len, LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02007603
7604 /* compile */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007605 ret = ly_path_compile_predicate(ctx_node->module->ctx, cur_node, cur_mod, ctx_node, exp2, &pred_idx, format,
7606 prefix_data, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02007607 LY_CHECK_GOTO(ret, cleanup);
7608
7609 /* success, the predicate must include all the needed information for hash-based search */
7610 *tok_idx = e_idx;
7611
7612cleanup:
7613 ly_log_options(prev_lo);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007614 lyxp_expr_free(ctx_node->module->ctx, exp2);
Michal Vasko004d3152020-06-11 19:59:22 +02007615 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02007616}
7617
7618/**
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007619 * @brief Search for/check the next schema node that could be the only matching schema node meaning the
7620 * data node(s) could be found using a single hash-based search.
7621 *
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007622 * @param[in] ctx libyang context.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007623 * @param[in] node Next context node to check.
7624 * @param[in] name Expected node name.
7625 * @param[in] name_len Length of @p name.
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007626 * @param[in] moveto_mod Expected node module, can be NULL for JSON format with no prefix.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007627 * @param[in] root_type XPath root type.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007628 * @param[in] format Prefix format.
7629 * @param[in,out] found Previously found node, is updated.
7630 * @return LY_SUCCESS on success,
7631 * @return LY_ENOT if the whole check failed and hashes cannot be used.
7632 */
7633static LY_ERR
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007634eval_name_test_with_predicate_get_scnode(const struct ly_ctx *ctx, const struct lyd_node *node, const char *name,
Radek Krejci8df109d2021-04-23 12:19:08 +02007635 uint16_t name_len, const struct lys_module *moveto_mod, enum lyxp_node_type root_type, LY_VALUE_FORMAT format,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007636 const struct lysc_node **found)
7637{
7638 const struct lysc_node *scnode;
7639 const struct lys_module *mod;
7640 uint32_t idx = 0;
7641
Radek Krejci8df109d2021-04-23 12:19:08 +02007642 assert((format == LY_VALUE_JSON) || moveto_mod);
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007643
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007644continue_search:
Michal Vasko7d1d0912020-10-16 08:38:30 +02007645 scnode = NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007646 if (!node) {
Radek Krejci8df109d2021-04-23 12:19:08 +02007647 if ((format == LY_VALUE_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007648 /* search all modules for a single match */
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007649 while ((mod = ly_ctx_get_module_iter(ctx, &idx))) {
Michal Vasko35a3b1d2021-07-14 09:34:16 +02007650 if (!mod->implemented) {
7651 continue;
7652 }
7653
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007654 scnode = lys_find_child(NULL, mod, name, name_len, 0, 0);
7655 if (scnode) {
7656 /* we have found a match */
7657 break;
7658 }
7659 }
7660
Michal Vasko7d1d0912020-10-16 08:38:30 +02007661 if (!scnode) {
7662 /* all modules searched */
7663 idx = 0;
7664 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007665 } else {
7666 /* search in top-level */
7667 scnode = lys_find_child(NULL, moveto_mod, name, name_len, 0, 0);
7668 }
7669 } else if (!*found || (lysc_data_parent(*found) != node->schema)) {
Radek Krejci8df109d2021-04-23 12:19:08 +02007670 if ((format == LY_VALUE_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007671 /* we must adjust the module to inherit the one from the context node */
7672 moveto_mod = node->schema->module;
7673 }
7674
7675 /* search in children, do not repeat the same search */
7676 scnode = lys_find_child(node->schema, moveto_mod, name, name_len, 0, 0);
Michal Vasko7d1d0912020-10-16 08:38:30 +02007677 } /* else skip redundant search */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007678
7679 /* additional context check */
7680 if (scnode && (root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
7681 scnode = NULL;
7682 }
7683
7684 if (scnode) {
7685 if (*found) {
7686 /* we found a schema node with the same name but at different level, give up, too complicated
7687 * (more hash-based searches would be required, not supported) */
7688 return LY_ENOT;
7689 } else {
7690 /* remember the found schema node and continue to make sure it can be used */
7691 *found = scnode;
7692 }
7693 }
7694
7695 if (idx) {
7696 /* continue searching all the following models */
7697 goto continue_search;
7698 }
7699
7700 return LY_SUCCESS;
7701}
7702
7703/**
Michal Vasko4ad69e72021-10-26 16:25:55 +02007704 * @brief Generate message when no matching schema nodes were found for a path segment.
7705 *
7706 * @param[in] set XPath set.
7707 * @param[in] scparent Previous schema parent in the context, if only one.
7708 * @param[in] ncname XPath NCName being evaluated.
7709 * @param[in] ncname_len Length of @p ncname.
7710 * @param[in] expr Whole XPath expression.
7711 * @param[in] options XPath options.
7712 */
7713static void
7714eval_name_test_scnode_no_match_msg(struct lyxp_set *set, const struct lyxp_set_scnode *scparent, const char *ncname,
7715 uint16_t ncname_len, const char *expr, uint32_t options)
7716{
7717 const char *format;
7718 char *path = NULL, *ppath = NULL;
7719
7720 path = lysc_path(set->cur_scnode, LYSC_PATH_LOG, NULL, 0);
7721 if (scparent) {
7722 /* generate path for the parent */
7723 if (scparent->type == LYXP_NODE_ELEM) {
7724 ppath = lysc_path(scparent->scnode, LYSC_PATH_LOG, NULL, 0);
7725 } else if (scparent->type == LYXP_NODE_ROOT) {
7726 ppath = strdup("<root>");
7727 } else if (scparent->type == LYXP_NODE_ROOT_CONFIG) {
7728 ppath = strdup("<config-root>");
7729 }
7730 }
7731 if (ppath) {
7732 format = "Schema node \"%.*s\" for parent \"%s\" not found; in expr \"%.*s\" with context node \"%s\".";
7733 if (options & LYXP_SCNODE_ERROR) {
7734 LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path);
7735 } else {
7736 LOGWRN(set->ctx, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path);
7737 }
7738 } else {
7739 format = "Schema node \"%.*s\" not found; in expr \"%.*s\" with context node \"%s\".";
7740 if (options & LYXP_SCNODE_ERROR) {
7741 LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path);
7742 } else {
7743 LOGWRN(set->ctx, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path);
7744 }
7745 }
7746 free(path);
7747 free(ppath);
7748}
7749
7750/**
Michal Vaskod3678892020-05-21 10:06:58 +02007751 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
7752 *
7753 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7754 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7755 * [7] NameTest ::= '*' | NCName ':' '*' | QName
7756 *
7757 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007758 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko49fec8e2022-05-24 10:28:33 +02007759 * @param[in] axis What axis to search on.
Michal Vaskod3678892020-05-21 10:06:58 +02007760 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02007761 * @param[in,out] set Context and result set.
Michal Vaskod3678892020-05-21 10:06:58 +02007762 * @param[in] options XPath options.
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007763 * @return LY_ERR (LY_EINCOMPLETE on unresolved when, LY_ENOT for not found schema node)
Michal Vaskod3678892020-05-21 10:06:58 +02007764 */
7765static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02007766eval_name_test_with_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_axis axis, ly_bool all_desc,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007767 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007768{
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007769 LY_ERR rc = LY_SUCCESS, r;
Michal Vasko004d3152020-06-11 19:59:22 +02007770 const char *ncname, *ncname_dict = NULL;
7771 uint16_t ncname_len;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007772 const struct lys_module *moveto_mod = NULL;
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007773 const struct lysc_node *scnode = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02007774 struct ly_path_predicate *predicates = NULL;
7775 enum ly_path_pred_type pred_type = 0;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007776 int scnode_skip_pred = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02007777
aPiecek8b0cc152021-05-31 16:40:31 +02007778 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007779 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007780 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007781
aPiecek8b0cc152021-05-31 16:40:31 +02007782 if (options & LYXP_SKIP_EXPR) {
Michal Vaskod3678892020-05-21 10:06:58 +02007783 goto moveto;
7784 }
7785
Michal Vasko004d3152020-06-11 19:59:22 +02007786 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
7787 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02007788
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007789 if ((ncname[0] == '*') && (ncname_len == 1)) {
7790 /* all nodes will match */
7791 goto moveto;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007792 }
7793
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007794 /* parse (and skip) module name */
7795 rc = moveto_resolve_model(&ncname, &ncname_len, set, NULL, &moveto_mod);
Michal Vaskod3678892020-05-21 10:06:58 +02007796 LY_CHECK_GOTO(rc, cleanup);
7797
Michal Vasko49fec8e2022-05-24 10:28:33 +02007798 if ((ncname[0] == '*') && (ncname_len == 1)) {
7799 /* all nodes from the module will match */
7800 goto moveto;
7801 }
7802
7803 if (((set->format == LY_VALUE_JSON) || moveto_mod) && (axis == LYXP_AXIS_CHILD) && !all_desc &&
7804 (set->type == LYXP_SET_NODE_SET)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007805 /* find the matching schema node in some parent in the context */
Radek Krejci1deb5be2020-08-26 16:43:36 +02007806 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007807 if (eval_name_test_with_predicate_get_scnode(set->ctx, set->val.nodes[i].node, ncname, ncname_len,
7808 moveto_mod, set->root_type, set->format, &scnode)) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007809 /* check failed */
7810 scnode = NULL;
7811 break;
Michal Vaskod3678892020-05-21 10:06:58 +02007812 }
7813 }
7814
Michal Vasko004d3152020-06-11 19:59:22 +02007815 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
7816 /* try to create the predicates */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007817 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->cur_mod, set->cur_node ?
7818 set->cur_node->schema : NULL, set->format, set->prefix_data, &predicates, &pred_type)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007819 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02007820 scnode = NULL;
7821 }
7822 }
7823 }
7824
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007825 if (!scnode) {
7826 /* we are not able to match based on a schema node and not all the modules match ("*"),
Michal Vasko004d3152020-06-11 19:59:22 +02007827 * use dictionary for efficient comparison */
Radek Krejci011e4aa2020-09-04 15:22:31 +02007828 LY_CHECK_GOTO(rc = lydict_insert(set->ctx, ncname, ncname_len, &ncname_dict), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007829 }
7830
7831moveto:
7832 /* move to the attribute(s), data node(s), or schema node(s) */
Michal Vasko49fec8e2022-05-24 10:28:33 +02007833 if (axis == LYXP_AXIS_ATTRIBUTE) {
aPiecek8b0cc152021-05-31 16:40:31 +02007834 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007835 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskod3678892020-05-21 10:06:58 +02007836 } else {
7837 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01007838 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007839 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02007840 rc = moveto_attr(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007841 }
7842 LY_CHECK_GOTO(rc, cleanup);
7843 }
7844 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02007845 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02007846 int64_t i;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007847 const struct lyxp_set_scnode *scparent = NULL;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007848
7849 /* remember parent if there is only one, to print in the warning */
7850 for (i = 0; i < set->used; ++i) {
7851 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
7852 if (!scparent) {
7853 /* remember the context node */
7854 scparent = &set->val.scnodes[i];
7855 } else {
7856 /* several context nodes, no reasonable error possible */
7857 scparent = NULL;
7858 break;
7859 }
7860 }
7861 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02007862
Michal Vasko49fec8e2022-05-24 10:28:33 +02007863 if (all_desc && (axis == LYXP_AXIS_CHILD)) {
7864 /* efficient evaluation that does not add all the descendants into the set */
7865 rc = moveto_scnode_alldesc_child(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007866 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02007867 if (all_desc) {
7868 /* "//" == "/descendant-or-self::node()/" */
7869 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
7870 LY_CHECK_GOTO(rc, cleanup);
7871 }
7872 rc = moveto_scnode(set, moveto_mod, ncname_dict, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007873 }
7874 LY_CHECK_GOTO(rc, cleanup);
7875
7876 for (i = set->used - 1; i > -1; --i) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007877 if (set->val.scnodes[i].in_ctx > LYXP_SET_SCNODE_ATOM_NODE) {
Michal Vaskod3678892020-05-21 10:06:58 +02007878 break;
7879 }
7880 }
7881 if (i == -1) {
Michal Vasko4ad69e72021-10-26 16:25:55 +02007882 /* generate message */
7883 eval_name_test_scnode_no_match_msg(set, scparent, ncname, ncname_len, exp->expr, options);
7884
7885 if (options & LYXP_SCNODE_ERROR) {
7886 /* error */
7887 rc = LY_EVALID;
7888 goto cleanup;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007889 }
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007890
7891 /* skip the predicates and the rest of this path to not generate invalid warnings */
7892 rc = LY_ENOT;
7893 scnode_skip_pred = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02007894 }
7895 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02007896 if (all_desc && (axis == LYXP_AXIS_CHILD)) {
7897 /* efficient evaluation */
7898 rc = moveto_node_alldesc_child(set, moveto_mod, ncname_dict, options);
7899 } else if (scnode && (axis == LYXP_AXIS_CHILD)) {
7900 /* we can find the child nodes using hashes */
7901 rc = moveto_node_hash_child(set, scnode, predicates, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007902 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02007903 if (all_desc) {
7904 /* "//" == "/descendant-or-self::node()/" */
7905 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
7906 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007907 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02007908 rc = moveto_node(set, moveto_mod, ncname_dict, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007909 }
7910 LY_CHECK_GOTO(rc, cleanup);
7911 }
7912 }
7913
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007914 if (scnode_skip_pred) {
7915 /* skip predicates */
7916 options |= LYXP_SKIP_EXPR;
7917 }
7918
Michal Vaskod3678892020-05-21 10:06:58 +02007919 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007920 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02007921 r = eval_predicate(exp, tok_idx, set, options, axis);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007922 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007923 }
7924
7925cleanup:
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007926 if (scnode_skip_pred) {
7927 /* restore options */
7928 options &= ~LYXP_SKIP_EXPR;
7929 }
aPiecek8b0cc152021-05-31 16:40:31 +02007930 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007931 lydict_remove(set->ctx, ncname_dict);
Michal Vaskof7e16e22020-10-21 09:24:39 +02007932 ly_path_predicates_free(set->ctx, pred_type, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007933 }
Michal Vaskod3678892020-05-21 10:06:58 +02007934 return rc;
7935}
7936
7937/**
7938 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7939 *
7940 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7941 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7942 * [8] NodeType ::= 'text' | 'node'
7943 *
7944 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007945 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko49fec8e2022-05-24 10:28:33 +02007946 * @param[in] axis Axis to search on.
7947 * @param[in] all_desc Whether to search all the descendants or axis only.
aPiecek8b0cc152021-05-31 16:40:31 +02007948 * @param[in,out] set Context and result set.
Michal Vaskod3678892020-05-21 10:06:58 +02007949 * @param[in] options XPath options.
7950 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7951 */
7952static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02007953eval_node_type_with_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_axis axis, ly_bool all_desc,
Radek Krejci1deb5be2020-08-26 16:43:36 +02007954 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007955{
7956 LY_ERR rc;
7957
Michal Vaskod3678892020-05-21 10:06:58 +02007958 (void)all_desc;
7959
aPiecek8b0cc152021-05-31 16:40:31 +02007960 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007961 assert(exp->tok_len[*tok_idx] == 4);
Michal Vasko49fec8e2022-05-24 10:28:33 +02007962 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
7963 rc = xpath_pi_node(set, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007964 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02007965 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
7966 rc = xpath_pi_text(set, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007967 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02007968 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02007969 }
aPiecek8b0cc152021-05-31 16:40:31 +02007970 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007971 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007972 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007973
7974 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007975 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
aPiecek8b0cc152021-05-31 16:40:31 +02007976 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007977 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007978 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007979
7980 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007981 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02007982 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007983 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007984 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007985
7986 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007987 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02007988 rc = eval_predicate(exp, tok_idx, set, options, axis);
Michal Vaskod3678892020-05-21 10:06:58 +02007989 LY_CHECK_RET(rc);
7990 }
7991
7992 return LY_SUCCESS;
7993}
7994
7995/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007996 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7997 *
7998 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7999 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02008000 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02008001 *
8002 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008003 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008004 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02008005 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008006 * @param[in] options XPath options.
8007 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
8008 */
8009static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008010eval_relative_location_path(const struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool all_desc, struct lyxp_set *set,
8011 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008012{
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008013 LY_ERR rc = LY_SUCCESS;
Michal Vasko49fec8e2022-05-24 10:28:33 +02008014 enum lyxp_axis axis;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008015 int scnode_skip_path = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008016
8017 goto step;
8018 do {
8019 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02008020 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008021 all_desc = 0;
8022 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008023 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008024 all_desc = 1;
8025 }
aPiecek8b0cc152021-05-31 16:40:31 +02008026 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008027 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008028 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008029
8030step:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008031 /* AxisSpecifier */
8032 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AXISNAME) {
8033 axis = str2axis(exp->expr + exp->tok_pos[*tok_idx], exp->tok_len[*tok_idx]);
Michal Vaskod3678892020-05-21 10:06:58 +02008034
aPiecek8b0cc152021-05-31 16:40:31 +02008035 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008036 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8037 ++(*tok_idx);
8038
8039 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_DCOLON);
8040 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
8041 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8042 ++(*tok_idx);
8043 } else if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
8044 axis = LYXP_AXIS_ATTRIBUTE;
8045
8046 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
8047 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008048 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008049 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008050 /* default */
8051 axis = LYXP_AXIS_CHILD;
Michal Vaskod3678892020-05-21 10:06:58 +02008052 }
8053
Michal Vasko49fec8e2022-05-24 10:28:33 +02008054 /* NodeTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008055 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008056 case LYXP_TOKEN_DOT:
8057 /* evaluate '.' */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008058 if (!(options & LYXP_SKIP_EXPR)) {
8059 if (((options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_SCNODE_SET)) ||
8060 (!(options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_NODE_SET))) {
8061 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
8062 rc = LY_EVALID;
8063 goto cleanup;
8064 }
8065
8066 if (all_desc) {
8067 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8068 LY_CHECK_GOTO(rc, cleanup);
8069 }
8070 rc = xpath_pi_node(set, LYXP_AXIS_SELF, options);
8071 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008072 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008073 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008074 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008075 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008076 break;
8077
8078 case LYXP_TOKEN_DDOT:
8079 /* evaluate '..' */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008080 if (!(options & LYXP_SKIP_EXPR)) {
8081 if (((options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_SCNODE_SET)) ||
8082 (!(options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_NODE_SET))) {
8083 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
8084 rc = LY_EVALID;
8085 goto cleanup;
8086 }
8087
8088 if (all_desc) {
8089 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8090 LY_CHECK_GOTO(rc, cleanup);
8091 }
8092 rc = xpath_pi_node(set, LYXP_AXIS_PARENT, options);
8093 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008094 }
aPiecek8b0cc152021-05-31 16:40:31 +02008095 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008096 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008097 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008098 break;
8099
Michal Vasko03ff5a72019-09-11 13:49:33 +02008100 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02008101 /* evaluate NameTest Predicate* */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008102 rc = eval_name_test_with_predicate(exp, tok_idx, axis, all_desc, set, options);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008103 if (rc == LY_ENOT) {
8104 assert(options & LYXP_SCNODE_ALL);
8105 /* skip the rest of this path */
8106 rc = LY_SUCCESS;
8107 scnode_skip_path = 1;
8108 options |= LYXP_SKIP_EXPR;
8109 }
8110 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008111 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008112
Michal Vaskod3678892020-05-21 10:06:58 +02008113 case LYXP_TOKEN_NODETYPE:
8114 /* evaluate NodeType Predicate* */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008115 rc = eval_node_type_with_predicate(exp, tok_idx, axis, all_desc, set, options);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008116 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008117 break;
8118
8119 default:
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008120 LOGINT(set->ctx);
8121 rc = LY_EINT;
8122 goto cleanup;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008123 }
Michal Vasko004d3152020-06-11 19:59:22 +02008124 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008125
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008126cleanup:
8127 if (scnode_skip_path) {
8128 options &= ~LYXP_SKIP_EXPR;
8129 }
8130 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008131}
8132
8133/**
8134 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
8135 *
8136 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
8137 *
8138 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008139 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008140 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008141 * @param[in] options XPath options.
8142 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8143 */
8144static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008145eval_absolute_location_path(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008146{
Radek Krejci857189e2020-09-01 13:26:36 +02008147 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008148
aPiecek8b0cc152021-05-31 16:40:31 +02008149 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008150 /* no matter what tokens follow, we need to be at the root */
Michal Vaskob0099a92020-08-31 14:55:23 +02008151 LY_CHECK_RET(moveto_root(set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008152 }
8153
8154 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02008155 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008156 /* evaluate '/' - deferred */
8157 all_desc = 0;
aPiecek8b0cc152021-05-31 16:40:31 +02008158 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008159 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008160 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008161
Michal Vasko004d3152020-06-11 19:59:22 +02008162 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008163 return LY_SUCCESS;
8164 }
Michal Vasko004d3152020-06-11 19:59:22 +02008165 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008166 case LYXP_TOKEN_DOT:
8167 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008168 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008169 case LYXP_TOKEN_AT:
8170 case LYXP_TOKEN_NAMETEST:
8171 case LYXP_TOKEN_NODETYPE:
Michal Vaskob0099a92020-08-31 14:55:23 +02008172 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008173 break;
8174 default:
8175 break;
8176 }
8177
Michal Vasko03ff5a72019-09-11 13:49:33 +02008178 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02008179 /* '//' RelativeLocationPath */
Michal Vasko03ff5a72019-09-11 13:49:33 +02008180 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
8181 all_desc = 1;
aPiecek8b0cc152021-05-31 16:40:31 +02008182 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008183 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008184 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008185
Michal Vaskob0099a92020-08-31 14:55:23 +02008186 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008187 }
8188
8189 return LY_SUCCESS;
8190}
8191
8192/**
8193 * @brief Evaluate FunctionCall. Logs directly on error.
8194 *
Michal Vaskod3678892020-05-21 10:06:58 +02008195 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02008196 *
8197 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008198 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008199 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008200 * @param[in] options XPath options.
8201 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8202 */
8203static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008204eval_function_call(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008205{
8206 LY_ERR rc;
Michal Vasko69730152020-10-09 16:30:07 +02008207
Radek Krejci1deb5be2020-08-26 16:43:36 +02008208 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, uint32_t) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01008209 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008210 struct lyxp_set **args = NULL, **args_aux;
8211
aPiecek8b0cc152021-05-31 16:40:31 +02008212 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008213 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02008214 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008215 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02008216 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008217 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02008218 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008219 xpath_func = &xpath_sum;
8220 }
8221 break;
8222 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02008223 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008224 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02008225 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008226 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02008227 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008228 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02008229 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008230 xpath_func = &xpath_true;
8231 }
8232 break;
8233 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02008234 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008235 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02008236 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008237 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02008238 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008239 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02008240 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008241 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02008242 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008243 xpath_func = &xpath_deref;
8244 }
8245 break;
8246 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02008247 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008248 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02008249 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008250 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02008251 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008252 xpath_func = &xpath_string;
8253 }
8254 break;
8255 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02008256 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008257 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02008258 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008259 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02008260 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008261 xpath_func = &xpath_current;
8262 }
8263 break;
8264 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02008265 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008266 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02008267 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008268 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02008269 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008270 xpath_func = &xpath_re_match;
8271 }
8272 break;
8273 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02008274 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008275 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02008276 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008277 xpath_func = &xpath_translate;
8278 }
8279 break;
8280 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02008281 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008282 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02008283 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008284 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02008285 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008286 xpath_func = &xpath_bit_is_set;
8287 }
8288 break;
8289 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02008290 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008291 xpath_func = &xpath_starts_with;
8292 }
8293 break;
8294 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02008295 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008296 xpath_func = &xpath_derived_from;
8297 }
8298 break;
8299 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02008300 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008301 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02008302 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008303 xpath_func = &xpath_string_length;
8304 }
8305 break;
8306 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02008307 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008308 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02008309 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008310 xpath_func = &xpath_substring_after;
8311 }
8312 break;
8313 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02008314 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008315 xpath_func = &xpath_substring_before;
8316 }
8317 break;
8318 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02008319 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008320 xpath_func = &xpath_derived_from_or_self;
8321 }
8322 break;
8323 }
8324
8325 if (!xpath_func) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008326 LOGVAL(set->ctx, LY_VCODE_XP_INFUNC, exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008327 return LY_EVALID;
8328 }
8329 }
8330
aPiecek8b0cc152021-05-31 16:40:31 +02008331 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008332 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008333 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008334
8335 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02008336 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
aPiecek8b0cc152021-05-31 16:40:31 +02008337 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008338 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008339 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008340
8341 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02008342 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
aPiecek8b0cc152021-05-31 16:40:31 +02008343 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008344 args = malloc(sizeof *args);
8345 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
8346 arg_count = 1;
8347 args[0] = set_copy(set);
8348 if (!args[0]) {
8349 rc = LY_EMEM;
8350 goto cleanup;
8351 }
8352
Michal Vasko004d3152020-06-11 19:59:22 +02008353 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008354 LY_CHECK_GOTO(rc, cleanup);
8355 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008356 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008357 LY_CHECK_GOTO(rc, cleanup);
8358 }
8359 }
Michal Vasko004d3152020-06-11 19:59:22 +02008360 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
aPiecek8b0cc152021-05-31 16:40:31 +02008361 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008362 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008363 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008364
aPiecek8b0cc152021-05-31 16:40:31 +02008365 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008366 ++arg_count;
8367 args_aux = realloc(args, arg_count * sizeof *args);
8368 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
8369 args = args_aux;
8370 args[arg_count - 1] = set_copy(set);
8371 if (!args[arg_count - 1]) {
8372 rc = LY_EMEM;
8373 goto cleanup;
8374 }
8375
Michal Vasko004d3152020-06-11 19:59:22 +02008376 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008377 LY_CHECK_GOTO(rc, cleanup);
8378 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008379 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008380 LY_CHECK_GOTO(rc, cleanup);
8381 }
8382 }
8383
8384 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02008385 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02008386 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008387 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008388 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008389
aPiecek8b0cc152021-05-31 16:40:31 +02008390 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008391 /* evaluate function */
8392 rc = xpath_func(args, arg_count, set, options);
8393
8394 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008395 /* merge all nodes from arg evaluations */
8396 for (i = 0; i < arg_count; ++i) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008397 set_scnode_clear_ctx(args[i], LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008398 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008399 }
8400 }
8401 } else {
8402 rc = LY_SUCCESS;
8403 }
8404
8405cleanup:
8406 for (i = 0; i < arg_count; ++i) {
8407 lyxp_set_free(args[i]);
8408 }
8409 free(args);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008410 return rc;
8411}
8412
8413/**
8414 * @brief Evaluate Number. Logs directly on error.
8415 *
8416 * @param[in] ctx Context for errors.
8417 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008418 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008419 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8420 * @return LY_ERR
8421 */
8422static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008423eval_number(struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008424{
8425 long double num;
8426 char *endptr;
8427
8428 if (set) {
8429 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02008430 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008431 if (errno) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008432 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
8433 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).",
Michal Vasko69730152020-10-09 16:30:07 +02008434 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008435 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02008436 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008437 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
8438 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.",
Michal Vasko69730152020-10-09 16:30:07 +02008439 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008440 return LY_EVALID;
8441 }
8442
8443 set_fill_number(set, num);
8444 }
8445
8446 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008447 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008448 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008449 return LY_SUCCESS;
8450}
8451
aPiecekdf23eee2021-10-07 12:21:50 +02008452LY_ERR
8453lyxp_vars_find(struct lyxp_var *vars, const char *name, size_t name_len, struct lyxp_var **var)
8454{
8455 LY_ERR ret = LY_ENOTFOUND;
8456 LY_ARRAY_COUNT_TYPE u;
8457
8458 assert(vars && name);
8459
8460 name_len = name_len ? name_len : strlen(name);
8461
8462 LY_ARRAY_FOR(vars, u) {
8463 if (!strncmp(vars[u].name, name, name_len)) {
8464 ret = LY_SUCCESS;
8465 break;
8466 }
8467 }
8468
8469 if (var && !ret) {
8470 *var = &vars[u];
8471 }
8472
8473 return ret;
8474}
8475
Michal Vasko03ff5a72019-09-11 13:49:33 +02008476/**
aPiecekfba75362021-10-07 12:39:48 +02008477 * @brief Evaluate VariableReference.
8478 *
8479 * @param[in] exp Parsed XPath expression.
8480 * @param[in] tok_idx Position in the expression @p exp.
8481 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
8482 * @param[in,out] set Context and result set.
8483 * @param[in] options XPath options.
8484 * @return LY_ERR value.
8485 */
8486static LY_ERR
8487eval_variable_reference(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
8488{
8489 LY_ERR ret;
8490 const char *name;
8491 struct lyxp_var *var;
8492 const struct lyxp_var *vars;
8493 struct lyxp_expr *tokens = NULL;
8494 uint16_t token_index;
8495
8496 vars = set->vars;
8497
Michal Vasko49fec8e2022-05-24 10:28:33 +02008498 /* find out the name and value of the variable */
aPiecekfba75362021-10-07 12:39:48 +02008499 name = &exp->expr[exp->tok_pos[*tok_idx]];
8500 ret = lyxp_vars_find((struct lyxp_var *)vars, name, exp->tok_len[*tok_idx], &var);
8501 LY_CHECK_ERR_RET(ret, LOGERR(set->ctx, ret,
8502 "XPath variable \"%s\" not defined.", name), ret);
8503
Michal Vasko49fec8e2022-05-24 10:28:33 +02008504 /* parse value */
aPiecekfba75362021-10-07 12:39:48 +02008505 ret = lyxp_expr_parse(set->ctx, var->value, 0, 1, &tokens);
8506 LY_CHECK_GOTO(ret, cleanup);
8507
Michal Vasko49fec8e2022-05-24 10:28:33 +02008508 /* evaluate value */
aPiecekfba75362021-10-07 12:39:48 +02008509 token_index = 0;
8510 ret = eval_expr_select(tokens, &token_index, 0, set, options);
8511 LY_CHECK_GOTO(ret, cleanup);
8512
8513cleanup:
8514 lyxp_expr_free(set->ctx, tokens);
8515
8516 return ret;
8517}
8518
8519/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02008520 * @brief Evaluate PathExpr. Logs directly on error.
8521 *
Michal Vaskod3678892020-05-21 10:06:58 +02008522 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02008523 * | PrimaryExpr Predicate* '/' RelativeLocationPath
8524 * | PrimaryExpr Predicate* '//' RelativeLocationPath
8525 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
aPiecekfba75362021-10-07 12:39:48 +02008526 * [10] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02008527 *
8528 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008529 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008530 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008531 * @param[in] options XPath options.
8532 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8533 */
8534static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008535eval_path_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008536{
Michal Vasko49fec8e2022-05-24 10:28:33 +02008537 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008538 LY_ERR rc;
8539
Michal Vasko004d3152020-06-11 19:59:22 +02008540 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008541 case LYXP_TOKEN_PAR1:
8542 /* '(' Expr ')' */
8543
8544 /* '(' */
aPiecek8b0cc152021-05-31 16:40:31 +02008545 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008546 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008547 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008548
8549 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02008550 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008551 LY_CHECK_RET(rc);
8552
8553 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02008554 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02008555 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008556 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008557 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008558
Michal Vasko03ff5a72019-09-11 13:49:33 +02008559 goto predicate;
8560
8561 case LYXP_TOKEN_DOT:
8562 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008563 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008564 case LYXP_TOKEN_AT:
8565 case LYXP_TOKEN_NAMETEST:
8566 case LYXP_TOKEN_NODETYPE:
8567 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008568 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008569 LY_CHECK_RET(rc);
8570 break;
8571
aPiecekfba75362021-10-07 12:39:48 +02008572 case LYXP_TOKEN_VARREF:
8573 /* VariableReference */
8574 rc = eval_variable_reference(exp, tok_idx, set, options);
8575 LY_CHECK_RET(rc);
8576 ++(*tok_idx);
8577
aPiecekfba75362021-10-07 12:39:48 +02008578 goto predicate;
8579
Michal Vasko03ff5a72019-09-11 13:49:33 +02008580 case LYXP_TOKEN_FUNCNAME:
8581 /* FunctionCall */
aPiecek8b0cc152021-05-31 16:40:31 +02008582 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008583 LY_CHECK_RET(rc);
8584
Michal Vasko03ff5a72019-09-11 13:49:33 +02008585 goto predicate;
8586
Michal Vasko3e48bf32020-06-01 08:39:07 +02008587 case LYXP_TOKEN_OPER_PATH:
8588 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008589 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008590 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008591 LY_CHECK_RET(rc);
8592 break;
8593
8594 case LYXP_TOKEN_LITERAL:
8595 /* Literal */
aPiecek8b0cc152021-05-31 16:40:31 +02008596 if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) {
8597 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008598 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008599 }
Michal Vasko004d3152020-06-11 19:59:22 +02008600 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008601 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008602 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008603 }
8604
Michal Vasko03ff5a72019-09-11 13:49:33 +02008605 goto predicate;
8606
8607 case LYXP_TOKEN_NUMBER:
8608 /* Number */
aPiecek8b0cc152021-05-31 16:40:31 +02008609 if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) {
8610 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008611 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008612 }
Michal Vasko004d3152020-06-11 19:59:22 +02008613 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008614 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008615 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008616 }
8617 LY_CHECK_RET(rc);
8618
Michal Vasko03ff5a72019-09-11 13:49:33 +02008619 goto predicate;
8620
8621 default:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008622 LOGVAL(set->ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008623 return LY_EVALID;
8624 }
8625
8626 return LY_SUCCESS;
8627
8628predicate:
8629 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008630 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008631 rc = eval_predicate(exp, tok_idx, set, options, LYXP_AXIS_CHILD);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008632 LY_CHECK_RET(rc);
8633 }
8634
8635 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008636 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008637
8638 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02008639 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008640 all_desc = 0;
8641 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008642 all_desc = 1;
8643 }
8644
aPiecek8b0cc152021-05-31 16:40:31 +02008645 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008646 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008647 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008648
Michal Vasko004d3152020-06-11 19:59:22 +02008649 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008650 LY_CHECK_RET(rc);
8651 }
8652
8653 return LY_SUCCESS;
8654}
8655
8656/**
8657 * @brief Evaluate UnionExpr. Logs directly on error.
8658 *
Michal Vaskod3678892020-05-21 10:06:58 +02008659 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008660 *
8661 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008662 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008663 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008664 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008665 * @param[in] options XPath options.
8666 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8667 */
8668static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008669eval_union_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008670{
8671 LY_ERR rc = LY_SUCCESS;
8672 struct lyxp_set orig_set, set2;
8673 uint16_t i;
8674
8675 assert(repeat);
8676
8677 set_init(&orig_set, set);
8678 set_init(&set2, set);
8679
8680 set_fill_set(&orig_set, set);
8681
Michal Vasko004d3152020-06-11 19:59:22 +02008682 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008683 LY_CHECK_GOTO(rc, cleanup);
8684
8685 /* ('|' PathExpr)* */
8686 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008687 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
aPiecek8b0cc152021-05-31 16:40:31 +02008688 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008689 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008690 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008691
aPiecek8b0cc152021-05-31 16:40:31 +02008692 if (options & LYXP_SKIP_EXPR) {
8693 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008694 LY_CHECK_GOTO(rc, cleanup);
8695 continue;
8696 }
8697
8698 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008699 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008700 LY_CHECK_GOTO(rc, cleanup);
8701
8702 /* eval */
8703 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01008704 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008705 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008706 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008707 LY_CHECK_GOTO(rc, cleanup);
8708 }
8709 }
8710
8711cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008712 lyxp_set_free_content(&orig_set);
8713 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008714 return rc;
8715}
8716
8717/**
8718 * @brief Evaluate UnaryExpr. Logs directly on error.
8719 *
Michal Vaskod3678892020-05-21 10:06:58 +02008720 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008721 *
8722 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008723 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008724 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008725 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008726 * @param[in] options XPath options.
8727 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8728 */
8729static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008730eval_unary_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008731{
8732 LY_ERR rc;
8733 uint16_t this_op, i;
8734
8735 assert(repeat);
8736
8737 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02008738 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008739 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008740 assert(!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) && (exp->expr[exp->tok_pos[*tok_idx]] == '-'));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008741
aPiecek8b0cc152021-05-31 16:40:31 +02008742 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008743 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008744 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008745 }
8746
Michal Vasko004d3152020-06-11 19:59:22 +02008747 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008748 LY_CHECK_RET(rc);
8749
aPiecek8b0cc152021-05-31 16:40:31 +02008750 if (!(options & LYXP_SKIP_EXPR) && (repeat % 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008751 if (options & LYXP_SCNODE_ALL) {
8752 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
8753 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008754 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008755 LY_CHECK_RET(rc);
8756 }
8757 }
8758
8759 return LY_SUCCESS;
8760}
8761
8762/**
8763 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
8764 *
Michal Vaskod3678892020-05-21 10:06:58 +02008765 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008766 * | MultiplicativeExpr '*' UnaryExpr
8767 * | MultiplicativeExpr 'div' UnaryExpr
8768 * | MultiplicativeExpr 'mod' UnaryExpr
8769 *
8770 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008771 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008772 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008773 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008774 * @param[in] options XPath options.
8775 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8776 */
8777static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008778eval_multiplicative_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set,
8779 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008780{
8781 LY_ERR rc;
8782 uint16_t this_op;
8783 struct lyxp_set orig_set, set2;
8784 uint16_t i;
8785
8786 assert(repeat);
8787
8788 set_init(&orig_set, set);
8789 set_init(&set2, set);
8790
8791 set_fill_set(&orig_set, set);
8792
Michal Vasko004d3152020-06-11 19:59:22 +02008793 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008794 LY_CHECK_GOTO(rc, cleanup);
8795
8796 /* ('*' / 'div' / 'mod' UnaryExpr)* */
8797 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008798 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008799
Michal Vasko004d3152020-06-11 19:59:22 +02008800 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
aPiecek8b0cc152021-05-31 16:40:31 +02008801 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008802 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008803 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008804
aPiecek8b0cc152021-05-31 16:40:31 +02008805 if (options & LYXP_SKIP_EXPR) {
8806 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008807 LY_CHECK_GOTO(rc, cleanup);
8808 continue;
8809 }
8810
8811 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008812 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008813 LY_CHECK_GOTO(rc, cleanup);
8814
8815 /* eval */
8816 if (options & LYXP_SCNODE_ALL) {
8817 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008818 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02008819 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008820 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008821 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008822 LY_CHECK_GOTO(rc, cleanup);
8823 }
8824 }
8825
8826cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008827 lyxp_set_free_content(&orig_set);
8828 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008829 return rc;
8830}
8831
8832/**
8833 * @brief Evaluate AdditiveExpr. Logs directly on error.
8834 *
Michal Vaskod3678892020-05-21 10:06:58 +02008835 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008836 * | AdditiveExpr '+' MultiplicativeExpr
8837 * | AdditiveExpr '-' MultiplicativeExpr
8838 *
8839 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008840 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008841 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008842 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008843 * @param[in] options XPath options.
8844 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8845 */
8846static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008847eval_additive_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008848{
8849 LY_ERR rc;
8850 uint16_t this_op;
8851 struct lyxp_set orig_set, set2;
8852 uint16_t i;
8853
8854 assert(repeat);
8855
8856 set_init(&orig_set, set);
8857 set_init(&set2, set);
8858
8859 set_fill_set(&orig_set, set);
8860
Michal Vasko004d3152020-06-11 19:59:22 +02008861 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008862 LY_CHECK_GOTO(rc, cleanup);
8863
8864 /* ('+' / '-' MultiplicativeExpr)* */
8865 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008866 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008867
Michal Vasko004d3152020-06-11 19:59:22 +02008868 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008869 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008870 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008871 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008872
aPiecek8b0cc152021-05-31 16:40:31 +02008873 if (options & LYXP_SKIP_EXPR) {
8874 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008875 LY_CHECK_GOTO(rc, cleanup);
8876 continue;
8877 }
8878
8879 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008880 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008881 LY_CHECK_GOTO(rc, cleanup);
8882
8883 /* eval */
8884 if (options & LYXP_SCNODE_ALL) {
8885 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008886 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02008887 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008888 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008889 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008890 LY_CHECK_GOTO(rc, cleanup);
8891 }
8892 }
8893
8894cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008895 lyxp_set_free_content(&orig_set);
8896 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008897 return rc;
8898}
8899
8900/**
8901 * @brief Evaluate RelationalExpr. Logs directly on error.
8902 *
Michal Vaskod3678892020-05-21 10:06:58 +02008903 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008904 * | RelationalExpr '<' AdditiveExpr
8905 * | RelationalExpr '>' AdditiveExpr
8906 * | RelationalExpr '<=' AdditiveExpr
8907 * | RelationalExpr '>=' AdditiveExpr
8908 *
8909 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008910 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008911 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008912 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008913 * @param[in] options XPath options.
8914 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8915 */
8916static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008917eval_relational_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008918{
8919 LY_ERR rc;
8920 uint16_t this_op;
8921 struct lyxp_set orig_set, set2;
8922 uint16_t i;
8923
8924 assert(repeat);
8925
8926 set_init(&orig_set, set);
8927 set_init(&set2, set);
8928
8929 set_fill_set(&orig_set, set);
8930
Michal Vasko004d3152020-06-11 19:59:22 +02008931 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008932 LY_CHECK_GOTO(rc, cleanup);
8933
8934 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
8935 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008936 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008937
Michal Vasko004d3152020-06-11 19:59:22 +02008938 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
aPiecek8b0cc152021-05-31 16:40:31 +02008939 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008940 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008941 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008942
aPiecek8b0cc152021-05-31 16:40:31 +02008943 if (options & LYXP_SKIP_EXPR) {
8944 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008945 LY_CHECK_GOTO(rc, cleanup);
8946 continue;
8947 }
8948
8949 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008950 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008951 LY_CHECK_GOTO(rc, cleanup);
8952
8953 /* eval */
8954 if (options & LYXP_SCNODE_ALL) {
8955 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008956 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02008957 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008958 } else {
8959 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8960 LY_CHECK_GOTO(rc, cleanup);
8961 }
8962 }
8963
8964cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008965 lyxp_set_free_content(&orig_set);
8966 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008967 return rc;
8968}
8969
8970/**
8971 * @brief Evaluate EqualityExpr. Logs directly on error.
8972 *
Michal Vaskod3678892020-05-21 10:06:58 +02008973 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008974 * | EqualityExpr '!=' RelationalExpr
8975 *
8976 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008977 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008978 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008979 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008980 * @param[in] options XPath options.
8981 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8982 */
8983static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008984eval_equality_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008985{
8986 LY_ERR rc;
8987 uint16_t this_op;
8988 struct lyxp_set orig_set, set2;
8989 uint16_t i;
8990
8991 assert(repeat);
8992
8993 set_init(&orig_set, set);
8994 set_init(&set2, set);
8995
8996 set_fill_set(&orig_set, set);
8997
Michal Vasko004d3152020-06-11 19:59:22 +02008998 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008999 LY_CHECK_GOTO(rc, cleanup);
9000
9001 /* ('=' / '!=' RelationalExpr)* */
9002 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009003 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009004
Michal Vasko004d3152020-06-11 19:59:22 +02009005 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
aPiecek8b0cc152021-05-31 16:40:31 +02009006 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009007 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009008 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009009
aPiecek8b0cc152021-05-31 16:40:31 +02009010 if (options & LYXP_SKIP_EXPR) {
9011 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009012 LY_CHECK_GOTO(rc, cleanup);
9013 continue;
9014 }
9015
9016 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009017 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009018 LY_CHECK_GOTO(rc, cleanup);
9019
9020 /* eval */
9021 if (options & LYXP_SCNODE_ALL) {
9022 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02009023 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
9024 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009025 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009026 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009027 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009028 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
9029 LY_CHECK_GOTO(rc, cleanup);
9030 }
9031 }
9032
9033cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009034 lyxp_set_free_content(&orig_set);
9035 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009036 return rc;
9037}
9038
9039/**
9040 * @brief Evaluate AndExpr. Logs directly on error.
9041 *
Michal Vaskod3678892020-05-21 10:06:58 +02009042 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009043 *
9044 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009045 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009046 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009047 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009048 * @param[in] options XPath options.
9049 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9050 */
9051static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02009052eval_and_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009053{
9054 LY_ERR rc;
9055 struct lyxp_set orig_set, set2;
9056 uint16_t i;
9057
9058 assert(repeat);
9059
9060 set_init(&orig_set, set);
9061 set_init(&set2, set);
9062
9063 set_fill_set(&orig_set, set);
9064
Michal Vasko004d3152020-06-11 19:59:22 +02009065 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009066 LY_CHECK_GOTO(rc, cleanup);
9067
9068 /* cast to boolean, we know that will be the final result */
aPiecek8b0cc152021-05-31 16:40:31 +02009069 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02009070 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009071 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009072 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009073 }
9074
9075 /* ('and' EqualityExpr)* */
9076 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009077 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
aPiecek8b0cc152021-05-31 16:40:31 +02009078 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || !set->val.bln ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009079 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009080 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009081
9082 /* lazy evaluation */
aPiecek8b0cc152021-05-31 16:40:31 +02009083 if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
9084 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009085 LY_CHECK_GOTO(rc, cleanup);
9086 continue;
9087 }
9088
9089 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009090 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009091 LY_CHECK_GOTO(rc, cleanup);
9092
9093 /* eval - just get boolean value actually */
9094 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02009095 set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009096 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009097 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009098 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009099 set_fill_set(set, &set2);
9100 }
9101 }
9102
9103cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009104 lyxp_set_free_content(&orig_set);
9105 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009106 return rc;
9107}
9108
9109/**
9110 * @brief Evaluate OrExpr. Logs directly on error.
9111 *
Michal Vaskod3678892020-05-21 10:06:58 +02009112 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009113 *
9114 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009115 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009116 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009117 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009118 * @param[in] options XPath options.
9119 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9120 */
9121static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02009122eval_or_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009123{
9124 LY_ERR rc;
9125 struct lyxp_set orig_set, set2;
9126 uint16_t i;
9127
9128 assert(repeat);
9129
9130 set_init(&orig_set, set);
9131 set_init(&set2, set);
9132
9133 set_fill_set(&orig_set, set);
9134
Michal Vasko004d3152020-06-11 19:59:22 +02009135 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009136 LY_CHECK_GOTO(rc, cleanup);
9137
9138 /* cast to boolean, we know that will be the final result */
aPiecek8b0cc152021-05-31 16:40:31 +02009139 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02009140 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009141 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009142 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009143 }
9144
9145 /* ('or' AndExpr)* */
9146 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009147 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
aPiecek8b0cc152021-05-31 16:40:31 +02009148 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || set->val.bln ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009149 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009150 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009151
9152 /* lazy evaluation */
aPiecek8b0cc152021-05-31 16:40:31 +02009153 if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
9154 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009155 LY_CHECK_GOTO(rc, cleanup);
9156 continue;
9157 }
9158
9159 set_fill_set(&set2, &orig_set);
9160 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
9161 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02009162 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009163 LY_CHECK_GOTO(rc, cleanup);
9164
9165 /* eval - just get boolean value actually */
9166 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02009167 set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009168 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009169 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009170 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009171 set_fill_set(set, &set2);
9172 }
9173 }
9174
9175cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009176 lyxp_set_free_content(&orig_set);
9177 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009178 return rc;
9179}
9180
9181/**
Michal Vasko004d3152020-06-11 19:59:22 +02009182 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009183 *
9184 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009185 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009186 * @param[in] etype Expression type to evaluate.
aPiecek8b0cc152021-05-31 16:40:31 +02009187 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009188 * @param[in] options XPath options.
9189 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9190 */
9191static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02009192eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set,
9193 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009194{
9195 uint16_t i, count;
9196 enum lyxp_expr_type next_etype;
9197 LY_ERR rc;
9198
9199 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02009200 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009201 next_etype = LYXP_EXPR_NONE;
9202 } else {
9203 /* find etype repeat */
Radek Krejci1e008d22020-08-17 11:37:37 +02009204 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02009205
9206 /* select one-priority lower because etype expression called us */
9207 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009208 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02009209 /* count repeats for that expression */
Radek Krejci1e008d22020-08-17 11:37:37 +02009210 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02009211 } else {
9212 next_etype = LYXP_EXPR_NONE;
9213 }
9214 }
9215
9216 /* decide what expression are we parsing based on the repeat */
9217 switch (next_etype) {
9218 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02009219 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009220 break;
9221 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02009222 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009223 break;
9224 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02009225 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009226 break;
9227 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02009228 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009229 break;
9230 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02009231 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009232 break;
9233 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02009234 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009235 break;
9236 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02009237 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009238 break;
9239 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02009240 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009241 break;
9242 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02009243 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009244 break;
9245 default:
9246 LOGINT_RET(set->ctx);
9247 }
9248
9249 return rc;
9250}
9251
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009252/**
9253 * @brief Get root type.
9254 *
9255 * @param[in] ctx_node Context node.
9256 * @param[in] ctx_scnode Schema context node.
9257 * @param[in] options XPath options.
9258 * @return Root type.
9259 */
9260static enum lyxp_node_type
Radek Krejci1deb5be2020-08-26 16:43:36 +02009261lyxp_get_root_type(const struct lyd_node *ctx_node, const struct lysc_node *ctx_scnode, uint32_t options)
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009262{
Michal Vasko6b26e742020-07-17 15:02:10 +02009263 const struct lysc_node *op;
9264
Michal Vaskoa27245c2022-05-02 09:01:35 +02009265 /* explicit */
9266 if (options & LYXP_ACCESS_TREE_ALL) {
9267 return LYXP_NODE_ROOT;
9268 } else if (options & LYXP_ACCESS_TREE_CONFIG) {
9269 return LYXP_NODE_ROOT_CONFIG;
9270 }
9271
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009272 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009273 /* schema */
Radek Krejci1e008d22020-08-17 11:37:37 +02009274 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02009275
9276 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009277 /* general root that can access everything */
9278 return LYXP_NODE_ROOT;
9279 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
9280 /* root context node can access only config data (because we said so, it is unspecified) */
9281 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009282 }
Michal Vasko6b26e742020-07-17 15:02:10 +02009283 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009284 }
9285
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009286 /* data */
Michal Vasko6b26e742020-07-17 15:02:10 +02009287 op = ctx_node ? ctx_node->schema : NULL;
Michal Vaskod989ba02020-08-24 10:59:24 +02009288 for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02009289
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009290 if (op || !(options & LYXP_SCHEMA)) {
9291 /* general root that can access everything */
9292 return LYXP_NODE_ROOT;
Christian Hoppsb6ecaea2021-02-06 09:45:38 -05009293 } else if (!ctx_node || !ctx_node->schema || (ctx_node->schema->flags & LYS_CONFIG_W)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009294 /* root context node can access only config data (because we said so, it is unspecified) */
9295 return LYXP_NODE_ROOT_CONFIG;
9296 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009297 return LYXP_NODE_ROOT;
9298}
9299
Michal Vasko03ff5a72019-09-11 13:49:33 +02009300LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01009301lyxp_eval(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Radek Krejci8df109d2021-04-23 12:19:08 +02009302 LY_VALUE_FORMAT format, void *prefix_data, const struct lyd_node *ctx_node, const struct lyd_node *tree,
aPiecekfba75362021-10-07 12:39:48 +02009303 const struct lyxp_var *vars, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009304{
Michal Vasko004d3152020-06-11 19:59:22 +02009305 uint16_t tok_idx = 0;
Michal Vaskoddd76592022-01-17 13:34:48 +01009306 const struct lysc_node *snode;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009307 LY_ERR rc;
9308
Michal Vasko400e9672021-01-11 13:39:17 +01009309 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Radek Krejci8df109d2021-04-23 12:19:08 +02009310 if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) {
Michal Vaskoddd76592022-01-17 13:34:48 +01009311 LOGERR(ctx, LY_EINVAL, "Current module must be set if schema format is used.");
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009312 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02009313 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009314
Michal Vaskod3bb12f2020-12-04 14:33:09 +01009315 if (tree) {
9316 /* adjust the pointer to be the first top-level sibling */
9317 while (tree->parent) {
9318 tree = lyd_parent(tree);
9319 }
9320 tree = lyd_first_sibling(tree);
Michal Vaskoddd76592022-01-17 13:34:48 +01009321
9322 for (snode = tree->schema->parent; snode && (snode->nodetype & (LYS_CASE | LYS_CHOICE)); snode = snode->parent) {}
9323 if (snode) {
9324 /* unable to evaluate absolute paths */
9325 LOGERR(ctx, LY_EINVAL, "Data node \"%s\" has no parent but is not instance of a top-level schema node.",
9326 LYD_NAME(tree));
9327 return LY_EINVAL;
9328 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +01009329 }
9330
Michal Vasko03ff5a72019-09-11 13:49:33 +02009331 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02009332 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02009333 set->type = LYXP_SET_NODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009334 set->root_type = lyxp_get_root_type(ctx_node, NULL, options);
9335 set_insert_node(set, (struct lyd_node *)ctx_node, 0, ctx_node ? LYXP_NODE_ELEM : set->root_type, 0);
9336
Michal Vasko400e9672021-01-11 13:39:17 +01009337 set->ctx = (struct ly_ctx *)ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009338 set->cur_node = ctx_node;
9339 for (set->context_op = ctx_node ? ctx_node->schema : NULL;
Radek Krejci0f969882020-08-21 16:56:47 +02009340 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
9341 set->context_op = set->context_op->parent) {}
Michal Vaskof03ed032020-03-04 13:31:44 +01009342 set->tree = tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009343 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009344 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009345 set->prefix_data = prefix_data;
aPiecekfba75362021-10-07 12:39:48 +02009346 set->vars = vars;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009347
Radek Krejciddace2c2021-01-08 11:30:56 +01009348 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009349
Michal Vasko03ff5a72019-09-11 13:49:33 +02009350 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02009351 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009352 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02009353 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009354 }
9355
Michal Vasko4a7d4d62021-12-13 17:05:06 +01009356 if (set->cur_node) {
9357 LOG_LOCBACK(0, 1, 0, 0);
9358 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009359 return rc;
9360}
9361
9362#if 0
9363
9364/* full xml printing of set elements, not used currently */
9365
9366void
9367lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
9368{
9369 uint32_t i;
9370 char *str_num;
9371 struct lyout out;
9372
9373 memset(&out, 0, sizeof out);
9374
9375 out.type = LYOUT_STREAM;
9376 out.method.f = f;
9377
9378 switch (set->type) {
9379 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02009380 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009381 break;
9382 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02009383 ly_print_(&out, "Boolean XPath set:\n");
9384 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009385 break;
9386 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02009387 ly_print_(&out, "String XPath set:\n");
9388 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009389 break;
9390 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02009391 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009392
9393 if (isnan(set->value.num)) {
9394 str_num = strdup("NaN");
9395 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
9396 str_num = strdup("0");
9397 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
9398 str_num = strdup("Infinity");
9399 } else if (isinf(set->value.num) && signbit(set->value.num)) {
9400 str_num = strdup("-Infinity");
9401 } else if ((long long)set->value.num == set->value.num) {
9402 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
9403 str_num = NULL;
9404 }
9405 } else {
9406 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
9407 str_num = NULL;
9408 }
9409 }
9410 if (!str_num) {
9411 LOGMEM;
9412 return;
9413 }
Michal Vasko5233e962020-08-14 14:26:20 +02009414 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009415 free(str_num);
9416 break;
9417 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02009418 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009419
9420 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02009421 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009422 switch (set->node_type[i]) {
9423 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02009424 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009425 break;
9426 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02009427 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009428 break;
9429 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02009430 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009431 break;
9432 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02009433 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009434 break;
9435 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02009436 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009437 break;
9438 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02009439 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009440 break;
9441 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02009442 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009443 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02009444 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009445 break;
9446 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02009447 ly_print_(&out, "TEXT \"%s\"\n\n", ((struct lyd_node_leaf_list *)set->value.nodes[i])->value_str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009448 break;
9449 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02009450 ly_print_(&out, "ATTR \"%s\" = \"%s\"\n\n", set->value.attrs[i]->name, set->value.attrs[i]->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009451 break;
9452 }
9453 }
9454 break;
9455 }
9456}
9457
9458#endif
9459
9460LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009461lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009462{
9463 long double num;
9464 char *str;
9465 LY_ERR rc;
9466
9467 if (!set || (set->type == target)) {
9468 return LY_SUCCESS;
9469 }
9470
9471 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02009472 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009473
9474 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02009475 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009476 return LY_EINVAL;
9477 }
9478
9479 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02009480 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009481 switch (set->type) {
9482 case LYXP_SET_NUMBER:
9483 if (isnan(set->val.num)) {
9484 set->val.str = strdup("NaN");
9485 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9486 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
9487 set->val.str = strdup("0");
9488 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9489 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
9490 set->val.str = strdup("Infinity");
9491 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9492 } else if (isinf(set->val.num) && signbit(set->val.num)) {
9493 set->val.str = strdup("-Infinity");
9494 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9495 } else if ((long long)set->val.num == set->val.num) {
9496 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
9497 LOGMEM_RET(set->ctx);
9498 }
9499 set->val.str = str;
9500 } else {
9501 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
9502 LOGMEM_RET(set->ctx);
9503 }
9504 set->val.str = str;
9505 }
9506 break;
9507 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02009508 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009509 set->val.str = strdup("true");
9510 } else {
9511 set->val.str = strdup("false");
9512 }
9513 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
9514 break;
9515 case LYXP_SET_NODE_SET:
Michal Vasko03ff5a72019-09-11 13:49:33 +02009516 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009517 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02009518
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009519 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009520 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02009521 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009522 set->val.str = str;
9523 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009524 default:
9525 LOGINT_RET(set->ctx);
9526 }
9527 set->type = LYXP_SET_STRING;
9528 }
9529
9530 /* to NUMBER */
9531 if (target == LYXP_SET_NUMBER) {
9532 switch (set->type) {
9533 case LYXP_SET_STRING:
9534 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02009535 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009536 set->val.num = num;
9537 break;
9538 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02009539 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009540 set->val.num = 1;
9541 } else {
9542 set->val.num = 0;
9543 }
9544 break;
9545 default:
9546 LOGINT_RET(set->ctx);
9547 }
9548 set->type = LYXP_SET_NUMBER;
9549 }
9550
9551 /* to BOOLEAN */
9552 if (target == LYXP_SET_BOOLEAN) {
9553 switch (set->type) {
9554 case LYXP_SET_NUMBER:
9555 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02009556 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009557 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02009558 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009559 }
9560 break;
9561 case LYXP_SET_STRING:
9562 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02009563 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009564 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009565 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02009566 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009567 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009568 }
9569 break;
9570 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02009571 if (set->used) {
9572 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009573 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02009574 } else {
9575 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009576 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02009577 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009578 break;
9579 default:
9580 LOGINT_RET(set->ctx);
9581 }
9582 set->type = LYXP_SET_BOOLEAN;
9583 }
9584
Michal Vasko03ff5a72019-09-11 13:49:33 +02009585 return LY_SUCCESS;
9586}
9587
9588LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01009589lyxp_atomize(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Radek Krejci8df109d2021-04-23 12:19:08 +02009590 LY_VALUE_FORMAT format, void *prefix_data, const struct lysc_node *ctx_scnode, struct lyxp_set *set,
Michal Vasko400e9672021-01-11 13:39:17 +01009591 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009592{
Radek Krejci2efc45b2020-12-22 16:25:44 +01009593 LY_ERR ret;
Michal Vasko004d3152020-06-11 19:59:22 +02009594 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009595
Michal Vasko400e9672021-01-11 13:39:17 +01009596 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Radek Krejci8df109d2021-04-23 12:19:08 +02009597 if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009598 LOGARG(NULL, "Current module must be set if schema format is used.");
9599 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02009600 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009601
9602 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02009603 memset(set, 0, sizeof *set);
9604 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009605 set->root_type = lyxp_get_root_type(NULL, ctx_scnode, options);
9606 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, ctx_scnode, ctx_scnode ? LYXP_NODE_ELEM : set->root_type, NULL));
Radek Krejcif13b87b2020-12-01 22:02:17 +01009607 set->val.scnodes[0].in_ctx = LYXP_SET_SCNODE_START;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009608
Michal Vasko400e9672021-01-11 13:39:17 +01009609 set->ctx = (struct ly_ctx *)ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009610 set->cur_scnode = ctx_scnode;
Michal Vasko6b26e742020-07-17 15:02:10 +02009611 for (set->context_op = ctx_scnode;
Radek Krejci0f969882020-08-21 16:56:47 +02009612 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
9613 set->context_op = set->context_op->parent) {}
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009614 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009615 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009616 set->prefix_data = prefix_data;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009617
Radek Krejciddace2c2021-01-08 11:30:56 +01009618 LOG_LOCSET(set->cur_scnode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009619
Michal Vasko03ff5a72019-09-11 13:49:33 +02009620 /* evaluate */
Radek Krejci2efc45b2020-12-22 16:25:44 +01009621 ret = eval_expr_select(exp, &tok_idx, 0, set, options);
9622
Radek Krejciddace2c2021-01-08 11:30:56 +01009623 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009624 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009625}
Michal Vaskod43d71a2020-08-07 14:54:58 +02009626
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01009627LIBYANG_API_DEF const char *
Michal Vaskod43d71a2020-08-07 14:54:58 +02009628lyxp_get_expr(const struct lyxp_expr *path)
9629{
9630 if (!path) {
9631 return NULL;
9632 }
9633
9634 return path->expr;
9635}