blob: 1c1056b580e1d5e10205427e86aff7e94bbc019c [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 Vaskob4750962022-10-06 15:33:35 +020035#include "plugins_exts/metadata.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020036#include "plugins_types.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020037#include "printer_data.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020038#include "schema_compile_node.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020039#include "tree.h"
Radek Krejci77114102021-03-10 15:21:57 +010040#include "tree_data.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020041#include "tree_data_internal.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010042#include "tree_edit.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020043#include "tree_schema_internal.h"
44#include "xml.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020045
Michal Vaskodd528af2022-08-08 14:35:07 +020046static LY_ERR reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth);
47static LY_ERR eval_expr_select(const struct lyxp_expr *exp, uint32_t *tok_idx, enum lyxp_expr_type etype,
Michal Vasko40308e72020-10-20 16:38:40 +020048 struct lyxp_set *set, uint32_t options);
Michal Vaskofe1af042022-07-29 14:58:59 +020049static LY_ERR moveto_resolve_model(const char **qname, uint32_t *qname_len, const struct lyxp_set *set,
Michal Vasko93923692021-05-07 15:28:02 +020050 const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod);
Michal Vasko47da6562022-07-14 15:43:15 +020051static LY_ERR moveto_axis_node_next(const struct lyd_node **iter, enum lyxp_node_type *iter_type,
52 const struct lyd_node *node, enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set);
Michal Vasko49fec8e2022-05-24 10:28:33 +020053static LY_ERR moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname,
54 enum lyxp_axis axis, uint32_t options);
55static LY_ERR moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname,
56 enum lyxp_axis axis, uint32_t options);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +020057static LY_ERR moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, ly_bool *result);
Michal Vasko03ff5a72019-09-11 13:49:33 +020058
aPiecek96dc1e32021-10-08 15:45:59 +020059/* Functions are divided into the following basic classes:
60 *
61 * (re)parse functions:
62 * Parse functions parse the expression into
63 * tokens (syntactic analysis).
64 * Reparse functions perform semantic analysis
65 * (do not save the result, just a check) of
66 * the expression and fill repeat indices.
67 *
68 * warn functions:
69 * Warn functions check specific reasonable conditions for schema XPath
70 * and print a warning if they are not satisfied.
71 *
72 * moveto functions:
73 * They and only they actually change the context (set).
74 *
75 * eval functions:
76 * They execute a parsed XPath expression on some data subtree.
77 */
78
Michal Vasko03ff5a72019-09-11 13:49:33 +020079/**
80 * @brief Print the type of an XPath \p set.
81 *
82 * @param[in] set Set to use.
83 * @return Set type string.
84 */
85static const char *
86print_set_type(struct lyxp_set *set)
87{
88 switch (set->type) {
Michal Vasko03ff5a72019-09-11 13:49:33 +020089 case LYXP_SET_NODE_SET:
90 return "node set";
91 case LYXP_SET_SCNODE_SET:
92 return "schema node set";
93 case LYXP_SET_BOOLEAN:
94 return "boolean";
95 case LYXP_SET_NUMBER:
96 return "number";
97 case LYXP_SET_STRING:
98 return "string";
99 }
100
101 return NULL;
102}
103
Michal Vasko24cddf82020-06-01 08:17:01 +0200104const char *
Michal Vasko49fec8e2022-05-24 10:28:33 +0200105lyxp_token2str(enum lyxp_token tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200106{
107 switch (tok) {
108 case LYXP_TOKEN_PAR1:
109 return "(";
110 case LYXP_TOKEN_PAR2:
111 return ")";
112 case LYXP_TOKEN_BRACK1:
113 return "[";
114 case LYXP_TOKEN_BRACK2:
115 return "]";
116 case LYXP_TOKEN_DOT:
117 return ".";
118 case LYXP_TOKEN_DDOT:
119 return "..";
120 case LYXP_TOKEN_AT:
121 return "@";
122 case LYXP_TOKEN_COMMA:
123 return ",";
Michal Vaskoe0a8ce72023-04-04 08:30:44 +0200124 case LYXP_TOKEN_DCOLON:
125 return "::";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200126 case LYXP_TOKEN_NAMETEST:
127 return "NameTest";
128 case LYXP_TOKEN_NODETYPE:
129 return "NodeType";
aPiecekfba75362021-10-07 12:39:48 +0200130 case LYXP_TOKEN_VARREF:
131 return "VariableReference";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200132 case LYXP_TOKEN_FUNCNAME:
133 return "FunctionName";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200134 case LYXP_TOKEN_OPER_LOG:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200135 return "Operator(Logic)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200136 case LYXP_TOKEN_OPER_EQUAL:
137 return "Operator(Equal)";
138 case LYXP_TOKEN_OPER_NEQUAL:
139 return "Operator(Non-equal)";
140 case LYXP_TOKEN_OPER_COMP:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200141 return "Operator(Comparison)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200142 case LYXP_TOKEN_OPER_MATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200143 return "Operator(Math)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200144 case LYXP_TOKEN_OPER_UNI:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200145 return "Operator(Union)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200146 case LYXP_TOKEN_OPER_PATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200147 return "Operator(Path)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200148 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko14676352020-05-29 11:35:55 +0200149 return "Operator(Recursive Path)";
Michal Vaskoe0a8ce72023-04-04 08:30:44 +0200150 case LYXP_TOKEN_AXISNAME:
151 return "AxisName";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200152 case LYXP_TOKEN_LITERAL:
153 return "Literal";
154 case LYXP_TOKEN_NUMBER:
155 return "Number";
156 default:
157 LOGINT(NULL);
158 return "";
159 }
160}
161
162/**
Michal Vasko49fec8e2022-05-24 10:28:33 +0200163 * @brief Transform string into an axis.
164 *
165 * @param[in] str String to transform.
166 * @param[in] str_len Length of @p str.
167 * @return Transformed axis.
168 */
169static enum lyxp_axis
Michal Vaskodd528af2022-08-08 14:35:07 +0200170str2axis(const char *str, uint32_t str_len)
Michal Vasko49fec8e2022-05-24 10:28:33 +0200171{
172 switch (str_len) {
173 case 4:
174 assert(!strncmp("self", str, str_len));
175 return LYXP_AXIS_SELF;
176 case 5:
177 assert(!strncmp("child", str, str_len));
178 return LYXP_AXIS_CHILD;
179 case 6:
180 assert(!strncmp("parent", str, str_len));
181 return LYXP_AXIS_PARENT;
182 case 8:
183 assert(!strncmp("ancestor", str, str_len));
184 return LYXP_AXIS_ANCESTOR;
185 case 9:
186 if (str[0] == 'a') {
187 assert(!strncmp("attribute", str, str_len));
188 return LYXP_AXIS_ATTRIBUTE;
189 } else if (str[0] == 'f') {
190 assert(!strncmp("following", str, str_len));
191 return LYXP_AXIS_FOLLOWING;
192 } else {
193 assert(!strncmp("preceding", str, str_len));
194 return LYXP_AXIS_PRECEDING;
195 }
196 break;
197 case 10:
198 assert(!strncmp("descendant", str, str_len));
199 return LYXP_AXIS_DESCENDANT;
200 case 16:
201 assert(!strncmp("ancestor-or-self", str, str_len));
202 return LYXP_AXIS_ANCESTOR_OR_SELF;
203 case 17:
204 if (str[0] == 'f') {
205 assert(!strncmp("following-sibling", str, str_len));
206 return LYXP_AXIS_FOLLOWING_SIBLING;
207 } else {
208 assert(!strncmp("preceding-sibling", str, str_len));
209 return LYXP_AXIS_PRECEDING_SIBLING;
210 }
211 break;
212 case 18:
213 assert(!strncmp("descendant-or-self", str, str_len));
214 return LYXP_AXIS_DESCENDANT_OR_SELF;
215 }
216
217 LOGINT(NULL);
218 return 0;
219}
220
221/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200222 * @brief Print the whole expression \p exp to debug output.
223 *
224 * @param[in] exp Expression to use.
225 */
226static void
Michal Vasko40308e72020-10-20 16:38:40 +0200227print_expr_struct_debug(const struct lyxp_expr *exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200228{
Radek Krejcif13b87b2020-12-01 22:02:17 +0100229#define MSG_BUFFER_SIZE 128
230 char tmp[MSG_BUFFER_SIZE];
Michal Vasko1fdd8fa2021-01-08 09:21:45 +0100231 uint32_t i, j;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200232
Radek Krejci52b6d512020-10-12 12:33:17 +0200233 if (!exp || (ly_ll < LY_LLDBG)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200234 return;
235 }
236
237 LOGDBG(LY_LDGXPATH, "expression \"%s\":", exp->expr);
238 for (i = 0; i < exp->used; ++i) {
Michal Vasko49fec8e2022-05-24 10:28:33 +0200239 sprintf(tmp, "\ttoken %s, in expression \"%.*s\"", lyxp_token2str(exp->tokens[i]), exp->tok_len[i],
Michal Vasko69730152020-10-09 16:30:07 +0200240 &exp->expr[exp->tok_pos[i]]);
Michal Vasko23049552021-03-04 15:57:44 +0100241 if (exp->repeat && exp->repeat[i]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200242 sprintf(tmp + strlen(tmp), " (repeat %d", exp->repeat[i][0]);
243 for (j = 1; exp->repeat[i][j]; ++j) {
244 sprintf(tmp + strlen(tmp), ", %d", exp->repeat[i][j]);
245 }
246 strcat(tmp, ")");
247 }
248 LOGDBG(LY_LDGXPATH, tmp);
249 }
Radek Krejcif13b87b2020-12-01 22:02:17 +0100250#undef MSG_BUFFER_SIZE
Michal Vasko03ff5a72019-09-11 13:49:33 +0200251}
252
253#ifndef NDEBUG
254
255/**
256 * @brief Print XPath set content to debug output.
257 *
258 * @param[in] set Set to print.
259 */
260static void
261print_set_debug(struct lyxp_set *set)
262{
263 uint32_t i;
264 char *str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200265 struct lyxp_set_node *item;
266 struct lyxp_set_scnode *sitem;
267
Radek Krejci52b6d512020-10-12 12:33:17 +0200268 if (ly_ll < LY_LLDBG) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200269 return;
270 }
271
272 switch (set->type) {
273 case LYXP_SET_NODE_SET:
274 LOGDBG(LY_LDGXPATH, "set NODE SET:");
275 for (i = 0; i < set->used; ++i) {
276 item = &set->val.nodes[i];
277
278 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100279 case LYXP_NODE_NONE:
280 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): NONE", i + 1, item->pos);
281 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200282 case LYXP_NODE_ROOT:
283 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT", i + 1, item->pos);
284 break;
285 case LYXP_NODE_ROOT_CONFIG:
286 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT CONFIG", i + 1, item->pos);
287 break;
288 case LYXP_NODE_ELEM:
Michal Vasko9e685082021-01-29 14:49:09 +0100289 if ((item->node->schema->nodetype == LYS_LIST) && (lyd_child(item->node)->schema->nodetype == LYS_LEAF)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200290 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos,
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200291 item->node->schema->name, lyd_get_value(lyd_child(item->node)));
Michal Vasko9e685082021-01-29 14:49:09 +0100292 } else if (item->node->schema->nodetype == LYS_LEAFLIST) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200293 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (val: %s)", i + 1, item->pos,
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200294 item->node->schema->name, lyd_get_value(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200295 } else {
296 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s", i + 1, item->pos, item->node->schema->name);
297 }
298 break;
299 case LYXP_NODE_TEXT:
300 if (item->node->schema->nodetype & LYS_ANYDATA) {
301 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT <%s>", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200302 item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata");
Michal Vasko03ff5a72019-09-11 13:49:33 +0200303 } else {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200304 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 +0200305 }
306 break;
Michal Vasko9f96a052020-03-10 09:41:45 +0100307 case LYXP_NODE_META:
308 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 +0200309 set->val.meta[i].meta->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200310 break;
311 }
312 }
313 break;
314
315 case LYXP_SET_SCNODE_SET:
316 LOGDBG(LY_LDGXPATH, "set SCNODE SET:");
317 for (i = 0; i < set->used; ++i) {
318 sitem = &set->val.scnodes[i];
319
320 switch (sitem->type) {
321 case LYXP_NODE_ROOT:
322 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT", i + 1, sitem->in_ctx);
323 break;
324 case LYXP_NODE_ROOT_CONFIG:
325 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT CONFIG", i + 1, sitem->in_ctx);
326 break;
327 case LYXP_NODE_ELEM:
328 LOGDBG(LY_LDGXPATH, "\t%d (%u): ELEM %s", i + 1, sitem->in_ctx, sitem->scnode->name);
329 break;
330 default:
331 LOGINT(NULL);
332 break;
333 }
334 }
335 break;
336
Michal Vasko03ff5a72019-09-11 13:49:33 +0200337 case LYXP_SET_BOOLEAN:
338 LOGDBG(LY_LDGXPATH, "set BOOLEAN");
Michal Vasko004d3152020-06-11 19:59:22 +0200339 LOGDBG(LY_LDGXPATH, "\t%s", (set->val.bln ? "true" : "false"));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200340 break;
341
342 case LYXP_SET_STRING:
343 LOGDBG(LY_LDGXPATH, "set STRING");
344 LOGDBG(LY_LDGXPATH, "\t%s", set->val.str);
345 break;
346
347 case LYXP_SET_NUMBER:
348 LOGDBG(LY_LDGXPATH, "set NUMBER");
349
350 if (isnan(set->val.num)) {
351 str = strdup("NaN");
352 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
353 str = strdup("0");
354 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
355 str = strdup("Infinity");
356 } else if (isinf(set->val.num) && signbit(set->val.num)) {
357 str = strdup("-Infinity");
358 } else if ((long long)set->val.num == set->val.num) {
359 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
360 str = NULL;
361 }
362 } else {
363 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
364 str = NULL;
365 }
366 }
367 LY_CHECK_ERR_RET(!str, LOGMEM(NULL), );
368
369 LOGDBG(LY_LDGXPATH, "\t%s", str);
370 free(str);
371 }
372}
373
374#endif
375
376/**
377 * @brief Realloc the string \p str.
378 *
379 * @param[in] ctx libyang context for logging.
380 * @param[in] needed How much free space is required.
381 * @param[in,out] str Pointer to the string to use.
382 * @param[in,out] used Used bytes in \p str.
383 * @param[in,out] size Allocated bytes in \p str.
384 * @return LY_ERR
385 */
386static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +0200387cast_string_realloc(const struct ly_ctx *ctx, uint64_t needed, char **str, uint32_t *used, uint32_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200388{
Michal Vasko2291ab92022-08-08 08:53:12 +0200389 if (*size - (unsigned)*used < needed) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200390 do {
Michal Vaskodd528af2022-08-08 14:35:07 +0200391 if ((UINT32_MAX - *size) < LYXP_STRING_CAST_SIZE_STEP) {
392 LOGERR(ctx, LY_EINVAL, "XPath string length limit (%" PRIu32 ") reached.", UINT32_MAX);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200393 return LY_EINVAL;
394 }
395 *size += LYXP_STRING_CAST_SIZE_STEP;
Michal Vasko2291ab92022-08-08 08:53:12 +0200396 } while (*size - (unsigned)*used < needed);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200397 *str = ly_realloc(*str, *size * sizeof(char));
398 LY_CHECK_ERR_RET(!(*str), LOGMEM(ctx), LY_EMEM);
399 }
400
401 return LY_SUCCESS;
402}
403
404/**
405 * @brief Cast nodes recursively to one string @p str.
406 *
Michal Vasko47da6562022-07-14 15:43:15 +0200407 * @param[in] node Node to cast, NULL if root.
408 * @param[in] set XPath set.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200409 * @param[in] indent Current indent.
410 * @param[in,out] str Resulting string.
411 * @param[in,out] used Used bytes in @p str.
412 * @param[in,out] size Allocated bytes in @p str.
Michal Vasko47da6562022-07-14 15:43:15 +0200413 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200414 */
415static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +0200416cast_string_recursive(const struct lyd_node *node, struct lyxp_set *set, uint32_t indent, char **str, uint32_t *used,
417 uint32_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200418{
Radek Krejci7f769d72020-07-11 23:13:56 +0200419 char *buf, *line, *ptr = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200420 const char *value_str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200421 const struct lyd_node *child;
Michal Vasko47da6562022-07-14 15:43:15 +0200422 enum lyxp_node_type child_type;
Michal Vasko60ea6352020-06-29 13:39:39 +0200423 struct lyd_node *tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200424 struct lyd_node_any *any;
425 LY_ERR rc;
426
Michal Vasko47da6562022-07-14 15:43:15 +0200427 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && node && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200428 return LY_SUCCESS;
429 }
430
Michal Vasko47da6562022-07-14 15:43:15 +0200431 if (!node) {
432 /* fake container */
433 LY_CHECK_RET(cast_string_realloc(set->ctx, 1, str, used, size));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200434 strcpy(*str + (*used - 1), "\n");
435 ++(*used);
436
437 ++indent;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200438
Michal Vasko47da6562022-07-14 15:43:15 +0200439 /* print all the top-level nodes */
440 child = NULL;
441 child_type = 0;
442 while (!moveto_axis_node_next(&child, &child_type, NULL, set->root_type, LYXP_AXIS_CHILD, set)) {
443 LY_CHECK_RET(cast_string_recursive(child, set, indent, str, used, size));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200444 }
445
Michal Vasko47da6562022-07-14 15:43:15 +0200446 /* end fake container */
447 LY_CHECK_RET(cast_string_realloc(set->ctx, 1, str, used, size));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200448 strcpy(*str + (*used - 1), "\n");
449 ++(*used);
450
451 --indent;
Michal Vasko47da6562022-07-14 15:43:15 +0200452 } else {
453 switch (node->schema->nodetype) {
454 case LYS_CONTAINER:
455 case LYS_LIST:
456 case LYS_RPC:
457 case LYS_NOTIF:
458 LY_CHECK_RET(cast_string_realloc(set->ctx, 1, str, used, size));
459 strcpy(*str + (*used - 1), "\n");
460 ++(*used);
461
462 for (child = lyd_child(node); child; child = child->next) {
463 LY_CHECK_RET(cast_string_recursive(child, set, indent + 1, str, used, size));
464 }
465
466 break;
467
468 case LYS_LEAF:
469 case LYS_LEAFLIST:
470 value_str = lyd_get_value(node);
471
472 /* print indent */
473 LY_CHECK_RET(cast_string_realloc(set->ctx, indent * 2 + strlen(value_str) + 1, str, used, size));
474 memset(*str + (*used - 1), ' ', indent * 2);
475 *used += indent * 2;
476
477 /* print value */
478 if (*used == 1) {
479 sprintf(*str + (*used - 1), "%s", value_str);
480 *used += strlen(value_str);
481 } else {
482 sprintf(*str + (*used - 1), "%s\n", value_str);
483 *used += strlen(value_str) + 1;
484 }
485
486 break;
487
488 case LYS_ANYXML:
489 case LYS_ANYDATA:
490 any = (struct lyd_node_any *)node;
491 if (!(void *)any->value.tree) {
492 /* no content */
493 buf = strdup("");
494 LY_CHECK_ERR_RET(!buf, LOGMEM(set->ctx), LY_EMEM);
495 } else {
496 struct ly_out *out;
497
498 if (any->value_type == LYD_ANYDATA_LYB) {
499 /* try to parse it into a data tree */
500 if (lyd_parse_data_mem((struct ly_ctx *)set->ctx, any->value.mem, LYD_LYB,
501 LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &tree) == LY_SUCCESS) {
502 /* successfully parsed */
503 free(any->value.mem);
504 any->value.tree = tree;
505 any->value_type = LYD_ANYDATA_DATATREE;
506 }
507 /* error is covered by the following switch where LYD_ANYDATA_LYB causes failure */
508 }
509
510 switch (any->value_type) {
511 case LYD_ANYDATA_STRING:
512 case LYD_ANYDATA_XML:
513 case LYD_ANYDATA_JSON:
514 buf = strdup(any->value.json);
515 LY_CHECK_ERR_RET(!buf, LOGMEM(set->ctx), LY_EMEM);
516 break;
517 case LYD_ANYDATA_DATATREE:
518 LY_CHECK_RET(ly_out_new_memory(&buf, 0, &out));
519 rc = lyd_print_all(out, any->value.tree, LYD_XML, 0);
520 ly_out_free(out, NULL, 0);
521 LY_CHECK_RET(rc < 0, -rc);
522 break;
523 case LYD_ANYDATA_LYB:
524 LOGERR(set->ctx, LY_EINVAL, "Cannot convert LYB anydata into string.");
525 return LY_EINVAL;
526 }
527 }
528
529 line = strtok_r(buf, "\n", &ptr);
530 do {
531 rc = cast_string_realloc(set->ctx, indent * 2 + strlen(line) + 1, str, used, size);
532 if (rc != LY_SUCCESS) {
533 free(buf);
534 return rc;
535 }
536 memset(*str + (*used - 1), ' ', indent * 2);
537 *used += indent * 2;
538
539 strcpy(*str + (*used - 1), line);
540 *used += strlen(line);
541
542 strcpy(*str + (*used - 1), "\n");
543 *used += 1;
544 } while ((line = strtok_r(NULL, "\n", &ptr)));
545
546 free(buf);
547 break;
548
549 default:
550 LOGINT_RET(set->ctx);
551 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200552 }
553
554 return LY_SUCCESS;
555}
556
557/**
558 * @brief Cast an element into a string.
559 *
Michal Vasko47da6562022-07-14 15:43:15 +0200560 * @param[in] node Node to cast, NULL if root.
561 * @param[in] set XPath set.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200562 * @param[out] str Element cast to dynamically-allocated string.
563 * @return LY_ERR
564 */
565static LY_ERR
Michal Vasko47da6562022-07-14 15:43:15 +0200566cast_string_elem(const struct lyd_node *node, struct lyxp_set *set, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200567{
Michal Vaskodd528af2022-08-08 14:35:07 +0200568 uint32_t used, size;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200569 LY_ERR rc;
570
571 *str = malloc(LYXP_STRING_CAST_SIZE_START * sizeof(char));
Michal Vasko47da6562022-07-14 15:43:15 +0200572 LY_CHECK_ERR_RET(!*str, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200573 (*str)[0] = '\0';
574 used = 1;
575 size = LYXP_STRING_CAST_SIZE_START;
576
Michal Vasko47da6562022-07-14 15:43:15 +0200577 rc = cast_string_recursive(node, set, 0, str, &used, &size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200578 if (rc != LY_SUCCESS) {
579 free(*str);
580 return rc;
581 }
582
583 if (size > used) {
584 *str = ly_realloc(*str, used * sizeof(char));
Michal Vasko47da6562022-07-14 15:43:15 +0200585 LY_CHECK_ERR_RET(!*str, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200586 }
587 return LY_SUCCESS;
588}
589
590/**
591 * @brief Cast a LYXP_SET_NODE_SET set into a string.
592 * Context position aware.
593 *
594 * @param[in] set Set to cast.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200595 * @param[out] str Cast dynamically-allocated string.
596 * @return LY_ERR
597 */
598static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100599cast_node_set_to_string(struct lyxp_set *set, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200600{
Michal Vaskoaa677062021-03-09 13:52:53 +0100601 if (!set->used) {
602 *str = strdup("");
603 if (!*str) {
604 LOGMEM_RET(set->ctx);
605 }
606 return LY_SUCCESS;
607 }
608
Michal Vasko03ff5a72019-09-11 13:49:33 +0200609 switch (set->val.nodes[0].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100610 case LYXP_NODE_NONE:
611 /* invalid */
612 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200613 case LYXP_NODE_ROOT:
614 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200615 case LYXP_NODE_ELEM:
616 case LYXP_NODE_TEXT:
Michal Vasko47da6562022-07-14 15:43:15 +0200617 return cast_string_elem(set->val.nodes[0].node, set, str);
Michal Vasko9f96a052020-03-10 09:41:45 +0100618 case LYXP_NODE_META:
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200619 *str = strdup(lyd_get_meta_value(set->val.meta[0].meta));
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200620 if (!*str) {
621 LOGMEM_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200622 }
623 return LY_SUCCESS;
624 }
625
626 LOGINT_RET(set->ctx);
627}
628
629/**
630 * @brief Cast a string into an XPath number.
631 *
632 * @param[in] str String to use.
633 * @return Cast number.
634 */
635static long double
636cast_string_to_number(const char *str)
637{
638 long double num;
639 char *ptr;
640
641 errno = 0;
642 num = strtold(str, &ptr);
643 if (errno || *ptr) {
644 num = NAN;
645 }
646 return num;
647}
648
649/**
650 * @brief Callback for checking value equality.
651 *
Michal Vasko62524a92021-02-26 10:08:50 +0100652 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200653 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200654 * @param[in] val1_p First value.
655 * @param[in] val2_p Second value.
656 * @param[in] mod Whether hash table is being modified.
657 * @param[in] cb_data Callback data.
Radek Krejci857189e2020-09-01 13:26:36 +0200658 * @return Boolean value whether values are equal or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200659 */
Radek Krejci857189e2020-09-01 13:26:36 +0200660static ly_bool
661set_values_equal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko03ff5a72019-09-11 13:49:33 +0200662{
663 struct lyxp_set_hash_node *val1, *val2;
664
665 val1 = (struct lyxp_set_hash_node *)val1_p;
666 val2 = (struct lyxp_set_hash_node *)val2_p;
667
668 if ((val1->node == val2->node) && (val1->type == val2->type)) {
669 return 1;
670 }
671
672 return 0;
673}
674
675/**
676 * @brief Insert node and its hash into set.
677 *
678 * @param[in] set et to insert to.
679 * @param[in] node Node with hash.
680 * @param[in] type Node type.
681 */
682static void
683set_insert_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
684{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200685 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200686 uint32_t i, hash;
687 struct lyxp_set_hash_node hnode;
688
689 if (!set->ht && (set->used >= LYD_HT_MIN_ITEMS)) {
690 /* create hash table and add all the nodes */
691 set->ht = lyht_new(1, sizeof(struct lyxp_set_hash_node), set_values_equal_cb, NULL, 1);
692 for (i = 0; i < set->used; ++i) {
693 hnode.node = set->val.nodes[i].node;
694 hnode.type = set->val.nodes[i].type;
695
Michal Vaskoae130f52023-04-20 14:25:16 +0200696 hash = lyht_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
697 hash = lyht_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
698 hash = lyht_hash_multi(hash, NULL, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200699
700 r = lyht_insert(set->ht, &hnode, hash, NULL);
701 assert(!r);
702 (void)r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200703
Michal Vasko513b87d2023-08-04 14:03:40 +0200704 if ((hnode.node == node) && (hnode.type == type)) {
Michal Vasko9d6befd2019-12-11 14:56:56 +0100705 /* it was just added, do not add it twice */
Michal Vasko513b87d2023-08-04 14:03:40 +0200706 return;
Michal Vasko9d6befd2019-12-11 14:56:56 +0100707 }
708 }
709 }
710
Michal Vasko513b87d2023-08-04 14:03:40 +0200711 if (set->ht) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200712 /* add the new node into hash table */
713 hnode.node = node;
714 hnode.type = type;
715
Michal Vaskoae130f52023-04-20 14:25:16 +0200716 hash = lyht_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
717 hash = lyht_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
718 hash = lyht_hash_multi(hash, NULL, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200719
720 r = lyht_insert(set->ht, &hnode, hash, NULL);
721 assert(!r);
722 (void)r;
723 }
724}
725
726/**
727 * @brief Remove node and its hash from set.
728 *
729 * @param[in] set Set to remove from.
730 * @param[in] node Node to remove.
731 * @param[in] type Node type.
732 */
733static void
734set_remove_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
735{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200736 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200737 struct lyxp_set_hash_node hnode;
738 uint32_t hash;
739
740 if (set->ht) {
741 hnode.node = node;
742 hnode.type = type;
743
Michal Vaskoae130f52023-04-20 14:25:16 +0200744 hash = lyht_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
745 hash = lyht_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
746 hash = lyht_hash_multi(hash, NULL, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200747
748 r = lyht_remove(set->ht, &hnode, hash);
749 assert(!r);
750 (void)r;
751
752 if (!set->ht->used) {
Michal Vasko77b7f90a2023-01-31 15:42:41 +0100753 lyht_free(set->ht, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200754 set->ht = NULL;
755 }
756 }
757}
758
759/**
760 * @brief Check whether node is in set based on its hash.
761 *
762 * @param[in] set Set to search in.
763 * @param[in] node Node to search for.
764 * @param[in] type Node type.
765 * @param[in] skip_idx Index in @p set to skip.
766 * @return LY_ERR
767 */
768static LY_ERR
769set_dup_node_hash_check(const struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type, int skip_idx)
770{
771 struct lyxp_set_hash_node hnode, *match_p;
772 uint32_t hash;
773
774 hnode.node = node;
775 hnode.type = type;
776
Michal Vaskoae130f52023-04-20 14:25:16 +0200777 hash = lyht_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
778 hash = lyht_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
779 hash = lyht_hash_multi(hash, NULL, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200780
781 if (!lyht_find(set->ht, &hnode, hash, (void **)&match_p)) {
782 if ((skip_idx > -1) && (set->val.nodes[skip_idx].node == match_p->node) && (set->val.nodes[skip_idx].type == match_p->type)) {
783 /* we found it on the index that should be skipped, find another */
784 hnode = *match_p;
785 if (lyht_find_next(set->ht, &hnode, hash, (void **)&match_p)) {
786 /* none other found */
787 return LY_SUCCESS;
788 }
789 }
790
791 return LY_EEXIST;
792 }
793
794 /* not found */
795 return LY_SUCCESS;
796}
797
Michal Vaskod3678892020-05-21 10:06:58 +0200798void
799lyxp_set_free_content(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200800{
801 if (!set) {
802 return;
803 }
804
805 if (set->type == LYXP_SET_NODE_SET) {
806 free(set->val.nodes);
Michal Vasko77b7f90a2023-01-31 15:42:41 +0100807 lyht_free(set->ht, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200808 } else if (set->type == LYXP_SET_SCNODE_SET) {
809 free(set->val.scnodes);
Michal Vasko77b7f90a2023-01-31 15:42:41 +0100810 lyht_free(set->ht, NULL);
Michal Vaskod3678892020-05-21 10:06:58 +0200811 } else {
812 if (set->type == LYXP_SET_STRING) {
813 free(set->val.str);
814 }
815 set->type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200816 }
Michal Vaskod3678892020-05-21 10:06:58 +0200817
818 set->val.nodes = NULL;
819 set->used = 0;
820 set->size = 0;
821 set->ht = NULL;
822 set->ctx_pos = 0;
aPiecek748da732021-06-01 09:56:43 +0200823 set->ctx_size = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200824}
825
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100826/**
827 * @brief Free dynamically-allocated set.
828 *
829 * @param[in] set Set to free.
830 */
831static void
Michal Vasko03ff5a72019-09-11 13:49:33 +0200832lyxp_set_free(struct lyxp_set *set)
833{
834 if (!set) {
835 return;
836 }
837
Michal Vaskod3678892020-05-21 10:06:58 +0200838 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200839 free(set);
840}
841
842/**
843 * @brief Initialize set context.
844 *
845 * @param[in] new Set to initialize.
846 * @param[in] set Arbitrary initialized set.
847 */
848static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200849set_init(struct lyxp_set *new, const struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200850{
851 memset(new, 0, sizeof *new);
Michal Vasko02a77382019-09-12 11:47:35 +0200852 if (set) {
Michal Vasko306e2832022-07-25 09:15:17 +0200853 new->non_child_axis = set->non_child_axis;
Michal Vasko02a77382019-09-12 11:47:35 +0200854 new->ctx = set->ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200855 new->cur_node = set->cur_node;
Michal Vasko588112f2019-12-10 14:51:53 +0100856 new->root_type = set->root_type;
Michal Vasko6b26e742020-07-17 15:02:10 +0200857 new->context_op = set->context_op;
Michal Vaskof03ed032020-03-04 13:31:44 +0100858 new->tree = set->tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200859 new->cur_mod = set->cur_mod;
Michal Vasko02a77382019-09-12 11:47:35 +0200860 new->format = set->format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200861 new->prefix_data = set->prefix_data;
aPiecekfba75362021-10-07 12:39:48 +0200862 new->vars = set->vars;
Michal Vasko02a77382019-09-12 11:47:35 +0200863 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200864}
865
866/**
867 * @brief Create a deep copy of a set.
868 *
869 * @param[in] set Set to copy.
870 * @return Copy of @p set.
871 */
872static struct lyxp_set *
873set_copy(struct lyxp_set *set)
874{
875 struct lyxp_set *ret;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +0100876 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200877
878 if (!set) {
879 return NULL;
880 }
881
882 ret = malloc(sizeof *ret);
883 LY_CHECK_ERR_RET(!ret, LOGMEM(set->ctx), NULL);
884 set_init(ret, set);
885
886 if (set->type == LYXP_SET_SCNODE_SET) {
887 ret->type = set->type;
888
889 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100890 if ((set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) ||
891 (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200892 uint32_t idx;
Michal Vasko26bbb272022-08-02 14:54:33 +0200893
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200894 LY_CHECK_ERR_RET(lyxp_set_scnode_insert_node(ret, set->val.scnodes[i].scnode, set->val.scnodes[i].type,
Michal Vasko7333cb32022-07-29 16:30:29 +0200895 set->val.scnodes[i].axis, &idx), lyxp_set_free(ret), NULL);
Michal Vasko3f27c522020-01-06 08:37:49 +0100896 /* coverity seems to think scnodes can be NULL */
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200897 if (!ret->val.scnodes) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200898 lyxp_set_free(ret);
899 return NULL;
900 }
Michal Vaskoba716542019-12-16 10:01:58 +0100901 ret->val.scnodes[idx].in_ctx = set->val.scnodes[i].in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200902 }
903 }
904 } else if (set->type == LYXP_SET_NODE_SET) {
905 ret->type = set->type;
Michal Vasko08e9b112021-06-11 15:41:17 +0200906 if (set->used) {
907 ret->val.nodes = malloc(set->used * sizeof *ret->val.nodes);
908 LY_CHECK_ERR_RET(!ret->val.nodes, LOGMEM(set->ctx); free(ret), NULL);
909 memcpy(ret->val.nodes, set->val.nodes, set->used * sizeof *ret->val.nodes);
910 } else {
911 ret->val.nodes = NULL;
912 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200913
914 ret->used = ret->size = set->used;
915 ret->ctx_pos = set->ctx_pos;
916 ret->ctx_size = set->ctx_size;
Michal Vasko4a04e542021-02-01 08:58:30 +0100917 if (set->ht) {
918 ret->ht = lyht_dup(set->ht);
919 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200920 } else {
Radek Krejci0f969882020-08-21 16:56:47 +0200921 memcpy(ret, set, sizeof *ret);
922 if (set->type == LYXP_SET_STRING) {
923 ret->val.str = strdup(set->val.str);
924 LY_CHECK_ERR_RET(!ret->val.str, LOGMEM(set->ctx); free(ret), NULL);
925 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200926 }
927
928 return ret;
929}
930
931/**
932 * @brief Fill XPath set with a string. Any current data are disposed of.
933 *
934 * @param[in] set Set to fill.
935 * @param[in] string String to fill into \p set.
936 * @param[in] str_len Length of \p string. 0 is a valid value!
937 */
938static void
Michal Vaskodd528af2022-08-08 14:35:07 +0200939set_fill_string(struct lyxp_set *set, const char *string, uint32_t str_len)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200940{
Michal Vaskod3678892020-05-21 10:06:58 +0200941 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200942
943 set->type = LYXP_SET_STRING;
944 if ((str_len == 0) && (string[0] != '\0')) {
945 string = "";
946 }
947 set->val.str = strndup(string, str_len);
948}
949
950/**
951 * @brief Fill XPath set with a number. Any current data are disposed of.
952 *
953 * @param[in] set Set to fill.
954 * @param[in] number Number to fill into \p set.
955 */
956static void
957set_fill_number(struct lyxp_set *set, long double number)
958{
Michal Vaskod3678892020-05-21 10:06:58 +0200959 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200960
961 set->type = LYXP_SET_NUMBER;
962 set->val.num = number;
963}
964
965/**
966 * @brief Fill XPath set with a boolean. Any current data are disposed of.
967 *
968 * @param[in] set Set to fill.
969 * @param[in] boolean Boolean to fill into \p set.
970 */
971static void
Radek Krejci857189e2020-09-01 13:26:36 +0200972set_fill_boolean(struct lyxp_set *set, ly_bool boolean)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200973{
Michal Vaskod3678892020-05-21 10:06:58 +0200974 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200975
976 set->type = LYXP_SET_BOOLEAN;
Michal Vasko004d3152020-06-11 19:59:22 +0200977 set->val.bln = boolean;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200978}
979
980/**
981 * @brief Fill XPath set with the value from another set (deep assign).
982 * Any current data are disposed of.
983 *
984 * @param[in] trg Set to fill.
985 * @param[in] src Source set to copy into \p trg.
986 */
987static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200988set_fill_set(struct lyxp_set *trg, const struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200989{
990 if (!trg || !src) {
991 return;
992 }
993
Michal Vaskof06d19d2023-08-04 14:04:08 +0200994 lyxp_set_free_content(trg);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200995 set_init(trg, src);
996
997 if (src->type == LYXP_SET_SCNODE_SET) {
998 trg->type = LYXP_SET_SCNODE_SET;
999 trg->used = src->used;
1000 trg->size = src->used;
1001
Michal Vasko08e9b112021-06-11 15:41:17 +02001002 if (trg->size) {
1003 trg->val.scnodes = ly_realloc(trg->val.scnodes, trg->size * sizeof *trg->val.scnodes);
1004 LY_CHECK_ERR_RET(!trg->val.scnodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
1005 memcpy(trg->val.scnodes, src->val.scnodes, src->used * sizeof *src->val.scnodes);
1006 } else {
1007 trg->val.scnodes = NULL;
1008 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001009 } else if (src->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02001010 set_fill_boolean(trg, src->val.bln);
Michal Vasko44f3d2c2020-08-24 09:49:38 +02001011 } else if (src->type == LYXP_SET_NUMBER) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001012 set_fill_number(trg, src->val.num);
1013 } else if (src->type == LYXP_SET_STRING) {
1014 set_fill_string(trg, src->val.str, strlen(src->val.str));
1015 } else {
1016 if (trg->type == LYXP_SET_NODE_SET) {
1017 free(trg->val.nodes);
1018 } else if (trg->type == LYXP_SET_STRING) {
1019 free(trg->val.str);
1020 }
1021
Michal Vaskod3678892020-05-21 10:06:58 +02001022 assert(src->type == LYXP_SET_NODE_SET);
1023
1024 trg->type = LYXP_SET_NODE_SET;
1025 trg->used = src->used;
1026 trg->size = src->used;
1027 trg->ctx_pos = src->ctx_pos;
1028 trg->ctx_size = src->ctx_size;
1029
Michal Vasko08e9b112021-06-11 15:41:17 +02001030 if (trg->size) {
1031 trg->val.nodes = malloc(trg->size * sizeof *trg->val.nodes);
1032 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
1033 memcpy(trg->val.nodes, src->val.nodes, src->used * sizeof *src->val.nodes);
1034 } else {
1035 trg->val.nodes = NULL;
1036 }
Michal Vaskod3678892020-05-21 10:06:58 +02001037 if (src->ht) {
1038 trg->ht = lyht_dup(src->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001039 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02001040 trg->ht = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001041 }
1042 }
1043}
1044
1045/**
1046 * @brief Clear context of all schema nodes.
1047 *
1048 * @param[in] set Set to clear.
Michal Vasko1a09b212021-05-06 13:00:10 +02001049 * @param[in] new_ctx New context state for all the nodes currently in the context.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001050 */
1051static void
Michal Vasko1a09b212021-05-06 13:00:10 +02001052set_scnode_clear_ctx(struct lyxp_set *set, int32_t new_ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001053{
1054 uint32_t i;
1055
1056 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001057 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a09b212021-05-06 13:00:10 +02001058 set->val.scnodes[i].in_ctx = new_ctx;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001059 } else if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START) {
1060 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001061 }
1062 }
1063}
1064
1065/**
1066 * @brief Remove a node from a set. Removing last node changes
1067 * set into LYXP_SET_EMPTY. Context position aware.
1068 *
1069 * @param[in] set Set to use.
1070 * @param[in] idx Index from @p set of the node to be removed.
1071 */
1072static void
1073set_remove_node(struct lyxp_set *set, uint32_t idx)
1074{
1075 assert(set && (set->type == LYXP_SET_NODE_SET));
1076 assert(idx < set->used);
1077
1078 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1079
1080 --set->used;
Michal Vasko08e9b112021-06-11 15:41:17 +02001081 if (idx < set->used) {
1082 memmove(&set->val.nodes[idx], &set->val.nodes[idx + 1], (set->used - idx) * sizeof *set->val.nodes);
1083 } else if (!set->used) {
Michal Vaskod3678892020-05-21 10:06:58 +02001084 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001085 }
1086}
1087
1088/**
Michal Vasko2caefc12019-11-14 16:07:56 +01001089 * @brief Remove a node from a set by setting its type to LYXP_NODE_NONE.
Michal Vasko57eab132019-09-24 11:46:26 +02001090 *
1091 * @param[in] set Set to use.
1092 * @param[in] idx Index from @p set of the node to be removed.
1093 */
1094static void
Michal Vasko2caefc12019-11-14 16:07:56 +01001095set_remove_node_none(struct lyxp_set *set, uint32_t idx)
Michal Vasko57eab132019-09-24 11:46:26 +02001096{
1097 assert(set && (set->type == LYXP_SET_NODE_SET));
1098 assert(idx < set->used);
1099
Michal Vasko2caefc12019-11-14 16:07:56 +01001100 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1101 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1102 }
1103 set->val.nodes[idx].type = LYXP_NODE_NONE;
Michal Vasko57eab132019-09-24 11:46:26 +02001104}
1105
1106/**
Michal Vasko2caefc12019-11-14 16:07:56 +01001107 * @brief Remove all LYXP_NODE_NONE nodes from a set. Removing last node changes
Michal Vasko57eab132019-09-24 11:46:26 +02001108 * set into LYXP_SET_EMPTY. Context position aware.
1109 *
1110 * @param[in] set Set to consolidate.
1111 */
1112static void
Michal Vasko2caefc12019-11-14 16:07:56 +01001113set_remove_nodes_none(struct lyxp_set *set)
Michal Vasko57eab132019-09-24 11:46:26 +02001114{
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01001115 uint32_t i, orig_used, end = 0;
1116 int64_t start;
Michal Vasko57eab132019-09-24 11:46:26 +02001117
Michal Vaskod3678892020-05-21 10:06:58 +02001118 assert(set);
Michal Vasko57eab132019-09-24 11:46:26 +02001119
1120 orig_used = set->used;
1121 set->used = 0;
Michal Vaskod989ba02020-08-24 10:59:24 +02001122 for (i = 0; i < orig_used; ) {
Michal Vasko57eab132019-09-24 11:46:26 +02001123 start = -1;
1124 do {
Michal Vasko2caefc12019-11-14 16:07:56 +01001125 if ((set->val.nodes[i].type != LYXP_NODE_NONE) && (start == -1)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001126 start = i;
Michal Vasko2caefc12019-11-14 16:07:56 +01001127 } else if ((start > -1) && (set->val.nodes[i].type == LYXP_NODE_NONE)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001128 end = i;
1129 ++i;
1130 break;
1131 }
1132
1133 ++i;
1134 if (i == orig_used) {
1135 end = i;
1136 }
1137 } while (i < orig_used);
1138
1139 if (start > -1) {
1140 /* move the whole chunk of valid nodes together */
1141 if (set->used != (unsigned)start) {
1142 memmove(&set->val.nodes[set->used], &set->val.nodes[start], (end - start) * sizeof *set->val.nodes);
1143 }
1144 set->used += end - start;
1145 }
1146 }
Michal Vasko57eab132019-09-24 11:46:26 +02001147}
1148
1149/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001150 * @brief Check for duplicates in a node set.
1151 *
1152 * @param[in] set Set to check.
1153 * @param[in] node Node to look for in @p set.
1154 * @param[in] node_type Type of @p node.
1155 * @param[in] skip_idx Index from @p set to skip.
1156 * @return LY_ERR
1157 */
1158static LY_ERR
1159set_dup_node_check(const struct lyxp_set *set, const struct lyd_node *node, enum lyxp_node_type node_type, int skip_idx)
1160{
1161 uint32_t i;
1162
Michal Vasko2caefc12019-11-14 16:07:56 +01001163 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001164 return set_dup_node_hash_check(set, (struct lyd_node *)node, node_type, skip_idx);
1165 }
1166
1167 for (i = 0; i < set->used; ++i) {
1168 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1169 continue;
1170 }
1171
1172 if ((set->val.nodes[i].node == node) && (set->val.nodes[i].type == node_type)) {
1173 return LY_EEXIST;
1174 }
1175 }
1176
1177 return LY_SUCCESS;
1178}
1179
Radek Krejci857189e2020-09-01 13:26:36 +02001180ly_bool
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001181lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, int skip_idx,
1182 uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001183{
1184 uint32_t i;
1185
1186 for (i = 0; i < set->used; ++i) {
1187 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1188 continue;
1189 }
1190
1191 if ((set->val.scnodes[i].scnode == node) && (set->val.scnodes[i].type == node_type)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001192 if (index_p) {
1193 *index_p = i;
1194 }
1195 return 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001196 }
1197 }
1198
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001199 return 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001200}
1201
Michal Vaskoecd62de2019-11-13 12:35:11 +01001202void
1203lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001204{
1205 uint32_t orig_used, i, j;
1206
Michal Vaskod3678892020-05-21 10:06:58 +02001207 assert((set1->type == LYXP_SET_SCNODE_SET) && (set2->type == LYXP_SET_SCNODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001208
Michal Vaskod3678892020-05-21 10:06:58 +02001209 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001210 return;
1211 }
1212
Michal Vaskod3678892020-05-21 10:06:58 +02001213 if (!set1->used) {
aPiecekadc1e4f2021-10-07 11:15:12 +02001214 /* release hidden allocated data (lyxp_set.size) */
1215 lyxp_set_free_content(set1);
1216 /* direct copying of the entire structure */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001217 memcpy(set1, set2, sizeof *set1);
1218 return;
1219 }
1220
1221 if (set1->used + set2->used > set1->size) {
1222 set1->size = set1->used + set2->used;
1223 set1->val.scnodes = ly_realloc(set1->val.scnodes, set1->size * sizeof *set1->val.scnodes);
1224 LY_CHECK_ERR_RET(!set1->val.scnodes, LOGMEM(set1->ctx), );
1225 }
1226
1227 orig_used = set1->used;
1228
1229 for (i = 0; i < set2->used; ++i) {
1230 for (j = 0; j < orig_used; ++j) {
1231 /* detect duplicities */
1232 if (set1->val.scnodes[j].scnode == set2->val.scnodes[i].scnode) {
1233 break;
1234 }
1235 }
1236
Michal Vasko0587bce2020-12-10 12:19:21 +01001237 if (j < orig_used) {
1238 /* node is there, but update its status if needed */
1239 if (set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_START_USED) {
1240 set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx;
Michal Vasko1a09b212021-05-06 13:00:10 +02001241 } else if ((set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_ATOM_NODE) &&
1242 (set2->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL)) {
1243 set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx;
Michal Vasko0587bce2020-12-10 12:19:21 +01001244 }
1245 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001246 memcpy(&set1->val.scnodes[set1->used], &set2->val.scnodes[i], sizeof *set2->val.scnodes);
1247 ++set1->used;
1248 }
1249 }
1250
Michal Vaskod3678892020-05-21 10:06:58 +02001251 lyxp_set_free_content(set2);
1252 set2->type = LYXP_SET_SCNODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001253}
1254
1255/**
1256 * @brief Insert a node into a set. Context position aware.
1257 *
1258 * @param[in] set Set to use.
1259 * @param[in] node Node to insert to @p set.
1260 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1261 * @param[in] node_type Node type of @p node.
1262 * @param[in] idx Index in @p set to insert into.
1263 */
1264static void
1265set_insert_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1266{
Michal Vaskod3678892020-05-21 10:06:58 +02001267 assert(set && (set->type == LYXP_SET_NODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001268
Michal Vaskod3678892020-05-21 10:06:58 +02001269 if (!set->size) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001270 /* first item */
1271 if (idx) {
1272 /* no real harm done, but it is a bug */
1273 LOGINT(set->ctx);
1274 idx = 0;
1275 }
1276 set->val.nodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.nodes);
1277 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1278 set->type = LYXP_SET_NODE_SET;
1279 set->used = 0;
1280 set->size = LYXP_SET_SIZE_START;
1281 set->ctx_pos = 1;
1282 set->ctx_size = 1;
1283 set->ht = NULL;
1284 } else {
1285 /* not an empty set */
1286 if (set->used == set->size) {
1287
1288 /* set is full */
Michal Vasko871df522022-04-06 12:14:41 +02001289 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 +02001290 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
Michal Vasko871df522022-04-06 12:14:41 +02001291 set->size *= LYXP_SET_SIZE_MUL_STEP;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001292 }
1293
1294 if (idx > set->used) {
1295 LOGINT(set->ctx);
1296 idx = set->used;
1297 }
1298
1299 /* make space for the new node */
1300 if (idx < set->used) {
1301 memmove(&set->val.nodes[idx + 1], &set->val.nodes[idx], (set->used - idx) * sizeof *set->val.nodes);
1302 }
1303 }
1304
1305 /* finally assign the value */
1306 set->val.nodes[idx].node = (struct lyd_node *)node;
1307 set->val.nodes[idx].type = node_type;
1308 set->val.nodes[idx].pos = pos;
1309 ++set->used;
1310
Michal Vasko2416fdd2021-10-01 11:07:10 +02001311 /* add into hash table */
1312 set_insert_node_hash(set, (struct lyd_node *)node, node_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001313}
1314
Michal Vaskoe4a6d012023-05-22 14:34:52 +02001315LY_ERR
1316lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type,
Michal Vasko7333cb32022-07-29 16:30:29 +02001317 enum lyxp_axis axis, uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001318{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001319 uint32_t index;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001320
1321 assert(set->type == LYXP_SET_SCNODE_SET);
1322
Michal Vasko871df522022-04-06 12:14:41 +02001323 if (!set->size) {
1324 /* first item */
1325 set->val.scnodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.scnodes);
1326 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM);
1327 set->type = LYXP_SET_SCNODE_SET;
1328 set->used = 0;
1329 set->size = LYXP_SET_SIZE_START;
1330 set->ctx_pos = 1;
1331 set->ctx_size = 1;
1332 set->ht = NULL;
1333 }
1334
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001335 if (lyxp_set_scnode_contains(set, node, node_type, -1, &index)) {
Michal Vaskoe4a6d012023-05-22 14:34:52 +02001336 /* BUG if axes differ, this new one is thrown away */
Radek Krejcif13b87b2020-12-01 22:02:17 +01001337 set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001338 } else {
1339 if (set->used == set->size) {
Michal Vasko871df522022-04-06 12:14:41 +02001340 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 +02001341 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko871df522022-04-06 12:14:41 +02001342 set->size *= LYXP_SET_SIZE_MUL_STEP;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001343 }
1344
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001345 index = set->used;
1346 set->val.scnodes[index].scnode = (struct lysc_node *)node;
1347 set->val.scnodes[index].type = node_type;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001348 set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko7333cb32022-07-29 16:30:29 +02001349 set->val.scnodes[index].axis = axis;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001350 ++set->used;
1351 }
1352
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001353 if (index_p) {
1354 *index_p = index;
1355 }
1356
1357 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001358}
1359
1360/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001361 * @brief Set all nodes with ctx 1 to a new unique context value.
1362 *
1363 * @param[in] set Set to modify.
1364 * @return New context value.
1365 */
Michal Vasko5c4e5892019-11-14 12:31:38 +01001366static int32_t
Michal Vasko03ff5a72019-09-11 13:49:33 +02001367set_scnode_new_in_ctx(struct lyxp_set *set)
1368{
Michal Vasko5c4e5892019-11-14 12:31:38 +01001369 uint32_t i;
1370 int32_t ret_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001371
1372 assert(set->type == LYXP_SET_SCNODE_SET);
1373
Radek Krejcif13b87b2020-12-01 22:02:17 +01001374 ret_ctx = LYXP_SET_SCNODE_ATOM_PRED_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001375retry:
1376 for (i = 0; i < set->used; ++i) {
1377 if (set->val.scnodes[i].in_ctx >= ret_ctx) {
1378 ret_ctx = set->val.scnodes[i].in_ctx + 1;
1379 goto retry;
1380 }
1381 }
1382 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001383 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001384 set->val.scnodes[i].in_ctx = ret_ctx;
1385 }
1386 }
1387
1388 return ret_ctx;
1389}
1390
1391/**
1392 * @brief Get unique @p node position in the data.
1393 *
1394 * @param[in] node Node to find.
1395 * @param[in] node_type Node type of @p node.
1396 * @param[in] root Root node.
1397 * @param[in] root_type Type of the XPath @p root node.
1398 * @param[in] prev Node that we think is before @p node in DFS from @p root. Can optionally
1399 * be used to increase efficiency and start the DFS from this node.
1400 * @param[in] prev_pos Node @p prev position. Optional, but must be set if @p prev is set.
1401 * @return Node position.
1402 */
1403static uint32_t
1404get_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 +02001405 enum lyxp_node_type root_type, const struct lyd_node **prev, uint32_t *prev_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001406{
Michal Vasko56daf732020-08-10 10:57:18 +02001407 const struct lyd_node *elem = NULL, *top_sibling;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001408 uint32_t pos = 1;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001409 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001410
1411 assert(prev && prev_pos && !root->prev->next);
1412
1413 if ((node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ROOT_CONFIG)) {
1414 return 0;
1415 }
1416
1417 if (*prev) {
1418 /* start from the previous element instead from the root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001419 pos = *prev_pos;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001420 for (top_sibling = *prev; top_sibling->parent; top_sibling = lyd_parent(top_sibling)) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001421 goto dfs_search;
1422 }
1423
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001424 LY_LIST_FOR(root, top_sibling) {
Michal Vasko56daf732020-08-10 10:57:18 +02001425 LYD_TREE_DFS_BEGIN(top_sibling, elem) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001426dfs_search:
Michal Vaskoa9309bb2021-07-09 09:31:55 +02001427 LYD_TREE_DFS_continue = 0;
1428
Michal Vasko56daf732020-08-10 10:57:18 +02001429 if (*prev && !elem) {
1430 /* resume previous DFS */
1431 elem = LYD_TREE_DFS_next = (struct lyd_node *)*prev;
1432 LYD_TREE_DFS_continue = 0;
1433 }
1434
Michal Vasko482a6822022-05-06 08:56:12 +02001435 if (!elem->schema || ((root_type == LYXP_NODE_ROOT_CONFIG) && (elem->schema->flags & LYS_CONFIG_R))) {
Michal Vasko56daf732020-08-10 10:57:18 +02001436 /* skip */
1437 LYD_TREE_DFS_continue = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001438 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001439 if (elem == node) {
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001440 found = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001441 break;
1442 }
Michal Vasko56daf732020-08-10 10:57:18 +02001443 ++pos;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001444 }
Michal Vasko56daf732020-08-10 10:57:18 +02001445
1446 LYD_TREE_DFS_END(top_sibling, elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001447 }
1448
1449 /* node found */
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001450 if (found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001451 break;
1452 }
1453 }
1454
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001455 if (!found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001456 if (!(*prev)) {
1457 /* we went from root and failed to find it, cannot be */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001458 LOGINT(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001459 return 0;
1460 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001461 /* start the search again from the beginning */
1462 *prev = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001463
Michal Vasko56daf732020-08-10 10:57:18 +02001464 top_sibling = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001465 pos = 1;
1466 goto dfs_search;
1467 }
1468 }
1469
1470 /* remember the last found node for next time */
1471 *prev = node;
1472 *prev_pos = pos;
1473
1474 return pos;
1475}
1476
1477/**
1478 * @brief Assign (fill) missing node positions.
1479 *
1480 * @param[in] set Set to fill positions in.
1481 * @param[in] root Context root node.
1482 * @param[in] root_type Context root type.
1483 * @return LY_ERR
1484 */
1485static LY_ERR
1486set_assign_pos(struct lyxp_set *set, const struct lyd_node *root, enum lyxp_node_type root_type)
1487{
1488 const struct lyd_node *prev = NULL, *tmp_node;
1489 uint32_t i, tmp_pos = 0;
1490
1491 for (i = 0; i < set->used; ++i) {
1492 if (!set->val.nodes[i].pos) {
1493 tmp_node = NULL;
1494 switch (set->val.nodes[i].type) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001495 case LYXP_NODE_META:
1496 tmp_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001497 if (!tmp_node) {
1498 LOGINT_RET(root->schema->module->ctx);
1499 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001500 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001501 case LYXP_NODE_ELEM:
1502 case LYXP_NODE_TEXT:
1503 if (!tmp_node) {
1504 tmp_node = set->val.nodes[i].node;
1505 }
1506 set->val.nodes[i].pos = get_node_pos(tmp_node, set->val.nodes[i].type, root, root_type, &prev, &tmp_pos);
1507 break;
1508 default:
1509 /* all roots have position 0 */
1510 break;
1511 }
1512 }
1513 }
1514
1515 return LY_SUCCESS;
1516}
1517
1518/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001519 * @brief Get unique @p meta position in the parent metadata.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001520 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001521 * @param[in] meta Metadata to use.
1522 * @return Metadata position.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001523 */
Michal Vaskodd528af2022-08-08 14:35:07 +02001524static uint32_t
Michal Vasko9f96a052020-03-10 09:41:45 +01001525get_meta_pos(struct lyd_meta *meta)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001526{
Michal Vaskodd528af2022-08-08 14:35:07 +02001527 uint32_t pos = 0;
Michal Vasko9f96a052020-03-10 09:41:45 +01001528 struct lyd_meta *meta2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001529
Michal Vasko9f96a052020-03-10 09:41:45 +01001530 for (meta2 = meta->parent->meta; meta2 && (meta2 != meta); meta2 = meta2->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001531 ++pos;
1532 }
1533
Michal Vasko9f96a052020-03-10 09:41:45 +01001534 assert(meta2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001535 return pos;
1536}
1537
1538/**
1539 * @brief Compare 2 nodes in respect to XPath document order.
1540 *
1541 * @param[in] item1 1st node.
1542 * @param[in] item2 2nd node.
1543 * @return If 1st > 2nd returns 1, 1st == 2nd returns 0, and 1st < 2nd returns -1.
1544 */
1545static int
1546set_sort_compare(struct lyxp_set_node *item1, struct lyxp_set_node *item2)
1547{
Michal Vasko9f96a052020-03-10 09:41:45 +01001548 uint32_t meta_pos1 = 0, meta_pos2 = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001549
1550 if (item1->pos < item2->pos) {
1551 return -1;
1552 }
1553
1554 if (item1->pos > item2->pos) {
1555 return 1;
1556 }
1557
1558 /* node positions are equal, the fun case */
1559
1560 /* 1st ELEM - == - 2nd TEXT, 1st TEXT - == - 2nd ELEM */
1561 /* special case since text nodes are actually saved as their parents */
1562 if ((item1->node == item2->node) && (item1->type != item2->type)) {
1563 if (item1->type == LYXP_NODE_ELEM) {
1564 assert(item2->type == LYXP_NODE_TEXT);
1565 return -1;
1566 } else {
1567 assert((item1->type == LYXP_NODE_TEXT) && (item2->type == LYXP_NODE_ELEM));
1568 return 1;
1569 }
1570 }
1571
Michal Vasko9f96a052020-03-10 09:41:45 +01001572 /* we need meta positions now */
1573 if (item1->type == LYXP_NODE_META) {
1574 meta_pos1 = get_meta_pos((struct lyd_meta *)item1->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001575 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001576 if (item2->type == LYXP_NODE_META) {
1577 meta_pos2 = get_meta_pos((struct lyd_meta *)item2->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001578 }
1579
Michal Vasko9f96a052020-03-10 09:41:45 +01001580 /* 1st ROOT - 2nd ROOT, 1st ELEM - 2nd ELEM, 1st TEXT - 2nd TEXT, 1st META - =pos= - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001581 /* check for duplicates */
1582 if (item1->node == item2->node) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001583 assert((item1->type == item2->type) && ((item1->type != LYXP_NODE_META) || (meta_pos1 == meta_pos2)));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001584 return 0;
1585 }
1586
Michal Vasko9f96a052020-03-10 09:41:45 +01001587 /* 1st ELEM - 2nd TEXT, 1st ELEM - any pos - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001588 /* elem is always first, 2nd node is after it */
1589 if (item1->type == LYXP_NODE_ELEM) {
1590 assert(item2->type != LYXP_NODE_ELEM);
1591 return -1;
1592 }
1593
Michal Vasko9f96a052020-03-10 09:41:45 +01001594 /* 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 +02001595 /* 2nd is before 1st */
Michal Vasko69730152020-10-09 16:30:07 +02001596 if (((item1->type == LYXP_NODE_TEXT) &&
1597 ((item2->type == LYXP_NODE_ELEM) || (item2->type == LYXP_NODE_META))) ||
1598 ((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_ELEM)) ||
1599 (((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_META)) &&
1600 (meta_pos1 > meta_pos2))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001601 return 1;
1602 }
1603
Michal Vasko9f96a052020-03-10 09:41:45 +01001604 /* 1st META - any pos - 2nd TEXT, 1st META <pos< - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001605 /* 2nd is after 1st */
1606 return -1;
1607}
1608
1609/**
1610 * @brief Set cast for comparisons.
1611 *
Michal Vasko8abcecc2022-07-28 09:55:01 +02001612 * @param[in,out] trg Target set to cast source into.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001613 * @param[in] src Source set.
1614 * @param[in] type Target set type.
1615 * @param[in] src_idx Source set node index.
Michal Vasko8abcecc2022-07-28 09:55:01 +02001616 * @return LY_SUCCESS on success.
1617 * @return LY_ERR value on error.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001618 */
1619static LY_ERR
Michal Vasko8abcecc2022-07-28 09:55:01 +02001620set_comp_cast(struct lyxp_set *trg, const struct lyxp_set *src, enum lyxp_set_type type, uint32_t src_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001621{
1622 assert(src->type == LYXP_SET_NODE_SET);
1623
1624 set_init(trg, src);
1625
1626 /* insert node into target set */
1627 set_insert_node(trg, src->val.nodes[src_idx].node, src->val.nodes[src_idx].pos, src->val.nodes[src_idx].type, 0);
1628
1629 /* cast target set appropriately */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001630 return lyxp_set_cast(trg, type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001631}
1632
Michal Vasko4c7763f2020-07-27 17:40:37 +02001633/**
1634 * @brief Set content canonization for comparisons.
1635 *
Michal Vasko8abcecc2022-07-28 09:55:01 +02001636 * @param[in,out] set Set to canonize.
Michal Vasko4c7763f2020-07-27 17:40:37 +02001637 * @param[in] xp_node Source XPath node/meta to use for canonization.
Michal Vasko8abcecc2022-07-28 09:55:01 +02001638 * @return LY_SUCCESS on success.
1639 * @return LY_ERR value on error.
Michal Vasko4c7763f2020-07-27 17:40:37 +02001640 */
1641static LY_ERR
Michal Vasko8abcecc2022-07-28 09:55:01 +02001642set_comp_canonize(struct lyxp_set *set, const struct lyxp_set_node *xp_node)
Michal Vasko4c7763f2020-07-27 17:40:37 +02001643{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001644 const struct lysc_type *type = NULL;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001645 struct lyd_value val;
1646 struct ly_err_item *err = NULL;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001647 LY_ERR rc;
1648
1649 /* is there anything to canonize even? */
Michal Vasko8abcecc2022-07-28 09:55:01 +02001650 if (set->type == LYXP_SET_STRING) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02001651 /* do we have a type to use for canonization? */
1652 if ((xp_node->type == LYXP_NODE_ELEM) && (xp_node->node->schema->nodetype & LYD_NODE_TERM)) {
1653 type = ((struct lyd_node_term *)xp_node->node)->value.realtype;
1654 } else if (xp_node->type == LYXP_NODE_META) {
1655 type = ((struct lyd_meta *)xp_node->node)->value.realtype;
1656 }
1657 }
1658 if (!type) {
Michal Vasko8abcecc2022-07-28 09:55:01 +02001659 /* no canonization needed/possible */
1660 return LY_SUCCESS;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001661 }
1662
Michal Vasko8abcecc2022-07-28 09:55:01 +02001663 /* check for built-in types without required canonization */
1664 if ((type->basetype == LY_TYPE_STRING) && (type->plugin->store == lyplg_type_store_string)) {
1665 /* string */
1666 return LY_SUCCESS;
1667 }
1668 if ((type->basetype == LY_TYPE_BOOL) && (type->plugin->store == lyplg_type_store_boolean)) {
1669 /* boolean */
1670 return LY_SUCCESS;
1671 }
1672 if ((type->basetype == LY_TYPE_ENUM) && (type->plugin->store == lyplg_type_store_enum)) {
1673 /* enumeration */
1674 return LY_SUCCESS;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001675 }
1676
Michal Vasko8abcecc2022-07-28 09:55:01 +02001677 /* print canonized string, ignore errors, the value may not satisfy schema constraints */
1678 rc = type->plugin->store(set->ctx, type, set->val.str, strlen(set->val.str), 0, set->format, set->prefix_data,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001679 LYD_HINT_DATA, xp_node->node->schema, &val, NULL, &err);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001680 ly_err_free(err);
1681 if (rc) {
Michal Vasko8abcecc2022-07-28 09:55:01 +02001682 /* invalid value, function store automaticaly dealloc value when fail */
1683 return LY_SUCCESS;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001684 }
1685
Michal Vasko8abcecc2022-07-28 09:55:01 +02001686 /* use the canonized string value */
1687 free(set->val.str);
1688 set->val.str = strdup(lyd_value_get_canonical(set->ctx, &val));
1689 type->plugin->free(set->ctx, &val);
1690 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001691
Michal Vasko4c7763f2020-07-27 17:40:37 +02001692 return LY_SUCCESS;
1693}
1694
Michal Vasko03ff5a72019-09-11 13:49:33 +02001695/**
1696 * @brief Bubble sort @p set into XPath document order.
Michal Vasko49fec8e2022-05-24 10:28:33 +02001697 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001698 *
1699 * @param[in] set Set to sort.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001700 * @return How many times the whole set was traversed - 1 (if set was sorted, returns 0).
1701 */
1702static int
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001703set_sort(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001704{
1705 uint32_t i, j;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001706 int ret = 0, cmp;
Radek Krejci857189e2020-09-01 13:26:36 +02001707 ly_bool inverted, change;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001708 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001709 struct lyxp_set_node item;
1710 struct lyxp_set_hash_node hnode;
1711 uint64_t hash;
1712
Michal Vasko3cf8fbf2020-05-27 15:21:21 +02001713 if ((set->type != LYXP_SET_NODE_SET) || (set->used < 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001714 return 0;
1715 }
1716
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001717 /* find first top-level node to be used as anchor for positions */
Michal Vasko4a7d4d62021-12-13 17:05:06 +01001718 for (root = set->tree; root->parent; root = lyd_parent(root)) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001719 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001720
1721 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001722 if (set_assign_pos(set, root, set->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001723 return -1;
1724 }
1725
Michal Vasko88a9e802022-05-24 10:50:28 +02001726#ifndef NDEBUG
Michal Vasko03ff5a72019-09-11 13:49:33 +02001727 LOGDBG(LY_LDGXPATH, "SORT BEGIN");
1728 print_set_debug(set);
Michal Vasko88a9e802022-05-24 10:50:28 +02001729#endif
Michal Vasko03ff5a72019-09-11 13:49:33 +02001730
1731 for (i = 0; i < set->used; ++i) {
1732 inverted = 0;
1733 change = 0;
1734
1735 for (j = 1; j < set->used - i; ++j) {
1736 /* compare node positions */
1737 if (inverted) {
1738 cmp = set_sort_compare(&set->val.nodes[j], &set->val.nodes[j - 1]);
1739 } else {
1740 cmp = set_sort_compare(&set->val.nodes[j - 1], &set->val.nodes[j]);
1741 }
1742
1743 /* swap if needed */
1744 if ((inverted && (cmp < 0)) || (!inverted && (cmp > 0))) {
1745 change = 1;
1746
1747 item = set->val.nodes[j - 1];
1748 set->val.nodes[j - 1] = set->val.nodes[j];
1749 set->val.nodes[j] = item;
1750 } else {
1751 /* whether node_pos1 should be smaller than node_pos2 or the other way around */
1752 inverted = !inverted;
1753 }
1754 }
1755
1756 ++ret;
1757
1758 if (!change) {
1759 break;
1760 }
1761 }
1762
Michal Vasko88a9e802022-05-24 10:50:28 +02001763#ifndef NDEBUG
Michal Vasko03ff5a72019-09-11 13:49:33 +02001764 LOGDBG(LY_LDGXPATH, "SORT END %d", ret);
1765 print_set_debug(set);
Michal Vasko88a9e802022-05-24 10:50:28 +02001766#endif
Michal Vasko03ff5a72019-09-11 13:49:33 +02001767
1768 /* check node hashes */
1769 if (set->used >= LYD_HT_MIN_ITEMS) {
1770 assert(set->ht);
1771 for (i = 0; i < set->used; ++i) {
1772 hnode.node = set->val.nodes[i].node;
1773 hnode.type = set->val.nodes[i].type;
1774
Michal Vaskoae130f52023-04-20 14:25:16 +02001775 hash = lyht_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
1776 hash = lyht_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
1777 hash = lyht_hash_multi(hash, NULL, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001778
1779 assert(!lyht_find(set->ht, &hnode, hash, NULL));
1780 }
1781 }
1782
1783 return ret - 1;
1784}
1785
Michal Vasko03ff5a72019-09-11 13:49:33 +02001786/**
1787 * @brief Merge 2 sorted sets into one.
1788 *
1789 * @param[in,out] trg Set to merge into. Duplicates are removed.
1790 * @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 +02001791 * @return LY_ERR
1792 */
1793static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001794set_sorted_merge(struct lyxp_set *trg, struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001795{
1796 uint32_t i, j, k, count, dup_count;
1797 int cmp;
1798 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001799
Michal Vaskod3678892020-05-21 10:06:58 +02001800 if ((trg->type != LYXP_SET_NODE_SET) || (src->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001801 return LY_EINVAL;
1802 }
1803
Michal Vaskod3678892020-05-21 10:06:58 +02001804 if (!src->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001805 return LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02001806 } else if (!trg->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001807 set_fill_set(trg, src);
Michal Vaskod3678892020-05-21 10:06:58 +02001808 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001809 return LY_SUCCESS;
1810 }
1811
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001812 /* find first top-level node to be used as anchor for positions */
Michal Vasko0143b682021-12-13 17:13:09 +01001813 for (root = trg->tree; root->parent; root = lyd_parent(root)) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001814 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001815
1816 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001817 if (set_assign_pos(trg, root, trg->root_type) || set_assign_pos(src, root, src->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001818 return LY_EINT;
1819 }
1820
1821#ifndef NDEBUG
1822 LOGDBG(LY_LDGXPATH, "MERGE target");
1823 print_set_debug(trg);
1824 LOGDBG(LY_LDGXPATH, "MERGE source");
1825 print_set_debug(src);
1826#endif
1827
1828 /* make memory for the merge (duplicates are not detected yet, so space
1829 * will likely be wasted on them, too bad) */
1830 if (trg->size - trg->used < src->used) {
1831 trg->size = trg->used + src->used;
1832
1833 trg->val.nodes = ly_realloc(trg->val.nodes, trg->size * sizeof *trg->val.nodes);
1834 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx), LY_EMEM);
1835 }
1836
1837 i = 0;
1838 j = 0;
1839 count = 0;
1840 dup_count = 0;
1841 do {
1842 cmp = set_sort_compare(&src->val.nodes[i], &trg->val.nodes[j]);
1843 if (!cmp) {
1844 if (!count) {
1845 /* duplicate, just skip it */
1846 ++i;
1847 ++j;
1848 } else {
1849 /* we are copying something already, so let's copy the duplicate too,
1850 * we are hoping that afterwards there are some more nodes to
1851 * copy and this way we can copy them all together */
1852 ++count;
1853 ++dup_count;
1854 ++i;
1855 ++j;
1856 }
1857 } else if (cmp < 0) {
1858 /* inserting src node into trg, just remember it for now */
1859 ++count;
1860 ++i;
1861
1862 /* insert the hash now */
1863 set_insert_node_hash(trg, src->val.nodes[i - 1].node, src->val.nodes[i - 1].type);
1864 } else if (count) {
1865copy_nodes:
1866 /* time to actually copy the nodes, we have found the largest block of nodes */
1867 memmove(&trg->val.nodes[j + (count - dup_count)],
1868 &trg->val.nodes[j],
1869 (trg->used - j) * sizeof *trg->val.nodes);
1870 memcpy(&trg->val.nodes[j - dup_count], &src->val.nodes[i - count], count * sizeof *src->val.nodes);
1871
1872 trg->used += count - dup_count;
1873 /* do not change i, except the copying above, we are basically doing exactly what is in the else branch below */
1874 j += count - dup_count;
1875
1876 count = 0;
1877 dup_count = 0;
1878 } else {
1879 ++j;
1880 }
1881 } while ((i < src->used) && (j < trg->used));
1882
1883 if ((i < src->used) || count) {
1884 /* insert all the hashes first */
1885 for (k = i; k < src->used; ++k) {
1886 set_insert_node_hash(trg, src->val.nodes[k].node, src->val.nodes[k].type);
1887 }
1888
1889 /* loop ended, but we need to copy something at trg end */
1890 count += src->used - i;
1891 i = src->used;
1892 goto copy_nodes;
1893 }
1894
1895 /* we are inserting hashes before the actual node insert, which causes
1896 * situations when there were initially not enough items for a hash table,
1897 * but even after some were inserted, hash table was not created (during
1898 * insertion the number of items is not updated yet) */
1899 if (!trg->ht && (trg->used >= LYD_HT_MIN_ITEMS)) {
1900 set_insert_node_hash(trg, NULL, 0);
1901 }
1902
1903#ifndef NDEBUG
1904 LOGDBG(LY_LDGXPATH, "MERGE result");
1905 print_set_debug(trg);
1906#endif
1907
Michal Vaskod3678892020-05-21 10:06:58 +02001908 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001909 return LY_SUCCESS;
1910}
1911
Michal Vasko14676352020-05-29 11:35:55 +02001912LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02001913lyxp_check_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t tok_idx, enum lyxp_token want_tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001914{
Michal Vasko004d3152020-06-11 19:59:22 +02001915 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001916 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001917 LOGVAL(ctx, LY_VCODE_XP_EOF);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001918 }
Michal Vasko14676352020-05-29 11:35:55 +02001919 return LY_EINCOMPLETE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001920 }
1921
Michal Vasko004d3152020-06-11 19:59:22 +02001922 if (want_tok && (exp->tokens[tok_idx] != want_tok)) {
Michal Vasko14676352020-05-29 11:35:55 +02001923 if (ctx) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02001924 LOGVAL(ctx, LY_VCODE_XP_INTOK2, lyxp_token2str(exp->tokens[tok_idx]),
1925 &exp->expr[exp->tok_pos[tok_idx]], lyxp_token2str(want_tok));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001926 }
Michal Vasko14676352020-05-29 11:35:55 +02001927 return LY_ENOT;
1928 }
1929
1930 return LY_SUCCESS;
1931}
1932
Michal Vasko004d3152020-06-11 19:59:22 +02001933LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02001934lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t *tok_idx, enum lyxp_token want_tok)
Michal Vasko004d3152020-06-11 19:59:22 +02001935{
1936 LY_CHECK_RET(lyxp_check_token(ctx, exp, *tok_idx, want_tok));
1937
1938 /* skip the token */
1939 ++(*tok_idx);
1940
1941 return LY_SUCCESS;
1942}
1943
Michal Vasko14676352020-05-29 11:35:55 +02001944/* just like lyxp_check_token() but tests for 2 tokens */
1945static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02001946exp_check_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t tok_idx, enum lyxp_token want_tok1,
Radek Krejci0f969882020-08-21 16:56:47 +02001947 enum lyxp_token want_tok2)
Michal Vasko14676352020-05-29 11:35:55 +02001948{
Michal Vasko004d3152020-06-11 19:59:22 +02001949 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001950 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001951 LOGVAL(ctx, LY_VCODE_XP_EOF);
Michal Vasko14676352020-05-29 11:35:55 +02001952 }
1953 return LY_EINCOMPLETE;
1954 }
1955
Michal Vasko004d3152020-06-11 19:59:22 +02001956 if ((exp->tokens[tok_idx] != want_tok1) && (exp->tokens[tok_idx] != want_tok2)) {
Michal Vasko14676352020-05-29 11:35:55 +02001957 if (ctx) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02001958 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[tok_idx]),
Michal Vasko0b468e62020-10-19 09:33:04 +02001959 &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko14676352020-05-29 11:35:55 +02001960 }
1961 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001962 }
1963
1964 return LY_SUCCESS;
1965}
1966
Michal Vasko4911eeb2021-06-28 11:23:05 +02001967LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02001968lyxp_next_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t *tok_idx, enum lyxp_token want_tok1,
Michal Vasko4911eeb2021-06-28 11:23:05 +02001969 enum lyxp_token want_tok2)
1970{
1971 LY_CHECK_RET(exp_check_token2(ctx, exp, *tok_idx, want_tok1, want_tok2));
1972
1973 /* skip the token */
1974 ++(*tok_idx);
1975
1976 return LY_SUCCESS;
1977}
1978
Michal Vasko03ff5a72019-09-11 13:49:33 +02001979/**
1980 * @brief Stack operation push on the repeat array.
1981 *
1982 * @param[in] exp Expression to use.
Michal Vasko831e3bd2023-04-24 10:43:38 +02001983 * @param[in] tok_idx Position in the expresion @p exp.
1984 * @param[in] repeat_expr_type Repeated expression type, this value is pushed.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001985 */
1986static void
Michal Vasko831e3bd2023-04-24 10:43:38 +02001987exp_repeat_push(struct lyxp_expr *exp, uint32_t tok_idx, enum lyxp_expr_type repeat_expr_type)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001988{
Michal Vaskodd528af2022-08-08 14:35:07 +02001989 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001990
Michal Vasko004d3152020-06-11 19:59:22 +02001991 if (exp->repeat[tok_idx]) {
Radek Krejci1e008d22020-08-17 11:37:37 +02001992 for (i = 0; exp->repeat[tok_idx][i]; ++i) {}
Michal Vasko004d3152020-06-11 19:59:22 +02001993 exp->repeat[tok_idx] = realloc(exp->repeat[tok_idx], (i + 2) * sizeof *exp->repeat[tok_idx]);
1994 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
Michal Vasko831e3bd2023-04-24 10:43:38 +02001995 exp->repeat[tok_idx][i] = repeat_expr_type;
Michal Vasko004d3152020-06-11 19:59:22 +02001996 exp->repeat[tok_idx][i + 1] = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001997 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02001998 exp->repeat[tok_idx] = calloc(2, sizeof *exp->repeat[tok_idx]);
1999 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
Michal Vasko831e3bd2023-04-24 10:43:38 +02002000 exp->repeat[tok_idx][0] = repeat_expr_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002001 }
2002}
2003
2004/**
2005 * @brief Reparse Predicate. Logs directly on error.
2006 *
2007 * [7] Predicate ::= '[' Expr ']'
2008 *
2009 * @param[in] ctx Context for logging.
2010 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002011 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002012 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002013 * @return LY_ERR
2014 */
2015static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002016reparse_predicate(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002017{
2018 LY_ERR rc;
2019
Michal Vasko004d3152020-06-11 19:59:22 +02002020 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002021 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002022 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002023
aPiecekbf968d92021-05-27 14:35:05 +02002024 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002025 LY_CHECK_RET(rc);
2026
Michal Vasko004d3152020-06-11 19:59:22 +02002027 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002028 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002029 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002030
2031 return LY_SUCCESS;
2032}
2033
2034/**
2035 * @brief Reparse RelativeLocationPath. Logs directly on error.
2036 *
2037 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
2038 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
2039 * [6] NodeTest ::= NameTest | NodeType '(' ')'
2040 *
2041 * @param[in] ctx Context for logging.
2042 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002043 * @param[in] tok_idx Position in the expression \p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002044 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002045 * @return LY_ERR (LY_EINCOMPLETE on forward reference)
2046 */
2047static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002048reparse_relative_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002049{
2050 LY_ERR rc;
2051
Michal Vasko004d3152020-06-11 19:59:22 +02002052 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002053 LY_CHECK_RET(rc);
2054
2055 goto step;
2056 do {
2057 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002058 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002059
Michal Vasko004d3152020-06-11 19:59:22 +02002060 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002061 LY_CHECK_RET(rc);
2062step:
2063 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02002064 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002065 case LYXP_TOKEN_DOT:
Michal Vasko004d3152020-06-11 19:59:22 +02002066 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002067 break;
2068
2069 case LYXP_TOKEN_DDOT:
Michal Vasko004d3152020-06-11 19:59:22 +02002070 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002071 break;
2072
Michal Vasko49fec8e2022-05-24 10:28:33 +02002073 case LYXP_TOKEN_AXISNAME:
2074 ++(*tok_idx);
2075
2076 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_DCOLON);
2077 LY_CHECK_RET(rc);
2078
2079 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002080 case LYXP_TOKEN_AT:
Michal Vasko004d3152020-06-11 19:59:22 +02002081 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002082
Michal Vasko004d3152020-06-11 19:59:22 +02002083 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002084 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002085 if ((exp->tokens[*tok_idx] != LYXP_TOKEN_NAMETEST) && (exp->tokens[*tok_idx] != LYXP_TOKEN_NODETYPE)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02002086 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 +02002087 return LY_EVALID;
2088 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02002089 if (exp->tokens[*tok_idx] == LYXP_TOKEN_NODETYPE) {
2090 goto reparse_nodetype;
2091 }
Radek Krejci0f969882020-08-21 16:56:47 +02002092 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002093 case LYXP_TOKEN_NAMETEST:
Michal Vasko004d3152020-06-11 19:59:22 +02002094 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002095 goto reparse_predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002096
2097 case LYXP_TOKEN_NODETYPE:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002098reparse_nodetype:
Michal Vasko004d3152020-06-11 19:59:22 +02002099 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002100
2101 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002102 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002103 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002104 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002105
2106 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002107 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002108 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002109 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002110
2111reparse_predicate:
2112 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002113 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
aPiecekbf968d92021-05-27 14:35:05 +02002114 rc = reparse_predicate(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002115 LY_CHECK_RET(rc);
2116 }
2117 break;
2118 default:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002119 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 +02002120 return LY_EVALID;
2121 }
Michal Vasko004d3152020-06-11 19:59:22 +02002122 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02002123
2124 return LY_SUCCESS;
2125}
2126
2127/**
2128 * @brief Reparse AbsoluteLocationPath. Logs directly on error.
2129 *
2130 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
2131 *
2132 * @param[in] ctx Context for logging.
2133 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002134 * @param[in] tok_idx Position in the expression \p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002135 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002136 * @return LY_ERR
2137 */
2138static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002139reparse_absolute_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002140{
2141 LY_ERR rc;
2142
Michal Vasko004d3152020-06-11 19:59:22 +02002143 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 +02002144
2145 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02002146 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002147 /* '/' */
Michal Vasko004d3152020-06-11 19:59:22 +02002148 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002149
Michal Vasko004d3152020-06-11 19:59:22 +02002150 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002151 return LY_SUCCESS;
2152 }
Michal Vasko004d3152020-06-11 19:59:22 +02002153 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002154 case LYXP_TOKEN_DOT:
2155 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002156 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002157 case LYXP_TOKEN_AT:
2158 case LYXP_TOKEN_NAMETEST:
2159 case LYXP_TOKEN_NODETYPE:
aPiecekbf968d92021-05-27 14:35:05 +02002160 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002161 LY_CHECK_RET(rc);
Radek Krejci0f969882020-08-21 16:56:47 +02002162 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002163 default:
2164 break;
2165 }
2166
Michal Vasko03ff5a72019-09-11 13:49:33 +02002167 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02002168 /* '//' RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002169 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002170
aPiecekbf968d92021-05-27 14:35:05 +02002171 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002172 LY_CHECK_RET(rc);
2173 }
2174
2175 return LY_SUCCESS;
2176}
2177
2178/**
2179 * @brief Reparse FunctionCall. Logs directly on error.
2180 *
2181 * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
2182 *
2183 * @param[in] ctx Context for logging.
2184 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002185 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002186 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002187 * @return LY_ERR
2188 */
2189static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002190reparse_function_call(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002191{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002192 int8_t min_arg_count = -1;
Michal Vaskodd528af2022-08-08 14:35:07 +02002193 uint32_t arg_count, max_arg_count = 0, func_tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002194 LY_ERR rc;
2195
Michal Vasko004d3152020-06-11 19:59:22 +02002196 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_FUNCNAME);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002197 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002198 func_tok_idx = *tok_idx;
2199 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002200 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02002201 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002202 min_arg_count = 1;
2203 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002204 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002205 min_arg_count = 1;
2206 max_arg_count = 1;
2207 }
2208 break;
2209 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02002210 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002211 min_arg_count = 1;
2212 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002213 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002214 min_arg_count = 0;
2215 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002216 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002217 min_arg_count = 0;
2218 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002219 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002220 min_arg_count = 0;
2221 max_arg_count = 0;
2222 }
2223 break;
2224 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02002225 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002226 min_arg_count = 1;
2227 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002228 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002229 min_arg_count = 0;
2230 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002231 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002232 min_arg_count = 1;
2233 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002234 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002235 min_arg_count = 1;
2236 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002237 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002238 min_arg_count = 1;
2239 max_arg_count = 1;
2240 }
2241 break;
2242 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02002243 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002244 min_arg_count = 2;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002245 max_arg_count = UINT32_MAX;
Michal Vasko004d3152020-06-11 19:59:22 +02002246 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002247 min_arg_count = 0;
2248 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002249 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002250 min_arg_count = 0;
2251 max_arg_count = 1;
2252 }
2253 break;
2254 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02002255 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002256 min_arg_count = 1;
2257 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002258 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002259 min_arg_count = 1;
2260 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002261 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002262 min_arg_count = 0;
2263 max_arg_count = 0;
2264 }
2265 break;
2266 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02002267 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002268 min_arg_count = 2;
2269 max_arg_count = 2;
Michal Vasko004d3152020-06-11 19:59:22 +02002270 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002271 min_arg_count = 0;
2272 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002273 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002274 min_arg_count = 2;
2275 max_arg_count = 2;
2276 }
2277 break;
2278 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02002279 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002280 min_arg_count = 2;
2281 max_arg_count = 3;
Michal Vasko004d3152020-06-11 19:59:22 +02002282 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002283 min_arg_count = 3;
2284 max_arg_count = 3;
2285 }
2286 break;
2287 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02002288 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002289 min_arg_count = 0;
2290 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002291 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002292 min_arg_count = 1;
2293 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002294 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002295 min_arg_count = 2;
2296 max_arg_count = 2;
2297 }
2298 break;
2299 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02002300 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002301 min_arg_count = 2;
2302 max_arg_count = 2;
2303 }
2304 break;
2305 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02002306 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002307 min_arg_count = 2;
2308 max_arg_count = 2;
2309 }
2310 break;
2311 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02002312 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002313 min_arg_count = 0;
2314 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002315 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002316 min_arg_count = 0;
2317 max_arg_count = 1;
2318 }
2319 break;
2320 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02002321 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002322 min_arg_count = 0;
2323 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002324 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002325 min_arg_count = 2;
2326 max_arg_count = 2;
2327 }
2328 break;
2329 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02002330 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002331 min_arg_count = 2;
2332 max_arg_count = 2;
2333 }
2334 break;
2335 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02002336 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002337 min_arg_count = 2;
2338 max_arg_count = 2;
2339 }
2340 break;
2341 }
2342 if (min_arg_count == -1) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002343 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 +02002344 return LY_EINVAL;
2345 }
Michal Vasko004d3152020-06-11 19:59:22 +02002346 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002347
2348 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002349 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002350 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002351 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002352
2353 /* ( Expr ( ',' Expr )* )? */
2354 arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002355 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002356 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002357 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002358 ++arg_count;
aPiecekbf968d92021-05-27 14:35:05 +02002359 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002360 LY_CHECK_RET(rc);
2361 }
Michal Vasko004d3152020-06-11 19:59:22 +02002362 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
2363 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002364
2365 ++arg_count;
aPiecekbf968d92021-05-27 14:35:05 +02002366 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002367 LY_CHECK_RET(rc);
2368 }
2369
2370 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002371 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002372 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002373 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002374
Radek Krejci857189e2020-09-01 13:26:36 +02002375 if ((arg_count < (uint32_t)min_arg_count) || (arg_count > max_arg_count)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002376 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 +02002377 return LY_EVALID;
2378 }
2379
2380 return LY_SUCCESS;
2381}
2382
2383/**
2384 * @brief Reparse PathExpr. Logs directly on error.
2385 *
2386 * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate*
2387 * | PrimaryExpr Predicate* '/' RelativeLocationPath
2388 * | PrimaryExpr Predicate* '//' RelativeLocationPath
2389 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
aPiecekfba75362021-10-07 12:39:48 +02002390 * [8] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02002391 *
2392 * @param[in] ctx Context for logging.
2393 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002394 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002395 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002396 * @return LY_ERR
2397 */
2398static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002399reparse_path_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002400{
2401 LY_ERR rc;
2402
Michal Vasko004d3152020-06-11 19:59:22 +02002403 if (lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko14676352020-05-29 11:35:55 +02002404 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002405 }
2406
Michal Vasko004d3152020-06-11 19:59:22 +02002407 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002408 case LYXP_TOKEN_PAR1:
2409 /* '(' Expr ')' Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002410 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002411
aPiecekbf968d92021-05-27 14:35:05 +02002412 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002413 LY_CHECK_RET(rc);
2414
Michal Vasko004d3152020-06-11 19:59:22 +02002415 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002416 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002417 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002418 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002419 case LYXP_TOKEN_DOT:
2420 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002421 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002422 case LYXP_TOKEN_AT:
2423 case LYXP_TOKEN_NAMETEST:
2424 case LYXP_TOKEN_NODETYPE:
2425 /* RelativeLocationPath */
aPiecekbf968d92021-05-27 14:35:05 +02002426 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002427 LY_CHECK_RET(rc);
2428 break;
aPiecekfba75362021-10-07 12:39:48 +02002429 case LYXP_TOKEN_VARREF:
2430 /* VariableReference */
2431 ++(*tok_idx);
2432 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002433 case LYXP_TOKEN_FUNCNAME:
2434 /* FunctionCall */
aPiecekbf968d92021-05-27 14:35:05 +02002435 rc = reparse_function_call(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002436 LY_CHECK_RET(rc);
2437 goto predicate;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002438 case LYXP_TOKEN_OPER_PATH:
2439 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002440 /* AbsoluteLocationPath */
aPiecekbf968d92021-05-27 14:35:05 +02002441 rc = reparse_absolute_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002442 LY_CHECK_RET(rc);
2443 break;
2444 case LYXP_TOKEN_LITERAL:
2445 /* Literal */
Michal Vasko004d3152020-06-11 19:59:22 +02002446 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002447 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002448 case LYXP_TOKEN_NUMBER:
2449 /* Number */
Michal Vasko004d3152020-06-11 19:59:22 +02002450 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002451 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002452 default:
Michal Vasko49fec8e2022-05-24 10:28:33 +02002453 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 +02002454 return LY_EVALID;
2455 }
2456
2457 return LY_SUCCESS;
2458
2459predicate:
2460 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002461 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
aPiecekbf968d92021-05-27 14:35:05 +02002462 rc = reparse_predicate(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002463 LY_CHECK_RET(rc);
2464 }
2465
2466 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002467 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002468
2469 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002470 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002471
aPiecekbf968d92021-05-27 14:35:05 +02002472 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002473 LY_CHECK_RET(rc);
2474 }
2475
2476 return LY_SUCCESS;
2477}
2478
2479/**
2480 * @brief Reparse UnaryExpr. Logs directly on error.
2481 *
2482 * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr
2483 * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
2484 *
2485 * @param[in] ctx Context for logging.
2486 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002487 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002488 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002489 * @return LY_ERR
2490 */
2491static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002492reparse_unary_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002493{
Michal Vaskodd528af2022-08-08 14:35:07 +02002494 uint32_t prev_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002495 LY_ERR rc;
2496
2497 /* ('-')* */
Michal Vasko004d3152020-06-11 19:59:22 +02002498 prev_exp = *tok_idx;
Michal Vasko69730152020-10-09 16:30:07 +02002499 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2500 (exp->expr[exp->tok_pos[*tok_idx]] == '-')) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002501 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNARY);
Michal Vasko004d3152020-06-11 19:59:22 +02002502 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002503 }
2504
2505 /* PathExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002506 prev_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002507 rc = reparse_path_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002508 LY_CHECK_RET(rc);
2509
2510 /* ('|' PathExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002511 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_UNI)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002512 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNION);
Michal Vasko004d3152020-06-11 19:59:22 +02002513 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002514
aPiecekbf968d92021-05-27 14:35:05 +02002515 rc = reparse_path_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002516 LY_CHECK_RET(rc);
2517 }
2518
2519 return LY_SUCCESS;
2520}
2521
2522/**
2523 * @brief Reparse AdditiveExpr. Logs directly on error.
2524 *
2525 * [15] AdditiveExpr ::= MultiplicativeExpr
2526 * | AdditiveExpr '+' MultiplicativeExpr
2527 * | AdditiveExpr '-' MultiplicativeExpr
2528 * [16] MultiplicativeExpr ::= UnaryExpr
2529 * | MultiplicativeExpr '*' UnaryExpr
2530 * | MultiplicativeExpr 'div' UnaryExpr
2531 * | MultiplicativeExpr 'mod' UnaryExpr
2532 *
2533 * @param[in] ctx Context for logging.
2534 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002535 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002536 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002537 * @return LY_ERR
2538 */
2539static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002540reparse_additive_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002541{
Michal Vaskodd528af2022-08-08 14:35:07 +02002542 uint32_t prev_add_exp, prev_mul_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002543 LY_ERR rc;
2544
Michal Vasko004d3152020-06-11 19:59:22 +02002545 prev_add_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002546 goto reparse_multiplicative_expr;
2547
2548 /* ('+' / '-' MultiplicativeExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002549 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2550 ((exp->expr[exp->tok_pos[*tok_idx]] == '+') || (exp->expr[exp->tok_pos[*tok_idx]] == '-'))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002551 exp_repeat_push(exp, prev_add_exp, LYXP_EXPR_ADDITIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002552 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002553
2554reparse_multiplicative_expr:
2555 /* UnaryExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002556 prev_mul_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002557 rc = reparse_unary_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002558 LY_CHECK_RET(rc);
2559
2560 /* ('*' / 'div' / 'mod' UnaryExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002561 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2562 ((exp->expr[exp->tok_pos[*tok_idx]] == '*') || (exp->tok_len[*tok_idx] == 3))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002563 exp_repeat_push(exp, prev_mul_exp, LYXP_EXPR_MULTIPLICATIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002564 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002565
aPiecekbf968d92021-05-27 14:35:05 +02002566 rc = reparse_unary_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002567 LY_CHECK_RET(rc);
2568 }
2569 }
2570
2571 return LY_SUCCESS;
2572}
2573
2574/**
2575 * @brief Reparse EqualityExpr. Logs directly on error.
2576 *
2577 * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
2578 * | EqualityExpr '!=' RelationalExpr
2579 * [14] RelationalExpr ::= AdditiveExpr
2580 * | RelationalExpr '<' AdditiveExpr
2581 * | RelationalExpr '>' AdditiveExpr
2582 * | RelationalExpr '<=' AdditiveExpr
2583 * | RelationalExpr '>=' AdditiveExpr
2584 *
2585 * @param[in] ctx Context for logging.
2586 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002587 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002588 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002589 * @return LY_ERR
2590 */
2591static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002592reparse_equality_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002593{
Michal Vaskodd528af2022-08-08 14:35:07 +02002594 uint32_t prev_eq_exp, prev_rel_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002595 LY_ERR rc;
2596
Michal Vasko004d3152020-06-11 19:59:22 +02002597 prev_eq_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002598 goto reparse_additive_expr;
2599
2600 /* ('=' / '!=' RelationalExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002601 while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_EQUAL, LYXP_TOKEN_OPER_NEQUAL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002602 exp_repeat_push(exp, prev_eq_exp, LYXP_EXPR_EQUALITY);
Michal Vasko004d3152020-06-11 19:59:22 +02002603 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002604
2605reparse_additive_expr:
2606 /* AdditiveExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002607 prev_rel_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002608 rc = reparse_additive_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002609 LY_CHECK_RET(rc);
2610
2611 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002612 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_COMP)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002613 exp_repeat_push(exp, prev_rel_exp, LYXP_EXPR_RELATIONAL);
Michal Vasko004d3152020-06-11 19:59:22 +02002614 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002615
aPiecekbf968d92021-05-27 14:35:05 +02002616 rc = reparse_additive_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002617 LY_CHECK_RET(rc);
2618 }
2619 }
2620
2621 return LY_SUCCESS;
2622}
2623
2624/**
2625 * @brief Reparse OrExpr. Logs directly on error.
2626 *
2627 * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
2628 * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
2629 *
2630 * @param[in] ctx Context for logging.
2631 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002632 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002633 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002634 * @return LY_ERR
2635 */
2636static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002637reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002638{
Michal Vaskodd528af2022-08-08 14:35:07 +02002639 uint32_t prev_or_exp, prev_and_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002640 LY_ERR rc;
2641
aPiecekbf968d92021-05-27 14:35:05 +02002642 ++depth;
2643 LY_CHECK_ERR_RET(depth > LYXP_MAX_BLOCK_DEPTH, LOGVAL(ctx, LY_VCODE_XP_DEPTH), LY_EINVAL);
2644
Michal Vasko004d3152020-06-11 19:59:22 +02002645 prev_or_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002646 goto reparse_equality_expr;
2647
2648 /* ('or' AndExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002649 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 +02002650 exp_repeat_push(exp, prev_or_exp, LYXP_EXPR_OR);
Michal Vasko004d3152020-06-11 19:59:22 +02002651 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002652
2653reparse_equality_expr:
2654 /* EqualityExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002655 prev_and_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002656 rc = reparse_equality_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002657 LY_CHECK_RET(rc);
2658
2659 /* ('and' EqualityExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002660 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 +02002661 exp_repeat_push(exp, prev_and_exp, LYXP_EXPR_AND);
Michal Vasko004d3152020-06-11 19:59:22 +02002662 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002663
aPiecekbf968d92021-05-27 14:35:05 +02002664 rc = reparse_equality_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002665 LY_CHECK_RET(rc);
2666 }
2667 }
2668
2669 return LY_SUCCESS;
2670}
Radek Krejcib1646a92018-11-02 16:08:26 +01002671
2672/**
2673 * @brief Parse NCName.
2674 *
2675 * @param[in] ncname Name to parse.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002676 * @return Length of @p ncname valid bytes.
Radek Krejcib1646a92018-11-02 16:08:26 +01002677 */
Michal Vasko49fec8e2022-05-24 10:28:33 +02002678static ssize_t
Radek Krejcib1646a92018-11-02 16:08:26 +01002679parse_ncname(const char *ncname)
2680{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002681 uint32_t uc;
Radek Krejcid4270262019-01-07 15:07:25 +01002682 size_t size;
Michal Vasko49fec8e2022-05-24 10:28:33 +02002683 ssize_t len = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002684
2685 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), 0);
2686 if (!is_xmlqnamestartchar(uc) || (uc == ':')) {
2687 return len;
2688 }
2689
2690 do {
2691 len += size;
Radek Krejci9a564c92019-01-07 14:53:57 +01002692 if (!*ncname) {
2693 break;
2694 }
Radek Krejcid4270262019-01-07 15:07:25 +01002695 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), -len);
Radek Krejcib1646a92018-11-02 16:08:26 +01002696 } while (is_xmlqnamechar(uc) && (uc != ':'));
2697
2698 return len;
2699}
2700
2701/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02002702 * @brief Add @p token into the expression @p exp.
Radek Krejcib1646a92018-11-02 16:08:26 +01002703 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02002704 * @param[in] ctx Context for logging.
Radek Krejcib1646a92018-11-02 16:08:26 +01002705 * @param[in] exp Expression to use.
2706 * @param[in] token Token to add.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002707 * @param[in] tok_pos Token position in the XPath expression.
Radek Krejcib1646a92018-11-02 16:08:26 +01002708 * @param[in] tok_len Token length in the XPath expression.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002709 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +01002710 */
2711static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02002712exp_add_token(const struct ly_ctx *ctx, struct lyxp_expr *exp, enum lyxp_token token, uint32_t tok_pos, uint32_t tok_len)
Radek Krejcib1646a92018-11-02 16:08:26 +01002713{
2714 uint32_t prev;
2715
2716 if (exp->used == exp->size) {
2717 prev = exp->size;
2718 exp->size += LYXP_EXPR_SIZE_STEP;
2719 if (prev > exp->size) {
2720 LOGINT(ctx);
2721 return LY_EINT;
2722 }
2723
2724 exp->tokens = ly_realloc(exp->tokens, exp->size * sizeof *exp->tokens);
2725 LY_CHECK_ERR_RET(!exp->tokens, LOGMEM(ctx), LY_EMEM);
2726 exp->tok_pos = ly_realloc(exp->tok_pos, exp->size * sizeof *exp->tok_pos);
2727 LY_CHECK_ERR_RET(!exp->tok_pos, LOGMEM(ctx), LY_EMEM);
2728 exp->tok_len = ly_realloc(exp->tok_len, exp->size * sizeof *exp->tok_len);
2729 LY_CHECK_ERR_RET(!exp->tok_len, LOGMEM(ctx), LY_EMEM);
2730 }
2731
2732 exp->tokens[exp->used] = token;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002733 exp->tok_pos[exp->used] = tok_pos;
Radek Krejcib1646a92018-11-02 16:08:26 +01002734 exp->tok_len[exp->used] = tok_len;
2735 ++exp->used;
2736 return LY_SUCCESS;
2737}
2738
2739void
Michal Vasko14676352020-05-29 11:35:55 +02002740lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr)
Radek Krejcib1646a92018-11-02 16:08:26 +01002741{
Michal Vaskodd528af2022-08-08 14:35:07 +02002742 uint32_t i;
Radek Krejcib1646a92018-11-02 16:08:26 +01002743
2744 if (!expr) {
2745 return;
2746 }
2747
2748 lydict_remove(ctx, expr->expr);
2749 free(expr->tokens);
2750 free(expr->tok_pos);
2751 free(expr->tok_len);
2752 if (expr->repeat) {
2753 for (i = 0; i < expr->used; ++i) {
2754 free(expr->repeat[i]);
2755 }
2756 }
2757 free(expr->repeat);
2758 free(expr);
2759}
2760
Michal Vasko49fec8e2022-05-24 10:28:33 +02002761/**
2762 * @brief Parse Axis name.
2763 *
2764 * @param[in] str String to parse.
2765 * @param[in] str_len Length of @p str.
2766 * @return LY_SUCCESS if an axis.
2767 * @return LY_ENOT otherwise.
2768 */
2769static LY_ERR
2770expr_parse_axis(const char *str, size_t str_len)
2771{
2772 switch (str_len) {
2773 case 4:
2774 if (!strncmp("self", str, str_len)) {
2775 return LY_SUCCESS;
2776 }
2777 break;
2778 case 5:
2779 if (!strncmp("child", str, str_len)) {
2780 return LY_SUCCESS;
2781 }
2782 break;
2783 case 6:
2784 if (!strncmp("parent", str, str_len)) {
2785 return LY_SUCCESS;
2786 }
2787 break;
2788 case 8:
2789 if (!strncmp("ancestor", str, str_len)) {
2790 return LY_SUCCESS;
2791 }
2792 break;
2793 case 9:
2794 if (!strncmp("attribute", str, str_len)) {
2795 return LY_SUCCESS;
2796 } else if (!strncmp("following", str, str_len)) {
2797 return LY_SUCCESS;
2798 } else if (!strncmp("namespace", str, str_len)) {
2799 LOGERR(NULL, LY_EINVAL, "Axis \"namespace\" not supported.");
2800 return LY_ENOT;
2801 } else if (!strncmp("preceding", str, str_len)) {
2802 return LY_SUCCESS;
2803 }
2804 break;
2805 case 10:
2806 if (!strncmp("descendant", str, str_len)) {
2807 return LY_SUCCESS;
2808 }
2809 break;
2810 case 16:
2811 if (!strncmp("ancestor-or-self", str, str_len)) {
2812 return LY_SUCCESS;
2813 }
2814 break;
2815 case 17:
2816 if (!strncmp("following-sibling", str, str_len)) {
2817 return LY_SUCCESS;
2818 } else if (!strncmp("preceding-sibling", str, str_len)) {
2819 return LY_SUCCESS;
2820 }
2821 break;
2822 case 18:
2823 if (!strncmp("descendant-or-self", str, str_len)) {
2824 return LY_SUCCESS;
2825 }
2826 break;
2827 }
2828
2829 return LY_ENOT;
2830}
2831
Radek Krejcif03a9e22020-09-18 20:09:31 +02002832LY_ERR
2833lyxp_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 +01002834{
Radek Krejcif03a9e22020-09-18 20:09:31 +02002835 LY_ERR ret = LY_SUCCESS;
2836 struct lyxp_expr *expr;
Radek Krejcid4270262019-01-07 15:07:25 +01002837 size_t parsed = 0, tok_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002838 enum lyxp_token tok_type;
Michal Vasko49fec8e2022-05-24 10:28:33 +02002839 ly_bool prev_func_check = 0, prev_ntype_check = 0, has_axis;
Michal Vaskodd528af2022-08-08 14:35:07 +02002840 uint32_t tok_idx = 0;
Michal Vasko49fec8e2022-05-24 10:28:33 +02002841 ssize_t ncname_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002842
Radek Krejcif03a9e22020-09-18 20:09:31 +02002843 assert(expr_p);
2844
2845 if (!expr_str[0]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002846 LOGVAL(ctx, LY_VCODE_XP_EOF);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002847 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002848 }
2849
2850 if (!expr_len) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002851 expr_len = strlen(expr_str);
Michal Vasko004d3152020-06-11 19:59:22 +02002852 }
Michal Vaskodd528af2022-08-08 14:35:07 +02002853 if (expr_len > UINT32_MAX) {
2854 LOGVAL(ctx, LYVE_XPATH, "XPath expression cannot be longer than %" PRIu32 " characters.", UINT32_MAX);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002855 return LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002856 }
2857
2858 /* init lyxp_expr structure */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002859 expr = calloc(1, sizeof *expr);
2860 LY_CHECK_ERR_GOTO(!expr, LOGMEM(ctx); ret = LY_EMEM, error);
2861 LY_CHECK_GOTO(ret = lydict_insert(ctx, expr_str, expr_len, &expr->expr), error);
2862 expr->used = 0;
2863 expr->size = LYXP_EXPR_SIZE_START;
2864 expr->tokens = malloc(expr->size * sizeof *expr->tokens);
2865 LY_CHECK_ERR_GOTO(!expr->tokens, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002866
Radek Krejcif03a9e22020-09-18 20:09:31 +02002867 expr->tok_pos = malloc(expr->size * sizeof *expr->tok_pos);
2868 LY_CHECK_ERR_GOTO(!expr->tok_pos, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002869
Radek Krejcif03a9e22020-09-18 20:09:31 +02002870 expr->tok_len = malloc(expr->size * sizeof *expr->tok_len);
2871 LY_CHECK_ERR_GOTO(!expr->tok_len, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002872
Michal Vasko004d3152020-06-11 19:59:22 +02002873 /* make expr 0-terminated */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002874 expr_str = expr->expr;
Michal Vasko004d3152020-06-11 19:59:22 +02002875
Radek Krejcif03a9e22020-09-18 20:09:31 +02002876 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002877 ++parsed;
2878 }
2879
2880 do {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002881 if (expr_str[parsed] == '(') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002882
2883 /* '(' */
2884 tok_len = 1;
2885 tok_type = LYXP_TOKEN_PAR1;
2886
Michal Vasko49fec8e2022-05-24 10:28:33 +02002887 if (prev_ntype_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST) &&
2888 (((expr->tok_len[expr->used - 1] == 4) &&
2889 (!strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "node", 4) ||
2890 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "text", 4))) ||
2891 ((expr->tok_len[expr->used - 1] == 7) &&
2892 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "comment", 7)))) {
2893 /* it is NodeType after all */
2894 expr->tokens[expr->used - 1] = LYXP_TOKEN_NODETYPE;
2895
2896 prev_ntype_check = 0;
2897 prev_func_check = 0;
2898 } else if (prev_func_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST)) {
2899 /* it is FunctionName after all */
2900 expr->tokens[expr->used - 1] = LYXP_TOKEN_FUNCNAME;
2901
2902 prev_ntype_check = 0;
2903 prev_func_check = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002904 }
2905
Radek Krejcif03a9e22020-09-18 20:09:31 +02002906 } else if (expr_str[parsed] == ')') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002907
2908 /* ')' */
2909 tok_len = 1;
2910 tok_type = LYXP_TOKEN_PAR2;
2911
Radek Krejcif03a9e22020-09-18 20:09:31 +02002912 } else if (expr_str[parsed] == '[') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002913
2914 /* '[' */
2915 tok_len = 1;
2916 tok_type = LYXP_TOKEN_BRACK1;
2917
Radek Krejcif03a9e22020-09-18 20:09:31 +02002918 } else if (expr_str[parsed] == ']') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002919
2920 /* ']' */
2921 tok_len = 1;
2922 tok_type = LYXP_TOKEN_BRACK2;
2923
Radek Krejcif03a9e22020-09-18 20:09:31 +02002924 } else if (!strncmp(&expr_str[parsed], "..", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002925
2926 /* '..' */
2927 tok_len = 2;
2928 tok_type = LYXP_TOKEN_DDOT;
2929
Radek Krejcif03a9e22020-09-18 20:09:31 +02002930 } else if ((expr_str[parsed] == '.') && (!isdigit(expr_str[parsed + 1]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002931
2932 /* '.' */
2933 tok_len = 1;
2934 tok_type = LYXP_TOKEN_DOT;
2935
Radek Krejcif03a9e22020-09-18 20:09:31 +02002936 } else if (expr_str[parsed] == '@') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002937
2938 /* '@' */
2939 tok_len = 1;
2940 tok_type = LYXP_TOKEN_AT;
2941
Radek Krejcif03a9e22020-09-18 20:09:31 +02002942 } else if (expr_str[parsed] == ',') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002943
2944 /* ',' */
2945 tok_len = 1;
2946 tok_type = LYXP_TOKEN_COMMA;
2947
Radek Krejcif03a9e22020-09-18 20:09:31 +02002948 } else if (expr_str[parsed] == '\'') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002949
2950 /* Literal with ' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002951 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\''); ++tok_len) {}
2952 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Radek Krejci2efc45b2020-12-22 16:25:44 +01002953 LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002954 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002955 ++tok_len;
2956 tok_type = LYXP_TOKEN_LITERAL;
2957
Radek Krejcif03a9e22020-09-18 20:09:31 +02002958 } else if (expr_str[parsed] == '\"') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002959
2960 /* Literal with " */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002961 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\"'); ++tok_len) {}
2962 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Radek Krejci2efc45b2020-12-22 16:25:44 +01002963 LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002964 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002965 ++tok_len;
2966 tok_type = LYXP_TOKEN_LITERAL;
2967
Radek Krejcif03a9e22020-09-18 20:09:31 +02002968 } else if ((expr_str[parsed] == '.') || (isdigit(expr_str[parsed]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002969
2970 /* Number */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002971 for (tok_len = 0; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
2972 if (expr_str[parsed + tok_len] == '.') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002973 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002974 for ( ; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
Radek Krejcib1646a92018-11-02 16:08:26 +01002975 }
2976 tok_type = LYXP_TOKEN_NUMBER;
2977
aPiecekfba75362021-10-07 12:39:48 +02002978 } else if (expr_str[parsed] == '$') {
2979
2980 /* VariableReference */
2981 parsed++;
Michal Vasko49fec8e2022-05-24 10:28:33 +02002982 ncname_len = parse_ncname(&expr_str[parsed]);
aPiecekfba75362021-10-07 12:39:48 +02002983 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
Michal Vasko7b3a00e2023-08-09 11:58:03 +02002984 (uint32_t)(parsed - ncname_len + 1), expr_str); ret = LY_EVALID, error);
aPiecekfba75362021-10-07 12:39:48 +02002985 tok_len = ncname_len;
2986 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == ':',
2987 LOGVAL(ctx, LYVE_XPATH, "Variable with prefix is not supported."); ret = LY_EVALID,
2988 error);
2989 tok_type = LYXP_TOKEN_VARREF;
2990
Radek Krejcif03a9e22020-09-18 20:09:31 +02002991 } else if (expr_str[parsed] == '/') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002992
2993 /* Operator '/', '//' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002994 if (!strncmp(&expr_str[parsed], "//", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002995 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002996 tok_type = LYXP_TOKEN_OPER_RPATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002997 } else {
2998 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002999 tok_type = LYXP_TOKEN_OPER_PATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01003000 }
Radek Krejcib1646a92018-11-02 16:08:26 +01003001
Radek Krejcif03a9e22020-09-18 20:09:31 +02003002 } else if (!strncmp(&expr_str[parsed], "!=", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003003
Michal Vasko3e48bf32020-06-01 08:39:07 +02003004 /* Operator '!=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01003005 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003006 tok_type = LYXP_TOKEN_OPER_NEQUAL;
3007
Radek Krejcif03a9e22020-09-18 20:09:31 +02003008 } else if (!strncmp(&expr_str[parsed], "<=", 2) || !strncmp(&expr_str[parsed], ">=", 2)) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02003009
3010 /* Operator '<=', '>=' */
3011 tok_len = 2;
3012 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01003013
Radek Krejcif03a9e22020-09-18 20:09:31 +02003014 } else if (expr_str[parsed] == '|') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003015
3016 /* Operator '|' */
3017 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003018 tok_type = LYXP_TOKEN_OPER_UNI;
Radek Krejcib1646a92018-11-02 16:08:26 +01003019
Radek Krejcif03a9e22020-09-18 20:09:31 +02003020 } else if ((expr_str[parsed] == '+') || (expr_str[parsed] == '-')) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003021
3022 /* Operator '+', '-' */
3023 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003024 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01003025
Radek Krejcif03a9e22020-09-18 20:09:31 +02003026 } else if (expr_str[parsed] == '=') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003027
Michal Vasko3e48bf32020-06-01 08:39:07 +02003028 /* Operator '=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01003029 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003030 tok_type = LYXP_TOKEN_OPER_EQUAL;
3031
Radek Krejcif03a9e22020-09-18 20:09:31 +02003032 } else if ((expr_str[parsed] == '<') || (expr_str[parsed] == '>')) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02003033
3034 /* Operator '<', '>' */
3035 tok_len = 1;
3036 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01003037
Michal Vasko69730152020-10-09 16:30:07 +02003038 } else if (expr->used && (expr->tokens[expr->used - 1] != LYXP_TOKEN_AT) &&
3039 (expr->tokens[expr->used - 1] != LYXP_TOKEN_PAR1) &&
3040 (expr->tokens[expr->used - 1] != LYXP_TOKEN_BRACK1) &&
3041 (expr->tokens[expr->used - 1] != LYXP_TOKEN_COMMA) &&
3042 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_LOG) &&
3043 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_EQUAL) &&
3044 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_NEQUAL) &&
3045 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_COMP) &&
3046 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_MATH) &&
3047 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_UNI) &&
3048 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_PATH) &&
3049 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_RPATH)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003050
3051 /* Operator '*', 'or', 'and', 'mod', or 'div' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003052 if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003053 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003054 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01003055
Radek Krejcif03a9e22020-09-18 20:09:31 +02003056 } else if (!strncmp(&expr_str[parsed], "or", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003057 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003058 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01003059
Radek Krejcif03a9e22020-09-18 20:09:31 +02003060 } else if (!strncmp(&expr_str[parsed], "and", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003061 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003062 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01003063
Radek Krejcif03a9e22020-09-18 20:09:31 +02003064 } else if (!strncmp(&expr_str[parsed], "mod", 3) || !strncmp(&expr_str[parsed], "div", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003065 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02003066 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01003067
Michal Vasko49fec8e2022-05-24 10:28:33 +02003068 } else if (prev_ntype_check || prev_func_check) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003069 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 +02003070 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 +02003071 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01003072 goto error;
3073 } else {
Michal Vasko7b3a00e2023-08-09 11:58:03 +02003074 LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed], (uint32_t)(parsed + 1), expr_str);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003075 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01003076 goto error;
3077 }
Radek Krejcib1646a92018-11-02 16:08:26 +01003078 } else {
3079
Michal Vasko49fec8e2022-05-24 10:28:33 +02003080 /* (AxisName '::')? ((NCName ':')? '*' | QName) or NodeType/FunctionName */
3081 if (expr_str[parsed] == '*') {
3082 ncname_len = 1;
3083 } else {
3084 ncname_len = parse_ncname(&expr_str[parsed]);
3085 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
Michal Vasko7b3a00e2023-08-09 11:58:03 +02003086 (uint32_t)(parsed - ncname_len + 1), expr_str); ret = LY_EVALID, error);
Michal Vasko49fec8e2022-05-24 10:28:33 +02003087 }
Radek Krejcib1646a92018-11-02 16:08:26 +01003088 tok_len = ncname_len;
3089
Michal Vasko49fec8e2022-05-24 10:28:33 +02003090 has_axis = 0;
3091 if (!strncmp(&expr_str[parsed + tok_len], "::", 2)) {
3092 /* axis */
3093 LY_CHECK_ERR_GOTO(expr_parse_axis(&expr_str[parsed], ncname_len),
Michal Vasko7b3a00e2023-08-09 11:58:03 +02003094 LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed], (uint32_t)(parsed + 1), expr_str); ret = LY_EVALID,
3095 error);
Michal Vasko49fec8e2022-05-24 10:28:33 +02003096 tok_type = LYXP_TOKEN_AXISNAME;
3097
3098 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
3099 parsed += tok_len;
3100
3101 /* '::' */
3102 tok_len = 2;
3103 tok_type = LYXP_TOKEN_DCOLON;
3104
3105 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
3106 parsed += tok_len;
3107
3108 if (expr_str[parsed] == '*') {
3109 ncname_len = 1;
3110 } else {
3111 ncname_len = parse_ncname(&expr_str[parsed]);
3112 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
Michal Vasko7b3a00e2023-08-09 11:58:03 +02003113 (uint32_t)(parsed - ncname_len + 1), expr_str); ret = LY_EVALID, error);
Michal Vasko49fec8e2022-05-24 10:28:33 +02003114 }
3115 tok_len = ncname_len;
3116
3117 has_axis = 1;
3118 }
3119
Radek Krejcif03a9e22020-09-18 20:09:31 +02003120 if (expr_str[parsed + tok_len] == ':') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003121 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003122 if (expr_str[parsed + tok_len] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01003123 ++tok_len;
3124 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02003125 ncname_len = parse_ncname(&expr_str[parsed + tok_len]);
Michal Vaskoe2be5462021-08-04 10:49:42 +02003126 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
Michal Vasko7b3a00e2023-08-09 11:58:03 +02003127 (uint32_t)(parsed - ncname_len + 1), expr_str); ret = LY_EVALID, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01003128 tok_len += ncname_len;
3129 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02003130 /* remove old flags to prevent ambiguities */
3131 prev_ntype_check = 0;
3132 prev_func_check = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01003133 tok_type = LYXP_TOKEN_NAMETEST;
3134 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02003135 /* if not '*', there is no prefix so it can still be NodeType/FunctionName, we can't finally decide now */
3136 prev_ntype_check = (expr_str[parsed] == '*') ? 0 : 1;
3137 prev_func_check = (prev_ntype_check && !has_axis) ? 1 : 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01003138 tok_type = LYXP_TOKEN_NAMETEST;
3139 }
3140 }
3141
3142 /* store the token, move on to the next one */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003143 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01003144 parsed += tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02003145 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01003146 ++parsed;
3147 }
3148
Radek Krejcif03a9e22020-09-18 20:09:31 +02003149 } while (expr_str[parsed]);
Radek Krejcib1646a92018-11-02 16:08:26 +01003150
Michal Vasko004d3152020-06-11 19:59:22 +02003151 if (reparse) {
3152 /* prealloc repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003153 expr->repeat = calloc(expr->size, sizeof *expr->repeat);
3154 LY_CHECK_ERR_GOTO(!expr->repeat, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01003155
Michal Vasko004d3152020-06-11 19:59:22 +02003156 /* fill repeat */
aPiecekbf968d92021-05-27 14:35:05 +02003157 LY_CHECK_ERR_GOTO(reparse_or_expr(ctx, expr, &tok_idx, 0), ret = LY_EVALID, error);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003158 if (expr->used > tok_idx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003159 LOGVAL(ctx, LYVE_XPATH, "Unparsed characters \"%s\" left at the end of an XPath expression.",
Michal Vasko69730152020-10-09 16:30:07 +02003160 &expr->expr[expr->tok_pos[tok_idx]]);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003161 ret = LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02003162 goto error;
3163 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003164 }
3165
Radek Krejcif03a9e22020-09-18 20:09:31 +02003166 print_expr_struct_debug(expr);
3167 *expr_p = expr;
3168 return LY_SUCCESS;
Radek Krejcib1646a92018-11-02 16:08:26 +01003169
3170error:
Radek Krejcif03a9e22020-09-18 20:09:31 +02003171 lyxp_expr_free(ctx, expr);
3172 return ret;
Radek Krejcib1646a92018-11-02 16:08:26 +01003173}
3174
Michal Vasko1734be92020-09-22 08:55:10 +02003175LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003176lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t start_idx, uint32_t end_idx,
Michal Vaskoe33134a2022-07-29 14:54:40 +02003177 struct lyxp_expr **dup_p)
Michal Vasko004d3152020-06-11 19:59:22 +02003178{
Michal Vasko1734be92020-09-22 08:55:10 +02003179 LY_ERR ret = LY_SUCCESS;
3180 struct lyxp_expr *dup = NULL;
Michal Vaskod59039d2022-09-09 09:07:30 +02003181 uint32_t used = 0, i, j, expr_len;
Michal Vaskoe33134a2022-07-29 14:54:40 +02003182 const char *expr_start;
3183
3184 assert((!start_idx && !end_idx) || ((start_idx < exp->used) && (end_idx < exp->used) && (start_idx <= end_idx)));
Michal Vasko004d3152020-06-11 19:59:22 +02003185
Michal Vasko7f45cf22020-10-01 12:49:44 +02003186 if (!exp) {
3187 goto cleanup;
3188 }
3189
Michal Vaskoe33134a2022-07-29 14:54:40 +02003190 if (!start_idx && !end_idx) {
3191 end_idx = exp->used - 1;
3192 }
3193
3194 expr_start = exp->expr + exp->tok_pos[start_idx];
3195 expr_len = (exp->tok_pos[end_idx] + exp->tok_len[end_idx]) - exp->tok_pos[start_idx];
3196
Michal Vasko004d3152020-06-11 19:59:22 +02003197 dup = calloc(1, sizeof *dup);
Michal Vasko1734be92020-09-22 08:55:10 +02003198 LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02003199
Michal Vasko08e9b112021-06-11 15:41:17 +02003200 if (exp->used) {
Michal Vaskoe33134a2022-07-29 14:54:40 +02003201 used = (end_idx - start_idx) + 1;
3202
3203 dup->tokens = malloc(used * sizeof *dup->tokens);
Michal Vasko08e9b112021-06-11 15:41:17 +02003204 LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskoe33134a2022-07-29 14:54:40 +02003205 memcpy(dup->tokens, exp->tokens + start_idx, used * sizeof *dup->tokens);
Michal Vasko004d3152020-06-11 19:59:22 +02003206
Michal Vaskoe33134a2022-07-29 14:54:40 +02003207 dup->tok_pos = malloc(used * sizeof *dup->tok_pos);
Michal Vasko08e9b112021-06-11 15:41:17 +02003208 LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskoe33134a2022-07-29 14:54:40 +02003209 memcpy(dup->tok_pos, exp->tok_pos + start_idx, used * sizeof *dup->tok_pos);
Michal Vasko004d3152020-06-11 19:59:22 +02003210
Michal Vaskoe33134a2022-07-29 14:54:40 +02003211 if (start_idx) {
3212 /* fix the indices in the expression */
3213 for (i = 0; i < used; ++i) {
3214 dup->tok_pos[i] -= expr_start - exp->expr;
3215 }
3216 }
3217
3218 dup->tok_len = malloc(used * sizeof *dup->tok_len);
Michal Vasko08e9b112021-06-11 15:41:17 +02003219 LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskoe33134a2022-07-29 14:54:40 +02003220 memcpy(dup->tok_len, exp->tok_len + start_idx, used * sizeof *dup->tok_len);
Michal Vasko004d3152020-06-11 19:59:22 +02003221
Michal Vasko79a7a872022-06-17 09:00:48 +02003222 if (exp->repeat) {
Michal Vaskoe33134a2022-07-29 14:54:40 +02003223 dup->repeat = malloc(used * sizeof *dup->repeat);
Michal Vasko79a7a872022-06-17 09:00:48 +02003224 LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vaskoe33134a2022-07-29 14:54:40 +02003225 for (i = start_idx; i <= end_idx; ++i) {
Michal Vasko79a7a872022-06-17 09:00:48 +02003226 if (!exp->repeat[i]) {
Michal Vaskoe33134a2022-07-29 14:54:40 +02003227 dup->repeat[i - start_idx] = NULL;
Michal Vasko79a7a872022-06-17 09:00:48 +02003228 } else {
3229 for (j = 0; exp->repeat[i][j]; ++j) {}
3230 /* the ending 0 as well */
3231 ++j;
Michal Vasko004d3152020-06-11 19:59:22 +02003232
Michal Vaskoe33134a2022-07-29 14:54:40 +02003233 dup->repeat[i - start_idx] = malloc(j * sizeof **dup->repeat);
3234 LY_CHECK_ERR_GOTO(!dup->repeat[i - start_idx], LOGMEM(ctx); ret = LY_EMEM, cleanup);
3235 memcpy(dup->repeat[i - start_idx], exp->repeat[i], j * sizeof **dup->repeat);
Michal Vasko79a7a872022-06-17 09:00:48 +02003236 }
Michal Vasko08e9b112021-06-11 15:41:17 +02003237 }
Michal Vasko004d3152020-06-11 19:59:22 +02003238 }
3239 }
3240
Michal Vaskoe33134a2022-07-29 14:54:40 +02003241 dup->used = used;
3242 dup->size = used;
3243
3244 /* copy only subexpression */
3245 LY_CHECK_GOTO(ret = lydict_insert(ctx, expr_start, expr_len, &dup->expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02003246
Michal Vasko1734be92020-09-22 08:55:10 +02003247cleanup:
3248 if (ret) {
3249 lyxp_expr_free(ctx, dup);
3250 } else {
3251 *dup_p = dup;
3252 }
3253 return ret;
Michal Vasko004d3152020-06-11 19:59:22 +02003254}
3255
Michal Vasko03ff5a72019-09-11 13:49:33 +02003256/**
3257 * @brief Get the last-added schema node that is currently in the context.
3258 *
3259 * @param[in] set Set to search in.
3260 * @return Last-added schema context node, NULL if no node is in context.
3261 */
3262static struct lysc_node *
3263warn_get_scnode_in_ctx(struct lyxp_set *set)
3264{
3265 uint32_t i;
3266
3267 if (!set || (set->type != LYXP_SET_SCNODE_SET)) {
3268 return NULL;
3269 }
3270
3271 i = set->used;
3272 do {
3273 --i;
Radek Krejcif13b87b2020-12-01 22:02:17 +01003274 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003275 /* if there are more, simply return the first found (last added) */
3276 return set->val.scnodes[i].scnode;
3277 }
3278 } while (i);
3279
3280 return NULL;
3281}
3282
3283/**
3284 * @brief Test whether a type is numeric - integer type or decimal64.
3285 *
3286 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003287 * @return Boolean value whether @p type is numeric type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003288 */
Radek Krejci857189e2020-09-01 13:26:36 +02003289static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003290warn_is_numeric_type(struct lysc_type *type)
3291{
3292 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003293 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003294 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003295
3296 switch (type->basetype) {
3297 case LY_TYPE_DEC64:
3298 case LY_TYPE_INT8:
3299 case LY_TYPE_UINT8:
3300 case LY_TYPE_INT16:
3301 case LY_TYPE_UINT16:
3302 case LY_TYPE_INT32:
3303 case LY_TYPE_UINT32:
3304 case LY_TYPE_INT64:
3305 case LY_TYPE_UINT64:
3306 return 1;
3307 case LY_TYPE_UNION:
3308 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003309 LY_ARRAY_FOR(uni->types, u) {
3310 ret = warn_is_numeric_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003311 if (ret) {
3312 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003313 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003314 }
3315 }
3316 /* did not find any suitable type */
3317 return 0;
3318 case LY_TYPE_LEAFREF:
3319 return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype);
3320 default:
3321 return 0;
3322 }
3323}
3324
3325/**
3326 * @brief Test whether a type is string-like - no integers, decimal64 or binary.
3327 *
3328 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003329 * @return Boolean value whether @p type's basetype is string type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003330 */
Radek Krejci857189e2020-09-01 13:26:36 +02003331static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003332warn_is_string_type(struct lysc_type *type)
3333{
3334 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003335 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003336 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003337
3338 switch (type->basetype) {
3339 case LY_TYPE_BITS:
3340 case LY_TYPE_ENUM:
3341 case LY_TYPE_IDENT:
3342 case LY_TYPE_INST:
3343 case LY_TYPE_STRING:
3344 return 1;
3345 case LY_TYPE_UNION:
3346 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003347 LY_ARRAY_FOR(uni->types, u) {
3348 ret = warn_is_string_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003349 if (ret) {
3350 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003351 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003352 }
3353 }
3354 /* did not find any suitable type */
3355 return 0;
3356 case LY_TYPE_LEAFREF:
3357 return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype);
3358 default:
3359 return 0;
3360 }
3361}
3362
3363/**
3364 * @brief Test whether a type is one specific type.
3365 *
3366 * @param[in] type Type to test.
3367 * @param[in] base Expected type.
Radek Krejci857189e2020-09-01 13:26:36 +02003368 * @return Boolean value whether the given @p type is of the specific basetype @p base.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003369 */
Radek Krejci857189e2020-09-01 13:26:36 +02003370static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003371warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base)
3372{
3373 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003374 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003375 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003376
3377 if (type->basetype == base) {
3378 return 1;
3379 } else if (type->basetype == LY_TYPE_UNION) {
3380 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003381 LY_ARRAY_FOR(uni->types, u) {
3382 ret = warn_is_specific_type(uni->types[u], base);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003383 if (ret) {
3384 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003385 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003386 }
3387 }
3388 /* did not find any suitable type */
3389 return 0;
3390 } else if (type->basetype == LY_TYPE_LEAFREF) {
3391 return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base);
3392 }
3393
3394 return 0;
3395}
3396
3397/**
3398 * @brief Get next type of a (union) type.
3399 *
3400 * @param[in] type Base type.
3401 * @param[in] prev_type Previously returned type.
3402 * @return Next type or NULL.
3403 */
3404static struct lysc_type *
3405warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type)
3406{
3407 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003408 ly_bool found = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003409 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003410
Michal Vasko4e55f5a2022-12-14 12:15:00 +01003411 if (type->basetype == LY_TYPE_UNION) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003412 uni = (struct lysc_type_union *)type;
3413 if (!prev_type) {
3414 return uni->types[0];
3415 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003416 LY_ARRAY_FOR(uni->types, u) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003417 if (found) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003418 return uni->types[u];
Michal Vasko03ff5a72019-09-11 13:49:33 +02003419 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003420 if (prev_type == uni->types[u]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003421 found = 1;
3422 }
3423 }
3424 return NULL;
Michal Vasko4e55f5a2022-12-14 12:15:00 +01003425 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003426 if (prev_type) {
3427 assert(type == prev_type);
3428 return NULL;
3429 } else {
3430 return type;
3431 }
3432 }
3433}
3434
3435/**
3436 * @brief Test whether 2 types have a common type.
3437 *
3438 * @param[in] type1 First type.
3439 * @param[in] type2 Second type.
3440 * @return 1 if they do, 0 otherwise.
3441 */
3442static int
3443warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2)
3444{
3445 struct lysc_type *t1, *rt1, *t2, *rt2;
3446
3447 t1 = NULL;
3448 while ((t1 = warn_is_equal_type_next_type(type1, t1))) {
3449 if (t1->basetype == LY_TYPE_LEAFREF) {
3450 rt1 = ((struct lysc_type_leafref *)t1)->realtype;
3451 } else {
3452 rt1 = t1;
3453 }
3454
3455 t2 = NULL;
3456 while ((t2 = warn_is_equal_type_next_type(type2, t2))) {
3457 if (t2->basetype == LY_TYPE_LEAFREF) {
3458 rt2 = ((struct lysc_type_leafref *)t2)->realtype;
3459 } else {
3460 rt2 = t2;
3461 }
3462
3463 if (rt2->basetype == rt1->basetype) {
3464 /* match found */
3465 return 1;
3466 }
3467 }
3468 }
3469
3470 return 0;
3471}
3472
3473/**
Michal Vaskoaa956522021-11-11 10:45:34 +01003474 * @brief Print warning with information about the XPath subexpression that caused previous warning.
3475 *
3476 * @param[in] ctx Context for logging.
3477 * @param[in] tok_pos Index of the subexpression in the whole expression.
3478 * @param[in] subexpr Subexpression start.
3479 * @param[in] subexpr_len Length of @p subexpr to print.
3480 * @param[in] cur_scnode Expression context node.
3481 */
3482static void
Michal Vaskodd528af2022-08-08 14:35:07 +02003483warn_subexpr_log(const struct ly_ctx *ctx, uint32_t tok_pos, const char *subexpr, int subexpr_len,
Michal Vaskoaa956522021-11-11 10:45:34 +01003484 const struct lysc_node *cur_scnode)
3485{
3486 char *path;
3487
3488 path = lysc_path(cur_scnode, LYSC_PATH_LOG, NULL, 0);
Michal Vaskodd528af2022-08-08 14:35:07 +02003489 LOGWRN(ctx, "Previous warning generated by XPath subexpression[%" PRIu32 "] \"%.*s\" with context node \"%s\".",
Michal Vaskoaa956522021-11-11 10:45:34 +01003490 tok_pos, subexpr_len, subexpr, path);
3491 free(path);
3492}
3493
3494/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02003495 * @brief Check both operands of comparison operators.
3496 *
3497 * @param[in] ctx Context for errors.
3498 * @param[in] set1 First operand set.
3499 * @param[in] set2 Second operand set.
3500 * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!=').
3501 * @param[in] expr Start of the expression to print with the warning.
3502 * @param[in] tok_pos Token position.
3503 */
3504static void
Michal Vaskoaa956522021-11-11 10:45:34 +01003505warn_operands(struct ly_ctx *ctx, struct lyxp_set *set1, struct lyxp_set *set2, ly_bool numbers_only, const char *expr,
Michal Vaskodd528af2022-08-08 14:35:07 +02003506 uint32_t tok_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003507{
3508 struct lysc_node_leaf *node1, *node2;
Radek Krejci857189e2020-09-01 13:26:36 +02003509 ly_bool leaves = 1, warning = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003510
3511 node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1);
3512 node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2);
3513
3514 if (!node1 && !node2) {
3515 /* no node-sets involved, nothing to do */
3516 return;
3517 }
3518
3519 if (node1) {
3520 if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3521 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name);
3522 warning = 1;
3523 leaves = 0;
3524 } else if (numbers_only && !warn_is_numeric_type(node1->type)) {
3525 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name);
3526 warning = 1;
3527 }
3528 }
3529
3530 if (node2) {
3531 if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3532 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name);
3533 warning = 1;
3534 leaves = 0;
3535 } else if (numbers_only && !warn_is_numeric_type(node2->type)) {
3536 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name);
3537 warning = 1;
3538 }
3539 }
3540
3541 if (node1 && node2 && leaves && !numbers_only) {
Michal Vasko69730152020-10-09 16:30:07 +02003542 if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)) ||
3543 (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type)) ||
3544 (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type) &&
3545 !warn_is_equal_type(node1->type, node2->type))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003546 LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name);
3547 warning = 1;
3548 }
3549 }
3550
3551 if (warning) {
Michal Vaskoaa956522021-11-11 10:45:34 +01003552 warn_subexpr_log(ctx, tok_pos, expr + tok_pos, 20, set1->cur_scnode);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003553 }
3554}
3555
3556/**
3557 * @brief Check that a value is valid for a leaf. If not applicable, does nothing.
3558 *
3559 * @param[in] exp Parsed XPath expression.
3560 * @param[in] set Set with the leaf/leaf-list.
3561 * @param[in] val_exp Index of the value (literal/number) in @p exp.
3562 * @param[in] equal_exp Index of the start of the equality expression in @p exp.
3563 * @param[in] last_equal_exp Index of the end of the equality expression in @p exp.
3564 */
3565static void
Michal Vaskodd528af2022-08-08 14:35:07 +02003566warn_equality_value(const struct lyxp_expr *exp, struct lyxp_set *set, uint32_t val_exp, uint32_t equal_exp,
3567 uint32_t last_equal_exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003568{
3569 struct lysc_node *scnode;
3570 struct lysc_type *type;
3571 char *value;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003572 struct lyd_value storage;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003573 LY_ERR rc;
3574 struct ly_err_item *err = NULL;
3575
Michal Vasko69730152020-10-09 16:30:07 +02003576 if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3577 ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003578 /* check that the node can have the specified value */
3579 if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) {
3580 value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2);
3581 } else {
3582 value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]);
3583 }
3584 if (!value) {
3585 LOGMEM(set->ctx);
3586 return;
3587 }
3588
3589 if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) {
3590 LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding"
Michal Vasko69730152020-10-09 16:30:07 +02003591 " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value);
Michal Vaskoaa956522021-11-11 10:45:34 +01003592 warn_subexpr_log(set->ctx, exp->tok_pos[equal_exp], exp->expr + exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003593 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vaskoaa956522021-11-11 10:45:34 +01003594 set->cur_scnode);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003595 }
3596
3597 type = ((struct lysc_node_leaf *)scnode)->type;
3598 if (type->basetype != LY_TYPE_IDENT) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003599 rc = type->plugin->store(set->ctx, type, value, strlen(value), 0, set->format, set->prefix_data,
Michal Vasko405cc9e2020-12-01 12:01:27 +01003600 LYD_HINT_DATA, scnode, &storage, NULL, &err);
Michal Vaskobf42e832020-11-23 16:59:42 +01003601 if (rc == LY_EINCOMPLETE) {
3602 rc = LY_SUCCESS;
3603 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003604
3605 if (err) {
3606 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg);
3607 ly_err_free(err);
3608 } else if (rc != LY_SUCCESS) {
3609 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value);
3610 }
3611 if (rc != LY_SUCCESS) {
Michal Vaskoaa956522021-11-11 10:45:34 +01003612 warn_subexpr_log(set->ctx, exp->tok_pos[equal_exp], exp->expr + exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003613 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vaskoaa956522021-11-11 10:45:34 +01003614 set->cur_scnode);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003615 } else {
3616 type->plugin->free(set->ctx, &storage);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003617 }
3618 }
3619 free(value);
3620 }
3621}
3622
3623/*
3624 * XPath functions
3625 */
3626
3627/**
3628 * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN
3629 * depending on whether the first node bit value from the second argument is set.
3630 *
3631 * @param[in] args Array of arguments.
3632 * @param[in] arg_count Count of elements in @p args.
3633 * @param[in,out] set Context and result set at the same time.
3634 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003635 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003636 */
3637static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003638xpath_bit_is_set(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003639{
3640 struct lyd_node_term *leaf;
3641 struct lysc_node_leaf *sleaf;
Michal Vasko2588b952021-07-29 07:43:26 +02003642 struct lyd_value_bits *bits;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003643 LY_ERR rc = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003644 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003645
3646 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003647 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003648 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003649 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3650 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3651 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3652 sleaf->name);
3653 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) {
3654 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name);
3655 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003656 }
3657
3658 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3659 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003660 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3661 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003662 } else if (!warn_is_string_type(sleaf->type)) {
3663 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003664 }
3665 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003666 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003667 return rc;
3668 }
3669
Michal Vaskod3678892020-05-21 10:06:58 +02003670 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003671 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 +02003672 return LY_EVALID;
3673 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003674 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003675 LY_CHECK_RET(rc);
3676
3677 set_fill_boolean(set, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02003678 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003679 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
Michal Vasko2588b952021-07-29 07:43:26 +02003680 if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (leaf->value.realtype->basetype == LY_TYPE_BITS)) {
3681 LYD_VALUE_GET(&leaf->value, bits);
3682 LY_ARRAY_FOR(bits->items, u) {
3683 if (!strcmp(bits->items[u]->name, args[1]->val.str)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003684 set_fill_boolean(set, 1);
3685 break;
3686 }
3687 }
3688 }
3689 }
3690
3691 return LY_SUCCESS;
3692}
3693
3694/**
3695 * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN
3696 * with the argument converted to boolean.
3697 *
3698 * @param[in] args Array of arguments.
3699 * @param[in] arg_count Count of elements in @p args.
3700 * @param[in,out] set Context and result set at the same time.
3701 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003702 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003703 */
3704static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003705xpath_boolean(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003706{
3707 LY_ERR rc;
3708
3709 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02003710 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003711 return LY_SUCCESS;
3712 }
3713
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003714 rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003715 LY_CHECK_RET(rc);
3716 set_fill_set(set, args[0]);
3717
3718 return LY_SUCCESS;
3719}
3720
3721/**
3722 * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER
3723 * with the first argument rounded up to the nearest integer.
3724 *
3725 * @param[in] args Array of arguments.
3726 * @param[in] arg_count Count of elements in @p args.
3727 * @param[in,out] set Context and result set at the same time.
3728 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003729 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003730 */
3731static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003732xpath_ceiling(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003733{
3734 struct lysc_node_leaf *sleaf;
3735 LY_ERR rc = LY_SUCCESS;
3736
3737 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003738 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003739 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003740 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3741 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3742 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3743 sleaf->name);
3744 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
3745 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
3746 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003747 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003748 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003749 return rc;
3750 }
3751
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003752 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003753 LY_CHECK_RET(rc);
3754 if ((long long)args[0]->val.num != args[0]->val.num) {
3755 set_fill_number(set, ((long long)args[0]->val.num) + 1);
3756 } else {
3757 set_fill_number(set, args[0]->val.num);
3758 }
3759
3760 return LY_SUCCESS;
3761}
3762
3763/**
3764 * @brief Execute the XPath concat(string, string, string*) function.
3765 * Returns LYXP_SET_STRING with the concatenation of all the arguments.
3766 *
3767 * @param[in] args Array of arguments.
3768 * @param[in] arg_count Count of elements in @p args.
3769 * @param[in,out] set Context and result set at the same time.
3770 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003771 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003772 */
3773static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003774xpath_concat(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003775{
Michal Vaskodd528af2022-08-08 14:35:07 +02003776 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003777 char *str = NULL;
3778 size_t used = 1;
3779 LY_ERR rc = LY_SUCCESS;
3780 struct lysc_node_leaf *sleaf;
3781
3782 if (options & LYXP_SCNODE_ALL) {
3783 for (i = 0; i < arg_count; ++i) {
3784 if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) {
3785 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3786 LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02003787 i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003788 } else if (!warn_is_string_type(sleaf->type)) {
Radek Krejci70124c82020-08-14 22:17:03 +02003789 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 +02003790 }
3791 }
3792 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003793 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003794 return rc;
3795 }
3796
3797 for (i = 0; i < arg_count; ++i) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003798 rc = lyxp_set_cast(args[i], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003799 if (rc != LY_SUCCESS) {
3800 free(str);
3801 return rc;
3802 }
3803
3804 str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char));
3805 LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM);
3806 strcpy(str + used - 1, args[i]->val.str);
3807 used += strlen(args[i]->val.str);
3808 }
3809
3810 /* free, kind of */
Michal Vaskod3678892020-05-21 10:06:58 +02003811 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003812 set->type = LYXP_SET_STRING;
3813 set->val.str = str;
3814
3815 return LY_SUCCESS;
3816}
3817
3818/**
3819 * @brief Execute the XPath contains(string, string) function.
3820 * Returns LYXP_SET_BOOLEAN whether the second argument can
3821 * be found in the first or not.
3822 *
3823 * @param[in] args Array of arguments.
3824 * @param[in] arg_count Count of elements in @p args.
3825 * @param[in,out] set Context and result set at the same time.
3826 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003827 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003828 */
3829static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003830xpath_contains(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003831{
3832 struct lysc_node_leaf *sleaf;
3833 LY_ERR rc = LY_SUCCESS;
3834
3835 if (options & LYXP_SCNODE_ALL) {
3836 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3837 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003838 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3839 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003840 } else if (!warn_is_string_type(sleaf->type)) {
3841 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003842 }
3843 }
3844
3845 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3846 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003847 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3848 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003849 } else if (!warn_is_string_type(sleaf->type)) {
3850 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003851 }
3852 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003853 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003854 return rc;
3855 }
3856
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003857 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003858 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003859 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003860 LY_CHECK_RET(rc);
3861
3862 if (strstr(args[0]->val.str, args[1]->val.str)) {
3863 set_fill_boolean(set, 1);
3864 } else {
3865 set_fill_boolean(set, 0);
3866 }
3867
3868 return LY_SUCCESS;
3869}
3870
3871/**
3872 * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER
3873 * with the size of the node-set from the argument.
3874 *
3875 * @param[in] args Array of arguments.
3876 * @param[in] arg_count Count of elements in @p args.
3877 * @param[in,out] set Context and result set at the same time.
3878 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003879 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003880 */
3881static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003882xpath_count(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003883{
Michal Vasko03ff5a72019-09-11 13:49:33 +02003884 LY_ERR rc = LY_SUCCESS;
3885
3886 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003887 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003888 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003889 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003890 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003891 return rc;
3892 }
3893
Michal Vasko03ff5a72019-09-11 13:49:33 +02003894 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003895 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003896 return LY_EVALID;
3897 }
3898
3899 set_fill_number(set, args[0]->used);
3900 return LY_SUCCESS;
3901}
3902
3903/**
3904 * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET
3905 * with the context with the intial node.
3906 *
3907 * @param[in] args Array of arguments.
3908 * @param[in] arg_count Count of elements in @p args.
3909 * @param[in,out] set Context and result set at the same time.
3910 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003911 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003912 */
3913static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003914xpath_current(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003915{
3916 if (arg_count || args) {
Radek Krejcie87c7dc2021-06-02 21:25:42 +02003917 LOGVAL(set->ctx, LY_VCODE_XP_INARGCOUNT, arg_count, LY_PRI_LENSTR("current()"));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003918 return LY_EVALID;
3919 }
3920
3921 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02003922 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003923
Michal Vasko296dfaf2021-12-13 16:57:42 +01003924 if (set->cur_scnode) {
Michal Vaskoe4a6d012023-05-22 14:34:52 +02003925 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, set->cur_scnode, LYXP_NODE_ELEM, LYXP_AXIS_SELF, NULL));
Michal Vasko296dfaf2021-12-13 16:57:42 +01003926 } else {
3927 /* root node */
Michal Vaskoe4a6d012023-05-22 14:34:52 +02003928 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, LYXP_AXIS_SELF, NULL));
Michal Vasko296dfaf2021-12-13 16:57:42 +01003929 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003930 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02003931 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003932
Michal Vasko296dfaf2021-12-13 16:57:42 +01003933 if (set->cur_node) {
3934 /* position is filled later */
3935 set_insert_node(set, set->cur_node, 0, LYXP_NODE_ELEM, 0);
3936 } else {
3937 /* root node */
3938 set_insert_node(set, NULL, 0, set->root_type, 0);
3939 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003940 }
3941
3942 return LY_SUCCESS;
3943}
3944
3945/**
3946 * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either
3947 * leafref or instance-identifier target node(s).
3948 *
3949 * @param[in] args Array of arguments.
3950 * @param[in] arg_count Count of elements in @p args.
3951 * @param[in,out] set Context and result set at the same time.
3952 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003953 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003954 */
3955static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02003956xpath_deref(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003957{
3958 struct lyd_node_term *leaf;
Michal Vasko42e497c2020-01-06 08:38:25 +01003959 struct lysc_node_leaf *sleaf = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003960 struct lysc_type_leafref *lref;
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003961 const struct lysc_node *target;
Michal Vasko004d3152020-06-11 19:59:22 +02003962 struct ly_path *p;
3963 struct lyd_node *node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003964 char *errmsg = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02003965 uint8_t oper;
Michal Vasko741bb562021-06-24 11:59:50 +02003966 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003967
3968 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003969 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003970 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003971 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
Michal Vasko423ba3f2021-07-19 13:08:50 +02003972 if (!(sleaf->nodetype & LYD_NODE_TERM)) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003973 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3974 sleaf->name);
Michal Vaskoed725d72021-06-23 12:03:45 +02003975 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) &&
3976 !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003977 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".",
3978 __func__, sleaf->name);
3979 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003980 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003981 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko423ba3f2021-07-19 13:08:50 +02003982 if (sleaf && (sleaf->nodetype & LYD_NODE_TERM) && (sleaf->type->basetype == LY_TYPE_LEAFREF)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003983 lref = (struct lysc_type_leafref *)sleaf->type;
Michal Vaskod1e53b92021-01-28 13:11:06 +01003984 oper = (sleaf->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko004d3152020-06-11 19:59:22 +02003985
3986 /* it was already evaluated on schema, it must succeed */
Michal Vasko741bb562021-06-24 11:59:50 +02003987 r = ly_path_compile_leafref(set->ctx, &sleaf->node, NULL, lref->path, oper, LY_PATH_TARGET_MANY,
Michal Vasko24fc4d12021-07-12 14:41:20 +02003988 LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, &p);
Michal Vasko741bb562021-06-24 11:59:50 +02003989 if (!r) {
3990 /* get the target node */
3991 target = p[LY_ARRAY_COUNT(p) - 1].node;
3992 ly_path_free(set->ctx, p);
Michal Vasko004d3152020-06-11 19:59:22 +02003993
Michal Vaskoe4a6d012023-05-22 14:34:52 +02003994 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM, LYXP_AXIS_SELF, NULL));
Michal Vasko741bb562021-06-24 11:59:50 +02003995 } /* else the target was found before but is disabled so it was removed */
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003996 }
3997
Michal Vasko741bb562021-06-24 11:59:50 +02003998 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003999 }
4000
Michal Vaskod3678892020-05-21 10:06:58 +02004001 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004002 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004003 return LY_EVALID;
4004 }
4005
Michal Vaskod3678892020-05-21 10:06:58 +02004006 lyxp_set_free_content(set);
4007 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004008 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
4009 sleaf = (struct lysc_node_leaf *)leaf->schema;
4010 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
4011 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
4012 /* find leafref target */
Radek Krejci0b013302021-03-29 15:22:32 +02004013 if (lyplg_type_resolve_leafref((struct lysc_type_leafref *)sleaf->type, &leaf->node, &leaf->value, set->tree,
Michal Vasko9e685082021-01-29 14:49:09 +01004014 &node, &errmsg)) {
Michal Vasko1a2b8ee2022-12-05 10:41:55 +01004015 LOGERR(set->ctx, LY_EVALID, "%s", errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004016 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02004017 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004018 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004019 } else {
4020 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko90189962023-02-28 12:10:34 +01004021 if (ly_path_eval(leaf->value.target, set->tree, NULL, &node)) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02004022 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.",
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02004023 lyd_get_value(&leaf->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004024 return LY_EVALID;
4025 }
4026 }
Michal Vasko004d3152020-06-11 19:59:22 +02004027
4028 /* insert it */
4029 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004030 }
4031 }
4032
4033 return LY_SUCCESS;
4034}
4035
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004036static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02004037xpath_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 +02004038{
Michal Vaskofe1af042022-07-29 14:58:59 +02004039 uint32_t i, id_len;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004040 LY_ARRAY_COUNT_TYPE u;
4041 struct lyd_node_term *leaf;
4042 struct lysc_node_leaf *sleaf;
4043 struct lyd_meta *meta;
Michal Vasko93923692021-05-07 15:28:02 +02004044 struct lyd_value *val;
4045 const struct lys_module *mod;
4046 const char *id_name;
Michal Vasko93923692021-05-07 15:28:02 +02004047 struct lysc_ident *id;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004048 LY_ERR rc = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +02004049 ly_bool found;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004050
4051 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004052 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004053 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004054 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4055 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4056 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
4057 sleaf->name);
4058 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
4059 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
4060 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004061 }
4062
4063 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4064 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4065 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
Michal Vasko69730152020-10-09 16:30:07 +02004066 sleaf->name);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004067 } else if (!warn_is_string_type(sleaf->type)) {
4068 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
4069 }
4070 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004071 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004072 return rc;
4073 }
4074
4075 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004076 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 +02004077 return LY_EVALID;
4078 }
4079 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
4080 LY_CHECK_RET(rc);
4081
Michal Vasko93923692021-05-07 15:28:02 +02004082 /* parse the identity */
4083 id_name = args[1]->val.str;
4084 id_len = strlen(id_name);
4085 rc = moveto_resolve_model(&id_name, &id_len, set, set->cur_node ? set->cur_node->schema : NULL, &mod);
4086 LY_CHECK_RET(rc);
4087 if (!mod) {
4088 LOGVAL(set->ctx, LYVE_XPATH, "Identity \"%.*s\" without a prefix.", (int)id_len, id_name);
4089 return LY_EVALID;
4090 }
4091
4092 /* find the identity */
4093 found = 0;
4094 LY_ARRAY_FOR(mod->identities, u) {
4095 if (!ly_strncmp(mod->identities[u].name, id_name, id_len)) {
4096 /* we have match */
4097 found = 1;
4098 break;
4099 }
4100 }
4101 if (!found) {
4102 LOGVAL(set->ctx, LYVE_XPATH, "Identity \"%.*s\" not found in module \"%s\".", (int)id_len, id_name, mod->name);
4103 return LY_EVALID;
4104 }
4105 id = &mod->identities[u];
4106
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004107 set_fill_boolean(set, 0);
4108 found = 0;
4109 for (i = 0; i < args[0]->used; ++i) {
4110 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
4111 continue;
4112 }
4113
4114 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
4115 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
4116 sleaf = (struct lysc_node_leaf *)leaf->schema;
4117 val = &leaf->value;
4118 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
4119 /* uninteresting */
4120 continue;
4121 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004122 } else {
4123 meta = args[0]->val.meta[i].meta;
4124 val = &meta->value;
4125 if (val->realtype->basetype != LY_TYPE_IDENT) {
4126 /* uninteresting */
4127 continue;
4128 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004129 }
4130
Michal Vasko93923692021-05-07 15:28:02 +02004131 /* check the identity itself */
4132 if (self_match && (id == val->ident)) {
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004133 set_fill_boolean(set, 1);
4134 found = 1;
4135 }
Michal Vasko93923692021-05-07 15:28:02 +02004136 if (!found && !lyplg_type_identity_isderived(id, val->ident)) {
4137 set_fill_boolean(set, 1);
4138 found = 1;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004139 }
4140
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004141 if (found) {
4142 break;
4143 }
4144 }
4145
4146 return LY_SUCCESS;
4147}
4148
Michal Vasko03ff5a72019-09-11 13:49:33 +02004149/**
4150 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
4151 * on whether the first argument nodes contain a node of an identity derived from the second
4152 * argument identity.
4153 *
4154 * @param[in] args Array of arguments.
4155 * @param[in] arg_count Count of elements in @p args.
4156 * @param[in,out] set Context and result set at the same time.
4157 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004158 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004159 */
4160static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004161xpath_derived_from(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004162{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004163 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004164}
4165
4166/**
4167 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
4168 * on whether the first argument nodes contain a node of an identity that either is or is derived from
4169 * the second argument identity.
4170 *
4171 * @param[in] args Array of arguments.
4172 * @param[in] arg_count Count of elements in @p args.
4173 * @param[in,out] set Context and result set at the same time.
4174 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004175 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004176 */
4177static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004178xpath_derived_from_or_self(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004179{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004180 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004181}
4182
4183/**
4184 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
4185 * with the integer value of the first node's enum value, otherwise NaN.
4186 *
4187 * @param[in] args Array of arguments.
4188 * @param[in] arg_count Count of elements in @p args.
4189 * @param[in,out] set Context and result set at the same time.
4190 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004191 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004192 */
4193static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004194xpath_enum_value(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004195{
4196 struct lyd_node_term *leaf;
4197 struct lysc_node_leaf *sleaf;
4198 LY_ERR rc = LY_SUCCESS;
4199
4200 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004201 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004202 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004203 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4204 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4205 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4206 sleaf->name);
4207 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
4208 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
4209 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004210 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004211 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004212 return rc;
4213 }
4214
Michal Vaskod3678892020-05-21 10:06:58 +02004215 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004216 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004217 return LY_EVALID;
4218 }
4219
4220 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02004221 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004222 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
4223 sleaf = (struct lysc_node_leaf *)leaf->schema;
4224 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
4225 set_fill_number(set, leaf->value.enum_item->value);
4226 }
4227 }
4228
4229 return LY_SUCCESS;
4230}
4231
4232/**
4233 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
4234 * with false value.
4235 *
4236 * @param[in] args Array of arguments.
4237 * @param[in] arg_count Count of elements in @p args.
4238 * @param[in,out] set Context and result set at the same time.
4239 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004240 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004241 */
4242static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004243xpath_false(struct lyxp_set **UNUSED(args), uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004244{
4245 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004246 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004247 return LY_SUCCESS;
4248 }
4249
4250 set_fill_boolean(set, 0);
4251 return LY_SUCCESS;
4252}
4253
4254/**
4255 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
4256 * with the first argument floored (truncated).
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
Michal Vasko0ff8d632023-04-06 12:31:17 +02004265xpath_floor(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004266{
Michal Vasko0ff8d632023-04-06 12:31:17 +02004267 struct lysc_node_leaf *sleaf;
4268 LY_ERR rc = LY_SUCCESS;
4269
4270 if (options & LYXP_SCNODE_ALL) {
4271 if (args[0]->type != LYXP_SET_SCNODE_SET) {
4272 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
4273 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4274 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4275 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4276 sleaf->name);
4277 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4278 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
4279 }
4280 }
4281 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
4282 return rc;
4283 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004284
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004285 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004286 LY_CHECK_RET(rc);
4287 if (isfinite(args[0]->val.num)) {
4288 set_fill_number(set, (long long)args[0]->val.num);
4289 }
4290
4291 return LY_SUCCESS;
4292}
4293
4294/**
4295 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
4296 * whether the language of the text matches the one from the argument.
4297 *
4298 * @param[in] args Array of arguments.
4299 * @param[in] arg_count Count of elements in @p args.
4300 * @param[in,out] set Context and result set at the same time.
4301 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004302 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004303 */
4304static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004305xpath_lang(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004306{
4307 const struct lyd_node *node;
4308 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01004309 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004310 const char *val;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004311 LY_ERR rc = LY_SUCCESS;
4312
4313 if (options & LYXP_SCNODE_ALL) {
4314 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4315 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004316 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4317 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004318 } else if (!warn_is_string_type(sleaf->type)) {
4319 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004320 }
4321 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004322 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004323 return rc;
4324 }
4325
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004326 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004327 LY_CHECK_RET(rc);
4328
Michal Vasko03ff5a72019-09-11 13:49:33 +02004329 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004330 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004331 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004332 } else if (!set->used) {
4333 set_fill_boolean(set, 0);
4334 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004335 }
4336
4337 switch (set->val.nodes[0].type) {
4338 case LYXP_NODE_ELEM:
4339 case LYXP_NODE_TEXT:
4340 node = set->val.nodes[0].node;
4341 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004342 case LYXP_NODE_META:
4343 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004344 break;
4345 default:
4346 /* nothing to do with roots */
4347 set_fill_boolean(set, 0);
4348 return LY_SUCCESS;
4349 }
4350
Michal Vasko9f96a052020-03-10 09:41:45 +01004351 /* find lang metadata */
Michal Vasko9e685082021-01-29 14:49:09 +01004352 for ( ; node; node = lyd_parent(node)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004353 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004354 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004355 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004356 break;
4357 }
4358 }
4359
Michal Vasko9f96a052020-03-10 09:41:45 +01004360 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004361 break;
4362 }
4363 }
4364
4365 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004366 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004367 set_fill_boolean(set, 0);
4368 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004369 uint64_t i;
4370
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02004371 val = lyd_get_meta_value(meta);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004372 for (i = 0; args[0]->val.str[i]; ++i) {
4373 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4374 set_fill_boolean(set, 0);
4375 break;
4376 }
4377 }
4378 if (!args[0]->val.str[i]) {
4379 if (!val[i] || (val[i] == '-')) {
4380 set_fill_boolean(set, 1);
4381 } else {
4382 set_fill_boolean(set, 0);
4383 }
4384 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004385 }
4386
4387 return LY_SUCCESS;
4388}
4389
4390/**
4391 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4392 * with the context size.
4393 *
4394 * @param[in] args Array of arguments.
4395 * @param[in] arg_count Count of elements in @p args.
4396 * @param[in,out] set Context and result set at the same time.
4397 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004398 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004399 */
4400static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004401xpath_last(struct lyxp_set **UNUSED(args), uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004402{
4403 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004404 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004405 return LY_SUCCESS;
4406 }
4407
Michal Vasko03ff5a72019-09-11 13:49:33 +02004408 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004409 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004410 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004411 } else if (!set->used) {
4412 set_fill_number(set, 0);
4413 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004414 }
4415
4416 set_fill_number(set, set->ctx_size);
4417 return LY_SUCCESS;
4418}
4419
4420/**
4421 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4422 * with the node name without namespace from the argument or the context.
4423 *
4424 * @param[in] args Array of arguments.
4425 * @param[in] arg_count Count of elements in @p args.
4426 * @param[in,out] set Context and result set at the same time.
4427 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004428 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004429 */
4430static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004431xpath_local_name(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004432{
4433 struct lyxp_set_node *item;
Michal Vasko69730152020-10-09 16:30:07 +02004434
Michal Vasko03ff5a72019-09-11 13:49:33 +02004435 /* suppress unused variable warning */
4436 (void)options;
4437
4438 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004439 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004440 return LY_SUCCESS;
4441 }
4442
4443 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004444 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004445 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004446 "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004447 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004448 } else if (!args[0]->used) {
4449 set_fill_string(set, "", 0);
4450 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004451 }
4452
4453 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004454 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004455
4456 item = &args[0]->val.nodes[0];
4457 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004458 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004459 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004460 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004461 } else if (!set->used) {
4462 set_fill_string(set, "", 0);
4463 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004464 }
4465
4466 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004467 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004468
4469 item = &set->val.nodes[0];
4470 }
4471
4472 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004473 case LYXP_NODE_NONE:
4474 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004475 case LYXP_NODE_ROOT:
4476 case LYXP_NODE_ROOT_CONFIG:
4477 case LYXP_NODE_TEXT:
4478 set_fill_string(set, "", 0);
4479 break;
4480 case LYXP_NODE_ELEM:
4481 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4482 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004483 case LYXP_NODE_META:
4484 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004485 break;
4486 }
4487
4488 return LY_SUCCESS;
4489}
4490
4491/**
4492 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4493 * with the node name fully qualified (with namespace) from the argument or the context.
4494 *
4495 * @param[in] args Array of arguments.
4496 * @param[in] arg_count Count of elements in @p args.
4497 * @param[in,out] set Context and result set at the same time.
4498 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004499 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004500 */
4501static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004502xpath_name(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004503{
4504 struct lyxp_set_node *item;
Michal Vasko420cc252023-08-24 08:14:24 +02004505 const struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004506 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004507 const char *name = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004508
4509 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004510 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004511 return LY_SUCCESS;
4512 }
4513
4514 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004515 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004516 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004517 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004518 } else if (!args[0]->used) {
4519 set_fill_string(set, "", 0);
4520 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004521 }
4522
4523 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004524 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004525
4526 item = &args[0]->val.nodes[0];
4527 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004528 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004529 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004530 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004531 } else if (!set->used) {
4532 set_fill_string(set, "", 0);
4533 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004534 }
4535
4536 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004537 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004538
4539 item = &set->val.nodes[0];
4540 }
4541
4542 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004543 case LYXP_NODE_NONE:
4544 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004545 case LYXP_NODE_ROOT:
4546 case LYXP_NODE_ROOT_CONFIG:
4547 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004548 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004549 break;
4550 case LYXP_NODE_ELEM:
Michal Vasko420cc252023-08-24 08:14:24 +02004551 mod = lyd_node_module(item->node);
4552 name = LYD_NAME(item->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004553 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004554 case LYXP_NODE_META:
4555 mod = ((struct lyd_meta *)item->node)->annotation->module;
4556 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004557 break;
4558 }
4559
4560 if (mod && name) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004561 int rc = asprintf(&str, "%s:%s", ly_get_prefix(mod, set->format, set->prefix_data), name);
Michal Vasko26bbb272022-08-02 14:54:33 +02004562
Michal Vasko03ff5a72019-09-11 13:49:33 +02004563 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4564 set_fill_string(set, str, strlen(str));
4565 free(str);
4566 } else {
4567 set_fill_string(set, "", 0);
4568 }
4569
4570 return LY_SUCCESS;
4571}
4572
4573/**
4574 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4575 * with the namespace of the node from the argument or the context.
4576 *
4577 * @param[in] args Array of arguments.
4578 * @param[in] arg_count Count of elements in @p args.
4579 * @param[in,out] set Context and result set at the same time.
4580 * @param[in] options XPath options.
4581 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4582 */
4583static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004584xpath_namespace_uri(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004585{
4586 struct lyxp_set_node *item;
Michal Vasko420cc252023-08-24 08:14:24 +02004587 const struct lys_module *mod;
Michal Vasko69730152020-10-09 16:30:07 +02004588
Michal Vasko03ff5a72019-09-11 13:49:33 +02004589 /* suppress unused variable warning */
4590 (void)options;
4591
4592 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004593 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004594 return LY_SUCCESS;
4595 }
4596
4597 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004598 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004599 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko69730152020-10-09 16:30:07 +02004600 "namespace-uri(node-set?)");
Michal Vaskod3678892020-05-21 10:06:58 +02004601 return LY_EVALID;
4602 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004603 set_fill_string(set, "", 0);
4604 return LY_SUCCESS;
4605 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004606
4607 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004608 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004609
4610 item = &args[0]->val.nodes[0];
4611 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004612 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004613 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004614 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004615 } else if (!set->used) {
4616 set_fill_string(set, "", 0);
4617 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004618 }
4619
4620 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004621 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004622
4623 item = &set->val.nodes[0];
4624 }
4625
4626 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004627 case LYXP_NODE_NONE:
4628 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004629 case LYXP_NODE_ROOT:
4630 case LYXP_NODE_ROOT_CONFIG:
4631 case LYXP_NODE_TEXT:
4632 set_fill_string(set, "", 0);
4633 break;
4634 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004635 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004636 if (item->type == LYXP_NODE_ELEM) {
Michal Vasko420cc252023-08-24 08:14:24 +02004637 mod = lyd_node_module(item->node);
Michal Vasko9f96a052020-03-10 09:41:45 +01004638 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004639 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004640 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004641 }
4642
4643 set_fill_string(set, mod->ns, strlen(mod->ns));
4644 break;
4645 }
4646
4647 return LY_SUCCESS;
4648}
4649
4650/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02004651 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4652 * with normalized value (no leading, trailing, double white spaces) of the node
4653 * from the argument or the context.
4654 *
4655 * @param[in] args Array of arguments.
4656 * @param[in] arg_count Count of elements in @p args.
4657 * @param[in,out] set Context and result set at the same time.
4658 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004659 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004660 */
4661static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004662xpath_normalize_space(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004663{
Michal Vaskodd528af2022-08-08 14:35:07 +02004664 uint32_t i, new_used;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004665 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02004666 ly_bool have_spaces = 0, space_before = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004667 struct lysc_node_leaf *sleaf;
4668 LY_ERR rc = LY_SUCCESS;
4669
4670 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004671 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) &&
4672 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004673 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004674 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4675 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004676 } else if (!warn_is_string_type(sleaf->type)) {
4677 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004678 }
4679 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004680 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004681 return rc;
4682 }
4683
4684 if (arg_count) {
4685 set_fill_set(set, args[0]);
4686 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004687 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004688 LY_CHECK_RET(rc);
4689
4690 /* is there any normalization necessary? */
4691 for (i = 0; set->val.str[i]; ++i) {
4692 if (is_xmlws(set->val.str[i])) {
4693 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4694 have_spaces = 1;
4695 break;
4696 }
4697 space_before = 1;
4698 } else {
4699 space_before = 0;
4700 }
4701 }
4702
4703 /* yep, there is */
4704 if (have_spaces) {
4705 /* it's enough, at least one character will go, makes space for ending '\0' */
4706 new = malloc(strlen(set->val.str) * sizeof(char));
4707 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4708 new_used = 0;
4709
4710 space_before = 0;
4711 for (i = 0; set->val.str[i]; ++i) {
4712 if (is_xmlws(set->val.str[i])) {
4713 if ((i == 0) || space_before) {
4714 space_before = 1;
4715 continue;
4716 } else {
4717 space_before = 1;
4718 }
4719 } else {
4720 space_before = 0;
4721 }
4722
4723 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4724 ++new_used;
4725 }
4726
4727 /* at worst there is one trailing space now */
4728 if (new_used && is_xmlws(new[new_used - 1])) {
4729 --new_used;
4730 }
4731
4732 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4733 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4734 new[new_used] = '\0';
4735
4736 free(set->val.str);
4737 set->val.str = new;
4738 }
4739
4740 return LY_SUCCESS;
4741}
4742
4743/**
4744 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4745 * with the argument converted to boolean and logically inverted.
4746 *
4747 * @param[in] args Array of arguments.
4748 * @param[in] arg_count Count of elements in @p args.
4749 * @param[in,out] set Context and result set at the same time.
4750 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004751 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004752 */
4753static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004754xpath_not(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004755{
4756 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004757 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004758 return LY_SUCCESS;
4759 }
4760
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004761 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004762 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004763 set_fill_boolean(set, 0);
4764 } else {
4765 set_fill_boolean(set, 1);
4766 }
4767
4768 return LY_SUCCESS;
4769}
4770
4771/**
4772 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4773 * with the number representation of either the argument or the context.
4774 *
4775 * @param[in] args Array of arguments.
4776 * @param[in] arg_count Count of elements in @p args.
4777 * @param[in,out] set Context and result set at the same time.
4778 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004779 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004780 */
4781static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004782xpath_number(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004783{
4784 LY_ERR rc;
4785
4786 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004787 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004788 return LY_SUCCESS;
4789 }
4790
4791 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004792 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004793 LY_CHECK_RET(rc);
4794 set_fill_set(set, args[0]);
4795 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004796 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004797 LY_CHECK_RET(rc);
4798 }
4799
4800 return LY_SUCCESS;
4801}
4802
4803/**
4804 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4805 * with the context position.
4806 *
4807 * @param[in] args Array of arguments.
4808 * @param[in] arg_count Count of elements in @p args.
4809 * @param[in,out] set Context and result set at the same time.
4810 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004811 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004812 */
4813static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004814xpath_position(struct lyxp_set **UNUSED(args), uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004815{
4816 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004817 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004818 return LY_SUCCESS;
4819 }
4820
Michal Vasko03ff5a72019-09-11 13:49:33 +02004821 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004822 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004823 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004824 } else if (!set->used) {
4825 set_fill_number(set, 0);
4826 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004827 }
4828
4829 set_fill_number(set, set->ctx_pos);
4830
4831 /* UNUSED in 'Release' build type */
4832 (void)options;
4833 return LY_SUCCESS;
4834}
4835
4836/**
4837 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4838 * depending on whether the second argument regex matches the first argument string. For details refer to
4839 * YANG 1.1 RFC section 10.2.1.
4840 *
4841 * @param[in] args Array of arguments.
4842 * @param[in] arg_count Count of elements in @p args.
4843 * @param[in,out] set Context and result set at the same time.
4844 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004845 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004846 */
4847static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004848xpath_re_match(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004849{
4850 struct lysc_pattern **patterns = NULL, **pattern;
4851 struct lysc_node_leaf *sleaf;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004852 LY_ERR rc = LY_SUCCESS;
4853 struct ly_err_item *err;
4854
4855 if (options & LYXP_SCNODE_ALL) {
4856 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4857 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4858 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 +02004859 } else if (!warn_is_string_type(sleaf->type)) {
4860 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004861 }
4862 }
4863
4864 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4865 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4866 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 +02004867 } else if (!warn_is_string_type(sleaf->type)) {
4868 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004869 }
4870 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004871 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004872 return rc;
4873 }
4874
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004875 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004876 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004877 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004878 LY_CHECK_RET(rc);
4879
4880 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
Radek Iša45802b52021-02-09 09:21:58 +01004881 *pattern = calloc(1, sizeof **pattern);
Radek Krejciddace2c2021-01-08 11:30:56 +01004882 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01004883 rc = lys_compile_type_pattern_check(set->ctx, args[1]->val.str, &(*pattern)->code);
Michal Vasko4a7d4d62021-12-13 17:05:06 +01004884 if (set->cur_node) {
4885 LOG_LOCBACK(0, 1, 0, 0);
4886 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004887 if (rc != LY_SUCCESS) {
4888 LY_ARRAY_FREE(patterns);
4889 return rc;
4890 }
4891
Radek Krejci0b013302021-03-29 15:22:32 +02004892 rc = lyplg_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004893 pcre2_code_free((*pattern)->code);
4894 free(*pattern);
4895 LY_ARRAY_FREE(patterns);
4896 if (rc && (rc != LY_EVALID)) {
Michal Vasko177d0ed2020-11-23 16:43:03 +01004897 ly_err_print(set->ctx, err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004898 ly_err_free(err);
4899 return rc;
4900 }
4901
4902 if (rc == LY_EVALID) {
4903 ly_err_free(err);
4904 set_fill_boolean(set, 0);
4905 } else {
4906 set_fill_boolean(set, 1);
4907 }
4908
4909 return LY_SUCCESS;
4910}
4911
4912/**
4913 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4914 * with the rounded first argument. For details refer to
4915 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4916 *
4917 * @param[in] args Array of arguments.
4918 * @param[in] arg_count Count of elements in @p args.
4919 * @param[in,out] set Context and result set at the same time.
4920 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004921 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004922 */
4923static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004924xpath_round(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004925{
4926 struct lysc_node_leaf *sleaf;
4927 LY_ERR rc = LY_SUCCESS;
4928
4929 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004930 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004931 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004932 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4933 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4934 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4935 sleaf->name);
4936 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4937 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
4938 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004939 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004940 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004941 return rc;
4942 }
4943
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004944 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004945 LY_CHECK_RET(rc);
4946
4947 /* cover only the cases where floor can't be used */
4948 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4949 set_fill_number(set, -0.0f);
4950 } else {
4951 args[0]->val.num += 0.5;
4952 rc = xpath_floor(args, 1, args[0], options);
4953 LY_CHECK_RET(rc);
4954 set_fill_number(set, args[0]->val.num);
4955 }
4956
4957 return LY_SUCCESS;
4958}
4959
4960/**
4961 * @brief Execute the XPath starts-with(string, string) function.
4962 * Returns LYXP_SET_BOOLEAN whether the second argument is
4963 * the prefix of the first or not.
4964 *
4965 * @param[in] args Array of arguments.
4966 * @param[in] arg_count Count of elements in @p args.
4967 * @param[in,out] set Context and result set at the same time.
4968 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004969 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004970 */
4971static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02004972xpath_starts_with(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004973{
4974 struct lysc_node_leaf *sleaf;
4975 LY_ERR rc = LY_SUCCESS;
4976
4977 if (options & LYXP_SCNODE_ALL) {
4978 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4979 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4980 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 +02004981 } else if (!warn_is_string_type(sleaf->type)) {
4982 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004983 }
4984 }
4985
4986 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4987 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4988 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 +02004989 } else if (!warn_is_string_type(sleaf->type)) {
4990 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004991 }
4992 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004993 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004994 return rc;
4995 }
4996
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004997 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004998 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004999 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005000 LY_CHECK_RET(rc);
5001
5002 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
5003 set_fill_boolean(set, 0);
5004 } else {
5005 set_fill_boolean(set, 1);
5006 }
5007
5008 return LY_SUCCESS;
5009}
5010
5011/**
5012 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
5013 * with the string representation of either the argument or the context.
5014 *
5015 * @param[in] args Array of arguments.
5016 * @param[in] arg_count Count of elements in @p args.
5017 * @param[in,out] set Context and result set at the same time.
5018 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005019 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005020 */
5021static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02005022xpath_string(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005023{
5024 LY_ERR rc;
5025
5026 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02005027 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005028 return LY_SUCCESS;
5029 }
5030
5031 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005032 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005033 LY_CHECK_RET(rc);
5034 set_fill_set(set, args[0]);
5035 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005036 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005037 LY_CHECK_RET(rc);
5038 }
5039
5040 return LY_SUCCESS;
5041}
5042
5043/**
5044 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
5045 * with the length of the string in either the argument or the context.
5046 *
5047 * @param[in] args Array of arguments.
5048 * @param[in] arg_count Count of elements in @p args.
5049 * @param[in,out] set Context and result set at the same time.
5050 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005051 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005052 */
5053static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02005054xpath_string_length(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005055{
5056 struct lysc_node_leaf *sleaf;
5057 LY_ERR rc = LY_SUCCESS;
5058
5059 if (options & LYXP_SCNODE_ALL) {
5060 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5061 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5062 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 +02005063 } else if (!warn_is_string_type(sleaf->type)) {
5064 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005065 }
5066 }
5067 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
5068 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5069 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 +02005070 } else if (!warn_is_string_type(sleaf->type)) {
5071 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005072 }
5073 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005074 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005075 return rc;
5076 }
5077
5078 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005079 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005080 LY_CHECK_RET(rc);
5081 set_fill_number(set, strlen(args[0]->val.str));
5082 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005083 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005084 LY_CHECK_RET(rc);
5085 set_fill_number(set, strlen(set->val.str));
5086 }
5087
5088 return LY_SUCCESS;
5089}
5090
5091/**
5092 * @brief Execute the XPath substring(string, number, number?) function.
5093 * Returns LYXP_SET_STRING substring of the first argument starting
5094 * on the second argument index ending on the third argument index,
5095 * indexed from 1. For exact definition refer to
5096 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
5097 *
5098 * @param[in] args Array of arguments.
5099 * @param[in] arg_count Count of elements in @p args.
5100 * @param[in,out] set Context and result set at the same time.
5101 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005102 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005103 */
5104static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02005105xpath_substring(struct lyxp_set **args, uint32_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005106{
Michal Vasko6db996e2022-07-28 10:28:04 +02005107 int64_t start;
5108 int32_t len;
Michal Vaskodd528af2022-08-08 14:35:07 +02005109 uint32_t str_start, str_len, pos;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005110 struct lysc_node_leaf *sleaf;
5111 LY_ERR rc = LY_SUCCESS;
5112
5113 if (options & LYXP_SCNODE_ALL) {
5114 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5115 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5116 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 +02005117 } else if (!warn_is_string_type(sleaf->type)) {
5118 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005119 }
5120 }
5121
5122 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5123 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5124 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 +02005125 } else if (!warn_is_numeric_type(sleaf->type)) {
5126 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005127 }
5128 }
5129
Michal Vasko69730152020-10-09 16:30:07 +02005130 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET) &&
5131 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005132 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5133 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 +02005134 } else if (!warn_is_numeric_type(sleaf->type)) {
5135 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005136 }
5137 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005138 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005139 return rc;
5140 }
5141
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005142 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005143 LY_CHECK_RET(rc);
5144
5145 /* start */
5146 if (xpath_round(&args[1], 1, args[1], options)) {
5147 return -1;
5148 }
5149 if (isfinite(args[1]->val.num)) {
5150 start = args[1]->val.num - 1;
5151 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02005152 start = INT32_MIN;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005153 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02005154 start = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005155 }
5156
5157 /* len */
5158 if (arg_count == 3) {
5159 rc = xpath_round(&args[2], 1, args[2], options);
5160 LY_CHECK_RET(rc);
Radek Krejci1deb5be2020-08-26 16:43:36 +02005161 if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005162 len = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005163 } else if (isfinite(args[2]->val.num)) {
5164 len = args[2]->val.num;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005165 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02005166 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005167 }
5168 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02005169 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005170 }
5171
5172 /* find matching character positions */
5173 str_start = 0;
5174 str_len = 0;
5175 for (pos = 0; args[0]->val.str[pos]; ++pos) {
5176 if (pos < start) {
5177 ++str_start;
5178 } else if (pos < start + len) {
5179 ++str_len;
5180 } else {
5181 break;
5182 }
5183 }
5184
5185 set_fill_string(set, args[0]->val.str + str_start, str_len);
5186 return LY_SUCCESS;
5187}
5188
5189/**
5190 * @brief Execute the XPath substring-after(string, string) function.
5191 * Returns LYXP_SET_STRING with the string succeeding the occurance
5192 * of the second argument in the first or an empty string.
5193 *
5194 * @param[in] args Array of arguments.
5195 * @param[in] arg_count Count of elements in @p args.
5196 * @param[in,out] set Context and result set at the same time.
5197 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005198 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005199 */
5200static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02005201xpath_substring_after(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005202{
5203 char *ptr;
5204 struct lysc_node_leaf *sleaf;
5205 LY_ERR rc = LY_SUCCESS;
5206
5207 if (options & LYXP_SCNODE_ALL) {
5208 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5209 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5210 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 +02005211 } else if (!warn_is_string_type(sleaf->type)) {
5212 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005213 }
5214 }
5215
5216 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5217 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5218 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 +02005219 } else if (!warn_is_string_type(sleaf->type)) {
5220 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005221 }
5222 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005223 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005224 return rc;
5225 }
5226
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005227 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005228 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005229 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005230 LY_CHECK_RET(rc);
5231
5232 ptr = strstr(args[0]->val.str, args[1]->val.str);
5233 if (ptr) {
5234 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
5235 } else {
5236 set_fill_string(set, "", 0);
5237 }
5238
5239 return LY_SUCCESS;
5240}
5241
5242/**
5243 * @brief Execute the XPath substring-before(string, string) function.
5244 * Returns LYXP_SET_STRING with the string preceding the occurance
5245 * of the second argument in the first or an empty string.
5246 *
5247 * @param[in] args Array of arguments.
5248 * @param[in] arg_count Count of elements in @p args.
5249 * @param[in,out] set Context and result set at the same time.
5250 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005251 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005252 */
5253static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02005254xpath_substring_before(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005255{
5256 char *ptr;
5257 struct lysc_node_leaf *sleaf;
5258 LY_ERR rc = LY_SUCCESS;
5259
5260 if (options & LYXP_SCNODE_ALL) {
5261 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5262 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5263 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 +02005264 } else if (!warn_is_string_type(sleaf->type)) {
5265 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005266 }
5267 }
5268
5269 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5270 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5271 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 +02005272 } else if (!warn_is_string_type(sleaf->type)) {
5273 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005274 }
5275 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005276 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005277 return rc;
5278 }
5279
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005280 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005281 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005282 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005283 LY_CHECK_RET(rc);
5284
5285 ptr = strstr(args[0]->val.str, args[1]->val.str);
5286 if (ptr) {
5287 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
5288 } else {
5289 set_fill_string(set, "", 0);
5290 }
5291
5292 return LY_SUCCESS;
5293}
5294
5295/**
5296 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5297 * with the sum of all the nodes in the context.
5298 *
5299 * @param[in] args Array of arguments.
5300 * @param[in] arg_count Count of elements in @p args.
5301 * @param[in,out] set Context and result set at the same time.
5302 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005303 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005304 */
5305static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02005306xpath_sum(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005307{
5308 long double num;
5309 char *str;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01005310 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005311 struct lyxp_set set_item;
5312 struct lysc_node_leaf *sleaf;
5313 LY_ERR rc = LY_SUCCESS;
5314
5315 if (options & LYXP_SCNODE_ALL) {
5316 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5317 for (i = 0; i < args[0]->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005318 if (args[0]->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005319 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5320 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5321 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
Michal Vasko69730152020-10-09 16:30:07 +02005322 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005323 } else if (!warn_is_numeric_type(sleaf->type)) {
5324 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005325 }
5326 }
5327 }
5328 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005329 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005330 return rc;
5331 }
5332
5333 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005334
5335 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005336 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02005337 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005338 } else if (!args[0]->used) {
5339 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005340 }
5341
Michal Vasko5c4e5892019-11-14 12:31:38 +01005342 set_init(&set_item, set);
5343
Michal Vasko03ff5a72019-09-11 13:49:33 +02005344 set_item.type = LYXP_SET_NODE_SET;
Michal Vasko41decbf2021-11-02 11:50:21 +01005345 set_item.val.nodes = calloc(1, sizeof *set_item.val.nodes);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005346 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5347
5348 set_item.used = 1;
5349 set_item.size = 1;
5350
5351 for (i = 0; i < args[0]->used; ++i) {
5352 set_item.val.nodes[0] = args[0]->val.nodes[i];
5353
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005354 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005355 LY_CHECK_RET(rc);
5356 num = cast_string_to_number(str);
5357 free(str);
5358 set->val.num += num;
5359 }
5360
5361 free(set_item.val.nodes);
5362
5363 return LY_SUCCESS;
5364}
5365
5366/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005367 * @brief Execute the XPath translate(string, string, string) function.
5368 * Returns LYXP_SET_STRING with the first argument with the characters
5369 * from the second argument replaced by those on the corresponding
5370 * positions in the third argument.
5371 *
5372 * @param[in] args Array of arguments.
5373 * @param[in] arg_count Count of elements in @p args.
5374 * @param[in,out] set Context and result set at the same time.
5375 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005376 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005377 */
5378static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02005379xpath_translate(struct lyxp_set **args, uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005380{
Michal Vaskodd528af2022-08-08 14:35:07 +02005381 uint32_t i, j, new_used;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005382 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02005383 ly_bool have_removed;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005384 struct lysc_node_leaf *sleaf;
5385 LY_ERR rc = LY_SUCCESS;
5386
5387 if (options & LYXP_SCNODE_ALL) {
5388 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5389 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5390 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 +02005391 } else if (!warn_is_string_type(sleaf->type)) {
5392 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005393 }
5394 }
5395
5396 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5397 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5398 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 +02005399 } else if (!warn_is_string_type(sleaf->type)) {
5400 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005401 }
5402 }
5403
5404 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5405 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5406 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 +02005407 } else if (!warn_is_string_type(sleaf->type)) {
5408 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005409 }
5410 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005411 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005412 return rc;
5413 }
5414
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005415 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005416 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005417 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005418 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005419 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005420 LY_CHECK_RET(rc);
5421
5422 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5423 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5424 new_used = 0;
5425
5426 have_removed = 0;
5427 for (i = 0; args[0]->val.str[i]; ++i) {
Radek Krejci857189e2020-09-01 13:26:36 +02005428 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005429
5430 for (j = 0; args[1]->val.str[j]; ++j) {
5431 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5432 /* removing this char */
5433 if (j >= strlen(args[2]->val.str)) {
5434 have_removed = 1;
5435 found = 1;
5436 break;
5437 }
5438 /* replacing this char */
5439 new[new_used] = args[2]->val.str[j];
5440 ++new_used;
5441 found = 1;
5442 break;
5443 }
5444 }
5445
5446 /* copying this char */
5447 if (!found) {
5448 new[new_used] = args[0]->val.str[i];
5449 ++new_used;
5450 }
5451 }
5452
5453 if (have_removed) {
5454 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5455 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5456 }
5457 new[new_used] = '\0';
5458
Michal Vaskod3678892020-05-21 10:06:58 +02005459 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005460 set->type = LYXP_SET_STRING;
5461 set->val.str = new;
5462
5463 return LY_SUCCESS;
5464}
5465
5466/**
5467 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5468 * with true value.
5469 *
5470 * @param[in] args Array of arguments.
5471 * @param[in] arg_count Count of elements in @p args.
5472 * @param[in,out] set Context and result set at the same time.
5473 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005474 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005475 */
5476static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02005477xpath_true(struct lyxp_set **UNUSED(args), uint32_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005478{
5479 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02005480 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005481 return LY_SUCCESS;
5482 }
5483
5484 set_fill_boolean(set, 1);
5485 return LY_SUCCESS;
5486}
5487
Michal Vasko03ff5a72019-09-11 13:49:33 +02005488/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02005489 * @brief Execute the XPath node() processing instruction (node type). Returns LYXP_SET_NODE_SET
5490 * with only nodes from the context.
5491 *
5492 * @param[in,out] set Context and result set at the same time.
5493 * @param[in] axis Axis to search on.
5494 * @param[in] options XPath options.
5495 * @return LY_ERR
5496 */
5497static LY_ERR
5498xpath_pi_node(struct lyxp_set *set, enum lyxp_axis axis, uint32_t options)
5499{
5500 if (options & LYXP_SCNODE_ALL) {
5501 return moveto_scnode(set, NULL, NULL, axis, options);
5502 }
5503
5504 if (set->type != LYXP_SET_NODE_SET) {
5505 lyxp_set_free_content(set);
5506 return LY_SUCCESS;
5507 }
5508
5509 /* just like moving to a node with no restrictions */
5510 return moveto_node(set, NULL, NULL, axis, options);
5511}
5512
5513/**
5514 * @brief Execute the XPath text() processing instruction (node type). Returns LYXP_SET_NODE_SET
5515 * with the text content of the nodes in the context.
5516 *
5517 * @param[in,out] set Context and result set at the same time.
5518 * @param[in] axis Axis to search on.
5519 * @param[in] options XPath options.
5520 * @return LY_ERR
5521 */
5522static LY_ERR
5523xpath_pi_text(struct lyxp_set *set, enum lyxp_axis axis, uint32_t options)
5524{
5525 uint32_t i;
5526
5527 if (options & LYXP_SCNODE_ALL) {
5528 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
5529 return LY_SUCCESS;
5530 }
5531
5532 if (set->type != LYXP_SET_NODE_SET) {
5533 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
5534 return LY_EVALID;
5535 }
5536
5537 if (axis != LYXP_AXIS_CHILD) {
5538 /* even following and preceding axescan return text nodes, but whatever */
5539 lyxp_set_free_content(set);
5540 return LY_SUCCESS;
5541 }
5542
5543 for (i = 0; i < set->used; ++i) {
5544 switch (set->val.nodes[i].type) {
5545 case LYXP_NODE_NONE:
5546 LOGINT_RET(set->ctx);
5547 case LYXP_NODE_ELEM:
5548 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5549 set->val.nodes[i].type = LYXP_NODE_TEXT;
5550 break;
5551 }
5552 /* fall through */
5553 case LYXP_NODE_ROOT:
5554 case LYXP_NODE_ROOT_CONFIG:
5555 case LYXP_NODE_TEXT:
5556 case LYXP_NODE_META:
5557 set_remove_node_none(set, i);
5558 break;
5559 }
5560 }
5561 set_remove_nodes_none(set);
5562
5563 return LY_SUCCESS;
5564}
5565
5566/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005567 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005568 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005569 * XPath @p set is expected to be a (sc)node set!
5570 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005571 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5572 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005573 * @param[in] set Set with general XPath context.
5574 * @param[in] ctx_scnode Context node to inherit module for unprefixed node for ::LY_PREF_JSON.
Michal Vasko6346ece2019-09-24 13:12:53 +02005575 * @param[out] moveto_mod Expected module of a matching node.
5576 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005577 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005578static LY_ERR
Michal Vaskofe1af042022-07-29 14:58:59 +02005579moveto_resolve_model(const char **qname, uint32_t *qname_len, const struct lyxp_set *set,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005580 const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005581{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005582 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005583 const char *ptr;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005584 size_t pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005585
Michal Vasko2104e9f2020-03-06 08:23:25 +01005586 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5587
Michal Vasko6346ece2019-09-24 13:12:53 +02005588 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5589 /* specific module */
5590 pref_len = ptr - *qname;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005591 mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, set->prefix_data);
Michal Vasko6346ece2019-09-24 13:12:53 +02005592
Michal Vasko004d3152020-06-11 19:59:22 +02005593 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005594 if (!mod || !mod->implemented) {
Michal Vasko7b3a00e2023-08-09 11:58:03 +02005595 LOGVAL(set->ctx, LY_VCODE_XP_INMOD, (int)pref_len, *qname);
Michal Vasko6346ece2019-09-24 13:12:53 +02005596 return LY_EVALID;
5597 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005598
Michal Vasko6346ece2019-09-24 13:12:53 +02005599 *qname += pref_len + 1;
5600 *qname_len -= pref_len + 1;
5601 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5602 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005603 mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005604 } else {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005605 switch (set->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02005606 case LY_VALUE_SCHEMA:
5607 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005608 /* current module */
5609 mod = set->cur_mod;
5610 break;
Radek Krejci224d4b42021-04-23 13:54:59 +02005611 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +02005612 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +02005613 case LY_VALUE_LYB:
Michal Vaskoddd76592022-01-17 13:34:48 +01005614 case LY_VALUE_STR_NS:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005615 /* inherit parent (context node) module */
5616 if (ctx_scnode) {
5617 mod = ctx_scnode->module;
5618 } else {
5619 mod = NULL;
5620 }
5621 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02005622 case LY_VALUE_XML:
Michal Vasko52143d12021-04-14 15:36:39 +02005623 /* all nodes need to be prefixed */
5624 LOGVAL(set->ctx, LYVE_DATA, "Non-prefixed node \"%.*s\" in XML xpath found.", *qname_len, *qname);
5625 return LY_EVALID;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005626 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005627 }
5628
Michal Vasko6346ece2019-09-24 13:12:53 +02005629 *moveto_mod = mod;
5630 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005631}
5632
5633/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005634 * @brief Move context @p set to the root. Handles absolute path.
5635 * Result is LYXP_SET_NODE_SET.
5636 *
5637 * @param[in,out] set Set to use.
5638 * @param[in] options Xpath options.
Michal Vaskob0099a92020-08-31 14:55:23 +02005639 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005640 */
Michal Vaskob0099a92020-08-31 14:55:23 +02005641static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005642moveto_root(struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005643{
aPiecek8b0cc152021-05-31 16:40:31 +02005644 assert(!(options & LYXP_SKIP_EXPR));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005645
5646 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02005647 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoe4a6d012023-05-22 14:34:52 +02005648 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, LYXP_AXIS_SELF, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005649 } else {
Michal Vaskoef71b392023-08-16 09:45:23 +02005650 lyxp_set_free_content(set);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005651 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko306e2832022-07-25 09:15:17 +02005652 set->non_child_axis = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005653 }
Michal Vaskob0099a92020-08-31 14:55:23 +02005654
5655 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005656}
5657
5658/**
5659 * @brief Check @p node as a part of NameTest processing.
5660 *
5661 * @param[in] node Node to check.
Michal Vasko49fec8e2022-05-24 10:28:33 +02005662 * @param[in] node_type Node type of @p node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005663 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005664 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005665 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vaskocdad7122020-11-09 21:04:44 +01005666 * @param[in] options XPath options.
Michal Vasko6346ece2019-09-24 13:12:53 +02005667 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
Michal Vaskocd2c88a2022-06-07 10:54:34 +02005668 * LY_EINVAL if neither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005669 */
5670static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02005671moveto_node_check(const struct lyd_node *node, enum lyxp_node_type node_type, const struct lyxp_set *set,
5672 const char *node_name, const struct lys_module *moveto_mod, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005673{
Michal Vaskofbd0da42023-08-17 14:57:44 +02005674 const struct lysc_node *schema;
5675
Michal Vasko49fec8e2022-05-24 10:28:33 +02005676 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5677 assert(node_type == set->root_type);
5678
5679 if (node_name || moveto_mod) {
5680 /* root will not match a specific node */
5681 return LY_ENOT;
5682 }
5683 return LY_SUCCESS;
5684 } else if (node_type != LYXP_NODE_ELEM) {
5685 /* other types will not match */
5686 return LY_ENOT;
5687 }
5688
Michal Vaskofbd0da42023-08-17 14:57:44 +02005689 /* get schema node even of an opaque node */
5690 schema = lyd_node_schema(node);
5691 if (!schema) {
5692 /* unknown opaque node never matches */
Michal Vaskodca9f122021-07-16 13:56:22 +02005693 return LY_ENOT;
5694 }
5695
Michal Vasko03ff5a72019-09-11 13:49:33 +02005696 /* module check */
Michal Vasko19089f02022-06-07 11:02:11 +02005697 if (moveto_mod) {
Michal Vaskofbd0da42023-08-17 14:57:44 +02005698 if ((set->ctx == LYD_CTX(node)) && (schema->module != moveto_mod)) {
Michal Vasko19089f02022-06-07 11:02:11 +02005699 return LY_ENOT;
Michal Vaskofbd0da42023-08-17 14:57:44 +02005700 } else if ((set->ctx != LYD_CTX(node)) && strcmp(schema->module->name, moveto_mod->name)) {
Michal Vasko19089f02022-06-07 11:02:11 +02005701 return LY_ENOT;
5702 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005703 }
5704
Michal Vasko5c4e5892019-11-14 12:31:38 +01005705 /* context check */
Michal Vaskofbd0da42023-08-17 14:57:44 +02005706 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005707 return LY_EINVAL;
Michal Vaskofbd0da42023-08-17 14:57:44 +02005708 } else if (set->context_op && (schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (schema != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005709 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005710 }
5711
5712 /* name check */
Michal Vasko19089f02022-06-07 11:02:11 +02005713 if (node_name) {
Michal Vaskofbd0da42023-08-17 14:57:44 +02005714 if ((set->ctx == LYD_CTX(node)) && (schema->name != node_name)) {
Michal Vasko19089f02022-06-07 11:02:11 +02005715 return LY_ENOT;
Michal Vaskofbd0da42023-08-17 14:57:44 +02005716 } else if ((set->ctx != LYD_CTX(node)) && strcmp(schema->name, node_name)) {
Michal Vasko19089f02022-06-07 11:02:11 +02005717 return LY_ENOT;
5718 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005719 }
5720
Michal Vasko6d657122022-10-19 14:38:35 +02005721 /* when check, accept the context node because it should only be the path ".", we have checked the when is valid before */
Michal Vaskofbd0da42023-08-17 14:57:44 +02005722 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(schema) && !(node->flags & LYD_WHEN_TRUE) &&
Michal Vasko6d657122022-10-19 14:38:35 +02005723 (node != set->cur_node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005724 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005725 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005726
5727 /* match */
5728 return LY_SUCCESS;
5729}
5730
5731/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02005732 * @brief Get the next node in a forward DFS.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005733 *
Michal Vasko49fec8e2022-05-24 10:28:33 +02005734 * @param[in] iter Last returned node.
5735 * @param[in] stop Node to stop the search on and not return.
5736 * @return Next node, NULL if there are no more.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005737 */
Michal Vasko49fec8e2022-05-24 10:28:33 +02005738static const struct lyd_node *
5739moveto_axis_node_next_dfs_forward(const struct lyd_node *iter, const struct lyd_node *stop)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005740{
Michal Vasko49fec8e2022-05-24 10:28:33 +02005741 const struct lyd_node *next = NULL;
5742
5743 /* 1) child */
5744 next = lyd_child(iter);
5745 if (!next) {
5746 if (iter == stop) {
5747 /* reached stop, no more descendants */
5748 return NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005749 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02005750 /* 2) child next sibling */
5751 next = iter->next;
5752 }
5753 while (!next) {
5754 iter = lyd_parent(iter);
5755 if ((!stop && !iter) || (stop && (lyd_parent(iter) == lyd_parent(stop)))) {
5756 return NULL;
5757 }
5758 next = iter->next;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005759 }
5760
Michal Vasko49fec8e2022-05-24 10:28:33 +02005761 return next;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005762}
5763
5764/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02005765 * @brief Get the next node in a backward DFS.
5766 *
5767 * @param[in] iter Last returned node.
5768 * @param[in] stop Node to stop the search on and not return.
5769 * @return Next node, NULL if there are no more.
5770 */
5771static const struct lyd_node *
5772moveto_axis_node_next_dfs_backward(const struct lyd_node *iter, const struct lyd_node *stop)
5773{
5774 const struct lyd_node *next = NULL;
5775
5776 /* 1) previous sibling innermost last child */
5777 next = iter->prev->next ? iter->prev : NULL;
5778 while (next && lyd_child(next)) {
5779 next = lyd_child(next);
5780 next = next->prev;
5781 }
5782
5783 if (!next) {
5784 /* 2) parent */
5785 iter = lyd_parent(iter);
5786 if ((!stop && !iter) || (stop && (lyd_parent(iter) == lyd_parent(stop)))) {
5787 return NULL;
5788 }
5789 next = iter;
5790 }
5791
5792 return next;
5793}
5794
5795/**
5796 * @brief Get the first node on an axis for a context node.
5797 *
5798 * @param[in,out] iter NULL, updated to the next node.
5799 * @param[in,out] iter_type Node type 0 of @p iter, updated to the node type of the next node.
5800 * @param[in] node Context node.
5801 * @param[in] node_type Type of @p node.
5802 * @param[in] axis Axis to use.
5803 * @param[in] set XPath set with the general context.
5804 * @return LY_SUCCESS on success.
5805 * @return LY_ENOTFOUND if no next node found.
5806 */
5807static LY_ERR
5808moveto_axis_node_next_first(const struct lyd_node **iter, enum lyxp_node_type *iter_type, const struct lyd_node *node,
5809 enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set)
5810{
5811 const struct lyd_node *next = NULL;
5812 enum lyxp_node_type next_type = 0;
5813
5814 assert(!*iter);
5815 assert(!*iter_type);
5816
5817 switch (axis) {
5818 case LYXP_AXIS_ANCESTOR_OR_SELF:
5819 case LYXP_AXIS_DESCENDANT_OR_SELF:
5820 case LYXP_AXIS_SELF:
5821 /* return the context node */
5822 next = node;
5823 next_type = node_type;
5824 break;
5825
5826 case LYXP_AXIS_ANCESTOR:
5827 case LYXP_AXIS_PARENT:
5828 if (node_type == LYXP_NODE_ELEM) {
5829 next = lyd_parent(node);
5830 next_type = next ? LYXP_NODE_ELEM : set->root_type;
5831 } else if (node_type == LYXP_NODE_TEXT) {
5832 next = node;
5833 next_type = LYXP_NODE_ELEM;
5834 } else if (node_type == LYXP_NODE_META) {
5835 next = ((struct lyd_meta *)node)->parent;
5836 next_type = LYXP_NODE_ELEM;
5837 } /* else root does not have a parent */
5838 break;
5839
5840 case LYXP_AXIS_CHILD:
5841 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5842 assert(!node);
5843
5844 /* search in all the trees */
5845 next = set->tree;
5846 next_type = next ? LYXP_NODE_ELEM : 0;
5847 } else {
5848 /* search in children */
5849 next = lyd_child(node);
5850 next_type = next ? LYXP_NODE_ELEM : 0;
5851 }
5852 break;
5853
5854 case LYXP_AXIS_DESCENDANT:
5855 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5856 /* top-level nodes */
5857 next = set->tree;
5858 next_type = LYXP_NODE_ELEM;
5859 } else if (node_type == LYXP_NODE_ELEM) {
5860 /* start from the context node */
5861 next = moveto_axis_node_next_dfs_forward(node, node);
5862 next_type = next ? LYXP_NODE_ELEM : 0;
5863 } /* else no children */
5864 break;
5865
5866 case LYXP_AXIS_FOLLOWING:
5867 case LYXP_AXIS_FOLLOWING_SIBLING:
5868 if (node_type == LYXP_NODE_ELEM) {
5869 /* first next sibling */
5870 next = node->next;
5871 next_type = next ? LYXP_NODE_ELEM : 0;
5872 } /* else no sibling */
5873 break;
5874
5875 case LYXP_AXIS_PRECEDING:
5876 if ((node_type == LYXP_NODE_ELEM) && node->prev->next) {
5877 /* skip ancestors */
5878 next = moveto_axis_node_next_dfs_backward(node, NULL);
5879 assert(next);
5880 next_type = LYXP_NODE_ELEM;
5881 } /* else no sibling */
5882 break;
5883
5884 case LYXP_AXIS_PRECEDING_SIBLING:
5885 if (node_type == LYXP_NODE_ELEM) {
5886 /* first previous sibling */
5887 next = node->prev->next ? node->prev : NULL;
5888 next_type = next ? LYXP_NODE_ELEM : 0;
5889 } /* else no sibling */
5890 break;
5891
5892 case LYXP_AXIS_ATTRIBUTE:
5893 /* handled specially */
5894 assert(0);
5895 LOGINT(set->ctx);
5896 break;
5897 }
5898
5899 *iter = next;
5900 *iter_type = next_type;
5901 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
5902}
5903
5904/**
5905 * @brief Iterate over all nodes on an axis for a context node.
5906 *
5907 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
5908 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
5909 * @param[in] node Context node.
5910 * @param[in] node_type Type of @p node.
5911 * @param[in] axis Axis to use.
5912 * @param[in] set XPath set with the general context.
5913 * @return LY_SUCCESS on success.
5914 * @return LY_ENOTFOUND if no next node found.
5915 */
5916static LY_ERR
5917moveto_axis_node_next(const struct lyd_node **iter, enum lyxp_node_type *iter_type, const struct lyd_node *node,
5918 enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set)
5919{
5920 const struct lyd_node *next = NULL;
5921 enum lyxp_node_type next_type = 0;
5922
5923 if (!*iter_type) {
5924 /* first returned node */
5925 return moveto_axis_node_next_first(iter, iter_type, node, node_type, axis, set);
5926 }
5927
5928 switch (axis) {
5929 case LYXP_AXIS_ANCESTOR_OR_SELF:
5930 if ((*iter == node) && (*iter_type == node_type)) {
5931 /* fake first ancestor, we returned self before */
5932 *iter = NULL;
5933 *iter_type = 0;
5934 return moveto_axis_node_next_first(iter, iter_type, node, node_type, LYXP_AXIS_ANCESTOR, set);
5935 } /* else continue ancestor */
5936
5937 /* fallthrough */
5938 case LYXP_AXIS_ANCESTOR:
5939 if (*iter_type == LYXP_NODE_ELEM) {
5940 /* iter parent */
5941 next = lyd_parent(*iter);
5942 next_type = next ? LYXP_NODE_ELEM : set->root_type;
5943 } /* else root, no ancestors */
5944 break;
5945
5946 case LYXP_AXIS_CHILD:
5947 assert(*iter_type == LYXP_NODE_ELEM);
5948
5949 /* next sibling (child) */
5950 next = (*iter)->next;
5951 next_type = next ? LYXP_NODE_ELEM : 0;
5952 break;
5953
5954 case LYXP_AXIS_DESCENDANT_OR_SELF:
5955 if ((*iter == node) && (*iter_type == node_type)) {
5956 /* fake first descendant, we returned self before */
5957 *iter = NULL;
5958 *iter_type = 0;
5959 return moveto_axis_node_next_first(iter, iter_type, node, node_type, LYXP_AXIS_DESCENDANT, set);
5960 } /* else continue descendant */
5961
5962 /* fallthrough */
5963 case LYXP_AXIS_DESCENDANT:
5964 assert(*iter_type == LYXP_NODE_ELEM);
5965 next = moveto_axis_node_next_dfs_forward(*iter, node);
5966 next_type = next ? LYXP_NODE_ELEM : 0;
5967 break;
5968
5969 case LYXP_AXIS_FOLLOWING:
5970 assert(*iter_type == LYXP_NODE_ELEM);
5971 next = moveto_axis_node_next_dfs_forward(*iter, NULL);
5972 next_type = next ? LYXP_NODE_ELEM : 0;
5973 break;
5974
5975 case LYXP_AXIS_FOLLOWING_SIBLING:
5976 assert(*iter_type == LYXP_NODE_ELEM);
5977
5978 /* next sibling */
5979 next = (*iter)->next;
5980 next_type = next ? LYXP_NODE_ELEM : 0;
5981 break;
5982
5983 case LYXP_AXIS_PARENT:
5984 case LYXP_AXIS_SELF:
5985 /* parent/self was returned before */
5986 break;
5987
5988 case LYXP_AXIS_PRECEDING:
5989 assert(*iter_type == LYXP_NODE_ELEM);
5990 next = moveto_axis_node_next_dfs_backward(*iter, NULL);
5991 next_type = next ? LYXP_NODE_ELEM : 0;
5992 break;
5993
5994 case LYXP_AXIS_PRECEDING_SIBLING:
5995 assert(*iter_type == LYXP_NODE_ELEM);
5996
5997 /* previous sibling */
5998 next = (*iter)->prev->next ? (*iter)->prev : NULL;
5999 next_type = next ? LYXP_NODE_ELEM : 0;
6000 break;
6001
6002 case LYXP_AXIS_ATTRIBUTE:
6003 /* handled specially */
6004 assert(0);
6005 LOGINT(set->ctx);
6006 break;
6007 }
6008
6009 *iter = next;
6010 *iter_type = next_type;
6011 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
6012}
6013
6014/**
6015 * @brief Move context @p set to a node. Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006016 *
6017 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006018 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006019 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko49fec8e2022-05-24 10:28:33 +02006020 * @param[in] axis Axis to search on.
Michal Vaskocdad7122020-11-09 21:04:44 +01006021 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006022 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6023 */
6024static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006025moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, enum lyxp_axis axis,
6026 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006027{
Michal Vasko230cf972021-12-02 12:31:00 +01006028 LY_ERR r, rc = LY_SUCCESS;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006029 const struct lyd_node *iter;
6030 enum lyxp_node_type iter_type;
Michal Vasko230cf972021-12-02 12:31:00 +01006031 struct lyxp_set result;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006032 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006033
aPiecek8b0cc152021-05-31 16:40:31 +02006034 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006035 return LY_SUCCESS;
6036 }
6037
6038 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006039 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006040 return LY_EVALID;
6041 }
6042
Michal Vasko230cf972021-12-02 12:31:00 +01006043 /* init result set */
6044 set_init(&result, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006045
Michal Vasko49fec8e2022-05-24 10:28:33 +02006046 for (i = 0; i < set->used; ++i) {
6047 /* iterate over all the nodes on the axis of the node */
6048 iter = NULL;
6049 iter_type = 0;
6050 while (!moveto_axis_node_next(&iter, &iter_type, set->val.nodes[i].node, set->val.nodes[i].type, axis, set)) {
6051 r = moveto_node_check(iter, iter_type, set, ncname, moveto_mod, options);
6052 if (r == LY_EINCOMPLETE) {
Michal Vasko230cf972021-12-02 12:31:00 +01006053 rc = r;
6054 goto cleanup;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006055 } else if (r) {
6056 continue;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006057 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02006058
6059 /* check for duplicates if they are possible */
6060 switch (axis) {
6061 case LYXP_AXIS_ANCESTOR:
6062 case LYXP_AXIS_ANCESTOR_OR_SELF:
6063 case LYXP_AXIS_DESCENDANT:
6064 case LYXP_AXIS_DESCENDANT_OR_SELF:
6065 case LYXP_AXIS_FOLLOWING:
6066 case LYXP_AXIS_FOLLOWING_SIBLING:
6067 case LYXP_AXIS_PARENT:
6068 case LYXP_AXIS_PRECEDING:
6069 case LYXP_AXIS_PRECEDING_SIBLING:
Michal Vasko306e2832022-07-25 09:15:17 +02006070 result.non_child_axis = 1;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006071 if (set_dup_node_check(&result, iter, iter_type, -1)) {
6072 continue;
6073 }
6074 break;
6075 case LYXP_AXIS_CHILD:
6076 case LYXP_AXIS_SELF:
6077 break;
6078 case LYXP_AXIS_ATTRIBUTE:
6079 /* handled specially */
6080 assert(0);
6081 LOGINT(set->ctx);
6082 break;
6083 }
6084
6085 /* matching node */
6086 set_insert_node(&result, iter, 0, iter_type, result.used);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006087 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006088 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006089
Michal Vasko230cf972021-12-02 12:31:00 +01006090 /* move result to the set */
6091 lyxp_set_free_content(set);
6092 *set = result;
6093 result.type = LYXP_SET_NUMBER;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006094
Michal Vasko306e2832022-07-25 09:15:17 +02006095 /* sort the final set if the document order could have been broken */
6096 if (set->non_child_axis) {
6097 set_sort(set);
6098 } else {
6099 assert(!set_sort(set));
6100 }
Michal Vasko230cf972021-12-02 12:31:00 +01006101
6102cleanup:
6103 lyxp_set_free_content(&result);
6104 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006105}
6106
6107/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006108 * @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 +02006109 *
6110 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02006111 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02006112 * @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 +01006113 * @param[in] options XPath options.
Michal Vaskod3678892020-05-21 10:06:58 +02006114 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6115 */
6116static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006117moveto_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 +01006118 uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02006119{
Michal Vaskoddd76592022-01-17 13:34:48 +01006120 LY_ERR ret = LY_SUCCESS, r;
Michal Vaskod3678892020-05-21 10:06:58 +02006121 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02006122 const struct lyd_node *siblings;
Michal Vasko230cf972021-12-02 12:31:00 +01006123 struct lyxp_set result;
Michal Vasko004d3152020-06-11 19:59:22 +02006124 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006125
Michal Vasko004d3152020-06-11 19:59:22 +02006126 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02006127
Michal Vasko50aaa072021-12-02 13:11:56 +01006128 /* init result set */
6129 set_init(&result, set);
6130
aPiecek8b0cc152021-05-31 16:40:31 +02006131 if (options & LYXP_SKIP_EXPR) {
Michal Vasko004d3152020-06-11 19:59:22 +02006132 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006133 }
6134
6135 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006136 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko004d3152020-06-11 19:59:22 +02006137 ret = LY_EVALID;
6138 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006139 }
6140
6141 /* context check for all the nodes since we have the schema node */
6142 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
6143 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02006144 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02006145 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
6146 (scnode != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02006147 lyxp_set_free_content(set);
6148 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02006149 }
6150
6151 /* create specific data instance if needed */
6152 if (scnode->nodetype == LYS_LIST) {
Michal Vasko90189962023-02-28 12:10:34 +01006153 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, NULL, &inst), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02006154 } else if (scnode->nodetype == LYS_LEAFLIST) {
6155 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02006156 }
6157
Michal Vasko230cf972021-12-02 12:31:00 +01006158 for (i = 0; i < set->used; ++i) {
Michal Vaskod3678892020-05-21 10:06:58 +02006159 siblings = NULL;
6160
6161 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
6162 assert(!set->val.nodes[i].node);
6163
6164 /* search in all the trees */
6165 siblings = set->tree;
6166 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
6167 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006168 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02006169 }
6170
6171 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02006172 if (inst) {
Michal Vaskoddd76592022-01-17 13:34:48 +01006173 r = lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02006174 } else {
Michal Vaskoddd76592022-01-17 13:34:48 +01006175 r = lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02006176 }
Michal Vaskod8a52012023-08-15 11:38:10 +02006177 if (r == LY_ENOTFOUND) {
6178 /* may still be an opaque node */
6179 r = lyd_find_sibling_opaq_next(siblings, scnode->name, &sub);
6180 }
Michal Vaskoddd76592022-01-17 13:34:48 +01006181 LY_CHECK_ERR_GOTO(r && (r != LY_ENOTFOUND), ret = r, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02006182
6183 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006184 if (!(options & LYXP_IGNORE_WHEN) && sub && lysc_has_when(sub->schema) && !(sub->flags & LYD_WHEN_TRUE)) {
Michal Vasko004d3152020-06-11 19:59:22 +02006185 ret = LY_EINCOMPLETE;
6186 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006187 }
6188
6189 if (sub) {
6190 /* pos filled later */
Michal Vasko230cf972021-12-02 12:31:00 +01006191 set_insert_node(&result, sub, 0, LYXP_NODE_ELEM, result.used);
Michal Vaskod3678892020-05-21 10:06:58 +02006192 }
6193 }
6194
Michal Vasko230cf972021-12-02 12:31:00 +01006195 /* move result to the set */
6196 lyxp_set_free_content(set);
6197 *set = result;
6198 result.type = LYXP_SET_NUMBER;
6199 assert(!set_sort(set));
6200
Michal Vasko004d3152020-06-11 19:59:22 +02006201cleanup:
Michal Vasko230cf972021-12-02 12:31:00 +01006202 lyxp_set_free_content(&result);
Michal Vasko004d3152020-06-11 19:59:22 +02006203 lyd_free_tree(inst);
6204 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02006205}
6206
6207/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006208 * @brief Check @p node as a part of schema NameTest processing.
6209 *
6210 * @param[in] node Schema node to check.
6211 * @param[in] ctx_scnode Context node.
6212 * @param[in] set Set to read general context from.
6213 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
6214 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
6215 * @return LY_ERR (LY_ENOT if node does not match, LY_EINVAL if neither node nor any children match)
6216 */
6217static LY_ERR
6218moveto_scnode_check(const struct lysc_node *node, const struct lysc_node *ctx_scnode, const struct lyxp_set *set,
6219 const char *node_name, const struct lys_module *moveto_mod)
6220{
6221 if (!moveto_mod && node_name) {
6222 switch (set->format) {
6223 case LY_VALUE_SCHEMA:
6224 case LY_VALUE_SCHEMA_RESOLVED:
6225 /* use current module */
6226 moveto_mod = set->cur_mod;
6227 break;
6228 case LY_VALUE_JSON:
6229 case LY_VALUE_LYB:
6230 case LY_VALUE_STR_NS:
6231 /* inherit module of the context node, if any */
6232 if (ctx_scnode) {
6233 moveto_mod = ctx_scnode->module;
6234 }
6235 break;
6236 case LY_VALUE_CANON:
6237 case LY_VALUE_XML:
6238 /* not defined */
6239 LOGINT(set->ctx);
6240 return LY_EINVAL;
6241 }
6242 }
6243
6244 if (!node) {
6245 /* root will not match a specific node */
6246 if (node_name || moveto_mod) {
6247 return LY_ENOT;
6248 }
6249 return LY_SUCCESS;
6250 }
6251
6252 /* module check */
6253 if (moveto_mod && (node->module != moveto_mod)) {
6254 return LY_ENOT;
6255 }
6256
6257 /* context check */
6258 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
6259 return LY_EINVAL;
6260 } else if (set->context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != set->context_op)) {
6261 return LY_EINVAL;
6262 }
6263
6264 /* name check */
6265 if (node_name && (node->name != node_name)) {
6266 return LY_ENOT;
6267 }
6268
6269 /* match */
6270 return LY_SUCCESS;
6271}
6272
6273/**
6274 * @brief Get the next node in a forward schema node DFS.
6275 *
6276 * @param[in] iter Last returned node.
6277 * @param[in] stop Node to stop the search on and not return.
6278 * @param[in] getnext_opts Options for ::lys_getnext().
6279 * @return Next node, NULL if there are no more.
6280 */
6281static const struct lysc_node *
6282moveto_axis_scnode_next_dfs_forward(const struct lysc_node *iter, const struct lysc_node *stop, uint32_t getnext_opts)
6283{
6284 const struct lysc_node *next = NULL;
6285
6286 next = lysc_node_child(iter);
6287 if (!next) {
6288 /* no children, try siblings */
Michal Vasko34a22fe2022-06-15 07:58:55 +02006289 if ((iter == stop) || !lysc_data_parent(iter)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006290 /* we are done, no next element to process */
6291 return NULL;
6292 }
6293
6294 next = lys_getnext(iter, lysc_data_parent(iter), NULL, getnext_opts);
6295 }
6296 while (!next && iter) {
6297 /* parent is already processed, go to its sibling */
6298 iter = iter->parent;
Michal Vasko34a22fe2022-06-15 07:58:55 +02006299 if ((iter == stop) || !lysc_data_parent(iter)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006300 /* we are done, no next element to process */
6301 return NULL;
6302 }
6303 next = lys_getnext(iter, lysc_data_parent(iter), NULL, getnext_opts);
6304 }
6305
6306 return next;
6307}
6308
6309/**
6310 * @brief Consider schema node based on its in_ctx enum value.
6311 *
6312 * @param[in,out] in_ctx In_ctx enum of the schema node, may be updated.
6313 * @param[in] axis Axis to use.
6314 * @return LY_SUCCESS on success.
6315 * @return LY_ENOT if the node should not be returned.
6316 */
6317static LY_ERR
6318moveto_axis_scnode_next_in_ctx(int32_t *in_ctx, enum lyxp_axis axis)
6319{
6320 switch (axis) {
6321 case LYXP_AXIS_SELF:
6322 if ((*in_ctx == LYXP_SET_SCNODE_START) || (*in_ctx == LYXP_SET_SCNODE_ATOM_CTX)) {
6323 /* additionally put the start node into context */
6324 *in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
6325 return LY_SUCCESS;
6326 }
6327 break;
6328 case LYXP_AXIS_PARENT:
6329 case LYXP_AXIS_ANCESTOR_OR_SELF:
6330 case LYXP_AXIS_ANCESTOR:
6331 case LYXP_AXIS_DESCENDANT_OR_SELF:
6332 case LYXP_AXIS_DESCENDANT:
6333 case LYXP_AXIS_FOLLOWING:
6334 case LYXP_AXIS_FOLLOWING_SIBLING:
6335 case LYXP_AXIS_PRECEDING:
6336 case LYXP_AXIS_PRECEDING_SIBLING:
6337 case LYXP_AXIS_CHILD:
6338 if (*in_ctx == LYXP_SET_SCNODE_START) {
6339 /* remember that context node was used */
6340 *in_ctx = LYXP_SET_SCNODE_START_USED;
6341 return LY_SUCCESS;
6342 } else if (*in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
6343 /* traversed */
6344 *in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
6345 return LY_SUCCESS;
6346 }
6347 break;
6348 case LYXP_AXIS_ATTRIBUTE:
6349 /* unreachable */
6350 assert(0);
6351 LOGINT(NULL);
6352 break;
6353 }
6354
6355 return LY_ENOT;
6356}
6357
6358/**
6359 * @brief Get previous sibling for a schema node.
6360 *
6361 * @param[in] scnode Schema node.
6362 * @param[in] getnext_opts Options for ::lys_getnext().
6363 * @return Previous sibling, NULL if none.
6364 */
6365static const struct lysc_node *
6366moveto_axis_scnode_preceding_sibling(const struct lysc_node *scnode, uint32_t getnext_opts)
6367{
6368 const struct lysc_node *next = NULL, *prev = NULL;
6369
6370 while ((next = lys_getnext(next, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts))) {
6371 if (next == scnode) {
6372 break;
6373 }
6374
6375 prev = next;
6376 }
6377
6378 return prev;
6379}
6380
6381/**
6382 * @brief Get the first schema node on an axis for a context node.
6383 *
6384 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
6385 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
6386 * @param[in,out] iter_mod Internal module iterator, do not change.
6387 * @param[in,out] iter_mod_idx Internal module index iterator, do not change.
6388 * @param[in] scnode Context node.
6389 * @param[in] node_type Type of @p scnode.
6390 * @param[in] in_ctx In_ctx enum of @p scnode.
6391 * @param[in] axis Axis to use.
6392 * @param[in] set XPath set with the general context.
6393 * @param[in] getnext_opts Options for ::lys_getnext().
6394 * @return LY_SUCCESS on success.
6395 * @return LY_ENOTFOUND if no next node found.
6396 */
6397static LY_ERR
6398moveto_axis_scnode_next_first(const struct lysc_node **iter, enum lyxp_node_type *iter_type, const struct lys_module **iter_mod,
6399 uint32_t *iter_mod_idx, const struct lysc_node *scnode, enum lyxp_node_type node_type, enum lyxp_axis axis,
6400 struct lyxp_set *set, uint32_t getnext_opts)
6401{
6402 const struct lysc_node *next = NULL;
6403 enum lyxp_node_type next_type = 0;
6404
6405 assert(!*iter);
6406 assert(!*iter_type);
6407
6408 *iter_mod = NULL;
6409 *iter_mod_idx = 0;
6410
6411 switch (axis) {
6412 case LYXP_AXIS_ANCESTOR_OR_SELF:
6413 case LYXP_AXIS_DESCENDANT_OR_SELF:
6414 case LYXP_AXIS_SELF:
6415 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ELEM)) {
6416 /* just return the node */
6417 next = scnode;
6418 next_type = node_type;
6419 }
6420 break;
6421
6422 case LYXP_AXIS_ANCESTOR:
6423 case LYXP_AXIS_PARENT:
6424 if (node_type == LYXP_NODE_ELEM) {
6425 next = lysc_data_parent(scnode);
6426 next_type = next ? LYXP_NODE_ELEM : set->root_type;
6427 } /* else no parent */
6428 break;
6429
6430 case LYXP_AXIS_DESCENDANT:
6431 case LYXP_AXIS_CHILD:
6432 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
6433 /* it can actually be in any module, it's all <running>, and even if it's moveto_mod (if set),
6434 * it can be in a top-level augment */
6435 while ((*iter_mod = ly_ctx_get_module_iter(set->ctx, iter_mod_idx))) {
6436 /* module may not be implemented or not compiled yet */
6437 if (!(*iter_mod)->compiled) {
6438 continue;
6439 }
6440
6441 /* get next node */
6442 if ((next = lys_getnext(NULL, NULL, (*iter_mod)->compiled, getnext_opts))) {
6443 next_type = LYXP_NODE_ELEM;
6444 break;
6445 }
6446 }
6447 } else if (node_type == LYXP_NODE_ELEM) {
6448 /* get next node */
6449 next = lys_getnext(NULL, scnode, NULL, getnext_opts);
6450 next_type = next ? LYXP_NODE_ELEM : 0;
6451 }
6452 break;
6453
6454 case LYXP_AXIS_FOLLOWING:
6455 case LYXP_AXIS_FOLLOWING_SIBLING:
6456 if (node_type == LYXP_NODE_ELEM) {
6457 /* first next sibling */
6458 next = lys_getnext(scnode, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts);
6459 next_type = next ? LYXP_NODE_ELEM : 0;
6460 } /* else no sibling */
6461 break;
6462
6463 case LYXP_AXIS_PRECEDING:
6464 case LYXP_AXIS_PRECEDING_SIBLING:
6465 if (node_type == LYXP_NODE_ELEM) {
6466 /* first parent sibling */
6467 next = lys_getnext(NULL, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts);
6468 if (next == scnode) {
6469 /* no preceding sibling */
6470 next = NULL;
6471 }
6472 next_type = next ? LYXP_NODE_ELEM : 0;
6473 } /* else no sibling */
6474 break;
6475
6476 case LYXP_AXIS_ATTRIBUTE:
6477 /* unreachable */
6478 assert(0);
6479 LOGINT(set->ctx);
6480 break;
6481 }
6482
6483 *iter = next;
6484 *iter_type = next_type;
6485 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
6486}
6487
6488/**
6489 * @brief Iterate over all schema nodes on an axis for a context node.
6490 *
6491 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
6492 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
6493 * @param[in,out] iter_mod Internal module iterator, do not change.
6494 * @param[in,out] iter_mod_idx Internal module index iterator, do not change.
6495 * @param[in] scnode Context node.
6496 * @param[in] node_type Type of @p scnode.
6497 * @param[in] axis Axis to use.
6498 * @param[in] set XPath set with the general context.
6499 * @param[in] getnext_opts Options for ::lys_getnext().
6500 * @return LY_SUCCESS on success.
6501 * @return LY_ENOTFOUND if no next node found.
6502 */
6503static LY_ERR
6504moveto_axis_scnode_next(const struct lysc_node **iter, enum lyxp_node_type *iter_type, const struct lys_module **iter_mod,
6505 uint32_t *iter_mod_idx, const struct lysc_node *scnode, enum lyxp_node_type node_type, enum lyxp_axis axis,
6506 struct lyxp_set *set, uint32_t getnext_opts)
6507{
6508 const struct lysc_node *next = NULL, *dfs_stop;
6509 enum lyxp_node_type next_type = 0;
6510
6511 if (!*iter_type) {
6512 /* first returned node */
6513 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type, axis, set,
6514 getnext_opts);
6515 }
6516
6517 switch (axis) {
6518 case LYXP_AXIS_PARENT:
6519 case LYXP_AXIS_SELF:
6520 /* parent/self was returned before */
6521 break;
6522
6523 case LYXP_AXIS_ANCESTOR_OR_SELF:
6524 if ((*iter == scnode) && (*iter_type == node_type)) {
6525 /* fake first ancestor, we returned self before */
6526 *iter = NULL;
6527 *iter_type = 0;
6528 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type,
6529 LYXP_AXIS_ANCESTOR, set, getnext_opts);
6530 } /* else continue ancestor */
6531
6532 /* fallthrough */
6533 case LYXP_AXIS_ANCESTOR:
6534 if (*iter_type == LYXP_NODE_ELEM) {
6535 next = lysc_data_parent(*iter);
6536 next_type = next ? LYXP_NODE_ELEM : set->root_type;
6537 } /* else no ancestor */
6538 break;
6539
6540 case LYXP_AXIS_DESCENDANT_OR_SELF:
6541 if ((*iter == scnode) && (*iter_type == node_type)) {
6542 /* fake first descendant, we returned self before */
6543 *iter = NULL;
6544 *iter_type = 0;
6545 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type,
6546 LYXP_AXIS_DESCENDANT, set, getnext_opts);
6547 } /* else DFS until context node */
6548 dfs_stop = scnode;
6549
6550 /* fallthrough */
6551 case LYXP_AXIS_DESCENDANT:
6552 if (axis == LYXP_AXIS_DESCENDANT) {
6553 /* DFS until the context node */
6554 dfs_stop = scnode;
6555 }
6556
6557 /* fallthrough */
6558 case LYXP_AXIS_PRECEDING:
6559 if (axis == LYXP_AXIS_PRECEDING) {
6560 /* DFS until the previous sibling */
6561 dfs_stop = moveto_axis_scnode_preceding_sibling(scnode, getnext_opts);
6562 assert(dfs_stop);
6563
6564 if (*iter == dfs_stop) {
6565 /* we are done */
6566 break;
6567 }
6568 }
6569
6570 /* fallthrough */
6571 case LYXP_AXIS_FOLLOWING:
6572 if (axis == LYXP_AXIS_FOLLOWING) {
6573 /* DFS through the whole module */
6574 dfs_stop = NULL;
6575 }
6576
6577 /* nested nodes */
6578 assert(*iter);
6579 next = moveto_axis_scnode_next_dfs_forward(*iter, dfs_stop, getnext_opts);
6580 if (next) {
6581 next_type = LYXP_NODE_ELEM;
6582 break;
6583 } /* else get next top-level node just like a child */
6584
6585 /* fallthrough */
6586 case LYXP_AXIS_CHILD:
6587 case LYXP_AXIS_FOLLOWING_SIBLING:
6588 if (!*iter_mod) {
6589 /* nodes from a single module */
6590 if ((next = lys_getnext(*iter, lysc_data_parent(*iter), (*iter)->module->compiled, getnext_opts))) {
6591 next_type = LYXP_NODE_ELEM;
6592 break;
6593 }
6594
6595 assert(scnode);
Michal Vaskoa353cce2022-11-14 10:09:55 +01006596 if ((axis != LYXP_AXIS_CHILD) && !lysc_data_parent(scnode)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006597 /* iterating over top-level nodes, find next */
6598 while (lysc_data_parent(*iter)) {
6599 *iter = lysc_data_parent(*iter);
6600 }
6601 if ((next = lys_getnext(*iter, NULL, (*iter)->module->compiled, getnext_opts))) {
6602 next_type = LYXP_NODE_ELEM;
6603 break;
6604 }
6605 }
6606 }
6607
6608 while (*iter_mod) {
6609 /* module top-level nodes */
6610 if ((next = lys_getnext(*iter, NULL, (*iter_mod)->compiled, getnext_opts))) {
6611 next_type = LYXP_NODE_ELEM;
6612 break;
6613 }
6614
6615 /* get next module */
6616 while ((*iter_mod = ly_ctx_get_module_iter(set->ctx, iter_mod_idx))) {
6617 /* module may not be implemented or not compiled yet */
6618 if ((*iter_mod)->compiled) {
6619 break;
6620 }
6621 }
6622
6623 /* new module, start over */
6624 *iter = NULL;
6625 }
6626 break;
6627
6628 case LYXP_AXIS_PRECEDING_SIBLING:
6629 assert(*iter);
6630
6631 /* next parent sibling until scnode */
6632 next = lys_getnext(*iter, lysc_data_parent(*iter), (*iter)->module->compiled, getnext_opts);
6633 if (next == scnode) {
6634 /* no previous sibling */
6635 next = NULL;
6636 }
6637 next_type = next ? LYXP_NODE_ELEM : 0;
6638 break;
6639
6640 case LYXP_AXIS_ATTRIBUTE:
6641 /* unreachable */
6642 assert(0);
6643 LOGINT(set->ctx);
6644 break;
6645 }
6646
6647 *iter = next;
6648 *iter_type = next_type;
6649 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
6650}
6651
6652/**
Michal Vaskod3678892020-05-21 10:06:58 +02006653 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
6654 *
6655 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006656 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006657 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko49fec8e2022-05-24 10:28:33 +02006658 * @param[in] axis Axis to search on.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006659 * @param[in] options XPath options.
6660 * @return LY_ERR
6661 */
6662static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006663moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, enum lyxp_axis axis,
6664 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006665{
Radek Krejci857189e2020-09-01 13:26:36 +02006666 ly_bool temp_ctx = 0;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006667 uint32_t getnext_opts, orig_used, i, mod_idx, idx;
stewegd8e2fc92023-05-31 09:52:56 +02006668 const struct lys_module *mod = NULL;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006669 const struct lysc_node *iter;
6670 enum lyxp_node_type iter_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006671
aPiecek8b0cc152021-05-31 16:40:31 +02006672 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006673 return LY_SUCCESS;
6674 }
6675
6676 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006677 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006678 return LY_EVALID;
6679 }
6680
Michal Vaskocafad9d2019-11-07 15:20:03 +01006681 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01006682 getnext_opts = 0;
Michal Vaskocafad9d2019-11-07 15:20:03 +01006683 if (options & LYXP_SCNODE_OUTPUT) {
6684 getnext_opts |= LYS_GETNEXT_OUTPUT;
6685 }
Michal Vaskoe482bb92023-02-01 11:41:41 +01006686 if (options & LYXP_SCNODE_SCHEMAMOUNT) {
6687 getnext_opts |= LYS_GETNEXT_WITHSCHEMAMOUNT;
6688 }
Michal Vaskocafad9d2019-11-07 15:20:03 +01006689
Michal Vasko03ff5a72019-09-11 13:49:33 +02006690 orig_used = set->used;
6691 for (i = 0; i < orig_used; ++i) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006692 /* update in_ctx first */
6693 if (moveto_axis_scnode_next_in_ctx(&set->val.scnodes[i].in_ctx, axis)) {
6694 /* not usable, skip */
6695 continue;
6696 }
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006697
Michal Vasko49fec8e2022-05-24 10:28:33 +02006698 iter = NULL;
6699 iter_type = 0;
6700 while (!moveto_axis_scnode_next(&iter, &iter_type, &mod, &mod_idx, set->val.scnodes[i].scnode,
6701 set->val.scnodes[i].type, axis, set, getnext_opts)) {
6702 if (moveto_scnode_check(iter, NULL, set, ncname, moveto_mod)) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006703 continue;
6704 }
6705
Michal Vasko49fec8e2022-05-24 10:28:33 +02006706 /* insert */
Michal Vaskoe4a6d012023-05-22 14:34:52 +02006707 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, iter_type, axis, &idx));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006708
Michal Vasko49fec8e2022-05-24 10:28:33 +02006709 /* we need to prevent these nodes from being considered in this moveto */
6710 if ((idx < orig_used) && (idx > i)) {
6711 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
6712 temp_ctx = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006713 }
6714 }
Michal Vasko66330fc2022-11-21 15:52:24 +01006715
6716 if (moveto_mod && ncname && ((axis == LYXP_AXIS_DESCENDANT) || (axis == LYXP_AXIS_CHILD)) &&
6717 (set->val.scnodes[i].type == LYXP_NODE_ELEM) && !ly_nested_ext_schema(NULL, set->val.scnodes[i].scnode,
6718 moveto_mod->name, strlen(moveto_mod->name), LY_VALUE_JSON, NULL, ncname, strlen(ncname), &iter, NULL)) {
6719 /* there is a matching node from an extension, use it */
Michal Vaskoe4a6d012023-05-22 14:34:52 +02006720 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, axis, &idx));
Michal Vasko66330fc2022-11-21 15:52:24 +01006721 if ((idx < orig_used) && (idx > i)) {
6722 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
6723 temp_ctx = 1;
6724 }
6725 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006726 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006727
6728 /* correct temporary in_ctx values */
6729 if (temp_ctx) {
6730 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006731 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NEW_CTX) {
6732 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006733 }
6734 }
6735 }
6736
6737 return LY_SUCCESS;
6738}
6739
6740/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006741 * @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 +02006742 * Context position aware.
6743 *
6744 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006745 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006746 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01006747 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006748 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6749 */
6750static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006751moveto_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 +02006752{
6753 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006754 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006755 struct lyxp_set ret_set;
6756 LY_ERR rc;
6757
aPiecek8b0cc152021-05-31 16:40:31 +02006758 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006759 return LY_SUCCESS;
6760 }
6761
6762 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006763 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006764 return LY_EVALID;
6765 }
6766
Michal Vasko9f96a052020-03-10 09:41:45 +01006767 /* 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 +02006768 rc = xpath_pi_node(set, LYXP_AXIS_CHILD, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006769 LY_CHECK_RET(rc);
6770
Michal Vasko6346ece2019-09-24 13:12:53 +02006771 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006772 set_init(&ret_set, set);
6773 for (i = 0; i < set->used; ++i) {
6774
6775 /* TREE DFS */
6776 start = set->val.nodes[i].node;
6777 for (elem = next = start; elem; elem = next) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006778 rc = moveto_node_check(elem, LYXP_NODE_ELEM, set, ncname, moveto_mod, options);
Michal Vasko6346ece2019-09-24 13:12:53 +02006779 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006780 /* add matching node into result set */
6781 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
6782 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
6783 /* the node is a duplicate, we'll process it later in the set */
6784 goto skip_children;
6785 }
Michal Vasko6346ece2019-09-24 13:12:53 +02006786 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02006787 return rc;
6788 } else if (rc == LY_EINVAL) {
6789 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006790 }
6791
6792 /* TREE DFS NEXT ELEM */
6793 /* select element for the next run - children first */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006794 next = lyd_child(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006795 if (!next) {
6796skip_children:
6797 /* no children, so try siblings, but only if it's not the start,
6798 * that is considered to be the root and it's siblings are not traversed */
6799 if (elem != start) {
6800 next = elem->next;
6801 } else {
6802 break;
6803 }
6804 }
6805 while (!next) {
6806 /* no siblings, go back through the parents */
Michal Vasko9e685082021-01-29 14:49:09 +01006807 if (lyd_parent(elem) == start) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006808 /* we are done, no next element to process */
6809 break;
6810 }
6811 /* parent is already processed, go to its sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01006812 elem = lyd_parent(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006813 next = elem->next;
6814 }
6815 }
6816 }
6817
6818 /* make the temporary set the current one */
6819 ret_set.ctx_pos = set->ctx_pos;
6820 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006821 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006822 memcpy(set, &ret_set, sizeof *set);
Michal Vasko306e2832022-07-25 09:15:17 +02006823 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006824
6825 return LY_SUCCESS;
6826}
6827
6828/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006829 * @brief Move context @p set to a child schema node and all its descendants starting from a node.
6830 * Result is LYXP_SET_NODE_SET.
6831 *
6832 * @param[in] set Set to use.
6833 * @param[in] start Start node whose subtree to add.
6834 * @param[in] start_idx Index of @p start in @p set.
6835 * @param[in] moveto_mod Matching node module, NULL for no prefix.
6836 * @param[in] ncname Matching node name in the dictionary, NULL for any.
6837 * @param[in] options XPath options.
6838 * @return LY_ERR value.
6839 */
6840static LY_ERR
6841moveto_scnode_dfs(struct lyxp_set *set, const struct lysc_node *start, uint32_t start_idx,
6842 const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
6843{
6844 const struct lysc_node *next, *elem;
6845 uint32_t idx;
6846 LY_ERR rc;
6847
6848 /* TREE DFS */
6849 for (elem = next = start; elem; elem = next) {
6850 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
6851 /* schema-only nodes, skip root */
6852 goto next_iter;
6853 }
6854
6855 rc = moveto_scnode_check(elem, start, set, ncname, moveto_mod);
6856 if (!rc) {
6857 if (lyxp_set_scnode_contains(set, elem, LYXP_NODE_ELEM, start_idx, &idx)) {
6858 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
6859 if (idx > start_idx) {
6860 /* we will process it later in the set */
6861 goto skip_children;
6862 }
6863 } else {
Michal Vaskoe4a6d012023-05-22 14:34:52 +02006864 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM, LYXP_AXIS_DESCENDANT, NULL));
Michal Vasko49fec8e2022-05-24 10:28:33 +02006865 }
6866 } else if (rc == LY_EINVAL) {
6867 goto skip_children;
6868 }
6869
6870next_iter:
6871 /* TREE DFS NEXT ELEM */
6872 /* select element for the next run - children first */
6873 next = lysc_node_child(elem);
6874 if (next && (next->nodetype == LYS_INPUT) && (options & LYXP_SCNODE_OUTPUT)) {
6875 next = next->next;
6876 } else if (next && (next->nodetype == LYS_OUTPUT) && !(options & LYXP_SCNODE_OUTPUT)) {
6877 next = next->next;
6878 }
6879 if (!next) {
6880skip_children:
6881 /* no children, so try siblings, but only if it's not the start,
6882 * that is considered to be the root and it's siblings are not traversed */
6883 if (elem != start) {
6884 next = elem->next;
6885 } else {
6886 break;
6887 }
6888 }
6889 while (!next) {
6890 /* no siblings, go back through the parents */
6891 if (elem->parent == start) {
6892 /* we are done, no next element to process */
6893 break;
6894 }
6895 /* parent is already processed, go to its sibling */
6896 elem = elem->parent;
6897 next = elem->next;
6898 }
6899 }
6900
6901 return LY_SUCCESS;
6902}
6903
6904/**
6905 * @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 +02006906 *
6907 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006908 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006909 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006910 * @param[in] options XPath options.
Michal Vasko49fec8e2022-05-24 10:28:33 +02006911 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006912 */
6913static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006914moveto_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 +02006915{
Michal Vasko49fec8e2022-05-24 10:28:33 +02006916 uint32_t i, orig_used, mod_idx;
6917 const struct lys_module *mod;
6918 const struct lysc_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006919
aPiecek8b0cc152021-05-31 16:40:31 +02006920 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006921 return LY_SUCCESS;
6922 }
6923
6924 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006925 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006926 return LY_EVALID;
6927 }
6928
Michal Vasko03ff5a72019-09-11 13:49:33 +02006929 orig_used = set->used;
6930 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006931 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
6932 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006933 continue;
6934 }
6935
6936 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01006937 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01006938 } else {
Michal Vasko1a09b212021-05-06 13:00:10 +02006939 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006940 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006941
Michal Vasko49fec8e2022-05-24 10:28:33 +02006942 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6943 /* traverse all top-level nodes in all the modules */
6944 mod_idx = 0;
6945 while ((mod = ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6946 /* module may not be implemented or not compiled yet */
6947 if (!mod->compiled) {
6948 continue;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006949 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006950
Michal Vasko49fec8e2022-05-24 10:28:33 +02006951 root = NULL;
6952 /* no getnext opts needed */
6953 while ((root = lys_getnext(root, NULL, mod->compiled, 0))) {
6954 LY_CHECK_RET(moveto_scnode_dfs(set, root, i, moveto_mod, ncname, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006955 }
6956 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02006957
6958 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6959 /* add all the descendants recursively */
6960 LY_CHECK_RET(moveto_scnode_dfs(set, set->val.scnodes[i].scnode, i, moveto_mod, ncname, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006961 }
6962 }
6963
6964 return LY_SUCCESS;
6965}
6966
6967/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006968 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006969 * Indirectly context position aware.
6970 *
6971 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02006972 * @param[in] mod Matching metadata module, NULL for any.
6973 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
aPiecek8b0cc152021-05-31 16:40:31 +02006974 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006975 * @return LY_ERR
6976 */
6977static LY_ERR
aPiecek8b0cc152021-05-31 16:40:31 +02006978moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006979{
Michal Vasko9f96a052020-03-10 09:41:45 +01006980 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006981
aPiecek8b0cc152021-05-31 16:40:31 +02006982 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006983 return LY_SUCCESS;
6984 }
6985
6986 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006987 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006988 return LY_EVALID;
6989 }
6990
Radek Krejci1deb5be2020-08-26 16:43:36 +02006991 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02006992 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006993
6994 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
6995 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01006996 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006997 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006998
6999 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02007000 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007001 continue;
7002 }
7003
Michal Vaskod3678892020-05-21 10:06:58 +02007004 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007005 /* match */
7006 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01007007 set->val.meta[i].meta = sub;
7008 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007009 /* pos does not change */
7010 replaced = 1;
7011 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01007012 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 +02007013 }
7014 ++i;
7015 }
7016 }
7017 }
7018
7019 if (!replaced) {
7020 /* no match */
7021 set_remove_node(set, i);
7022 }
7023 }
7024
7025 return LY_SUCCESS;
7026}
7027
7028/**
7029 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02007030 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007031 *
7032 * @param[in,out] set1 Set to use for the result.
7033 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007034 * @return LY_ERR
7035 */
7036static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007037moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007038{
7039 LY_ERR rc;
7040
Michal Vaskod3678892020-05-21 10:06:58 +02007041 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007042 LOGVAL(set1->ctx, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007043 return LY_EVALID;
7044 }
7045
7046 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02007047 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007048 return LY_SUCCESS;
7049 }
7050
Michal Vaskod3678892020-05-21 10:06:58 +02007051 if (!set1->used) {
aPiecekadc1e4f2021-10-07 11:15:12 +02007052 /* release hidden allocated data (lyxp_set.size) */
7053 lyxp_set_free_content(set1);
7054 /* direct copying of the entire structure */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007055 memcpy(set1, set2, sizeof *set1);
7056 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02007057 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007058 return LY_SUCCESS;
7059 }
7060
7061 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007062 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007063
7064 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007065 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007066 LY_CHECK_RET(rc);
7067
7068 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007069 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007070
7071 return LY_SUCCESS;
7072}
7073
7074/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02007075 * @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 +02007076 * Context position aware.
7077 *
7078 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02007079 * @param[in] mod Matching metadata module, NULL for any.
7080 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01007081 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007082 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7083 */
7084static int
Michal Vaskocdad7122020-11-09 21:04:44 +01007085moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007086{
Michal Vasko9f96a052020-03-10 09:41:45 +01007087 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007088 struct lyxp_set *set_all_desc = NULL;
7089 LY_ERR rc;
7090
aPiecek8b0cc152021-05-31 16:40:31 +02007091 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007092 return LY_SUCCESS;
7093 }
7094
7095 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007096 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007097 return LY_EVALID;
7098 }
7099
Michal Vasko03ff5a72019-09-11 13:49:33 +02007100 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
7101 * but it likely won't be used much, so it's a waste of time */
7102 /* copy the context */
7103 set_all_desc = set_copy(set);
7104 /* get all descendant nodes (the original context nodes are removed) */
Michal Vasko49fec8e2022-05-24 10:28:33 +02007105 rc = moveto_node_alldesc_child(set_all_desc, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007106 if (rc != LY_SUCCESS) {
7107 lyxp_set_free(set_all_desc);
7108 return rc;
7109 }
7110 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007111 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007112 if (rc != LY_SUCCESS) {
7113 lyxp_set_free(set_all_desc);
7114 return rc;
7115 }
7116 lyxp_set_free(set_all_desc);
7117
Radek Krejci1deb5be2020-08-26 16:43:36 +02007118 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02007119 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007120
7121 /* only attributes of an elem can be in the result, skip all the rest,
7122 * we have all attributes qualified in lyd tree */
7123 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01007124 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007125 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02007126 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007127 continue;
7128 }
7129
Michal Vaskod3678892020-05-21 10:06:58 +02007130 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007131 /* match */
7132 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01007133 set->val.meta[i].meta = sub;
7134 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007135 /* pos does not change */
7136 replaced = 1;
7137 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01007138 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 +02007139 }
7140 ++i;
7141 }
7142 }
7143 }
7144
7145 if (!replaced) {
7146 /* no match */
7147 set_remove_node(set, i);
7148 }
7149 }
7150
7151 return LY_SUCCESS;
7152}
7153
7154/**
Michal Vasko8abcecc2022-07-28 09:55:01 +02007155 * @brief Move context @p set1 single item to the result of a comparison.
7156 *
7157 * @param[in] set1 First set with the item to compare.
7158 * @param[in] idx1 Index of the item in @p set1.
7159 * @param[in] set2 Second set.
7160 * @param[in] op Comparison operator to process.
7161 * @param[in] switch_operands Whether to switch sets as operands; whether it is `set1 op set2` or `set2 op set1`.
7162 * @param[out] result Result of the comparison.
7163 * @return LY_ERR value.
7164 */
7165static LY_ERR
7166moveto_op_comp_item(const struct lyxp_set *set1, uint32_t idx1, struct lyxp_set *set2, const char *op,
7167 ly_bool switch_operands, ly_bool *result)
7168{
7169 struct lyxp_set tmp1 = {0};
7170 LY_ERR rc = LY_SUCCESS;
7171
7172 assert(set1->type == LYXP_SET_NODE_SET);
7173
7174 /* cast set1 */
7175 switch (set2->type) {
7176 case LYXP_SET_NUMBER:
7177 rc = set_comp_cast(&tmp1, set1, LYXP_SET_NUMBER, idx1);
7178 break;
7179 case LYXP_SET_BOOLEAN:
7180 rc = set_comp_cast(&tmp1, set1, LYXP_SET_BOOLEAN, idx1);
7181 break;
7182 default:
7183 rc = set_comp_cast(&tmp1, set1, LYXP_SET_STRING, idx1);
7184 break;
7185 }
7186 LY_CHECK_GOTO(rc, cleanup);
7187
7188 /* canonize set2 */
7189 LY_CHECK_GOTO(rc = set_comp_canonize(set2, &set1->val.nodes[idx1]), cleanup);
7190
7191 /* compare recursively and store the result */
7192 if (switch_operands) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007193 LY_CHECK_GOTO(rc = moveto_op_comp(set2, &tmp1, op, result), cleanup);
Michal Vasko8abcecc2022-07-28 09:55:01 +02007194 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007195 LY_CHECK_GOTO(rc = moveto_op_comp(&tmp1, set2, op, result), cleanup);
Michal Vasko8abcecc2022-07-28 09:55:01 +02007196 }
7197
7198cleanup:
7199 lyxp_set_free_content(&tmp1);
7200 return rc;
7201}
7202
7203/**
7204 * @brief Move context @p set1 to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007205 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
7206 *
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007207 * @param[in] set1 Set acting as the first operand for @p op.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007208 * @param[in] set2 Set acting as the second operand for @p op.
7209 * @param[in] op Comparison operator to process.
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007210 * @param[out] result Result of the comparison.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007211 * @return LY_ERR
7212 */
7213static LY_ERR
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007214moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, ly_bool *result)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007215{
7216 /*
7217 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
7218 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
7219 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7220 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7221 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
7222 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7223 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7224 *
7225 * '=' or '!='
7226 * BOOLEAN + BOOLEAN
7227 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7228 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7229 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7230 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7231 * NUMBER + NUMBER
7232 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7233 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7234 * STRING + STRING
7235 *
7236 * '<=', '<', '>=', '>'
7237 * NUMBER + NUMBER
7238 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7239 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7240 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7241 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7242 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7243 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7244 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7245 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7246 */
Michal Vasko8abcecc2022-07-28 09:55:01 +02007247 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007248 LY_ERR rc;
7249
Michal Vasko03ff5a72019-09-11 13:49:33 +02007250 /* iterative evaluation with node-sets */
7251 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
7252 if (set1->type == LYXP_SET_NODE_SET) {
7253 for (i = 0; i < set1->used; ++i) {
Michal Vasko8abcecc2022-07-28 09:55:01 +02007254 /* evaluate for the single item */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007255 LY_CHECK_RET(moveto_op_comp_item(set1, i, set2, op, 0, result));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007256
7257 /* lazy evaluation until true */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007258 if (*result) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007259 return LY_SUCCESS;
7260 }
7261 }
7262 } else {
7263 for (i = 0; i < set2->used; ++i) {
Michal Vasko8abcecc2022-07-28 09:55:01 +02007264 /* evaluate for the single item */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007265 LY_CHECK_RET(moveto_op_comp_item(set2, i, set1, op, 1, result));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007266
7267 /* lazy evaluation until true */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007268 if (*result) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007269 return LY_SUCCESS;
7270 }
7271 }
7272 }
7273
Michal Vasko8abcecc2022-07-28 09:55:01 +02007274 /* false for all the nodes */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007275 *result = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007276 return LY_SUCCESS;
7277 }
7278
7279 /* first convert properly */
7280 if ((op[0] == '=') || (op[0] == '!')) {
7281 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007282 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
7283 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007284 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007285 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007286 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007287 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007288 LY_CHECK_RET(rc);
7289 } /* else we have 2 strings */
7290 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007291 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007292 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007293 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007294 LY_CHECK_RET(rc);
7295 }
7296
7297 assert(set1->type == set2->type);
7298
7299 /* compute result */
7300 if (op[0] == '=') {
7301 if (set1->type == LYXP_SET_BOOLEAN) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007302 *result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007303 } else if (set1->type == LYXP_SET_NUMBER) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007304 *result = (set1->val.num == set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007305 } else {
7306 assert(set1->type == LYXP_SET_STRING);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007307 *result = strcmp(set1->val.str, set2->val.str) ? 0 : 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007308 }
7309 } else if (op[0] == '!') {
7310 if (set1->type == LYXP_SET_BOOLEAN) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007311 *result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007312 } else if (set1->type == LYXP_SET_NUMBER) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007313 *result = (set1->val.num != set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007314 } else {
7315 assert(set1->type == LYXP_SET_STRING);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007316 *result = strcmp(set1->val.str, set2->val.str) ? 1 : 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007317 }
7318 } else {
7319 assert(set1->type == LYXP_SET_NUMBER);
7320 if (op[0] == '<') {
7321 if (op[1] == '=') {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007322 *result = (set1->val.num <= set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007323 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007324 *result = (set1->val.num < set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007325 }
7326 } else {
7327 if (op[1] == '=') {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007328 *result = (set1->val.num >= set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007329 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007330 *result = (set1->val.num > set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007331 }
7332 }
7333 }
7334
Michal Vasko03ff5a72019-09-11 13:49:33 +02007335 return LY_SUCCESS;
7336}
7337
7338/**
7339 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
7340 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
7341 *
7342 * @param[in,out] set1 Set to use for the result.
7343 * @param[in] set2 Set acting as the second operand for @p op.
7344 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007345 * @return LY_ERR
7346 */
7347static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007348moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007349{
7350 LY_ERR rc;
7351
7352 /* unary '-' */
7353 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007354 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007355 LY_CHECK_RET(rc);
7356 set1->val.num *= -1;
7357 lyxp_set_free(set2);
7358 return LY_SUCCESS;
7359 }
7360
7361 assert(set1 && set2);
7362
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007363 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007364 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007365 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007366 LY_CHECK_RET(rc);
7367
7368 switch (op[0]) {
7369 /* '+' */
7370 case '+':
7371 set1->val.num += set2->val.num;
7372 break;
7373
7374 /* '-' */
7375 case '-':
7376 set1->val.num -= set2->val.num;
7377 break;
7378
7379 /* '*' */
7380 case '*':
7381 set1->val.num *= set2->val.num;
7382 break;
7383
7384 /* 'div' */
7385 case 'd':
7386 set1->val.num /= set2->val.num;
7387 break;
7388
7389 /* 'mod' */
7390 case 'm':
7391 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
7392 break;
7393
7394 default:
7395 LOGINT_RET(set1->ctx);
7396 }
7397
7398 return LY_SUCCESS;
7399}
7400
Michal Vasko03ff5a72019-09-11 13:49:33 +02007401/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007402 * @brief Evaluate Predicate. Logs directly on error.
7403 *
Michal Vaskod3678892020-05-21 10:06:58 +02007404 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007405 *
7406 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007407 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02007408 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007409 * @param[in] options XPath options.
Michal Vasko49fec8e2022-05-24 10:28:33 +02007410 * @param[in] axis Axis to search on.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007411 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7412 */
7413static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02007414eval_predicate(const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set, uint32_t options, enum lyxp_axis axis)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007415{
7416 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02007417 uint32_t i, orig_exp, orig_pos, orig_size;
Michal Vasko5c4e5892019-11-14 12:31:38 +01007418 int32_t pred_in_ctx;
Michal Vasko88a9e802022-05-24 10:50:28 +02007419 ly_bool reverse_axis = 0;
aPiecekfff4dca2021-10-07 10:59:53 +02007420 struct lyxp_set set2 = {0};
Michal Vasko03ff5a72019-09-11 13:49:33 +02007421
7422 /* '[' */
aPiecek8b0cc152021-05-31 16:40:31 +02007423 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007424 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007425 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007426
aPiecek8b0cc152021-05-31 16:40:31 +02007427 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007428only_parse:
aPiecek8b0cc152021-05-31 16:40:31 +02007429 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007430 LY_CHECK_RET(rc);
7431 } else if (set->type == LYXP_SET_NODE_SET) {
7432 /* 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 +01007433 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007434
7435 /* empty set, nothing to evaluate */
7436 if (!set->used) {
7437 goto only_parse;
7438 }
7439
Michal Vasko49fec8e2022-05-24 10:28:33 +02007440 /* decide forward or reverse axis */
7441 switch (axis) {
7442 case LYXP_AXIS_ANCESTOR:
7443 case LYXP_AXIS_ANCESTOR_OR_SELF:
7444 case LYXP_AXIS_PRECEDING:
7445 case LYXP_AXIS_PRECEDING_SIBLING:
7446 reverse_axis = 1;
7447 break;
7448 case LYXP_AXIS_DESCENDANT:
7449 case LYXP_AXIS_DESCENDANT_OR_SELF:
7450 case LYXP_AXIS_FOLLOWING:
7451 case LYXP_AXIS_FOLLOWING_SIBLING:
7452 case LYXP_AXIS_PARENT:
7453 case LYXP_AXIS_CHILD:
7454 case LYXP_AXIS_SELF:
7455 case LYXP_AXIS_ATTRIBUTE:
7456 reverse_axis = 0;
7457 break;
7458 }
7459
Michal Vasko004d3152020-06-11 19:59:22 +02007460 orig_exp = *tok_idx;
Michal Vasko49fec8e2022-05-24 10:28:33 +02007461 orig_pos = reverse_axis ? set->used + 1 : 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007462 orig_size = set->used;
Michal Vasko39dbf352020-05-21 10:08:59 +02007463 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007464 set_init(&set2, set);
7465 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 +02007466
7467 /* remember the node context position for position() and context size for last() */
7468 orig_pos += reverse_axis ? -1 : 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007469
7470 set2.ctx_pos = orig_pos;
7471 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02007472 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007473
Michal Vasko004d3152020-06-11 19:59:22 +02007474 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007475 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02007476 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007477 return rc;
7478 }
7479
Michal Vasko49fec8e2022-05-24 10:28:33 +02007480 /* number is a proximity position */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007481 if (set2.type == LYXP_SET_NUMBER) {
7482 if ((long long)set2.val.num == orig_pos) {
7483 set2.val.num = 1;
7484 } else {
7485 set2.val.num = 0;
7486 }
7487 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007488 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007489
7490 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02007491 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01007492 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007493 }
7494 }
Michal Vasko2caefc12019-11-14 16:07:56 +01007495 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007496
7497 } else if (set->type == LYXP_SET_SCNODE_SET) {
7498 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007499 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007500 /* there is a currently-valid node */
7501 break;
7502 }
7503 }
7504 /* empty set, nothing to evaluate */
7505 if (i == set->used) {
7506 goto only_parse;
7507 }
7508
Michal Vasko004d3152020-06-11 19:59:22 +02007509 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007510
Michal Vasko03ff5a72019-09-11 13:49:33 +02007511 /* set special in_ctx to all the valid snodes */
7512 pred_in_ctx = set_scnode_new_in_ctx(set);
7513
7514 /* use the valid snodes one-by-one */
7515 for (i = 0; i < set->used; ++i) {
7516 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
7517 continue;
7518 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01007519 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007520
Michal Vasko004d3152020-06-11 19:59:22 +02007521 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007522
Michal Vasko004d3152020-06-11 19:59:22 +02007523 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007524 LY_CHECK_RET(rc);
7525
7526 set->val.scnodes[i].in_ctx = pred_in_ctx;
7527 }
7528
7529 /* restore the state as it was before the predicate */
7530 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007531 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007532 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007533 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007534 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007535 }
7536 }
7537
7538 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02007539 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007540 set_fill_set(&set2, set);
7541
Michal Vasko004d3152020-06-11 19:59:22 +02007542 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007543 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02007544 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007545 return rc;
7546 }
7547
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007548 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02007549 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02007550 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007551 }
Michal Vaskod3678892020-05-21 10:06:58 +02007552 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007553 }
7554
7555 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02007556 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
aPiecek8b0cc152021-05-31 16:40:31 +02007557 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007558 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007559 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007560
7561 return LY_SUCCESS;
7562}
7563
7564/**
Michal Vaskod3678892020-05-21 10:06:58 +02007565 * @brief Evaluate Literal. Logs directly on error.
7566 *
7567 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007568 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007569 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7570 */
7571static void
Michal Vaskodd528af2022-08-08 14:35:07 +02007572eval_literal(const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02007573{
7574 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007575 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02007576 set_fill_string(set, "", 0);
7577 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007578 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 +02007579 }
7580 }
7581 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007582 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007583 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007584}
7585
7586/**
Michal Vasko3d969ff2022-07-29 15:02:08 +02007587 * @brief Check that a nametest in a predicate matches a key node.
7588 *
7589 * @param[in] nametest Nametest to check.
7590 * @param[in] len Length of @p nametest.
7591 * @param[in] ctx_scnode Found schema node as the context for the predicate.
7592 * @param[in] set Context set.
7593 * @param[in] key Expected key node.
7594 * @return LY_SUCCESS on success,
7595 * @return LY_ENOT if a predicate could not be compiled.
7596 * @return LY_ERR on any error.
7597 */
7598static LY_ERR
7599eval_name_test_try_compile_predicate_key(const char *nametest, uint32_t len, const struct lysc_node *ctx_scnode,
7600 const struct lyxp_set *set, const struct lysc_node *key)
7601{
7602 const struct lys_module *mod;
7603
7604 /* prefix (module) */
7605 LY_CHECK_RET(moveto_resolve_model(&nametest, &len, set, ctx_scnode, &mod));
7606 if (mod != key->module) {
7607 return LY_ENOT;
7608 }
7609
7610 /* node name */
7611 if (ly_strncmp(key->name, nametest, len)) {
7612 return LY_ENOT;
7613 }
7614
7615 return LY_SUCCESS;
7616}
7617
7618/**
7619 * @brief Append a simple predicate for the node.
7620 *
7621 * @param[in] exp Full parsed XPath expression.
7622 * @param[in] tok_idx Predicate start index in @p exp.
7623 * @param[in] end_tok_idx Predicate end index in @p exp.
7624 * @param[in] ctx_scnode Found schema node as the context for the predicate.
7625 * @param[in] set Context set.
7626 * @param[in] pred_node Node with the value referenced in the predicate.
7627 * @param[in,out] pred Predicate to append to.
7628 * @param[in,out] pred_len Length of @p pred, is updated.
7629 * @return LY_SUCCESS on success,
7630 * @return LY_ENOT if a predicate could not be compiled.
7631 * @return LY_ERR on any error.
7632 */
7633static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02007634eval_name_test_try_compile_predicate_append(const struct lyxp_expr *exp, uint32_t tok_idx, uint32_t end_tok_idx,
Michal Vasko3d969ff2022-07-29 15:02:08 +02007635 const struct lysc_node *ctx_scnode, const struct lyxp_set *set, const struct lysc_node *pred_node, char **pred,
7636 uint32_t *pred_len)
7637{
7638 LY_ERR rc = LY_SUCCESS;
7639 uint32_t i;
7640 const struct lyd_node *siblings;
7641 struct lyd_node *ctx_node;
Michal Vasko5fb92a22022-08-02 09:21:37 +02007642 const struct lysc_node *sparent, *cur_scnode;
Michal Vasko3d969ff2022-07-29 15:02:08 +02007643 struct lyxp_expr *val_exp = NULL;
7644 struct lyxp_set set2 = {0};
7645 char quot;
7646
7647 /* duplicate the value expression */
7648 LY_CHECK_GOTO(rc = lyxp_expr_dup(set->ctx, exp, tok_idx, end_tok_idx, &val_exp), cleanup);
7649
7650 /* get its atoms */
Michal Vasko5fb92a22022-08-02 09:21:37 +02007651 cur_scnode = set->cur_node ? set->cur_node->schema : NULL;
7652 LY_CHECK_GOTO(rc = lyxp_atomize(set->ctx, val_exp, set->cur_mod, set->format, set->prefix_data, cur_scnode,
7653 ctx_scnode, &set2, LYXP_SCNODE), cleanup);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007654
7655 /* check whether we can compile a single predicate (evaluation result value is always the same) */
7656 for (i = 0; i < set2.used; ++i) {
7657 if ((set2.val.scnodes[i].type != LYXP_NODE_ELEM) || (set2.val.scnodes[i].in_ctx < LYXP_SET_SCNODE_ATOM_NODE)) {
7658 /* skip root and context node */
7659 continue;
7660 }
7661
Michal Vasko5fb92a22022-08-02 09:21:37 +02007662 /* 1) context node descendants are traversed - do best-effort detection of the value dependency on the
7663 * context node instance */
7664 if ((set2.val.scnodes[i].axis == LYXP_AXIS_CHILD) && (set2.val.scnodes[i].scnode->parent == ctx_scnode)) {
7665 /* 1.1) context node child was accessed on the child axis, certain dependency */
Michal Vasko3d969ff2022-07-29 15:02:08 +02007666 rc = LY_ENOT;
7667 goto cleanup;
7668 }
Michal Vasko5fb92a22022-08-02 09:21:37 +02007669 if ((set2.val.scnodes[i].axis == LYXP_AXIS_DESCENDANT) || (set2.val.scnodes[i].axis == LYXP_AXIS_DESCENDANT_OR_SELF)) {
7670 for (sparent = set2.val.scnodes[i].scnode->parent; sparent && (sparent != ctx_scnode); sparent = sparent->parent) {}
7671 if (sparent) {
7672 /* 1.2) context node descendant was accessed on the descendant axis, probable dependency */
7673 rc = LY_ENOT;
7674 goto cleanup;
7675 }
7676 }
Michal Vasko3d969ff2022-07-29 15:02:08 +02007677
Michal Vasko5fb92a22022-08-02 09:21:37 +02007678 /* 2) multi-instance nodes (list or leaf-list) are traversed - all the instances need to be considered,
7679 * but the current node can be safely ignored, it is always the same data instance */
7680 if ((set2.val.scnodes[i].scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) && (cur_scnode != set2.val.scnodes[i].scnode)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007681 rc = LY_ENOT;
7682 goto cleanup;
7683 }
Michal Vasko3d969ff2022-07-29 15:02:08 +02007684 }
7685
7686 /* get any data instance of the context node, we checked it makes no difference */
7687 siblings = set->val.nodes[0].node ? lyd_child(set->val.nodes[0].node) : set->tree;
7688 LY_CHECK_GOTO(rc = lyd_find_sibling_schema(siblings, ctx_scnode, &ctx_node), cleanup);
7689
7690 /* evaluate the value subexpression with the root context node */
7691 lyxp_set_free_content(&set2);
7692 LY_CHECK_GOTO(rc = lyxp_eval(set->ctx, val_exp, set->cur_mod, set->format, set->prefix_data, set->cur_node,
7693 ctx_node, set->tree, NULL, &set2, 0), cleanup);
7694
7695 /* cast it into a string */
7696 LY_CHECK_GOTO(rc = lyxp_set_cast(&set2, LYXP_SET_STRING), cleanup);
7697
7698 /* append the JSON predicate */
7699 *pred = ly_realloc(*pred, *pred_len + 1 + strlen(pred_node->name) + 2 + strlen(set2.val.str) + 3);
7700 LY_CHECK_ERR_GOTO(!*pred, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7701 quot = strchr(set2.val.str, '\'') ? '\"' : '\'';
7702 *pred_len += sprintf(*pred + *pred_len, "[%s=%c%s%c]", pred_node->name, quot, set2.val.str, quot);
7703
7704cleanup:
7705 lyxp_expr_free(set->ctx, val_exp);
7706 lyxp_set_free_content(&set2);
7707 return rc;
7708}
7709
7710/**
Michal Vasko004d3152020-06-11 19:59:22 +02007711 * @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 +02007712 *
Michal Vasko004d3152020-06-11 19:59:22 +02007713 * @param[in] exp Full parsed XPath expression.
7714 * @param[in,out] tok_idx Index in @p exp at the beginning of the predicate, is updated on success.
Michal Vasko3d969ff2022-07-29 15:02:08 +02007715 * @param[in] ctx_scnode Found schema node as the context for the predicate.
7716 * @param[in] set Context set.
Michal Vasko004d3152020-06-11 19:59:22 +02007717 * @param[out] predicates Parsed predicates.
Michal Vasko004d3152020-06-11 19:59:22 +02007718 * @return LY_SUCCESS on success,
Michal Vasko3d969ff2022-07-29 15:02:08 +02007719 * @return LY_ENOT if a predicate could not be compiled.
Michal Vasko004d3152020-06-11 19:59:22 +02007720 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02007721 */
7722static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02007723eval_name_test_try_compile_predicates(const struct lyxp_expr *exp, uint32_t *tok_idx, const struct lysc_node *ctx_scnode,
Michal Vasko90189962023-02-28 12:10:34 +01007724 const struct lyxp_set *set, struct ly_path_predicate **predicates)
Michal Vaskod3678892020-05-21 10:06:58 +02007725{
Michal Vasko3d969ff2022-07-29 15:02:08 +02007726 LY_ERR rc = LY_SUCCESS;
Michal Vaskod4a6d042022-12-08 08:34:29 +01007727 uint32_t e_idx, val_start_idx, pred_idx = 0, temp_lo = 0, pred_len = 0, nested_pred;
Michal Vaskod3678892020-05-21 10:06:58 +02007728 const struct lysc_node *key;
Michal Vasko3d969ff2022-07-29 15:02:08 +02007729 char *pred = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02007730 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02007731
Michal Vasko3d969ff2022-07-29 15:02:08 +02007732 assert(ctx_scnode->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02007733
Michal Vasko3d969ff2022-07-29 15:02:08 +02007734 /* turn logging off */
Michal Vaskod4a6d042022-12-08 08:34:29 +01007735 ly_temp_log_options(&temp_lo);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007736
7737 if (ctx_scnode->nodetype == LYS_LIST) {
7738 /* check for predicates "[key1=...][key2=...]..." */
7739
Michal Vasko004d3152020-06-11 19:59:22 +02007740 /* get key count */
Michal Vasko3d969ff2022-07-29 15:02:08 +02007741 if (ctx_scnode->flags & LYS_KEYLESS) {
7742 rc = LY_ENOT;
7743 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02007744 }
Michal Vaskod3678892020-05-21 10:06:58 +02007745
Michal Vasko004d3152020-06-11 19:59:22 +02007746 /* learn where the predicates end */
7747 e_idx = *tok_idx;
Michal Vasko3d969ff2022-07-29 15:02:08 +02007748 for (key = lysc_node_child(ctx_scnode); key && (key->flags & LYS_KEY); key = key->next) {
Michal Vasko004d3152020-06-11 19:59:22 +02007749 /* '[' */
7750 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007751 rc = LY_ENOT;
7752 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02007753 }
7754 ++e_idx;
7755
Michal Vasko3354d272021-04-06 09:40:06 +02007756 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_NAMETEST)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007757 /* not a key */
7758 rc = LY_ENOT;
7759 goto cleanup;
Michal Vasko3354d272021-04-06 09:40:06 +02007760 }
7761
Michal Vasko3d969ff2022-07-29 15:02:08 +02007762 /* check key */
7763 LY_CHECK_GOTO(rc = eval_name_test_try_compile_predicate_key(exp->expr + exp->tok_pos[e_idx],
7764 exp->tok_len[e_idx], ctx_scnode, set, key), cleanup);
7765
7766 ++e_idx;
7767
7768 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_OPER_EQUAL)) {
7769 /* not '=' */
7770 rc = LY_ENOT;
7771 goto cleanup;
7772 }
7773 ++e_idx;
7774
7775 /* value start */
7776 val_start_idx = e_idx;
7777
Michal Vasko004d3152020-06-11 19:59:22 +02007778 /* ']' */
Michal Vasko3ef7e252022-11-16 08:29:49 +01007779 nested_pred = 1;
7780 do {
7781 ++e_idx;
7782
7783 if ((nested_pred == 1) && !lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_OPER_LOG)) {
Michal Vaskob8ee3562022-08-02 10:43:17 +02007784 /* higher priority than '=' */
7785 rc = LY_ENOT;
7786 goto cleanup;
Michal Vasko3ef7e252022-11-16 08:29:49 +01007787 } else if (!lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
7788 /* nested predicate */
7789 ++nested_pred;
7790 } else if (!lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
7791 /* predicate end */
7792 --nested_pred;
Michal Vaskob8ee3562022-08-02 10:43:17 +02007793 }
Michal Vasko3ef7e252022-11-16 08:29:49 +01007794 } while (nested_pred);
Michal Vasko004d3152020-06-11 19:59:22 +02007795
Michal Vasko3d969ff2022-07-29 15:02:08 +02007796 /* try to evaluate the value */
7797 LY_CHECK_GOTO(rc = eval_name_test_try_compile_predicate_append(exp, val_start_idx, e_idx - 1, ctx_scnode,
7798 set, key, &pred, &pred_len), cleanup);
7799
7800 ++e_idx;
Michal Vasko004d3152020-06-11 19:59:22 +02007801 }
Michal Vasko004d3152020-06-11 19:59:22 +02007802 } else {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007803 /* check for predicate "[.=...]" */
7804
Michal Vasko004d3152020-06-11 19:59:22 +02007805 /* learn just where this single predicate ends */
7806 e_idx = *tok_idx;
7807
Michal Vaskod3678892020-05-21 10:06:58 +02007808 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02007809 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007810 rc = LY_ENOT;
7811 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02007812 }
7813 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02007814
Michal Vasko3354d272021-04-06 09:40:06 +02007815 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_DOT)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007816 /* not the node value */
7817 rc = LY_ENOT;
7818 goto cleanup;
Michal Vasko3354d272021-04-06 09:40:06 +02007819 }
Michal Vasko3d969ff2022-07-29 15:02:08 +02007820 ++e_idx;
7821
7822 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_OPER_EQUAL)) {
7823 /* not '=' */
7824 rc = LY_ENOT;
7825 goto cleanup;
7826 }
7827 ++e_idx;
7828
7829 /* value start */
7830 val_start_idx = e_idx;
Michal Vasko3354d272021-04-06 09:40:06 +02007831
Michal Vaskod3678892020-05-21 10:06:58 +02007832 /* ']' */
Michal Vasko31f19632022-11-16 09:38:40 +01007833 nested_pred = 1;
7834 do {
7835 ++e_idx;
7836
7837 if ((nested_pred == 1) && !lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_OPER_LOG)) {
Michal Vaskob8ee3562022-08-02 10:43:17 +02007838 /* higher priority than '=' */
7839 rc = LY_ENOT;
7840 goto cleanup;
Michal Vasko31f19632022-11-16 09:38:40 +01007841 } else if (!lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
7842 /* nested predicate */
7843 ++nested_pred;
7844 } else if (!lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
7845 /* predicate end */
7846 --nested_pred;
Michal Vaskob8ee3562022-08-02 10:43:17 +02007847 }
Michal Vasko31f19632022-11-16 09:38:40 +01007848 } while (nested_pred);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007849
7850 /* try to evaluate the value */
7851 LY_CHECK_GOTO(rc = eval_name_test_try_compile_predicate_append(exp, val_start_idx, e_idx - 1, ctx_scnode, set,
7852 ctx_scnode, &pred, &pred_len), cleanup);
7853
Michal Vasko004d3152020-06-11 19:59:22 +02007854 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02007855 }
7856
Michal Vasko004d3152020-06-11 19:59:22 +02007857 /* parse the predicate(s) */
Michal Vasko3d969ff2022-07-29 15:02:08 +02007858 LY_CHECK_GOTO(rc = ly_path_parse_predicate(set->ctx, ctx_scnode, pred, pred_len, LY_PATH_PREFIX_OPTIONAL,
7859 LY_PATH_PRED_SIMPLE, &exp2), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02007860
7861 /* compile */
Michal Vasko3d969ff2022-07-29 15:02:08 +02007862 rc = ly_path_compile_predicate(set->ctx, set->cur_node ? set->cur_node->schema : NULL, set->cur_mod, ctx_scnode, exp2,
Michal Vasko90189962023-02-28 12:10:34 +01007863 &pred_idx, LY_VALUE_JSON, NULL, predicates);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007864 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02007865
7866 /* success, the predicate must include all the needed information for hash-based search */
7867 *tok_idx = e_idx;
7868
7869cleanup:
Michal Vaskod4a6d042022-12-08 08:34:29 +01007870 ly_temp_log_options(NULL);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007871 lyxp_expr_free(set->ctx, exp2);
7872 free(pred);
7873 return rc;
Michal Vaskod3678892020-05-21 10:06:58 +02007874}
7875
7876/**
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007877 * @brief Search for/check the next schema node that could be the only matching schema node meaning the
7878 * data node(s) could be found using a single hash-based search.
7879 *
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007880 * @param[in] ctx libyang context.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007881 * @param[in] node Next context node to check.
7882 * @param[in] name Expected node name.
7883 * @param[in] name_len Length of @p name.
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007884 * @param[in] moveto_mod Expected node module, can be NULL for JSON format with no prefix.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007885 * @param[in] root_type XPath root type.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007886 * @param[in] format Prefix format.
7887 * @param[in,out] found Previously found node, is updated.
7888 * @return LY_SUCCESS on success,
7889 * @return LY_ENOT if the whole check failed and hashes cannot be used.
7890 */
7891static LY_ERR
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007892eval_name_test_with_predicate_get_scnode(const struct ly_ctx *ctx, const struct lyd_node *node, const char *name,
Michal Vaskodd528af2022-08-08 14:35:07 +02007893 uint32_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 +02007894 const struct lysc_node **found)
7895{
7896 const struct lysc_node *scnode;
7897 const struct lys_module *mod;
7898 uint32_t idx = 0;
7899
Radek Krejci8df109d2021-04-23 12:19:08 +02007900 assert((format == LY_VALUE_JSON) || moveto_mod);
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007901
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007902continue_search:
Michal Vasko7d1d0912020-10-16 08:38:30 +02007903 scnode = NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007904 if (!node) {
Radek Krejci8df109d2021-04-23 12:19:08 +02007905 if ((format == LY_VALUE_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007906 /* search all modules for a single match */
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007907 while ((mod = ly_ctx_get_module_iter(ctx, &idx))) {
Michal Vasko35a3b1d2021-07-14 09:34:16 +02007908 if (!mod->implemented) {
7909 continue;
7910 }
7911
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007912 scnode = lys_find_child(NULL, mod, name, name_len, 0, 0);
7913 if (scnode) {
7914 /* we have found a match */
7915 break;
7916 }
7917 }
7918
Michal Vasko7d1d0912020-10-16 08:38:30 +02007919 if (!scnode) {
7920 /* all modules searched */
7921 idx = 0;
7922 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007923 } else {
7924 /* search in top-level */
7925 scnode = lys_find_child(NULL, moveto_mod, name, name_len, 0, 0);
7926 }
7927 } else if (!*found || (lysc_data_parent(*found) != node->schema)) {
Radek Krejci8df109d2021-04-23 12:19:08 +02007928 if ((format == LY_VALUE_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007929 /* we must adjust the module to inherit the one from the context node */
7930 moveto_mod = node->schema->module;
7931 }
7932
7933 /* search in children, do not repeat the same search */
7934 scnode = lys_find_child(node->schema, moveto_mod, name, name_len, 0, 0);
Michal Vasko7d1d0912020-10-16 08:38:30 +02007935 } /* else skip redundant search */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007936
7937 /* additional context check */
7938 if (scnode && (root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
7939 scnode = NULL;
7940 }
7941
7942 if (scnode) {
7943 if (*found) {
7944 /* we found a schema node with the same name but at different level, give up, too complicated
7945 * (more hash-based searches would be required, not supported) */
7946 return LY_ENOT;
7947 } else {
7948 /* remember the found schema node and continue to make sure it can be used */
7949 *found = scnode;
7950 }
7951 }
7952
7953 if (idx) {
7954 /* continue searching all the following models */
7955 goto continue_search;
7956 }
7957
7958 return LY_SUCCESS;
7959}
7960
7961/**
Michal Vasko4ad69e72021-10-26 16:25:55 +02007962 * @brief Generate message when no matching schema nodes were found for a path segment.
7963 *
7964 * @param[in] set XPath set.
7965 * @param[in] scparent Previous schema parent in the context, if only one.
7966 * @param[in] ncname XPath NCName being evaluated.
7967 * @param[in] ncname_len Length of @p ncname.
7968 * @param[in] expr Whole XPath expression.
7969 * @param[in] options XPath options.
7970 */
7971static void
7972eval_name_test_scnode_no_match_msg(struct lyxp_set *set, const struct lyxp_set_scnode *scparent, const char *ncname,
Michal Vaskodd528af2022-08-08 14:35:07 +02007973 uint32_t ncname_len, const char *expr, uint32_t options)
Michal Vasko4ad69e72021-10-26 16:25:55 +02007974{
7975 const char *format;
7976 char *path = NULL, *ppath = NULL;
7977
7978 path = lysc_path(set->cur_scnode, LYSC_PATH_LOG, NULL, 0);
7979 if (scparent) {
7980 /* generate path for the parent */
7981 if (scparent->type == LYXP_NODE_ELEM) {
7982 ppath = lysc_path(scparent->scnode, LYSC_PATH_LOG, NULL, 0);
7983 } else if (scparent->type == LYXP_NODE_ROOT) {
7984 ppath = strdup("<root>");
7985 } else if (scparent->type == LYXP_NODE_ROOT_CONFIG) {
7986 ppath = strdup("<config-root>");
7987 }
7988 }
7989 if (ppath) {
7990 format = "Schema node \"%.*s\" for parent \"%s\" not found; in expr \"%.*s\" with context node \"%s\".";
7991 if (options & LYXP_SCNODE_ERROR) {
7992 LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path);
7993 } else {
7994 LOGWRN(set->ctx, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path);
7995 }
7996 } else {
7997 format = "Schema node \"%.*s\" not found; in expr \"%.*s\" with context node \"%s\".";
7998 if (options & LYXP_SCNODE_ERROR) {
7999 LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path);
8000 } else {
8001 LOGWRN(set->ctx, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path);
8002 }
8003 }
8004 free(path);
8005 free(ppath);
8006}
8007
8008/**
Michal Vaskod3678892020-05-21 10:06:58 +02008009 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
8010 *
8011 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
8012 * [6] NodeTest ::= NameTest | NodeType '(' ')'
8013 * [7] NameTest ::= '*' | NCName ':' '*' | QName
8014 *
8015 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008016 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko49fec8e2022-05-24 10:28:33 +02008017 * @param[in] axis What axis to search on.
Michal Vaskod3678892020-05-21 10:06:58 +02008018 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02008019 * @param[in,out] set Context and result set.
Michal Vaskod3678892020-05-21 10:06:58 +02008020 * @param[in] options XPath options.
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008021 * @return LY_ERR (LY_EINCOMPLETE on unresolved when, LY_ENOT for not found schema node)
Michal Vaskod3678892020-05-21 10:06:58 +02008022 */
8023static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008024eval_name_test_with_predicate(const struct lyxp_expr *exp, uint32_t *tok_idx, enum lyxp_axis axis, ly_bool all_desc,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008025 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02008026{
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008027 LY_ERR rc = LY_SUCCESS, r;
Michal Vasko004d3152020-06-11 19:59:22 +02008028 const char *ncname, *ncname_dict = NULL;
Michal Vasko56c008c2022-07-29 14:57:47 +02008029 uint32_t i, ncname_len;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008030 const struct lys_module *moveto_mod = NULL;
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008031 const struct lysc_node *scnode = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02008032 struct ly_path_predicate *predicates = NULL;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008033 int scnode_skip_pred = 0;
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]);
Michal Vasko004d3152020-06-11 19:59:22 +02008037 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008038
aPiecek8b0cc152021-05-31 16:40:31 +02008039 if (options & LYXP_SKIP_EXPR) {
Michal Vaskod3678892020-05-21 10:06:58 +02008040 goto moveto;
8041 }
8042
Michal Vasko004d3152020-06-11 19:59:22 +02008043 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
8044 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02008045
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008046 if ((ncname[0] == '*') && (ncname_len == 1)) {
8047 /* all nodes will match */
8048 goto moveto;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008049 }
8050
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008051 /* parse (and skip) module name */
8052 rc = moveto_resolve_model(&ncname, &ncname_len, set, NULL, &moveto_mod);
Michal Vaskod3678892020-05-21 10:06:58 +02008053 LY_CHECK_GOTO(rc, cleanup);
8054
Michal Vasko49fec8e2022-05-24 10:28:33 +02008055 if ((ncname[0] == '*') && (ncname_len == 1)) {
8056 /* all nodes from the module will match */
8057 goto moveto;
8058 }
8059
8060 if (((set->format == LY_VALUE_JSON) || moveto_mod) && (axis == LYXP_AXIS_CHILD) && !all_desc &&
8061 (set->type == LYXP_SET_NODE_SET)) {
Michal Vaskod3678892020-05-21 10:06:58 +02008062 /* find the matching schema node in some parent in the context */
Michal Vasko56c008c2022-07-29 14:57:47 +02008063 for (i = 0; i < set->used; ++i) {
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008064 if (eval_name_test_with_predicate_get_scnode(set->ctx, set->val.nodes[i].node, ncname, ncname_len,
8065 moveto_mod, set->root_type, set->format, &scnode)) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008066 /* check failed */
8067 scnode = NULL;
8068 break;
Michal Vaskod3678892020-05-21 10:06:58 +02008069 }
8070 }
8071
Michal Vasko004d3152020-06-11 19:59:22 +02008072 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
8073 /* try to create the predicates */
Michal Vasko90189962023-02-28 12:10:34 +01008074 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set, &predicates)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008075 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02008076 scnode = NULL;
8077 }
8078 }
8079 }
8080
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008081 if (!scnode) {
8082 /* we are not able to match based on a schema node and not all the modules match ("*"),
Michal Vasko004d3152020-06-11 19:59:22 +02008083 * use dictionary for efficient comparison */
Radek Krejci011e4aa2020-09-04 15:22:31 +02008084 LY_CHECK_GOTO(rc = lydict_insert(set->ctx, ncname, ncname_len, &ncname_dict), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008085 }
8086
8087moveto:
8088 /* move to the attribute(s), data node(s), or schema node(s) */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008089 if (axis == LYXP_AXIS_ATTRIBUTE) {
aPiecek8b0cc152021-05-31 16:40:31 +02008090 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008091 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskod3678892020-05-21 10:06:58 +02008092 } else {
8093 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01008094 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008095 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008096 rc = moveto_attr(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008097 }
8098 LY_CHECK_GOTO(rc, cleanup);
8099 }
8100 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008101 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008102 const struct lyxp_set_scnode *scparent = NULL;
Michal Vasko56c008c2022-07-29 14:57:47 +02008103 ly_bool found = 0;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008104
8105 /* remember parent if there is only one, to print in the warning */
8106 for (i = 0; i < set->used; ++i) {
8107 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
8108 if (!scparent) {
8109 /* remember the context node */
8110 scparent = &set->val.scnodes[i];
8111 } else {
8112 /* several context nodes, no reasonable error possible */
8113 scparent = NULL;
8114 break;
8115 }
8116 }
8117 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02008118
Michal Vasko49fec8e2022-05-24 10:28:33 +02008119 if (all_desc && (axis == LYXP_AXIS_CHILD)) {
8120 /* efficient evaluation that does not add all the descendants into the set */
8121 rc = moveto_scnode_alldesc_child(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008122 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008123 if (all_desc) {
8124 /* "//" == "/descendant-or-self::node()/" */
8125 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8126 LY_CHECK_GOTO(rc, cleanup);
8127 }
8128 rc = moveto_scnode(set, moveto_mod, ncname_dict, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008129 }
8130 LY_CHECK_GOTO(rc, cleanup);
8131
Michal Vasko56c008c2022-07-29 14:57:47 +02008132 i = set->used;
8133 do {
8134 --i;
Michal Vasko1a09b212021-05-06 13:00:10 +02008135 if (set->val.scnodes[i].in_ctx > LYXP_SET_SCNODE_ATOM_NODE) {
Michal Vasko56c008c2022-07-29 14:57:47 +02008136 found = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008137 break;
8138 }
Michal Vasko56c008c2022-07-29 14:57:47 +02008139 } while (i);
8140 if (!found) {
Michal Vasko4ad69e72021-10-26 16:25:55 +02008141 /* generate message */
8142 eval_name_test_scnode_no_match_msg(set, scparent, ncname, ncname_len, exp->expr, options);
8143
8144 if (options & LYXP_SCNODE_ERROR) {
8145 /* error */
8146 rc = LY_EVALID;
8147 goto cleanup;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008148 }
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008149
8150 /* skip the predicates and the rest of this path to not generate invalid warnings */
8151 rc = LY_ENOT;
8152 scnode_skip_pred = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008153 }
8154 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008155 if (all_desc && (axis == LYXP_AXIS_CHILD)) {
8156 /* efficient evaluation */
8157 rc = moveto_node_alldesc_child(set, moveto_mod, ncname_dict, options);
8158 } else if (scnode && (axis == LYXP_AXIS_CHILD)) {
8159 /* we can find the child nodes using hashes */
8160 rc = moveto_node_hash_child(set, scnode, predicates, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008161 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008162 if (all_desc) {
8163 /* "//" == "/descendant-or-self::node()/" */
8164 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8165 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008166 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02008167 rc = moveto_node(set, moveto_mod, ncname_dict, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008168 }
8169 LY_CHECK_GOTO(rc, cleanup);
8170 }
8171 }
8172
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008173 if (scnode_skip_pred) {
8174 /* skip predicates */
8175 options |= LYXP_SKIP_EXPR;
8176 }
8177
Michal Vaskod3678892020-05-21 10:06:58 +02008178 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008179 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008180 r = eval_predicate(exp, tok_idx, set, options, axis);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008181 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008182 }
8183
8184cleanup:
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008185 if (scnode_skip_pred) {
8186 /* restore options */
8187 options &= ~LYXP_SKIP_EXPR;
8188 }
aPiecek8b0cc152021-05-31 16:40:31 +02008189 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008190 lydict_remove(set->ctx, ncname_dict);
Michal Vasko90189962023-02-28 12:10:34 +01008191 ly_path_predicates_free(set->ctx, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02008192 }
Michal Vaskod3678892020-05-21 10:06:58 +02008193 return rc;
8194}
8195
8196/**
8197 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
8198 *
8199 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
8200 * [6] NodeTest ::= NameTest | NodeType '(' ')'
8201 * [8] NodeType ::= 'text' | 'node'
8202 *
8203 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008204 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko49fec8e2022-05-24 10:28:33 +02008205 * @param[in] axis Axis to search on.
8206 * @param[in] all_desc Whether to search all the descendants or axis only.
aPiecek8b0cc152021-05-31 16:40:31 +02008207 * @param[in,out] set Context and result set.
Michal Vaskod3678892020-05-21 10:06:58 +02008208 * @param[in] options XPath options.
8209 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8210 */
8211static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008212eval_node_type_with_predicate(const struct lyxp_expr *exp, uint32_t *tok_idx, enum lyxp_axis axis, ly_bool all_desc,
Radek Krejci1deb5be2020-08-26 16:43:36 +02008213 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02008214{
8215 LY_ERR rc;
8216
Michal Vaskod3678892020-05-21 10:06:58 +02008217 (void)all_desc;
8218
aPiecek8b0cc152021-05-31 16:40:31 +02008219 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008220 assert(exp->tok_len[*tok_idx] == 4);
Michal Vasko49fec8e2022-05-24 10:28:33 +02008221 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
8222 rc = xpath_pi_node(set, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008223 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008224 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
8225 rc = xpath_pi_text(set, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008226 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02008227 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008228 }
aPiecek8b0cc152021-05-31 16:40:31 +02008229 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008230 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008231 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008232
8233 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02008234 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
aPiecek8b0cc152021-05-31 16:40:31 +02008235 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008236 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008237 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008238
8239 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02008240 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02008241 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008242 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008243 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008244
8245 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008246 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008247 rc = eval_predicate(exp, tok_idx, set, options, axis);
Michal Vaskod3678892020-05-21 10:06:58 +02008248 LY_CHECK_RET(rc);
8249 }
8250
8251 return LY_SUCCESS;
8252}
8253
8254/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02008255 * @brief Evaluate RelativeLocationPath. Logs directly on error.
8256 *
8257 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
8258 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02008259 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02008260 *
8261 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008262 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008263 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02008264 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008265 * @param[in] options XPath options.
8266 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
8267 */
8268static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008269eval_relative_location_path(const struct lyxp_expr *exp, uint32_t *tok_idx, ly_bool all_desc, struct lyxp_set *set,
Michal Vasko40308e72020-10-20 16:38:40 +02008270 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008271{
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008272 LY_ERR rc = LY_SUCCESS;
Michal Vasko49fec8e2022-05-24 10:28:33 +02008273 enum lyxp_axis axis;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008274 int scnode_skip_path = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008275
8276 goto step;
8277 do {
8278 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02008279 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008280 all_desc = 0;
8281 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008282 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008283 all_desc = 1;
8284 }
aPiecek8b0cc152021-05-31 16:40:31 +02008285 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008286 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008287 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008288
8289step:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008290 /* AxisSpecifier */
8291 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AXISNAME) {
8292 axis = str2axis(exp->expr + exp->tok_pos[*tok_idx], exp->tok_len[*tok_idx]);
Michal Vaskod3678892020-05-21 10:06:58 +02008293
aPiecek8b0cc152021-05-31 16:40:31 +02008294 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008295 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8296 ++(*tok_idx);
8297
8298 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_DCOLON);
8299 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
8300 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8301 ++(*tok_idx);
8302 } else if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
8303 axis = LYXP_AXIS_ATTRIBUTE;
8304
8305 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
8306 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008307 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008308 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008309 /* default */
8310 axis = LYXP_AXIS_CHILD;
Michal Vaskod3678892020-05-21 10:06:58 +02008311 }
8312
Michal Vasko49fec8e2022-05-24 10:28:33 +02008313 /* NodeTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008314 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008315 case LYXP_TOKEN_DOT:
8316 /* evaluate '.' */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008317 if (!(options & LYXP_SKIP_EXPR)) {
8318 if (((options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_SCNODE_SET)) ||
8319 (!(options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_NODE_SET))) {
8320 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
8321 rc = LY_EVALID;
8322 goto cleanup;
8323 }
8324
8325 if (all_desc) {
8326 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8327 LY_CHECK_GOTO(rc, cleanup);
8328 }
8329 rc = xpath_pi_node(set, LYXP_AXIS_SELF, options);
8330 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008331 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008332 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008333 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008334 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008335 break;
8336
8337 case LYXP_TOKEN_DDOT:
8338 /* evaluate '..' */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008339 if (!(options & LYXP_SKIP_EXPR)) {
8340 if (((options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_SCNODE_SET)) ||
8341 (!(options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_NODE_SET))) {
8342 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
8343 rc = LY_EVALID;
8344 goto cleanup;
8345 }
8346
8347 if (all_desc) {
8348 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8349 LY_CHECK_GOTO(rc, cleanup);
8350 }
8351 rc = xpath_pi_node(set, LYXP_AXIS_PARENT, options);
8352 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008353 }
aPiecek8b0cc152021-05-31 16:40:31 +02008354 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008355 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008356 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008357 break;
8358
Michal Vasko03ff5a72019-09-11 13:49:33 +02008359 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02008360 /* evaluate NameTest Predicate* */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008361 rc = eval_name_test_with_predicate(exp, tok_idx, axis, all_desc, set, options);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008362 if (rc == LY_ENOT) {
8363 assert(options & LYXP_SCNODE_ALL);
8364 /* skip the rest of this path */
8365 rc = LY_SUCCESS;
8366 scnode_skip_path = 1;
8367 options |= LYXP_SKIP_EXPR;
8368 }
8369 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008370 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008371
Michal Vaskod3678892020-05-21 10:06:58 +02008372 case LYXP_TOKEN_NODETYPE:
8373 /* evaluate NodeType Predicate* */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008374 rc = eval_node_type_with_predicate(exp, tok_idx, axis, all_desc, set, options);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008375 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008376 break;
8377
8378 default:
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008379 LOGINT(set->ctx);
8380 rc = LY_EINT;
8381 goto cleanup;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008382 }
Michal Vasko004d3152020-06-11 19:59:22 +02008383 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008384
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008385cleanup:
8386 if (scnode_skip_path) {
8387 options &= ~LYXP_SKIP_EXPR;
8388 }
8389 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008390}
8391
8392/**
8393 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
8394 *
8395 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
8396 *
8397 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008398 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008399 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008400 * @param[in] options XPath options.
8401 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8402 */
8403static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008404eval_absolute_location_path(const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008405{
Radek Krejci857189e2020-09-01 13:26:36 +02008406 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008407
aPiecek8b0cc152021-05-31 16:40:31 +02008408 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008409 /* no matter what tokens follow, we need to be at the root */
Michal Vaskob0099a92020-08-31 14:55:23 +02008410 LY_CHECK_RET(moveto_root(set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008411 }
8412
8413 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02008414 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008415 /* evaluate '/' - deferred */
8416 all_desc = 0;
aPiecek8b0cc152021-05-31 16:40:31 +02008417 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008418 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008419 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008420
Michal Vasko004d3152020-06-11 19:59:22 +02008421 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008422 return LY_SUCCESS;
8423 }
Michal Vasko004d3152020-06-11 19:59:22 +02008424 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008425 case LYXP_TOKEN_DOT:
8426 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008427 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008428 case LYXP_TOKEN_AT:
8429 case LYXP_TOKEN_NAMETEST:
8430 case LYXP_TOKEN_NODETYPE:
Michal Vaskob0099a92020-08-31 14:55:23 +02008431 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008432 break;
8433 default:
8434 break;
8435 }
8436
Michal Vasko03ff5a72019-09-11 13:49:33 +02008437 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02008438 /* '//' RelativeLocationPath */
Michal Vasko03ff5a72019-09-11 13:49:33 +02008439 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
8440 all_desc = 1;
aPiecek8b0cc152021-05-31 16:40:31 +02008441 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008442 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008443 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008444
Michal Vaskob0099a92020-08-31 14:55:23 +02008445 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008446 }
8447
8448 return LY_SUCCESS;
8449}
8450
8451/**
8452 * @brief Evaluate FunctionCall. Logs directly on error.
8453 *
Michal Vaskod3678892020-05-21 10:06:58 +02008454 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02008455 *
8456 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008457 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008458 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008459 * @param[in] options XPath options.
8460 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8461 */
8462static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008463eval_function_call(const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008464{
8465 LY_ERR rc;
Michal Vasko69730152020-10-09 16:30:07 +02008466
Michal Vaskodd528af2022-08-08 14:35:07 +02008467 LY_ERR (*xpath_func)(struct lyxp_set **, uint32_t, struct lyxp_set *, uint32_t) = NULL;
8468 uint32_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008469 struct lyxp_set **args = NULL, **args_aux;
8470
aPiecek8b0cc152021-05-31 16:40:31 +02008471 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008472 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02008473 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008474 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02008475 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008476 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02008477 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008478 xpath_func = &xpath_sum;
8479 }
8480 break;
8481 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02008482 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008483 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02008484 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008485 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02008486 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008487 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02008488 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008489 xpath_func = &xpath_true;
8490 }
8491 break;
8492 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02008493 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008494 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02008495 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008496 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02008497 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008498 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02008499 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008500 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02008501 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008502 xpath_func = &xpath_deref;
8503 }
8504 break;
8505 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02008506 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008507 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02008508 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008509 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02008510 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008511 xpath_func = &xpath_string;
8512 }
8513 break;
8514 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02008515 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008516 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02008517 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008518 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02008519 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008520 xpath_func = &xpath_current;
8521 }
8522 break;
8523 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02008524 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008525 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02008526 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008527 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02008528 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008529 xpath_func = &xpath_re_match;
8530 }
8531 break;
8532 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02008533 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008534 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02008535 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008536 xpath_func = &xpath_translate;
8537 }
8538 break;
8539 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02008540 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008541 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02008542 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008543 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02008544 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008545 xpath_func = &xpath_bit_is_set;
8546 }
8547 break;
8548 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02008549 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008550 xpath_func = &xpath_starts_with;
8551 }
8552 break;
8553 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02008554 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008555 xpath_func = &xpath_derived_from;
8556 }
8557 break;
8558 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02008559 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008560 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02008561 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008562 xpath_func = &xpath_string_length;
8563 }
8564 break;
8565 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02008566 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008567 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02008568 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008569 xpath_func = &xpath_substring_after;
8570 }
8571 break;
8572 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02008573 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008574 xpath_func = &xpath_substring_before;
8575 }
8576 break;
8577 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02008578 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008579 xpath_func = &xpath_derived_from_or_self;
8580 }
8581 break;
8582 }
8583
8584 if (!xpath_func) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008585 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 +02008586 return LY_EVALID;
8587 }
8588 }
8589
aPiecek8b0cc152021-05-31 16:40:31 +02008590 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008591 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008592 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008593
8594 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02008595 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
aPiecek8b0cc152021-05-31 16:40:31 +02008596 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008597 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008598 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008599
8600 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02008601 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
aPiecek8b0cc152021-05-31 16:40:31 +02008602 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008603 args = malloc(sizeof *args);
8604 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
8605 arg_count = 1;
8606 args[0] = set_copy(set);
8607 if (!args[0]) {
8608 rc = LY_EMEM;
8609 goto cleanup;
8610 }
8611
Michal Vasko004d3152020-06-11 19:59:22 +02008612 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008613 LY_CHECK_GOTO(rc, cleanup);
8614 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008615 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008616 LY_CHECK_GOTO(rc, cleanup);
8617 }
8618 }
Michal Vasko004d3152020-06-11 19:59:22 +02008619 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
aPiecek8b0cc152021-05-31 16:40:31 +02008620 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008621 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008622 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008623
aPiecek8b0cc152021-05-31 16:40:31 +02008624 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008625 ++arg_count;
8626 args_aux = realloc(args, arg_count * sizeof *args);
8627 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
8628 args = args_aux;
8629 args[arg_count - 1] = set_copy(set);
8630 if (!args[arg_count - 1]) {
8631 rc = LY_EMEM;
8632 goto cleanup;
8633 }
8634
Michal Vasko004d3152020-06-11 19:59:22 +02008635 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008636 LY_CHECK_GOTO(rc, cleanup);
8637 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008638 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008639 LY_CHECK_GOTO(rc, cleanup);
8640 }
8641 }
8642
8643 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02008644 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
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
aPiecek8b0cc152021-05-31 16:40:31 +02008649 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008650 /* evaluate function */
8651 rc = xpath_func(args, arg_count, set, options);
8652
8653 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008654 /* merge all nodes from arg evaluations */
8655 for (i = 0; i < arg_count; ++i) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008656 set_scnode_clear_ctx(args[i], LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008657 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008658 }
8659 }
8660 } else {
8661 rc = LY_SUCCESS;
8662 }
8663
8664cleanup:
8665 for (i = 0; i < arg_count; ++i) {
8666 lyxp_set_free(args[i]);
8667 }
8668 free(args);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008669 return rc;
8670}
8671
8672/**
8673 * @brief Evaluate Number. Logs directly on error.
8674 *
8675 * @param[in] ctx Context for errors.
8676 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008677 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008678 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8679 * @return LY_ERR
8680 */
8681static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008682eval_number(struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008683{
8684 long double num;
8685 char *endptr;
8686
8687 if (set) {
8688 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02008689 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008690 if (errno) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008691 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
8692 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).",
Michal Vasko69730152020-10-09 16:30:07 +02008693 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008694 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02008695 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008696 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
8697 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.",
Michal Vasko69730152020-10-09 16:30:07 +02008698 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008699 return LY_EVALID;
8700 }
8701
8702 set_fill_number(set, num);
8703 }
8704
8705 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008706 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008707 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008708 return LY_SUCCESS;
8709}
8710
aPiecekdf23eee2021-10-07 12:21:50 +02008711LY_ERR
Michal Vasko90189962023-02-28 12:10:34 +01008712lyxp_vars_find(const struct ly_ctx *ctx, const struct lyxp_var *vars, const char *name, size_t name_len,
8713 struct lyxp_var **var)
aPiecekdf23eee2021-10-07 12:21:50 +02008714{
aPiecekdf23eee2021-10-07 12:21:50 +02008715 LY_ARRAY_COUNT_TYPE u;
8716
Michal Vasko90189962023-02-28 12:10:34 +01008717 assert(name);
aPiecekdf23eee2021-10-07 12:21:50 +02008718
Michal Vasko90189962023-02-28 12:10:34 +01008719 if (!name_len) {
8720 name_len = strlen(name);
8721 }
aPiecekdf23eee2021-10-07 12:21:50 +02008722
8723 LY_ARRAY_FOR(vars, u) {
8724 if (!strncmp(vars[u].name, name, name_len)) {
Michal Vasko90189962023-02-28 12:10:34 +01008725 if (var) {
8726 *var = (struct lyxp_var *)&vars[u];
8727 }
8728 return LY_SUCCESS;
aPiecekdf23eee2021-10-07 12:21:50 +02008729 }
8730 }
8731
Michal Vasko90189962023-02-28 12:10:34 +01008732 if (ctx) {
8733 LOGERR(ctx, LY_ENOTFOUND, "Variable \"%.*s\" not defined.", (int)name_len, name);
aPiecekdf23eee2021-10-07 12:21:50 +02008734 }
Michal Vasko90189962023-02-28 12:10:34 +01008735 return LY_ENOTFOUND;
aPiecekdf23eee2021-10-07 12:21:50 +02008736}
8737
Michal Vasko03ff5a72019-09-11 13:49:33 +02008738/**
aPiecekfba75362021-10-07 12:39:48 +02008739 * @brief Evaluate VariableReference.
8740 *
8741 * @param[in] exp Parsed XPath expression.
8742 * @param[in] tok_idx Position in the expression @p exp.
8743 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
8744 * @param[in,out] set Context and result set.
8745 * @param[in] options XPath options.
8746 * @return LY_ERR value.
8747 */
8748static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008749eval_variable_reference(const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set, uint32_t options)
aPiecekfba75362021-10-07 12:39:48 +02008750{
8751 LY_ERR ret;
8752 const char *name;
8753 struct lyxp_var *var;
aPiecekfba75362021-10-07 12:39:48 +02008754 struct lyxp_expr *tokens = NULL;
Michal Vaskodd528af2022-08-08 14:35:07 +02008755 uint32_t token_index, name_len;
aPiecekfba75362021-10-07 12:39:48 +02008756
Michal Vasko49fec8e2022-05-24 10:28:33 +02008757 /* find out the name and value of the variable */
aPiecekfba75362021-10-07 12:39:48 +02008758 name = &exp->expr[exp->tok_pos[*tok_idx]];
Michal Vaskoe68b5402022-07-29 14:58:15 +02008759 name_len = exp->tok_len[*tok_idx];
Michal Vasko90189962023-02-28 12:10:34 +01008760 ret = lyxp_vars_find(set->ctx, set->vars, name, name_len, &var);
8761 LY_CHECK_RET(ret);
aPiecekfba75362021-10-07 12:39:48 +02008762
Michal Vasko49fec8e2022-05-24 10:28:33 +02008763 /* parse value */
aPiecekfba75362021-10-07 12:39:48 +02008764 ret = lyxp_expr_parse(set->ctx, var->value, 0, 1, &tokens);
8765 LY_CHECK_GOTO(ret, cleanup);
8766
Michal Vasko49fec8e2022-05-24 10:28:33 +02008767 /* evaluate value */
aPiecekfba75362021-10-07 12:39:48 +02008768 token_index = 0;
8769 ret = eval_expr_select(tokens, &token_index, 0, set, options);
8770 LY_CHECK_GOTO(ret, cleanup);
8771
8772cleanup:
8773 lyxp_expr_free(set->ctx, tokens);
8774
8775 return ret;
8776}
8777
8778/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02008779 * @brief Evaluate PathExpr. Logs directly on error.
8780 *
Michal Vaskod3678892020-05-21 10:06:58 +02008781 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02008782 * | PrimaryExpr Predicate* '/' RelativeLocationPath
8783 * | PrimaryExpr Predicate* '//' RelativeLocationPath
8784 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
aPiecekfba75362021-10-07 12:39:48 +02008785 * [10] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02008786 *
8787 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008788 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008789 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008790 * @param[in] options XPath options.
8791 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8792 */
8793static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008794eval_path_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008795{
Michal Vasko49fec8e2022-05-24 10:28:33 +02008796 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008797 LY_ERR rc;
8798
Michal Vasko004d3152020-06-11 19:59:22 +02008799 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008800 case LYXP_TOKEN_PAR1:
8801 /* '(' Expr ')' */
8802
8803 /* '(' */
aPiecek8b0cc152021-05-31 16:40:31 +02008804 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008805 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008806 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008807
8808 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02008809 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008810 LY_CHECK_RET(rc);
8811
8812 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02008813 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02008814 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008815 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008816 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008817
Michal Vasko03ff5a72019-09-11 13:49:33 +02008818 goto predicate;
8819
8820 case LYXP_TOKEN_DOT:
8821 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008822 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008823 case LYXP_TOKEN_AT:
8824 case LYXP_TOKEN_NAMETEST:
8825 case LYXP_TOKEN_NODETYPE:
8826 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008827 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008828 LY_CHECK_RET(rc);
8829 break;
8830
aPiecekfba75362021-10-07 12:39:48 +02008831 case LYXP_TOKEN_VARREF:
8832 /* VariableReference */
8833 rc = eval_variable_reference(exp, tok_idx, set, options);
8834 LY_CHECK_RET(rc);
8835 ++(*tok_idx);
8836
aPiecekfba75362021-10-07 12:39:48 +02008837 goto predicate;
8838
Michal Vasko03ff5a72019-09-11 13:49:33 +02008839 case LYXP_TOKEN_FUNCNAME:
8840 /* FunctionCall */
aPiecek8b0cc152021-05-31 16:40:31 +02008841 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008842 LY_CHECK_RET(rc);
8843
Michal Vasko03ff5a72019-09-11 13:49:33 +02008844 goto predicate;
8845
Michal Vasko3e48bf32020-06-01 08:39:07 +02008846 case LYXP_TOKEN_OPER_PATH:
8847 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008848 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008849 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008850 LY_CHECK_RET(rc);
8851 break;
8852
8853 case LYXP_TOKEN_LITERAL:
8854 /* Literal */
aPiecek8b0cc152021-05-31 16:40:31 +02008855 if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) {
8856 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008857 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008858 }
Michal Vasko004d3152020-06-11 19:59:22 +02008859 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008860 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008861 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008862 }
8863
Michal Vasko03ff5a72019-09-11 13:49:33 +02008864 goto predicate;
8865
8866 case LYXP_TOKEN_NUMBER:
8867 /* Number */
aPiecek8b0cc152021-05-31 16:40:31 +02008868 if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) {
8869 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008870 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008871 }
Michal Vasko004d3152020-06-11 19:59:22 +02008872 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008873 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008874 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008875 }
8876 LY_CHECK_RET(rc);
8877
Michal Vasko03ff5a72019-09-11 13:49:33 +02008878 goto predicate;
8879
8880 default:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008881 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 +02008882 return LY_EVALID;
8883 }
8884
8885 return LY_SUCCESS;
8886
8887predicate:
8888 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008889 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008890 rc = eval_predicate(exp, tok_idx, set, options, LYXP_AXIS_CHILD);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008891 LY_CHECK_RET(rc);
8892 }
8893
8894 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008895 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008896
8897 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02008898 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008899 all_desc = 0;
8900 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008901 all_desc = 1;
8902 }
8903
aPiecek8b0cc152021-05-31 16:40:31 +02008904 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008905 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008906 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008907
Michal Vasko004d3152020-06-11 19:59:22 +02008908 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008909 LY_CHECK_RET(rc);
8910 }
8911
8912 return LY_SUCCESS;
8913}
8914
8915/**
8916 * @brief Evaluate UnionExpr. Logs directly on error.
8917 *
Michal Vaskod3678892020-05-21 10:06:58 +02008918 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008919 *
8920 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008921 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008922 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008923 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008924 * @param[in] options XPath options.
8925 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8926 */
8927static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008928eval_union_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008929{
8930 LY_ERR rc = LY_SUCCESS;
8931 struct lyxp_set orig_set, set2;
Michal Vaskodd528af2022-08-08 14:35:07 +02008932 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008933
8934 assert(repeat);
8935
8936 set_init(&orig_set, set);
8937 set_init(&set2, set);
8938
8939 set_fill_set(&orig_set, set);
8940
Michal Vasko004d3152020-06-11 19:59:22 +02008941 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008942 LY_CHECK_GOTO(rc, cleanup);
8943
8944 /* ('|' PathExpr)* */
8945 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008946 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
aPiecek8b0cc152021-05-31 16:40:31 +02008947 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008948 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008949 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008950
aPiecek8b0cc152021-05-31 16:40:31 +02008951 if (options & LYXP_SKIP_EXPR) {
8952 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008953 LY_CHECK_GOTO(rc, cleanup);
8954 continue;
8955 }
8956
8957 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008958 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008959 LY_CHECK_GOTO(rc, cleanup);
8960
8961 /* eval */
8962 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01008963 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008964 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008965 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008966 LY_CHECK_GOTO(rc, cleanup);
8967 }
8968 }
8969
8970cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008971 lyxp_set_free_content(&orig_set);
8972 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008973 return rc;
8974}
8975
8976/**
8977 * @brief Evaluate UnaryExpr. Logs directly on error.
8978 *
Michal Vaskod3678892020-05-21 10:06:58 +02008979 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008980 *
8981 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008982 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008983 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008984 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008985 * @param[in] options XPath options.
8986 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8987 */
8988static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008989eval_unary_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008990{
8991 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02008992 uint32_t this_op, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008993
8994 assert(repeat);
8995
8996 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02008997 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008998 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008999 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 +02009000
aPiecek8b0cc152021-05-31 16:40:31 +02009001 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009002 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009003 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009004 }
9005
Michal Vasko004d3152020-06-11 19:59:22 +02009006 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009007 LY_CHECK_RET(rc);
9008
aPiecek8b0cc152021-05-31 16:40:31 +02009009 if (!(options & LYXP_SKIP_EXPR) && (repeat % 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009010 if (options & LYXP_SCNODE_ALL) {
9011 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
9012 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009013 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009014 LY_CHECK_RET(rc);
9015 }
9016 }
9017
9018 return LY_SUCCESS;
9019}
9020
9021/**
9022 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
9023 *
Michal Vaskod3678892020-05-21 10:06:58 +02009024 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009025 * | MultiplicativeExpr '*' UnaryExpr
9026 * | MultiplicativeExpr 'div' UnaryExpr
9027 * | MultiplicativeExpr 'mod' UnaryExpr
9028 *
9029 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009030 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009031 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009032 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009033 * @param[in] options XPath options.
9034 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9035 */
9036static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009037eval_multiplicative_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t repeat, struct lyxp_set *set,
Michal Vasko40308e72020-10-20 16:38:40 +02009038 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009039{
9040 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02009041 uint32_t i, this_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009042 struct lyxp_set orig_set, set2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009043
9044 assert(repeat);
9045
9046 set_init(&orig_set, set);
9047 set_init(&set2, set);
9048
9049 set_fill_set(&orig_set, set);
9050
Michal Vasko004d3152020-06-11 19:59:22 +02009051 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009052 LY_CHECK_GOTO(rc, cleanup);
9053
9054 /* ('*' / 'div' / 'mod' UnaryExpr)* */
9055 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009056 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009057
Michal Vasko004d3152020-06-11 19:59:22 +02009058 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
aPiecek8b0cc152021-05-31 16:40:31 +02009059 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009060 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009061 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009062
aPiecek8b0cc152021-05-31 16:40:31 +02009063 if (options & LYXP_SKIP_EXPR) {
9064 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009065 LY_CHECK_GOTO(rc, cleanup);
9066 continue;
9067 }
9068
9069 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009070 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009071 LY_CHECK_GOTO(rc, cleanup);
9072
9073 /* eval */
9074 if (options & LYXP_SCNODE_ALL) {
9075 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009076 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009077 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009078 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009079 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009080 LY_CHECK_GOTO(rc, cleanup);
9081 }
9082 }
9083
9084cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009085 lyxp_set_free_content(&orig_set);
9086 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009087 return rc;
9088}
9089
9090/**
9091 * @brief Evaluate AdditiveExpr. Logs directly on error.
9092 *
Michal Vaskod3678892020-05-21 10:06:58 +02009093 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009094 * | AdditiveExpr '+' MultiplicativeExpr
9095 * | AdditiveExpr '-' MultiplicativeExpr
9096 *
9097 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009098 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009099 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009100 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009101 * @param[in] options XPath options.
9102 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9103 */
9104static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009105eval_additive_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009106{
9107 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02009108 uint32_t i, this_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009109 struct lyxp_set orig_set, set2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009110
9111 assert(repeat);
9112
9113 set_init(&orig_set, set);
9114 set_init(&set2, set);
9115
9116 set_fill_set(&orig_set, set);
9117
Michal Vasko004d3152020-06-11 19:59:22 +02009118 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009119 LY_CHECK_GOTO(rc, cleanup);
9120
9121 /* ('+' / '-' MultiplicativeExpr)* */
9122 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009123 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009124
Michal Vasko004d3152020-06-11 19:59:22 +02009125 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009126 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009127 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009128 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009129
aPiecek8b0cc152021-05-31 16:40:31 +02009130 if (options & LYXP_SKIP_EXPR) {
9131 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009132 LY_CHECK_GOTO(rc, cleanup);
9133 continue;
9134 }
9135
9136 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009137 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009138 LY_CHECK_GOTO(rc, cleanup);
9139
9140 /* eval */
9141 if (options & LYXP_SCNODE_ALL) {
9142 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009143 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009144 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009145 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009146 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009147 LY_CHECK_GOTO(rc, cleanup);
9148 }
9149 }
9150
9151cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009152 lyxp_set_free_content(&orig_set);
9153 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009154 return rc;
9155}
9156
9157/**
9158 * @brief Evaluate RelationalExpr. Logs directly on error.
9159 *
Michal Vaskod3678892020-05-21 10:06:58 +02009160 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009161 * | RelationalExpr '<' AdditiveExpr
9162 * | RelationalExpr '>' AdditiveExpr
9163 * | RelationalExpr '<=' AdditiveExpr
9164 * | RelationalExpr '>=' AdditiveExpr
9165 *
9166 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009167 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009168 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009169 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009170 * @param[in] options XPath options.
9171 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9172 */
9173static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009174eval_relational_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009175{
9176 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02009177 uint32_t i, this_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009178 struct lyxp_set orig_set, set2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009179
9180 assert(repeat);
9181
9182 set_init(&orig_set, set);
9183 set_init(&set2, set);
9184
9185 set_fill_set(&orig_set, set);
9186
Michal Vasko004d3152020-06-11 19:59:22 +02009187 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009188 LY_CHECK_GOTO(rc, cleanup);
9189
9190 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
9191 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009192 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009193
Michal Vasko004d3152020-06-11 19:59:22 +02009194 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
aPiecek8b0cc152021-05-31 16:40:31 +02009195 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009196 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009197 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009198
aPiecek8b0cc152021-05-31 16:40:31 +02009199 if (options & LYXP_SKIP_EXPR) {
9200 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009201 LY_CHECK_GOTO(rc, cleanup);
9202 continue;
9203 }
9204
9205 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009206 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009207 LY_CHECK_GOTO(rc, cleanup);
9208
9209 /* eval */
9210 if (options & LYXP_SCNODE_ALL) {
9211 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009212 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009213 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009214 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02009215 ly_bool result;
9216
9217 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], &result);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009218 LY_CHECK_GOTO(rc, cleanup);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02009219 set_fill_boolean(set, result);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009220 }
9221 }
9222
9223cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009224 lyxp_set_free_content(&orig_set);
9225 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009226 return rc;
9227}
9228
9229/**
9230 * @brief Evaluate EqualityExpr. Logs directly on error.
9231 *
Michal Vaskod3678892020-05-21 10:06:58 +02009232 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009233 * | EqualityExpr '!=' RelationalExpr
9234 *
9235 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009236 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009237 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009238 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009239 * @param[in] options XPath options.
9240 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9241 */
9242static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009243eval_equality_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009244{
9245 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02009246 uint32_t i, this_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009247 struct lyxp_set orig_set, set2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009248
9249 assert(repeat);
9250
9251 set_init(&orig_set, set);
9252 set_init(&set2, set);
9253
9254 set_fill_set(&orig_set, set);
9255
Michal Vasko004d3152020-06-11 19:59:22 +02009256 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009257 LY_CHECK_GOTO(rc, cleanup);
9258
9259 /* ('=' / '!=' RelationalExpr)* */
9260 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009261 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009262
Michal Vasko004d3152020-06-11 19:59:22 +02009263 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
aPiecek8b0cc152021-05-31 16:40:31 +02009264 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009265 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009266 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009267
aPiecek8b0cc152021-05-31 16:40:31 +02009268 if (options & LYXP_SKIP_EXPR) {
9269 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009270 LY_CHECK_GOTO(rc, cleanup);
9271 continue;
9272 }
9273
9274 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009275 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009276 LY_CHECK_GOTO(rc, cleanup);
9277
9278 /* eval */
9279 if (options & LYXP_SCNODE_ALL) {
9280 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02009281 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
9282 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009283 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009284 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009285 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02009286 ly_bool result;
9287
9288 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], &result);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009289 LY_CHECK_GOTO(rc, cleanup);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02009290 set_fill_boolean(set, result);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009291 }
9292 }
9293
9294cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009295 lyxp_set_free_content(&orig_set);
9296 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009297 return rc;
9298}
9299
9300/**
9301 * @brief Evaluate AndExpr. Logs directly on error.
9302 *
Michal Vaskod3678892020-05-21 10:06:58 +02009303 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009304 *
9305 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009306 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009307 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009308 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009309 * @param[in] options XPath options.
9310 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9311 */
9312static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009313eval_and_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009314{
9315 LY_ERR rc;
9316 struct lyxp_set orig_set, set2;
Michal Vaskodd528af2022-08-08 14:35:07 +02009317 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009318
9319 assert(repeat);
9320
9321 set_init(&orig_set, set);
9322 set_init(&set2, set);
9323
9324 set_fill_set(&orig_set, set);
9325
Michal Vasko004d3152020-06-11 19:59:22 +02009326 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009327 LY_CHECK_GOTO(rc, cleanup);
9328
Michal Vasko3ff82dd2023-05-09 14:09:21 +02009329 if (!(options & LYXP_SKIP_EXPR)) {
9330 if (options & LYXP_SCNODE_ALL) {
9331 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
9332 } else {
9333 /* cast to boolean, we know that will be the final result */
9334 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
9335 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009336 }
9337
9338 /* ('and' EqualityExpr)* */
9339 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009340 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
aPiecek8b0cc152021-05-31 16:40:31 +02009341 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || !set->val.bln ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009342 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009343 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009344
9345 /* lazy evaluation */
aPiecek8b0cc152021-05-31 16:40:31 +02009346 if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
9347 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009348 LY_CHECK_GOTO(rc, cleanup);
9349 continue;
9350 }
9351
9352 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009353 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009354 LY_CHECK_GOTO(rc, cleanup);
9355
9356 /* eval - just get boolean value actually */
9357 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02009358 set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009359 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009360 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009361 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009362 set_fill_set(set, &set2);
9363 }
9364 }
9365
9366cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009367 lyxp_set_free_content(&orig_set);
9368 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009369 return rc;
9370}
9371
9372/**
9373 * @brief Evaluate OrExpr. Logs directly on error.
9374 *
Michal Vaskod3678892020-05-21 10:06:58 +02009375 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009376 *
9377 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009378 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009379 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009380 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009381 * @param[in] options XPath options.
9382 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9383 */
9384static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009385eval_or_expr(const struct lyxp_expr *exp, uint32_t *tok_idx, uint32_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009386{
9387 LY_ERR rc;
9388 struct lyxp_set orig_set, set2;
Michal Vaskodd528af2022-08-08 14:35:07 +02009389 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009390
9391 assert(repeat);
9392
9393 set_init(&orig_set, set);
9394 set_init(&set2, set);
9395
9396 set_fill_set(&orig_set, set);
9397
Michal Vasko004d3152020-06-11 19:59:22 +02009398 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009399 LY_CHECK_GOTO(rc, cleanup);
9400
Michal Vasko3ff82dd2023-05-09 14:09:21 +02009401 if (!(options & LYXP_SKIP_EXPR)) {
9402 if (options & LYXP_SCNODE_ALL) {
9403 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
9404 } else {
9405 /* cast to boolean, we know that will be the final result */
9406 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
9407 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009408 }
9409
9410 /* ('or' AndExpr)* */
9411 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009412 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
aPiecek8b0cc152021-05-31 16:40:31 +02009413 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || set->val.bln ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009414 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009415 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009416
9417 /* lazy evaluation */
aPiecek8b0cc152021-05-31 16:40:31 +02009418 if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
9419 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009420 LY_CHECK_GOTO(rc, cleanup);
9421 continue;
9422 }
9423
9424 set_fill_set(&set2, &orig_set);
9425 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
9426 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02009427 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009428 LY_CHECK_GOTO(rc, cleanup);
9429
9430 /* eval - just get boolean value actually */
9431 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02009432 set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009433 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009434 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009435 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009436 set_fill_set(set, &set2);
9437 }
9438 }
9439
9440cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009441 lyxp_set_free_content(&orig_set);
9442 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009443 return rc;
9444}
9445
9446/**
Michal Vasko004d3152020-06-11 19:59:22 +02009447 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009448 *
9449 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009450 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009451 * @param[in] etype Expression type to evaluate.
aPiecek8b0cc152021-05-31 16:40:31 +02009452 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009453 * @param[in] options XPath options.
9454 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9455 */
9456static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009457eval_expr_select(const struct lyxp_expr *exp, uint32_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set,
Michal Vasko40308e72020-10-20 16:38:40 +02009458 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009459{
Michal Vaskodd528af2022-08-08 14:35:07 +02009460 uint32_t i, count;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009461 enum lyxp_expr_type next_etype;
9462 LY_ERR rc;
9463
9464 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02009465 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009466 next_etype = LYXP_EXPR_NONE;
9467 } else {
9468 /* find etype repeat */
Radek Krejci1e008d22020-08-17 11:37:37 +02009469 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02009470
9471 /* select one-priority lower because etype expression called us */
9472 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009473 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02009474 /* count repeats for that expression */
Radek Krejci1e008d22020-08-17 11:37:37 +02009475 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02009476 } else {
9477 next_etype = LYXP_EXPR_NONE;
9478 }
9479 }
9480
9481 /* decide what expression are we parsing based on the repeat */
9482 switch (next_etype) {
9483 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02009484 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009485 break;
9486 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02009487 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009488 break;
9489 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02009490 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009491 break;
9492 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02009493 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009494 break;
9495 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02009496 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009497 break;
9498 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02009499 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009500 break;
9501 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02009502 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009503 break;
9504 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02009505 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009506 break;
9507 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02009508 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009509 break;
9510 default:
9511 LOGINT_RET(set->ctx);
9512 }
9513
9514 return rc;
9515}
9516
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009517/**
9518 * @brief Get root type.
9519 *
9520 * @param[in] ctx_node Context node.
9521 * @param[in] ctx_scnode Schema context node.
9522 * @param[in] options XPath options.
9523 * @return Root type.
9524 */
9525static enum lyxp_node_type
Radek Krejci1deb5be2020-08-26 16:43:36 +02009526lyxp_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 +01009527{
Michal Vasko6b26e742020-07-17 15:02:10 +02009528 const struct lysc_node *op;
9529
Michal Vaskoa27245c2022-05-02 09:01:35 +02009530 /* explicit */
9531 if (options & LYXP_ACCESS_TREE_ALL) {
9532 return LYXP_NODE_ROOT;
9533 } else if (options & LYXP_ACCESS_TREE_CONFIG) {
9534 return LYXP_NODE_ROOT_CONFIG;
9535 }
9536
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009537 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009538 /* schema */
Radek Krejci1e008d22020-08-17 11:37:37 +02009539 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02009540
9541 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009542 /* general root that can access everything */
9543 return LYXP_NODE_ROOT;
9544 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
9545 /* root context node can access only config data (because we said so, it is unspecified) */
9546 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009547 }
Michal Vasko6b26e742020-07-17 15:02:10 +02009548 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009549 }
9550
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009551 /* data */
Michal Vasko6b26e742020-07-17 15:02:10 +02009552 op = ctx_node ? ctx_node->schema : NULL;
Michal Vaskod989ba02020-08-24 10:59:24 +02009553 for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02009554
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009555 if (op || !(options & LYXP_SCHEMA)) {
9556 /* general root that can access everything */
9557 return LYXP_NODE_ROOT;
Christian Hoppsb6ecaea2021-02-06 09:45:38 -05009558 } else if (!ctx_node || !ctx_node->schema || (ctx_node->schema->flags & LYS_CONFIG_W)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009559 /* root context node can access only config data (because we said so, it is unspecified) */
9560 return LYXP_NODE_ROOT_CONFIG;
9561 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009562 return LYXP_NODE_ROOT;
9563}
9564
Michal Vasko03ff5a72019-09-11 13:49:33 +02009565LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01009566lyxp_eval(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02009567 LY_VALUE_FORMAT format, void *prefix_data, const struct lyd_node *cur_node, const struct lyd_node *ctx_node,
9568 const struct lyd_node *tree, const struct lyxp_var *vars, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009569{
Michal Vaskodd528af2022-08-08 14:35:07 +02009570 uint32_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009571 LY_ERR rc;
9572
Michal Vasko400e9672021-01-11 13:39:17 +01009573 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Radek Krejci8df109d2021-04-23 12:19:08 +02009574 if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) {
Michal Vaskoddd76592022-01-17 13:34:48 +01009575 LOGERR(ctx, LY_EINVAL, "Current module must be set if schema format is used.");
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009576 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02009577 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009578
Michal Vaskod3bb12f2020-12-04 14:33:09 +01009579 if (tree) {
9580 /* adjust the pointer to be the first top-level sibling */
9581 while (tree->parent) {
9582 tree = lyd_parent(tree);
9583 }
9584 tree = lyd_first_sibling(tree);
Michal Vaskoddd76592022-01-17 13:34:48 +01009585
Michal Vasko6f78a772022-11-10 08:13:52 +01009586 if (lysc_data_parent(tree->schema)) {
Michal Vaskoddd76592022-01-17 13:34:48 +01009587 /* unable to evaluate absolute paths */
9588 LOGERR(ctx, LY_EINVAL, "Data node \"%s\" has no parent but is not instance of a top-level schema node.",
9589 LYD_NAME(tree));
9590 return LY_EINVAL;
9591 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +01009592 }
9593
Michal Vasko03ff5a72019-09-11 13:49:33 +02009594 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02009595 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02009596 set->type = LYXP_SET_NODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009597 set->root_type = lyxp_get_root_type(ctx_node, NULL, options);
9598 set_insert_node(set, (struct lyd_node *)ctx_node, 0, ctx_node ? LYXP_NODE_ELEM : set->root_type, 0);
9599
Michal Vasko400e9672021-01-11 13:39:17 +01009600 set->ctx = (struct ly_ctx *)ctx;
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02009601 set->cur_node = cur_node;
9602 for (set->context_op = cur_node ? cur_node->schema : NULL;
Radek Krejci0f969882020-08-21 16:56:47 +02009603 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
9604 set->context_op = set->context_op->parent) {}
Michal Vaskof03ed032020-03-04 13:31:44 +01009605 set->tree = tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009606 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009607 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009608 set->prefix_data = prefix_data;
aPiecekfba75362021-10-07 12:39:48 +02009609 set->vars = vars;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009610
Radek Krejciddace2c2021-01-08 11:30:56 +01009611 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009612
Michal Vasko03ff5a72019-09-11 13:49:33 +02009613 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02009614 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009615 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02009616 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009617 }
9618
Michal Vasko4a7d4d62021-12-13 17:05:06 +01009619 if (set->cur_node) {
9620 LOG_LOCBACK(0, 1, 0, 0);
9621 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009622 return rc;
9623}
9624
9625#if 0
9626
9627/* full xml printing of set elements, not used currently */
9628
9629void
9630lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
9631{
9632 uint32_t i;
9633 char *str_num;
9634 struct lyout out;
9635
9636 memset(&out, 0, sizeof out);
9637
9638 out.type = LYOUT_STREAM;
9639 out.method.f = f;
9640
9641 switch (set->type) {
9642 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02009643 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009644 break;
9645 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02009646 ly_print_(&out, "Boolean XPath set:\n");
9647 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009648 break;
9649 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02009650 ly_print_(&out, "String XPath set:\n");
9651 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009652 break;
9653 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02009654 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009655
9656 if (isnan(set->value.num)) {
9657 str_num = strdup("NaN");
9658 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
9659 str_num = strdup("0");
9660 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
9661 str_num = strdup("Infinity");
9662 } else if (isinf(set->value.num) && signbit(set->value.num)) {
9663 str_num = strdup("-Infinity");
9664 } else if ((long long)set->value.num == set->value.num) {
9665 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
9666 str_num = NULL;
9667 }
9668 } else {
9669 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
9670 str_num = NULL;
9671 }
9672 }
9673 if (!str_num) {
9674 LOGMEM;
9675 return;
9676 }
Michal Vasko5233e962020-08-14 14:26:20 +02009677 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009678 free(str_num);
9679 break;
9680 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02009681 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009682
9683 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02009684 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009685 switch (set->node_type[i]) {
9686 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02009687 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009688 break;
9689 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02009690 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009691 break;
9692 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02009693 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009694 break;
9695 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02009696 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009697 break;
9698 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02009699 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009700 break;
9701 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02009702 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009703 break;
9704 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02009705 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009706 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02009707 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009708 break;
9709 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02009710 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 +02009711 break;
9712 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02009713 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 +02009714 break;
9715 }
9716 }
9717 break;
9718 }
9719}
9720
9721#endif
9722
9723LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009724lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009725{
9726 long double num;
9727 char *str;
9728 LY_ERR rc;
9729
9730 if (!set || (set->type == target)) {
9731 return LY_SUCCESS;
9732 }
9733
9734 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02009735 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009736
9737 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02009738 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009739 return LY_EINVAL;
9740 }
9741
9742 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02009743 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009744 switch (set->type) {
9745 case LYXP_SET_NUMBER:
9746 if (isnan(set->val.num)) {
9747 set->val.str = strdup("NaN");
9748 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9749 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
9750 set->val.str = strdup("0");
9751 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9752 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
9753 set->val.str = strdup("Infinity");
9754 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9755 } else if (isinf(set->val.num) && signbit(set->val.num)) {
9756 set->val.str = strdup("-Infinity");
9757 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9758 } else if ((long long)set->val.num == set->val.num) {
9759 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
9760 LOGMEM_RET(set->ctx);
9761 }
9762 set->val.str = str;
9763 } else {
9764 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
9765 LOGMEM_RET(set->ctx);
9766 }
9767 set->val.str = str;
9768 }
9769 break;
9770 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02009771 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009772 set->val.str = strdup("true");
9773 } else {
9774 set->val.str = strdup("false");
9775 }
9776 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
9777 break;
9778 case LYXP_SET_NODE_SET:
Michal Vasko03ff5a72019-09-11 13:49:33 +02009779 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009780 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02009781
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009782 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009783 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02009784 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009785 set->val.str = str;
9786 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009787 default:
9788 LOGINT_RET(set->ctx);
9789 }
9790 set->type = LYXP_SET_STRING;
9791 }
9792
9793 /* to NUMBER */
9794 if (target == LYXP_SET_NUMBER) {
9795 switch (set->type) {
9796 case LYXP_SET_STRING:
9797 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02009798 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009799 set->val.num = num;
9800 break;
9801 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02009802 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009803 set->val.num = 1;
9804 } else {
9805 set->val.num = 0;
9806 }
9807 break;
9808 default:
9809 LOGINT_RET(set->ctx);
9810 }
9811 set->type = LYXP_SET_NUMBER;
9812 }
9813
9814 /* to BOOLEAN */
9815 if (target == LYXP_SET_BOOLEAN) {
9816 switch (set->type) {
9817 case LYXP_SET_NUMBER:
9818 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02009819 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009820 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02009821 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009822 }
9823 break;
9824 case LYXP_SET_STRING:
9825 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02009826 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009827 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009828 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02009829 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009830 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009831 }
9832 break;
9833 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02009834 if (set->used) {
9835 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009836 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02009837 } else {
9838 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009839 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02009840 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009841 break;
9842 default:
9843 LOGINT_RET(set->ctx);
9844 }
9845 set->type = LYXP_SET_BOOLEAN;
9846 }
9847
Michal Vasko03ff5a72019-09-11 13:49:33 +02009848 return LY_SUCCESS;
9849}
9850
9851LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01009852lyxp_atomize(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02009853 LY_VALUE_FORMAT format, void *prefix_data, const struct lysc_node *cur_scnode,
9854 const struct lysc_node *ctx_scnode, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009855{
Radek Krejci2efc45b2020-12-22 16:25:44 +01009856 LY_ERR ret;
Michal Vaskodd528af2022-08-08 14:35:07 +02009857 uint32_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009858
Michal Vasko400e9672021-01-11 13:39:17 +01009859 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Radek Krejci8df109d2021-04-23 12:19:08 +02009860 if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009861 LOGARG(NULL, "Current module must be set if schema format is used.");
9862 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02009863 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009864
9865 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02009866 memset(set, 0, sizeof *set);
9867 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009868 set->root_type = lyxp_get_root_type(NULL, ctx_scnode, options);
Michal Vaskoe4a6d012023-05-22 14:34:52 +02009869 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, ctx_scnode, ctx_scnode ? LYXP_NODE_ELEM : set->root_type, LYXP_AXIS_SELF, NULL));
Radek Krejcif13b87b2020-12-01 22:02:17 +01009870 set->val.scnodes[0].in_ctx = LYXP_SET_SCNODE_START;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009871
Michal Vasko400e9672021-01-11 13:39:17 +01009872 set->ctx = (struct ly_ctx *)ctx;
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02009873 set->cur_scnode = cur_scnode;
9874 for (set->context_op = cur_scnode;
Radek Krejci0f969882020-08-21 16:56:47 +02009875 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
9876 set->context_op = set->context_op->parent) {}
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009877 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009878 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009879 set->prefix_data = prefix_data;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009880
Radek Krejciddace2c2021-01-08 11:30:56 +01009881 LOG_LOCSET(set->cur_scnode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009882
Michal Vasko03ff5a72019-09-11 13:49:33 +02009883 /* evaluate */
Radek Krejci2efc45b2020-12-22 16:25:44 +01009884 ret = eval_expr_select(exp, &tok_idx, 0, set, options);
9885
Michal Vaskof69e4552022-12-02 10:27:42 +01009886 LOG_LOCBACK(set->cur_scnode ? 1 : 0, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009887 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009888}
Michal Vaskod43d71a2020-08-07 14:54:58 +02009889
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01009890LIBYANG_API_DEF const char *
Michal Vaskod43d71a2020-08-07 14:54:58 +02009891lyxp_get_expr(const struct lyxp_expr *path)
9892{
9893 if (!path) {
9894 return NULL;
9895 }
9896
9897 return path->expr;
9898}