blob: 9a197acb8bb92a41c4fe9d59228fba1e227eb691 [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 Vaskoed4fcfe2020-07-08 10:38:56 +02004505 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:
4551 mod = item->node->schema->module;
4552 name = item->node->schema->name;
4553 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;
4587 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) {
4637 mod = item->node->schema->module;
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 Vaskod3678892020-05-21 10:06:58 +02005650 set->type = LYXP_SET_NODE_SET;
5651 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005652 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko306e2832022-07-25 09:15:17 +02005653 set->non_child_axis = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005654 }
Michal Vaskob0099a92020-08-31 14:55:23 +02005655
5656 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005657}
5658
5659/**
5660 * @brief Check @p node as a part of NameTest processing.
5661 *
5662 * @param[in] node Node to check.
Michal Vasko49fec8e2022-05-24 10:28:33 +02005663 * @param[in] node_type Node type of @p node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005664 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005665 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005666 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vaskocdad7122020-11-09 21:04:44 +01005667 * @param[in] options XPath options.
Michal Vasko6346ece2019-09-24 13:12:53 +02005668 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
Michal Vaskocd2c88a2022-06-07 10:54:34 +02005669 * LY_EINVAL if neither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005670 */
5671static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02005672moveto_node_check(const struct lyd_node *node, enum lyxp_node_type node_type, const struct lyxp_set *set,
5673 const char *node_name, const struct lys_module *moveto_mod, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005674{
Michal Vasko49fec8e2022-05-24 10:28:33 +02005675 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5676 assert(node_type == set->root_type);
5677
5678 if (node_name || moveto_mod) {
5679 /* root will not match a specific node */
5680 return LY_ENOT;
5681 }
5682 return LY_SUCCESS;
5683 } else if (node_type != LYXP_NODE_ELEM) {
5684 /* other types will not match */
5685 return LY_ENOT;
5686 }
5687
Michal Vaskodca9f122021-07-16 13:56:22 +02005688 if (!node->schema) {
5689 /* opaque node never matches */
5690 return LY_ENOT;
5691 }
5692
Michal Vasko03ff5a72019-09-11 13:49:33 +02005693 /* module check */
Michal Vasko19089f02022-06-07 11:02:11 +02005694 if (moveto_mod) {
Michal Vasko0a1eb752022-09-29 11:00:34 +02005695 if ((set->ctx == LYD_CTX(node)) && (node->schema->module != moveto_mod)) {
Michal Vasko19089f02022-06-07 11:02:11 +02005696 return LY_ENOT;
Michal Vasko0a1eb752022-09-29 11:00:34 +02005697 } else if ((set->ctx != LYD_CTX(node)) && strcmp(node->schema->module->name, moveto_mod->name)) {
Michal Vasko19089f02022-06-07 11:02:11 +02005698 return LY_ENOT;
5699 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005700 }
5701
Michal Vasko5c4e5892019-11-14 12:31:38 +01005702 /* context check */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005703 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005704 return LY_EINVAL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005705 } else if (set->context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5706 (node->schema != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005707 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005708 }
5709
5710 /* name check */
Michal Vasko19089f02022-06-07 11:02:11 +02005711 if (node_name) {
Michal Vasko0a1eb752022-09-29 11:00:34 +02005712 if ((set->ctx == LYD_CTX(node)) && (node->schema->name != node_name)) {
Michal Vasko19089f02022-06-07 11:02:11 +02005713 return LY_ENOT;
Michal Vasko0a1eb752022-09-29 11:00:34 +02005714 } else if ((set->ctx != LYD_CTX(node)) && strcmp(node->schema->name, node_name)) {
Michal Vasko19089f02022-06-07 11:02:11 +02005715 return LY_ENOT;
5716 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005717 }
5718
Michal Vasko6d657122022-10-19 14:38:35 +02005719 /* when check, accept the context node because it should only be the path ".", we have checked the when is valid before */
5720 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(node->schema) && !(node->flags & LYD_WHEN_TRUE) &&
5721 (node != set->cur_node)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005722 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005723 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005724
5725 /* match */
5726 return LY_SUCCESS;
5727}
5728
5729/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02005730 * @brief Get the next node in a forward DFS.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005731 *
Michal Vasko49fec8e2022-05-24 10:28:33 +02005732 * @param[in] iter Last returned node.
5733 * @param[in] stop Node to stop the search on and not return.
5734 * @return Next node, NULL if there are no more.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005735 */
Michal Vasko49fec8e2022-05-24 10:28:33 +02005736static const struct lyd_node *
5737moveto_axis_node_next_dfs_forward(const struct lyd_node *iter, const struct lyd_node *stop)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005738{
Michal Vasko49fec8e2022-05-24 10:28:33 +02005739 const struct lyd_node *next = NULL;
5740
5741 /* 1) child */
5742 next = lyd_child(iter);
5743 if (!next) {
5744 if (iter == stop) {
5745 /* reached stop, no more descendants */
5746 return NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005747 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02005748 /* 2) child next sibling */
5749 next = iter->next;
5750 }
5751 while (!next) {
5752 iter = lyd_parent(iter);
5753 if ((!stop && !iter) || (stop && (lyd_parent(iter) == lyd_parent(stop)))) {
5754 return NULL;
5755 }
5756 next = iter->next;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005757 }
5758
Michal Vasko49fec8e2022-05-24 10:28:33 +02005759 return next;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005760}
5761
5762/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02005763 * @brief Get the next node in a backward DFS.
5764 *
5765 * @param[in] iter Last returned node.
5766 * @param[in] stop Node to stop the search on and not return.
5767 * @return Next node, NULL if there are no more.
5768 */
5769static const struct lyd_node *
5770moveto_axis_node_next_dfs_backward(const struct lyd_node *iter, const struct lyd_node *stop)
5771{
5772 const struct lyd_node *next = NULL;
5773
5774 /* 1) previous sibling innermost last child */
5775 next = iter->prev->next ? iter->prev : NULL;
5776 while (next && lyd_child(next)) {
5777 next = lyd_child(next);
5778 next = next->prev;
5779 }
5780
5781 if (!next) {
5782 /* 2) parent */
5783 iter = lyd_parent(iter);
5784 if ((!stop && !iter) || (stop && (lyd_parent(iter) == lyd_parent(stop)))) {
5785 return NULL;
5786 }
5787 next = iter;
5788 }
5789
5790 return next;
5791}
5792
5793/**
5794 * @brief Get the first node on an axis for a context node.
5795 *
5796 * @param[in,out] iter NULL, updated to the next node.
5797 * @param[in,out] iter_type Node type 0 of @p iter, updated to the node type of the next node.
5798 * @param[in] node Context node.
5799 * @param[in] node_type Type of @p node.
5800 * @param[in] axis Axis to use.
5801 * @param[in] set XPath set with the general context.
5802 * @return LY_SUCCESS on success.
5803 * @return LY_ENOTFOUND if no next node found.
5804 */
5805static LY_ERR
5806moveto_axis_node_next_first(const struct lyd_node **iter, enum lyxp_node_type *iter_type, const struct lyd_node *node,
5807 enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set)
5808{
5809 const struct lyd_node *next = NULL;
5810 enum lyxp_node_type next_type = 0;
5811
5812 assert(!*iter);
5813 assert(!*iter_type);
5814
5815 switch (axis) {
5816 case LYXP_AXIS_ANCESTOR_OR_SELF:
5817 case LYXP_AXIS_DESCENDANT_OR_SELF:
5818 case LYXP_AXIS_SELF:
5819 /* return the context node */
5820 next = node;
5821 next_type = node_type;
5822 break;
5823
5824 case LYXP_AXIS_ANCESTOR:
5825 case LYXP_AXIS_PARENT:
5826 if (node_type == LYXP_NODE_ELEM) {
5827 next = lyd_parent(node);
5828 next_type = next ? LYXP_NODE_ELEM : set->root_type;
5829 } else if (node_type == LYXP_NODE_TEXT) {
5830 next = node;
5831 next_type = LYXP_NODE_ELEM;
5832 } else if (node_type == LYXP_NODE_META) {
5833 next = ((struct lyd_meta *)node)->parent;
5834 next_type = LYXP_NODE_ELEM;
5835 } /* else root does not have a parent */
5836 break;
5837
5838 case LYXP_AXIS_CHILD:
5839 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5840 assert(!node);
5841
5842 /* search in all the trees */
5843 next = set->tree;
5844 next_type = next ? LYXP_NODE_ELEM : 0;
5845 } else {
5846 /* search in children */
5847 next = lyd_child(node);
5848 next_type = next ? LYXP_NODE_ELEM : 0;
5849 }
5850 break;
5851
5852 case LYXP_AXIS_DESCENDANT:
5853 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
5854 /* top-level nodes */
5855 next = set->tree;
5856 next_type = LYXP_NODE_ELEM;
5857 } else if (node_type == LYXP_NODE_ELEM) {
5858 /* start from the context node */
5859 next = moveto_axis_node_next_dfs_forward(node, node);
5860 next_type = next ? LYXP_NODE_ELEM : 0;
5861 } /* else no children */
5862 break;
5863
5864 case LYXP_AXIS_FOLLOWING:
5865 case LYXP_AXIS_FOLLOWING_SIBLING:
5866 if (node_type == LYXP_NODE_ELEM) {
5867 /* first next sibling */
5868 next = node->next;
5869 next_type = next ? LYXP_NODE_ELEM : 0;
5870 } /* else no sibling */
5871 break;
5872
5873 case LYXP_AXIS_PRECEDING:
5874 if ((node_type == LYXP_NODE_ELEM) && node->prev->next) {
5875 /* skip ancestors */
5876 next = moveto_axis_node_next_dfs_backward(node, NULL);
5877 assert(next);
5878 next_type = LYXP_NODE_ELEM;
5879 } /* else no sibling */
5880 break;
5881
5882 case LYXP_AXIS_PRECEDING_SIBLING:
5883 if (node_type == LYXP_NODE_ELEM) {
5884 /* first previous sibling */
5885 next = node->prev->next ? node->prev : NULL;
5886 next_type = next ? LYXP_NODE_ELEM : 0;
5887 } /* else no sibling */
5888 break;
5889
5890 case LYXP_AXIS_ATTRIBUTE:
5891 /* handled specially */
5892 assert(0);
5893 LOGINT(set->ctx);
5894 break;
5895 }
5896
5897 *iter = next;
5898 *iter_type = next_type;
5899 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
5900}
5901
5902/**
5903 * @brief Iterate over all nodes on an axis for a context node.
5904 *
5905 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
5906 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
5907 * @param[in] node Context node.
5908 * @param[in] node_type Type of @p node.
5909 * @param[in] axis Axis to use.
5910 * @param[in] set XPath set with the general context.
5911 * @return LY_SUCCESS on success.
5912 * @return LY_ENOTFOUND if no next node found.
5913 */
5914static LY_ERR
5915moveto_axis_node_next(const struct lyd_node **iter, enum lyxp_node_type *iter_type, const struct lyd_node *node,
5916 enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set)
5917{
5918 const struct lyd_node *next = NULL;
5919 enum lyxp_node_type next_type = 0;
5920
5921 if (!*iter_type) {
5922 /* first returned node */
5923 return moveto_axis_node_next_first(iter, iter_type, node, node_type, axis, set);
5924 }
5925
5926 switch (axis) {
5927 case LYXP_AXIS_ANCESTOR_OR_SELF:
5928 if ((*iter == node) && (*iter_type == node_type)) {
5929 /* fake first ancestor, we returned self before */
5930 *iter = NULL;
5931 *iter_type = 0;
5932 return moveto_axis_node_next_first(iter, iter_type, node, node_type, LYXP_AXIS_ANCESTOR, set);
5933 } /* else continue ancestor */
5934
5935 /* fallthrough */
5936 case LYXP_AXIS_ANCESTOR:
5937 if (*iter_type == LYXP_NODE_ELEM) {
5938 /* iter parent */
5939 next = lyd_parent(*iter);
5940 next_type = next ? LYXP_NODE_ELEM : set->root_type;
5941 } /* else root, no ancestors */
5942 break;
5943
5944 case LYXP_AXIS_CHILD:
5945 assert(*iter_type == LYXP_NODE_ELEM);
5946
5947 /* next sibling (child) */
5948 next = (*iter)->next;
5949 next_type = next ? LYXP_NODE_ELEM : 0;
5950 break;
5951
5952 case LYXP_AXIS_DESCENDANT_OR_SELF:
5953 if ((*iter == node) && (*iter_type == node_type)) {
5954 /* fake first descendant, we returned self before */
5955 *iter = NULL;
5956 *iter_type = 0;
5957 return moveto_axis_node_next_first(iter, iter_type, node, node_type, LYXP_AXIS_DESCENDANT, set);
5958 } /* else continue descendant */
5959
5960 /* fallthrough */
5961 case LYXP_AXIS_DESCENDANT:
5962 assert(*iter_type == LYXP_NODE_ELEM);
5963 next = moveto_axis_node_next_dfs_forward(*iter, node);
5964 next_type = next ? LYXP_NODE_ELEM : 0;
5965 break;
5966
5967 case LYXP_AXIS_FOLLOWING:
5968 assert(*iter_type == LYXP_NODE_ELEM);
5969 next = moveto_axis_node_next_dfs_forward(*iter, NULL);
5970 next_type = next ? LYXP_NODE_ELEM : 0;
5971 break;
5972
5973 case LYXP_AXIS_FOLLOWING_SIBLING:
5974 assert(*iter_type == LYXP_NODE_ELEM);
5975
5976 /* next sibling */
5977 next = (*iter)->next;
5978 next_type = next ? LYXP_NODE_ELEM : 0;
5979 break;
5980
5981 case LYXP_AXIS_PARENT:
5982 case LYXP_AXIS_SELF:
5983 /* parent/self was returned before */
5984 break;
5985
5986 case LYXP_AXIS_PRECEDING:
5987 assert(*iter_type == LYXP_NODE_ELEM);
5988 next = moveto_axis_node_next_dfs_backward(*iter, NULL);
5989 next_type = next ? LYXP_NODE_ELEM : 0;
5990 break;
5991
5992 case LYXP_AXIS_PRECEDING_SIBLING:
5993 assert(*iter_type == LYXP_NODE_ELEM);
5994
5995 /* previous sibling */
5996 next = (*iter)->prev->next ? (*iter)->prev : NULL;
5997 next_type = next ? LYXP_NODE_ELEM : 0;
5998 break;
5999
6000 case LYXP_AXIS_ATTRIBUTE:
6001 /* handled specially */
6002 assert(0);
6003 LOGINT(set->ctx);
6004 break;
6005 }
6006
6007 *iter = next;
6008 *iter_type = next_type;
6009 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
6010}
6011
6012/**
6013 * @brief Move context @p set to a node. Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006014 *
6015 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006016 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006017 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko49fec8e2022-05-24 10:28:33 +02006018 * @param[in] axis Axis to search on.
Michal Vaskocdad7122020-11-09 21:04:44 +01006019 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006020 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6021 */
6022static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006023moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, enum lyxp_axis axis,
6024 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006025{
Michal Vasko230cf972021-12-02 12:31:00 +01006026 LY_ERR r, rc = LY_SUCCESS;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006027 const struct lyd_node *iter;
6028 enum lyxp_node_type iter_type;
Michal Vasko230cf972021-12-02 12:31:00 +01006029 struct lyxp_set result;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006030 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006031
aPiecek8b0cc152021-05-31 16:40:31 +02006032 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006033 return LY_SUCCESS;
6034 }
6035
6036 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006037 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006038 return LY_EVALID;
6039 }
6040
Michal Vasko230cf972021-12-02 12:31:00 +01006041 /* init result set */
6042 set_init(&result, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006043
Michal Vasko49fec8e2022-05-24 10:28:33 +02006044 for (i = 0; i < set->used; ++i) {
6045 /* iterate over all the nodes on the axis of the node */
6046 iter = NULL;
6047 iter_type = 0;
6048 while (!moveto_axis_node_next(&iter, &iter_type, set->val.nodes[i].node, set->val.nodes[i].type, axis, set)) {
6049 r = moveto_node_check(iter, iter_type, set, ncname, moveto_mod, options);
6050 if (r == LY_EINCOMPLETE) {
Michal Vasko230cf972021-12-02 12:31:00 +01006051 rc = r;
6052 goto cleanup;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006053 } else if (r) {
6054 continue;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006055 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02006056
6057 /* check for duplicates if they are possible */
6058 switch (axis) {
6059 case LYXP_AXIS_ANCESTOR:
6060 case LYXP_AXIS_ANCESTOR_OR_SELF:
6061 case LYXP_AXIS_DESCENDANT:
6062 case LYXP_AXIS_DESCENDANT_OR_SELF:
6063 case LYXP_AXIS_FOLLOWING:
6064 case LYXP_AXIS_FOLLOWING_SIBLING:
6065 case LYXP_AXIS_PARENT:
6066 case LYXP_AXIS_PRECEDING:
6067 case LYXP_AXIS_PRECEDING_SIBLING:
Michal Vasko306e2832022-07-25 09:15:17 +02006068 result.non_child_axis = 1;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006069 if (set_dup_node_check(&result, iter, iter_type, -1)) {
6070 continue;
6071 }
6072 break;
6073 case LYXP_AXIS_CHILD:
6074 case LYXP_AXIS_SELF:
6075 break;
6076 case LYXP_AXIS_ATTRIBUTE:
6077 /* handled specially */
6078 assert(0);
6079 LOGINT(set->ctx);
6080 break;
6081 }
6082
6083 /* matching node */
6084 set_insert_node(&result, iter, 0, iter_type, result.used);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006085 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006086 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006087
Michal Vasko230cf972021-12-02 12:31:00 +01006088 /* move result to the set */
6089 lyxp_set_free_content(set);
6090 *set = result;
6091 result.type = LYXP_SET_NUMBER;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006092
Michal Vasko306e2832022-07-25 09:15:17 +02006093 /* sort the final set if the document order could have been broken */
6094 if (set->non_child_axis) {
6095 set_sort(set);
6096 } else {
6097 assert(!set_sort(set));
6098 }
Michal Vasko230cf972021-12-02 12:31:00 +01006099
6100cleanup:
6101 lyxp_set_free_content(&result);
6102 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006103}
6104
6105/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006106 * @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 +02006107 *
6108 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02006109 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02006110 * @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 +01006111 * @param[in] options XPath options.
Michal Vaskod3678892020-05-21 10:06:58 +02006112 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6113 */
6114static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006115moveto_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 +01006116 uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02006117{
Michal Vaskoddd76592022-01-17 13:34:48 +01006118 LY_ERR ret = LY_SUCCESS, r;
Michal Vaskod3678892020-05-21 10:06:58 +02006119 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02006120 const struct lyd_node *siblings;
Michal Vasko230cf972021-12-02 12:31:00 +01006121 struct lyxp_set result;
Michal Vasko004d3152020-06-11 19:59:22 +02006122 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006123
Michal Vasko004d3152020-06-11 19:59:22 +02006124 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02006125
Michal Vasko50aaa072021-12-02 13:11:56 +01006126 /* init result set */
6127 set_init(&result, set);
6128
aPiecek8b0cc152021-05-31 16:40:31 +02006129 if (options & LYXP_SKIP_EXPR) {
Michal Vasko004d3152020-06-11 19:59:22 +02006130 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006131 }
6132
6133 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006134 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko004d3152020-06-11 19:59:22 +02006135 ret = LY_EVALID;
6136 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006137 }
6138
6139 /* context check for all the nodes since we have the schema node */
6140 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
6141 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02006142 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02006143 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
6144 (scnode != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02006145 lyxp_set_free_content(set);
6146 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02006147 }
6148
6149 /* create specific data instance if needed */
6150 if (scnode->nodetype == LYS_LIST) {
Michal Vasko90189962023-02-28 12:10:34 +01006151 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, NULL, &inst), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02006152 } else if (scnode->nodetype == LYS_LEAFLIST) {
6153 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02006154 }
6155
Michal Vasko230cf972021-12-02 12:31:00 +01006156 for (i = 0; i < set->used; ++i) {
Michal Vaskod3678892020-05-21 10:06:58 +02006157 siblings = NULL;
6158
6159 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
6160 assert(!set->val.nodes[i].node);
6161
6162 /* search in all the trees */
6163 siblings = set->tree;
6164 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
6165 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006166 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02006167 }
6168
6169 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02006170 if (inst) {
Michal Vaskoddd76592022-01-17 13:34:48 +01006171 r = lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02006172 } else {
Michal Vaskoddd76592022-01-17 13:34:48 +01006173 r = lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02006174 }
Michal Vaskoddd76592022-01-17 13:34:48 +01006175 LY_CHECK_ERR_GOTO(r && (r != LY_ENOTFOUND), ret = r, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02006176
6177 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006178 if (!(options & LYXP_IGNORE_WHEN) && sub && lysc_has_when(sub->schema) && !(sub->flags & LYD_WHEN_TRUE)) {
Michal Vasko004d3152020-06-11 19:59:22 +02006179 ret = LY_EINCOMPLETE;
6180 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02006181 }
6182
6183 if (sub) {
6184 /* pos filled later */
Michal Vasko230cf972021-12-02 12:31:00 +01006185 set_insert_node(&result, sub, 0, LYXP_NODE_ELEM, result.used);
Michal Vaskod3678892020-05-21 10:06:58 +02006186 }
6187 }
6188
Michal Vasko230cf972021-12-02 12:31:00 +01006189 /* move result to the set */
6190 lyxp_set_free_content(set);
6191 *set = result;
6192 result.type = LYXP_SET_NUMBER;
6193 assert(!set_sort(set));
6194
Michal Vasko004d3152020-06-11 19:59:22 +02006195cleanup:
Michal Vasko230cf972021-12-02 12:31:00 +01006196 lyxp_set_free_content(&result);
Michal Vasko004d3152020-06-11 19:59:22 +02006197 lyd_free_tree(inst);
6198 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02006199}
6200
6201/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006202 * @brief Check @p node as a part of schema NameTest processing.
6203 *
6204 * @param[in] node Schema node to check.
6205 * @param[in] ctx_scnode Context node.
6206 * @param[in] set Set to read general context from.
6207 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
6208 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
6209 * @return LY_ERR (LY_ENOT if node does not match, LY_EINVAL if neither node nor any children match)
6210 */
6211static LY_ERR
6212moveto_scnode_check(const struct lysc_node *node, const struct lysc_node *ctx_scnode, const struct lyxp_set *set,
6213 const char *node_name, const struct lys_module *moveto_mod)
6214{
6215 if (!moveto_mod && node_name) {
6216 switch (set->format) {
6217 case LY_VALUE_SCHEMA:
6218 case LY_VALUE_SCHEMA_RESOLVED:
6219 /* use current module */
6220 moveto_mod = set->cur_mod;
6221 break;
6222 case LY_VALUE_JSON:
6223 case LY_VALUE_LYB:
6224 case LY_VALUE_STR_NS:
6225 /* inherit module of the context node, if any */
6226 if (ctx_scnode) {
6227 moveto_mod = ctx_scnode->module;
6228 }
6229 break;
6230 case LY_VALUE_CANON:
6231 case LY_VALUE_XML:
6232 /* not defined */
6233 LOGINT(set->ctx);
6234 return LY_EINVAL;
6235 }
6236 }
6237
6238 if (!node) {
6239 /* root will not match a specific node */
6240 if (node_name || moveto_mod) {
6241 return LY_ENOT;
6242 }
6243 return LY_SUCCESS;
6244 }
6245
6246 /* module check */
6247 if (moveto_mod && (node->module != moveto_mod)) {
6248 return LY_ENOT;
6249 }
6250
6251 /* context check */
6252 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
6253 return LY_EINVAL;
6254 } else if (set->context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != set->context_op)) {
6255 return LY_EINVAL;
6256 }
6257
6258 /* name check */
6259 if (node_name && (node->name != node_name)) {
6260 return LY_ENOT;
6261 }
6262
6263 /* match */
6264 return LY_SUCCESS;
6265}
6266
6267/**
6268 * @brief Get the next node in a forward schema node DFS.
6269 *
6270 * @param[in] iter Last returned node.
6271 * @param[in] stop Node to stop the search on and not return.
6272 * @param[in] getnext_opts Options for ::lys_getnext().
6273 * @return Next node, NULL if there are no more.
6274 */
6275static const struct lysc_node *
6276moveto_axis_scnode_next_dfs_forward(const struct lysc_node *iter, const struct lysc_node *stop, uint32_t getnext_opts)
6277{
6278 const struct lysc_node *next = NULL;
6279
6280 next = lysc_node_child(iter);
6281 if (!next) {
6282 /* no children, try siblings */
Michal Vasko34a22fe2022-06-15 07:58:55 +02006283 if ((iter == stop) || !lysc_data_parent(iter)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006284 /* we are done, no next element to process */
6285 return NULL;
6286 }
6287
6288 next = lys_getnext(iter, lysc_data_parent(iter), NULL, getnext_opts);
6289 }
6290 while (!next && iter) {
6291 /* parent is already processed, go to its sibling */
6292 iter = iter->parent;
Michal Vasko34a22fe2022-06-15 07:58:55 +02006293 if ((iter == stop) || !lysc_data_parent(iter)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006294 /* we are done, no next element to process */
6295 return NULL;
6296 }
6297 next = lys_getnext(iter, lysc_data_parent(iter), NULL, getnext_opts);
6298 }
6299
6300 return next;
6301}
6302
6303/**
6304 * @brief Consider schema node based on its in_ctx enum value.
6305 *
6306 * @param[in,out] in_ctx In_ctx enum of the schema node, may be updated.
6307 * @param[in] axis Axis to use.
6308 * @return LY_SUCCESS on success.
6309 * @return LY_ENOT if the node should not be returned.
6310 */
6311static LY_ERR
6312moveto_axis_scnode_next_in_ctx(int32_t *in_ctx, enum lyxp_axis axis)
6313{
6314 switch (axis) {
6315 case LYXP_AXIS_SELF:
6316 if ((*in_ctx == LYXP_SET_SCNODE_START) || (*in_ctx == LYXP_SET_SCNODE_ATOM_CTX)) {
6317 /* additionally put the start node into context */
6318 *in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
6319 return LY_SUCCESS;
6320 }
6321 break;
6322 case LYXP_AXIS_PARENT:
6323 case LYXP_AXIS_ANCESTOR_OR_SELF:
6324 case LYXP_AXIS_ANCESTOR:
6325 case LYXP_AXIS_DESCENDANT_OR_SELF:
6326 case LYXP_AXIS_DESCENDANT:
6327 case LYXP_AXIS_FOLLOWING:
6328 case LYXP_AXIS_FOLLOWING_SIBLING:
6329 case LYXP_AXIS_PRECEDING:
6330 case LYXP_AXIS_PRECEDING_SIBLING:
6331 case LYXP_AXIS_CHILD:
6332 if (*in_ctx == LYXP_SET_SCNODE_START) {
6333 /* remember that context node was used */
6334 *in_ctx = LYXP_SET_SCNODE_START_USED;
6335 return LY_SUCCESS;
6336 } else if (*in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
6337 /* traversed */
6338 *in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
6339 return LY_SUCCESS;
6340 }
6341 break;
6342 case LYXP_AXIS_ATTRIBUTE:
6343 /* unreachable */
6344 assert(0);
6345 LOGINT(NULL);
6346 break;
6347 }
6348
6349 return LY_ENOT;
6350}
6351
6352/**
6353 * @brief Get previous sibling for a schema node.
6354 *
6355 * @param[in] scnode Schema node.
6356 * @param[in] getnext_opts Options for ::lys_getnext().
6357 * @return Previous sibling, NULL if none.
6358 */
6359static const struct lysc_node *
6360moveto_axis_scnode_preceding_sibling(const struct lysc_node *scnode, uint32_t getnext_opts)
6361{
6362 const struct lysc_node *next = NULL, *prev = NULL;
6363
6364 while ((next = lys_getnext(next, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts))) {
6365 if (next == scnode) {
6366 break;
6367 }
6368
6369 prev = next;
6370 }
6371
6372 return prev;
6373}
6374
6375/**
6376 * @brief Get the first schema node on an axis for a context node.
6377 *
6378 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
6379 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
6380 * @param[in,out] iter_mod Internal module iterator, do not change.
6381 * @param[in,out] iter_mod_idx Internal module index iterator, do not change.
6382 * @param[in] scnode Context node.
6383 * @param[in] node_type Type of @p scnode.
6384 * @param[in] in_ctx In_ctx enum of @p scnode.
6385 * @param[in] axis Axis to use.
6386 * @param[in] set XPath set with the general context.
6387 * @param[in] getnext_opts Options for ::lys_getnext().
6388 * @return LY_SUCCESS on success.
6389 * @return LY_ENOTFOUND if no next node found.
6390 */
6391static LY_ERR
6392moveto_axis_scnode_next_first(const struct lysc_node **iter, enum lyxp_node_type *iter_type, const struct lys_module **iter_mod,
6393 uint32_t *iter_mod_idx, const struct lysc_node *scnode, enum lyxp_node_type node_type, enum lyxp_axis axis,
6394 struct lyxp_set *set, uint32_t getnext_opts)
6395{
6396 const struct lysc_node *next = NULL;
6397 enum lyxp_node_type next_type = 0;
6398
6399 assert(!*iter);
6400 assert(!*iter_type);
6401
6402 *iter_mod = NULL;
6403 *iter_mod_idx = 0;
6404
6405 switch (axis) {
6406 case LYXP_AXIS_ANCESTOR_OR_SELF:
6407 case LYXP_AXIS_DESCENDANT_OR_SELF:
6408 case LYXP_AXIS_SELF:
6409 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ELEM)) {
6410 /* just return the node */
6411 next = scnode;
6412 next_type = node_type;
6413 }
6414 break;
6415
6416 case LYXP_AXIS_ANCESTOR:
6417 case LYXP_AXIS_PARENT:
6418 if (node_type == LYXP_NODE_ELEM) {
6419 next = lysc_data_parent(scnode);
6420 next_type = next ? LYXP_NODE_ELEM : set->root_type;
6421 } /* else no parent */
6422 break;
6423
6424 case LYXP_AXIS_DESCENDANT:
6425 case LYXP_AXIS_CHILD:
6426 if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) {
6427 /* it can actually be in any module, it's all <running>, and even if it's moveto_mod (if set),
6428 * it can be in a top-level augment */
6429 while ((*iter_mod = ly_ctx_get_module_iter(set->ctx, iter_mod_idx))) {
6430 /* module may not be implemented or not compiled yet */
6431 if (!(*iter_mod)->compiled) {
6432 continue;
6433 }
6434
6435 /* get next node */
6436 if ((next = lys_getnext(NULL, NULL, (*iter_mod)->compiled, getnext_opts))) {
6437 next_type = LYXP_NODE_ELEM;
6438 break;
6439 }
6440 }
6441 } else if (node_type == LYXP_NODE_ELEM) {
6442 /* get next node */
6443 next = lys_getnext(NULL, scnode, NULL, getnext_opts);
6444 next_type = next ? LYXP_NODE_ELEM : 0;
6445 }
6446 break;
6447
6448 case LYXP_AXIS_FOLLOWING:
6449 case LYXP_AXIS_FOLLOWING_SIBLING:
6450 if (node_type == LYXP_NODE_ELEM) {
6451 /* first next sibling */
6452 next = lys_getnext(scnode, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts);
6453 next_type = next ? LYXP_NODE_ELEM : 0;
6454 } /* else no sibling */
6455 break;
6456
6457 case LYXP_AXIS_PRECEDING:
6458 case LYXP_AXIS_PRECEDING_SIBLING:
6459 if (node_type == LYXP_NODE_ELEM) {
6460 /* first parent sibling */
6461 next = lys_getnext(NULL, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts);
6462 if (next == scnode) {
6463 /* no preceding sibling */
6464 next = NULL;
6465 }
6466 next_type = next ? LYXP_NODE_ELEM : 0;
6467 } /* else no sibling */
6468 break;
6469
6470 case LYXP_AXIS_ATTRIBUTE:
6471 /* unreachable */
6472 assert(0);
6473 LOGINT(set->ctx);
6474 break;
6475 }
6476
6477 *iter = next;
6478 *iter_type = next_type;
6479 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
6480}
6481
6482/**
6483 * @brief Iterate over all schema nodes on an axis for a context node.
6484 *
6485 * @param[in,out] iter Last returned node, start with NULL, updated to the next node.
6486 * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node.
6487 * @param[in,out] iter_mod Internal module iterator, do not change.
6488 * @param[in,out] iter_mod_idx Internal module index iterator, do not change.
6489 * @param[in] scnode Context node.
6490 * @param[in] node_type Type of @p scnode.
6491 * @param[in] axis Axis to use.
6492 * @param[in] set XPath set with the general context.
6493 * @param[in] getnext_opts Options for ::lys_getnext().
6494 * @return LY_SUCCESS on success.
6495 * @return LY_ENOTFOUND if no next node found.
6496 */
6497static LY_ERR
6498moveto_axis_scnode_next(const struct lysc_node **iter, enum lyxp_node_type *iter_type, const struct lys_module **iter_mod,
6499 uint32_t *iter_mod_idx, const struct lysc_node *scnode, enum lyxp_node_type node_type, enum lyxp_axis axis,
6500 struct lyxp_set *set, uint32_t getnext_opts)
6501{
6502 const struct lysc_node *next = NULL, *dfs_stop;
6503 enum lyxp_node_type next_type = 0;
6504
6505 if (!*iter_type) {
6506 /* first returned node */
6507 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type, axis, set,
6508 getnext_opts);
6509 }
6510
6511 switch (axis) {
6512 case LYXP_AXIS_PARENT:
6513 case LYXP_AXIS_SELF:
6514 /* parent/self was returned before */
6515 break;
6516
6517 case LYXP_AXIS_ANCESTOR_OR_SELF:
6518 if ((*iter == scnode) && (*iter_type == node_type)) {
6519 /* fake first ancestor, we returned self before */
6520 *iter = NULL;
6521 *iter_type = 0;
6522 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type,
6523 LYXP_AXIS_ANCESTOR, set, getnext_opts);
6524 } /* else continue ancestor */
6525
6526 /* fallthrough */
6527 case LYXP_AXIS_ANCESTOR:
6528 if (*iter_type == LYXP_NODE_ELEM) {
6529 next = lysc_data_parent(*iter);
6530 next_type = next ? LYXP_NODE_ELEM : set->root_type;
6531 } /* else no ancestor */
6532 break;
6533
6534 case LYXP_AXIS_DESCENDANT_OR_SELF:
6535 if ((*iter == scnode) && (*iter_type == node_type)) {
6536 /* fake first descendant, we returned self before */
6537 *iter = NULL;
6538 *iter_type = 0;
6539 return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type,
6540 LYXP_AXIS_DESCENDANT, set, getnext_opts);
6541 } /* else DFS until context node */
6542 dfs_stop = scnode;
6543
6544 /* fallthrough */
6545 case LYXP_AXIS_DESCENDANT:
6546 if (axis == LYXP_AXIS_DESCENDANT) {
6547 /* DFS until the context node */
6548 dfs_stop = scnode;
6549 }
6550
6551 /* fallthrough */
6552 case LYXP_AXIS_PRECEDING:
6553 if (axis == LYXP_AXIS_PRECEDING) {
6554 /* DFS until the previous sibling */
6555 dfs_stop = moveto_axis_scnode_preceding_sibling(scnode, getnext_opts);
6556 assert(dfs_stop);
6557
6558 if (*iter == dfs_stop) {
6559 /* we are done */
6560 break;
6561 }
6562 }
6563
6564 /* fallthrough */
6565 case LYXP_AXIS_FOLLOWING:
6566 if (axis == LYXP_AXIS_FOLLOWING) {
6567 /* DFS through the whole module */
6568 dfs_stop = NULL;
6569 }
6570
6571 /* nested nodes */
6572 assert(*iter);
6573 next = moveto_axis_scnode_next_dfs_forward(*iter, dfs_stop, getnext_opts);
6574 if (next) {
6575 next_type = LYXP_NODE_ELEM;
6576 break;
6577 } /* else get next top-level node just like a child */
6578
6579 /* fallthrough */
6580 case LYXP_AXIS_CHILD:
6581 case LYXP_AXIS_FOLLOWING_SIBLING:
6582 if (!*iter_mod) {
6583 /* nodes from a single module */
6584 if ((next = lys_getnext(*iter, lysc_data_parent(*iter), (*iter)->module->compiled, getnext_opts))) {
6585 next_type = LYXP_NODE_ELEM;
6586 break;
6587 }
6588
6589 assert(scnode);
Michal Vaskoa353cce2022-11-14 10:09:55 +01006590 if ((axis != LYXP_AXIS_CHILD) && !lysc_data_parent(scnode)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006591 /* iterating over top-level nodes, find next */
6592 while (lysc_data_parent(*iter)) {
6593 *iter = lysc_data_parent(*iter);
6594 }
6595 if ((next = lys_getnext(*iter, NULL, (*iter)->module->compiled, getnext_opts))) {
6596 next_type = LYXP_NODE_ELEM;
6597 break;
6598 }
6599 }
6600 }
6601
6602 while (*iter_mod) {
6603 /* module top-level nodes */
6604 if ((next = lys_getnext(*iter, NULL, (*iter_mod)->compiled, getnext_opts))) {
6605 next_type = LYXP_NODE_ELEM;
6606 break;
6607 }
6608
6609 /* get next module */
6610 while ((*iter_mod = ly_ctx_get_module_iter(set->ctx, iter_mod_idx))) {
6611 /* module may not be implemented or not compiled yet */
6612 if ((*iter_mod)->compiled) {
6613 break;
6614 }
6615 }
6616
6617 /* new module, start over */
6618 *iter = NULL;
6619 }
6620 break;
6621
6622 case LYXP_AXIS_PRECEDING_SIBLING:
6623 assert(*iter);
6624
6625 /* next parent sibling until scnode */
6626 next = lys_getnext(*iter, lysc_data_parent(*iter), (*iter)->module->compiled, getnext_opts);
6627 if (next == scnode) {
6628 /* no previous sibling */
6629 next = NULL;
6630 }
6631 next_type = next ? LYXP_NODE_ELEM : 0;
6632 break;
6633
6634 case LYXP_AXIS_ATTRIBUTE:
6635 /* unreachable */
6636 assert(0);
6637 LOGINT(set->ctx);
6638 break;
6639 }
6640
6641 *iter = next;
6642 *iter_type = next_type;
6643 return next_type ? LY_SUCCESS : LY_ENOTFOUND;
6644}
6645
6646/**
Michal Vaskod3678892020-05-21 10:06:58 +02006647 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
6648 *
6649 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006650 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006651 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko49fec8e2022-05-24 10:28:33 +02006652 * @param[in] axis Axis to search on.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006653 * @param[in] options XPath options.
6654 * @return LY_ERR
6655 */
6656static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006657moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, enum lyxp_axis axis,
6658 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006659{
Radek Krejci857189e2020-09-01 13:26:36 +02006660 ly_bool temp_ctx = 0;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006661 uint32_t getnext_opts, orig_used, i, mod_idx, idx;
stewegd8e2fc92023-05-31 09:52:56 +02006662 const struct lys_module *mod = NULL;
Michal Vasko49fec8e2022-05-24 10:28:33 +02006663 const struct lysc_node *iter;
6664 enum lyxp_node_type iter_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006665
aPiecek8b0cc152021-05-31 16:40:31 +02006666 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006667 return LY_SUCCESS;
6668 }
6669
6670 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006671 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006672 return LY_EVALID;
6673 }
6674
Michal Vaskocafad9d2019-11-07 15:20:03 +01006675 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01006676 getnext_opts = 0;
Michal Vaskocafad9d2019-11-07 15:20:03 +01006677 if (options & LYXP_SCNODE_OUTPUT) {
6678 getnext_opts |= LYS_GETNEXT_OUTPUT;
6679 }
Michal Vaskoe482bb92023-02-01 11:41:41 +01006680 if (options & LYXP_SCNODE_SCHEMAMOUNT) {
6681 getnext_opts |= LYS_GETNEXT_WITHSCHEMAMOUNT;
6682 }
Michal Vaskocafad9d2019-11-07 15:20:03 +01006683
Michal Vasko03ff5a72019-09-11 13:49:33 +02006684 orig_used = set->used;
6685 for (i = 0; i < orig_used; ++i) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006686 /* update in_ctx first */
6687 if (moveto_axis_scnode_next_in_ctx(&set->val.scnodes[i].in_ctx, axis)) {
6688 /* not usable, skip */
6689 continue;
6690 }
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006691
Michal Vasko49fec8e2022-05-24 10:28:33 +02006692 iter = NULL;
6693 iter_type = 0;
6694 while (!moveto_axis_scnode_next(&iter, &iter_type, &mod, &mod_idx, set->val.scnodes[i].scnode,
6695 set->val.scnodes[i].type, axis, set, getnext_opts)) {
6696 if (moveto_scnode_check(iter, NULL, set, ncname, moveto_mod)) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006697 continue;
6698 }
6699
Michal Vasko49fec8e2022-05-24 10:28:33 +02006700 /* insert */
Michal Vaskoe4a6d012023-05-22 14:34:52 +02006701 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, iter_type, axis, &idx));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006702
Michal Vasko49fec8e2022-05-24 10:28:33 +02006703 /* we need to prevent these nodes from being considered in this moveto */
6704 if ((idx < orig_used) && (idx > i)) {
6705 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
6706 temp_ctx = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006707 }
6708 }
Michal Vasko66330fc2022-11-21 15:52:24 +01006709
6710 if (moveto_mod && ncname && ((axis == LYXP_AXIS_DESCENDANT) || (axis == LYXP_AXIS_CHILD)) &&
6711 (set->val.scnodes[i].type == LYXP_NODE_ELEM) && !ly_nested_ext_schema(NULL, set->val.scnodes[i].scnode,
6712 moveto_mod->name, strlen(moveto_mod->name), LY_VALUE_JSON, NULL, ncname, strlen(ncname), &iter, NULL)) {
6713 /* there is a matching node from an extension, use it */
Michal Vaskoe4a6d012023-05-22 14:34:52 +02006714 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, axis, &idx));
Michal Vasko66330fc2022-11-21 15:52:24 +01006715 if ((idx < orig_used) && (idx > i)) {
6716 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
6717 temp_ctx = 1;
6718 }
6719 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006720 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006721
6722 /* correct temporary in_ctx values */
6723 if (temp_ctx) {
6724 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006725 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NEW_CTX) {
6726 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006727 }
6728 }
6729 }
6730
6731 return LY_SUCCESS;
6732}
6733
6734/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006735 * @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 +02006736 * Context position aware.
6737 *
6738 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006739 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006740 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01006741 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006742 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6743 */
6744static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006745moveto_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 +02006746{
6747 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006748 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006749 struct lyxp_set ret_set;
6750 LY_ERR rc;
6751
aPiecek8b0cc152021-05-31 16:40:31 +02006752 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006753 return LY_SUCCESS;
6754 }
6755
6756 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006757 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006758 return LY_EVALID;
6759 }
6760
Michal Vasko9f96a052020-03-10 09:41:45 +01006761 /* 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 +02006762 rc = xpath_pi_node(set, LYXP_AXIS_CHILD, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006763 LY_CHECK_RET(rc);
6764
Michal Vasko6346ece2019-09-24 13:12:53 +02006765 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006766 set_init(&ret_set, set);
6767 for (i = 0; i < set->used; ++i) {
6768
6769 /* TREE DFS */
6770 start = set->val.nodes[i].node;
6771 for (elem = next = start; elem; elem = next) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02006772 rc = moveto_node_check(elem, LYXP_NODE_ELEM, set, ncname, moveto_mod, options);
Michal Vasko6346ece2019-09-24 13:12:53 +02006773 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006774 /* add matching node into result set */
6775 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
6776 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
6777 /* the node is a duplicate, we'll process it later in the set */
6778 goto skip_children;
6779 }
Michal Vasko6346ece2019-09-24 13:12:53 +02006780 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02006781 return rc;
6782 } else if (rc == LY_EINVAL) {
6783 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006784 }
6785
6786 /* TREE DFS NEXT ELEM */
6787 /* select element for the next run - children first */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006788 next = lyd_child(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006789 if (!next) {
6790skip_children:
6791 /* no children, so try siblings, but only if it's not the start,
6792 * that is considered to be the root and it's siblings are not traversed */
6793 if (elem != start) {
6794 next = elem->next;
6795 } else {
6796 break;
6797 }
6798 }
6799 while (!next) {
6800 /* no siblings, go back through the parents */
Michal Vasko9e685082021-01-29 14:49:09 +01006801 if (lyd_parent(elem) == start) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006802 /* we are done, no next element to process */
6803 break;
6804 }
6805 /* parent is already processed, go to its sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01006806 elem = lyd_parent(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006807 next = elem->next;
6808 }
6809 }
6810 }
6811
6812 /* make the temporary set the current one */
6813 ret_set.ctx_pos = set->ctx_pos;
6814 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006815 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006816 memcpy(set, &ret_set, sizeof *set);
Michal Vasko306e2832022-07-25 09:15:17 +02006817 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006818
6819 return LY_SUCCESS;
6820}
6821
6822/**
Michal Vasko49fec8e2022-05-24 10:28:33 +02006823 * @brief Move context @p set to a child schema node and all its descendants starting from a node.
6824 * Result is LYXP_SET_NODE_SET.
6825 *
6826 * @param[in] set Set to use.
6827 * @param[in] start Start node whose subtree to add.
6828 * @param[in] start_idx Index of @p start in @p set.
6829 * @param[in] moveto_mod Matching node module, NULL for no prefix.
6830 * @param[in] ncname Matching node name in the dictionary, NULL for any.
6831 * @param[in] options XPath options.
6832 * @return LY_ERR value.
6833 */
6834static LY_ERR
6835moveto_scnode_dfs(struct lyxp_set *set, const struct lysc_node *start, uint32_t start_idx,
6836 const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
6837{
6838 const struct lysc_node *next, *elem;
6839 uint32_t idx;
6840 LY_ERR rc;
6841
6842 /* TREE DFS */
6843 for (elem = next = start; elem; elem = next) {
6844 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
6845 /* schema-only nodes, skip root */
6846 goto next_iter;
6847 }
6848
6849 rc = moveto_scnode_check(elem, start, set, ncname, moveto_mod);
6850 if (!rc) {
6851 if (lyxp_set_scnode_contains(set, elem, LYXP_NODE_ELEM, start_idx, &idx)) {
6852 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
6853 if (idx > start_idx) {
6854 /* we will process it later in the set */
6855 goto skip_children;
6856 }
6857 } else {
Michal Vaskoe4a6d012023-05-22 14:34:52 +02006858 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM, LYXP_AXIS_DESCENDANT, NULL));
Michal Vasko49fec8e2022-05-24 10:28:33 +02006859 }
6860 } else if (rc == LY_EINVAL) {
6861 goto skip_children;
6862 }
6863
6864next_iter:
6865 /* TREE DFS NEXT ELEM */
6866 /* select element for the next run - children first */
6867 next = lysc_node_child(elem);
6868 if (next && (next->nodetype == LYS_INPUT) && (options & LYXP_SCNODE_OUTPUT)) {
6869 next = next->next;
6870 } else if (next && (next->nodetype == LYS_OUTPUT) && !(options & LYXP_SCNODE_OUTPUT)) {
6871 next = next->next;
6872 }
6873 if (!next) {
6874skip_children:
6875 /* no children, so try siblings, but only if it's not the start,
6876 * that is considered to be the root and it's siblings are not traversed */
6877 if (elem != start) {
6878 next = elem->next;
6879 } else {
6880 break;
6881 }
6882 }
6883 while (!next) {
6884 /* no siblings, go back through the parents */
6885 if (elem->parent == start) {
6886 /* we are done, no next element to process */
6887 break;
6888 }
6889 /* parent is already processed, go to its sibling */
6890 elem = elem->parent;
6891 next = elem->next;
6892 }
6893 }
6894
6895 return LY_SUCCESS;
6896}
6897
6898/**
6899 * @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 +02006900 *
6901 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006902 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02006903 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006904 * @param[in] options XPath options.
Michal Vasko49fec8e2022-05-24 10:28:33 +02006905 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006906 */
6907static LY_ERR
Michal Vasko49fec8e2022-05-24 10:28:33 +02006908moveto_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 +02006909{
Michal Vasko49fec8e2022-05-24 10:28:33 +02006910 uint32_t i, orig_used, mod_idx;
6911 const struct lys_module *mod;
6912 const struct lysc_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006913
aPiecek8b0cc152021-05-31 16:40:31 +02006914 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006915 return LY_SUCCESS;
6916 }
6917
6918 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006919 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006920 return LY_EVALID;
6921 }
6922
Michal Vasko03ff5a72019-09-11 13:49:33 +02006923 orig_used = set->used;
6924 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006925 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
6926 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006927 continue;
6928 }
6929
6930 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01006931 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01006932 } else {
Michal Vasko1a09b212021-05-06 13:00:10 +02006933 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006934 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006935
Michal Vasko49fec8e2022-05-24 10:28:33 +02006936 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6937 /* traverse all top-level nodes in all the modules */
6938 mod_idx = 0;
6939 while ((mod = ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
6940 /* module may not be implemented or not compiled yet */
6941 if (!mod->compiled) {
6942 continue;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006943 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006944
Michal Vasko49fec8e2022-05-24 10:28:33 +02006945 root = NULL;
6946 /* no getnext opts needed */
6947 while ((root = lys_getnext(root, NULL, mod->compiled, 0))) {
6948 LY_CHECK_RET(moveto_scnode_dfs(set, root, i, moveto_mod, ncname, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006949 }
6950 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02006951
6952 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6953 /* add all the descendants recursively */
6954 LY_CHECK_RET(moveto_scnode_dfs(set, set->val.scnodes[i].scnode, i, moveto_mod, ncname, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006955 }
6956 }
6957
6958 return LY_SUCCESS;
6959}
6960
6961/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006962 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006963 * Indirectly context position aware.
6964 *
6965 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02006966 * @param[in] mod Matching metadata module, NULL for any.
6967 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
aPiecek8b0cc152021-05-31 16:40:31 +02006968 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006969 * @return LY_ERR
6970 */
6971static LY_ERR
aPiecek8b0cc152021-05-31 16:40:31 +02006972moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006973{
Michal Vasko9f96a052020-03-10 09:41:45 +01006974 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006975
aPiecek8b0cc152021-05-31 16:40:31 +02006976 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006977 return LY_SUCCESS;
6978 }
6979
6980 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006981 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006982 return LY_EVALID;
6983 }
6984
Radek Krejci1deb5be2020-08-26 16:43:36 +02006985 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02006986 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006987
6988 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
6989 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01006990 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006991 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006992
6993 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006994 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006995 continue;
6996 }
6997
Michal Vaskod3678892020-05-21 10:06:58 +02006998 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006999 /* match */
7000 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01007001 set->val.meta[i].meta = sub;
7002 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007003 /* pos does not change */
7004 replaced = 1;
7005 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01007006 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 +02007007 }
7008 ++i;
7009 }
7010 }
7011 }
7012
7013 if (!replaced) {
7014 /* no match */
7015 set_remove_node(set, i);
7016 }
7017 }
7018
7019 return LY_SUCCESS;
7020}
7021
7022/**
7023 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02007024 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007025 *
7026 * @param[in,out] set1 Set to use for the result.
7027 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007028 * @return LY_ERR
7029 */
7030static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007031moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007032{
7033 LY_ERR rc;
7034
Michal Vaskod3678892020-05-21 10:06:58 +02007035 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007036 LOGVAL(set1->ctx, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007037 return LY_EVALID;
7038 }
7039
7040 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02007041 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007042 return LY_SUCCESS;
7043 }
7044
Michal Vaskod3678892020-05-21 10:06:58 +02007045 if (!set1->used) {
aPiecekadc1e4f2021-10-07 11:15:12 +02007046 /* release hidden allocated data (lyxp_set.size) */
7047 lyxp_set_free_content(set1);
7048 /* direct copying of the entire structure */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007049 memcpy(set1, set2, sizeof *set1);
7050 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02007051 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007052 return LY_SUCCESS;
7053 }
7054
7055 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007056 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007057
7058 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007059 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007060 LY_CHECK_RET(rc);
7061
7062 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007063 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007064
7065 return LY_SUCCESS;
7066}
7067
7068/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02007069 * @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 +02007070 * Context position aware.
7071 *
7072 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02007073 * @param[in] mod Matching metadata module, NULL for any.
7074 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01007075 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007076 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7077 */
7078static int
Michal Vaskocdad7122020-11-09 21:04:44 +01007079moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007080{
Michal Vasko9f96a052020-03-10 09:41:45 +01007081 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007082 struct lyxp_set *set_all_desc = NULL;
7083 LY_ERR rc;
7084
aPiecek8b0cc152021-05-31 16:40:31 +02007085 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007086 return LY_SUCCESS;
7087 }
7088
7089 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007090 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007091 return LY_EVALID;
7092 }
7093
Michal Vasko03ff5a72019-09-11 13:49:33 +02007094 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
7095 * but it likely won't be used much, so it's a waste of time */
7096 /* copy the context */
7097 set_all_desc = set_copy(set);
7098 /* get all descendant nodes (the original context nodes are removed) */
Michal Vasko49fec8e2022-05-24 10:28:33 +02007099 rc = moveto_node_alldesc_child(set_all_desc, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007100 if (rc != LY_SUCCESS) {
7101 lyxp_set_free(set_all_desc);
7102 return rc;
7103 }
7104 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007105 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007106 if (rc != LY_SUCCESS) {
7107 lyxp_set_free(set_all_desc);
7108 return rc;
7109 }
7110 lyxp_set_free(set_all_desc);
7111
Radek Krejci1deb5be2020-08-26 16:43:36 +02007112 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02007113 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007114
7115 /* only attributes of an elem can be in the result, skip all the rest,
7116 * we have all attributes qualified in lyd tree */
7117 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01007118 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007119 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02007120 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007121 continue;
7122 }
7123
Michal Vaskod3678892020-05-21 10:06:58 +02007124 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007125 /* match */
7126 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01007127 set->val.meta[i].meta = sub;
7128 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007129 /* pos does not change */
7130 replaced = 1;
7131 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01007132 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 +02007133 }
7134 ++i;
7135 }
7136 }
7137 }
7138
7139 if (!replaced) {
7140 /* no match */
7141 set_remove_node(set, i);
7142 }
7143 }
7144
7145 return LY_SUCCESS;
7146}
7147
7148/**
Michal Vasko8abcecc2022-07-28 09:55:01 +02007149 * @brief Move context @p set1 single item to the result of a comparison.
7150 *
7151 * @param[in] set1 First set with the item to compare.
7152 * @param[in] idx1 Index of the item in @p set1.
7153 * @param[in] set2 Second set.
7154 * @param[in] op Comparison operator to process.
7155 * @param[in] switch_operands Whether to switch sets as operands; whether it is `set1 op set2` or `set2 op set1`.
7156 * @param[out] result Result of the comparison.
7157 * @return LY_ERR value.
7158 */
7159static LY_ERR
7160moveto_op_comp_item(const struct lyxp_set *set1, uint32_t idx1, struct lyxp_set *set2, const char *op,
7161 ly_bool switch_operands, ly_bool *result)
7162{
7163 struct lyxp_set tmp1 = {0};
7164 LY_ERR rc = LY_SUCCESS;
7165
7166 assert(set1->type == LYXP_SET_NODE_SET);
7167
7168 /* cast set1 */
7169 switch (set2->type) {
7170 case LYXP_SET_NUMBER:
7171 rc = set_comp_cast(&tmp1, set1, LYXP_SET_NUMBER, idx1);
7172 break;
7173 case LYXP_SET_BOOLEAN:
7174 rc = set_comp_cast(&tmp1, set1, LYXP_SET_BOOLEAN, idx1);
7175 break;
7176 default:
7177 rc = set_comp_cast(&tmp1, set1, LYXP_SET_STRING, idx1);
7178 break;
7179 }
7180 LY_CHECK_GOTO(rc, cleanup);
7181
7182 /* canonize set2 */
7183 LY_CHECK_GOTO(rc = set_comp_canonize(set2, &set1->val.nodes[idx1]), cleanup);
7184
7185 /* compare recursively and store the result */
7186 if (switch_operands) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007187 LY_CHECK_GOTO(rc = moveto_op_comp(set2, &tmp1, op, result), cleanup);
Michal Vasko8abcecc2022-07-28 09:55:01 +02007188 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007189 LY_CHECK_GOTO(rc = moveto_op_comp(&tmp1, set2, op, result), cleanup);
Michal Vasko8abcecc2022-07-28 09:55:01 +02007190 }
7191
7192cleanup:
7193 lyxp_set_free_content(&tmp1);
7194 return rc;
7195}
7196
7197/**
7198 * @brief Move context @p set1 to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007199 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
7200 *
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007201 * @param[in] set1 Set acting as the first operand for @p op.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007202 * @param[in] set2 Set acting as the second operand for @p op.
7203 * @param[in] op Comparison operator to process.
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007204 * @param[out] result Result of the comparison.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007205 * @return LY_ERR
7206 */
7207static LY_ERR
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007208moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, ly_bool *result)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007209{
7210 /*
7211 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
7212 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
7213 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7214 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7215 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
7216 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7217 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7218 *
7219 * '=' or '!='
7220 * BOOLEAN + BOOLEAN
7221 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7222 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
7223 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7224 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
7225 * NUMBER + NUMBER
7226 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7227 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7228 * STRING + STRING
7229 *
7230 * '<=', '<', '>=', '>'
7231 * NUMBER + NUMBER
7232 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7233 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7234 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7235 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7236 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
7237 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
7238 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7239 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
7240 */
Michal Vasko8abcecc2022-07-28 09:55:01 +02007241 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007242 LY_ERR rc;
7243
Michal Vasko03ff5a72019-09-11 13:49:33 +02007244 /* iterative evaluation with node-sets */
7245 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
7246 if (set1->type == LYXP_SET_NODE_SET) {
7247 for (i = 0; i < set1->used; ++i) {
Michal Vasko8abcecc2022-07-28 09:55:01 +02007248 /* evaluate for the single item */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007249 LY_CHECK_RET(moveto_op_comp_item(set1, i, set2, op, 0, result));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007250
7251 /* lazy evaluation until true */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007252 if (*result) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007253 return LY_SUCCESS;
7254 }
7255 }
7256 } else {
7257 for (i = 0; i < set2->used; ++i) {
Michal Vasko8abcecc2022-07-28 09:55:01 +02007258 /* evaluate for the single item */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007259 LY_CHECK_RET(moveto_op_comp_item(set2, i, set1, op, 1, result));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007260
7261 /* lazy evaluation until true */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007262 if (*result) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007263 return LY_SUCCESS;
7264 }
7265 }
7266 }
7267
Michal Vasko8abcecc2022-07-28 09:55:01 +02007268 /* false for all the nodes */
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007269 *result = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007270 return LY_SUCCESS;
7271 }
7272
7273 /* first convert properly */
7274 if ((op[0] == '=') || (op[0] == '!')) {
7275 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007276 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
7277 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007278 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007279 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007280 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007281 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007282 LY_CHECK_RET(rc);
7283 } /* else we have 2 strings */
7284 } else {
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 }
7290
7291 assert(set1->type == set2->type);
7292
7293 /* compute result */
7294 if (op[0] == '=') {
7295 if (set1->type == LYXP_SET_BOOLEAN) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007296 *result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007297 } else if (set1->type == LYXP_SET_NUMBER) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007298 *result = (set1->val.num == set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007299 } else {
7300 assert(set1->type == LYXP_SET_STRING);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007301 *result = strcmp(set1->val.str, set2->val.str) ? 0 : 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007302 }
7303 } else if (op[0] == '!') {
7304 if (set1->type == LYXP_SET_BOOLEAN) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007305 *result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007306 } else if (set1->type == LYXP_SET_NUMBER) {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007307 *result = (set1->val.num != set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007308 } else {
7309 assert(set1->type == LYXP_SET_STRING);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007310 *result = strcmp(set1->val.str, set2->val.str) ? 1 : 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007311 }
7312 } else {
7313 assert(set1->type == LYXP_SET_NUMBER);
7314 if (op[0] == '<') {
7315 if (op[1] == '=') {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007316 *result = (set1->val.num <= set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007317 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02007318 *result = (set1->val.num < set2->val.num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007319 }
7320 } else {
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 }
7327 }
7328
Michal Vasko03ff5a72019-09-11 13:49:33 +02007329 return LY_SUCCESS;
7330}
7331
7332/**
7333 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
7334 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
7335 *
7336 * @param[in,out] set1 Set to use for the result.
7337 * @param[in] set2 Set acting as the second operand for @p op.
7338 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007339 * @return LY_ERR
7340 */
7341static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007342moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007343{
7344 LY_ERR rc;
7345
7346 /* unary '-' */
7347 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007348 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007349 LY_CHECK_RET(rc);
7350 set1->val.num *= -1;
7351 lyxp_set_free(set2);
7352 return LY_SUCCESS;
7353 }
7354
7355 assert(set1 && set2);
7356
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007357 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007358 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007359 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007360 LY_CHECK_RET(rc);
7361
7362 switch (op[0]) {
7363 /* '+' */
7364 case '+':
7365 set1->val.num += set2->val.num;
7366 break;
7367
7368 /* '-' */
7369 case '-':
7370 set1->val.num -= set2->val.num;
7371 break;
7372
7373 /* '*' */
7374 case '*':
7375 set1->val.num *= set2->val.num;
7376 break;
7377
7378 /* 'div' */
7379 case 'd':
7380 set1->val.num /= set2->val.num;
7381 break;
7382
7383 /* 'mod' */
7384 case 'm':
7385 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
7386 break;
7387
7388 default:
7389 LOGINT_RET(set1->ctx);
7390 }
7391
7392 return LY_SUCCESS;
7393}
7394
Michal Vasko03ff5a72019-09-11 13:49:33 +02007395/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007396 * @brief Evaluate Predicate. Logs directly on error.
7397 *
Michal Vaskod3678892020-05-21 10:06:58 +02007398 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007399 *
7400 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007401 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02007402 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007403 * @param[in] options XPath options.
Michal Vasko49fec8e2022-05-24 10:28:33 +02007404 * @param[in] axis Axis to search on.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007405 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7406 */
7407static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02007408eval_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 +02007409{
7410 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02007411 uint32_t i, orig_exp, orig_pos, orig_size;
Michal Vasko5c4e5892019-11-14 12:31:38 +01007412 int32_t pred_in_ctx;
Michal Vasko88a9e802022-05-24 10:50:28 +02007413 ly_bool reverse_axis = 0;
aPiecekfff4dca2021-10-07 10:59:53 +02007414 struct lyxp_set set2 = {0};
Michal Vasko03ff5a72019-09-11 13:49:33 +02007415
7416 /* '[' */
aPiecek8b0cc152021-05-31 16:40:31 +02007417 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007418 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007419 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007420
aPiecek8b0cc152021-05-31 16:40:31 +02007421 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007422only_parse:
aPiecek8b0cc152021-05-31 16:40:31 +02007423 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007424 LY_CHECK_RET(rc);
7425 } else if (set->type == LYXP_SET_NODE_SET) {
7426 /* 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 +01007427 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007428
7429 /* empty set, nothing to evaluate */
7430 if (!set->used) {
7431 goto only_parse;
7432 }
7433
Michal Vasko49fec8e2022-05-24 10:28:33 +02007434 /* decide forward or reverse axis */
7435 switch (axis) {
7436 case LYXP_AXIS_ANCESTOR:
7437 case LYXP_AXIS_ANCESTOR_OR_SELF:
7438 case LYXP_AXIS_PRECEDING:
7439 case LYXP_AXIS_PRECEDING_SIBLING:
7440 reverse_axis = 1;
7441 break;
7442 case LYXP_AXIS_DESCENDANT:
7443 case LYXP_AXIS_DESCENDANT_OR_SELF:
7444 case LYXP_AXIS_FOLLOWING:
7445 case LYXP_AXIS_FOLLOWING_SIBLING:
7446 case LYXP_AXIS_PARENT:
7447 case LYXP_AXIS_CHILD:
7448 case LYXP_AXIS_SELF:
7449 case LYXP_AXIS_ATTRIBUTE:
7450 reverse_axis = 0;
7451 break;
7452 }
7453
Michal Vasko004d3152020-06-11 19:59:22 +02007454 orig_exp = *tok_idx;
Michal Vasko49fec8e2022-05-24 10:28:33 +02007455 orig_pos = reverse_axis ? set->used + 1 : 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007456 orig_size = set->used;
Michal Vasko39dbf352020-05-21 10:08:59 +02007457 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007458 set_init(&set2, set);
7459 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 +02007460
7461 /* remember the node context position for position() and context size for last() */
7462 orig_pos += reverse_axis ? -1 : 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007463
7464 set2.ctx_pos = orig_pos;
7465 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02007466 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007467
Michal Vasko004d3152020-06-11 19:59:22 +02007468 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007469 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02007470 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007471 return rc;
7472 }
7473
Michal Vasko49fec8e2022-05-24 10:28:33 +02007474 /* number is a proximity position */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007475 if (set2.type == LYXP_SET_NUMBER) {
7476 if ((long long)set2.val.num == orig_pos) {
7477 set2.val.num = 1;
7478 } else {
7479 set2.val.num = 0;
7480 }
7481 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007482 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007483
7484 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02007485 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01007486 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007487 }
7488 }
Michal Vasko2caefc12019-11-14 16:07:56 +01007489 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007490
7491 } else if (set->type == LYXP_SET_SCNODE_SET) {
7492 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007493 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007494 /* there is a currently-valid node */
7495 break;
7496 }
7497 }
7498 /* empty set, nothing to evaluate */
7499 if (i == set->used) {
7500 goto only_parse;
7501 }
7502
Michal Vasko004d3152020-06-11 19:59:22 +02007503 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007504
Michal Vasko03ff5a72019-09-11 13:49:33 +02007505 /* set special in_ctx to all the valid snodes */
7506 pred_in_ctx = set_scnode_new_in_ctx(set);
7507
7508 /* use the valid snodes one-by-one */
7509 for (i = 0; i < set->used; ++i) {
7510 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
7511 continue;
7512 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01007513 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007514
Michal Vasko004d3152020-06-11 19:59:22 +02007515 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007516
Michal Vasko004d3152020-06-11 19:59:22 +02007517 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007518 LY_CHECK_RET(rc);
7519
7520 set->val.scnodes[i].in_ctx = pred_in_ctx;
7521 }
7522
7523 /* restore the state as it was before the predicate */
7524 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007525 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007526 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007527 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01007528 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007529 }
7530 }
7531
7532 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02007533 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007534 set_fill_set(&set2, set);
7535
Michal Vasko004d3152020-06-11 19:59:22 +02007536 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007537 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02007538 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007539 return rc;
7540 }
7541
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01007542 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02007543 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02007544 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007545 }
Michal Vaskod3678892020-05-21 10:06:58 +02007546 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007547 }
7548
7549 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02007550 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
aPiecek8b0cc152021-05-31 16:40:31 +02007551 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007552 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007553 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007554
7555 return LY_SUCCESS;
7556}
7557
7558/**
Michal Vaskod3678892020-05-21 10:06:58 +02007559 * @brief Evaluate Literal. Logs directly on error.
7560 *
7561 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007562 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007563 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7564 */
7565static void
Michal Vaskodd528af2022-08-08 14:35:07 +02007566eval_literal(const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02007567{
7568 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02007569 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02007570 set_fill_string(set, "", 0);
7571 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007572 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 +02007573 }
7574 }
7575 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02007576 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007577 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007578}
7579
7580/**
Michal Vasko3d969ff2022-07-29 15:02:08 +02007581 * @brief Check that a nametest in a predicate matches a key node.
7582 *
7583 * @param[in] nametest Nametest to check.
7584 * @param[in] len Length of @p nametest.
7585 * @param[in] ctx_scnode Found schema node as the context for the predicate.
7586 * @param[in] set Context set.
7587 * @param[in] key Expected key node.
7588 * @return LY_SUCCESS on success,
7589 * @return LY_ENOT if a predicate could not be compiled.
7590 * @return LY_ERR on any error.
7591 */
7592static LY_ERR
7593eval_name_test_try_compile_predicate_key(const char *nametest, uint32_t len, const struct lysc_node *ctx_scnode,
7594 const struct lyxp_set *set, const struct lysc_node *key)
7595{
7596 const struct lys_module *mod;
7597
7598 /* prefix (module) */
7599 LY_CHECK_RET(moveto_resolve_model(&nametest, &len, set, ctx_scnode, &mod));
7600 if (mod != key->module) {
7601 return LY_ENOT;
7602 }
7603
7604 /* node name */
7605 if (ly_strncmp(key->name, nametest, len)) {
7606 return LY_ENOT;
7607 }
7608
7609 return LY_SUCCESS;
7610}
7611
7612/**
7613 * @brief Append a simple predicate for the node.
7614 *
7615 * @param[in] exp Full parsed XPath expression.
7616 * @param[in] tok_idx Predicate start index in @p exp.
7617 * @param[in] end_tok_idx Predicate end index in @p exp.
7618 * @param[in] ctx_scnode Found schema node as the context for the predicate.
7619 * @param[in] set Context set.
7620 * @param[in] pred_node Node with the value referenced in the predicate.
7621 * @param[in,out] pred Predicate to append to.
7622 * @param[in,out] pred_len Length of @p pred, is updated.
7623 * @return LY_SUCCESS on success,
7624 * @return LY_ENOT if a predicate could not be compiled.
7625 * @return LY_ERR on any error.
7626 */
7627static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02007628eval_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 +02007629 const struct lysc_node *ctx_scnode, const struct lyxp_set *set, const struct lysc_node *pred_node, char **pred,
7630 uint32_t *pred_len)
7631{
7632 LY_ERR rc = LY_SUCCESS;
7633 uint32_t i;
7634 const struct lyd_node *siblings;
7635 struct lyd_node *ctx_node;
Michal Vasko5fb92a22022-08-02 09:21:37 +02007636 const struct lysc_node *sparent, *cur_scnode;
Michal Vasko3d969ff2022-07-29 15:02:08 +02007637 struct lyxp_expr *val_exp = NULL;
7638 struct lyxp_set set2 = {0};
7639 char quot;
7640
7641 /* duplicate the value expression */
7642 LY_CHECK_GOTO(rc = lyxp_expr_dup(set->ctx, exp, tok_idx, end_tok_idx, &val_exp), cleanup);
7643
7644 /* get its atoms */
Michal Vasko5fb92a22022-08-02 09:21:37 +02007645 cur_scnode = set->cur_node ? set->cur_node->schema : NULL;
7646 LY_CHECK_GOTO(rc = lyxp_atomize(set->ctx, val_exp, set->cur_mod, set->format, set->prefix_data, cur_scnode,
7647 ctx_scnode, &set2, LYXP_SCNODE), cleanup);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007648
7649 /* check whether we can compile a single predicate (evaluation result value is always the same) */
7650 for (i = 0; i < set2.used; ++i) {
7651 if ((set2.val.scnodes[i].type != LYXP_NODE_ELEM) || (set2.val.scnodes[i].in_ctx < LYXP_SET_SCNODE_ATOM_NODE)) {
7652 /* skip root and context node */
7653 continue;
7654 }
7655
Michal Vasko5fb92a22022-08-02 09:21:37 +02007656 /* 1) context node descendants are traversed - do best-effort detection of the value dependency on the
7657 * context node instance */
7658 if ((set2.val.scnodes[i].axis == LYXP_AXIS_CHILD) && (set2.val.scnodes[i].scnode->parent == ctx_scnode)) {
7659 /* 1.1) context node child was accessed on the child axis, certain dependency */
Michal Vasko3d969ff2022-07-29 15:02:08 +02007660 rc = LY_ENOT;
7661 goto cleanup;
7662 }
Michal Vasko5fb92a22022-08-02 09:21:37 +02007663 if ((set2.val.scnodes[i].axis == LYXP_AXIS_DESCENDANT) || (set2.val.scnodes[i].axis == LYXP_AXIS_DESCENDANT_OR_SELF)) {
7664 for (sparent = set2.val.scnodes[i].scnode->parent; sparent && (sparent != ctx_scnode); sparent = sparent->parent) {}
7665 if (sparent) {
7666 /* 1.2) context node descendant was accessed on the descendant axis, probable dependency */
7667 rc = LY_ENOT;
7668 goto cleanup;
7669 }
7670 }
Michal Vasko3d969ff2022-07-29 15:02:08 +02007671
Michal Vasko5fb92a22022-08-02 09:21:37 +02007672 /* 2) multi-instance nodes (list or leaf-list) are traversed - all the instances need to be considered,
7673 * but the current node can be safely ignored, it is always the same data instance */
7674 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 +02007675 rc = LY_ENOT;
7676 goto cleanup;
7677 }
Michal Vasko3d969ff2022-07-29 15:02:08 +02007678 }
7679
7680 /* get any data instance of the context node, we checked it makes no difference */
7681 siblings = set->val.nodes[0].node ? lyd_child(set->val.nodes[0].node) : set->tree;
7682 LY_CHECK_GOTO(rc = lyd_find_sibling_schema(siblings, ctx_scnode, &ctx_node), cleanup);
7683
7684 /* evaluate the value subexpression with the root context node */
7685 lyxp_set_free_content(&set2);
7686 LY_CHECK_GOTO(rc = lyxp_eval(set->ctx, val_exp, set->cur_mod, set->format, set->prefix_data, set->cur_node,
7687 ctx_node, set->tree, NULL, &set2, 0), cleanup);
7688
7689 /* cast it into a string */
7690 LY_CHECK_GOTO(rc = lyxp_set_cast(&set2, LYXP_SET_STRING), cleanup);
7691
7692 /* append the JSON predicate */
7693 *pred = ly_realloc(*pred, *pred_len + 1 + strlen(pred_node->name) + 2 + strlen(set2.val.str) + 3);
7694 LY_CHECK_ERR_GOTO(!*pred, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7695 quot = strchr(set2.val.str, '\'') ? '\"' : '\'';
7696 *pred_len += sprintf(*pred + *pred_len, "[%s=%c%s%c]", pred_node->name, quot, set2.val.str, quot);
7697
7698cleanup:
7699 lyxp_expr_free(set->ctx, val_exp);
7700 lyxp_set_free_content(&set2);
7701 return rc;
7702}
7703
7704/**
Michal Vasko004d3152020-06-11 19:59:22 +02007705 * @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 +02007706 *
Michal Vasko004d3152020-06-11 19:59:22 +02007707 * @param[in] exp Full parsed XPath expression.
7708 * @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 +02007709 * @param[in] ctx_scnode Found schema node as the context for the predicate.
7710 * @param[in] set Context set.
Michal Vasko004d3152020-06-11 19:59:22 +02007711 * @param[out] predicates Parsed predicates.
Michal Vasko004d3152020-06-11 19:59:22 +02007712 * @return LY_SUCCESS on success,
Michal Vasko3d969ff2022-07-29 15:02:08 +02007713 * @return LY_ENOT if a predicate could not be compiled.
Michal Vasko004d3152020-06-11 19:59:22 +02007714 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02007715 */
7716static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02007717eval_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 +01007718 const struct lyxp_set *set, struct ly_path_predicate **predicates)
Michal Vaskod3678892020-05-21 10:06:58 +02007719{
Michal Vasko3d969ff2022-07-29 15:02:08 +02007720 LY_ERR rc = LY_SUCCESS;
Michal Vaskod4a6d042022-12-08 08:34:29 +01007721 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 +02007722 const struct lysc_node *key;
Michal Vasko3d969ff2022-07-29 15:02:08 +02007723 char *pred = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02007724 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02007725
Michal Vasko3d969ff2022-07-29 15:02:08 +02007726 assert(ctx_scnode->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02007727
Michal Vasko3d969ff2022-07-29 15:02:08 +02007728 /* turn logging off */
Michal Vaskod4a6d042022-12-08 08:34:29 +01007729 ly_temp_log_options(&temp_lo);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007730
7731 if (ctx_scnode->nodetype == LYS_LIST) {
7732 /* check for predicates "[key1=...][key2=...]..." */
7733
Michal Vasko004d3152020-06-11 19:59:22 +02007734 /* get key count */
Michal Vasko3d969ff2022-07-29 15:02:08 +02007735 if (ctx_scnode->flags & LYS_KEYLESS) {
7736 rc = LY_ENOT;
7737 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02007738 }
Michal Vaskod3678892020-05-21 10:06:58 +02007739
Michal Vasko004d3152020-06-11 19:59:22 +02007740 /* learn where the predicates end */
7741 e_idx = *tok_idx;
Michal Vasko3d969ff2022-07-29 15:02:08 +02007742 for (key = lysc_node_child(ctx_scnode); key && (key->flags & LYS_KEY); key = key->next) {
Michal Vasko004d3152020-06-11 19:59:22 +02007743 /* '[' */
7744 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007745 rc = LY_ENOT;
7746 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02007747 }
7748 ++e_idx;
7749
Michal Vasko3354d272021-04-06 09:40:06 +02007750 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_NAMETEST)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007751 /* not a key */
7752 rc = LY_ENOT;
7753 goto cleanup;
Michal Vasko3354d272021-04-06 09:40:06 +02007754 }
7755
Michal Vasko3d969ff2022-07-29 15:02:08 +02007756 /* check key */
7757 LY_CHECK_GOTO(rc = eval_name_test_try_compile_predicate_key(exp->expr + exp->tok_pos[e_idx],
7758 exp->tok_len[e_idx], ctx_scnode, set, key), cleanup);
7759
7760 ++e_idx;
7761
7762 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_OPER_EQUAL)) {
7763 /* not '=' */
7764 rc = LY_ENOT;
7765 goto cleanup;
7766 }
7767 ++e_idx;
7768
7769 /* value start */
7770 val_start_idx = e_idx;
7771
Michal Vasko004d3152020-06-11 19:59:22 +02007772 /* ']' */
Michal Vasko3ef7e252022-11-16 08:29:49 +01007773 nested_pred = 1;
7774 do {
7775 ++e_idx;
7776
7777 if ((nested_pred == 1) && !lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_OPER_LOG)) {
Michal Vaskob8ee3562022-08-02 10:43:17 +02007778 /* higher priority than '=' */
7779 rc = LY_ENOT;
7780 goto cleanup;
Michal Vasko3ef7e252022-11-16 08:29:49 +01007781 } else if (!lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
7782 /* nested predicate */
7783 ++nested_pred;
7784 } else if (!lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
7785 /* predicate end */
7786 --nested_pred;
Michal Vaskob8ee3562022-08-02 10:43:17 +02007787 }
Michal Vasko3ef7e252022-11-16 08:29:49 +01007788 } while (nested_pred);
Michal Vasko004d3152020-06-11 19:59:22 +02007789
Michal Vasko3d969ff2022-07-29 15:02:08 +02007790 /* try to evaluate the value */
7791 LY_CHECK_GOTO(rc = eval_name_test_try_compile_predicate_append(exp, val_start_idx, e_idx - 1, ctx_scnode,
7792 set, key, &pred, &pred_len), cleanup);
7793
7794 ++e_idx;
Michal Vasko004d3152020-06-11 19:59:22 +02007795 }
Michal Vasko004d3152020-06-11 19:59:22 +02007796 } else {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007797 /* check for predicate "[.=...]" */
7798
Michal Vasko004d3152020-06-11 19:59:22 +02007799 /* learn just where this single predicate ends */
7800 e_idx = *tok_idx;
7801
Michal Vaskod3678892020-05-21 10:06:58 +02007802 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02007803 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007804 rc = LY_ENOT;
7805 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02007806 }
7807 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02007808
Michal Vasko3354d272021-04-06 09:40:06 +02007809 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_DOT)) {
Michal Vasko3d969ff2022-07-29 15:02:08 +02007810 /* not the node value */
7811 rc = LY_ENOT;
7812 goto cleanup;
Michal Vasko3354d272021-04-06 09:40:06 +02007813 }
Michal Vasko3d969ff2022-07-29 15:02:08 +02007814 ++e_idx;
7815
7816 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_OPER_EQUAL)) {
7817 /* not '=' */
7818 rc = LY_ENOT;
7819 goto cleanup;
7820 }
7821 ++e_idx;
7822
7823 /* value start */
7824 val_start_idx = e_idx;
Michal Vasko3354d272021-04-06 09:40:06 +02007825
Michal Vaskod3678892020-05-21 10:06:58 +02007826 /* ']' */
Michal Vasko31f19632022-11-16 09:38:40 +01007827 nested_pred = 1;
7828 do {
7829 ++e_idx;
7830
7831 if ((nested_pred == 1) && !lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_OPER_LOG)) {
Michal Vaskob8ee3562022-08-02 10:43:17 +02007832 /* higher priority than '=' */
7833 rc = LY_ENOT;
7834 goto cleanup;
Michal Vasko31f19632022-11-16 09:38:40 +01007835 } else if (!lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
7836 /* nested predicate */
7837 ++nested_pred;
7838 } else if (!lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
7839 /* predicate end */
7840 --nested_pred;
Michal Vaskob8ee3562022-08-02 10:43:17 +02007841 }
Michal Vasko31f19632022-11-16 09:38:40 +01007842 } while (nested_pred);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007843
7844 /* try to evaluate the value */
7845 LY_CHECK_GOTO(rc = eval_name_test_try_compile_predicate_append(exp, val_start_idx, e_idx - 1, ctx_scnode, set,
7846 ctx_scnode, &pred, &pred_len), cleanup);
7847
Michal Vasko004d3152020-06-11 19:59:22 +02007848 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02007849 }
7850
Michal Vasko004d3152020-06-11 19:59:22 +02007851 /* parse the predicate(s) */
Michal Vasko3d969ff2022-07-29 15:02:08 +02007852 LY_CHECK_GOTO(rc = ly_path_parse_predicate(set->ctx, ctx_scnode, pred, pred_len, LY_PATH_PREFIX_OPTIONAL,
7853 LY_PATH_PRED_SIMPLE, &exp2), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02007854
7855 /* compile */
Michal Vasko3d969ff2022-07-29 15:02:08 +02007856 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 +01007857 &pred_idx, LY_VALUE_JSON, NULL, predicates);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007858 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02007859
7860 /* success, the predicate must include all the needed information for hash-based search */
7861 *tok_idx = e_idx;
7862
7863cleanup:
Michal Vaskod4a6d042022-12-08 08:34:29 +01007864 ly_temp_log_options(NULL);
Michal Vasko3d969ff2022-07-29 15:02:08 +02007865 lyxp_expr_free(set->ctx, exp2);
7866 free(pred);
7867 return rc;
Michal Vaskod3678892020-05-21 10:06:58 +02007868}
7869
7870/**
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007871 * @brief Search for/check the next schema node that could be the only matching schema node meaning the
7872 * data node(s) could be found using a single hash-based search.
7873 *
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007874 * @param[in] ctx libyang context.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007875 * @param[in] node Next context node to check.
7876 * @param[in] name Expected node name.
7877 * @param[in] name_len Length of @p name.
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007878 * @param[in] moveto_mod Expected node module, can be NULL for JSON format with no prefix.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007879 * @param[in] root_type XPath root type.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007880 * @param[in] format Prefix format.
7881 * @param[in,out] found Previously found node, is updated.
7882 * @return LY_SUCCESS on success,
7883 * @return LY_ENOT if the whole check failed and hashes cannot be used.
7884 */
7885static LY_ERR
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007886eval_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 +02007887 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 +02007888 const struct lysc_node **found)
7889{
7890 const struct lysc_node *scnode;
7891 const struct lys_module *mod;
7892 uint32_t idx = 0;
7893
Radek Krejci8df109d2021-04-23 12:19:08 +02007894 assert((format == LY_VALUE_JSON) || moveto_mod);
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007895
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007896continue_search:
Michal Vasko7d1d0912020-10-16 08:38:30 +02007897 scnode = NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007898 if (!node) {
Radek Krejci8df109d2021-04-23 12:19:08 +02007899 if ((format == LY_VALUE_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007900 /* search all modules for a single match */
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007901 while ((mod = ly_ctx_get_module_iter(ctx, &idx))) {
Michal Vasko35a3b1d2021-07-14 09:34:16 +02007902 if (!mod->implemented) {
7903 continue;
7904 }
7905
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007906 scnode = lys_find_child(NULL, mod, name, name_len, 0, 0);
7907 if (scnode) {
7908 /* we have found a match */
7909 break;
7910 }
7911 }
7912
Michal Vasko7d1d0912020-10-16 08:38:30 +02007913 if (!scnode) {
7914 /* all modules searched */
7915 idx = 0;
7916 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007917 } else {
7918 /* search in top-level */
7919 scnode = lys_find_child(NULL, moveto_mod, name, name_len, 0, 0);
7920 }
7921 } else if (!*found || (lysc_data_parent(*found) != node->schema)) {
Radek Krejci8df109d2021-04-23 12:19:08 +02007922 if ((format == LY_VALUE_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007923 /* we must adjust the module to inherit the one from the context node */
7924 moveto_mod = node->schema->module;
7925 }
7926
7927 /* search in children, do not repeat the same search */
7928 scnode = lys_find_child(node->schema, moveto_mod, name, name_len, 0, 0);
Michal Vasko7d1d0912020-10-16 08:38:30 +02007929 } /* else skip redundant search */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007930
7931 /* additional context check */
7932 if (scnode && (root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
7933 scnode = NULL;
7934 }
7935
7936 if (scnode) {
7937 if (*found) {
7938 /* we found a schema node with the same name but at different level, give up, too complicated
7939 * (more hash-based searches would be required, not supported) */
7940 return LY_ENOT;
7941 } else {
7942 /* remember the found schema node and continue to make sure it can be used */
7943 *found = scnode;
7944 }
7945 }
7946
7947 if (idx) {
7948 /* continue searching all the following models */
7949 goto continue_search;
7950 }
7951
7952 return LY_SUCCESS;
7953}
7954
7955/**
Michal Vasko4ad69e72021-10-26 16:25:55 +02007956 * @brief Generate message when no matching schema nodes were found for a path segment.
7957 *
7958 * @param[in] set XPath set.
7959 * @param[in] scparent Previous schema parent in the context, if only one.
7960 * @param[in] ncname XPath NCName being evaluated.
7961 * @param[in] ncname_len Length of @p ncname.
7962 * @param[in] expr Whole XPath expression.
7963 * @param[in] options XPath options.
7964 */
7965static void
7966eval_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 +02007967 uint32_t ncname_len, const char *expr, uint32_t options)
Michal Vasko4ad69e72021-10-26 16:25:55 +02007968{
7969 const char *format;
7970 char *path = NULL, *ppath = NULL;
7971
7972 path = lysc_path(set->cur_scnode, LYSC_PATH_LOG, NULL, 0);
7973 if (scparent) {
7974 /* generate path for the parent */
7975 if (scparent->type == LYXP_NODE_ELEM) {
7976 ppath = lysc_path(scparent->scnode, LYSC_PATH_LOG, NULL, 0);
7977 } else if (scparent->type == LYXP_NODE_ROOT) {
7978 ppath = strdup("<root>");
7979 } else if (scparent->type == LYXP_NODE_ROOT_CONFIG) {
7980 ppath = strdup("<config-root>");
7981 }
7982 }
7983 if (ppath) {
7984 format = "Schema node \"%.*s\" for parent \"%s\" not found; in expr \"%.*s\" with context node \"%s\".";
7985 if (options & LYXP_SCNODE_ERROR) {
7986 LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path);
7987 } else {
7988 LOGWRN(set->ctx, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path);
7989 }
7990 } else {
7991 format = "Schema node \"%.*s\" not found; in expr \"%.*s\" with context node \"%s\".";
7992 if (options & LYXP_SCNODE_ERROR) {
7993 LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path);
7994 } else {
7995 LOGWRN(set->ctx, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path);
7996 }
7997 }
7998 free(path);
7999 free(ppath);
8000}
8001
8002/**
Michal Vaskod3678892020-05-21 10:06:58 +02008003 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
8004 *
8005 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
8006 * [6] NodeTest ::= NameTest | NodeType '(' ')'
8007 * [7] NameTest ::= '*' | NCName ':' '*' | QName
8008 *
8009 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008010 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko49fec8e2022-05-24 10:28:33 +02008011 * @param[in] axis What axis to search on.
Michal Vaskod3678892020-05-21 10:06:58 +02008012 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02008013 * @param[in,out] set Context and result set.
Michal Vaskod3678892020-05-21 10:06:58 +02008014 * @param[in] options XPath options.
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008015 * @return LY_ERR (LY_EINCOMPLETE on unresolved when, LY_ENOT for not found schema node)
Michal Vaskod3678892020-05-21 10:06:58 +02008016 */
8017static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008018eval_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 +02008019 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02008020{
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008021 LY_ERR rc = LY_SUCCESS, r;
Michal Vasko004d3152020-06-11 19:59:22 +02008022 const char *ncname, *ncname_dict = NULL;
Michal Vasko56c008c2022-07-29 14:57:47 +02008023 uint32_t i, ncname_len;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008024 const struct lys_module *moveto_mod = NULL;
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008025 const struct lysc_node *scnode = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02008026 struct ly_path_predicate *predicates = NULL;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008027 int scnode_skip_pred = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008028
aPiecek8b0cc152021-05-31 16:40:31 +02008029 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008030 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008031 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008032
aPiecek8b0cc152021-05-31 16:40:31 +02008033 if (options & LYXP_SKIP_EXPR) {
Michal Vaskod3678892020-05-21 10:06:58 +02008034 goto moveto;
8035 }
8036
Michal Vasko004d3152020-06-11 19:59:22 +02008037 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
8038 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02008039
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008040 if ((ncname[0] == '*') && (ncname_len == 1)) {
8041 /* all nodes will match */
8042 goto moveto;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008043 }
8044
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008045 /* parse (and skip) module name */
8046 rc = moveto_resolve_model(&ncname, &ncname_len, set, NULL, &moveto_mod);
Michal Vaskod3678892020-05-21 10:06:58 +02008047 LY_CHECK_GOTO(rc, cleanup);
8048
Michal Vasko49fec8e2022-05-24 10:28:33 +02008049 if ((ncname[0] == '*') && (ncname_len == 1)) {
8050 /* all nodes from the module will match */
8051 goto moveto;
8052 }
8053
8054 if (((set->format == LY_VALUE_JSON) || moveto_mod) && (axis == LYXP_AXIS_CHILD) && !all_desc &&
8055 (set->type == LYXP_SET_NODE_SET)) {
Michal Vaskod3678892020-05-21 10:06:58 +02008056 /* find the matching schema node in some parent in the context */
Michal Vasko56c008c2022-07-29 14:57:47 +02008057 for (i = 0; i < set->used; ++i) {
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008058 if (eval_name_test_with_predicate_get_scnode(set->ctx, set->val.nodes[i].node, ncname, ncname_len,
8059 moveto_mod, set->root_type, set->format, &scnode)) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008060 /* check failed */
8061 scnode = NULL;
8062 break;
Michal Vaskod3678892020-05-21 10:06:58 +02008063 }
8064 }
8065
Michal Vasko004d3152020-06-11 19:59:22 +02008066 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
8067 /* try to create the predicates */
Michal Vasko90189962023-02-28 12:10:34 +01008068 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set, &predicates)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008069 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02008070 scnode = NULL;
8071 }
8072 }
8073 }
8074
Michal Vaskoc71c37b2021-01-11 13:40:02 +01008075 if (!scnode) {
8076 /* we are not able to match based on a schema node and not all the modules match ("*"),
Michal Vasko004d3152020-06-11 19:59:22 +02008077 * use dictionary for efficient comparison */
Radek Krejci011e4aa2020-09-04 15:22:31 +02008078 LY_CHECK_GOTO(rc = lydict_insert(set->ctx, ncname, ncname_len, &ncname_dict), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008079 }
8080
8081moveto:
8082 /* move to the attribute(s), data node(s), or schema node(s) */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008083 if (axis == LYXP_AXIS_ATTRIBUTE) {
aPiecek8b0cc152021-05-31 16:40:31 +02008084 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008085 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskod3678892020-05-21 10:06:58 +02008086 } else {
8087 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01008088 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008089 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008090 rc = moveto_attr(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008091 }
8092 LY_CHECK_GOTO(rc, cleanup);
8093 }
8094 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008095 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008096 const struct lyxp_set_scnode *scparent = NULL;
Michal Vasko56c008c2022-07-29 14:57:47 +02008097 ly_bool found = 0;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008098
8099 /* remember parent if there is only one, to print in the warning */
8100 for (i = 0; i < set->used; ++i) {
8101 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
8102 if (!scparent) {
8103 /* remember the context node */
8104 scparent = &set->val.scnodes[i];
8105 } else {
8106 /* several context nodes, no reasonable error possible */
8107 scparent = NULL;
8108 break;
8109 }
8110 }
8111 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02008112
Michal Vasko49fec8e2022-05-24 10:28:33 +02008113 if (all_desc && (axis == LYXP_AXIS_CHILD)) {
8114 /* efficient evaluation that does not add all the descendants into the set */
8115 rc = moveto_scnode_alldesc_child(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008116 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008117 if (all_desc) {
8118 /* "//" == "/descendant-or-self::node()/" */
8119 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8120 LY_CHECK_GOTO(rc, cleanup);
8121 }
8122 rc = moveto_scnode(set, moveto_mod, ncname_dict, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008123 }
8124 LY_CHECK_GOTO(rc, cleanup);
8125
Michal Vasko56c008c2022-07-29 14:57:47 +02008126 i = set->used;
8127 do {
8128 --i;
Michal Vasko1a09b212021-05-06 13:00:10 +02008129 if (set->val.scnodes[i].in_ctx > LYXP_SET_SCNODE_ATOM_NODE) {
Michal Vasko56c008c2022-07-29 14:57:47 +02008130 found = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008131 break;
8132 }
Michal Vasko56c008c2022-07-29 14:57:47 +02008133 } while (i);
8134 if (!found) {
Michal Vasko4ad69e72021-10-26 16:25:55 +02008135 /* generate message */
8136 eval_name_test_scnode_no_match_msg(set, scparent, ncname, ncname_len, exp->expr, options);
8137
8138 if (options & LYXP_SCNODE_ERROR) {
8139 /* error */
8140 rc = LY_EVALID;
8141 goto cleanup;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008142 }
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008143
8144 /* skip the predicates and the rest of this path to not generate invalid warnings */
8145 rc = LY_ENOT;
8146 scnode_skip_pred = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008147 }
8148 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008149 if (all_desc && (axis == LYXP_AXIS_CHILD)) {
8150 /* efficient evaluation */
8151 rc = moveto_node_alldesc_child(set, moveto_mod, ncname_dict, options);
8152 } else if (scnode && (axis == LYXP_AXIS_CHILD)) {
8153 /* we can find the child nodes using hashes */
8154 rc = moveto_node_hash_child(set, scnode, predicates, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008155 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008156 if (all_desc) {
8157 /* "//" == "/descendant-or-self::node()/" */
8158 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8159 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008160 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02008161 rc = moveto_node(set, moveto_mod, ncname_dict, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008162 }
8163 LY_CHECK_GOTO(rc, cleanup);
8164 }
8165 }
8166
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008167 if (scnode_skip_pred) {
8168 /* skip predicates */
8169 options |= LYXP_SKIP_EXPR;
8170 }
8171
Michal Vaskod3678892020-05-21 10:06:58 +02008172 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008173 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008174 r = eval_predicate(exp, tok_idx, set, options, axis);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008175 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008176 }
8177
8178cleanup:
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008179 if (scnode_skip_pred) {
8180 /* restore options */
8181 options &= ~LYXP_SKIP_EXPR;
8182 }
aPiecek8b0cc152021-05-31 16:40:31 +02008183 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008184 lydict_remove(set->ctx, ncname_dict);
Michal Vasko90189962023-02-28 12:10:34 +01008185 ly_path_predicates_free(set->ctx, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02008186 }
Michal Vaskod3678892020-05-21 10:06:58 +02008187 return rc;
8188}
8189
8190/**
8191 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
8192 *
8193 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
8194 * [6] NodeTest ::= NameTest | NodeType '(' ')'
8195 * [8] NodeType ::= 'text' | 'node'
8196 *
8197 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008198 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko49fec8e2022-05-24 10:28:33 +02008199 * @param[in] axis Axis to search on.
8200 * @param[in] all_desc Whether to search all the descendants or axis only.
aPiecek8b0cc152021-05-31 16:40:31 +02008201 * @param[in,out] set Context and result set.
Michal Vaskod3678892020-05-21 10:06:58 +02008202 * @param[in] options XPath options.
8203 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8204 */
8205static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008206eval_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 +02008207 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02008208{
8209 LY_ERR rc;
8210
Michal Vaskod3678892020-05-21 10:06:58 +02008211 (void)all_desc;
8212
aPiecek8b0cc152021-05-31 16:40:31 +02008213 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008214 assert(exp->tok_len[*tok_idx] == 4);
Michal Vasko49fec8e2022-05-24 10:28:33 +02008215 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
8216 rc = xpath_pi_node(set, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008217 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008218 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
8219 rc = xpath_pi_text(set, axis, options);
Michal Vaskod3678892020-05-21 10:06:58 +02008220 }
Michal Vasko49fec8e2022-05-24 10:28:33 +02008221 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008222 }
aPiecek8b0cc152021-05-31 16:40:31 +02008223 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008224 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008225 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008226
8227 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02008228 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
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_PAR2);
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 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008240 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008241 rc = eval_predicate(exp, tok_idx, set, options, axis);
Michal Vaskod3678892020-05-21 10:06:58 +02008242 LY_CHECK_RET(rc);
8243 }
8244
8245 return LY_SUCCESS;
8246}
8247
8248/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02008249 * @brief Evaluate RelativeLocationPath. Logs directly on error.
8250 *
8251 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
8252 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02008253 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02008254 *
8255 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008256 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008257 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02008258 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008259 * @param[in] options XPath options.
8260 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
8261 */
8262static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008263eval_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 +02008264 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008265{
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008266 LY_ERR rc = LY_SUCCESS;
Michal Vasko49fec8e2022-05-24 10:28:33 +02008267 enum lyxp_axis axis;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008268 int scnode_skip_path = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008269
8270 goto step;
8271 do {
8272 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02008273 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008274 all_desc = 0;
8275 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008276 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008277 all_desc = 1;
8278 }
aPiecek8b0cc152021-05-31 16:40:31 +02008279 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008280 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008281 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008282
8283step:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008284 /* AxisSpecifier */
8285 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AXISNAME) {
8286 axis = str2axis(exp->expr + exp->tok_pos[*tok_idx], exp->tok_len[*tok_idx]);
Michal Vaskod3678892020-05-21 10:06:58 +02008287
aPiecek8b0cc152021-05-31 16:40:31 +02008288 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008289 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8290 ++(*tok_idx);
8291
8292 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_DCOLON);
8293 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
8294 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
8295 ++(*tok_idx);
8296 } else if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
8297 axis = LYXP_AXIS_ATTRIBUTE;
8298
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]);
Michal Vasko004d3152020-06-11 19:59:22 +02008301 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02008302 } else {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008303 /* default */
8304 axis = LYXP_AXIS_CHILD;
Michal Vaskod3678892020-05-21 10:06:58 +02008305 }
8306
Michal Vasko49fec8e2022-05-24 10:28:33 +02008307 /* NodeTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008308 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008309 case LYXP_TOKEN_DOT:
8310 /* evaluate '.' */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008311 if (!(options & LYXP_SKIP_EXPR)) {
8312 if (((options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_SCNODE_SET)) ||
8313 (!(options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_NODE_SET))) {
8314 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
8315 rc = LY_EVALID;
8316 goto cleanup;
8317 }
8318
8319 if (all_desc) {
8320 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8321 LY_CHECK_GOTO(rc, cleanup);
8322 }
8323 rc = xpath_pi_node(set, LYXP_AXIS_SELF, options);
8324 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008325 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008326 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008327 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008328 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008329 break;
8330
8331 case LYXP_TOKEN_DDOT:
8332 /* evaluate '..' */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008333 if (!(options & LYXP_SKIP_EXPR)) {
8334 if (((options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_SCNODE_SET)) ||
8335 (!(options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_NODE_SET))) {
8336 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
8337 rc = LY_EVALID;
8338 goto cleanup;
8339 }
8340
8341 if (all_desc) {
8342 rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options);
8343 LY_CHECK_GOTO(rc, cleanup);
8344 }
8345 rc = xpath_pi_node(set, LYXP_AXIS_PARENT, options);
8346 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008347 }
aPiecek8b0cc152021-05-31 16:40:31 +02008348 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008349 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008350 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008351 break;
8352
Michal Vasko03ff5a72019-09-11 13:49:33 +02008353 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02008354 /* evaluate NameTest Predicate* */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008355 rc = eval_name_test_with_predicate(exp, tok_idx, axis, all_desc, set, options);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008356 if (rc == LY_ENOT) {
8357 assert(options & LYXP_SCNODE_ALL);
8358 /* skip the rest of this path */
8359 rc = LY_SUCCESS;
8360 scnode_skip_path = 1;
8361 options |= LYXP_SKIP_EXPR;
8362 }
8363 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02008364 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008365
Michal Vaskod3678892020-05-21 10:06:58 +02008366 case LYXP_TOKEN_NODETYPE:
8367 /* evaluate NodeType Predicate* */
Michal Vasko49fec8e2022-05-24 10:28:33 +02008368 rc = eval_node_type_with_predicate(exp, tok_idx, axis, all_desc, set, options);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008369 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008370 break;
8371
8372 default:
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008373 LOGINT(set->ctx);
8374 rc = LY_EINT;
8375 goto cleanup;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008376 }
Michal Vasko004d3152020-06-11 19:59:22 +02008377 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008378
Michal Vaskoa036a6b2021-10-12 16:05:23 +02008379cleanup:
8380 if (scnode_skip_path) {
8381 options &= ~LYXP_SKIP_EXPR;
8382 }
8383 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008384}
8385
8386/**
8387 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
8388 *
8389 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
8390 *
8391 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008392 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008393 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008394 * @param[in] options XPath options.
8395 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8396 */
8397static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008398eval_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 +02008399{
Radek Krejci857189e2020-09-01 13:26:36 +02008400 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008401
aPiecek8b0cc152021-05-31 16:40:31 +02008402 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008403 /* no matter what tokens follow, we need to be at the root */
Michal Vaskob0099a92020-08-31 14:55:23 +02008404 LY_CHECK_RET(moveto_root(set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008405 }
8406
8407 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02008408 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008409 /* evaluate '/' - deferred */
8410 all_desc = 0;
aPiecek8b0cc152021-05-31 16:40:31 +02008411 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008412 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008413 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008414
Michal Vasko004d3152020-06-11 19:59:22 +02008415 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008416 return LY_SUCCESS;
8417 }
Michal Vasko004d3152020-06-11 19:59:22 +02008418 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008419 case LYXP_TOKEN_DOT:
8420 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008421 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008422 case LYXP_TOKEN_AT:
8423 case LYXP_TOKEN_NAMETEST:
8424 case LYXP_TOKEN_NODETYPE:
Michal Vaskob0099a92020-08-31 14:55:23 +02008425 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008426 break;
8427 default:
8428 break;
8429 }
8430
Michal Vasko03ff5a72019-09-11 13:49:33 +02008431 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02008432 /* '//' RelativeLocationPath */
Michal Vasko03ff5a72019-09-11 13:49:33 +02008433 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
8434 all_desc = 1;
aPiecek8b0cc152021-05-31 16:40:31 +02008435 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008436 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008437 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008438
Michal Vaskob0099a92020-08-31 14:55:23 +02008439 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008440 }
8441
8442 return LY_SUCCESS;
8443}
8444
8445/**
8446 * @brief Evaluate FunctionCall. Logs directly on error.
8447 *
Michal Vaskod3678892020-05-21 10:06:58 +02008448 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02008449 *
8450 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008451 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008452 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008453 * @param[in] options XPath options.
8454 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8455 */
8456static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008457eval_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 +02008458{
8459 LY_ERR rc;
Michal Vasko69730152020-10-09 16:30:07 +02008460
Michal Vaskodd528af2022-08-08 14:35:07 +02008461 LY_ERR (*xpath_func)(struct lyxp_set **, uint32_t, struct lyxp_set *, uint32_t) = NULL;
8462 uint32_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008463 struct lyxp_set **args = NULL, **args_aux;
8464
aPiecek8b0cc152021-05-31 16:40:31 +02008465 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008466 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02008467 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008468 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02008469 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008470 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02008471 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008472 xpath_func = &xpath_sum;
8473 }
8474 break;
8475 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02008476 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008477 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02008478 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008479 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02008480 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008481 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02008482 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008483 xpath_func = &xpath_true;
8484 }
8485 break;
8486 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02008487 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008488 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02008489 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008490 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02008491 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008492 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02008493 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008494 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02008495 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008496 xpath_func = &xpath_deref;
8497 }
8498 break;
8499 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02008500 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008501 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02008502 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008503 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02008504 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008505 xpath_func = &xpath_string;
8506 }
8507 break;
8508 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02008509 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008510 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02008511 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008512 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02008513 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008514 xpath_func = &xpath_current;
8515 }
8516 break;
8517 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02008518 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008519 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02008520 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008521 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02008522 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008523 xpath_func = &xpath_re_match;
8524 }
8525 break;
8526 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02008527 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008528 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02008529 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008530 xpath_func = &xpath_translate;
8531 }
8532 break;
8533 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02008534 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008535 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02008536 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008537 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02008538 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008539 xpath_func = &xpath_bit_is_set;
8540 }
8541 break;
8542 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02008543 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008544 xpath_func = &xpath_starts_with;
8545 }
8546 break;
8547 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02008548 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008549 xpath_func = &xpath_derived_from;
8550 }
8551 break;
8552 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02008553 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008554 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02008555 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008556 xpath_func = &xpath_string_length;
8557 }
8558 break;
8559 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02008560 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008561 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02008562 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008563 xpath_func = &xpath_substring_after;
8564 }
8565 break;
8566 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02008567 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008568 xpath_func = &xpath_substring_before;
8569 }
8570 break;
8571 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02008572 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008573 xpath_func = &xpath_derived_from_or_self;
8574 }
8575 break;
8576 }
8577
8578 if (!xpath_func) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008579 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 +02008580 return LY_EVALID;
8581 }
8582 }
8583
aPiecek8b0cc152021-05-31 16:40:31 +02008584 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008585 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008586 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008587
8588 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02008589 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
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 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02008595 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
aPiecek8b0cc152021-05-31 16:40:31 +02008596 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008597 args = malloc(sizeof *args);
8598 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
8599 arg_count = 1;
8600 args[0] = set_copy(set);
8601 if (!args[0]) {
8602 rc = LY_EMEM;
8603 goto cleanup;
8604 }
8605
Michal Vasko004d3152020-06-11 19:59:22 +02008606 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008607 LY_CHECK_GOTO(rc, cleanup);
8608 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008609 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008610 LY_CHECK_GOTO(rc, cleanup);
8611 }
8612 }
Michal Vasko004d3152020-06-11 19:59:22 +02008613 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
aPiecek8b0cc152021-05-31 16:40:31 +02008614 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008615 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008616 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008617
aPiecek8b0cc152021-05-31 16:40:31 +02008618 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008619 ++arg_count;
8620 args_aux = realloc(args, arg_count * sizeof *args);
8621 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
8622 args = args_aux;
8623 args[arg_count - 1] = set_copy(set);
8624 if (!args[arg_count - 1]) {
8625 rc = LY_EMEM;
8626 goto cleanup;
8627 }
8628
Michal Vasko004d3152020-06-11 19:59:22 +02008629 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008630 LY_CHECK_GOTO(rc, cleanup);
8631 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02008632 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008633 LY_CHECK_GOTO(rc, cleanup);
8634 }
8635 }
8636
8637 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02008638 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02008639 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008640 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008641 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008642
aPiecek8b0cc152021-05-31 16:40:31 +02008643 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008644 /* evaluate function */
8645 rc = xpath_func(args, arg_count, set, options);
8646
8647 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008648 /* merge all nodes from arg evaluations */
8649 for (i = 0; i < arg_count; ++i) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008650 set_scnode_clear_ctx(args[i], LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008651 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008652 }
8653 }
8654 } else {
8655 rc = LY_SUCCESS;
8656 }
8657
8658cleanup:
8659 for (i = 0; i < arg_count; ++i) {
8660 lyxp_set_free(args[i]);
8661 }
8662 free(args);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008663 return rc;
8664}
8665
8666/**
8667 * @brief Evaluate Number. Logs directly on error.
8668 *
8669 * @param[in] ctx Context for errors.
8670 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008671 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008672 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
8673 * @return LY_ERR
8674 */
8675static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008676eval_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 +02008677{
8678 long double num;
8679 char *endptr;
8680
8681 if (set) {
8682 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02008683 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008684 if (errno) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008685 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
8686 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).",
Michal Vasko69730152020-10-09 16:30:07 +02008687 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008688 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02008689 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01008690 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
8691 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.",
Michal Vasko69730152020-10-09 16:30:07 +02008692 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008693 return LY_EVALID;
8694 }
8695
8696 set_fill_number(set, num);
8697 }
8698
8699 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008700 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008701 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008702 return LY_SUCCESS;
8703}
8704
aPiecekdf23eee2021-10-07 12:21:50 +02008705LY_ERR
Michal Vasko90189962023-02-28 12:10:34 +01008706lyxp_vars_find(const struct ly_ctx *ctx, const struct lyxp_var *vars, const char *name, size_t name_len,
8707 struct lyxp_var **var)
aPiecekdf23eee2021-10-07 12:21:50 +02008708{
aPiecekdf23eee2021-10-07 12:21:50 +02008709 LY_ARRAY_COUNT_TYPE u;
8710
Michal Vasko90189962023-02-28 12:10:34 +01008711 assert(name);
aPiecekdf23eee2021-10-07 12:21:50 +02008712
Michal Vasko90189962023-02-28 12:10:34 +01008713 if (!name_len) {
8714 name_len = strlen(name);
8715 }
aPiecekdf23eee2021-10-07 12:21:50 +02008716
8717 LY_ARRAY_FOR(vars, u) {
8718 if (!strncmp(vars[u].name, name, name_len)) {
Michal Vasko90189962023-02-28 12:10:34 +01008719 if (var) {
8720 *var = (struct lyxp_var *)&vars[u];
8721 }
8722 return LY_SUCCESS;
aPiecekdf23eee2021-10-07 12:21:50 +02008723 }
8724 }
8725
Michal Vasko90189962023-02-28 12:10:34 +01008726 if (ctx) {
8727 LOGERR(ctx, LY_ENOTFOUND, "Variable \"%.*s\" not defined.", (int)name_len, name);
aPiecekdf23eee2021-10-07 12:21:50 +02008728 }
Michal Vasko90189962023-02-28 12:10:34 +01008729 return LY_ENOTFOUND;
aPiecekdf23eee2021-10-07 12:21:50 +02008730}
8731
Michal Vasko03ff5a72019-09-11 13:49:33 +02008732/**
aPiecekfba75362021-10-07 12:39:48 +02008733 * @brief Evaluate VariableReference.
8734 *
8735 * @param[in] exp Parsed XPath expression.
8736 * @param[in] tok_idx Position in the expression @p exp.
8737 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
8738 * @param[in,out] set Context and result set.
8739 * @param[in] options XPath options.
8740 * @return LY_ERR value.
8741 */
8742static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008743eval_variable_reference(const struct lyxp_expr *exp, uint32_t *tok_idx, struct lyxp_set *set, uint32_t options)
aPiecekfba75362021-10-07 12:39:48 +02008744{
8745 LY_ERR ret;
8746 const char *name;
8747 struct lyxp_var *var;
aPiecekfba75362021-10-07 12:39:48 +02008748 struct lyxp_expr *tokens = NULL;
Michal Vaskodd528af2022-08-08 14:35:07 +02008749 uint32_t token_index, name_len;
aPiecekfba75362021-10-07 12:39:48 +02008750
Michal Vasko49fec8e2022-05-24 10:28:33 +02008751 /* find out the name and value of the variable */
aPiecekfba75362021-10-07 12:39:48 +02008752 name = &exp->expr[exp->tok_pos[*tok_idx]];
Michal Vaskoe68b5402022-07-29 14:58:15 +02008753 name_len = exp->tok_len[*tok_idx];
Michal Vasko90189962023-02-28 12:10:34 +01008754 ret = lyxp_vars_find(set->ctx, set->vars, name, name_len, &var);
8755 LY_CHECK_RET(ret);
aPiecekfba75362021-10-07 12:39:48 +02008756
Michal Vasko49fec8e2022-05-24 10:28:33 +02008757 /* parse value */
aPiecekfba75362021-10-07 12:39:48 +02008758 ret = lyxp_expr_parse(set->ctx, var->value, 0, 1, &tokens);
8759 LY_CHECK_GOTO(ret, cleanup);
8760
Michal Vasko49fec8e2022-05-24 10:28:33 +02008761 /* evaluate value */
aPiecekfba75362021-10-07 12:39:48 +02008762 token_index = 0;
8763 ret = eval_expr_select(tokens, &token_index, 0, set, options);
8764 LY_CHECK_GOTO(ret, cleanup);
8765
8766cleanup:
8767 lyxp_expr_free(set->ctx, tokens);
8768
8769 return ret;
8770}
8771
8772/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02008773 * @brief Evaluate PathExpr. Logs directly on error.
8774 *
Michal Vaskod3678892020-05-21 10:06:58 +02008775 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02008776 * | PrimaryExpr Predicate* '/' RelativeLocationPath
8777 * | PrimaryExpr Predicate* '//' RelativeLocationPath
8778 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
aPiecekfba75362021-10-07 12:39:48 +02008779 * [10] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02008780 *
8781 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008782 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02008783 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008784 * @param[in] options XPath options.
8785 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8786 */
8787static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008788eval_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 +02008789{
Michal Vasko49fec8e2022-05-24 10:28:33 +02008790 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008791 LY_ERR rc;
8792
Michal Vasko004d3152020-06-11 19:59:22 +02008793 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008794 case LYXP_TOKEN_PAR1:
8795 /* '(' Expr ')' */
8796
8797 /* '(' */
aPiecek8b0cc152021-05-31 16:40:31 +02008798 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008799 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008800 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008801
8802 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02008803 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008804 LY_CHECK_RET(rc);
8805
8806 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02008807 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02008808 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008809 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008810 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008811
Michal Vasko03ff5a72019-09-11 13:49:33 +02008812 goto predicate;
8813
8814 case LYXP_TOKEN_DOT:
8815 case LYXP_TOKEN_DDOT:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008816 case LYXP_TOKEN_AXISNAME:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008817 case LYXP_TOKEN_AT:
8818 case LYXP_TOKEN_NAMETEST:
8819 case LYXP_TOKEN_NODETYPE:
8820 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008821 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008822 LY_CHECK_RET(rc);
8823 break;
8824
aPiecekfba75362021-10-07 12:39:48 +02008825 case LYXP_TOKEN_VARREF:
8826 /* VariableReference */
8827 rc = eval_variable_reference(exp, tok_idx, set, options);
8828 LY_CHECK_RET(rc);
8829 ++(*tok_idx);
8830
aPiecekfba75362021-10-07 12:39:48 +02008831 goto predicate;
8832
Michal Vasko03ff5a72019-09-11 13:49:33 +02008833 case LYXP_TOKEN_FUNCNAME:
8834 /* FunctionCall */
aPiecek8b0cc152021-05-31 16:40:31 +02008835 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008836 LY_CHECK_RET(rc);
8837
Michal Vasko03ff5a72019-09-11 13:49:33 +02008838 goto predicate;
8839
Michal Vasko3e48bf32020-06-01 08:39:07 +02008840 case LYXP_TOKEN_OPER_PATH:
8841 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008842 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008843 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008844 LY_CHECK_RET(rc);
8845 break;
8846
8847 case LYXP_TOKEN_LITERAL:
8848 /* Literal */
aPiecek8b0cc152021-05-31 16:40:31 +02008849 if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) {
8850 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008851 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008852 }
Michal Vasko004d3152020-06-11 19:59:22 +02008853 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008854 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008855 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008856 }
8857
Michal Vasko03ff5a72019-09-11 13:49:33 +02008858 goto predicate;
8859
8860 case LYXP_TOKEN_NUMBER:
8861 /* Number */
aPiecek8b0cc152021-05-31 16:40:31 +02008862 if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) {
8863 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008864 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008865 }
Michal Vasko004d3152020-06-11 19:59:22 +02008866 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008867 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008868 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008869 }
8870 LY_CHECK_RET(rc);
8871
Michal Vasko03ff5a72019-09-11 13:49:33 +02008872 goto predicate;
8873
8874 default:
Michal Vasko49fec8e2022-05-24 10:28:33 +02008875 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 +02008876 return LY_EVALID;
8877 }
8878
8879 return LY_SUCCESS;
8880
8881predicate:
8882 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008883 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vasko49fec8e2022-05-24 10:28:33 +02008884 rc = eval_predicate(exp, tok_idx, set, options, LYXP_AXIS_CHILD);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008885 LY_CHECK_RET(rc);
8886 }
8887
8888 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008889 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008890
8891 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02008892 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008893 all_desc = 0;
8894 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008895 all_desc = 1;
8896 }
8897
aPiecek8b0cc152021-05-31 16:40:31 +02008898 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008899 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008900 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008901
Michal Vasko004d3152020-06-11 19:59:22 +02008902 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008903 LY_CHECK_RET(rc);
8904 }
8905
8906 return LY_SUCCESS;
8907}
8908
8909/**
8910 * @brief Evaluate UnionExpr. Logs directly on error.
8911 *
Michal Vaskod3678892020-05-21 10:06:58 +02008912 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008913 *
8914 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008915 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008916 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008917 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008918 * @param[in] options XPath options.
8919 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8920 */
8921static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008922eval_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 +02008923{
8924 LY_ERR rc = LY_SUCCESS;
8925 struct lyxp_set orig_set, set2;
Michal Vaskodd528af2022-08-08 14:35:07 +02008926 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008927
8928 assert(repeat);
8929
8930 set_init(&orig_set, set);
8931 set_init(&set2, set);
8932
8933 set_fill_set(&orig_set, set);
8934
Michal Vasko004d3152020-06-11 19:59:22 +02008935 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008936 LY_CHECK_GOTO(rc, cleanup);
8937
8938 /* ('|' PathExpr)* */
8939 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008940 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
aPiecek8b0cc152021-05-31 16:40:31 +02008941 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008942 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008943 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008944
aPiecek8b0cc152021-05-31 16:40:31 +02008945 if (options & LYXP_SKIP_EXPR) {
8946 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008947 LY_CHECK_GOTO(rc, cleanup);
8948 continue;
8949 }
8950
8951 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008952 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008953 LY_CHECK_GOTO(rc, cleanup);
8954
8955 /* eval */
8956 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01008957 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008958 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008959 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008960 LY_CHECK_GOTO(rc, cleanup);
8961 }
8962 }
8963
8964cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008965 lyxp_set_free_content(&orig_set);
8966 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008967 return rc;
8968}
8969
8970/**
8971 * @brief Evaluate UnaryExpr. Logs directly on error.
8972 *
Michal Vaskod3678892020-05-21 10:06:58 +02008973 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008974 *
8975 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008976 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008977 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008978 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008979 * @param[in] options XPath options.
8980 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8981 */
8982static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02008983eval_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 +02008984{
8985 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02008986 uint32_t this_op, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008987
8988 assert(repeat);
8989
8990 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02008991 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008992 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008993 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 +02008994
aPiecek8b0cc152021-05-31 16:40:31 +02008995 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02008996 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008997 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008998 }
8999
Michal Vasko004d3152020-06-11 19:59:22 +02009000 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009001 LY_CHECK_RET(rc);
9002
aPiecek8b0cc152021-05-31 16:40:31 +02009003 if (!(options & LYXP_SKIP_EXPR) && (repeat % 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009004 if (options & LYXP_SCNODE_ALL) {
9005 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
9006 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009007 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009008 LY_CHECK_RET(rc);
9009 }
9010 }
9011
9012 return LY_SUCCESS;
9013}
9014
9015/**
9016 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
9017 *
Michal Vaskod3678892020-05-21 10:06:58 +02009018 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009019 * | MultiplicativeExpr '*' UnaryExpr
9020 * | MultiplicativeExpr 'div' UnaryExpr
9021 * | MultiplicativeExpr 'mod' UnaryExpr
9022 *
9023 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009024 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009025 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009026 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009027 * @param[in] options XPath options.
9028 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9029 */
9030static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009031eval_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 +02009032 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009033{
9034 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02009035 uint32_t i, this_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009036 struct lyxp_set orig_set, set2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009037
9038 assert(repeat);
9039
9040 set_init(&orig_set, set);
9041 set_init(&set2, set);
9042
9043 set_fill_set(&orig_set, set);
9044
Michal Vasko004d3152020-06-11 19:59:22 +02009045 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009046 LY_CHECK_GOTO(rc, cleanup);
9047
9048 /* ('*' / 'div' / 'mod' UnaryExpr)* */
9049 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009050 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009051
Michal Vasko004d3152020-06-11 19:59:22 +02009052 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
aPiecek8b0cc152021-05-31 16:40:31 +02009053 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009054 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009055 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009056
aPiecek8b0cc152021-05-31 16:40:31 +02009057 if (options & LYXP_SKIP_EXPR) {
9058 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009059 LY_CHECK_GOTO(rc, cleanup);
9060 continue;
9061 }
9062
9063 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009064 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009065 LY_CHECK_GOTO(rc, cleanup);
9066
9067 /* eval */
9068 if (options & LYXP_SCNODE_ALL) {
9069 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009070 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009071 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009072 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009073 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009074 LY_CHECK_GOTO(rc, cleanup);
9075 }
9076 }
9077
9078cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009079 lyxp_set_free_content(&orig_set);
9080 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009081 return rc;
9082}
9083
9084/**
9085 * @brief Evaluate AdditiveExpr. Logs directly on error.
9086 *
Michal Vaskod3678892020-05-21 10:06:58 +02009087 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009088 * | AdditiveExpr '+' MultiplicativeExpr
9089 * | AdditiveExpr '-' MultiplicativeExpr
9090 *
9091 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009092 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009093 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009094 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009095 * @param[in] options XPath options.
9096 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9097 */
9098static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009099eval_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 +02009100{
9101 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02009102 uint32_t i, this_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009103 struct lyxp_set orig_set, set2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009104
9105 assert(repeat);
9106
9107 set_init(&orig_set, set);
9108 set_init(&set2, set);
9109
9110 set_fill_set(&orig_set, set);
9111
Michal Vasko004d3152020-06-11 19:59:22 +02009112 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009113 LY_CHECK_GOTO(rc, cleanup);
9114
9115 /* ('+' / '-' MultiplicativeExpr)* */
9116 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009117 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009118
Michal Vasko004d3152020-06-11 19:59:22 +02009119 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009120 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009121 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009122 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009123
aPiecek8b0cc152021-05-31 16:40:31 +02009124 if (options & LYXP_SKIP_EXPR) {
9125 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009126 LY_CHECK_GOTO(rc, cleanup);
9127 continue;
9128 }
9129
9130 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009131 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009132 LY_CHECK_GOTO(rc, cleanup);
9133
9134 /* eval */
9135 if (options & LYXP_SCNODE_ALL) {
9136 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009137 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009138 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009139 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009140 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009141 LY_CHECK_GOTO(rc, cleanup);
9142 }
9143 }
9144
9145cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009146 lyxp_set_free_content(&orig_set);
9147 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009148 return rc;
9149}
9150
9151/**
9152 * @brief Evaluate RelationalExpr. Logs directly on error.
9153 *
Michal Vaskod3678892020-05-21 10:06:58 +02009154 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009155 * | RelationalExpr '<' AdditiveExpr
9156 * | RelationalExpr '>' AdditiveExpr
9157 * | RelationalExpr '<=' AdditiveExpr
9158 * | RelationalExpr '>=' AdditiveExpr
9159 *
9160 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009161 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009162 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009163 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009164 * @param[in] options XPath options.
9165 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9166 */
9167static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009168eval_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 +02009169{
9170 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02009171 uint32_t i, this_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009172 struct lyxp_set orig_set, set2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009173
9174 assert(repeat);
9175
9176 set_init(&orig_set, set);
9177 set_init(&set2, set);
9178
9179 set_fill_set(&orig_set, set);
9180
Michal Vasko004d3152020-06-11 19:59:22 +02009181 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009182 LY_CHECK_GOTO(rc, cleanup);
9183
9184 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
9185 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009186 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009187
Michal Vasko004d3152020-06-11 19:59:22 +02009188 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
aPiecek8b0cc152021-05-31 16:40:31 +02009189 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009190 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009191 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009192
aPiecek8b0cc152021-05-31 16:40:31 +02009193 if (options & LYXP_SKIP_EXPR) {
9194 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009195 LY_CHECK_GOTO(rc, cleanup);
9196 continue;
9197 }
9198
9199 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009200 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009201 LY_CHECK_GOTO(rc, cleanup);
9202
9203 /* eval */
9204 if (options & LYXP_SCNODE_ALL) {
9205 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009206 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009207 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009208 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02009209 ly_bool result;
9210
9211 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], &result);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009212 LY_CHECK_GOTO(rc, cleanup);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02009213 set_fill_boolean(set, result);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009214 }
9215 }
9216
9217cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009218 lyxp_set_free_content(&orig_set);
9219 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009220 return rc;
9221}
9222
9223/**
9224 * @brief Evaluate EqualityExpr. Logs directly on error.
9225 *
Michal Vaskod3678892020-05-21 10:06:58 +02009226 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009227 * | EqualityExpr '!=' RelationalExpr
9228 *
9229 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009230 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009231 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009232 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009233 * @param[in] options XPath options.
9234 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9235 */
9236static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009237eval_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 +02009238{
9239 LY_ERR rc;
Michal Vaskodd528af2022-08-08 14:35:07 +02009240 uint32_t i, this_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009241 struct lyxp_set orig_set, set2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009242
9243 assert(repeat);
9244
9245 set_init(&orig_set, set);
9246 set_init(&set2, set);
9247
9248 set_fill_set(&orig_set, set);
9249
Michal Vasko004d3152020-06-11 19:59:22 +02009250 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009251 LY_CHECK_GOTO(rc, cleanup);
9252
9253 /* ('=' / '!=' RelationalExpr)* */
9254 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009255 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009256
Michal Vasko004d3152020-06-11 19:59:22 +02009257 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
aPiecek8b0cc152021-05-31 16:40:31 +02009258 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009259 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009260 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009261
aPiecek8b0cc152021-05-31 16:40:31 +02009262 if (options & LYXP_SKIP_EXPR) {
9263 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009264 LY_CHECK_GOTO(rc, cleanup);
9265 continue;
9266 }
9267
9268 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009269 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009270 LY_CHECK_GOTO(rc, cleanup);
9271
9272 /* eval */
9273 if (options & LYXP_SCNODE_ALL) {
9274 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02009275 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
9276 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009277 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02009278 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009279 } else {
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02009280 ly_bool result;
9281
9282 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], &result);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009283 LY_CHECK_GOTO(rc, cleanup);
Haithem Ben Ghorbal1ac219d2022-09-07 12:30:06 +02009284 set_fill_boolean(set, result);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009285 }
9286 }
9287
9288cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009289 lyxp_set_free_content(&orig_set);
9290 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009291 return rc;
9292}
9293
9294/**
9295 * @brief Evaluate AndExpr. Logs directly on error.
9296 *
Michal Vaskod3678892020-05-21 10:06:58 +02009297 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009298 *
9299 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009300 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009301 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009302 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009303 * @param[in] options XPath options.
9304 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9305 */
9306static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009307eval_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 +02009308{
9309 LY_ERR rc;
9310 struct lyxp_set orig_set, set2;
Michal Vaskodd528af2022-08-08 14:35:07 +02009311 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009312
9313 assert(repeat);
9314
9315 set_init(&orig_set, set);
9316 set_init(&set2, set);
9317
9318 set_fill_set(&orig_set, set);
9319
Michal Vasko004d3152020-06-11 19:59:22 +02009320 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009321 LY_CHECK_GOTO(rc, cleanup);
9322
Michal Vasko3ff82dd2023-05-09 14:09:21 +02009323 if (!(options & LYXP_SKIP_EXPR)) {
9324 if (options & LYXP_SCNODE_ALL) {
9325 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
9326 } else {
9327 /* cast to boolean, we know that will be the final result */
9328 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
9329 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009330 }
9331
9332 /* ('and' EqualityExpr)* */
9333 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009334 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
aPiecek8b0cc152021-05-31 16:40:31 +02009335 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || !set->val.bln ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009336 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009337 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009338
9339 /* lazy evaluation */
aPiecek8b0cc152021-05-31 16:40:31 +02009340 if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
9341 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009342 LY_CHECK_GOTO(rc, cleanup);
9343 continue;
9344 }
9345
9346 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02009347 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009348 LY_CHECK_GOTO(rc, cleanup);
9349
9350 /* eval - just get boolean value actually */
9351 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02009352 set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009353 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009354 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009355 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009356 set_fill_set(set, &set2);
9357 }
9358 }
9359
9360cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009361 lyxp_set_free_content(&orig_set);
9362 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009363 return rc;
9364}
9365
9366/**
9367 * @brief Evaluate OrExpr. Logs directly on error.
9368 *
Michal Vaskod3678892020-05-21 10:06:58 +02009369 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02009370 *
9371 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009372 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009373 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02009374 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009375 * @param[in] options XPath options.
9376 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9377 */
9378static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009379eval_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 +02009380{
9381 LY_ERR rc;
9382 struct lyxp_set orig_set, set2;
Michal Vaskodd528af2022-08-08 14:35:07 +02009383 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009384
9385 assert(repeat);
9386
9387 set_init(&orig_set, set);
9388 set_init(&set2, set);
9389
9390 set_fill_set(&orig_set, set);
9391
Michal Vasko004d3152020-06-11 19:59:22 +02009392 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009393 LY_CHECK_GOTO(rc, cleanup);
9394
Michal Vasko3ff82dd2023-05-09 14:09:21 +02009395 if (!(options & LYXP_SKIP_EXPR)) {
9396 if (options & LYXP_SCNODE_ALL) {
9397 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
9398 } else {
9399 /* cast to boolean, we know that will be the final result */
9400 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
9401 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009402 }
9403
9404 /* ('or' AndExpr)* */
9405 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009406 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
aPiecek8b0cc152021-05-31 16:40:31 +02009407 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || set->val.bln ? "skipped" : "parsed"),
Michal Vasko49fec8e2022-05-24 10:28:33 +02009408 lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02009409 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009410
9411 /* lazy evaluation */
aPiecek8b0cc152021-05-31 16:40:31 +02009412 if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
9413 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009414 LY_CHECK_GOTO(rc, cleanup);
9415 continue;
9416 }
9417
9418 set_fill_set(&set2, &orig_set);
9419 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
9420 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02009421 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009422 LY_CHECK_GOTO(rc, cleanup);
9423
9424 /* eval - just get boolean value actually */
9425 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02009426 set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01009427 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009428 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009429 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009430 set_fill_set(set, &set2);
9431 }
9432 }
9433
9434cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02009435 lyxp_set_free_content(&orig_set);
9436 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009437 return rc;
9438}
9439
9440/**
Michal Vasko004d3152020-06-11 19:59:22 +02009441 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009442 *
9443 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02009444 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009445 * @param[in] etype Expression type to evaluate.
aPiecek8b0cc152021-05-31 16:40:31 +02009446 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02009447 * @param[in] options XPath options.
9448 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
9449 */
9450static LY_ERR
Michal Vaskodd528af2022-08-08 14:35:07 +02009451eval_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 +02009452 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009453{
Michal Vaskodd528af2022-08-08 14:35:07 +02009454 uint32_t i, count;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009455 enum lyxp_expr_type next_etype;
9456 LY_ERR rc;
9457
9458 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02009459 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009460 next_etype = LYXP_EXPR_NONE;
9461 } else {
9462 /* find etype repeat */
Radek Krejci1e008d22020-08-17 11:37:37 +02009463 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02009464
9465 /* select one-priority lower because etype expression called us */
9466 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02009467 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02009468 /* count repeats for that expression */
Radek Krejci1e008d22020-08-17 11:37:37 +02009469 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02009470 } else {
9471 next_etype = LYXP_EXPR_NONE;
9472 }
9473 }
9474
9475 /* decide what expression are we parsing based on the repeat */
9476 switch (next_etype) {
9477 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02009478 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009479 break;
9480 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02009481 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009482 break;
9483 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02009484 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009485 break;
9486 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02009487 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009488 break;
9489 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02009490 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009491 break;
9492 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02009493 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009494 break;
9495 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02009496 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009497 break;
9498 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02009499 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009500 break;
9501 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02009502 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009503 break;
9504 default:
9505 LOGINT_RET(set->ctx);
9506 }
9507
9508 return rc;
9509}
9510
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009511/**
9512 * @brief Get root type.
9513 *
9514 * @param[in] ctx_node Context node.
9515 * @param[in] ctx_scnode Schema context node.
9516 * @param[in] options XPath options.
9517 * @return Root type.
9518 */
9519static enum lyxp_node_type
Radek Krejci1deb5be2020-08-26 16:43:36 +02009520lyxp_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 +01009521{
Michal Vasko6b26e742020-07-17 15:02:10 +02009522 const struct lysc_node *op;
9523
Michal Vaskoa27245c2022-05-02 09:01:35 +02009524 /* explicit */
9525 if (options & LYXP_ACCESS_TREE_ALL) {
9526 return LYXP_NODE_ROOT;
9527 } else if (options & LYXP_ACCESS_TREE_CONFIG) {
9528 return LYXP_NODE_ROOT_CONFIG;
9529 }
9530
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009531 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009532 /* schema */
Radek Krejci1e008d22020-08-17 11:37:37 +02009533 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02009534
9535 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009536 /* general root that can access everything */
9537 return LYXP_NODE_ROOT;
9538 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
9539 /* root context node can access only config data (because we said so, it is unspecified) */
9540 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009541 }
Michal Vasko6b26e742020-07-17 15:02:10 +02009542 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009543 }
9544
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009545 /* data */
Michal Vasko6b26e742020-07-17 15:02:10 +02009546 op = ctx_node ? ctx_node->schema : NULL;
Michal Vaskod989ba02020-08-24 10:59:24 +02009547 for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02009548
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009549 if (op || !(options & LYXP_SCHEMA)) {
9550 /* general root that can access everything */
9551 return LYXP_NODE_ROOT;
Christian Hoppsb6ecaea2021-02-06 09:45:38 -05009552 } else if (!ctx_node || !ctx_node->schema || (ctx_node->schema->flags & LYS_CONFIG_W)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009553 /* root context node can access only config data (because we said so, it is unspecified) */
9554 return LYXP_NODE_ROOT_CONFIG;
9555 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009556 return LYXP_NODE_ROOT;
9557}
9558
Michal Vasko03ff5a72019-09-11 13:49:33 +02009559LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01009560lyxp_eval(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02009561 LY_VALUE_FORMAT format, void *prefix_data, const struct lyd_node *cur_node, const struct lyd_node *ctx_node,
9562 const struct lyd_node *tree, const struct lyxp_var *vars, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009563{
Michal Vaskodd528af2022-08-08 14:35:07 +02009564 uint32_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009565 LY_ERR rc;
9566
Michal Vasko400e9672021-01-11 13:39:17 +01009567 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Radek Krejci8df109d2021-04-23 12:19:08 +02009568 if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) {
Michal Vaskoddd76592022-01-17 13:34:48 +01009569 LOGERR(ctx, LY_EINVAL, "Current module must be set if schema format is used.");
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009570 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02009571 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009572
Michal Vaskod3bb12f2020-12-04 14:33:09 +01009573 if (tree) {
9574 /* adjust the pointer to be the first top-level sibling */
9575 while (tree->parent) {
9576 tree = lyd_parent(tree);
9577 }
9578 tree = lyd_first_sibling(tree);
Michal Vaskoddd76592022-01-17 13:34:48 +01009579
Michal Vasko6f78a772022-11-10 08:13:52 +01009580 if (lysc_data_parent(tree->schema)) {
Michal Vaskoddd76592022-01-17 13:34:48 +01009581 /* unable to evaluate absolute paths */
9582 LOGERR(ctx, LY_EINVAL, "Data node \"%s\" has no parent but is not instance of a top-level schema node.",
9583 LYD_NAME(tree));
9584 return LY_EINVAL;
9585 }
Michal Vaskod3bb12f2020-12-04 14:33:09 +01009586 }
9587
Michal Vasko03ff5a72019-09-11 13:49:33 +02009588 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02009589 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02009590 set->type = LYXP_SET_NODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009591 set->root_type = lyxp_get_root_type(ctx_node, NULL, options);
9592 set_insert_node(set, (struct lyd_node *)ctx_node, 0, ctx_node ? LYXP_NODE_ELEM : set->root_type, 0);
9593
Michal Vasko400e9672021-01-11 13:39:17 +01009594 set->ctx = (struct ly_ctx *)ctx;
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02009595 set->cur_node = cur_node;
9596 for (set->context_op = cur_node ? cur_node->schema : NULL;
Radek Krejci0f969882020-08-21 16:56:47 +02009597 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
9598 set->context_op = set->context_op->parent) {}
Michal Vaskof03ed032020-03-04 13:31:44 +01009599 set->tree = tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009600 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009601 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009602 set->prefix_data = prefix_data;
aPiecekfba75362021-10-07 12:39:48 +02009603 set->vars = vars;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009604
Radek Krejciddace2c2021-01-08 11:30:56 +01009605 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009606
Michal Vasko03ff5a72019-09-11 13:49:33 +02009607 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02009608 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009609 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02009610 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009611 }
9612
Michal Vasko4a7d4d62021-12-13 17:05:06 +01009613 if (set->cur_node) {
9614 LOG_LOCBACK(0, 1, 0, 0);
9615 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009616 return rc;
9617}
9618
9619#if 0
9620
9621/* full xml printing of set elements, not used currently */
9622
9623void
9624lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
9625{
9626 uint32_t i;
9627 char *str_num;
9628 struct lyout out;
9629
9630 memset(&out, 0, sizeof out);
9631
9632 out.type = LYOUT_STREAM;
9633 out.method.f = f;
9634
9635 switch (set->type) {
9636 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02009637 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009638 break;
9639 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02009640 ly_print_(&out, "Boolean XPath set:\n");
9641 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009642 break;
9643 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02009644 ly_print_(&out, "String XPath set:\n");
9645 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009646 break;
9647 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02009648 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009649
9650 if (isnan(set->value.num)) {
9651 str_num = strdup("NaN");
9652 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
9653 str_num = strdup("0");
9654 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
9655 str_num = strdup("Infinity");
9656 } else if (isinf(set->value.num) && signbit(set->value.num)) {
9657 str_num = strdup("-Infinity");
9658 } else if ((long long)set->value.num == set->value.num) {
9659 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
9660 str_num = NULL;
9661 }
9662 } else {
9663 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
9664 str_num = NULL;
9665 }
9666 }
9667 if (!str_num) {
9668 LOGMEM;
9669 return;
9670 }
Michal Vasko5233e962020-08-14 14:26:20 +02009671 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009672 free(str_num);
9673 break;
9674 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02009675 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009676
9677 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02009678 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009679 switch (set->node_type[i]) {
9680 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02009681 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009682 break;
9683 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02009684 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009685 break;
9686 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02009687 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009688 break;
9689 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02009690 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009691 break;
9692 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02009693 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009694 break;
9695 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02009696 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009697 break;
9698 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02009699 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009700 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02009701 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02009702 break;
9703 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02009704 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 +02009705 break;
9706 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02009707 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 +02009708 break;
9709 }
9710 }
9711 break;
9712 }
9713}
9714
9715#endif
9716
9717LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009718lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009719{
9720 long double num;
9721 char *str;
9722 LY_ERR rc;
9723
9724 if (!set || (set->type == target)) {
9725 return LY_SUCCESS;
9726 }
9727
9728 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02009729 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009730
9731 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02009732 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009733 return LY_EINVAL;
9734 }
9735
9736 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02009737 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009738 switch (set->type) {
9739 case LYXP_SET_NUMBER:
9740 if (isnan(set->val.num)) {
9741 set->val.str = strdup("NaN");
9742 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9743 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
9744 set->val.str = strdup("0");
9745 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9746 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
9747 set->val.str = strdup("Infinity");
9748 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9749 } else if (isinf(set->val.num) && signbit(set->val.num)) {
9750 set->val.str = strdup("-Infinity");
9751 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
9752 } else if ((long long)set->val.num == set->val.num) {
9753 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
9754 LOGMEM_RET(set->ctx);
9755 }
9756 set->val.str = str;
9757 } else {
9758 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
9759 LOGMEM_RET(set->ctx);
9760 }
9761 set->val.str = str;
9762 }
9763 break;
9764 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02009765 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009766 set->val.str = strdup("true");
9767 } else {
9768 set->val.str = strdup("false");
9769 }
9770 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
9771 break;
9772 case LYXP_SET_NODE_SET:
Michal Vasko03ff5a72019-09-11 13:49:33 +02009773 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009774 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02009775
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01009776 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009777 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02009778 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009779 set->val.str = str;
9780 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009781 default:
9782 LOGINT_RET(set->ctx);
9783 }
9784 set->type = LYXP_SET_STRING;
9785 }
9786
9787 /* to NUMBER */
9788 if (target == LYXP_SET_NUMBER) {
9789 switch (set->type) {
9790 case LYXP_SET_STRING:
9791 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02009792 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02009793 set->val.num = num;
9794 break;
9795 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02009796 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02009797 set->val.num = 1;
9798 } else {
9799 set->val.num = 0;
9800 }
9801 break;
9802 default:
9803 LOGINT_RET(set->ctx);
9804 }
9805 set->type = LYXP_SET_NUMBER;
9806 }
9807
9808 /* to BOOLEAN */
9809 if (target == LYXP_SET_BOOLEAN) {
9810 switch (set->type) {
9811 case LYXP_SET_NUMBER:
9812 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02009813 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009814 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02009815 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009816 }
9817 break;
9818 case LYXP_SET_STRING:
9819 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02009820 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009821 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009822 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02009823 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009824 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009825 }
9826 break;
9827 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02009828 if (set->used) {
9829 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009830 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02009831 } else {
9832 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02009833 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02009834 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009835 break;
9836 default:
9837 LOGINT_RET(set->ctx);
9838 }
9839 set->type = LYXP_SET_BOOLEAN;
9840 }
9841
Michal Vasko03ff5a72019-09-11 13:49:33 +02009842 return LY_SUCCESS;
9843}
9844
9845LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01009846lyxp_atomize(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02009847 LY_VALUE_FORMAT format, void *prefix_data, const struct lysc_node *cur_scnode,
9848 const struct lysc_node *ctx_scnode, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02009849{
Radek Krejci2efc45b2020-12-22 16:25:44 +01009850 LY_ERR ret;
Michal Vaskodd528af2022-08-08 14:35:07 +02009851 uint32_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009852
Michal Vasko400e9672021-01-11 13:39:17 +01009853 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Radek Krejci8df109d2021-04-23 12:19:08 +02009854 if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009855 LOGARG(NULL, "Current module must be set if schema format is used.");
9856 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02009857 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009858
9859 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02009860 memset(set, 0, sizeof *set);
9861 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009862 set->root_type = lyxp_get_root_type(NULL, ctx_scnode, options);
Michal Vaskoe4a6d012023-05-22 14:34:52 +02009863 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 +01009864 set->val.scnodes[0].in_ctx = LYXP_SET_SCNODE_START;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009865
Michal Vasko400e9672021-01-11 13:39:17 +01009866 set->ctx = (struct ly_ctx *)ctx;
Michal Vaskoa3e92bc2022-07-29 14:56:23 +02009867 set->cur_scnode = cur_scnode;
9868 for (set->context_op = cur_scnode;
Radek Krejci0f969882020-08-21 16:56:47 +02009869 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
9870 set->context_op = set->context_op->parent) {}
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009871 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009872 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009873 set->prefix_data = prefix_data;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009874
Radek Krejciddace2c2021-01-08 11:30:56 +01009875 LOG_LOCSET(set->cur_scnode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009876
Michal Vasko03ff5a72019-09-11 13:49:33 +02009877 /* evaluate */
Radek Krejci2efc45b2020-12-22 16:25:44 +01009878 ret = eval_expr_select(exp, &tok_idx, 0, set, options);
9879
Michal Vaskof69e4552022-12-02 10:27:42 +01009880 LOG_LOCBACK(set->cur_scnode ? 1 : 0, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009881 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009882}
Michal Vaskod43d71a2020-08-07 14:54:58 +02009883
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01009884LIBYANG_API_DEF const char *
Michal Vaskod43d71a2020-08-07 14:54:58 +02009885lyxp_get_expr(const struct lyxp_expr *path)
9886{
9887 if (!path) {
9888 return NULL;
9889 }
9890
9891 return path->expr;
9892}