blob: 88c916343b590c1735cbff4177ba5f09306d9fa0 [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 Vasko61ac2f62020-05-25 12:39:51 +02006 * Copyright (c) 2015 - 2020 CESNET, z.s.p.o.
Radek Krejcib1646a92018-11-02 16:08:26 +01007 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Christian Hopps32874e12021-05-01 09:43:54 -040014#define _GNU_SOURCE /* asprintf, strdup */
Radek Krejcib1646a92018-11-02 16:08:26 +010015
Radek Krejci535ea9f2020-05-29 16:01:05 +020016#include "xpath.h"
Radek Krejcib1646a92018-11-02 16:08:26 +010017
Radek Krejci535ea9f2020-05-29 16:01:05 +020018#include <assert.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010019#include <ctype.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020020#include <errno.h>
Radek Krejci535ea9f2020-05-29 16:01:05 +020021#include <math.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020022#include <stdint.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010023#include <stdio.h>
24#include <stdlib.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010025#include <string.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010026
Radek Krejci535ea9f2020-05-29 16:01:05 +020027#include "common.h"
Michal Vasko5aa44c02020-06-29 11:47:02 +020028#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020029#include "context.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020030#include "dict.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020031#include "hash_table.h"
Radek Krejci47fab892020-11-05 17:02:41 +010032#include "out.h"
Radek Krejci7931b192020-06-25 17:05:03 +020033#include "parser_data.h"
Michal Vasko004d3152020-06-11 19:59:22 +020034#include "path.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020035#include "plugins_types.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020036#include "printer_data.h"
Michal Vasko1a7a7bd2020-10-16 14:39:15 +020037#include "schema_compile_node.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020038#include "tree.h"
Radek Krejci77114102021-03-10 15:21:57 +010039#include "tree_data.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020040#include "tree_data_internal.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010041#include "tree_edit.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020042#include "tree_schema_internal.h"
43#include "xml.h"
Michal Vasko03ff5a72019-09-11 13:49:33 +020044
aPiecekbf968d92021-05-27 14:35:05 +020045static LY_ERR reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth);
Michal Vasko40308e72020-10-20 16:38:40 +020046static LY_ERR eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype,
47 struct lyxp_set *set, uint32_t options);
Michal Vasko93923692021-05-07 15:28:02 +020048static LY_ERR moveto_resolve_model(const char **qname, uint16_t *qname_len, const struct lyxp_set *set,
49 const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod);
Michal Vasko03ff5a72019-09-11 13:49:33 +020050
aPiecek96dc1e32021-10-08 15:45:59 +020051/* Functions are divided into the following basic classes:
52 *
53 * (re)parse functions:
54 * Parse functions parse the expression into
55 * tokens (syntactic analysis).
56 * Reparse functions perform semantic analysis
57 * (do not save the result, just a check) of
58 * the expression and fill repeat indices.
59 *
60 * warn functions:
61 * Warn functions check specific reasonable conditions for schema XPath
62 * and print a warning if they are not satisfied.
63 *
64 * moveto functions:
65 * They and only they actually change the context (set).
66 *
67 * eval functions:
68 * They execute a parsed XPath expression on some data subtree.
69 */
70
Michal Vasko03ff5a72019-09-11 13:49:33 +020071/**
72 * @brief Print the type of an XPath \p set.
73 *
74 * @param[in] set Set to use.
75 * @return Set type string.
76 */
77static const char *
78print_set_type(struct lyxp_set *set)
79{
80 switch (set->type) {
Michal Vasko03ff5a72019-09-11 13:49:33 +020081 case LYXP_SET_NODE_SET:
82 return "node set";
83 case LYXP_SET_SCNODE_SET:
84 return "schema node set";
85 case LYXP_SET_BOOLEAN:
86 return "boolean";
87 case LYXP_SET_NUMBER:
88 return "number";
89 case LYXP_SET_STRING:
90 return "string";
91 }
92
93 return NULL;
94}
95
Michal Vasko24cddf82020-06-01 08:17:01 +020096const char *
97lyxp_print_token(enum lyxp_token tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +020098{
99 switch (tok) {
100 case LYXP_TOKEN_PAR1:
101 return "(";
102 case LYXP_TOKEN_PAR2:
103 return ")";
104 case LYXP_TOKEN_BRACK1:
105 return "[";
106 case LYXP_TOKEN_BRACK2:
107 return "]";
108 case LYXP_TOKEN_DOT:
109 return ".";
110 case LYXP_TOKEN_DDOT:
111 return "..";
112 case LYXP_TOKEN_AT:
113 return "@";
114 case LYXP_TOKEN_COMMA:
115 return ",";
116 case LYXP_TOKEN_NAMETEST:
117 return "NameTest";
118 case LYXP_TOKEN_NODETYPE:
119 return "NodeType";
aPiecekfba75362021-10-07 12:39:48 +0200120 case LYXP_TOKEN_VARREF:
121 return "VariableReference";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200122 case LYXP_TOKEN_FUNCNAME:
123 return "FunctionName";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200124 case LYXP_TOKEN_OPER_LOG:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200125 return "Operator(Logic)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200126 case LYXP_TOKEN_OPER_EQUAL:
127 return "Operator(Equal)";
128 case LYXP_TOKEN_OPER_NEQUAL:
129 return "Operator(Non-equal)";
130 case LYXP_TOKEN_OPER_COMP:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200131 return "Operator(Comparison)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200132 case LYXP_TOKEN_OPER_MATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200133 return "Operator(Math)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200134 case LYXP_TOKEN_OPER_UNI:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200135 return "Operator(Union)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200136 case LYXP_TOKEN_OPER_PATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +0200137 return "Operator(Path)";
Michal Vasko3e48bf32020-06-01 08:39:07 +0200138 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko14676352020-05-29 11:35:55 +0200139 return "Operator(Recursive Path)";
Michal Vasko03ff5a72019-09-11 13:49:33 +0200140 case LYXP_TOKEN_LITERAL:
141 return "Literal";
142 case LYXP_TOKEN_NUMBER:
143 return "Number";
144 default:
145 LOGINT(NULL);
146 return "";
147 }
148}
149
150/**
151 * @brief Print the whole expression \p exp to debug output.
152 *
153 * @param[in] exp Expression to use.
154 */
155static void
Michal Vasko40308e72020-10-20 16:38:40 +0200156print_expr_struct_debug(const struct lyxp_expr *exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200157{
Radek Krejcif13b87b2020-12-01 22:02:17 +0100158#define MSG_BUFFER_SIZE 128
159 char tmp[MSG_BUFFER_SIZE];
Michal Vasko1fdd8fa2021-01-08 09:21:45 +0100160 uint32_t i, j;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200161
Radek Krejci52b6d512020-10-12 12:33:17 +0200162 if (!exp || (ly_ll < LY_LLDBG)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200163 return;
164 }
165
166 LOGDBG(LY_LDGXPATH, "expression \"%s\":", exp->expr);
167 for (i = 0; i < exp->used; ++i) {
Michal Vasko24cddf82020-06-01 08:17:01 +0200168 sprintf(tmp, "\ttoken %s, in expression \"%.*s\"", lyxp_print_token(exp->tokens[i]), exp->tok_len[i],
Michal Vasko69730152020-10-09 16:30:07 +0200169 &exp->expr[exp->tok_pos[i]]);
Michal Vasko23049552021-03-04 15:57:44 +0100170 if (exp->repeat && exp->repeat[i]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200171 sprintf(tmp + strlen(tmp), " (repeat %d", exp->repeat[i][0]);
172 for (j = 1; exp->repeat[i][j]; ++j) {
173 sprintf(tmp + strlen(tmp), ", %d", exp->repeat[i][j]);
174 }
175 strcat(tmp, ")");
176 }
177 LOGDBG(LY_LDGXPATH, tmp);
178 }
Radek Krejcif13b87b2020-12-01 22:02:17 +0100179#undef MSG_BUFFER_SIZE
Michal Vasko03ff5a72019-09-11 13:49:33 +0200180}
181
182#ifndef NDEBUG
183
184/**
185 * @brief Print XPath set content to debug output.
186 *
187 * @param[in] set Set to print.
188 */
189static void
190print_set_debug(struct lyxp_set *set)
191{
192 uint32_t i;
193 char *str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200194 struct lyxp_set_node *item;
195 struct lyxp_set_scnode *sitem;
196
Radek Krejci52b6d512020-10-12 12:33:17 +0200197 if (ly_ll < LY_LLDBG) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200198 return;
199 }
200
201 switch (set->type) {
202 case LYXP_SET_NODE_SET:
203 LOGDBG(LY_LDGXPATH, "set NODE SET:");
204 for (i = 0; i < set->used; ++i) {
205 item = &set->val.nodes[i];
206
207 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100208 case LYXP_NODE_NONE:
209 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): NONE", i + 1, item->pos);
210 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200211 case LYXP_NODE_ROOT:
212 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT", i + 1, item->pos);
213 break;
214 case LYXP_NODE_ROOT_CONFIG:
215 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT CONFIG", i + 1, item->pos);
216 break;
217 case LYXP_NODE_ELEM:
Michal Vasko9e685082021-01-29 14:49:09 +0100218 if ((item->node->schema->nodetype == LYS_LIST) && (lyd_child(item->node)->schema->nodetype == LYS_LEAF)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200219 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos,
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200220 item->node->schema->name, lyd_get_value(lyd_child(item->node)));
Michal Vasko9e685082021-01-29 14:49:09 +0100221 } else if (item->node->schema->nodetype == LYS_LEAFLIST) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200222 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (val: %s)", i + 1, item->pos,
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200223 item->node->schema->name, lyd_get_value(item->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200224 } else {
225 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s", i + 1, item->pos, item->node->schema->name);
226 }
227 break;
228 case LYXP_NODE_TEXT:
229 if (item->node->schema->nodetype & LYS_ANYDATA) {
230 LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT <%s>", i + 1, item->pos,
Michal Vasko69730152020-10-09 16:30:07 +0200231 item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata");
Michal Vasko03ff5a72019-09-11 13:49:33 +0200232 } else {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200233 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 +0200234 }
235 break;
Michal Vasko9f96a052020-03-10 09:41:45 +0100236 case LYXP_NODE_META:
237 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 +0200238 set->val.meta[i].meta->value);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200239 break;
240 }
241 }
242 break;
243
244 case LYXP_SET_SCNODE_SET:
245 LOGDBG(LY_LDGXPATH, "set SCNODE SET:");
246 for (i = 0; i < set->used; ++i) {
247 sitem = &set->val.scnodes[i];
248
249 switch (sitem->type) {
250 case LYXP_NODE_ROOT:
251 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT", i + 1, sitem->in_ctx);
252 break;
253 case LYXP_NODE_ROOT_CONFIG:
254 LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT CONFIG", i + 1, sitem->in_ctx);
255 break;
256 case LYXP_NODE_ELEM:
257 LOGDBG(LY_LDGXPATH, "\t%d (%u): ELEM %s", i + 1, sitem->in_ctx, sitem->scnode->name);
258 break;
259 default:
260 LOGINT(NULL);
261 break;
262 }
263 }
264 break;
265
Michal Vasko03ff5a72019-09-11 13:49:33 +0200266 case LYXP_SET_BOOLEAN:
267 LOGDBG(LY_LDGXPATH, "set BOOLEAN");
Michal Vasko004d3152020-06-11 19:59:22 +0200268 LOGDBG(LY_LDGXPATH, "\t%s", (set->val.bln ? "true" : "false"));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200269 break;
270
271 case LYXP_SET_STRING:
272 LOGDBG(LY_LDGXPATH, "set STRING");
273 LOGDBG(LY_LDGXPATH, "\t%s", set->val.str);
274 break;
275
276 case LYXP_SET_NUMBER:
277 LOGDBG(LY_LDGXPATH, "set NUMBER");
278
279 if (isnan(set->val.num)) {
280 str = strdup("NaN");
281 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
282 str = strdup("0");
283 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
284 str = strdup("Infinity");
285 } else if (isinf(set->val.num) && signbit(set->val.num)) {
286 str = strdup("-Infinity");
287 } else if ((long long)set->val.num == set->val.num) {
288 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
289 str = NULL;
290 }
291 } else {
292 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
293 str = NULL;
294 }
295 }
296 LY_CHECK_ERR_RET(!str, LOGMEM(NULL), );
297
298 LOGDBG(LY_LDGXPATH, "\t%s", str);
299 free(str);
300 }
301}
302
303#endif
304
305/**
306 * @brief Realloc the string \p str.
307 *
308 * @param[in] ctx libyang context for logging.
309 * @param[in] needed How much free space is required.
310 * @param[in,out] str Pointer to the string to use.
311 * @param[in,out] used Used bytes in \p str.
312 * @param[in,out] size Allocated bytes in \p str.
313 * @return LY_ERR
314 */
315static LY_ERR
Michal Vasko52927e22020-03-16 17:26:14 +0100316cast_string_realloc(const struct ly_ctx *ctx, uint16_t needed, char **str, uint16_t *used, uint16_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200317{
318 if (*size - *used < needed) {
319 do {
320 if ((UINT16_MAX - *size) < LYXP_STRING_CAST_SIZE_STEP) {
321 LOGERR(ctx, LY_EINVAL, "XPath string length limit (%u) reached.", UINT16_MAX);
322 return LY_EINVAL;
323 }
324 *size += LYXP_STRING_CAST_SIZE_STEP;
325 } while (*size - *used < needed);
326 *str = ly_realloc(*str, *size * sizeof(char));
327 LY_CHECK_ERR_RET(!(*str), LOGMEM(ctx), LY_EMEM);
328 }
329
330 return LY_SUCCESS;
331}
332
333/**
334 * @brief Cast nodes recursively to one string @p str.
335 *
336 * @param[in] node Node to cast.
337 * @param[in] fake_cont Whether to put the data into a "fake" container.
338 * @param[in] root_type Type of the XPath root.
339 * @param[in] indent Current indent.
340 * @param[in,out] str Resulting string.
341 * @param[in,out] used Used bytes in @p str.
342 * @param[in,out] size Allocated bytes in @p str.
343 * @return LY_ERR
344 */
345static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200346cast_string_recursive(const struct lyd_node *node, ly_bool fake_cont, enum lyxp_node_type root_type, uint16_t indent, char **str,
Radek Krejci0f969882020-08-21 16:56:47 +0200347 uint16_t *used, uint16_t *size)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200348{
Radek Krejci7f769d72020-07-11 23:13:56 +0200349 char *buf, *line, *ptr = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200350 const char *value_str;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200351 const struct lyd_node *child;
Michal Vasko60ea6352020-06-29 13:39:39 +0200352 struct lyd_node *tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200353 struct lyd_node_any *any;
354 LY_ERR rc;
355
356 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
357 return LY_SUCCESS;
358 }
359
360 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200361 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200362 LY_CHECK_RET(rc);
363 strcpy(*str + (*used - 1), "\n");
364 ++(*used);
365
366 ++indent;
367 }
368
369 switch (node->schema->nodetype) {
370 case LYS_CONTAINER:
371 case LYS_LIST:
372 case LYS_RPC:
373 case LYS_NOTIF:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200374 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200375 LY_CHECK_RET(rc);
376 strcpy(*str + (*used - 1), "\n");
377 ++(*used);
378
Radek Krejcia1c1e542020-09-29 16:06:52 +0200379 for (child = lyd_child(node); child; child = child->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200380 rc = cast_string_recursive(child, 0, root_type, indent + 1, str, used, size);
381 LY_CHECK_RET(rc);
382 }
383
384 break;
385
386 case LYS_LEAF:
387 case LYS_LEAFLIST:
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200388 value_str = lyd_get_value(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200389
390 /* print indent */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200391 LY_CHECK_RET(cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(value_str) + 1, str, used, size));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200392 memset(*str + (*used - 1), ' ', indent * 2);
393 *used += indent * 2;
394
395 /* print value */
396 if (*used == 1) {
397 sprintf(*str + (*used - 1), "%s", value_str);
398 *used += strlen(value_str);
399 } else {
400 sprintf(*str + (*used - 1), "%s\n", value_str);
401 *used += strlen(value_str) + 1;
402 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200403
404 break;
405
406 case LYS_ANYXML:
407 case LYS_ANYDATA:
408 any = (struct lyd_node_any *)node;
409 if (!(void *)any->value.tree) {
410 /* no content */
411 buf = strdup("");
Michal Vaskob7be7a82020-08-20 09:09:04 +0200412 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200413 } else {
Radek Krejci241f6b52020-05-21 18:13:49 +0200414 struct ly_out *out;
Radek Krejcia5bba312020-01-09 15:41:20 +0100415
Michal Vasko60ea6352020-06-29 13:39:39 +0200416 if (any->value_type == LYD_ANYDATA_LYB) {
417 /* try to parse it into a data tree */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200418 if (lyd_parse_data_mem((struct ly_ctx *)LYD_CTX(node), any->value.mem, LYD_LYB, LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &tree) == LY_SUCCESS) {
Michal Vasko60ea6352020-06-29 13:39:39 +0200419 /* successfully parsed */
420 free(any->value.mem);
421 any->value.tree = tree;
422 any->value_type = LYD_ANYDATA_DATATREE;
423 }
Radek Krejci7931b192020-06-25 17:05:03 +0200424 /* error is covered by the following switch where LYD_ANYDATA_LYB causes failure */
Michal Vasko60ea6352020-06-29 13:39:39 +0200425 }
426
Michal Vasko03ff5a72019-09-11 13:49:33 +0200427 switch (any->value_type) {
428 case LYD_ANYDATA_STRING:
429 case LYD_ANYDATA_XML:
430 case LYD_ANYDATA_JSON:
431 buf = strdup(any->value.json);
Michal Vaskob7be7a82020-08-20 09:09:04 +0200432 LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200433 break;
434 case LYD_ANYDATA_DATATREE:
Radek Krejci84ce7b12020-06-11 17:28:25 +0200435 LY_CHECK_RET(ly_out_new_memory(&buf, 0, &out));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200436 rc = lyd_print_all(out, any->value.tree, LYD_XML, 0);
Radek Krejci241f6b52020-05-21 18:13:49 +0200437 ly_out_free(out, NULL, 0);
Radek Krejcia5bba312020-01-09 15:41:20 +0100438 LY_CHECK_RET(rc < 0, -rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200439 break;
Michal Vasko60ea6352020-06-29 13:39:39 +0200440 case LYD_ANYDATA_LYB:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200441 LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot convert LYB anydata into string.");
Michal Vasko60ea6352020-06-29 13:39:39 +0200442 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200443 }
444 }
445
446 line = strtok_r(buf, "\n", &ptr);
447 do {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200448 rc = cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(line) + 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200449 if (rc != LY_SUCCESS) {
450 free(buf);
451 return rc;
452 }
453 memset(*str + (*used - 1), ' ', indent * 2);
454 *used += indent * 2;
455
456 strcpy(*str + (*used - 1), line);
457 *used += strlen(line);
458
459 strcpy(*str + (*used - 1), "\n");
460 *used += 1;
461 } while ((line = strtok_r(NULL, "\n", &ptr)));
462
463 free(buf);
464 break;
465
466 default:
Michal Vaskob7be7a82020-08-20 09:09:04 +0200467 LOGINT_RET(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +0200468 }
469
470 if (fake_cont) {
Michal Vaskob7be7a82020-08-20 09:09:04 +0200471 rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200472 LY_CHECK_RET(rc);
473 strcpy(*str + (*used - 1), "\n");
474 ++(*used);
475
476 --indent;
477 }
478
479 return LY_SUCCESS;
480}
481
482/**
483 * @brief Cast an element into a string.
484 *
485 * @param[in] node Node to cast.
486 * @param[in] fake_cont Whether to put the data into a "fake" container.
487 * @param[in] root_type Type of the XPath root.
488 * @param[out] str Element cast to dynamically-allocated string.
489 * @return LY_ERR
490 */
491static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200492cast_string_elem(struct lyd_node *node, ly_bool fake_cont, enum lyxp_node_type root_type, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200493{
494 uint16_t used, size;
495 LY_ERR rc;
496
497 *str = malloc(LYXP_STRING_CAST_SIZE_START * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200498 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200499 (*str)[0] = '\0';
500 used = 1;
501 size = LYXP_STRING_CAST_SIZE_START;
502
503 rc = cast_string_recursive(node, fake_cont, root_type, 0, str, &used, &size);
504 if (rc != LY_SUCCESS) {
505 free(*str);
506 return rc;
507 }
508
509 if (size > used) {
510 *str = ly_realloc(*str, used * sizeof(char));
Michal Vaskob7be7a82020-08-20 09:09:04 +0200511 LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200512 }
513 return LY_SUCCESS;
514}
515
516/**
517 * @brief Cast a LYXP_SET_NODE_SET set into a string.
518 * Context position aware.
519 *
520 * @param[in] set Set to cast.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200521 * @param[out] str Cast dynamically-allocated string.
522 * @return LY_ERR
523 */
524static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100525cast_node_set_to_string(struct lyxp_set *set, char **str)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200526{
Michal Vaskoaa677062021-03-09 13:52:53 +0100527 if (!set->used) {
528 *str = strdup("");
529 if (!*str) {
530 LOGMEM_RET(set->ctx);
531 }
532 return LY_SUCCESS;
533 }
534
Michal Vasko03ff5a72019-09-11 13:49:33 +0200535 switch (set->val.nodes[0].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +0100536 case LYXP_NODE_NONE:
537 /* invalid */
538 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200539 case LYXP_NODE_ROOT:
540 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100541 return cast_string_elem(set->val.nodes[0].node, 1, set->root_type, str);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200542 case LYXP_NODE_ELEM:
543 case LYXP_NODE_TEXT:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100544 return cast_string_elem(set->val.nodes[0].node, 0, set->root_type, str);
Michal Vasko9f96a052020-03-10 09:41:45 +0100545 case LYXP_NODE_META:
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200546 *str = strdup(lyd_get_meta_value(set->val.meta[0].meta));
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200547 if (!*str) {
548 LOGMEM_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200549 }
550 return LY_SUCCESS;
551 }
552
553 LOGINT_RET(set->ctx);
554}
555
556/**
557 * @brief Cast a string into an XPath number.
558 *
559 * @param[in] str String to use.
560 * @return Cast number.
561 */
562static long double
563cast_string_to_number(const char *str)
564{
565 long double num;
566 char *ptr;
567
568 errno = 0;
569 num = strtold(str, &ptr);
570 if (errno || *ptr) {
571 num = NAN;
572 }
573 return num;
574}
575
576/**
577 * @brief Callback for checking value equality.
578 *
Michal Vasko62524a92021-02-26 10:08:50 +0100579 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200580 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200581 * @param[in] val1_p First value.
582 * @param[in] val2_p Second value.
583 * @param[in] mod Whether hash table is being modified.
584 * @param[in] cb_data Callback data.
Radek Krejci857189e2020-09-01 13:26:36 +0200585 * @return Boolean value whether values are equal or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200586 */
Radek Krejci857189e2020-09-01 13:26:36 +0200587static ly_bool
588set_values_equal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Michal Vasko03ff5a72019-09-11 13:49:33 +0200589{
590 struct lyxp_set_hash_node *val1, *val2;
591
592 val1 = (struct lyxp_set_hash_node *)val1_p;
593 val2 = (struct lyxp_set_hash_node *)val2_p;
594
595 if ((val1->node == val2->node) && (val1->type == val2->type)) {
596 return 1;
597 }
598
599 return 0;
600}
601
602/**
603 * @brief Insert node and its hash into set.
604 *
605 * @param[in] set et to insert to.
606 * @param[in] node Node with hash.
607 * @param[in] type Node type.
608 */
609static void
610set_insert_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
611{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200612 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200613 uint32_t i, hash;
614 struct lyxp_set_hash_node hnode;
615
616 if (!set->ht && (set->used >= LYD_HT_MIN_ITEMS)) {
617 /* create hash table and add all the nodes */
618 set->ht = lyht_new(1, sizeof(struct lyxp_set_hash_node), set_values_equal_cb, NULL, 1);
619 for (i = 0; i < set->used; ++i) {
620 hnode.node = set->val.nodes[i].node;
621 hnode.type = set->val.nodes[i].type;
622
623 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
624 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
625 hash = dict_hash_multi(hash, NULL, 0);
626
627 r = lyht_insert(set->ht, &hnode, hash, NULL);
628 assert(!r);
629 (void)r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200630
Michal Vasko9d6befd2019-12-11 14:56:56 +0100631 if (hnode.node == node) {
632 /* it was just added, do not add it twice */
633 node = NULL;
634 }
635 }
636 }
637
638 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200639 /* add the new node into hash table */
640 hnode.node = node;
641 hnode.type = type;
642
643 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
644 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
645 hash = dict_hash_multi(hash, NULL, 0);
646
647 r = lyht_insert(set->ht, &hnode, hash, NULL);
648 assert(!r);
649 (void)r;
650 }
651}
652
653/**
654 * @brief Remove node and its hash from set.
655 *
656 * @param[in] set Set to remove from.
657 * @param[in] node Node to remove.
658 * @param[in] type Node type.
659 */
660static void
661set_remove_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type)
662{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200663 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200664 struct lyxp_set_hash_node hnode;
665 uint32_t hash;
666
667 if (set->ht) {
668 hnode.node = node;
669 hnode.type = type;
670
671 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
672 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
673 hash = dict_hash_multi(hash, NULL, 0);
674
675 r = lyht_remove(set->ht, &hnode, hash);
676 assert(!r);
677 (void)r;
678
679 if (!set->ht->used) {
680 lyht_free(set->ht);
681 set->ht = NULL;
682 }
683 }
684}
685
686/**
687 * @brief Check whether node is in set based on its hash.
688 *
689 * @param[in] set Set to search in.
690 * @param[in] node Node to search for.
691 * @param[in] type Node type.
692 * @param[in] skip_idx Index in @p set to skip.
693 * @return LY_ERR
694 */
695static LY_ERR
696set_dup_node_hash_check(const struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type, int skip_idx)
697{
698 struct lyxp_set_hash_node hnode, *match_p;
699 uint32_t hash;
700
701 hnode.node = node;
702 hnode.type = type;
703
704 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
705 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
706 hash = dict_hash_multi(hash, NULL, 0);
707
708 if (!lyht_find(set->ht, &hnode, hash, (void **)&match_p)) {
709 if ((skip_idx > -1) && (set->val.nodes[skip_idx].node == match_p->node) && (set->val.nodes[skip_idx].type == match_p->type)) {
710 /* we found it on the index that should be skipped, find another */
711 hnode = *match_p;
712 if (lyht_find_next(set->ht, &hnode, hash, (void **)&match_p)) {
713 /* none other found */
714 return LY_SUCCESS;
715 }
716 }
717
718 return LY_EEXIST;
719 }
720
721 /* not found */
722 return LY_SUCCESS;
723}
724
Michal Vaskod3678892020-05-21 10:06:58 +0200725void
726lyxp_set_free_content(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200727{
728 if (!set) {
729 return;
730 }
731
732 if (set->type == LYXP_SET_NODE_SET) {
733 free(set->val.nodes);
734 lyht_free(set->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200735 } else if (set->type == LYXP_SET_SCNODE_SET) {
736 free(set->val.scnodes);
Michal Vaskod3678892020-05-21 10:06:58 +0200737 lyht_free(set->ht);
738 } else {
739 if (set->type == LYXP_SET_STRING) {
740 free(set->val.str);
741 }
742 set->type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200743 }
Michal Vaskod3678892020-05-21 10:06:58 +0200744
745 set->val.nodes = NULL;
746 set->used = 0;
747 set->size = 0;
748 set->ht = NULL;
749 set->ctx_pos = 0;
aPiecek748da732021-06-01 09:56:43 +0200750 set->ctx_size = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200751}
752
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100753/**
754 * @brief Free dynamically-allocated set.
755 *
756 * @param[in] set Set to free.
757 */
758static void
Michal Vasko03ff5a72019-09-11 13:49:33 +0200759lyxp_set_free(struct lyxp_set *set)
760{
761 if (!set) {
762 return;
763 }
764
Michal Vaskod3678892020-05-21 10:06:58 +0200765 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200766 free(set);
767}
768
769/**
770 * @brief Initialize set context.
771 *
772 * @param[in] new Set to initialize.
773 * @param[in] set Arbitrary initialized set.
774 */
775static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200776set_init(struct lyxp_set *new, const struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200777{
778 memset(new, 0, sizeof *new);
Michal Vasko02a77382019-09-12 11:47:35 +0200779 if (set) {
780 new->ctx = set->ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200781 new->cur_node = set->cur_node;
Michal Vasko588112f2019-12-10 14:51:53 +0100782 new->root_type = set->root_type;
Michal Vasko6b26e742020-07-17 15:02:10 +0200783 new->context_op = set->context_op;
Michal Vaskof03ed032020-03-04 13:31:44 +0100784 new->tree = set->tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200785 new->cur_mod = set->cur_mod;
Michal Vasko02a77382019-09-12 11:47:35 +0200786 new->format = set->format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200787 new->prefix_data = set->prefix_data;
aPiecekfba75362021-10-07 12:39:48 +0200788 new->vars = set->vars;
Michal Vasko02a77382019-09-12 11:47:35 +0200789 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200790}
791
792/**
793 * @brief Create a deep copy of a set.
794 *
795 * @param[in] set Set to copy.
796 * @return Copy of @p set.
797 */
798static struct lyxp_set *
799set_copy(struct lyxp_set *set)
800{
801 struct lyxp_set *ret;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +0100802 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200803
804 if (!set) {
805 return NULL;
806 }
807
808 ret = malloc(sizeof *ret);
809 LY_CHECK_ERR_RET(!ret, LOGMEM(set->ctx), NULL);
810 set_init(ret, set);
811
812 if (set->type == LYXP_SET_SCNODE_SET) {
813 ret->type = set->type;
814
815 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100816 if ((set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) ||
817 (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200818 uint32_t idx;
819 LY_CHECK_ERR_RET(lyxp_set_scnode_insert_node(ret, set->val.scnodes[i].scnode, set->val.scnodes[i].type, &idx),
820 lyxp_set_free(ret), NULL);
Michal Vasko3f27c522020-01-06 08:37:49 +0100821 /* coverity seems to think scnodes can be NULL */
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200822 if (!ret->val.scnodes) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200823 lyxp_set_free(ret);
824 return NULL;
825 }
Michal Vaskoba716542019-12-16 10:01:58 +0100826 ret->val.scnodes[idx].in_ctx = set->val.scnodes[i].in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200827 }
828 }
829 } else if (set->type == LYXP_SET_NODE_SET) {
830 ret->type = set->type;
Michal Vasko08e9b112021-06-11 15:41:17 +0200831 if (set->used) {
832 ret->val.nodes = malloc(set->used * sizeof *ret->val.nodes);
833 LY_CHECK_ERR_RET(!ret->val.nodes, LOGMEM(set->ctx); free(ret), NULL);
834 memcpy(ret->val.nodes, set->val.nodes, set->used * sizeof *ret->val.nodes);
835 } else {
836 ret->val.nodes = NULL;
837 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200838
839 ret->used = ret->size = set->used;
840 ret->ctx_pos = set->ctx_pos;
841 ret->ctx_size = set->ctx_size;
Michal Vasko4a04e542021-02-01 08:58:30 +0100842 if (set->ht) {
843 ret->ht = lyht_dup(set->ht);
844 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200845 } else {
Radek Krejci0f969882020-08-21 16:56:47 +0200846 memcpy(ret, set, sizeof *ret);
847 if (set->type == LYXP_SET_STRING) {
848 ret->val.str = strdup(set->val.str);
849 LY_CHECK_ERR_RET(!ret->val.str, LOGMEM(set->ctx); free(ret), NULL);
850 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200851 }
852
853 return ret;
854}
855
856/**
857 * @brief Fill XPath set with a string. Any current data are disposed of.
858 *
859 * @param[in] set Set to fill.
860 * @param[in] string String to fill into \p set.
861 * @param[in] str_len Length of \p string. 0 is a valid value!
862 */
863static void
864set_fill_string(struct lyxp_set *set, const char *string, uint16_t str_len)
865{
Michal Vaskod3678892020-05-21 10:06:58 +0200866 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200867
868 set->type = LYXP_SET_STRING;
869 if ((str_len == 0) && (string[0] != '\0')) {
870 string = "";
871 }
872 set->val.str = strndup(string, str_len);
873}
874
875/**
876 * @brief Fill XPath set with a number. Any current data are disposed of.
877 *
878 * @param[in] set Set to fill.
879 * @param[in] number Number to fill into \p set.
880 */
881static void
882set_fill_number(struct lyxp_set *set, long double number)
883{
Michal Vaskod3678892020-05-21 10:06:58 +0200884 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200885
886 set->type = LYXP_SET_NUMBER;
887 set->val.num = number;
888}
889
890/**
891 * @brief Fill XPath set with a boolean. Any current data are disposed of.
892 *
893 * @param[in] set Set to fill.
894 * @param[in] boolean Boolean to fill into \p set.
895 */
896static void
Radek Krejci857189e2020-09-01 13:26:36 +0200897set_fill_boolean(struct lyxp_set *set, ly_bool boolean)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200898{
Michal Vaskod3678892020-05-21 10:06:58 +0200899 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200900
901 set->type = LYXP_SET_BOOLEAN;
Michal Vasko004d3152020-06-11 19:59:22 +0200902 set->val.bln = boolean;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200903}
904
905/**
906 * @brief Fill XPath set with the value from another set (deep assign).
907 * Any current data are disposed of.
908 *
909 * @param[in] trg Set to fill.
910 * @param[in] src Source set to copy into \p trg.
911 */
912static void
Michal Vasko4c7763f2020-07-27 17:40:37 +0200913set_fill_set(struct lyxp_set *trg, const struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200914{
915 if (!trg || !src) {
916 return;
917 }
918
919 if (trg->type == LYXP_SET_NODE_SET) {
920 free(trg->val.nodes);
921 } else if (trg->type == LYXP_SET_STRING) {
922 free(trg->val.str);
923 }
924 set_init(trg, src);
925
926 if (src->type == LYXP_SET_SCNODE_SET) {
927 trg->type = LYXP_SET_SCNODE_SET;
928 trg->used = src->used;
929 trg->size = src->used;
930
Michal Vasko08e9b112021-06-11 15:41:17 +0200931 if (trg->size) {
932 trg->val.scnodes = ly_realloc(trg->val.scnodes, trg->size * sizeof *trg->val.scnodes);
933 LY_CHECK_ERR_RET(!trg->val.scnodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
934 memcpy(trg->val.scnodes, src->val.scnodes, src->used * sizeof *src->val.scnodes);
935 } else {
936 trg->val.scnodes = NULL;
937 }
Michal Vasko03ff5a72019-09-11 13:49:33 +0200938 } else if (src->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +0200939 set_fill_boolean(trg, src->val.bln);
Michal Vasko44f3d2c2020-08-24 09:49:38 +0200940 } else if (src->type == LYXP_SET_NUMBER) {
Michal Vasko03ff5a72019-09-11 13:49:33 +0200941 set_fill_number(trg, src->val.num);
942 } else if (src->type == LYXP_SET_STRING) {
943 set_fill_string(trg, src->val.str, strlen(src->val.str));
944 } else {
945 if (trg->type == LYXP_SET_NODE_SET) {
946 free(trg->val.nodes);
947 } else if (trg->type == LYXP_SET_STRING) {
948 free(trg->val.str);
949 }
950
Michal Vaskod3678892020-05-21 10:06:58 +0200951 assert(src->type == LYXP_SET_NODE_SET);
952
953 trg->type = LYXP_SET_NODE_SET;
954 trg->used = src->used;
955 trg->size = src->used;
956 trg->ctx_pos = src->ctx_pos;
957 trg->ctx_size = src->ctx_size;
958
Michal Vasko08e9b112021-06-11 15:41:17 +0200959 if (trg->size) {
960 trg->val.nodes = malloc(trg->size * sizeof *trg->val.nodes);
961 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), );
962 memcpy(trg->val.nodes, src->val.nodes, src->used * sizeof *src->val.nodes);
963 } else {
964 trg->val.nodes = NULL;
965 }
Michal Vaskod3678892020-05-21 10:06:58 +0200966 if (src->ht) {
967 trg->ht = lyht_dup(src->ht);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200968 } else {
Michal Vaskod3678892020-05-21 10:06:58 +0200969 trg->ht = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200970 }
971 }
972}
973
974/**
975 * @brief Clear context of all schema nodes.
976 *
977 * @param[in] set Set to clear.
Michal Vasko1a09b212021-05-06 13:00:10 +0200978 * @param[in] new_ctx New context state for all the nodes currently in the context.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200979 */
980static void
Michal Vasko1a09b212021-05-06 13:00:10 +0200981set_scnode_clear_ctx(struct lyxp_set *set, int32_t new_ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200982{
983 uint32_t i;
984
985 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +0100986 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a09b212021-05-06 13:00:10 +0200987 set->val.scnodes[i].in_ctx = new_ctx;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100988 } else if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START) {
989 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200990 }
991 }
992}
993
994/**
995 * @brief Remove a node from a set. Removing last node changes
996 * set into LYXP_SET_EMPTY. Context position aware.
997 *
998 * @param[in] set Set to use.
999 * @param[in] idx Index from @p set of the node to be removed.
1000 */
1001static void
1002set_remove_node(struct lyxp_set *set, uint32_t idx)
1003{
1004 assert(set && (set->type == LYXP_SET_NODE_SET));
1005 assert(idx < set->used);
1006
1007 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1008
1009 --set->used;
Michal Vasko08e9b112021-06-11 15:41:17 +02001010 if (idx < set->used) {
1011 memmove(&set->val.nodes[idx], &set->val.nodes[idx + 1], (set->used - idx) * sizeof *set->val.nodes);
1012 } else if (!set->used) {
Michal Vaskod3678892020-05-21 10:06:58 +02001013 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001014 }
1015}
1016
1017/**
Michal Vasko2caefc12019-11-14 16:07:56 +01001018 * @brief Remove a node from a set by setting its type to LYXP_NODE_NONE.
Michal Vasko57eab132019-09-24 11:46:26 +02001019 *
1020 * @param[in] set Set to use.
1021 * @param[in] idx Index from @p set of the node to be removed.
1022 */
1023static void
Michal Vasko2caefc12019-11-14 16:07:56 +01001024set_remove_node_none(struct lyxp_set *set, uint32_t idx)
Michal Vasko57eab132019-09-24 11:46:26 +02001025{
1026 assert(set && (set->type == LYXP_SET_NODE_SET));
1027 assert(idx < set->used);
1028
Michal Vasko2caefc12019-11-14 16:07:56 +01001029 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1030 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1031 }
1032 set->val.nodes[idx].type = LYXP_NODE_NONE;
Michal Vasko57eab132019-09-24 11:46:26 +02001033}
1034
1035/**
Michal Vasko2caefc12019-11-14 16:07:56 +01001036 * @brief Remove all LYXP_NODE_NONE nodes from a set. Removing last node changes
Michal Vasko57eab132019-09-24 11:46:26 +02001037 * set into LYXP_SET_EMPTY. Context position aware.
1038 *
1039 * @param[in] set Set to consolidate.
1040 */
1041static void
Michal Vasko2caefc12019-11-14 16:07:56 +01001042set_remove_nodes_none(struct lyxp_set *set)
Michal Vasko57eab132019-09-24 11:46:26 +02001043{
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01001044 uint32_t i, orig_used, end = 0;
1045 int64_t start;
Michal Vasko57eab132019-09-24 11:46:26 +02001046
Michal Vaskod3678892020-05-21 10:06:58 +02001047 assert(set);
Michal Vasko57eab132019-09-24 11:46:26 +02001048
1049 orig_used = set->used;
1050 set->used = 0;
Michal Vaskod989ba02020-08-24 10:59:24 +02001051 for (i = 0; i < orig_used; ) {
Michal Vasko57eab132019-09-24 11:46:26 +02001052 start = -1;
1053 do {
Michal Vasko2caefc12019-11-14 16:07:56 +01001054 if ((set->val.nodes[i].type != LYXP_NODE_NONE) && (start == -1)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001055 start = i;
Michal Vasko2caefc12019-11-14 16:07:56 +01001056 } else if ((start > -1) && (set->val.nodes[i].type == LYXP_NODE_NONE)) {
Michal Vasko57eab132019-09-24 11:46:26 +02001057 end = i;
1058 ++i;
1059 break;
1060 }
1061
1062 ++i;
1063 if (i == orig_used) {
1064 end = i;
1065 }
1066 } while (i < orig_used);
1067
1068 if (start > -1) {
1069 /* move the whole chunk of valid nodes together */
1070 if (set->used != (unsigned)start) {
1071 memmove(&set->val.nodes[set->used], &set->val.nodes[start], (end - start) * sizeof *set->val.nodes);
1072 }
1073 set->used += end - start;
1074 }
1075 }
Michal Vasko57eab132019-09-24 11:46:26 +02001076}
1077
1078/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02001079 * @brief Check for duplicates in a node set.
1080 *
1081 * @param[in] set Set to check.
1082 * @param[in] node Node to look for in @p set.
1083 * @param[in] node_type Type of @p node.
1084 * @param[in] skip_idx Index from @p set to skip.
1085 * @return LY_ERR
1086 */
1087static LY_ERR
1088set_dup_node_check(const struct lyxp_set *set, const struct lyd_node *node, enum lyxp_node_type node_type, int skip_idx)
1089{
1090 uint32_t i;
1091
Michal Vasko2caefc12019-11-14 16:07:56 +01001092 if (set->ht && node) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001093 return set_dup_node_hash_check(set, (struct lyd_node *)node, node_type, skip_idx);
1094 }
1095
1096 for (i = 0; i < set->used; ++i) {
1097 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1098 continue;
1099 }
1100
1101 if ((set->val.nodes[i].node == node) && (set->val.nodes[i].type == node_type)) {
1102 return LY_EEXIST;
1103 }
1104 }
1105
1106 return LY_SUCCESS;
1107}
1108
Radek Krejci857189e2020-09-01 13:26:36 +02001109ly_bool
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001110lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, int skip_idx,
1111 uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001112{
1113 uint32_t i;
1114
1115 for (i = 0; i < set->used; ++i) {
1116 if ((skip_idx > -1) && (i == (unsigned)skip_idx)) {
1117 continue;
1118 }
1119
1120 if ((set->val.scnodes[i].scnode == node) && (set->val.scnodes[i].type == node_type)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001121 if (index_p) {
1122 *index_p = i;
1123 }
1124 return 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001125 }
1126 }
1127
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001128 return 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001129}
1130
Michal Vaskoecd62de2019-11-13 12:35:11 +01001131void
1132lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001133{
1134 uint32_t orig_used, i, j;
1135
Michal Vaskod3678892020-05-21 10:06:58 +02001136 assert((set1->type == LYXP_SET_SCNODE_SET) && (set2->type == LYXP_SET_SCNODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001137
Michal Vaskod3678892020-05-21 10:06:58 +02001138 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001139 return;
1140 }
1141
Michal Vaskod3678892020-05-21 10:06:58 +02001142 if (!set1->used) {
aPiecekadc1e4f2021-10-07 11:15:12 +02001143 /* release hidden allocated data (lyxp_set.size) */
1144 lyxp_set_free_content(set1);
1145 /* direct copying of the entire structure */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001146 memcpy(set1, set2, sizeof *set1);
1147 return;
1148 }
1149
1150 if (set1->used + set2->used > set1->size) {
1151 set1->size = set1->used + set2->used;
1152 set1->val.scnodes = ly_realloc(set1->val.scnodes, set1->size * sizeof *set1->val.scnodes);
1153 LY_CHECK_ERR_RET(!set1->val.scnodes, LOGMEM(set1->ctx), );
1154 }
1155
1156 orig_used = set1->used;
1157
1158 for (i = 0; i < set2->used; ++i) {
1159 for (j = 0; j < orig_used; ++j) {
1160 /* detect duplicities */
1161 if (set1->val.scnodes[j].scnode == set2->val.scnodes[i].scnode) {
1162 break;
1163 }
1164 }
1165
Michal Vasko0587bce2020-12-10 12:19:21 +01001166 if (j < orig_used) {
1167 /* node is there, but update its status if needed */
1168 if (set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_START_USED) {
1169 set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx;
Michal Vasko1a09b212021-05-06 13:00:10 +02001170 } else if ((set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_ATOM_NODE) &&
1171 (set2->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL)) {
1172 set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx;
Michal Vasko0587bce2020-12-10 12:19:21 +01001173 }
1174 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001175 memcpy(&set1->val.scnodes[set1->used], &set2->val.scnodes[i], sizeof *set2->val.scnodes);
1176 ++set1->used;
1177 }
1178 }
1179
Michal Vaskod3678892020-05-21 10:06:58 +02001180 lyxp_set_free_content(set2);
1181 set2->type = LYXP_SET_SCNODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001182}
1183
1184/**
1185 * @brief Insert a node into a set. Context position aware.
1186 *
1187 * @param[in] set Set to use.
1188 * @param[in] node Node to insert to @p set.
1189 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1190 * @param[in] node_type Node type of @p node.
1191 * @param[in] idx Index in @p set to insert into.
1192 */
1193static void
1194set_insert_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1195{
Michal Vaskod3678892020-05-21 10:06:58 +02001196 assert(set && (set->type == LYXP_SET_NODE_SET));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001197
Michal Vaskod3678892020-05-21 10:06:58 +02001198 if (!set->size) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001199 /* first item */
1200 if (idx) {
1201 /* no real harm done, but it is a bug */
1202 LOGINT(set->ctx);
1203 idx = 0;
1204 }
1205 set->val.nodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.nodes);
1206 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1207 set->type = LYXP_SET_NODE_SET;
1208 set->used = 0;
1209 set->size = LYXP_SET_SIZE_START;
1210 set->ctx_pos = 1;
1211 set->ctx_size = 1;
1212 set->ht = NULL;
1213 } else {
1214 /* not an empty set */
1215 if (set->used == set->size) {
1216
1217 /* set is full */
1218 set->val.nodes = ly_realloc(set->val.nodes, (set->size + LYXP_SET_SIZE_STEP) * sizeof *set->val.nodes);
1219 LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), );
1220 set->size += LYXP_SET_SIZE_STEP;
1221 }
1222
1223 if (idx > set->used) {
1224 LOGINT(set->ctx);
1225 idx = set->used;
1226 }
1227
1228 /* make space for the new node */
1229 if (idx < set->used) {
1230 memmove(&set->val.nodes[idx + 1], &set->val.nodes[idx], (set->used - idx) * sizeof *set->val.nodes);
1231 }
1232 }
1233
1234 /* finally assign the value */
1235 set->val.nodes[idx].node = (struct lyd_node *)node;
1236 set->val.nodes[idx].type = node_type;
1237 set->val.nodes[idx].pos = pos;
1238 ++set->used;
1239
Michal Vasko2416fdd2021-10-01 11:07:10 +02001240 /* add into hash table */
1241 set_insert_node_hash(set, (struct lyd_node *)node, node_type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001242}
1243
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001244LY_ERR
1245lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, uint32_t *index_p)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001246{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001247 uint32_t index;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001248
1249 assert(set->type == LYXP_SET_SCNODE_SET);
1250
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001251 if (lyxp_set_scnode_contains(set, node, node_type, -1, &index)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001252 set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001253 } else {
1254 if (set->used == set->size) {
1255 set->val.scnodes = ly_realloc(set->val.scnodes, (set->size + LYXP_SET_SIZE_STEP) * sizeof *set->val.scnodes);
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001256 LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001257 set->size += LYXP_SET_SIZE_STEP;
1258 }
1259
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001260 index = set->used;
1261 set->val.scnodes[index].scnode = (struct lysc_node *)node;
1262 set->val.scnodes[index].type = node_type;
Radek Krejcif13b87b2020-12-01 22:02:17 +01001263 set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001264 ++set->used;
1265 }
1266
Radek Krejciaa6b53f2020-08-27 15:19:03 +02001267 if (index_p) {
1268 *index_p = index;
1269 }
1270
1271 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001272}
1273
1274/**
1275 * @brief Replace a node in a set with another. Context position aware.
1276 *
1277 * @param[in] set Set to use.
1278 * @param[in] node Node to insert to @p set.
1279 * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting.
1280 * @param[in] node_type Node type of @p node.
1281 * @param[in] idx Index in @p set of the node to replace.
1282 */
1283static void
1284set_replace_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx)
1285{
1286 assert(set && (idx < set->used));
1287
Michal Vasko2caefc12019-11-14 16:07:56 +01001288 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1289 set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1290 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001291 set->val.nodes[idx].node = (struct lyd_node *)node;
1292 set->val.nodes[idx].type = node_type;
1293 set->val.nodes[idx].pos = pos;
Michal Vasko2caefc12019-11-14 16:07:56 +01001294 if (set->val.nodes[idx].type == LYXP_NODE_ELEM) {
1295 set_insert_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type);
1296 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02001297}
1298
1299/**
1300 * @brief Set all nodes with ctx 1 to a new unique context value.
1301 *
1302 * @param[in] set Set to modify.
1303 * @return New context value.
1304 */
Michal Vasko5c4e5892019-11-14 12:31:38 +01001305static int32_t
Michal Vasko03ff5a72019-09-11 13:49:33 +02001306set_scnode_new_in_ctx(struct lyxp_set *set)
1307{
Michal Vasko5c4e5892019-11-14 12:31:38 +01001308 uint32_t i;
1309 int32_t ret_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001310
1311 assert(set->type == LYXP_SET_SCNODE_SET);
1312
Radek Krejcif13b87b2020-12-01 22:02:17 +01001313 ret_ctx = LYXP_SET_SCNODE_ATOM_PRED_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001314retry:
1315 for (i = 0; i < set->used; ++i) {
1316 if (set->val.scnodes[i].in_ctx >= ret_ctx) {
1317 ret_ctx = set->val.scnodes[i].in_ctx + 1;
1318 goto retry;
1319 }
1320 }
1321 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01001322 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001323 set->val.scnodes[i].in_ctx = ret_ctx;
1324 }
1325 }
1326
1327 return ret_ctx;
1328}
1329
1330/**
1331 * @brief Get unique @p node position in the data.
1332 *
1333 * @param[in] node Node to find.
1334 * @param[in] node_type Node type of @p node.
1335 * @param[in] root Root node.
1336 * @param[in] root_type Type of the XPath @p root node.
1337 * @param[in] prev Node that we think is before @p node in DFS from @p root. Can optionally
1338 * be used to increase efficiency and start the DFS from this node.
1339 * @param[in] prev_pos Node @p prev position. Optional, but must be set if @p prev is set.
1340 * @return Node position.
1341 */
1342static uint32_t
1343get_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 +02001344 enum lyxp_node_type root_type, const struct lyd_node **prev, uint32_t *prev_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001345{
Michal Vasko56daf732020-08-10 10:57:18 +02001346 const struct lyd_node *elem = NULL, *top_sibling;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001347 uint32_t pos = 1;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001348 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001349
1350 assert(prev && prev_pos && !root->prev->next);
1351
1352 if ((node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ROOT_CONFIG)) {
1353 return 0;
1354 }
1355
1356 if (*prev) {
1357 /* start from the previous element instead from the root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001358 pos = *prev_pos;
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001359 for (top_sibling = *prev; top_sibling->parent; top_sibling = lyd_parent(top_sibling)) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001360 goto dfs_search;
1361 }
1362
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001363 LY_LIST_FOR(root, top_sibling) {
Michal Vasko56daf732020-08-10 10:57:18 +02001364 LYD_TREE_DFS_BEGIN(top_sibling, elem) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001365dfs_search:
Michal Vaskoa9309bb2021-07-09 09:31:55 +02001366 LYD_TREE_DFS_continue = 0;
1367
Michal Vasko56daf732020-08-10 10:57:18 +02001368 if (*prev && !elem) {
1369 /* resume previous DFS */
1370 elem = LYD_TREE_DFS_next = (struct lyd_node *)*prev;
1371 LYD_TREE_DFS_continue = 0;
1372 }
1373
Michal Vasko03ff5a72019-09-11 13:49:33 +02001374 if ((root_type == LYXP_NODE_ROOT_CONFIG) && (elem->schema->flags & LYS_CONFIG_R)) {
Michal Vasko56daf732020-08-10 10:57:18 +02001375 /* skip */
1376 LYD_TREE_DFS_continue = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001377 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001378 if (elem == node) {
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001379 found = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001380 break;
1381 }
Michal Vasko56daf732020-08-10 10:57:18 +02001382 ++pos;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001383 }
Michal Vasko56daf732020-08-10 10:57:18 +02001384
1385 LYD_TREE_DFS_END(top_sibling, elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001386 }
1387
1388 /* node found */
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001389 if (found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001390 break;
1391 }
1392 }
1393
Michal Vaskofb6c9dd2020-11-18 18:18:47 +01001394 if (!found) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001395 if (!(*prev)) {
1396 /* we went from root and failed to find it, cannot be */
Michal Vaskob7be7a82020-08-20 09:09:04 +02001397 LOGINT(LYD_CTX(node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001398 return 0;
1399 } else {
Michal Vasko56daf732020-08-10 10:57:18 +02001400 /* start the search again from the beginning */
1401 *prev = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001402
Michal Vasko56daf732020-08-10 10:57:18 +02001403 top_sibling = root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001404 pos = 1;
1405 goto dfs_search;
1406 }
1407 }
1408
1409 /* remember the last found node for next time */
1410 *prev = node;
1411 *prev_pos = pos;
1412
1413 return pos;
1414}
1415
1416/**
1417 * @brief Assign (fill) missing node positions.
1418 *
1419 * @param[in] set Set to fill positions in.
1420 * @param[in] root Context root node.
1421 * @param[in] root_type Context root type.
1422 * @return LY_ERR
1423 */
1424static LY_ERR
1425set_assign_pos(struct lyxp_set *set, const struct lyd_node *root, enum lyxp_node_type root_type)
1426{
1427 const struct lyd_node *prev = NULL, *tmp_node;
1428 uint32_t i, tmp_pos = 0;
1429
1430 for (i = 0; i < set->used; ++i) {
1431 if (!set->val.nodes[i].pos) {
1432 tmp_node = NULL;
1433 switch (set->val.nodes[i].type) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001434 case LYXP_NODE_META:
1435 tmp_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001436 if (!tmp_node) {
1437 LOGINT_RET(root->schema->module->ctx);
1438 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01001439 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001440 case LYXP_NODE_ELEM:
1441 case LYXP_NODE_TEXT:
1442 if (!tmp_node) {
1443 tmp_node = set->val.nodes[i].node;
1444 }
1445 set->val.nodes[i].pos = get_node_pos(tmp_node, set->val.nodes[i].type, root, root_type, &prev, &tmp_pos);
1446 break;
1447 default:
1448 /* all roots have position 0 */
1449 break;
1450 }
1451 }
1452 }
1453
1454 return LY_SUCCESS;
1455}
1456
1457/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001458 * @brief Get unique @p meta position in the parent metadata.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001459 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001460 * @param[in] meta Metadata to use.
1461 * @return Metadata position.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001462 */
1463static uint16_t
Michal Vasko9f96a052020-03-10 09:41:45 +01001464get_meta_pos(struct lyd_meta *meta)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001465{
1466 uint16_t pos = 0;
Michal Vasko9f96a052020-03-10 09:41:45 +01001467 struct lyd_meta *meta2;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001468
Michal Vasko9f96a052020-03-10 09:41:45 +01001469 for (meta2 = meta->parent->meta; meta2 && (meta2 != meta); meta2 = meta2->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001470 ++pos;
1471 }
1472
Michal Vasko9f96a052020-03-10 09:41:45 +01001473 assert(meta2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001474 return pos;
1475}
1476
1477/**
1478 * @brief Compare 2 nodes in respect to XPath document order.
1479 *
1480 * @param[in] item1 1st node.
1481 * @param[in] item2 2nd node.
1482 * @return If 1st > 2nd returns 1, 1st == 2nd returns 0, and 1st < 2nd returns -1.
1483 */
1484static int
1485set_sort_compare(struct lyxp_set_node *item1, struct lyxp_set_node *item2)
1486{
Michal Vasko9f96a052020-03-10 09:41:45 +01001487 uint32_t meta_pos1 = 0, meta_pos2 = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001488
1489 if (item1->pos < item2->pos) {
1490 return -1;
1491 }
1492
1493 if (item1->pos > item2->pos) {
1494 return 1;
1495 }
1496
1497 /* node positions are equal, the fun case */
1498
1499 /* 1st ELEM - == - 2nd TEXT, 1st TEXT - == - 2nd ELEM */
1500 /* special case since text nodes are actually saved as their parents */
1501 if ((item1->node == item2->node) && (item1->type != item2->type)) {
1502 if (item1->type == LYXP_NODE_ELEM) {
1503 assert(item2->type == LYXP_NODE_TEXT);
1504 return -1;
1505 } else {
1506 assert((item1->type == LYXP_NODE_TEXT) && (item2->type == LYXP_NODE_ELEM));
1507 return 1;
1508 }
1509 }
1510
Michal Vasko9f96a052020-03-10 09:41:45 +01001511 /* we need meta positions now */
1512 if (item1->type == LYXP_NODE_META) {
1513 meta_pos1 = get_meta_pos((struct lyd_meta *)item1->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001514 }
Michal Vasko9f96a052020-03-10 09:41:45 +01001515 if (item2->type == LYXP_NODE_META) {
1516 meta_pos2 = get_meta_pos((struct lyd_meta *)item2->node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001517 }
1518
Michal Vasko9f96a052020-03-10 09:41:45 +01001519 /* 1st ROOT - 2nd ROOT, 1st ELEM - 2nd ELEM, 1st TEXT - 2nd TEXT, 1st META - =pos= - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001520 /* check for duplicates */
1521 if (item1->node == item2->node) {
Michal Vasko9f96a052020-03-10 09:41:45 +01001522 assert((item1->type == item2->type) && ((item1->type != LYXP_NODE_META) || (meta_pos1 == meta_pos2)));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001523 return 0;
1524 }
1525
Michal Vasko9f96a052020-03-10 09:41:45 +01001526 /* 1st ELEM - 2nd TEXT, 1st ELEM - any pos - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001527 /* elem is always first, 2nd node is after it */
1528 if (item1->type == LYXP_NODE_ELEM) {
1529 assert(item2->type != LYXP_NODE_ELEM);
1530 return -1;
1531 }
1532
Michal Vasko9f96a052020-03-10 09:41:45 +01001533 /* 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 +02001534 /* 2nd is before 1st */
Michal Vasko69730152020-10-09 16:30:07 +02001535 if (((item1->type == LYXP_NODE_TEXT) &&
1536 ((item2->type == LYXP_NODE_ELEM) || (item2->type == LYXP_NODE_META))) ||
1537 ((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_ELEM)) ||
1538 (((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_META)) &&
1539 (meta_pos1 > meta_pos2))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001540 return 1;
1541 }
1542
Michal Vasko9f96a052020-03-10 09:41:45 +01001543 /* 1st META - any pos - 2nd TEXT, 1st META <pos< - 2nd META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02001544 /* 2nd is after 1st */
1545 return -1;
1546}
1547
1548/**
1549 * @brief Set cast for comparisons.
1550 *
1551 * @param[in] trg Target set to cast source into.
1552 * @param[in] src Source set.
1553 * @param[in] type Target set type.
1554 * @param[in] src_idx Source set node index.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001555 * @return LY_ERR
1556 */
1557static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001558set_comp_cast(struct lyxp_set *trg, struct lyxp_set *src, enum lyxp_set_type type, uint32_t src_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001559{
1560 assert(src->type == LYXP_SET_NODE_SET);
1561
1562 set_init(trg, src);
1563
1564 /* insert node into target set */
1565 set_insert_node(trg, src->val.nodes[src_idx].node, src->val.nodes[src_idx].pos, src->val.nodes[src_idx].type, 0);
1566
1567 /* cast target set appropriately */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001568 return lyxp_set_cast(trg, type);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001569}
1570
Michal Vasko4c7763f2020-07-27 17:40:37 +02001571/**
1572 * @brief Set content canonization for comparisons.
1573 *
1574 * @param[in] trg Target set to put the canononized source into.
1575 * @param[in] src Source set.
1576 * @param[in] xp_node Source XPath node/meta to use for canonization.
1577 * @return LY_ERR
1578 */
1579static LY_ERR
1580set_comp_canonize(struct lyxp_set *trg, const struct lyxp_set *src, const struct lyxp_set_node *xp_node)
1581{
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001582 const struct lysc_type *type = NULL;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001583 struct lyd_value val;
1584 struct ly_err_item *err = NULL;
1585 char *str, *ptr;
Michal Vasko4c7763f2020-07-27 17:40:37 +02001586 LY_ERR rc;
1587
1588 /* is there anything to canonize even? */
1589 if ((src->type == LYXP_SET_NUMBER) || (src->type == LYXP_SET_STRING)) {
1590 /* do we have a type to use for canonization? */
1591 if ((xp_node->type == LYXP_NODE_ELEM) && (xp_node->node->schema->nodetype & LYD_NODE_TERM)) {
1592 type = ((struct lyd_node_term *)xp_node->node)->value.realtype;
1593 } else if (xp_node->type == LYXP_NODE_META) {
1594 type = ((struct lyd_meta *)xp_node->node)->value.realtype;
1595 }
1596 }
1597 if (!type) {
1598 goto fill;
1599 }
1600
1601 if (src->type == LYXP_SET_NUMBER) {
1602 /* canonize number */
1603 if (asprintf(&str, "%Lf", src->val.num) == -1) {
1604 LOGMEM(src->ctx);
1605 return LY_EMEM;
1606 }
1607 } else {
1608 /* canonize string */
1609 str = strdup(src->val.str);
1610 }
1611
1612 /* ignore errors, the value may not satisfy schema constraints */
Radek Krejci0b013302021-03-29 15:22:32 +02001613 rc = type->plugin->store(src->ctx, type, str, strlen(str), LYPLG_TYPE_STORE_DYNAMIC, src->format, src->prefix_data,
Michal Vasko405cc9e2020-12-01 12:01:27 +01001614 LYD_HINT_DATA, xp_node->node->schema, &val, NULL, &err);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001615 ly_err_free(err);
1616 if (rc) {
1617 /* invalid value */
Radek IÅ¡a48460222021-03-02 15:18:32 +01001618 /* function store automaticaly dealloc value when fail */
Michal Vasko4c7763f2020-07-27 17:40:37 +02001619 goto fill;
1620 }
1621
Michal Vasko4c7763f2020-07-27 17:40:37 +02001622 /* use the canonized value */
1623 set_init(trg, src);
1624 trg->type = src->type;
1625 if (src->type == LYXP_SET_NUMBER) {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001626 trg->val.num = strtold(type->plugin->print(src->ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL), &ptr);
Michal Vasko4c7763f2020-07-27 17:40:37 +02001627 LY_CHECK_ERR_RET(ptr[0], LOGINT(src->ctx), LY_EINT);
1628 } else {
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001629 trg->val.str = strdup(type->plugin->print(src->ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL));
Michal Vasko4c7763f2020-07-27 17:40:37 +02001630 }
1631 type->plugin->free(src->ctx, &val);
1632 return LY_SUCCESS;
1633
1634fill:
1635 /* no canonization needed/possible */
1636 set_fill_set(trg, src);
1637 return LY_SUCCESS;
1638}
1639
Michal Vasko03ff5a72019-09-11 13:49:33 +02001640#ifndef NDEBUG
1641
1642/**
1643 * @brief Bubble sort @p set into XPath document order.
1644 * Context position aware. Unused in the 'Release' build target.
1645 *
1646 * @param[in] set Set to sort.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001647 * @return How many times the whole set was traversed - 1 (if set was sorted, returns 0).
1648 */
1649static int
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001650set_sort(struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001651{
1652 uint32_t i, j;
Radek Krejci1deb5be2020-08-26 16:43:36 +02001653 int ret = 0, cmp;
Radek Krejci857189e2020-09-01 13:26:36 +02001654 ly_bool inverted, change;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001655 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001656 struct lyxp_set_node item;
1657 struct lyxp_set_hash_node hnode;
1658 uint64_t hash;
1659
Michal Vasko3cf8fbf2020-05-27 15:21:21 +02001660 if ((set->type != LYXP_SET_NODE_SET) || (set->used < 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001661 return 0;
1662 }
1663
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001664 /* find first top-level node to be used as anchor for positions */
Michal Vasko9e685082021-01-29 14:49:09 +01001665 for (root = set->cur_node; root->parent; root = lyd_parent(root)) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001666 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001667
1668 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001669 if (set_assign_pos(set, root, set->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001670 return -1;
1671 }
1672
1673 LOGDBG(LY_LDGXPATH, "SORT BEGIN");
1674 print_set_debug(set);
1675
1676 for (i = 0; i < set->used; ++i) {
1677 inverted = 0;
1678 change = 0;
1679
1680 for (j = 1; j < set->used - i; ++j) {
1681 /* compare node positions */
1682 if (inverted) {
1683 cmp = set_sort_compare(&set->val.nodes[j], &set->val.nodes[j - 1]);
1684 } else {
1685 cmp = set_sort_compare(&set->val.nodes[j - 1], &set->val.nodes[j]);
1686 }
1687
1688 /* swap if needed */
1689 if ((inverted && (cmp < 0)) || (!inverted && (cmp > 0))) {
1690 change = 1;
1691
1692 item = set->val.nodes[j - 1];
1693 set->val.nodes[j - 1] = set->val.nodes[j];
1694 set->val.nodes[j] = item;
1695 } else {
1696 /* whether node_pos1 should be smaller than node_pos2 or the other way around */
1697 inverted = !inverted;
1698 }
1699 }
1700
1701 ++ret;
1702
1703 if (!change) {
1704 break;
1705 }
1706 }
1707
1708 LOGDBG(LY_LDGXPATH, "SORT END %d", ret);
1709 print_set_debug(set);
1710
1711 /* check node hashes */
1712 if (set->used >= LYD_HT_MIN_ITEMS) {
1713 assert(set->ht);
1714 for (i = 0; i < set->used; ++i) {
1715 hnode.node = set->val.nodes[i].node;
1716 hnode.type = set->val.nodes[i].type;
1717
1718 hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node);
1719 hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type);
1720 hash = dict_hash_multi(hash, NULL, 0);
1721
1722 assert(!lyht_find(set->ht, &hnode, hash, NULL));
1723 }
1724 }
1725
1726 return ret - 1;
1727}
1728
1729/**
1730 * @brief Remove duplicate entries in a sorted node set.
1731 *
1732 * @param[in] set Sorted set to check.
1733 * @return LY_ERR (LY_EEXIST if some duplicates are found)
1734 */
1735static LY_ERR
1736set_sorted_dup_node_clean(struct lyxp_set *set)
1737{
1738 uint32_t i = 0;
1739 LY_ERR ret = LY_SUCCESS;
1740
1741 if (set->used > 1) {
1742 while (i < set->used - 1) {
Michal Vasko69730152020-10-09 16:30:07 +02001743 if ((set->val.nodes[i].node == set->val.nodes[i + 1].node) &&
1744 (set->val.nodes[i].type == set->val.nodes[i + 1].type)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01001745 set_remove_node_none(set, i + 1);
Michal Vasko57eab132019-09-24 11:46:26 +02001746 ret = LY_EEXIST;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001747 }
Michal Vasko57eab132019-09-24 11:46:26 +02001748 ++i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001749 }
1750 }
1751
Michal Vasko2caefc12019-11-14 16:07:56 +01001752 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001753 return ret;
1754}
1755
1756#endif
1757
1758/**
1759 * @brief Merge 2 sorted sets into one.
1760 *
1761 * @param[in,out] trg Set to merge into. Duplicates are removed.
1762 * @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 +02001763 * @return LY_ERR
1764 */
1765static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001766set_sorted_merge(struct lyxp_set *trg, struct lyxp_set *src)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001767{
1768 uint32_t i, j, k, count, dup_count;
1769 int cmp;
1770 const struct lyd_node *root;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001771
Michal Vaskod3678892020-05-21 10:06:58 +02001772 if ((trg->type != LYXP_SET_NODE_SET) || (src->type != LYXP_SET_NODE_SET)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001773 return LY_EINVAL;
1774 }
1775
Michal Vaskod3678892020-05-21 10:06:58 +02001776 if (!src->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001777 return LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02001778 } else if (!trg->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001779 set_fill_set(trg, src);
Michal Vaskod3678892020-05-21 10:06:58 +02001780 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001781 return LY_SUCCESS;
1782 }
1783
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001784 /* find first top-level node to be used as anchor for positions */
Michal Vasko9e685082021-01-29 14:49:09 +01001785 for (root = trg->cur_node; root->parent; root = lyd_parent(root)) {}
Michal Vaskod989ba02020-08-24 10:59:24 +02001786 for ( ; root->prev->next; root = root->prev) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02001787
1788 /* fill positions */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01001789 if (set_assign_pos(trg, root, trg->root_type) || set_assign_pos(src, root, src->root_type)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02001790 return LY_EINT;
1791 }
1792
1793#ifndef NDEBUG
1794 LOGDBG(LY_LDGXPATH, "MERGE target");
1795 print_set_debug(trg);
1796 LOGDBG(LY_LDGXPATH, "MERGE source");
1797 print_set_debug(src);
1798#endif
1799
1800 /* make memory for the merge (duplicates are not detected yet, so space
1801 * will likely be wasted on them, too bad) */
1802 if (trg->size - trg->used < src->used) {
1803 trg->size = trg->used + src->used;
1804
1805 trg->val.nodes = ly_realloc(trg->val.nodes, trg->size * sizeof *trg->val.nodes);
1806 LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx), LY_EMEM);
1807 }
1808
1809 i = 0;
1810 j = 0;
1811 count = 0;
1812 dup_count = 0;
1813 do {
1814 cmp = set_sort_compare(&src->val.nodes[i], &trg->val.nodes[j]);
1815 if (!cmp) {
1816 if (!count) {
1817 /* duplicate, just skip it */
1818 ++i;
1819 ++j;
1820 } else {
1821 /* we are copying something already, so let's copy the duplicate too,
1822 * we are hoping that afterwards there are some more nodes to
1823 * copy and this way we can copy them all together */
1824 ++count;
1825 ++dup_count;
1826 ++i;
1827 ++j;
1828 }
1829 } else if (cmp < 0) {
1830 /* inserting src node into trg, just remember it for now */
1831 ++count;
1832 ++i;
1833
1834 /* insert the hash now */
1835 set_insert_node_hash(trg, src->val.nodes[i - 1].node, src->val.nodes[i - 1].type);
1836 } else if (count) {
1837copy_nodes:
1838 /* time to actually copy the nodes, we have found the largest block of nodes */
1839 memmove(&trg->val.nodes[j + (count - dup_count)],
1840 &trg->val.nodes[j],
1841 (trg->used - j) * sizeof *trg->val.nodes);
1842 memcpy(&trg->val.nodes[j - dup_count], &src->val.nodes[i - count], count * sizeof *src->val.nodes);
1843
1844 trg->used += count - dup_count;
1845 /* do not change i, except the copying above, we are basically doing exactly what is in the else branch below */
1846 j += count - dup_count;
1847
1848 count = 0;
1849 dup_count = 0;
1850 } else {
1851 ++j;
1852 }
1853 } while ((i < src->used) && (j < trg->used));
1854
1855 if ((i < src->used) || count) {
1856 /* insert all the hashes first */
1857 for (k = i; k < src->used; ++k) {
1858 set_insert_node_hash(trg, src->val.nodes[k].node, src->val.nodes[k].type);
1859 }
1860
1861 /* loop ended, but we need to copy something at trg end */
1862 count += src->used - i;
1863 i = src->used;
1864 goto copy_nodes;
1865 }
1866
1867 /* we are inserting hashes before the actual node insert, which causes
1868 * situations when there were initially not enough items for a hash table,
1869 * but even after some were inserted, hash table was not created (during
1870 * insertion the number of items is not updated yet) */
1871 if (!trg->ht && (trg->used >= LYD_HT_MIN_ITEMS)) {
1872 set_insert_node_hash(trg, NULL, 0);
1873 }
1874
1875#ifndef NDEBUG
1876 LOGDBG(LY_LDGXPATH, "MERGE result");
1877 print_set_debug(trg);
1878#endif
1879
Michal Vaskod3678892020-05-21 10:06:58 +02001880 lyxp_set_free_content(src);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001881 return LY_SUCCESS;
1882}
1883
Michal Vasko14676352020-05-29 11:35:55 +02001884LY_ERR
Michal Vasko004d3152020-06-11 19:59:22 +02001885lyxp_check_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001886{
Michal Vasko004d3152020-06-11 19:59:22 +02001887 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001888 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001889 LOGVAL(ctx, LY_VCODE_XP_EOF);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001890 }
Michal Vasko14676352020-05-29 11:35:55 +02001891 return LY_EINCOMPLETE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001892 }
1893
Michal Vasko004d3152020-06-11 19:59:22 +02001894 if (want_tok && (exp->tokens[tok_idx] != want_tok)) {
Michal Vasko14676352020-05-29 11:35:55 +02001895 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001896 LOGVAL(ctx, LY_VCODE_XP_INTOK2, lyxp_print_token(exp->tokens[tok_idx]),
Michal Vasko0b468e62020-10-19 09:33:04 +02001897 &exp->expr[exp->tok_pos[tok_idx]], lyxp_print_token(want_tok));
Michal Vasko03ff5a72019-09-11 13:49:33 +02001898 }
Michal Vasko14676352020-05-29 11:35:55 +02001899 return LY_ENOT;
1900 }
1901
1902 return LY_SUCCESS;
1903}
1904
Michal Vasko004d3152020-06-11 19:59:22 +02001905LY_ERR
1906lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok)
1907{
1908 LY_CHECK_RET(lyxp_check_token(ctx, exp, *tok_idx, want_tok));
1909
1910 /* skip the token */
1911 ++(*tok_idx);
1912
1913 return LY_SUCCESS;
1914}
1915
Michal Vasko14676352020-05-29 11:35:55 +02001916/* just like lyxp_check_token() but tests for 2 tokens */
1917static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02001918exp_check_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok1,
Radek Krejci0f969882020-08-21 16:56:47 +02001919 enum lyxp_token want_tok2)
Michal Vasko14676352020-05-29 11:35:55 +02001920{
Michal Vasko004d3152020-06-11 19:59:22 +02001921 if (exp->used == tok_idx) {
Michal Vasko14676352020-05-29 11:35:55 +02001922 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001923 LOGVAL(ctx, LY_VCODE_XP_EOF);
Michal Vasko14676352020-05-29 11:35:55 +02001924 }
1925 return LY_EINCOMPLETE;
1926 }
1927
Michal Vasko004d3152020-06-11 19:59:22 +02001928 if ((exp->tokens[tok_idx] != want_tok1) && (exp->tokens[tok_idx] != want_tok2)) {
Michal Vasko14676352020-05-29 11:35:55 +02001929 if (ctx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01001930 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[tok_idx]),
Michal Vasko0b468e62020-10-19 09:33:04 +02001931 &exp->expr[exp->tok_pos[tok_idx]]);
Michal Vasko14676352020-05-29 11:35:55 +02001932 }
1933 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001934 }
1935
1936 return LY_SUCCESS;
1937}
1938
Michal Vasko4911eeb2021-06-28 11:23:05 +02001939LY_ERR
1940lyxp_next_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok1,
1941 enum lyxp_token want_tok2)
1942{
1943 LY_CHECK_RET(exp_check_token2(ctx, exp, *tok_idx, want_tok1, want_tok2));
1944
1945 /* skip the token */
1946 ++(*tok_idx);
1947
1948 return LY_SUCCESS;
1949}
1950
Michal Vasko03ff5a72019-09-11 13:49:33 +02001951/**
1952 * @brief Stack operation push on the repeat array.
1953 *
1954 * @param[in] exp Expression to use.
Michal Vasko004d3152020-06-11 19:59:22 +02001955 * @param[in] tok_idx Position in the expresion \p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001956 * @param[in] repeat_op_idx Index from \p exp of the operator token. This value is pushed.
1957 */
1958static void
Michal Vasko004d3152020-06-11 19:59:22 +02001959exp_repeat_push(struct lyxp_expr *exp, uint16_t tok_idx, uint16_t repeat_op_idx)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001960{
1961 uint16_t i;
1962
Michal Vasko004d3152020-06-11 19:59:22 +02001963 if (exp->repeat[tok_idx]) {
Radek Krejci1e008d22020-08-17 11:37:37 +02001964 for (i = 0; exp->repeat[tok_idx][i]; ++i) {}
Michal Vasko004d3152020-06-11 19:59:22 +02001965 exp->repeat[tok_idx] = realloc(exp->repeat[tok_idx], (i + 2) * sizeof *exp->repeat[tok_idx]);
1966 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1967 exp->repeat[tok_idx][i] = repeat_op_idx;
1968 exp->repeat[tok_idx][i + 1] = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001969 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02001970 exp->repeat[tok_idx] = calloc(2, sizeof *exp->repeat[tok_idx]);
1971 LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), );
1972 exp->repeat[tok_idx][0] = repeat_op_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02001973 }
1974}
1975
1976/**
1977 * @brief Reparse Predicate. Logs directly on error.
1978 *
1979 * [7] Predicate ::= '[' Expr ']'
1980 *
1981 * @param[in] ctx Context for logging.
1982 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02001983 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02001984 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02001985 * @return LY_ERR
1986 */
1987static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02001988reparse_predicate(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02001989{
1990 LY_ERR rc;
1991
Michal Vasko004d3152020-06-11 19:59:22 +02001992 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001993 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02001994 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001995
aPiecekbf968d92021-05-27 14:35:05 +02001996 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02001997 LY_CHECK_RET(rc);
1998
Michal Vasko004d3152020-06-11 19:59:22 +02001999 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002000 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002001 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002002
2003 return LY_SUCCESS;
2004}
2005
2006/**
2007 * @brief Reparse RelativeLocationPath. Logs directly on error.
2008 *
2009 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
2010 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
2011 * [6] NodeTest ::= NameTest | NodeType '(' ')'
2012 *
2013 * @param[in] ctx Context for logging.
2014 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002015 * @param[in] tok_idx Position in the expression \p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002016 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002017 * @return LY_ERR (LY_EINCOMPLETE on forward reference)
2018 */
2019static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002020reparse_relative_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002021{
2022 LY_ERR rc;
2023
Michal Vasko004d3152020-06-11 19:59:22 +02002024 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002025 LY_CHECK_RET(rc);
2026
2027 goto step;
2028 do {
2029 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002030 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002031
Michal Vasko004d3152020-06-11 19:59:22 +02002032 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002033 LY_CHECK_RET(rc);
2034step:
2035 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02002036 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002037 case LYXP_TOKEN_DOT:
Michal Vasko004d3152020-06-11 19:59:22 +02002038 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002039 break;
2040
2041 case LYXP_TOKEN_DDOT:
Michal Vasko004d3152020-06-11 19:59:22 +02002042 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002043 break;
2044
2045 case LYXP_TOKEN_AT:
Michal Vasko004d3152020-06-11 19:59:22 +02002046 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002047
Michal Vasko004d3152020-06-11 19:59:22 +02002048 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002049 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002050 if ((exp->tokens[*tok_idx] != LYXP_TOKEN_NAMETEST) && (exp->tokens[*tok_idx] != LYXP_TOKEN_NODETYPE)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002051 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002052 return LY_EVALID;
2053 }
Radek Krejci0f969882020-08-21 16:56:47 +02002054 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002055 case LYXP_TOKEN_NAMETEST:
Michal Vasko004d3152020-06-11 19:59:22 +02002056 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002057 goto reparse_predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002058
2059 case LYXP_TOKEN_NODETYPE:
Michal Vasko004d3152020-06-11 19:59:22 +02002060 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002061
2062 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002063 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002064 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002065 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002066
2067 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002068 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002069 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002070 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002071
2072reparse_predicate:
2073 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002074 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
aPiecekbf968d92021-05-27 14:35:05 +02002075 rc = reparse_predicate(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002076 LY_CHECK_RET(rc);
2077 }
2078 break;
2079 default:
Radek Krejci2efc45b2020-12-22 16:25:44 +01002080 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002081 return LY_EVALID;
2082 }
Michal Vasko004d3152020-06-11 19:59:22 +02002083 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02002084
2085 return LY_SUCCESS;
2086}
2087
2088/**
2089 * @brief Reparse AbsoluteLocationPath. Logs directly on error.
2090 *
2091 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
2092 *
2093 * @param[in] ctx Context for logging.
2094 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002095 * @param[in] tok_idx Position in the expression \p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002096 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002097 * @return LY_ERR
2098 */
2099static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002100reparse_absolute_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002101{
2102 LY_ERR rc;
2103
Michal Vasko004d3152020-06-11 19:59:22 +02002104 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 +02002105
2106 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02002107 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002108 /* '/' */
Michal Vasko004d3152020-06-11 19:59:22 +02002109 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002110
Michal Vasko004d3152020-06-11 19:59:22 +02002111 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002112 return LY_SUCCESS;
2113 }
Michal Vasko004d3152020-06-11 19:59:22 +02002114 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002115 case LYXP_TOKEN_DOT:
2116 case LYXP_TOKEN_DDOT:
2117 case LYXP_TOKEN_AT:
2118 case LYXP_TOKEN_NAMETEST:
2119 case LYXP_TOKEN_NODETYPE:
aPiecekbf968d92021-05-27 14:35:05 +02002120 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002121 LY_CHECK_RET(rc);
Radek Krejci0f969882020-08-21 16:56:47 +02002122 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02002123 default:
2124 break;
2125 }
2126
Michal Vasko03ff5a72019-09-11 13:49:33 +02002127 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02002128 /* '//' RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002129 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002130
aPiecekbf968d92021-05-27 14:35:05 +02002131 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002132 LY_CHECK_RET(rc);
2133 }
2134
2135 return LY_SUCCESS;
2136}
2137
2138/**
2139 * @brief Reparse FunctionCall. Logs directly on error.
2140 *
2141 * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
2142 *
2143 * @param[in] ctx Context for logging.
2144 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002145 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002146 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002147 * @return LY_ERR
2148 */
2149static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002150reparse_function_call(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002151{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002152 int8_t min_arg_count = -1;
2153 uint32_t arg_count, max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002154 uint16_t func_tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002155 LY_ERR rc;
2156
Michal Vasko004d3152020-06-11 19:59:22 +02002157 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_FUNCNAME);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002158 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002159 func_tok_idx = *tok_idx;
2160 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002161 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02002162 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002163 min_arg_count = 1;
2164 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002165 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002166 min_arg_count = 1;
2167 max_arg_count = 1;
2168 }
2169 break;
2170 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02002171 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002172 min_arg_count = 1;
2173 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002174 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002175 min_arg_count = 0;
2176 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002177 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002178 min_arg_count = 0;
2179 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002180 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002181 min_arg_count = 0;
2182 max_arg_count = 0;
2183 }
2184 break;
2185 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02002186 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002187 min_arg_count = 1;
2188 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002189 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002190 min_arg_count = 0;
2191 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002192 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002193 min_arg_count = 1;
2194 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002195 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002196 min_arg_count = 1;
2197 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002198 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002199 min_arg_count = 1;
2200 max_arg_count = 1;
2201 }
2202 break;
2203 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02002204 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002205 min_arg_count = 2;
Radek Krejci1deb5be2020-08-26 16:43:36 +02002206 max_arg_count = UINT32_MAX;
Michal Vasko004d3152020-06-11 19:59:22 +02002207 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002208 min_arg_count = 0;
2209 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002210 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002211 min_arg_count = 0;
2212 max_arg_count = 1;
2213 }
2214 break;
2215 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02002216 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002217 min_arg_count = 1;
2218 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002219 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002220 min_arg_count = 1;
2221 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002222 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002223 min_arg_count = 0;
2224 max_arg_count = 0;
2225 }
2226 break;
2227 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02002228 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002229 min_arg_count = 2;
2230 max_arg_count = 2;
Michal Vasko004d3152020-06-11 19:59:22 +02002231 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002232 min_arg_count = 0;
2233 max_arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002234 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002235 min_arg_count = 2;
2236 max_arg_count = 2;
2237 }
2238 break;
2239 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02002240 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002241 min_arg_count = 2;
2242 max_arg_count = 3;
Michal Vasko004d3152020-06-11 19:59:22 +02002243 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002244 min_arg_count = 3;
2245 max_arg_count = 3;
2246 }
2247 break;
2248 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02002249 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002250 min_arg_count = 0;
2251 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002252 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002253 min_arg_count = 1;
2254 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002255 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002256 min_arg_count = 2;
2257 max_arg_count = 2;
2258 }
2259 break;
2260 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02002261 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002262 min_arg_count = 2;
2263 max_arg_count = 2;
2264 }
2265 break;
2266 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02002267 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002268 min_arg_count = 2;
2269 max_arg_count = 2;
2270 }
2271 break;
2272 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02002273 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002274 min_arg_count = 0;
2275 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002276 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002277 min_arg_count = 0;
2278 max_arg_count = 1;
2279 }
2280 break;
2281 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02002282 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002283 min_arg_count = 0;
2284 max_arg_count = 1;
Michal Vasko004d3152020-06-11 19:59:22 +02002285 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002286 min_arg_count = 2;
2287 max_arg_count = 2;
2288 }
2289 break;
2290 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02002291 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002292 min_arg_count = 2;
2293 max_arg_count = 2;
2294 }
2295 break;
2296 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02002297 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002298 min_arg_count = 2;
2299 max_arg_count = 2;
2300 }
2301 break;
2302 }
2303 if (min_arg_count == -1) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002304 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 +02002305 return LY_EINVAL;
2306 }
Michal Vasko004d3152020-06-11 19:59:22 +02002307 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002308
2309 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02002310 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002311 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002312 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002313
2314 /* ( Expr ( ',' Expr )* )? */
2315 arg_count = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002316 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002317 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002318 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002319 ++arg_count;
aPiecekbf968d92021-05-27 14:35:05 +02002320 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002321 LY_CHECK_RET(rc);
2322 }
Michal Vasko004d3152020-06-11 19:59:22 +02002323 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
2324 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002325
2326 ++arg_count;
aPiecekbf968d92021-05-27 14:35:05 +02002327 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002328 LY_CHECK_RET(rc);
2329 }
2330
2331 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02002332 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002333 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002334 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002335
Radek Krejci857189e2020-09-01 13:26:36 +02002336 if ((arg_count < (uint32_t)min_arg_count) || (arg_count > max_arg_count)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002337 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 +02002338 return LY_EVALID;
2339 }
2340
2341 return LY_SUCCESS;
2342}
2343
2344/**
2345 * @brief Reparse PathExpr. Logs directly on error.
2346 *
2347 * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate*
2348 * | PrimaryExpr Predicate* '/' RelativeLocationPath
2349 * | PrimaryExpr Predicate* '//' RelativeLocationPath
2350 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
aPiecekfba75362021-10-07 12:39:48 +02002351 * [8] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02002352 *
2353 * @param[in] ctx Context for logging.
2354 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002355 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002356 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002357 * @return LY_ERR
2358 */
2359static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002360reparse_path_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002361{
2362 LY_ERR rc;
2363
Michal Vasko004d3152020-06-11 19:59:22 +02002364 if (lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko14676352020-05-29 11:35:55 +02002365 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002366 }
2367
Michal Vasko004d3152020-06-11 19:59:22 +02002368 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002369 case LYXP_TOKEN_PAR1:
2370 /* '(' Expr ')' Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002371 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002372
aPiecekbf968d92021-05-27 14:35:05 +02002373 rc = reparse_or_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002374 LY_CHECK_RET(rc);
2375
Michal Vasko004d3152020-06-11 19:59:22 +02002376 rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002377 LY_CHECK_RET(rc);
Michal Vasko004d3152020-06-11 19:59:22 +02002378 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002379 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002380 case LYXP_TOKEN_DOT:
2381 case LYXP_TOKEN_DDOT:
2382 case LYXP_TOKEN_AT:
2383 case LYXP_TOKEN_NAMETEST:
2384 case LYXP_TOKEN_NODETYPE:
2385 /* RelativeLocationPath */
aPiecekbf968d92021-05-27 14:35:05 +02002386 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002387 LY_CHECK_RET(rc);
2388 break;
aPiecekfba75362021-10-07 12:39:48 +02002389 case LYXP_TOKEN_VARREF:
2390 /* VariableReference */
2391 ++(*tok_idx);
2392 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002393 case LYXP_TOKEN_FUNCNAME:
2394 /* FunctionCall */
aPiecekbf968d92021-05-27 14:35:05 +02002395 rc = reparse_function_call(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002396 LY_CHECK_RET(rc);
2397 goto predicate;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002398 case LYXP_TOKEN_OPER_PATH:
2399 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02002400 /* AbsoluteLocationPath */
aPiecekbf968d92021-05-27 14:35:05 +02002401 rc = reparse_absolute_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002402 LY_CHECK_RET(rc);
2403 break;
2404 case LYXP_TOKEN_LITERAL:
2405 /* Literal */
Michal Vasko004d3152020-06-11 19:59:22 +02002406 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002407 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002408 case LYXP_TOKEN_NUMBER:
2409 /* Number */
Michal Vasko004d3152020-06-11 19:59:22 +02002410 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002411 goto predicate;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002412 default:
Radek Krejci2efc45b2020-12-22 16:25:44 +01002413 LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002414 return LY_EVALID;
2415 }
2416
2417 return LY_SUCCESS;
2418
2419predicate:
2420 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02002421 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
aPiecekbf968d92021-05-27 14:35:05 +02002422 rc = reparse_predicate(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002423 LY_CHECK_RET(rc);
2424 }
2425
2426 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02002427 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002428
2429 /* '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02002430 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002431
aPiecekbf968d92021-05-27 14:35:05 +02002432 rc = reparse_relative_location_path(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002433 LY_CHECK_RET(rc);
2434 }
2435
2436 return LY_SUCCESS;
2437}
2438
2439/**
2440 * @brief Reparse UnaryExpr. Logs directly on error.
2441 *
2442 * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr
2443 * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
2444 *
2445 * @param[in] ctx Context for logging.
2446 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002447 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002448 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002449 * @return LY_ERR
2450 */
2451static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002452reparse_unary_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002453{
2454 uint16_t prev_exp;
2455 LY_ERR rc;
2456
2457 /* ('-')* */
Michal Vasko004d3152020-06-11 19:59:22 +02002458 prev_exp = *tok_idx;
Michal Vasko69730152020-10-09 16:30:07 +02002459 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2460 (exp->expr[exp->tok_pos[*tok_idx]] == '-')) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002461 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNARY);
Michal Vasko004d3152020-06-11 19:59:22 +02002462 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002463 }
2464
2465 /* PathExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002466 prev_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002467 rc = reparse_path_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002468 LY_CHECK_RET(rc);
2469
2470 /* ('|' PathExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002471 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_UNI)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002472 exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNION);
Michal Vasko004d3152020-06-11 19:59:22 +02002473 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002474
aPiecekbf968d92021-05-27 14:35:05 +02002475 rc = reparse_path_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002476 LY_CHECK_RET(rc);
2477 }
2478
2479 return LY_SUCCESS;
2480}
2481
2482/**
2483 * @brief Reparse AdditiveExpr. Logs directly on error.
2484 *
2485 * [15] AdditiveExpr ::= MultiplicativeExpr
2486 * | AdditiveExpr '+' MultiplicativeExpr
2487 * | AdditiveExpr '-' MultiplicativeExpr
2488 * [16] MultiplicativeExpr ::= UnaryExpr
2489 * | MultiplicativeExpr '*' UnaryExpr
2490 * | MultiplicativeExpr 'div' UnaryExpr
2491 * | MultiplicativeExpr 'mod' UnaryExpr
2492 *
2493 * @param[in] ctx Context for logging.
2494 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002495 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002496 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002497 * @return LY_ERR
2498 */
2499static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002500reparse_additive_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002501{
2502 uint16_t prev_add_exp, prev_mul_exp;
2503 LY_ERR rc;
2504
Michal Vasko004d3152020-06-11 19:59:22 +02002505 prev_add_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002506 goto reparse_multiplicative_expr;
2507
2508 /* ('+' / '-' MultiplicativeExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002509 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2510 ((exp->expr[exp->tok_pos[*tok_idx]] == '+') || (exp->expr[exp->tok_pos[*tok_idx]] == '-'))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002511 exp_repeat_push(exp, prev_add_exp, LYXP_EXPR_ADDITIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002512 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002513
2514reparse_multiplicative_expr:
2515 /* UnaryExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002516 prev_mul_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002517 rc = reparse_unary_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002518 LY_CHECK_RET(rc);
2519
2520 /* ('*' / 'div' / 'mod' UnaryExpr)* */
Michal Vasko69730152020-10-09 16:30:07 +02002521 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) &&
2522 ((exp->expr[exp->tok_pos[*tok_idx]] == '*') || (exp->tok_len[*tok_idx] == 3))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002523 exp_repeat_push(exp, prev_mul_exp, LYXP_EXPR_MULTIPLICATIVE);
Michal Vasko004d3152020-06-11 19:59:22 +02002524 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002525
aPiecekbf968d92021-05-27 14:35:05 +02002526 rc = reparse_unary_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002527 LY_CHECK_RET(rc);
2528 }
2529 }
2530
2531 return LY_SUCCESS;
2532}
2533
2534/**
2535 * @brief Reparse EqualityExpr. Logs directly on error.
2536 *
2537 * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
2538 * | EqualityExpr '!=' RelationalExpr
2539 * [14] RelationalExpr ::= AdditiveExpr
2540 * | RelationalExpr '<' AdditiveExpr
2541 * | RelationalExpr '>' AdditiveExpr
2542 * | RelationalExpr '<=' AdditiveExpr
2543 * | RelationalExpr '>=' AdditiveExpr
2544 *
2545 * @param[in] ctx Context for logging.
2546 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002547 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002548 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002549 * @return LY_ERR
2550 */
2551static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002552reparse_equality_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002553{
2554 uint16_t prev_eq_exp, prev_rel_exp;
2555 LY_ERR rc;
2556
Michal Vasko004d3152020-06-11 19:59:22 +02002557 prev_eq_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002558 goto reparse_additive_expr;
2559
2560 /* ('=' / '!=' RelationalExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002561 while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_EQUAL, LYXP_TOKEN_OPER_NEQUAL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002562 exp_repeat_push(exp, prev_eq_exp, LYXP_EXPR_EQUALITY);
Michal Vasko004d3152020-06-11 19:59:22 +02002563 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002564
2565reparse_additive_expr:
2566 /* AdditiveExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002567 prev_rel_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002568 rc = reparse_additive_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002569 LY_CHECK_RET(rc);
2570
2571 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002572 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_COMP)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02002573 exp_repeat_push(exp, prev_rel_exp, LYXP_EXPR_RELATIONAL);
Michal Vasko004d3152020-06-11 19:59:22 +02002574 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002575
aPiecekbf968d92021-05-27 14:35:05 +02002576 rc = reparse_additive_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002577 LY_CHECK_RET(rc);
2578 }
2579 }
2580
2581 return LY_SUCCESS;
2582}
2583
2584/**
2585 * @brief Reparse OrExpr. Logs directly on error.
2586 *
2587 * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
2588 * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
2589 *
2590 * @param[in] ctx Context for logging.
2591 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02002592 * @param[in] tok_idx Position in the expression @p exp.
aPiecekbf968d92021-05-27 14:35:05 +02002593 * @param[in] depth Current number of nested expressions.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002594 * @return LY_ERR
2595 */
2596static LY_ERR
aPiecekbf968d92021-05-27 14:35:05 +02002597reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth)
Michal Vasko03ff5a72019-09-11 13:49:33 +02002598{
2599 uint16_t prev_or_exp, prev_and_exp;
2600 LY_ERR rc;
2601
aPiecekbf968d92021-05-27 14:35:05 +02002602 ++depth;
2603 LY_CHECK_ERR_RET(depth > LYXP_MAX_BLOCK_DEPTH, LOGVAL(ctx, LY_VCODE_XP_DEPTH), LY_EINVAL);
2604
Michal Vasko004d3152020-06-11 19:59:22 +02002605 prev_or_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002606 goto reparse_equality_expr;
2607
2608 /* ('or' AndExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002609 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 +02002610 exp_repeat_push(exp, prev_or_exp, LYXP_EXPR_OR);
Michal Vasko004d3152020-06-11 19:59:22 +02002611 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002612
2613reparse_equality_expr:
2614 /* EqualityExpr */
Michal Vasko004d3152020-06-11 19:59:22 +02002615 prev_and_exp = *tok_idx;
aPiecekbf968d92021-05-27 14:35:05 +02002616 rc = reparse_equality_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002617 LY_CHECK_RET(rc);
2618
2619 /* ('and' EqualityExpr)* */
Michal Vasko004d3152020-06-11 19:59:22 +02002620 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 +02002621 exp_repeat_push(exp, prev_and_exp, LYXP_EXPR_AND);
Michal Vasko004d3152020-06-11 19:59:22 +02002622 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002623
aPiecekbf968d92021-05-27 14:35:05 +02002624 rc = reparse_equality_expr(ctx, exp, tok_idx, depth);
Michal Vasko03ff5a72019-09-11 13:49:33 +02002625 LY_CHECK_RET(rc);
2626 }
2627 }
2628
2629 return LY_SUCCESS;
2630}
Radek Krejcib1646a92018-11-02 16:08:26 +01002631
2632/**
2633 * @brief Parse NCName.
2634 *
2635 * @param[in] ncname Name to parse.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002636 * @return Length of @p ncname valid bytes.
Radek Krejcib1646a92018-11-02 16:08:26 +01002637 */
Radek Krejcid4270262019-01-07 15:07:25 +01002638static long int
Radek Krejcib1646a92018-11-02 16:08:26 +01002639parse_ncname(const char *ncname)
2640{
Radek Krejci1deb5be2020-08-26 16:43:36 +02002641 uint32_t uc;
Radek Krejcid4270262019-01-07 15:07:25 +01002642 size_t size;
2643 long int len = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002644
2645 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), 0);
2646 if (!is_xmlqnamestartchar(uc) || (uc == ':')) {
2647 return len;
2648 }
2649
2650 do {
2651 len += size;
Radek Krejci9a564c92019-01-07 14:53:57 +01002652 if (!*ncname) {
2653 break;
2654 }
Radek Krejcid4270262019-01-07 15:07:25 +01002655 LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), -len);
Radek Krejcib1646a92018-11-02 16:08:26 +01002656 } while (is_xmlqnamechar(uc) && (uc != ':'));
2657
2658 return len;
2659}
2660
2661/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02002662 * @brief Add @p token into the expression @p exp.
Radek Krejcib1646a92018-11-02 16:08:26 +01002663 *
Michal Vasko03ff5a72019-09-11 13:49:33 +02002664 * @param[in] ctx Context for logging.
Radek Krejcib1646a92018-11-02 16:08:26 +01002665 * @param[in] exp Expression to use.
2666 * @param[in] token Token to add.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002667 * @param[in] tok_pos Token position in the XPath expression.
Radek Krejcib1646a92018-11-02 16:08:26 +01002668 * @param[in] tok_len Token length in the XPath expression.
Michal Vasko03ff5a72019-09-11 13:49:33 +02002669 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +01002670 */
2671static LY_ERR
Michal Vasko14676352020-05-29 11:35:55 +02002672exp_add_token(const struct ly_ctx *ctx, struct lyxp_expr *exp, enum lyxp_token token, uint16_t tok_pos, uint16_t tok_len)
Radek Krejcib1646a92018-11-02 16:08:26 +01002673{
2674 uint32_t prev;
2675
2676 if (exp->used == exp->size) {
2677 prev = exp->size;
2678 exp->size += LYXP_EXPR_SIZE_STEP;
2679 if (prev > exp->size) {
2680 LOGINT(ctx);
2681 return LY_EINT;
2682 }
2683
2684 exp->tokens = ly_realloc(exp->tokens, exp->size * sizeof *exp->tokens);
2685 LY_CHECK_ERR_RET(!exp->tokens, LOGMEM(ctx), LY_EMEM);
2686 exp->tok_pos = ly_realloc(exp->tok_pos, exp->size * sizeof *exp->tok_pos);
2687 LY_CHECK_ERR_RET(!exp->tok_pos, LOGMEM(ctx), LY_EMEM);
2688 exp->tok_len = ly_realloc(exp->tok_len, exp->size * sizeof *exp->tok_len);
2689 LY_CHECK_ERR_RET(!exp->tok_len, LOGMEM(ctx), LY_EMEM);
2690 }
2691
2692 exp->tokens[exp->used] = token;
Michal Vasko03ff5a72019-09-11 13:49:33 +02002693 exp->tok_pos[exp->used] = tok_pos;
Radek Krejcib1646a92018-11-02 16:08:26 +01002694 exp->tok_len[exp->used] = tok_len;
2695 ++exp->used;
2696 return LY_SUCCESS;
2697}
2698
2699void
Michal Vasko14676352020-05-29 11:35:55 +02002700lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr)
Radek Krejcib1646a92018-11-02 16:08:26 +01002701{
2702 uint16_t i;
2703
2704 if (!expr) {
2705 return;
2706 }
2707
2708 lydict_remove(ctx, expr->expr);
2709 free(expr->tokens);
2710 free(expr->tok_pos);
2711 free(expr->tok_len);
2712 if (expr->repeat) {
2713 for (i = 0; i < expr->used; ++i) {
2714 free(expr->repeat[i]);
2715 }
2716 }
2717 free(expr->repeat);
2718 free(expr);
2719}
2720
Radek Krejcif03a9e22020-09-18 20:09:31 +02002721LY_ERR
2722lyxp_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 +01002723{
Radek Krejcif03a9e22020-09-18 20:09:31 +02002724 LY_ERR ret = LY_SUCCESS;
2725 struct lyxp_expr *expr;
Radek Krejcid4270262019-01-07 15:07:25 +01002726 size_t parsed = 0, tok_len;
Radek Krejcib1646a92018-11-02 16:08:26 +01002727 enum lyxp_token tok_type;
Radek Krejci857189e2020-09-01 13:26:36 +02002728 ly_bool prev_function_check = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02002729 uint16_t tok_idx = 0;
Radek Krejcib1646a92018-11-02 16:08:26 +01002730
Radek Krejcif03a9e22020-09-18 20:09:31 +02002731 assert(expr_p);
2732
2733 if (!expr_str[0]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002734 LOGVAL(ctx, LY_VCODE_XP_EOF);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002735 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02002736 }
2737
2738 if (!expr_len) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002739 expr_len = strlen(expr_str);
Michal Vasko004d3152020-06-11 19:59:22 +02002740 }
2741 if (expr_len > UINT16_MAX) {
Michal Vasko623ac7b2021-04-09 12:44:23 +02002742 LOGVAL(ctx, LYVE_XPATH, "XPath expression cannot be longer than %u characters.", UINT16_MAX);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002743 return LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002744 }
2745
2746 /* init lyxp_expr structure */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002747 expr = calloc(1, sizeof *expr);
2748 LY_CHECK_ERR_GOTO(!expr, LOGMEM(ctx); ret = LY_EMEM, error);
2749 LY_CHECK_GOTO(ret = lydict_insert(ctx, expr_str, expr_len, &expr->expr), error);
2750 expr->used = 0;
2751 expr->size = LYXP_EXPR_SIZE_START;
2752 expr->tokens = malloc(expr->size * sizeof *expr->tokens);
2753 LY_CHECK_ERR_GOTO(!expr->tokens, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002754
Radek Krejcif03a9e22020-09-18 20:09:31 +02002755 expr->tok_pos = malloc(expr->size * sizeof *expr->tok_pos);
2756 LY_CHECK_ERR_GOTO(!expr->tok_pos, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002757
Radek Krejcif03a9e22020-09-18 20:09:31 +02002758 expr->tok_len = malloc(expr->size * sizeof *expr->tok_len);
2759 LY_CHECK_ERR_GOTO(!expr->tok_len, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002760
Michal Vasko004d3152020-06-11 19:59:22 +02002761 /* make expr 0-terminated */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002762 expr_str = expr->expr;
Michal Vasko004d3152020-06-11 19:59:22 +02002763
Radek Krejcif03a9e22020-09-18 20:09:31 +02002764 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002765 ++parsed;
2766 }
2767
2768 do {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002769 if (expr_str[parsed] == '(') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002770
2771 /* '(' */
2772 tok_len = 1;
2773 tok_type = LYXP_TOKEN_PAR1;
2774
Radek Krejcif03a9e22020-09-18 20:09:31 +02002775 if (prev_function_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002776 /* it is a NodeType/FunctionName after all */
Michal Vasko69730152020-10-09 16:30:07 +02002777 if (((expr->tok_len[expr->used - 1] == 4) &&
2778 (!strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "node", 4) ||
2779 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "text", 4))) ||
2780 ((expr->tok_len[expr->used - 1] == 7) &&
2781 !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "comment", 7))) {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002782 expr->tokens[expr->used - 1] = LYXP_TOKEN_NODETYPE;
Radek Krejcib1646a92018-11-02 16:08:26 +01002783 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002784 expr->tokens[expr->used - 1] = LYXP_TOKEN_FUNCNAME;
Radek Krejcib1646a92018-11-02 16:08:26 +01002785 }
2786 prev_function_check = 0;
2787 }
2788
Radek Krejcif03a9e22020-09-18 20:09:31 +02002789 } else if (expr_str[parsed] == ')') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002790
2791 /* ')' */
2792 tok_len = 1;
2793 tok_type = LYXP_TOKEN_PAR2;
2794
Radek Krejcif03a9e22020-09-18 20:09:31 +02002795 } else if (expr_str[parsed] == '[') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002796
2797 /* '[' */
2798 tok_len = 1;
2799 tok_type = LYXP_TOKEN_BRACK1;
2800
Radek Krejcif03a9e22020-09-18 20:09:31 +02002801 } else if (expr_str[parsed] == ']') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002802
2803 /* ']' */
2804 tok_len = 1;
2805 tok_type = LYXP_TOKEN_BRACK2;
2806
Radek Krejcif03a9e22020-09-18 20:09:31 +02002807 } else if (!strncmp(&expr_str[parsed], "..", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002808
2809 /* '..' */
2810 tok_len = 2;
2811 tok_type = LYXP_TOKEN_DDOT;
2812
Radek Krejcif03a9e22020-09-18 20:09:31 +02002813 } else if ((expr_str[parsed] == '.') && (!isdigit(expr_str[parsed + 1]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002814
2815 /* '.' */
2816 tok_len = 1;
2817 tok_type = LYXP_TOKEN_DOT;
2818
Radek Krejcif03a9e22020-09-18 20:09:31 +02002819 } else if (expr_str[parsed] == '@') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002820
2821 /* '@' */
2822 tok_len = 1;
2823 tok_type = LYXP_TOKEN_AT;
2824
Radek Krejcif03a9e22020-09-18 20:09:31 +02002825 } else if (expr_str[parsed] == ',') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002826
2827 /* ',' */
2828 tok_len = 1;
2829 tok_type = LYXP_TOKEN_COMMA;
2830
Radek Krejcif03a9e22020-09-18 20:09:31 +02002831 } else if (expr_str[parsed] == '\'') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002832
2833 /* Literal with ' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002834 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\''); ++tok_len) {}
2835 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Radek Krejci2efc45b2020-12-22 16:25:44 +01002836 LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002837 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002838 ++tok_len;
2839 tok_type = LYXP_TOKEN_LITERAL;
2840
Radek Krejcif03a9e22020-09-18 20:09:31 +02002841 } else if (expr_str[parsed] == '\"') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002842
2843 /* Literal with " */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002844 for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\"'); ++tok_len) {}
2845 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0',
Radek Krejci2efc45b2020-12-22 16:25:44 +01002846 LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID,
Michal Vasko69730152020-10-09 16:30:07 +02002847 error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002848 ++tok_len;
2849 tok_type = LYXP_TOKEN_LITERAL;
2850
Radek Krejcif03a9e22020-09-18 20:09:31 +02002851 } else if ((expr_str[parsed] == '.') || (isdigit(expr_str[parsed]))) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002852
2853 /* Number */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002854 for (tok_len = 0; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
2855 if (expr_str[parsed + tok_len] == '.') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002856 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002857 for ( ; isdigit(expr_str[parsed + tok_len]); ++tok_len) {}
Radek Krejcib1646a92018-11-02 16:08:26 +01002858 }
2859 tok_type = LYXP_TOKEN_NUMBER;
2860
aPiecekfba75362021-10-07 12:39:48 +02002861 } else if (expr_str[parsed] == '$') {
2862
2863 /* VariableReference */
2864 parsed++;
2865 long int ncname_len = parse_ncname(&expr_str[parsed]);
2866 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
2867 parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error);
2868 tok_len = ncname_len;
2869 LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == ':',
2870 LOGVAL(ctx, LYVE_XPATH, "Variable with prefix is not supported."); ret = LY_EVALID,
2871 error);
2872 tok_type = LYXP_TOKEN_VARREF;
2873
Radek Krejcif03a9e22020-09-18 20:09:31 +02002874 } else if (expr_str[parsed] == '/') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002875
2876 /* Operator '/', '//' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002877 if (!strncmp(&expr_str[parsed], "//", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002878 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002879 tok_type = LYXP_TOKEN_OPER_RPATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002880 } else {
2881 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002882 tok_type = LYXP_TOKEN_OPER_PATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002883 }
Radek Krejcib1646a92018-11-02 16:08:26 +01002884
Radek Krejcif03a9e22020-09-18 20:09:31 +02002885 } else if (!strncmp(&expr_str[parsed], "!=", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002886
Michal Vasko3e48bf32020-06-01 08:39:07 +02002887 /* Operator '!=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002888 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002889 tok_type = LYXP_TOKEN_OPER_NEQUAL;
2890
Radek Krejcif03a9e22020-09-18 20:09:31 +02002891 } else if (!strncmp(&expr_str[parsed], "<=", 2) || !strncmp(&expr_str[parsed], ">=", 2)) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02002892
2893 /* Operator '<=', '>=' */
2894 tok_len = 2;
2895 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002896
Radek Krejcif03a9e22020-09-18 20:09:31 +02002897 } else if (expr_str[parsed] == '|') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002898
2899 /* Operator '|' */
2900 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002901 tok_type = LYXP_TOKEN_OPER_UNI;
Radek Krejcib1646a92018-11-02 16:08:26 +01002902
Radek Krejcif03a9e22020-09-18 20:09:31 +02002903 } else if ((expr_str[parsed] == '+') || (expr_str[parsed] == '-')) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002904
2905 /* Operator '+', '-' */
2906 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002907 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002908
Radek Krejcif03a9e22020-09-18 20:09:31 +02002909 } else if (expr_str[parsed] == '=') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002910
Michal Vasko3e48bf32020-06-01 08:39:07 +02002911 /* Operator '=' */
Radek Krejcib1646a92018-11-02 16:08:26 +01002912 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002913 tok_type = LYXP_TOKEN_OPER_EQUAL;
2914
Radek Krejcif03a9e22020-09-18 20:09:31 +02002915 } else if ((expr_str[parsed] == '<') || (expr_str[parsed] == '>')) {
Michal Vasko3e48bf32020-06-01 08:39:07 +02002916
2917 /* Operator '<', '>' */
2918 tok_len = 1;
2919 tok_type = LYXP_TOKEN_OPER_COMP;
Radek Krejcib1646a92018-11-02 16:08:26 +01002920
Michal Vasko69730152020-10-09 16:30:07 +02002921 } else if (expr->used && (expr->tokens[expr->used - 1] != LYXP_TOKEN_AT) &&
2922 (expr->tokens[expr->used - 1] != LYXP_TOKEN_PAR1) &&
2923 (expr->tokens[expr->used - 1] != LYXP_TOKEN_BRACK1) &&
2924 (expr->tokens[expr->used - 1] != LYXP_TOKEN_COMMA) &&
2925 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_LOG) &&
2926 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_EQUAL) &&
2927 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_NEQUAL) &&
2928 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_COMP) &&
2929 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_MATH) &&
2930 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_UNI) &&
2931 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_PATH) &&
2932 (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_RPATH)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002933
2934 /* Operator '*', 'or', 'and', 'mod', or 'div' */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002935 if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002936 tok_len = 1;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002937 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002938
Radek Krejcif03a9e22020-09-18 20:09:31 +02002939 } else if (!strncmp(&expr_str[parsed], "or", 2)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002940 tok_len = 2;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002941 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002942
Radek Krejcif03a9e22020-09-18 20:09:31 +02002943 } else if (!strncmp(&expr_str[parsed], "and", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002944 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002945 tok_type = LYXP_TOKEN_OPER_LOG;
Radek Krejcib1646a92018-11-02 16:08:26 +01002946
Radek Krejcif03a9e22020-09-18 20:09:31 +02002947 } else if (!strncmp(&expr_str[parsed], "mod", 3) || !strncmp(&expr_str[parsed], "div", 3)) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002948 tok_len = 3;
Michal Vasko3e48bf32020-06-01 08:39:07 +02002949 tok_type = LYXP_TOKEN_OPER_MATH;
Radek Krejcib1646a92018-11-02 16:08:26 +01002950
2951 } else if (prev_function_check) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01002952 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 +02002953 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 +02002954 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002955 goto error;
2956 } else {
Michal Vasko774ce402021-04-14 15:35:06 +02002957 LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed], parsed + 1, expr_str);
Radek Krejcif03a9e22020-09-18 20:09:31 +02002958 ret = LY_EVALID;
Radek Krejcib1646a92018-11-02 16:08:26 +01002959 goto error;
2960 }
Radek Krejcif03a9e22020-09-18 20:09:31 +02002961 } else if (expr_str[parsed] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002962
2963 /* NameTest '*' */
2964 tok_len = 1;
2965 tok_type = LYXP_TOKEN_NAMETEST;
2966
2967 } else {
2968
2969 /* NameTest (NCName ':' '*' | QName) or NodeType/FunctionName */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002970 long int ncname_len = parse_ncname(&expr_str[parsed]);
Michal Vaskoe2be5462021-08-04 10:49:42 +02002971 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
Michal Vasko774ce402021-04-14 15:35:06 +02002972 parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002973 tok_len = ncname_len;
2974
Radek Krejcif03a9e22020-09-18 20:09:31 +02002975 if (expr_str[parsed + tok_len] == ':') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002976 ++tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002977 if (expr_str[parsed + tok_len] == '*') {
Radek Krejcib1646a92018-11-02 16:08:26 +01002978 ++tok_len;
2979 } else {
Radek Krejcif03a9e22020-09-18 20:09:31 +02002980 ncname_len = parse_ncname(&expr_str[parsed + tok_len]);
Michal Vaskoe2be5462021-08-04 10:49:42 +02002981 LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len],
Michal Vasko774ce402021-04-14 15:35:06 +02002982 parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002983 tok_len += ncname_len;
2984 }
2985 /* remove old flag to prevent ambiguities */
2986 prev_function_check = 0;
2987 tok_type = LYXP_TOKEN_NAMETEST;
2988 } else {
2989 /* there is no prefix so it can still be NodeType/FunctionName, we can't finally decide now */
2990 prev_function_check = 1;
2991 tok_type = LYXP_TOKEN_NAMETEST;
2992 }
2993 }
2994
2995 /* store the token, move on to the next one */
Radek Krejcif03a9e22020-09-18 20:09:31 +02002996 LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error);
Radek Krejcib1646a92018-11-02 16:08:26 +01002997 parsed += tok_len;
Radek Krejcif03a9e22020-09-18 20:09:31 +02002998 while (is_xmlws(expr_str[parsed])) {
Radek Krejcib1646a92018-11-02 16:08:26 +01002999 ++parsed;
3000 }
3001
Radek Krejcif03a9e22020-09-18 20:09:31 +02003002 } while (expr_str[parsed]);
Radek Krejcib1646a92018-11-02 16:08:26 +01003003
Michal Vasko004d3152020-06-11 19:59:22 +02003004 if (reparse) {
3005 /* prealloc repeat */
Radek Krejcif03a9e22020-09-18 20:09:31 +02003006 expr->repeat = calloc(expr->size, sizeof *expr->repeat);
3007 LY_CHECK_ERR_GOTO(!expr->repeat, LOGMEM(ctx); ret = LY_EMEM, error);
Radek Krejcib1646a92018-11-02 16:08:26 +01003008
Michal Vasko004d3152020-06-11 19:59:22 +02003009 /* fill repeat */
aPiecekbf968d92021-05-27 14:35:05 +02003010 LY_CHECK_ERR_GOTO(reparse_or_expr(ctx, expr, &tok_idx, 0), ret = LY_EVALID, error);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003011 if (expr->used > tok_idx) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003012 LOGVAL(ctx, LYVE_XPATH, "Unparsed characters \"%s\" left at the end of an XPath expression.",
Michal Vasko69730152020-10-09 16:30:07 +02003013 &expr->expr[expr->tok_pos[tok_idx]]);
Radek Krejcif03a9e22020-09-18 20:09:31 +02003014 ret = LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02003015 goto error;
3016 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003017 }
3018
Radek Krejcif03a9e22020-09-18 20:09:31 +02003019 print_expr_struct_debug(expr);
3020 *expr_p = expr;
3021 return LY_SUCCESS;
Radek Krejcib1646a92018-11-02 16:08:26 +01003022
3023error:
Radek Krejcif03a9e22020-09-18 20:09:31 +02003024 lyxp_expr_free(ctx, expr);
3025 return ret;
Radek Krejcib1646a92018-11-02 16:08:26 +01003026}
3027
Michal Vasko1734be92020-09-22 08:55:10 +02003028LY_ERR
3029lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, struct lyxp_expr **dup_p)
Michal Vasko004d3152020-06-11 19:59:22 +02003030{
Michal Vasko1734be92020-09-22 08:55:10 +02003031 LY_ERR ret = LY_SUCCESS;
3032 struct lyxp_expr *dup = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003033 uint32_t i, j;
3034
Michal Vasko7f45cf22020-10-01 12:49:44 +02003035 if (!exp) {
3036 goto cleanup;
3037 }
3038
Michal Vasko004d3152020-06-11 19:59:22 +02003039 dup = calloc(1, sizeof *dup);
Michal Vasko1734be92020-09-22 08:55:10 +02003040 LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx); ret = LY_EMEM, cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02003041
Michal Vasko08e9b112021-06-11 15:41:17 +02003042 if (exp->used) {
3043 dup->tokens = malloc(exp->used * sizeof *dup->tokens);
3044 LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx); ret = LY_EMEM, cleanup);
3045 memcpy(dup->tokens, exp->tokens, exp->used * sizeof *dup->tokens);
Michal Vasko004d3152020-06-11 19:59:22 +02003046
Michal Vasko08e9b112021-06-11 15:41:17 +02003047 dup->tok_pos = malloc(exp->used * sizeof *dup->tok_pos);
3048 LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx); ret = LY_EMEM, cleanup);
3049 memcpy(dup->tok_pos, exp->tok_pos, exp->used * sizeof *dup->tok_pos);
Michal Vasko004d3152020-06-11 19:59:22 +02003050
Michal Vasko08e9b112021-06-11 15:41:17 +02003051 dup->tok_len = malloc(exp->used * sizeof *dup->tok_len);
3052 LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx); ret = LY_EMEM, cleanup);
3053 memcpy(dup->tok_len, exp->tok_len, exp->used * sizeof *dup->tok_len);
Michal Vasko004d3152020-06-11 19:59:22 +02003054
Michal Vasko08e9b112021-06-11 15:41:17 +02003055 dup->repeat = malloc(exp->used * sizeof *dup->repeat);
3056 LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx); ret = LY_EMEM, cleanup);
3057 for (i = 0; i < exp->used; ++i) {
3058 if (!exp->repeat[i]) {
3059 dup->repeat[i] = NULL;
3060 } else {
3061 for (j = 0; exp->repeat[i][j]; ++j) {}
3062 /* the ending 0 as well */
3063 ++j;
Michal Vasko004d3152020-06-11 19:59:22 +02003064
Michal Vasko08e9b112021-06-11 15:41:17 +02003065 dup->repeat[i] = malloc(j * sizeof **dup->repeat);
3066 LY_CHECK_ERR_GOTO(!dup->repeat[i], LOGMEM(ctx); ret = LY_EMEM, cleanup);
3067 memcpy(dup->repeat[i], exp->repeat[i], j * sizeof **dup->repeat);
3068 dup->repeat[i][j - 1] = 0;
3069 }
Michal Vasko004d3152020-06-11 19:59:22 +02003070 }
3071 }
3072
3073 dup->used = exp->used;
3074 dup->size = exp->used;
Michal Vasko1734be92020-09-22 08:55:10 +02003075 LY_CHECK_GOTO(ret = lydict_insert(ctx, exp->expr, 0, &dup->expr), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02003076
Michal Vasko1734be92020-09-22 08:55:10 +02003077cleanup:
3078 if (ret) {
3079 lyxp_expr_free(ctx, dup);
3080 } else {
3081 *dup_p = dup;
3082 }
3083 return ret;
Michal Vasko004d3152020-06-11 19:59:22 +02003084}
3085
Michal Vasko03ff5a72019-09-11 13:49:33 +02003086/**
3087 * @brief Get the last-added schema node that is currently in the context.
3088 *
3089 * @param[in] set Set to search in.
3090 * @return Last-added schema context node, NULL if no node is in context.
3091 */
3092static struct lysc_node *
3093warn_get_scnode_in_ctx(struct lyxp_set *set)
3094{
3095 uint32_t i;
3096
3097 if (!set || (set->type != LYXP_SET_SCNODE_SET)) {
3098 return NULL;
3099 }
3100
3101 i = set->used;
3102 do {
3103 --i;
Radek Krejcif13b87b2020-12-01 22:02:17 +01003104 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003105 /* if there are more, simply return the first found (last added) */
3106 return set->val.scnodes[i].scnode;
3107 }
3108 } while (i);
3109
3110 return NULL;
3111}
3112
3113/**
3114 * @brief Test whether a type is numeric - integer type or decimal64.
3115 *
3116 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003117 * @return Boolean value whether @p type is numeric type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003118 */
Radek Krejci857189e2020-09-01 13:26:36 +02003119static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003120warn_is_numeric_type(struct lysc_type *type)
3121{
3122 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003123 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003124 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003125
3126 switch (type->basetype) {
3127 case LY_TYPE_DEC64:
3128 case LY_TYPE_INT8:
3129 case LY_TYPE_UINT8:
3130 case LY_TYPE_INT16:
3131 case LY_TYPE_UINT16:
3132 case LY_TYPE_INT32:
3133 case LY_TYPE_UINT32:
3134 case LY_TYPE_INT64:
3135 case LY_TYPE_UINT64:
3136 return 1;
3137 case LY_TYPE_UNION:
3138 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003139 LY_ARRAY_FOR(uni->types, u) {
3140 ret = warn_is_numeric_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003141 if (ret) {
3142 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003143 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003144 }
3145 }
3146 /* did not find any suitable type */
3147 return 0;
3148 case LY_TYPE_LEAFREF:
3149 return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype);
3150 default:
3151 return 0;
3152 }
3153}
3154
3155/**
3156 * @brief Test whether a type is string-like - no integers, decimal64 or binary.
3157 *
3158 * @param[in] type Type to test.
Radek Krejci857189e2020-09-01 13:26:36 +02003159 * @return Boolean value whether @p type's basetype is string type or not.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003160 */
Radek Krejci857189e2020-09-01 13:26:36 +02003161static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003162warn_is_string_type(struct lysc_type *type)
3163{
3164 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003165 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003166 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003167
3168 switch (type->basetype) {
3169 case LY_TYPE_BITS:
3170 case LY_TYPE_ENUM:
3171 case LY_TYPE_IDENT:
3172 case LY_TYPE_INST:
3173 case LY_TYPE_STRING:
3174 return 1;
3175 case LY_TYPE_UNION:
3176 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003177 LY_ARRAY_FOR(uni->types, u) {
3178 ret = warn_is_string_type(uni->types[u]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003179 if (ret) {
3180 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003181 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003182 }
3183 }
3184 /* did not find any suitable type */
3185 return 0;
3186 case LY_TYPE_LEAFREF:
3187 return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype);
3188 default:
3189 return 0;
3190 }
3191}
3192
3193/**
3194 * @brief Test whether a type is one specific type.
3195 *
3196 * @param[in] type Type to test.
3197 * @param[in] base Expected type.
Radek Krejci857189e2020-09-01 13:26:36 +02003198 * @return Boolean value whether the given @p type is of the specific basetype @p base.
Michal Vasko03ff5a72019-09-11 13:49:33 +02003199 */
Radek Krejci857189e2020-09-01 13:26:36 +02003200static ly_bool
Michal Vasko03ff5a72019-09-11 13:49:33 +02003201warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base)
3202{
3203 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003204 ly_bool ret;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003205 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003206
3207 if (type->basetype == base) {
3208 return 1;
3209 } else if (type->basetype == LY_TYPE_UNION) {
3210 uni = (struct lysc_type_union *)type;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003211 LY_ARRAY_FOR(uni->types, u) {
3212 ret = warn_is_specific_type(uni->types[u], base);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003213 if (ret) {
3214 /* found a suitable type */
Radek Krejci857189e2020-09-01 13:26:36 +02003215 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003216 }
3217 }
3218 /* did not find any suitable type */
3219 return 0;
3220 } else if (type->basetype == LY_TYPE_LEAFREF) {
3221 return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base);
3222 }
3223
3224 return 0;
3225}
3226
3227/**
3228 * @brief Get next type of a (union) type.
3229 *
3230 * @param[in] type Base type.
3231 * @param[in] prev_type Previously returned type.
3232 * @return Next type or NULL.
3233 */
3234static struct lysc_type *
3235warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type)
3236{
3237 struct lysc_type_union *uni;
Radek Krejci857189e2020-09-01 13:26:36 +02003238 ly_bool found = 0;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003239 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003240
3241 switch (type->basetype) {
3242 case LY_TYPE_UNION:
3243 uni = (struct lysc_type_union *)type;
3244 if (!prev_type) {
3245 return uni->types[0];
3246 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003247 LY_ARRAY_FOR(uni->types, u) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003248 if (found) {
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003249 return uni->types[u];
Michal Vasko03ff5a72019-09-11 13:49:33 +02003250 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +02003251 if (prev_type == uni->types[u]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003252 found = 1;
3253 }
3254 }
3255 return NULL;
3256 default:
3257 if (prev_type) {
3258 assert(type == prev_type);
3259 return NULL;
3260 } else {
3261 return type;
3262 }
3263 }
3264}
3265
3266/**
3267 * @brief Test whether 2 types have a common type.
3268 *
3269 * @param[in] type1 First type.
3270 * @param[in] type2 Second type.
3271 * @return 1 if they do, 0 otherwise.
3272 */
3273static int
3274warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2)
3275{
3276 struct lysc_type *t1, *rt1, *t2, *rt2;
3277
3278 t1 = NULL;
3279 while ((t1 = warn_is_equal_type_next_type(type1, t1))) {
3280 if (t1->basetype == LY_TYPE_LEAFREF) {
3281 rt1 = ((struct lysc_type_leafref *)t1)->realtype;
3282 } else {
3283 rt1 = t1;
3284 }
3285
3286 t2 = NULL;
3287 while ((t2 = warn_is_equal_type_next_type(type2, t2))) {
3288 if (t2->basetype == LY_TYPE_LEAFREF) {
3289 rt2 = ((struct lysc_type_leafref *)t2)->realtype;
3290 } else {
3291 rt2 = t2;
3292 }
3293
3294 if (rt2->basetype == rt1->basetype) {
3295 /* match found */
3296 return 1;
3297 }
3298 }
3299 }
3300
3301 return 0;
3302}
3303
3304/**
Michal Vaskoaa956522021-11-11 10:45:34 +01003305 * @brief Print warning with information about the XPath subexpression that caused previous warning.
3306 *
3307 * @param[in] ctx Context for logging.
3308 * @param[in] tok_pos Index of the subexpression in the whole expression.
3309 * @param[in] subexpr Subexpression start.
3310 * @param[in] subexpr_len Length of @p subexpr to print.
3311 * @param[in] cur_scnode Expression context node.
3312 */
3313static void
3314warn_subexpr_log(const struct ly_ctx *ctx, uint16_t tok_pos, const char *subexpr, int subexpr_len,
3315 const struct lysc_node *cur_scnode)
3316{
3317 char *path;
3318
3319 path = lysc_path(cur_scnode, LYSC_PATH_LOG, NULL, 0);
3320 LOGWRN(ctx, "Previous warning generated by XPath subexpression[%" PRIu16 "] \"%.*s\" with context node \"%s\".",
3321 tok_pos, subexpr_len, subexpr, path);
3322 free(path);
3323}
3324
3325/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02003326 * @brief Check both operands of comparison operators.
3327 *
3328 * @param[in] ctx Context for errors.
3329 * @param[in] set1 First operand set.
3330 * @param[in] set2 Second operand set.
3331 * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!=').
3332 * @param[in] expr Start of the expression to print with the warning.
3333 * @param[in] tok_pos Token position.
3334 */
3335static void
Michal Vaskoaa956522021-11-11 10:45:34 +01003336warn_operands(struct ly_ctx *ctx, struct lyxp_set *set1, struct lyxp_set *set2, ly_bool numbers_only, const char *expr,
3337 uint16_t tok_pos)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003338{
3339 struct lysc_node_leaf *node1, *node2;
Radek Krejci857189e2020-09-01 13:26:36 +02003340 ly_bool leaves = 1, warning = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003341
3342 node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1);
3343 node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2);
3344
3345 if (!node1 && !node2) {
3346 /* no node-sets involved, nothing to do */
3347 return;
3348 }
3349
3350 if (node1) {
3351 if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3352 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name);
3353 warning = 1;
3354 leaves = 0;
3355 } else if (numbers_only && !warn_is_numeric_type(node1->type)) {
3356 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name);
3357 warning = 1;
3358 }
3359 }
3360
3361 if (node2) {
3362 if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3363 LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name);
3364 warning = 1;
3365 leaves = 0;
3366 } else if (numbers_only && !warn_is_numeric_type(node2->type)) {
3367 LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name);
3368 warning = 1;
3369 }
3370 }
3371
3372 if (node1 && node2 && leaves && !numbers_only) {
Michal Vasko69730152020-10-09 16:30:07 +02003373 if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)) ||
3374 (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type)) ||
3375 (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type) &&
3376 !warn_is_equal_type(node1->type, node2->type))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003377 LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name);
3378 warning = 1;
3379 }
3380 }
3381
3382 if (warning) {
Michal Vaskoaa956522021-11-11 10:45:34 +01003383 warn_subexpr_log(ctx, tok_pos, expr + tok_pos, 20, set1->cur_scnode);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003384 }
3385}
3386
3387/**
3388 * @brief Check that a value is valid for a leaf. If not applicable, does nothing.
3389 *
3390 * @param[in] exp Parsed XPath expression.
3391 * @param[in] set Set with the leaf/leaf-list.
3392 * @param[in] val_exp Index of the value (literal/number) in @p exp.
3393 * @param[in] equal_exp Index of the start of the equality expression in @p exp.
3394 * @param[in] last_equal_exp Index of the end of the equality expression in @p exp.
3395 */
3396static void
Michal Vasko40308e72020-10-20 16:38:40 +02003397warn_equality_value(const struct lyxp_expr *exp, struct lyxp_set *set, uint16_t val_exp, uint16_t equal_exp,
3398 uint16_t last_equal_exp)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003399{
3400 struct lysc_node *scnode;
3401 struct lysc_type *type;
3402 char *value;
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003403 struct lyd_value storage;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003404 LY_ERR rc;
3405 struct ly_err_item *err = NULL;
3406
Michal Vasko69730152020-10-09 16:30:07 +02003407 if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST)) &&
3408 ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003409 /* check that the node can have the specified value */
3410 if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) {
3411 value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2);
3412 } else {
3413 value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]);
3414 }
3415 if (!value) {
3416 LOGMEM(set->ctx);
3417 return;
3418 }
3419
3420 if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) {
3421 LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding"
Michal Vasko69730152020-10-09 16:30:07 +02003422 " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value);
Michal Vaskoaa956522021-11-11 10:45:34 +01003423 warn_subexpr_log(set->ctx, exp->tok_pos[equal_exp], exp->expr + exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003424 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vaskoaa956522021-11-11 10:45:34 +01003425 set->cur_scnode);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003426 }
3427
3428 type = ((struct lysc_node_leaf *)scnode)->type;
3429 if (type->basetype != LY_TYPE_IDENT) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003430 rc = type->plugin->store(set->ctx, type, value, strlen(value), 0, set->format, set->prefix_data,
Michal Vasko405cc9e2020-12-01 12:01:27 +01003431 LYD_HINT_DATA, scnode, &storage, NULL, &err);
Michal Vaskobf42e832020-11-23 16:59:42 +01003432 if (rc == LY_EINCOMPLETE) {
3433 rc = LY_SUCCESS;
3434 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003435
3436 if (err) {
3437 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg);
3438 ly_err_free(err);
3439 } else if (rc != LY_SUCCESS) {
3440 LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value);
3441 }
3442 if (rc != LY_SUCCESS) {
Michal Vaskoaa956522021-11-11 10:45:34 +01003443 warn_subexpr_log(set->ctx, exp->tok_pos[equal_exp], exp->expr + exp->tok_pos[equal_exp],
Radek Krejci0f969882020-08-21 16:56:47 +02003444 (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp],
Michal Vaskoaa956522021-11-11 10:45:34 +01003445 set->cur_scnode);
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003446 } else {
3447 type->plugin->free(set->ctx, &storage);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003448 }
3449 }
3450 free(value);
3451 }
3452}
3453
3454/*
3455 * XPath functions
3456 */
3457
3458/**
3459 * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN
3460 * depending on whether the first node bit value from the second argument is set.
3461 *
3462 * @param[in] args Array of arguments.
3463 * @param[in] arg_count Count of elements in @p args.
3464 * @param[in,out] set Context and result set at the same time.
3465 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003466 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003467 */
3468static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003469xpath_bit_is_set(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003470{
3471 struct lyd_node_term *leaf;
3472 struct lysc_node_leaf *sleaf;
Michal Vasko2588b952021-07-29 07:43:26 +02003473 struct lyd_value_bits *bits;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003474 LY_ERR rc = LY_SUCCESS;
Michal Vaskofd69e1d2020-07-03 11:57:17 +02003475 LY_ARRAY_COUNT_TYPE u;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003476
3477 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003478 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003479 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003480 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3481 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3482 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3483 sleaf->name);
3484 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) {
3485 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name);
3486 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003487 }
3488
3489 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3490 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003491 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3492 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003493 } else if (!warn_is_string_type(sleaf->type)) {
3494 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003495 }
3496 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003497 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003498 return rc;
3499 }
3500
Michal Vaskod3678892020-05-21 10:06:58 +02003501 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003502 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 +02003503 return LY_EVALID;
3504 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003505 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003506 LY_CHECK_RET(rc);
3507
3508 set_fill_boolean(set, 0);
Michal Vaskod3678892020-05-21 10:06:58 +02003509 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003510 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
Michal Vasko2588b952021-07-29 07:43:26 +02003511 if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (leaf->value.realtype->basetype == LY_TYPE_BITS)) {
3512 LYD_VALUE_GET(&leaf->value, bits);
3513 LY_ARRAY_FOR(bits->items, u) {
3514 if (!strcmp(bits->items[u]->name, args[1]->val.str)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003515 set_fill_boolean(set, 1);
3516 break;
3517 }
3518 }
3519 }
3520 }
3521
3522 return LY_SUCCESS;
3523}
3524
3525/**
3526 * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN
3527 * with the argument converted to boolean.
3528 *
3529 * @param[in] args Array of arguments.
3530 * @param[in] arg_count Count of elements in @p args.
3531 * @param[in,out] set Context and result set at the same time.
3532 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003533 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003534 */
3535static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003536xpath_boolean(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003537{
3538 LY_ERR rc;
3539
3540 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02003541 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003542 return LY_SUCCESS;
3543 }
3544
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003545 rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003546 LY_CHECK_RET(rc);
3547 set_fill_set(set, args[0]);
3548
3549 return LY_SUCCESS;
3550}
3551
3552/**
3553 * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER
3554 * with the first argument rounded up to the nearest integer.
3555 *
3556 * @param[in] args Array of arguments.
3557 * @param[in] arg_count Count of elements in @p args.
3558 * @param[in,out] set Context and result set at the same time.
3559 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003560 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003561 */
3562static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003563xpath_ceiling(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003564{
3565 struct lysc_node_leaf *sleaf;
3566 LY_ERR rc = LY_SUCCESS;
3567
3568 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003569 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003570 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003571 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3572 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3573 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3574 sleaf->name);
3575 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
3576 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
3577 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003578 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003579 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003580 return rc;
3581 }
3582
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003583 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003584 LY_CHECK_RET(rc);
3585 if ((long long)args[0]->val.num != args[0]->val.num) {
3586 set_fill_number(set, ((long long)args[0]->val.num) + 1);
3587 } else {
3588 set_fill_number(set, args[0]->val.num);
3589 }
3590
3591 return LY_SUCCESS;
3592}
3593
3594/**
3595 * @brief Execute the XPath concat(string, string, string*) function.
3596 * Returns LYXP_SET_STRING with the concatenation of all the arguments.
3597 *
3598 * @param[in] args Array of arguments.
3599 * @param[in] arg_count Count of elements in @p args.
3600 * @param[in,out] set Context and result set at the same time.
3601 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003602 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003603 */
3604static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003605xpath_concat(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003606{
3607 uint16_t i;
3608 char *str = NULL;
3609 size_t used = 1;
3610 LY_ERR rc = LY_SUCCESS;
3611 struct lysc_node_leaf *sleaf;
3612
3613 if (options & LYXP_SCNODE_ALL) {
3614 for (i = 0; i < arg_count; ++i) {
3615 if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) {
3616 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3617 LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +02003618 i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003619 } else if (!warn_is_string_type(sleaf->type)) {
Radek Krejci70124c82020-08-14 22:17:03 +02003620 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 +02003621 }
3622 }
3623 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003624 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003625 return rc;
3626 }
3627
3628 for (i = 0; i < arg_count; ++i) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003629 rc = lyxp_set_cast(args[i], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003630 if (rc != LY_SUCCESS) {
3631 free(str);
3632 return rc;
3633 }
3634
3635 str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char));
3636 LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM);
3637 strcpy(str + used - 1, args[i]->val.str);
3638 used += strlen(args[i]->val.str);
3639 }
3640
3641 /* free, kind of */
Michal Vaskod3678892020-05-21 10:06:58 +02003642 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003643 set->type = LYXP_SET_STRING;
3644 set->val.str = str;
3645
3646 return LY_SUCCESS;
3647}
3648
3649/**
3650 * @brief Execute the XPath contains(string, string) function.
3651 * Returns LYXP_SET_BOOLEAN whether the second argument can
3652 * be found in the first or not.
3653 *
3654 * @param[in] args Array of arguments.
3655 * @param[in] arg_count Count of elements in @p args.
3656 * @param[in,out] set Context and result set at the same time.
3657 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003658 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003659 */
3660static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003661xpath_contains(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003662{
3663 struct lysc_node_leaf *sleaf;
3664 LY_ERR rc = LY_SUCCESS;
3665
3666 if (options & LYXP_SCNODE_ALL) {
3667 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3668 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003669 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3670 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003671 } else if (!warn_is_string_type(sleaf->type)) {
3672 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003673 }
3674 }
3675
3676 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3677 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003678 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3679 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003680 } else if (!warn_is_string_type(sleaf->type)) {
3681 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003682 }
3683 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003684 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003685 return rc;
3686 }
3687
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003688 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003689 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01003690 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003691 LY_CHECK_RET(rc);
3692
3693 if (strstr(args[0]->val.str, args[1]->val.str)) {
3694 set_fill_boolean(set, 1);
3695 } else {
3696 set_fill_boolean(set, 0);
3697 }
3698
3699 return LY_SUCCESS;
3700}
3701
3702/**
3703 * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER
3704 * with the size of the node-set from the argument.
3705 *
3706 * @param[in] args Array of arguments.
3707 * @param[in] arg_count Count of elements in @p args.
3708 * @param[in,out] set Context and result set at the same time.
3709 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003710 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003711 */
3712static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003713xpath_count(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003714{
Michal Vasko03ff5a72019-09-11 13:49:33 +02003715 LY_ERR rc = LY_SUCCESS;
3716
3717 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003718 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003719 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003720 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003721 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003722 return rc;
3723 }
3724
Michal Vasko03ff5a72019-09-11 13:49:33 +02003725 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003726 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003727 return LY_EVALID;
3728 }
3729
3730 set_fill_number(set, args[0]->used);
3731 return LY_SUCCESS;
3732}
3733
3734/**
3735 * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET
3736 * with the context with the intial node.
3737 *
3738 * @param[in] args Array of arguments.
3739 * @param[in] arg_count Count of elements in @p args.
3740 * @param[in,out] set Context and result set at the same time.
3741 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003742 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003743 */
3744static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003745xpath_current(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003746{
3747 if (arg_count || args) {
Radek Krejcie87c7dc2021-06-02 21:25:42 +02003748 LOGVAL(set->ctx, LY_VCODE_XP_INARGCOUNT, arg_count, LY_PRI_LENSTR("current()"));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003749 return LY_EVALID;
3750 }
3751
3752 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02003753 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003754
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003755 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, set->cur_scnode, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003756 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02003757 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003758
3759 /* position is filled later */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02003760 set_insert_node(set, set->cur_node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003761 }
3762
3763 return LY_SUCCESS;
3764}
3765
3766/**
3767 * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either
3768 * leafref or instance-identifier target node(s).
3769 *
3770 * @param[in] args Array of arguments.
3771 * @param[in] arg_count Count of elements in @p args.
3772 * @param[in,out] set Context and result set at the same time.
3773 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003774 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003775 */
3776static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003777xpath_deref(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003778{
3779 struct lyd_node_term *leaf;
Michal Vasko42e497c2020-01-06 08:38:25 +01003780 struct lysc_node_leaf *sleaf = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02003781 struct lysc_type_leafref *lref;
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003782 const struct lysc_node *target;
Michal Vasko004d3152020-06-11 19:59:22 +02003783 struct ly_path *p;
3784 struct lyd_node *node;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003785 char *errmsg = NULL;
Michal Vasko00cbf532020-06-15 13:58:47 +02003786 uint8_t oper;
Michal Vasko741bb562021-06-24 11:59:50 +02003787 LY_ERR r;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003788
3789 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003790 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003791 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003792 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
Michal Vasko423ba3f2021-07-19 13:08:50 +02003793 if (!(sleaf->nodetype & LYD_NODE_TERM)) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003794 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
3795 sleaf->name);
Michal Vaskoed725d72021-06-23 12:03:45 +02003796 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) &&
3797 !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003798 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".",
3799 __func__, sleaf->name);
3800 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003801 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003802 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko423ba3f2021-07-19 13:08:50 +02003803 if (sleaf && (sleaf->nodetype & LYD_NODE_TERM) && (sleaf->type->basetype == LY_TYPE_LEAFREF)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003804 lref = (struct lysc_type_leafref *)sleaf->type;
Michal Vaskod1e53b92021-01-28 13:11:06 +01003805 oper = (sleaf->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT;
Michal Vasko004d3152020-06-11 19:59:22 +02003806
3807 /* it was already evaluated on schema, it must succeed */
Michal Vasko741bb562021-06-24 11:59:50 +02003808 r = ly_path_compile_leafref(set->ctx, &sleaf->node, NULL, lref->path, oper, LY_PATH_TARGET_MANY,
Michal Vasko24fc4d12021-07-12 14:41:20 +02003809 LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, &p);
Michal Vasko741bb562021-06-24 11:59:50 +02003810 if (!r) {
3811 /* get the target node */
3812 target = p[LY_ARRAY_COUNT(p) - 1].node;
3813 ly_path_free(set->ctx, p);
Michal Vasko004d3152020-06-11 19:59:22 +02003814
Michal Vasko741bb562021-06-24 11:59:50 +02003815 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM, NULL));
3816 } /* else the target was found before but is disabled so it was removed */
Michal Vaskoae9e4cb2019-09-25 08:43:05 +02003817 }
3818
Michal Vasko741bb562021-06-24 11:59:50 +02003819 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003820 }
3821
Michal Vaskod3678892020-05-21 10:06:58 +02003822 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003823 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02003824 return LY_EVALID;
3825 }
3826
Michal Vaskod3678892020-05-21 10:06:58 +02003827 lyxp_set_free_content(set);
3828 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02003829 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
3830 sleaf = (struct lysc_node_leaf *)leaf->schema;
3831 if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
3832 if (sleaf->type->basetype == LY_TYPE_LEAFREF) {
3833 /* find leafref target */
Radek Krejci0b013302021-03-29 15:22:32 +02003834 if (lyplg_type_resolve_leafref((struct lysc_type_leafref *)sleaf->type, &leaf->node, &leaf->value, set->tree,
Michal Vasko9e685082021-01-29 14:49:09 +01003835 &node, &errmsg)) {
Michal Vasko004d3152020-06-11 19:59:22 +02003836 LOGERR(set->ctx, LY_EVALID, errmsg);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003837 free(errmsg);
Michal Vasko004d3152020-06-11 19:59:22 +02003838 return LY_EVALID;
Michal Vasko03ff5a72019-09-11 13:49:33 +02003839 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02003840 } else {
3841 assert(sleaf->type->basetype == LY_TYPE_INST);
Michal Vasko004d3152020-06-11 19:59:22 +02003842 if (ly_path_eval(leaf->value.target, set->tree, &node)) {
Michal Vaskoba99a3e2020-08-18 15:50:05 +02003843 LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.",
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02003844 lyd_get_value(&leaf->node));
Michal Vasko03ff5a72019-09-11 13:49:33 +02003845 return LY_EVALID;
3846 }
3847 }
Michal Vasko004d3152020-06-11 19:59:22 +02003848
3849 /* insert it */
3850 set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003851 }
3852 }
3853
3854 return LY_SUCCESS;
3855}
3856
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003857static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02003858xpath_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 +02003859{
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01003860 uint32_t i;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003861 LY_ARRAY_COUNT_TYPE u;
3862 struct lyd_node_term *leaf;
3863 struct lysc_node_leaf *sleaf;
3864 struct lyd_meta *meta;
Michal Vasko93923692021-05-07 15:28:02 +02003865 struct lyd_value *val;
3866 const struct lys_module *mod;
3867 const char *id_name;
3868 uint16_t id_len;
3869 struct lysc_ident *id;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003870 LY_ERR rc = LY_SUCCESS;
Radek Krejci857189e2020-09-01 13:26:36 +02003871 ly_bool found;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003872
3873 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02003874 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003875 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func);
Michal Vasko5676f4e2021-04-06 17:14:45 +02003876 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
3877 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3878 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
3879 sleaf->name);
3880 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) {
3881 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name);
3882 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003883 }
3884
3885 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
3886 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
3887 LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype),
Michal Vasko69730152020-10-09 16:30:07 +02003888 sleaf->name);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003889 } else if (!warn_is_string_type(sleaf->type)) {
3890 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name);
3891 }
3892 }
Michal Vasko1a09b212021-05-06 13:00:10 +02003893 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003894 return rc;
3895 }
3896
3897 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01003898 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 +02003899 return LY_EVALID;
3900 }
3901 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
3902 LY_CHECK_RET(rc);
3903
Michal Vasko93923692021-05-07 15:28:02 +02003904 /* parse the identity */
3905 id_name = args[1]->val.str;
3906 id_len = strlen(id_name);
3907 rc = moveto_resolve_model(&id_name, &id_len, set, set->cur_node ? set->cur_node->schema : NULL, &mod);
3908 LY_CHECK_RET(rc);
3909 if (!mod) {
3910 LOGVAL(set->ctx, LYVE_XPATH, "Identity \"%.*s\" without a prefix.", (int)id_len, id_name);
3911 return LY_EVALID;
3912 }
3913
3914 /* find the identity */
3915 found = 0;
3916 LY_ARRAY_FOR(mod->identities, u) {
3917 if (!ly_strncmp(mod->identities[u].name, id_name, id_len)) {
3918 /* we have match */
3919 found = 1;
3920 break;
3921 }
3922 }
3923 if (!found) {
3924 LOGVAL(set->ctx, LYVE_XPATH, "Identity \"%.*s\" not found in module \"%s\".", (int)id_len, id_name, mod->name);
3925 return LY_EVALID;
3926 }
3927 id = &mod->identities[u];
3928
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003929 set_fill_boolean(set, 0);
3930 found = 0;
3931 for (i = 0; i < args[0]->used; ++i) {
3932 if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) {
3933 continue;
3934 }
3935
3936 if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) {
3937 leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node;
3938 sleaf = (struct lysc_node_leaf *)leaf->schema;
3939 val = &leaf->value;
3940 if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) {
3941 /* uninteresting */
3942 continue;
3943 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003944 } else {
3945 meta = args[0]->val.meta[i].meta;
3946 val = &meta->value;
3947 if (val->realtype->basetype != LY_TYPE_IDENT) {
3948 /* uninteresting */
3949 continue;
3950 }
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003951 }
3952
Michal Vasko93923692021-05-07 15:28:02 +02003953 /* check the identity itself */
3954 if (self_match && (id == val->ident)) {
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003955 set_fill_boolean(set, 1);
3956 found = 1;
3957 }
Michal Vasko93923692021-05-07 15:28:02 +02003958 if (!found && !lyplg_type_identity_isderived(id, val->ident)) {
3959 set_fill_boolean(set, 1);
3960 found = 1;
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003961 }
3962
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003963 if (found) {
3964 break;
3965 }
3966 }
3967
3968 return LY_SUCCESS;
3969}
3970
Michal Vasko03ff5a72019-09-11 13:49:33 +02003971/**
3972 * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3973 * on whether the first argument nodes contain a node of an identity derived from the second
3974 * argument identity.
3975 *
3976 * @param[in] args Array of arguments.
3977 * @param[in] arg_count Count of elements in @p args.
3978 * @param[in,out] set Context and result set at the same time.
3979 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003980 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003981 */
3982static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02003983xpath_derived_from(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02003984{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02003985 return xpath_derived_(args, set, options, 0, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02003986}
3987
3988/**
3989 * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending
3990 * on whether the first argument nodes contain a node of an identity that either is or is derived from
3991 * the second argument identity.
3992 *
3993 * @param[in] args Array of arguments.
3994 * @param[in] arg_count Count of elements in @p args.
3995 * @param[in,out] set Context and result set at the same time.
3996 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01003997 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02003998 */
3999static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004000xpath_derived_from_or_self(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004001{
Michal Vaskoe0dd59d2020-07-17 16:10:23 +02004002 return xpath_derived_(args, set, options, 1, __func__);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004003}
4004
4005/**
4006 * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER
4007 * with the integer value of the first node's enum value, otherwise NaN.
4008 *
4009 * @param[in] args Array of arguments.
4010 * @param[in] arg_count Count of elements in @p args.
4011 * @param[in,out] set Context and result set at the same time.
4012 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004013 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004014 */
4015static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004016xpath_enum_value(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004017{
4018 struct lyd_node_term *leaf;
4019 struct lysc_node_leaf *sleaf;
4020 LY_ERR rc = LY_SUCCESS;
4021
4022 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004023 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004024 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004025 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4026 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4027 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4028 sleaf->name);
4029 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) {
4030 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name);
4031 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004032 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004033 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004034 return rc;
4035 }
4036
Michal Vaskod3678892020-05-21 10:06:58 +02004037 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004038 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004039 return LY_EVALID;
4040 }
4041
4042 set_fill_number(set, NAN);
Michal Vaskod3678892020-05-21 10:06:58 +02004043 if (args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004044 leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node;
4045 sleaf = (struct lysc_node_leaf *)leaf->schema;
4046 if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) {
4047 set_fill_number(set, leaf->value.enum_item->value);
4048 }
4049 }
4050
4051 return LY_SUCCESS;
4052}
4053
4054/**
4055 * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN
4056 * with false value.
4057 *
4058 * @param[in] args Array of arguments.
4059 * @param[in] arg_count Count of elements in @p args.
4060 * @param[in,out] set Context and result set at the same time.
4061 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004062 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004063 */
4064static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004065xpath_false(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004066{
4067 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004068 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004069 return LY_SUCCESS;
4070 }
4071
4072 set_fill_boolean(set, 0);
4073 return LY_SUCCESS;
4074}
4075
4076/**
4077 * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER
4078 * with the first argument floored (truncated).
4079 *
4080 * @param[in] args Array of arguments.
4081 * @param[in] arg_count Count of elements in @p args.
4082 * @param[in,out] set Context and result set at the same time.
4083 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004084 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004085 */
4086static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004087xpath_floor(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t UNUSED(options))
Michal Vasko03ff5a72019-09-11 13:49:33 +02004088{
4089 LY_ERR rc;
4090
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004091 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004092 LY_CHECK_RET(rc);
4093 if (isfinite(args[0]->val.num)) {
4094 set_fill_number(set, (long long)args[0]->val.num);
4095 }
4096
4097 return LY_SUCCESS;
4098}
4099
4100/**
4101 * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN
4102 * whether the language of the text matches the one from the argument.
4103 *
4104 * @param[in] args Array of arguments.
4105 * @param[in] arg_count Count of elements in @p args.
4106 * @param[in,out] set Context and result set at the same time.
4107 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004108 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004109 */
4110static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004111xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004112{
4113 const struct lyd_node *node;
4114 struct lysc_node_leaf *sleaf;
Michal Vasko9f96a052020-03-10 09:41:45 +01004115 struct lyd_meta *meta = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004116 const char *val;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004117 LY_ERR rc = LY_SUCCESS;
4118
4119 if (options & LYXP_SCNODE_ALL) {
4120 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4121 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004122 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4123 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004124 } else if (!warn_is_string_type(sleaf->type)) {
4125 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004126 }
4127 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004128 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004129 return rc;
4130 }
4131
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004132 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004133 LY_CHECK_RET(rc);
4134
Michal Vasko03ff5a72019-09-11 13:49:33 +02004135 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004136 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004137 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004138 } else if (!set->used) {
4139 set_fill_boolean(set, 0);
4140 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004141 }
4142
4143 switch (set->val.nodes[0].type) {
4144 case LYXP_NODE_ELEM:
4145 case LYXP_NODE_TEXT:
4146 node = set->val.nodes[0].node;
4147 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004148 case LYXP_NODE_META:
4149 node = set->val.meta[0].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004150 break;
4151 default:
4152 /* nothing to do with roots */
4153 set_fill_boolean(set, 0);
4154 return LY_SUCCESS;
4155 }
4156
Michal Vasko9f96a052020-03-10 09:41:45 +01004157 /* find lang metadata */
Michal Vasko9e685082021-01-29 14:49:09 +01004158 for ( ; node; node = lyd_parent(node)) {
Michal Vasko9f96a052020-03-10 09:41:45 +01004159 for (meta = node->meta; meta; meta = meta->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004160 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004161 if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004162 break;
4163 }
4164 }
4165
Michal Vasko9f96a052020-03-10 09:41:45 +01004166 if (meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004167 break;
4168 }
4169 }
4170
4171 /* compare languages */
Michal Vasko9f96a052020-03-10 09:41:45 +01004172 if (!meta) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004173 set_fill_boolean(set, 0);
4174 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004175 uint64_t i;
4176
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02004177 val = lyd_get_meta_value(meta);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004178 for (i = 0; args[0]->val.str[i]; ++i) {
4179 if (tolower(args[0]->val.str[i]) != tolower(val[i])) {
4180 set_fill_boolean(set, 0);
4181 break;
4182 }
4183 }
4184 if (!args[0]->val.str[i]) {
4185 if (!val[i] || (val[i] == '-')) {
4186 set_fill_boolean(set, 1);
4187 } else {
4188 set_fill_boolean(set, 0);
4189 }
4190 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004191 }
4192
4193 return LY_SUCCESS;
4194}
4195
4196/**
4197 * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER
4198 * with the context size.
4199 *
4200 * @param[in] args Array of arguments.
4201 * @param[in] arg_count Count of elements in @p args.
4202 * @param[in,out] set Context and result set at the same time.
4203 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004204 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004205 */
4206static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004207xpath_last(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004208{
4209 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004210 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004211 return LY_SUCCESS;
4212 }
4213
Michal Vasko03ff5a72019-09-11 13:49:33 +02004214 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004215 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "last()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004216 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004217 } else if (!set->used) {
4218 set_fill_number(set, 0);
4219 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004220 }
4221
4222 set_fill_number(set, set->ctx_size);
4223 return LY_SUCCESS;
4224}
4225
4226/**
4227 * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING
4228 * with the node name without namespace from the argument or the context.
4229 *
4230 * @param[in] args Array of arguments.
4231 * @param[in] arg_count Count of elements in @p args.
4232 * @param[in,out] set Context and result set at the same time.
4233 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004234 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004235 */
4236static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004237xpath_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004238{
4239 struct lyxp_set_node *item;
Michal Vasko69730152020-10-09 16:30:07 +02004240
Michal Vasko03ff5a72019-09-11 13:49:33 +02004241 /* suppress unused variable warning */
4242 (void)options;
4243
4244 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004245 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004246 return LY_SUCCESS;
4247 }
4248
4249 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004250 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004251 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004252 "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004253 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004254 } else if (!args[0]->used) {
4255 set_fill_string(set, "", 0);
4256 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004257 }
4258
4259 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004260 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004261
4262 item = &args[0]->val.nodes[0];
4263 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004264 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004265 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004266 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004267 } else if (!set->used) {
4268 set_fill_string(set, "", 0);
4269 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004270 }
4271
4272 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004273 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004274
4275 item = &set->val.nodes[0];
4276 }
4277
4278 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004279 case LYXP_NODE_NONE:
4280 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004281 case LYXP_NODE_ROOT:
4282 case LYXP_NODE_ROOT_CONFIG:
4283 case LYXP_NODE_TEXT:
4284 set_fill_string(set, "", 0);
4285 break;
4286 case LYXP_NODE_ELEM:
4287 set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name));
4288 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004289 case LYXP_NODE_META:
4290 set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004291 break;
4292 }
4293
4294 return LY_SUCCESS;
4295}
4296
4297/**
4298 * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING
4299 * with the node name fully qualified (with namespace) from the argument or the context.
4300 *
4301 * @param[in] args Array of arguments.
4302 * @param[in] arg_count Count of elements in @p args.
4303 * @param[in,out] set Context and result set at the same time.
4304 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004305 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004306 */
4307static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004308xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004309{
4310 struct lyxp_set_node *item;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004311 struct lys_module *mod = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004312 char *str;
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004313 const char *name = NULL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004314
4315 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004316 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004317 return LY_SUCCESS;
4318 }
4319
4320 if (arg_count) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004321 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004322 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004323 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004324 } else if (!args[0]->used) {
4325 set_fill_string(set, "", 0);
4326 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004327 }
4328
4329 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004330 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004331
4332 item = &args[0]->val.nodes[0];
4333 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004334 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004335 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004336 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004337 } else if (!set->used) {
4338 set_fill_string(set, "", 0);
4339 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004340 }
4341
4342 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004343 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004344
4345 item = &set->val.nodes[0];
4346 }
4347
4348 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004349 case LYXP_NODE_NONE:
4350 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004351 case LYXP_NODE_ROOT:
4352 case LYXP_NODE_ROOT_CONFIG:
4353 case LYXP_NODE_TEXT:
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02004354 /* keep NULL */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004355 break;
4356 case LYXP_NODE_ELEM:
4357 mod = item->node->schema->module;
4358 name = item->node->schema->name;
4359 break;
Michal Vasko9f96a052020-03-10 09:41:45 +01004360 case LYXP_NODE_META:
4361 mod = ((struct lyd_meta *)item->node)->annotation->module;
4362 name = ((struct lyd_meta *)item->node)->name;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004363 break;
4364 }
4365
4366 if (mod && name) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02004367 int rc = asprintf(&str, "%s:%s", ly_get_prefix(mod, set->format, set->prefix_data), name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004368 LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM);
4369 set_fill_string(set, str, strlen(str));
4370 free(str);
4371 } else {
4372 set_fill_string(set, "", 0);
4373 }
4374
4375 return LY_SUCCESS;
4376}
4377
4378/**
4379 * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING
4380 * with the namespace of the node from the argument or the context.
4381 *
4382 * @param[in] args Array of arguments.
4383 * @param[in] arg_count Count of elements in @p args.
4384 * @param[in,out] set Context and result set at the same time.
4385 * @param[in] options XPath options.
4386 * @return LY_ERR (LY_EINVAL for wrong arguments on schema)
4387 */
4388static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004389xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004390{
4391 struct lyxp_set_node *item;
4392 struct lys_module *mod;
Michal Vasko69730152020-10-09 16:30:07 +02004393
Michal Vasko03ff5a72019-09-11 13:49:33 +02004394 /* suppress unused variable warning */
4395 (void)options;
4396
4397 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004398 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004399 return LY_SUCCESS;
4400 }
4401
4402 if (arg_count) {
Michal Vaskod3678892020-05-21 10:06:58 +02004403 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004404 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]),
Michal Vasko69730152020-10-09 16:30:07 +02004405 "namespace-uri(node-set?)");
Michal Vaskod3678892020-05-21 10:06:58 +02004406 return LY_EVALID;
4407 } else if (!args[0]->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004408 set_fill_string(set, "", 0);
4409 return LY_SUCCESS;
4410 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004411
4412 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004413 assert(!set_sort(args[0]));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004414
4415 item = &args[0]->val.nodes[0];
4416 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004417 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004418 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004419 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004420 } else if (!set->used) {
4421 set_fill_string(set, "", 0);
4422 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004423 }
4424
4425 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004426 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02004427
4428 item = &set->val.nodes[0];
4429 }
4430
4431 switch (item->type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01004432 case LYXP_NODE_NONE:
4433 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004434 case LYXP_NODE_ROOT:
4435 case LYXP_NODE_ROOT_CONFIG:
4436 case LYXP_NODE_TEXT:
4437 set_fill_string(set, "", 0);
4438 break;
4439 case LYXP_NODE_ELEM:
Michal Vasko9f96a052020-03-10 09:41:45 +01004440 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02004441 if (item->type == LYXP_NODE_ELEM) {
4442 mod = item->node->schema->module;
Michal Vasko9f96a052020-03-10 09:41:45 +01004443 } else { /* LYXP_NODE_META */
Michal Vasko03ff5a72019-09-11 13:49:33 +02004444 /* annotations */
Michal Vasko9f96a052020-03-10 09:41:45 +01004445 mod = ((struct lyd_meta *)item->node)->annotation->module;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004446 }
4447
4448 set_fill_string(set, mod->ns, strlen(mod->ns));
4449 break;
4450 }
4451
4452 return LY_SUCCESS;
4453}
4454
4455/**
4456 * @brief Execute the XPath node() function (node type). Returns LYXP_SET_NODE_SET
4457 * with only nodes from the context. In practice it either leaves the context
4458 * as it is or returns an empty node set.
4459 *
4460 * @param[in] args Array of arguments.
4461 * @param[in] arg_count Count of elements in @p args.
4462 * @param[in,out] set Context and result set at the same time.
4463 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004464 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004465 */
4466static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004467xpath_node(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004468{
4469 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004470 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004471 return LY_SUCCESS;
4472 }
4473
4474 if (set->type != LYXP_SET_NODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02004475 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004476 }
4477 return LY_SUCCESS;
4478}
4479
4480/**
4481 * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING
4482 * with normalized value (no leading, trailing, double white spaces) of the node
4483 * from the argument or the context.
4484 *
4485 * @param[in] args Array of arguments.
4486 * @param[in] arg_count Count of elements in @p args.
4487 * @param[in,out] set Context and result set at the same time.
4488 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004489 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004490 */
4491static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004492xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004493{
4494 uint16_t i, new_used;
4495 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02004496 ly_bool have_spaces = 0, space_before = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004497 struct lysc_node_leaf *sleaf;
4498 LY_ERR rc = LY_SUCCESS;
4499
4500 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004501 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) &&
4502 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004503 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004504 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4505 sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004506 } else if (!warn_is_string_type(sleaf->type)) {
4507 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004508 }
4509 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004510 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004511 return rc;
4512 }
4513
4514 if (arg_count) {
4515 set_fill_set(set, args[0]);
4516 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004517 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004518 LY_CHECK_RET(rc);
4519
4520 /* is there any normalization necessary? */
4521 for (i = 0; set->val.str[i]; ++i) {
4522 if (is_xmlws(set->val.str[i])) {
4523 if ((i == 0) || space_before || (!set->val.str[i + 1])) {
4524 have_spaces = 1;
4525 break;
4526 }
4527 space_before = 1;
4528 } else {
4529 space_before = 0;
4530 }
4531 }
4532
4533 /* yep, there is */
4534 if (have_spaces) {
4535 /* it's enough, at least one character will go, makes space for ending '\0' */
4536 new = malloc(strlen(set->val.str) * sizeof(char));
4537 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4538 new_used = 0;
4539
4540 space_before = 0;
4541 for (i = 0; set->val.str[i]; ++i) {
4542 if (is_xmlws(set->val.str[i])) {
4543 if ((i == 0) || space_before) {
4544 space_before = 1;
4545 continue;
4546 } else {
4547 space_before = 1;
4548 }
4549 } else {
4550 space_before = 0;
4551 }
4552
4553 new[new_used] = (space_before ? ' ' : set->val.str[i]);
4554 ++new_used;
4555 }
4556
4557 /* at worst there is one trailing space now */
4558 if (new_used && is_xmlws(new[new_used - 1])) {
4559 --new_used;
4560 }
4561
4562 new = ly_realloc(new, (new_used + 1) * sizeof(char));
4563 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
4564 new[new_used] = '\0';
4565
4566 free(set->val.str);
4567 set->val.str = new;
4568 }
4569
4570 return LY_SUCCESS;
4571}
4572
4573/**
4574 * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN
4575 * with the argument converted to boolean and logically inverted.
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.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004581 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004582 */
4583static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004584xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004585{
4586 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004587 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004588 return LY_SUCCESS;
4589 }
4590
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004591 lyxp_set_cast(args[0], LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02004592 if (args[0]->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004593 set_fill_boolean(set, 0);
4594 } else {
4595 set_fill_boolean(set, 1);
4596 }
4597
4598 return LY_SUCCESS;
4599}
4600
4601/**
4602 * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER
4603 * with the number representation of either the argument or the context.
4604 *
4605 * @param[in] args Array of arguments.
4606 * @param[in] arg_count Count of elements in @p args.
4607 * @param[in,out] set Context and result set at the same time.
4608 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004609 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004610 */
4611static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004612xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004613{
4614 LY_ERR rc;
4615
4616 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004617 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004618 return LY_SUCCESS;
4619 }
4620
4621 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004622 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004623 LY_CHECK_RET(rc);
4624 set_fill_set(set, args[0]);
4625 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004626 rc = lyxp_set_cast(set, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004627 LY_CHECK_RET(rc);
4628 }
4629
4630 return LY_SUCCESS;
4631}
4632
4633/**
4634 * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER
4635 * with the context position.
4636 *
4637 * @param[in] args Array of arguments.
4638 * @param[in] arg_count Count of elements in @p args.
4639 * @param[in,out] set Context and result set at the same time.
4640 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004641 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004642 */
4643static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004644xpath_position(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004645{
4646 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004647 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004648 return LY_SUCCESS;
4649 }
4650
Michal Vasko03ff5a72019-09-11 13:49:33 +02004651 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01004652 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "position()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02004653 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02004654 } else if (!set->used) {
4655 set_fill_number(set, 0);
4656 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004657 }
4658
4659 set_fill_number(set, set->ctx_pos);
4660
4661 /* UNUSED in 'Release' build type */
4662 (void)options;
4663 return LY_SUCCESS;
4664}
4665
4666/**
4667 * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN
4668 * depending on whether the second argument regex matches the first argument string. For details refer to
4669 * YANG 1.1 RFC section 10.2.1.
4670 *
4671 * @param[in] args Array of arguments.
4672 * @param[in] arg_count Count of elements in @p args.
4673 * @param[in,out] set Context and result set at the same time.
4674 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004675 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004676 */
4677static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004678xpath_re_match(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004679{
4680 struct lysc_pattern **patterns = NULL, **pattern;
4681 struct lysc_node_leaf *sleaf;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004682 LY_ERR rc = LY_SUCCESS;
4683 struct ly_err_item *err;
4684
4685 if (options & LYXP_SCNODE_ALL) {
4686 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4687 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4688 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 +02004689 } else if (!warn_is_string_type(sleaf->type)) {
4690 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004691 }
4692 }
4693
4694 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4695 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4696 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 +02004697 } else if (!warn_is_string_type(sleaf->type)) {
4698 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004699 }
4700 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004701 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004702 return rc;
4703 }
4704
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004705 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004706 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004707 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004708 LY_CHECK_RET(rc);
4709
4710 LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM);
Radek IÅ¡a45802b52021-02-09 09:21:58 +01004711 *pattern = calloc(1, sizeof **pattern);
Radek Krejciddace2c2021-01-08 11:30:56 +01004712 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01004713 rc = lys_compile_type_pattern_check(set->ctx, args[1]->val.str, &(*pattern)->code);
Radek Krejciddace2c2021-01-08 11:30:56 +01004714 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004715 if (rc != LY_SUCCESS) {
4716 LY_ARRAY_FREE(patterns);
4717 return rc;
4718 }
4719
Radek Krejci0b013302021-03-29 15:22:32 +02004720 rc = lyplg_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004721 pcre2_code_free((*pattern)->code);
4722 free(*pattern);
4723 LY_ARRAY_FREE(patterns);
4724 if (rc && (rc != LY_EVALID)) {
Michal Vasko177d0ed2020-11-23 16:43:03 +01004725 ly_err_print(set->ctx, err);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004726 ly_err_free(err);
4727 return rc;
4728 }
4729
4730 if (rc == LY_EVALID) {
4731 ly_err_free(err);
4732 set_fill_boolean(set, 0);
4733 } else {
4734 set_fill_boolean(set, 1);
4735 }
4736
4737 return LY_SUCCESS;
4738}
4739
4740/**
4741 * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER
4742 * with the rounded first argument. For details refer to
4743 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round.
4744 *
4745 * @param[in] args Array of arguments.
4746 * @param[in] arg_count Count of elements in @p args.
4747 * @param[in,out] set Context and result set at the same time.
4748 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004749 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004750 */
4751static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004752xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004753{
4754 struct lysc_node_leaf *sleaf;
4755 LY_ERR rc = LY_SUCCESS;
4756
4757 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5676f4e2021-04-06 17:14:45 +02004758 if (args[0]->type != LYXP_SET_SCNODE_SET) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004759 LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__);
Michal Vasko5676f4e2021-04-06 17:14:45 +02004760 } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4761 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4762 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype),
4763 sleaf->name);
4764 } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) {
4765 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name);
4766 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02004767 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004768 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004769 return rc;
4770 }
4771
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004772 rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004773 LY_CHECK_RET(rc);
4774
4775 /* cover only the cases where floor can't be used */
4776 if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) {
4777 set_fill_number(set, -0.0f);
4778 } else {
4779 args[0]->val.num += 0.5;
4780 rc = xpath_floor(args, 1, args[0], options);
4781 LY_CHECK_RET(rc);
4782 set_fill_number(set, args[0]->val.num);
4783 }
4784
4785 return LY_SUCCESS;
4786}
4787
4788/**
4789 * @brief Execute the XPath starts-with(string, string) function.
4790 * Returns LYXP_SET_BOOLEAN whether the second argument is
4791 * the prefix of the first or not.
4792 *
4793 * @param[in] args Array of arguments.
4794 * @param[in] arg_count Count of elements in @p args.
4795 * @param[in,out] set Context and result set at the same time.
4796 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004797 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004798 */
4799static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004800xpath_starts_with(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004801{
4802 struct lysc_node_leaf *sleaf;
4803 LY_ERR rc = LY_SUCCESS;
4804
4805 if (options & LYXP_SCNODE_ALL) {
4806 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4807 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4808 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 +02004809 } else if (!warn_is_string_type(sleaf->type)) {
4810 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004811 }
4812 }
4813
4814 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4815 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4816 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 +02004817 } else if (!warn_is_string_type(sleaf->type)) {
4818 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004819 }
4820 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004821 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004822 return rc;
4823 }
4824
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004825 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004826 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004827 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004828 LY_CHECK_RET(rc);
4829
4830 if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) {
4831 set_fill_boolean(set, 0);
4832 } else {
4833 set_fill_boolean(set, 1);
4834 }
4835
4836 return LY_SUCCESS;
4837}
4838
4839/**
4840 * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING
4841 * with the string representation of either the argument or the context.
4842 *
4843 * @param[in] args Array of arguments.
4844 * @param[in] arg_count Count of elements in @p args.
4845 * @param[in,out] set Context and result set at the same time.
4846 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004847 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004848 */
4849static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004850xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004851{
4852 LY_ERR rc;
4853
4854 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02004855 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004856 return LY_SUCCESS;
4857 }
4858
4859 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004860 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004861 LY_CHECK_RET(rc);
4862 set_fill_set(set, args[0]);
4863 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004864 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004865 LY_CHECK_RET(rc);
4866 }
4867
4868 return LY_SUCCESS;
4869}
4870
4871/**
4872 * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER
4873 * with the length of the string in either the argument or the context.
4874 *
4875 * @param[in] args Array of arguments.
4876 * @param[in] arg_count Count of elements in @p args.
4877 * @param[in,out] set Context and result set at the same time.
4878 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004879 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004880 */
4881static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004882xpath_string_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004883{
4884 struct lysc_node_leaf *sleaf;
4885 LY_ERR rc = LY_SUCCESS;
4886
4887 if (options & LYXP_SCNODE_ALL) {
4888 if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4889 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4890 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 +02004891 } else if (!warn_is_string_type(sleaf->type)) {
4892 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004893 }
4894 }
4895 if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) {
4896 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4897 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 +02004898 } else if (!warn_is_string_type(sleaf->type)) {
4899 LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004900 }
4901 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004902 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004903 return rc;
4904 }
4905
4906 if (arg_count) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004907 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004908 LY_CHECK_RET(rc);
4909 set_fill_number(set, strlen(args[0]->val.str));
4910 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004911 rc = lyxp_set_cast(set, LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004912 LY_CHECK_RET(rc);
4913 set_fill_number(set, strlen(set->val.str));
4914 }
4915
4916 return LY_SUCCESS;
4917}
4918
4919/**
4920 * @brief Execute the XPath substring(string, number, number?) function.
4921 * Returns LYXP_SET_STRING substring of the first argument starting
4922 * on the second argument index ending on the third argument index,
4923 * indexed from 1. For exact definition refer to
4924 * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring.
4925 *
4926 * @param[in] args Array of arguments.
4927 * @param[in] arg_count Count of elements in @p args.
4928 * @param[in,out] set Context and result set at the same time.
4929 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01004930 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02004931 */
4932static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02004933xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02004934{
Radek Krejci1deb5be2020-08-26 16:43:36 +02004935 int32_t start, len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004936 uint16_t str_start, str_len, pos;
4937 struct lysc_node_leaf *sleaf;
4938 LY_ERR rc = LY_SUCCESS;
4939
4940 if (options & LYXP_SCNODE_ALL) {
4941 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
4942 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4943 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 +02004944 } else if (!warn_is_string_type(sleaf->type)) {
4945 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004946 }
4947 }
4948
4949 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
4950 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4951 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 +02004952 } else if (!warn_is_numeric_type(sleaf->type)) {
4953 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004954 }
4955 }
4956
Michal Vasko69730152020-10-09 16:30:07 +02004957 if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET) &&
4958 (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004959 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
4960 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 +02004961 } else if (!warn_is_numeric_type(sleaf->type)) {
4962 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004963 }
4964 }
Michal Vasko1a09b212021-05-06 13:00:10 +02004965 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004966 return rc;
4967 }
4968
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01004969 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02004970 LY_CHECK_RET(rc);
4971
4972 /* start */
4973 if (xpath_round(&args[1], 1, args[1], options)) {
4974 return -1;
4975 }
4976 if (isfinite(args[1]->val.num)) {
4977 start = args[1]->val.num - 1;
4978 } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004979 start = INT32_MIN;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004980 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004981 start = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004982 }
4983
4984 /* len */
4985 if (arg_count == 3) {
4986 rc = xpath_round(&args[2], 1, args[2], options);
4987 LY_CHECK_RET(rc);
Radek Krejci1deb5be2020-08-26 16:43:36 +02004988 if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02004989 len = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02004990 } else if (isfinite(args[2]->val.num)) {
4991 len = args[2]->val.num;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004992 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004993 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004994 }
4995 } else {
Radek Krejci1deb5be2020-08-26 16:43:36 +02004996 len = INT32_MAX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02004997 }
4998
4999 /* find matching character positions */
5000 str_start = 0;
5001 str_len = 0;
5002 for (pos = 0; args[0]->val.str[pos]; ++pos) {
5003 if (pos < start) {
5004 ++str_start;
5005 } else if (pos < start + len) {
5006 ++str_len;
5007 } else {
5008 break;
5009 }
5010 }
5011
5012 set_fill_string(set, args[0]->val.str + str_start, str_len);
5013 return LY_SUCCESS;
5014}
5015
5016/**
5017 * @brief Execute the XPath substring-after(string, string) function.
5018 * Returns LYXP_SET_STRING with the string succeeding the occurance
5019 * of the second argument in the first or an empty string.
5020 *
5021 * @param[in] args Array of arguments.
5022 * @param[in] arg_count Count of elements in @p args.
5023 * @param[in,out] set Context and result set at the same time.
5024 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005025 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005026 */
5027static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005028xpath_substring_after(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005029{
5030 char *ptr;
5031 struct lysc_node_leaf *sleaf;
5032 LY_ERR rc = LY_SUCCESS;
5033
5034 if (options & LYXP_SCNODE_ALL) {
5035 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5036 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5037 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 +02005038 } else if (!warn_is_string_type(sleaf->type)) {
5039 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005040 }
5041 }
5042
5043 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5044 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5045 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 +02005046 } else if (!warn_is_string_type(sleaf->type)) {
5047 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005048 }
5049 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005050 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005051 return rc;
5052 }
5053
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005054 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005055 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005056 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005057 LY_CHECK_RET(rc);
5058
5059 ptr = strstr(args[0]->val.str, args[1]->val.str);
5060 if (ptr) {
5061 set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str)));
5062 } else {
5063 set_fill_string(set, "", 0);
5064 }
5065
5066 return LY_SUCCESS;
5067}
5068
5069/**
5070 * @brief Execute the XPath substring-before(string, string) function.
5071 * Returns LYXP_SET_STRING with the string preceding the occurance
5072 * of the second argument in the first or an empty string.
5073 *
5074 * @param[in] args Array of arguments.
5075 * @param[in] arg_count Count of elements in @p args.
5076 * @param[in,out] set Context and result set at the same time.
5077 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005078 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005079 */
5080static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005081xpath_substring_before(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005082{
5083 char *ptr;
5084 struct lysc_node_leaf *sleaf;
5085 LY_ERR rc = LY_SUCCESS;
5086
5087 if (options & LYXP_SCNODE_ALL) {
5088 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5089 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5090 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 +02005091 } else if (!warn_is_string_type(sleaf->type)) {
5092 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005093 }
5094 }
5095
5096 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5097 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5098 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 +02005099 } else if (!warn_is_string_type(sleaf->type)) {
5100 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005101 }
5102 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005103 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005104 return rc;
5105 }
5106
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005107 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005108 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005109 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005110 LY_CHECK_RET(rc);
5111
5112 ptr = strstr(args[0]->val.str, args[1]->val.str);
5113 if (ptr) {
5114 set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str);
5115 } else {
5116 set_fill_string(set, "", 0);
5117 }
5118
5119 return LY_SUCCESS;
5120}
5121
5122/**
5123 * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER
5124 * with the sum of all the nodes in the context.
5125 *
5126 * @param[in] args Array of arguments.
5127 * @param[in] arg_count Count of elements in @p args.
5128 * @param[in,out] set Context and result set at the same time.
5129 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005130 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005131 */
5132static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005133xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005134{
5135 long double num;
5136 char *str;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01005137 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005138 struct lyxp_set set_item;
5139 struct lysc_node_leaf *sleaf;
5140 LY_ERR rc = LY_SUCCESS;
5141
5142 if (options & LYXP_SCNODE_ALL) {
5143 if (args[0]->type == LYXP_SET_SCNODE_SET) {
5144 for (i = 0; i < args[0]->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005145 if (args[0]->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005146 sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode;
5147 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5148 LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__,
Michal Vasko69730152020-10-09 16:30:07 +02005149 lys_nodetype2str(sleaf->nodetype), sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005150 } else if (!warn_is_numeric_type(sleaf->type)) {
5151 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005152 }
5153 }
5154 }
5155 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005156 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005157 return rc;
5158 }
5159
5160 set_fill_number(set, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005161
5162 if (args[0]->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005163 LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)");
Michal Vasko03ff5a72019-09-11 13:49:33 +02005164 return LY_EVALID;
Michal Vaskod3678892020-05-21 10:06:58 +02005165 } else if (!args[0]->used) {
5166 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005167 }
5168
Michal Vasko5c4e5892019-11-14 12:31:38 +01005169 set_init(&set_item, set);
5170
Michal Vasko03ff5a72019-09-11 13:49:33 +02005171 set_item.type = LYXP_SET_NODE_SET;
Michal Vasko41decbf2021-11-02 11:50:21 +01005172 set_item.val.nodes = calloc(1, sizeof *set_item.val.nodes);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005173 LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM);
5174
5175 set_item.used = 1;
5176 set_item.size = 1;
5177
5178 for (i = 0; i < args[0]->used; ++i) {
5179 set_item.val.nodes[0] = args[0]->val.nodes[i];
5180
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005181 rc = cast_node_set_to_string(&set_item, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005182 LY_CHECK_RET(rc);
5183 num = cast_string_to_number(str);
5184 free(str);
5185 set->val.num += num;
5186 }
5187
5188 free(set_item.val.nodes);
5189
5190 return LY_SUCCESS;
5191}
5192
5193/**
5194 * @brief Execute the XPath text() function (node type). Returns LYXP_SET_NODE_SET
5195 * with the text content of the nodes in the context.
5196 *
5197 * @param[in] args Array of arguments.
5198 * @param[in] arg_count Count of elements in @p args.
5199 * @param[in,out] set Context and result set at the same time.
5200 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005201 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005202 */
5203static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005204xpath_text(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005205{
5206 uint32_t i;
5207
5208 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02005209 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005210 return LY_SUCCESS;
5211 }
5212
Michal Vasko03ff5a72019-09-11 13:49:33 +02005213 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005214 LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "text()");
Michal Vasko03ff5a72019-09-11 13:49:33 +02005215 return LY_EVALID;
5216 }
5217
Michal Vaskod989ba02020-08-24 10:59:24 +02005218 for (i = 0; i < set->used; ) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005219 switch (set->val.nodes[i].type) {
Michal Vasko2caefc12019-11-14 16:07:56 +01005220 case LYXP_NODE_NONE:
5221 LOGINT_RET(set->ctx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005222 case LYXP_NODE_ELEM:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005223 if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) {
5224 set->val.nodes[i].type = LYXP_NODE_TEXT;
5225 ++i;
5226 break;
5227 }
Radek Krejci0f969882020-08-21 16:56:47 +02005228 /* fall through */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005229 case LYXP_NODE_ROOT:
5230 case LYXP_NODE_ROOT_CONFIG:
5231 case LYXP_NODE_TEXT:
Michal Vasko9f96a052020-03-10 09:41:45 +01005232 case LYXP_NODE_META:
Michal Vasko03ff5a72019-09-11 13:49:33 +02005233 set_remove_node(set, i);
5234 break;
5235 }
5236 }
5237
5238 return LY_SUCCESS;
5239}
5240
5241/**
5242 * @brief Execute the XPath translate(string, string, string) function.
5243 * Returns LYXP_SET_STRING with the first argument with the characters
5244 * from the second argument replaced by those on the corresponding
5245 * positions in the third argument.
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
Radek Krejci1deb5be2020-08-26 16:43:36 +02005254xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005255{
5256 uint16_t i, j, new_used;
5257 char *new;
Radek Krejci857189e2020-09-01 13:26:36 +02005258 ly_bool have_removed;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005259 struct lysc_node_leaf *sleaf;
5260 LY_ERR rc = LY_SUCCESS;
5261
5262 if (options & LYXP_SCNODE_ALL) {
5263 if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) {
5264 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5265 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 +02005266 } else if (!warn_is_string_type(sleaf->type)) {
5267 LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005268 }
5269 }
5270
5271 if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) {
5272 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5273 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 +02005274 } else if (!warn_is_string_type(sleaf->type)) {
5275 LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005276 }
5277 }
5278
5279 if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) {
5280 if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) {
5281 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 +02005282 } else if (!warn_is_string_type(sleaf->type)) {
5283 LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005284 }
5285 }
Michal Vasko1a09b212021-05-06 13:00:10 +02005286 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005287 return rc;
5288 }
5289
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005290 rc = lyxp_set_cast(args[0], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005291 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005292 rc = lyxp_set_cast(args[1], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005293 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005294 rc = lyxp_set_cast(args[2], LYXP_SET_STRING);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005295 LY_CHECK_RET(rc);
5296
5297 new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char));
5298 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5299 new_used = 0;
5300
5301 have_removed = 0;
5302 for (i = 0; args[0]->val.str[i]; ++i) {
Radek Krejci857189e2020-09-01 13:26:36 +02005303 ly_bool found = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005304
5305 for (j = 0; args[1]->val.str[j]; ++j) {
5306 if (args[0]->val.str[i] == args[1]->val.str[j]) {
5307 /* removing this char */
5308 if (j >= strlen(args[2]->val.str)) {
5309 have_removed = 1;
5310 found = 1;
5311 break;
5312 }
5313 /* replacing this char */
5314 new[new_used] = args[2]->val.str[j];
5315 ++new_used;
5316 found = 1;
5317 break;
5318 }
5319 }
5320
5321 /* copying this char */
5322 if (!found) {
5323 new[new_used] = args[0]->val.str[i];
5324 ++new_used;
5325 }
5326 }
5327
5328 if (have_removed) {
5329 new = ly_realloc(new, (new_used + 1) * sizeof(char));
5330 LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM);
5331 }
5332 new[new_used] = '\0';
5333
Michal Vaskod3678892020-05-21 10:06:58 +02005334 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005335 set->type = LYXP_SET_STRING;
5336 set->val.str = new;
5337
5338 return LY_SUCCESS;
5339}
5340
5341/**
5342 * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN
5343 * with true value.
5344 *
5345 * @param[in] args Array of arguments.
5346 * @param[in] arg_count Count of elements in @p args.
5347 * @param[in,out] set Context and result set at the same time.
5348 * @param[in] options XPath options.
Michal Vasko0cbf54f2019-12-16 10:01:06 +01005349 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005350 */
5351static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005352xpath_true(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005353{
5354 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02005355 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005356 return LY_SUCCESS;
5357 }
5358
5359 set_fill_boolean(set, 1);
5360 return LY_SUCCESS;
5361}
5362
Michal Vasko03ff5a72019-09-11 13:49:33 +02005363/**
Michal Vasko6346ece2019-09-24 13:12:53 +02005364 * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005365 *
Michal Vasko2104e9f2020-03-06 08:23:25 +01005366 * XPath @p set is expected to be a (sc)node set!
5367 *
Michal Vasko6346ece2019-09-24 13:12:53 +02005368 * @param[in,out] qname Qualified node name. If includes prefix, it is skipped.
5369 * @param[in,out] qname_len Length of @p qname, is updated accordingly.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005370 * @param[in] set Set with general XPath context.
5371 * @param[in] ctx_scnode Context node to inherit module for unprefixed node for ::LY_PREF_JSON.
Michal Vasko6346ece2019-09-24 13:12:53 +02005372 * @param[out] moveto_mod Expected module of a matching node.
5373 * @return LY_ERR
Michal Vasko03ff5a72019-09-11 13:49:33 +02005374 */
Michal Vasko6346ece2019-09-24 13:12:53 +02005375static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005376moveto_resolve_model(const char **qname, uint16_t *qname_len, const struct lyxp_set *set,
5377 const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005378{
Michal Vaskoed4fcfe2020-07-08 10:38:56 +02005379 const struct lys_module *mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005380 const char *ptr;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005381 size_t pref_len;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005382
Michal Vasko2104e9f2020-03-06 08:23:25 +01005383 assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET));
5384
Michal Vasko6346ece2019-09-24 13:12:53 +02005385 if ((ptr = ly_strnchr(*qname, ':', *qname_len))) {
5386 /* specific module */
5387 pref_len = ptr - *qname;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005388 mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, set->prefix_data);
Michal Vasko6346ece2019-09-24 13:12:53 +02005389
Michal Vasko004d3152020-06-11 19:59:22 +02005390 /* check for errors and non-implemented modules, as they are not valid */
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005391 if (!mod || !mod->implemented) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005392 LOGVAL(set->ctx, LY_VCODE_XP_INMOD, pref_len, *qname);
Michal Vasko6346ece2019-09-24 13:12:53 +02005393 return LY_EVALID;
5394 }
Juraj Vijtiukd75faa62019-11-26 14:10:10 +01005395
Michal Vasko6346ece2019-09-24 13:12:53 +02005396 *qname += pref_len + 1;
5397 *qname_len -= pref_len + 1;
5398 } else if (((*qname)[0] == '*') && (*qname_len == 1)) {
5399 /* all modules - special case */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005400 mod = NULL;
Michal Vasko6346ece2019-09-24 13:12:53 +02005401 } else {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005402 switch (set->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02005403 case LY_VALUE_SCHEMA:
5404 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005405 /* current module */
5406 mod = set->cur_mod;
5407 break;
Radek Krejci224d4b42021-04-23 13:54:59 +02005408 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +02005409 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +02005410 case LY_VALUE_LYB:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005411 /* inherit parent (context node) module */
5412 if (ctx_scnode) {
5413 mod = ctx_scnode->module;
5414 } else {
5415 mod = NULL;
5416 }
5417 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02005418 case LY_VALUE_XML:
Michal Vasko52143d12021-04-14 15:36:39 +02005419 /* all nodes need to be prefixed */
5420 LOGVAL(set->ctx, LYVE_DATA, "Non-prefixed node \"%.*s\" in XML xpath found.", *qname_len, *qname);
5421 return LY_EVALID;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005422 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005423 }
5424
Michal Vasko6346ece2019-09-24 13:12:53 +02005425 *moveto_mod = mod;
5426 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005427}
5428
5429/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02005430 * @brief Move context @p set to the root. Handles absolute path.
5431 * Result is LYXP_SET_NODE_SET.
5432 *
5433 * @param[in,out] set Set to use.
5434 * @param[in] options Xpath options.
Michal Vaskob0099a92020-08-31 14:55:23 +02005435 * @return LY_ERR value.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005436 */
Michal Vaskob0099a92020-08-31 14:55:23 +02005437static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02005438moveto_root(struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005439{
aPiecek8b0cc152021-05-31 16:40:31 +02005440 assert(!(options & LYXP_SKIP_EXPR));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005441
5442 if (options & LYXP_SCNODE_ALL) {
Michal Vasko1a09b212021-05-06 13:00:10 +02005443 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskob0099a92020-08-31 14:55:23 +02005444 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005445 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005446 set->type = LYXP_SET_NODE_SET;
5447 set->used = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005448 set_insert_node(set, NULL, 0, set->root_type, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005449 }
Michal Vaskob0099a92020-08-31 14:55:23 +02005450
5451 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005452}
5453
5454/**
5455 * @brief Check @p node as a part of NameTest processing.
5456 *
5457 * @param[in] node Node to check.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005458 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005459 * @param[in] node_name Node name in the dictionary to move to, NULL for any node.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005460 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vaskocdad7122020-11-09 21:04:44 +01005461 * @param[in] options XPath options.
Michal Vasko6346ece2019-09-24 13:12:53 +02005462 * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when,
5463 * LY_EINVAL if netither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005464 */
5465static LY_ERR
Michal Vaskodb08ce52021-10-06 08:57:49 +02005466moveto_node_check(const struct lyd_node *node, const struct lyxp_set *set, const char *node_name,
5467 const struct lys_module *moveto_mod, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005468{
Michal Vaskodca9f122021-07-16 13:56:22 +02005469 if (!node->schema) {
5470 /* opaque node never matches */
5471 return LY_ENOT;
5472 }
5473
Michal Vasko03ff5a72019-09-11 13:49:33 +02005474 /* module check */
5475 if (moveto_mod && (node->schema->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005476 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005477 }
5478
Michal Vasko5c4e5892019-11-14 12:31:38 +01005479 /* context check */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005480 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005481 return LY_EINVAL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005482 } else if (set->context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5483 (node->schema != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005484 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005485 }
5486
5487 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005488 if (node_name && strcmp(node_name, "*") && (node->schema->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005489 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005490 }
5491
Michal Vaskoa1424542019-11-14 16:08:52 +01005492 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01005493 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(node->schema) && !(node->flags & LYD_WHEN_TRUE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005494 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01005495 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005496
5497 /* match */
5498 return LY_SUCCESS;
5499}
5500
5501/**
5502 * @brief Check @p node as a part of schema NameTest processing.
5503 *
5504 * @param[in] node Schema node to check.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005505 * @param[in] ctx_scnode Context node.
5506 * @param[in] set Set to read general context from.
Michal Vaskod3678892020-05-21 10:06:58 +02005507 * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005508 * @param[in] moveto_mod Expected module of the node, NULL for no prefix.
Michal Vasko6346ece2019-09-24 13:12:53 +02005509 * @return LY_ERR (LY_ENOT if node does not match, LY_EINVAL if neither node nor any children match)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005510 */
5511static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005512moveto_scnode_check(const struct lysc_node *node, const struct lysc_node *ctx_scnode, const struct lyxp_set *set,
Radek Krejci0f969882020-08-21 16:56:47 +02005513 const char *node_name, const struct lys_module *moveto_mod)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005514{
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005515 if (!moveto_mod && (!node_name || strcmp(node_name, "*"))) {
5516 switch (set->format) {
Radek Krejci8df109d2021-04-23 12:19:08 +02005517 case LY_VALUE_SCHEMA:
5518 case LY_VALUE_SCHEMA_RESOLVED:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005519 /* use current module */
5520 moveto_mod = set->cur_mod;
5521 break;
Radek Krejci8df109d2021-04-23 12:19:08 +02005522 case LY_VALUE_JSON:
Radek Krejcif9943642021-04-26 10:18:21 +02005523 case LY_VALUE_LYB:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005524 /* inherit module of the context node, if any */
5525 if (ctx_scnode) {
5526 moveto_mod = ctx_scnode->module;
5527 }
5528 break;
Radek Krejci224d4b42021-04-23 13:54:59 +02005529 case LY_VALUE_CANON:
Radek Krejci8df109d2021-04-23 12:19:08 +02005530 case LY_VALUE_XML:
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005531 /* not defined */
5532 LOGINT(set->ctx);
5533 return LY_EINVAL;
5534 }
5535 }
5536
Michal Vasko03ff5a72019-09-11 13:49:33 +02005537 /* module check */
Michal Vaskod3678892020-05-21 10:06:58 +02005538 if (moveto_mod && (node->module != moveto_mod)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005539 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005540 }
5541
5542 /* context check */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005543 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005544 return LY_EINVAL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005545 } else if (set->context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005546 return LY_EINVAL;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005547 }
5548
5549 /* name check */
Michal Vasko61ac2f62020-05-25 12:39:51 +02005550 if (node_name && strcmp(node_name, "*") && (node->name != node_name)) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005551 return LY_ENOT;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005552 }
5553
5554 /* match */
5555 return LY_SUCCESS;
5556}
5557
5558/**
Michal Vaskod3678892020-05-21 10:06:58 +02005559 * @brief Move context @p set to a node. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY). Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005560 *
5561 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005562 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005563 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01005564 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005565 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5566 */
5567static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005568moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005569{
Michal Vaskof03ed032020-03-04 13:31:44 +01005570 uint32_t i;
Michal Vaskodb08ce52021-10-06 08:57:49 +02005571 const struct lyd_node *siblings, *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005572 LY_ERR rc;
5573
aPiecek8b0cc152021-05-31 16:40:31 +02005574 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005575 return LY_SUCCESS;
5576 }
5577
5578 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005579 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005580 return LY_EVALID;
5581 }
5582
Michal Vasko03ff5a72019-09-11 13:49:33 +02005583 for (i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02005584 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005585
5586 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005587 assert(!set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005588
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01005589 /* search in all the trees */
Michal Vaskod3678892020-05-21 10:06:58 +02005590 siblings = set->tree;
Michal Vasko5bfd4be2020-06-23 13:26:19 +02005591 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005592 /* search in children */
Michal Vaskodb08ce52021-10-06 08:57:49 +02005593 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005594 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005595
Michal Vaskod3678892020-05-21 10:06:58 +02005596 for (sub = siblings; sub; sub = sub->next) {
Michal Vaskodb08ce52021-10-06 08:57:49 +02005597 rc = moveto_node_check(sub, set, ncname, moveto_mod, options);
Michal Vaskod3678892020-05-21 10:06:58 +02005598 if (rc == LY_SUCCESS) {
5599 if (!replaced) {
5600 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
5601 replaced = 1;
5602 } else {
5603 set_insert_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005604 }
Michal Vaskod3678892020-05-21 10:06:58 +02005605 ++i;
5606 } else if (rc == LY_EINCOMPLETE) {
5607 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005608 }
5609 }
5610
5611 if (!replaced) {
5612 /* no match */
5613 set_remove_node(set, i);
5614 }
5615 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005616
5617 return LY_SUCCESS;
5618}
5619
5620/**
Michal Vaskod3678892020-05-21 10:06:58 +02005621 * @brief Move context @p set to a node using hashes. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
5622 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005623 *
5624 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005625 * @param[in] scnode Matching node schema.
Michal Vasko004d3152020-06-11 19:59:22 +02005626 * @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 +01005627 * @param[in] options XPath options.
Michal Vaskod3678892020-05-21 10:06:58 +02005628 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5629 */
5630static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005631moveto_node_hash(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates,
5632 uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02005633{
Michal Vasko004d3152020-06-11 19:59:22 +02005634 LY_ERR ret = LY_SUCCESS;
Michal Vaskod3678892020-05-21 10:06:58 +02005635 uint32_t i;
Michal Vaskod3678892020-05-21 10:06:58 +02005636 const struct lyd_node *siblings;
Michal Vasko004d3152020-06-11 19:59:22 +02005637 struct lyd_node *sub, *inst = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02005638
Michal Vasko004d3152020-06-11 19:59:22 +02005639 assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates));
Michal Vaskod3678892020-05-21 10:06:58 +02005640
aPiecek8b0cc152021-05-31 16:40:31 +02005641 if (options & LYXP_SKIP_EXPR) {
Michal Vasko004d3152020-06-11 19:59:22 +02005642 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005643 }
5644
5645 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005646 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko004d3152020-06-11 19:59:22 +02005647 ret = LY_EVALID;
5648 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005649 }
5650
5651 /* context check for all the nodes since we have the schema node */
5652 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
5653 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02005654 goto cleanup;
Michal Vasko69730152020-10-09 16:30:07 +02005655 } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) &&
5656 (scnode != set->context_op)) {
Michal Vasko6b26e742020-07-17 15:02:10 +02005657 lyxp_set_free_content(set);
5658 goto cleanup;
Michal Vasko004d3152020-06-11 19:59:22 +02005659 }
5660
5661 /* create specific data instance if needed */
5662 if (scnode->nodetype == LYS_LIST) {
5663 LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup);
5664 } else if (scnode->nodetype == LYS_LEAFLIST) {
5665 LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02005666 }
5667
5668 for (i = 0; i < set->used; ) {
Michal Vaskod3678892020-05-21 10:06:58 +02005669 siblings = NULL;
5670
5671 if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) {
5672 assert(!set->val.nodes[i].node);
5673
5674 /* search in all the trees */
5675 siblings = set->tree;
5676 } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
5677 /* search in children */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005678 siblings = lyd_child(set->val.nodes[i].node);
Michal Vaskod3678892020-05-21 10:06:58 +02005679 }
5680
5681 /* find the node using hashes */
Michal Vasko004d3152020-06-11 19:59:22 +02005682 if (inst) {
5683 lyd_find_sibling_first(siblings, inst, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005684 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02005685 lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub);
Michal Vaskod3678892020-05-21 10:06:58 +02005686 }
5687
5688 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01005689 if (!(options & LYXP_IGNORE_WHEN) && sub && lysc_has_when(sub->schema) && !(sub->flags & LYD_WHEN_TRUE)) {
Michal Vasko004d3152020-06-11 19:59:22 +02005690 ret = LY_EINCOMPLETE;
5691 goto cleanup;
Michal Vaskod3678892020-05-21 10:06:58 +02005692 }
5693
5694 if (sub) {
5695 /* pos filled later */
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005696 set_replace_node(set, sub, 0, LYXP_NODE_ELEM, i);
Michal Vaskod3678892020-05-21 10:06:58 +02005697 ++i;
Michal Vaskocb1b7c02020-07-03 13:38:12 +02005698 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02005699 /* no match */
5700 set_remove_node(set, i);
5701 }
5702 }
5703
Michal Vasko004d3152020-06-11 19:59:22 +02005704cleanup:
5705 lyd_free_tree(inst);
5706 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02005707}
5708
5709/**
5710 * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY).
5711 *
5712 * @param[in,out] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005713 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005714 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005715 * @param[in] options XPath options.
5716 * @return LY_ERR
5717 */
5718static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005719moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005720{
Radek Krejci857189e2020-09-01 13:26:36 +02005721 ly_bool temp_ctx = 0;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005722 uint32_t getnext_opts;
5723 uint32_t orig_used, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005724 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02005725 const struct lysc_node *iter, *start_parent;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005726 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005727
aPiecek8b0cc152021-05-31 16:40:31 +02005728 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005729 return LY_SUCCESS;
5730 }
5731
5732 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005733 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005734 return LY_EVALID;
5735 }
5736
Michal Vaskocafad9d2019-11-07 15:20:03 +01005737 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01005738 getnext_opts = 0;
Michal Vaskocafad9d2019-11-07 15:20:03 +01005739 if (options & LYXP_SCNODE_OUTPUT) {
5740 getnext_opts |= LYS_GETNEXT_OUTPUT;
5741 }
5742
Michal Vasko03ff5a72019-09-11 13:49:33 +02005743 orig_used = set->used;
5744 for (i = 0; i < orig_used; ++i) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005745 uint32_t idx;
5746
Radek Krejcif13b87b2020-12-01 22:02:17 +01005747 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
5748 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005749 continue;
5750 }
5751
5752 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01005753 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01005754 } else {
Michal Vasko1a09b212021-05-06 13:00:10 +02005755 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005756 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005757
5758 start_parent = set->val.scnodes[i].scnode;
5759
5760 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005761 /* it can actually be in any module, it's all <running>, and even if it's moveto_mod (if set),
Michal Vasko9e9f26d2020-10-12 16:31:33 +02005762 * it can be in a top-level augment (the root node itself is useless in this case) */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005763 mod_idx = 0;
Michal Vaskoa51ef072021-07-02 10:40:30 +02005764 while ((mod = ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02005765 iter = NULL;
Michal Vasko919954a2021-07-26 09:21:42 +02005766 /* module may not be implemented or not compiled yet */
5767 while (mod->compiled && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005768 if (!moveto_scnode_check(iter, NULL, set, ncname, moveto_mod)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005769 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5770
Michal Vasko03ff5a72019-09-11 13:49:33 +02005771 /* we need to prevent these nodes from being considered in this moveto */
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005772 if ((idx < orig_used) && (idx > i)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005773 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005774 temp_ctx = 1;
5775 }
5776 }
5777 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005778 }
5779
Michal Vasko519fd602020-05-26 12:17:39 +02005780 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
5781 iter = NULL;
5782 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005783 if (!moveto_scnode_check(iter, start_parent, set, ncname, moveto_mod)) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005784 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, &idx));
5785
5786 if ((idx < orig_used) && (idx > i)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005787 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005788 temp_ctx = 1;
5789 }
5790 }
5791 }
5792 }
5793 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005794
5795 /* correct temporary in_ctx values */
5796 if (temp_ctx) {
5797 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005798 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NEW_CTX) {
5799 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005800 }
5801 }
5802 }
5803
5804 return LY_SUCCESS;
5805}
5806
5807/**
Michal Vaskod3678892020-05-21 10:06:58 +02005808 * @brief Move context @p set to a node and all its descendants. Result is LYXP_SET_NODE_SET (or LYXP_SET_EMPTY).
Michal Vasko03ff5a72019-09-11 13:49:33 +02005809 * Context position aware.
5810 *
5811 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005812 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005813 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01005814 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005815 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
5816 */
5817static LY_ERR
Michal Vaskocdad7122020-11-09 21:04:44 +01005818moveto_node_alldesc(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005819{
5820 uint32_t i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005821 const struct lyd_node *next, *elem, *start;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005822 struct lyxp_set ret_set;
5823 LY_ERR rc;
5824
aPiecek8b0cc152021-05-31 16:40:31 +02005825 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005826 return LY_SUCCESS;
5827 }
5828
5829 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005830 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005831 return LY_EVALID;
5832 }
5833
Michal Vasko9f96a052020-03-10 09:41:45 +01005834 /* replace the original nodes (and throws away all text and meta nodes, root is replaced by a child) */
Michal Vaskocdad7122020-11-09 21:04:44 +01005835 rc = moveto_node(set, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005836 LY_CHECK_RET(rc);
5837
Michal Vasko6346ece2019-09-24 13:12:53 +02005838 /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005839 set_init(&ret_set, set);
5840 for (i = 0; i < set->used; ++i) {
5841
5842 /* TREE DFS */
5843 start = set->val.nodes[i].node;
5844 for (elem = next = start; elem; elem = next) {
Michal Vaskodb08ce52021-10-06 08:57:49 +02005845 rc = moveto_node_check(elem, set, ncname, moveto_mod, options);
Michal Vasko6346ece2019-09-24 13:12:53 +02005846 if (!rc) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005847 /* add matching node into result set */
5848 set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used);
5849 if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) {
5850 /* the node is a duplicate, we'll process it later in the set */
5851 goto skip_children;
5852 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005853 } else if (rc == LY_EINCOMPLETE) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005854 return rc;
5855 } else if (rc == LY_EINVAL) {
5856 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005857 }
5858
5859 /* TREE DFS NEXT ELEM */
5860 /* select element for the next run - children first */
Radek Krejcia1c1e542020-09-29 16:06:52 +02005861 next = lyd_child(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005862 if (!next) {
5863skip_children:
5864 /* no children, so try siblings, but only if it's not the start,
5865 * that is considered to be the root and it's siblings are not traversed */
5866 if (elem != start) {
5867 next = elem->next;
5868 } else {
5869 break;
5870 }
5871 }
5872 while (!next) {
5873 /* no siblings, go back through the parents */
Michal Vasko9e685082021-01-29 14:49:09 +01005874 if (lyd_parent(elem) == start) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005875 /* we are done, no next element to process */
5876 break;
5877 }
5878 /* parent is already processed, go to its sibling */
Michal Vasko9e685082021-01-29 14:49:09 +01005879 elem = lyd_parent(elem);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005880 next = elem->next;
5881 }
5882 }
5883 }
5884
5885 /* make the temporary set the current one */
5886 ret_set.ctx_pos = set->ctx_pos;
5887 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02005888 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02005889 memcpy(set, &ret_set, sizeof *set);
5890
5891 return LY_SUCCESS;
5892}
5893
5894/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005895 * @brief Move context @p set to a schema node and all its descendants. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005896 *
5897 * @param[in] set Set to use.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005898 * @param[in] moveto_mod Matching node module, NULL for no prefix.
Michal Vaskod3678892020-05-21 10:06:58 +02005899 * @param[in] ncname Matching node name in the dictionary, NULL for any.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005900 * @param[in] options XPath options.
5901 * @return LY_ERR
5902 */
5903static LY_ERR
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005904moveto_scnode_alldesc(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02005905{
Radek Krejci1deb5be2020-08-26 16:43:36 +02005906 uint32_t i, orig_used;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005907 const struct lysc_node *next, *elem, *start;
Michal Vasko6346ece2019-09-24 13:12:53 +02005908 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005909
aPiecek8b0cc152021-05-31 16:40:31 +02005910 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005911 return LY_SUCCESS;
5912 }
5913
5914 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01005915 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005916 return LY_EVALID;
5917 }
5918
Michal Vasko03ff5a72019-09-11 13:49:33 +02005919 orig_used = set->used;
5920 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005921 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
5922 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01005923 continue;
5924 }
5925
5926 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01005927 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01005928 } else {
Michal Vasko1a09b212021-05-06 13:00:10 +02005929 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005930 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005931
5932 /* TREE DFS */
5933 start = set->val.scnodes[i].scnode;
5934 for (elem = next = start; elem; elem = next) {
Michal Vasko6346ece2019-09-24 13:12:53 +02005935 if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) {
5936 /* schema-only nodes, skip root */
Michal Vasko03ff5a72019-09-11 13:49:33 +02005937 goto next_iter;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005938 }
5939
Michal Vasko5d24f6c2020-10-13 13:49:06 +02005940 rc = moveto_scnode_check(elem, start, set, ncname, moveto_mod);
Michal Vasko6346ece2019-09-24 13:12:53 +02005941 if (!rc) {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005942 uint32_t idx;
5943
5944 if (lyxp_set_scnode_contains(set, elem, LYXP_NODE_ELEM, i, &idx)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01005945 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Radek Krejci1deb5be2020-08-26 16:43:36 +02005946 if ((uint32_t)idx > i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02005947 /* we will process it later in the set */
5948 goto skip_children;
5949 }
5950 } else {
Radek Krejciaa6b53f2020-08-27 15:19:03 +02005951 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02005952 }
Michal Vasko6346ece2019-09-24 13:12:53 +02005953 } else if (rc == LY_EINVAL) {
5954 goto skip_children;
Michal Vasko03ff5a72019-09-11 13:49:33 +02005955 }
5956
5957next_iter:
5958 /* TREE DFS NEXT ELEM */
5959 /* select element for the next run - children first */
Michal Vasko544e58a2021-01-28 14:33:41 +01005960 next = lysc_node_child(elem);
5961 if (next && (next->nodetype == LYS_INPUT) && (options & LYXP_SCNODE_OUTPUT)) {
5962 next = next->next;
5963 } else if (next && (next->nodetype == LYS_OUTPUT) && !(options & LYXP_SCNODE_OUTPUT)) {
5964 next = next->next;
5965 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02005966 if (!next) {
5967skip_children:
5968 /* no children, so try siblings, but only if it's not the start,
5969 * that is considered to be the root and it's siblings are not traversed */
5970 if (elem != start) {
5971 next = elem->next;
5972 } else {
5973 break;
5974 }
5975 }
5976 while (!next) {
5977 /* no siblings, go back through the parents */
5978 if (elem->parent == start) {
5979 /* we are done, no next element to process */
5980 break;
5981 }
5982 /* parent is already processed, go to its sibling */
5983 elem = elem->parent;
5984 next = elem->next;
5985 }
5986 }
5987 }
5988
5989 return LY_SUCCESS;
5990}
5991
5992/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02005993 * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET.
Michal Vasko03ff5a72019-09-11 13:49:33 +02005994 * Indirectly context position aware.
5995 *
5996 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02005997 * @param[in] mod Matching metadata module, NULL for any.
5998 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
aPiecek8b0cc152021-05-31 16:40:31 +02005999 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006000 * @return LY_ERR
6001 */
6002static LY_ERR
aPiecek8b0cc152021-05-31 16:40:31 +02006003moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006004{
Michal Vasko9f96a052020-03-10 09:41:45 +01006005 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006006
aPiecek8b0cc152021-05-31 16:40:31 +02006007 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006008 return LY_SUCCESS;
6009 }
6010
6011 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006012 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006013 return LY_EVALID;
6014 }
6015
Radek Krejci1deb5be2020-08-26 16:43:36 +02006016 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02006017 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006018
6019 /* only attributes of an elem (not dummy) can be in the result, skip all the rest;
6020 * our attributes are always qualified */
Michal Vasko5c4e5892019-11-14 12:31:38 +01006021 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006022 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006023
6024 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006025 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006026 continue;
6027 }
6028
Michal Vaskod3678892020-05-21 10:06:58 +02006029 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006030 /* match */
6031 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006032 set->val.meta[i].meta = sub;
6033 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006034 /* pos does not change */
6035 replaced = 1;
6036 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006037 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 +02006038 }
6039 ++i;
6040 }
6041 }
6042 }
6043
6044 if (!replaced) {
6045 /* no match */
6046 set_remove_node(set, i);
6047 }
6048 }
6049
6050 return LY_SUCCESS;
6051}
6052
6053/**
6054 * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards.
Michal Vasko61ac2f62020-05-25 12:39:51 +02006055 * Result is LYXP_SET_NODE_SET. Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006056 *
6057 * @param[in,out] set1 Set to use for the result.
6058 * @param[in] set2 Set that is copied to @p set1.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006059 * @return LY_ERR
6060 */
6061static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006062moveto_union(struct lyxp_set *set1, struct lyxp_set *set2)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006063{
6064 LY_ERR rc;
6065
Michal Vaskod3678892020-05-21 10:06:58 +02006066 if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006067 LOGVAL(set1->ctx, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006068 return LY_EVALID;
6069 }
6070
6071 /* set2 is empty or both set1 and set2 */
Michal Vaskod3678892020-05-21 10:06:58 +02006072 if (!set2->used) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006073 return LY_SUCCESS;
6074 }
6075
Michal Vaskod3678892020-05-21 10:06:58 +02006076 if (!set1->used) {
aPiecekadc1e4f2021-10-07 11:15:12 +02006077 /* release hidden allocated data (lyxp_set.size) */
6078 lyxp_set_free_content(set1);
6079 /* direct copying of the entire structure */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006080 memcpy(set1, set2, sizeof *set1);
6081 /* dynamic memory belongs to set1 now, do not free */
Michal Vaskod3678892020-05-21 10:06:58 +02006082 memset(set2, 0, sizeof *set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006083 return LY_SUCCESS;
6084 }
6085
6086 /* we assume sets are sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006087 assert(!set_sort(set1) && !set_sort(set2));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006088
6089 /* sort, remove duplicates */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006090 rc = set_sorted_merge(set1, set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006091 LY_CHECK_RET(rc);
6092
6093 /* final set must be sorted */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006094 assert(!set_sort(set1));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006095
6096 return LY_SUCCESS;
6097}
6098
6099/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006100 * @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 +02006101 * Context position aware.
6102 *
6103 * @param[in,out] set Set to use.
Michal Vaskod3678892020-05-21 10:06:58 +02006104 * @param[in] mod Matching metadata module, NULL for any.
6105 * @param[in] ncname Matching metadata name in the dictionary, NULL for any.
Michal Vaskocdad7122020-11-09 21:04:44 +01006106 * @param[in] options XPath options.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006107 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6108 */
6109static int
Michal Vaskocdad7122020-11-09 21:04:44 +01006110moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006111{
Michal Vasko9f96a052020-03-10 09:41:45 +01006112 struct lyd_meta *sub;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006113 struct lyxp_set *set_all_desc = NULL;
6114 LY_ERR rc;
6115
aPiecek8b0cc152021-05-31 16:40:31 +02006116 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006117 return LY_SUCCESS;
6118 }
6119
6120 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006121 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006122 return LY_EVALID;
6123 }
6124
Michal Vasko03ff5a72019-09-11 13:49:33 +02006125 /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory,
6126 * but it likely won't be used much, so it's a waste of time */
6127 /* copy the context */
6128 set_all_desc = set_copy(set);
6129 /* get all descendant nodes (the original context nodes are removed) */
Michal Vaskocdad7122020-11-09 21:04:44 +01006130 rc = moveto_node_alldesc(set_all_desc, NULL, NULL, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006131 if (rc != LY_SUCCESS) {
6132 lyxp_set_free(set_all_desc);
6133 return rc;
6134 }
6135 /* prepend the original context nodes */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006136 rc = moveto_union(set, set_all_desc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006137 if (rc != LY_SUCCESS) {
6138 lyxp_set_free(set_all_desc);
6139 return rc;
6140 }
6141 lyxp_set_free(set_all_desc);
6142
Radek Krejci1deb5be2020-08-26 16:43:36 +02006143 for (uint32_t i = 0; i < set->used; ) {
Radek Krejci857189e2020-09-01 13:26:36 +02006144 ly_bool replaced = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006145
6146 /* only attributes of an elem can be in the result, skip all the rest,
6147 * we have all attributes qualified in lyd tree */
6148 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006149 for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006150 /* check "namespace" */
Michal Vaskod3678892020-05-21 10:06:58 +02006151 if (mod && (sub->annotation->module != mod)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006152 continue;
6153 }
6154
Michal Vaskod3678892020-05-21 10:06:58 +02006155 if (!ncname || (sub->name == ncname)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006156 /* match */
6157 if (!replaced) {
Michal Vasko9f96a052020-03-10 09:41:45 +01006158 set->val.meta[i].meta = sub;
6159 set->val.meta[i].type = LYXP_NODE_META;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006160 /* pos does not change */
6161 replaced = 1;
6162 } else {
Michal Vasko9f96a052020-03-10 09:41:45 +01006163 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 +02006164 }
6165 ++i;
6166 }
6167 }
6168 }
6169
6170 if (!replaced) {
6171 /* no match */
6172 set_remove_node(set, i);
6173 }
6174 }
6175
6176 return LY_SUCCESS;
6177}
6178
6179/**
Michal Vasko61ac2f62020-05-25 12:39:51 +02006180 * @brief Move context @p set to self and al chilren, recursively. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET.
6181 * Context position aware.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006182 *
6183 * @param[in] parent Current parent.
6184 * @param[in] parent_pos Position of @p parent.
6185 * @param[in] parent_type Node type of @p parent.
6186 * @param[in,out] to_set Set to use.
6187 * @param[in] dup_check_set Set for checking duplicities.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006188 * @param[in] options XPath options.
6189 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6190 */
6191static LY_ERR
6192moveto_self_add_children_r(const struct lyd_node *parent, uint32_t parent_pos, enum lyxp_node_type parent_type,
Radek Krejci1deb5be2020-08-26 16:43:36 +02006193 struct lyxp_set *to_set, const struct lyxp_set *dup_check_set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006194{
Michal Vasko61ac2f62020-05-25 12:39:51 +02006195 const struct lyd_node *iter, *first;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006196 LY_ERR rc;
6197
6198 switch (parent_type) {
6199 case LYXP_NODE_ROOT:
6200 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006201 assert(!parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006202
Michal Vasko61ac2f62020-05-25 12:39:51 +02006203 /* add all top-level nodes as elements */
6204 first = to_set->tree;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006205 break;
6206 case LYXP_NODE_ELEM:
Michal Vasko61ac2f62020-05-25 12:39:51 +02006207 /* add just the text node of this term element node */
6208 if (parent->schema->nodetype & (LYD_NODE_TERM | LYD_NODE_ANY)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006209 if (!set_dup_node_check(dup_check_set, parent, LYXP_NODE_TEXT, -1)) {
6210 set_insert_node(to_set, parent, parent_pos, LYXP_NODE_TEXT, to_set->used);
6211 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006212 return LY_SUCCESS;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006213 }
Michal Vasko61ac2f62020-05-25 12:39:51 +02006214
6215 /* add all the children of this node */
Radek Krejcia1c1e542020-09-29 16:06:52 +02006216 first = lyd_child(parent);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006217 break;
6218 default:
6219 LOGINT_RET(parent->schema->module->ctx);
6220 }
6221
Michal Vasko61ac2f62020-05-25 12:39:51 +02006222 /* add all top-level nodes as elements */
6223 LY_LIST_FOR(first, iter) {
6224 /* context check */
6225 if ((parent_type == LYXP_NODE_ROOT_CONFIG) && (iter->schema->flags & LYS_CONFIG_R)) {
6226 continue;
6227 }
6228
6229 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006230 if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(iter->schema) && !(iter->flags & LYD_WHEN_TRUE)) {
Michal Vasko61ac2f62020-05-25 12:39:51 +02006231 return LY_EINCOMPLETE;
6232 }
6233
6234 if (!set_dup_node_check(dup_check_set, iter, LYXP_NODE_ELEM, -1)) {
6235 set_insert_node(to_set, iter, 0, LYXP_NODE_ELEM, to_set->used);
6236
6237 /* also add all the children of this node, recursively */
6238 rc = moveto_self_add_children_r(iter, 0, LYXP_NODE_ELEM, to_set, dup_check_set, options);
6239 LY_CHECK_RET(rc);
6240 }
6241 }
6242
Michal Vasko03ff5a72019-09-11 13:49:33 +02006243 return LY_SUCCESS;
6244}
6245
6246/**
6247 * @brief Move context @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_NODE_SET
6248 * (or LYXP_SET_EMPTY). Context position aware.
6249 *
6250 * @param[in,out] set Set to use.
6251 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6252 * @param[in] options XPath options.
6253 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6254 */
6255static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006256moveto_self(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006257{
Michal Vasko03ff5a72019-09-11 13:49:33 +02006258 struct lyxp_set ret_set;
6259 LY_ERR rc;
6260
aPiecek8b0cc152021-05-31 16:40:31 +02006261 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006262 return LY_SUCCESS;
6263 }
6264
6265 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006266 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006267 return LY_EVALID;
6268 }
6269
6270 /* nothing to do */
6271 if (!all_desc) {
6272 return LY_SUCCESS;
6273 }
6274
Michal Vasko03ff5a72019-09-11 13:49:33 +02006275 /* add all the children, they get added recursively */
6276 set_init(&ret_set, set);
Radek Krejci1deb5be2020-08-26 16:43:36 +02006277 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006278 /* copy the current node to tmp */
6279 set_insert_node(&ret_set, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, ret_set.used);
6280
6281 /* do not touch attributes and text nodes */
Michal Vasko9f96a052020-03-10 09:41:45 +01006282 if ((set->val.nodes[i].type == LYXP_NODE_TEXT) || (set->val.nodes[i].type == LYXP_NODE_META)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006283 continue;
6284 }
6285
Michal Vasko03ff5a72019-09-11 13:49:33 +02006286 /* add all the children */
6287 rc = moveto_self_add_children_r(set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, &ret_set,
Michal Vasko69730152020-10-09 16:30:07 +02006288 set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006289 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006290 lyxp_set_free_content(&ret_set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006291 return rc;
6292 }
6293 }
6294
6295 /* use the temporary set as the current one */
6296 ret_set.ctx_pos = set->ctx_pos;
6297 ret_set.ctx_size = set->ctx_size;
Michal Vaskod3678892020-05-21 10:06:58 +02006298 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006299 memcpy(set, &ret_set, sizeof *set);
6300
6301 return LY_SUCCESS;
6302}
6303
6304/**
6305 * @brief Move context schema @p set to self. Handles '/' or '//' and '.'. Result is LYXP_SET_SCNODE_SET
6306 * (or LYXP_SET_EMPTY).
6307 *
6308 * @param[in,out] set Set to use.
6309 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6310 * @param[in] options XPath options.
6311 * @return LY_ERR
6312 */
6313static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006314moveto_scnode_self(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006315{
Radek Krejci1deb5be2020-08-26 16:43:36 +02006316 uint32_t getnext_opts;
6317 uint32_t mod_idx;
Michal Vasko519fd602020-05-26 12:17:39 +02006318 const struct lysc_node *iter, *start_parent;
6319 const struct lys_module *mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006320
aPiecek8b0cc152021-05-31 16:40:31 +02006321 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006322 return LY_SUCCESS;
6323 }
6324
6325 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006326 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006327 return LY_EVALID;
6328 }
6329
Michal Vasko519fd602020-05-26 12:17:39 +02006330 /* getnext opts */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +01006331 getnext_opts = 0;
Michal Vasko519fd602020-05-26 12:17:39 +02006332 if (options & LYXP_SCNODE_OUTPUT) {
6333 getnext_opts |= LYS_GETNEXT_OUTPUT;
6334 }
6335
6336 /* add all the children, recursively as they are being added into the same set */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006337 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vaskoe657f962020-12-10 12:19:48 +01006338 if (!all_desc) {
6339 /* traverse the start node */
6340 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START) {
6341 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
6342 }
6343 continue;
6344 }
6345
Radek Krejcif13b87b2020-12-01 22:02:17 +01006346 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
6347 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006348 continue;
6349 }
6350
Michal Vasko519fd602020-05-26 12:17:39 +02006351 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01006352 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vasko519fd602020-05-26 12:17:39 +02006353 } else {
Michal Vasko1a09b212021-05-06 13:00:10 +02006354 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006355 }
6356
Michal Vasko519fd602020-05-26 12:17:39 +02006357 start_parent = set->val.scnodes[i].scnode;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006358
Michal Vasko519fd602020-05-26 12:17:39 +02006359 if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) {
6360 /* it can actually be in any module, it's all <running> */
6361 mod_idx = 0;
Michal Vaskoa51ef072021-07-02 10:40:30 +02006362 while ((mod = ly_ctx_get_module_iter(set->ctx, &mod_idx))) {
Michal Vasko519fd602020-05-26 12:17:39 +02006363 iter = NULL;
6364 /* module may not be implemented */
6365 while (mod->implemented && (iter = lys_getnext(iter, NULL, mod->compiled, getnext_opts))) {
6366 /* context check */
6367 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
6368 continue;
6369 }
6370
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006371 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, NULL));
Michal Vasko519fd602020-05-26 12:17:39 +02006372 /* throw away the insert index, we want to consider that node again, recursively */
6373 }
6374 }
6375
6376 } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
6377 iter = NULL;
6378 while ((iter = lys_getnext(iter, start_parent, NULL, getnext_opts))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006379 /* context check */
Michal Vasko519fd602020-05-26 12:17:39 +02006380 if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (iter->flags & LYS_CONFIG_R)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006381 continue;
6382 }
6383
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006384 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, LYXP_NODE_ELEM, NULL));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006385 }
6386 }
6387 }
6388
6389 return LY_SUCCESS;
6390}
6391
6392/**
6393 * @brief Move context @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_NODE_SET
6394 * (or LYXP_SET_EMPTY). Context position aware.
6395 *
6396 * @param[in] set Set to use.
6397 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6398 * @param[in] options XPath options.
6399 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6400 */
6401static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006402moveto_parent(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006403{
6404 LY_ERR rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006405 struct lyd_node *node, *new_node;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006406 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006407
aPiecek8b0cc152021-05-31 16:40:31 +02006408 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006409 return LY_SUCCESS;
6410 }
6411
6412 if (set->type != LYXP_SET_NODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006413 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006414 return LY_EVALID;
6415 }
6416
6417 if (all_desc) {
6418 /* <path>//.. == <path>//./.. */
6419 rc = moveto_self(set, 1, options);
6420 LY_CHECK_RET(rc);
6421 }
6422
Radek Krejci1deb5be2020-08-26 16:43:36 +02006423 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006424 node = set->val.nodes[i].node;
6425
6426 if (set->val.nodes[i].type == LYXP_NODE_ELEM) {
Michal Vasko9e685082021-01-29 14:49:09 +01006427 new_node = lyd_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006428 } else if (set->val.nodes[i].type == LYXP_NODE_TEXT) {
6429 new_node = node;
Michal Vasko9f96a052020-03-10 09:41:45 +01006430 } else if (set->val.nodes[i].type == LYXP_NODE_META) {
6431 new_node = set->val.meta[i].meta->parent;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006432 if (!new_node) {
6433 LOGINT_RET(set->ctx);
6434 }
6435 } else {
6436 /* root does not have a parent */
Michal Vasko2caefc12019-11-14 16:07:56 +01006437 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006438 continue;
6439 }
6440
Michal Vaskoa1424542019-11-14 16:08:52 +01006441 /* when check */
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01006442 if (!(options & LYXP_IGNORE_WHEN) && new_node && lysc_has_when(new_node->schema) && !(new_node->flags & LYD_WHEN_TRUE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006443 return LY_EINCOMPLETE;
Michal Vaskoa1424542019-11-14 16:08:52 +01006444 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006445
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006446 if (!new_node) {
Radek Krejcif6a11002020-08-21 13:29:07 +02006447 /* node already there can also be the root */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006448 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006449
Michal Vasko03ff5a72019-09-11 13:49:33 +02006450 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02006451 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006452 new_type = LYXP_NODE_ELEM;
6453 }
6454
Michal Vasko03ff5a72019-09-11 13:49:33 +02006455 if (set_dup_node_check(set, new_node, new_type, -1)) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006456 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006457 } else {
6458 set_replace_node(set, new_node, 0, new_type, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006459 }
6460 }
6461
Michal Vasko2caefc12019-11-14 16:07:56 +01006462 set_remove_nodes_none(set);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006463 assert(!set_sort(set) && !set_sorted_dup_node_clean(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006464
6465 return LY_SUCCESS;
6466}
6467
6468/**
6469 * @brief Move context schema @p set to parent. Handles '/' or '//' and '..'. Result is LYXP_SET_SCNODE_SET
6470 * (or LYXP_SET_EMPTY).
6471 *
6472 * @param[in] set Set to use.
6473 * @param[in] all_desc Whether to go to all descendants ('//') or not ('/').
6474 * @param[in] options XPath options.
6475 * @return LY_ERR
6476 */
6477static LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +02006478moveto_scnode_parent(struct lyxp_set *set, ly_bool all_desc, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006479{
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006480 uint32_t i, orig_used, idx;
Radek Krejci857189e2020-09-01 13:26:36 +02006481 ly_bool temp_ctx = 0;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006482 const struct lysc_node *node, *new_node;
6483 enum lyxp_node_type new_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006484
aPiecek8b0cc152021-05-31 16:40:31 +02006485 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006486 return LY_SUCCESS;
6487 }
6488
6489 if (set->type != LYXP_SET_SCNODE_SET) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01006490 LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006491 return LY_EVALID;
6492 }
6493
6494 if (all_desc) {
6495 /* <path>//.. == <path>//./.. */
Radek Krejci1deb5be2020-08-26 16:43:36 +02006496 LY_CHECK_RET(moveto_scnode_self(set, 1, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006497 }
6498
Michal Vasko03ff5a72019-09-11 13:49:33 +02006499 orig_used = set->used;
6500 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006501 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) {
6502 if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) {
Michal Vasko5c4e5892019-11-14 12:31:38 +01006503 continue;
6504 }
6505
6506 /* remember context node */
Radek Krejcif13b87b2020-12-01 22:02:17 +01006507 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED;
Michal Vaskoec4df482019-12-16 10:02:18 +01006508 } else {
Michal Vasko1a09b212021-05-06 13:00:10 +02006509 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006510 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02006511
6512 node = set->val.scnodes[i].scnode;
6513
6514 if (set->val.scnodes[i].type == LYXP_NODE_ELEM) {
Michal Vaskod3678892020-05-21 10:06:58 +02006515 new_node = lysc_data_parent(node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006516 } else {
6517 /* root does not have a parent */
6518 continue;
6519 }
6520
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006521 if (!new_node) {
Radek Krejcif6a11002020-08-21 13:29:07 +02006522 /* node has no parent */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006523 new_type = set->root_type;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006524
Michal Vasko03ff5a72019-09-11 13:49:33 +02006525 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02006526 /* node has a standard parent (it can equal the root, it's not the root yet since they are fake) */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006527 new_type = LYXP_NODE_ELEM;
6528 }
6529
Radek Krejciaa6b53f2020-08-27 15:19:03 +02006530 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, new_node, new_type, &idx));
6531 if ((idx < orig_used) && (idx > i)) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006532 set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006533 temp_ctx = 1;
6534 }
6535 }
6536
6537 if (temp_ctx) {
6538 for (i = 0; i < orig_used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006539 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NEW_CTX) {
6540 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006541 }
6542 }
6543 }
6544
6545 return LY_SUCCESS;
6546}
6547
6548/**
6549 * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'.
6550 * Result is LYXP_SET_BOOLEAN. Indirectly context position aware.
6551 *
6552 * @param[in,out] set1 Set to use for the result.
6553 * @param[in] set2 Set acting as the second operand for @p op.
6554 * @param[in] op Comparison operator to process.
6555 * @param[in] options XPath options.
6556 * @return LY_ERR
6557 */
6558static LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +02006559moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006560{
6561 /*
6562 * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING
6563 * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING)
6564 * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6565 * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6566 * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING
6567 * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6568 * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6569 *
6570 * '=' or '!='
6571 * BOOLEAN + BOOLEAN
6572 * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6573 * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN
6574 * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6575 * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN)
6576 * NUMBER + NUMBER
6577 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6578 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6579 * STRING + STRING
6580 *
6581 * '<=', '<', '>=', '>'
6582 * NUMBER + NUMBER
6583 * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6584 * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6585 * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6586 * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6587 * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER
6588 * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER)
6589 * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6590 * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER
6591 */
6592 struct lyxp_set iter1, iter2;
6593 int result;
6594 int64_t i;
6595 LY_ERR rc;
6596
Michal Vasko004d3152020-06-11 19:59:22 +02006597 memset(&iter1, 0, sizeof iter1);
6598 memset(&iter2, 0, sizeof iter2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006599
6600 /* iterative evaluation with node-sets */
6601 if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) {
6602 if (set1->type == LYXP_SET_NODE_SET) {
6603 for (i = 0; i < set1->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006604 /* cast set1 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006605 switch (set2->type) {
6606 case LYXP_SET_NUMBER:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006607 rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006608 break;
6609 case LYXP_SET_BOOLEAN:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006610 rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006611 break;
6612 default:
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006613 rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006614 break;
6615 }
6616 LY_CHECK_RET(rc);
6617
Michal Vasko4c7763f2020-07-27 17:40:37 +02006618 /* canonize set2 */
6619 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc);
6620
6621 /* compare recursively */
6622 rc = moveto_op_comp(&iter1, &iter2, op, options);
6623 lyxp_set_free_content(&iter2);
6624 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006625
6626 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006627 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006628 set_fill_boolean(set1, 1);
6629 return LY_SUCCESS;
6630 }
6631 }
6632 } else {
6633 for (i = 0; i < set2->used; ++i) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006634 /* set set2 */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006635 switch (set1->type) {
Michal Vasko4c7763f2020-07-27 17:40:37 +02006636 case LYXP_SET_NUMBER:
6637 rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i);
6638 break;
6639 case LYXP_SET_BOOLEAN:
6640 rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i);
6641 break;
6642 default:
6643 rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i);
6644 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006645 }
6646 LY_CHECK_RET(rc);
6647
Michal Vasko4c7763f2020-07-27 17:40:37 +02006648 /* canonize set1 */
6649 LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter1, set1, &set2->val.nodes[i]), lyxp_set_free_content(&iter2), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006650
Michal Vasko4c7763f2020-07-27 17:40:37 +02006651 /* compare recursively */
Michal Vasko03ff5a72019-09-11 13:49:33 +02006652 rc = moveto_op_comp(&iter1, &iter2, op, options);
Michal Vaskod3678892020-05-21 10:06:58 +02006653 lyxp_set_free_content(&iter2);
Michal Vasko4c7763f2020-07-27 17:40:37 +02006654 LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006655
6656 /* lazy evaluation until true */
Michal Vasko004d3152020-06-11 19:59:22 +02006657 if (iter1.val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006658 set_fill_boolean(set1, 1);
6659 return LY_SUCCESS;
6660 }
6661 }
6662 }
6663
6664 /* false for all nodes */
6665 set_fill_boolean(set1, 0);
6666 return LY_SUCCESS;
6667 }
6668
6669 /* first convert properly */
6670 if ((op[0] == '=') || (op[0] == '!')) {
6671 if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006672 lyxp_set_cast(set1, LYXP_SET_BOOLEAN);
6673 lyxp_set_cast(set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006674 } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006675 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006676 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006677 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006678 LY_CHECK_RET(rc);
6679 } /* else we have 2 strings */
6680 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006681 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006682 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006683 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006684 LY_CHECK_RET(rc);
6685 }
6686
6687 assert(set1->type == set2->type);
6688
6689 /* compute result */
6690 if (op[0] == '=') {
6691 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006692 result = (set1->val.bln == set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006693 } else if (set1->type == LYXP_SET_NUMBER) {
6694 result = (set1->val.num == set2->val.num);
6695 } else {
6696 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoac6c72f2019-11-14 16:09:34 +01006697 result = !strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006698 }
6699 } else if (op[0] == '!') {
6700 if (set1->type == LYXP_SET_BOOLEAN) {
Michal Vasko004d3152020-06-11 19:59:22 +02006701 result = (set1->val.bln != set2->val.bln);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006702 } else if (set1->type == LYXP_SET_NUMBER) {
6703 result = (set1->val.num != set2->val.num);
6704 } else {
6705 assert(set1->type == LYXP_SET_STRING);
Michal Vaskoc2058432020-11-06 17:26:21 +01006706 result = strcmp(set1->val.str, set2->val.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006707 }
6708 } else {
6709 assert(set1->type == LYXP_SET_NUMBER);
6710 if (op[0] == '<') {
6711 if (op[1] == '=') {
6712 result = (set1->val.num <= set2->val.num);
6713 } else {
6714 result = (set1->val.num < set2->val.num);
6715 }
6716 } else {
6717 if (op[1] == '=') {
6718 result = (set1->val.num >= set2->val.num);
6719 } else {
6720 result = (set1->val.num > set2->val.num);
6721 }
6722 }
6723 }
6724
6725 /* assign result */
6726 if (result) {
6727 set_fill_boolean(set1, 1);
6728 } else {
6729 set_fill_boolean(set1, 0);
6730 }
6731
6732 return LY_SUCCESS;
6733}
6734
6735/**
6736 * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div',
6737 * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware.
6738 *
6739 * @param[in,out] set1 Set to use for the result.
6740 * @param[in] set2 Set acting as the second operand for @p op.
6741 * @param[in] op Operator to process.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006742 * @return LY_ERR
6743 */
6744static LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006745moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006746{
6747 LY_ERR rc;
6748
6749 /* unary '-' */
6750 if (!set2 && (op[0] == '-')) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006751 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006752 LY_CHECK_RET(rc);
6753 set1->val.num *= -1;
6754 lyxp_set_free(set2);
6755 return LY_SUCCESS;
6756 }
6757
6758 assert(set1 && set2);
6759
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006760 rc = lyxp_set_cast(set1, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006761 LY_CHECK_RET(rc);
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006762 rc = lyxp_set_cast(set2, LYXP_SET_NUMBER);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006763 LY_CHECK_RET(rc);
6764
6765 switch (op[0]) {
6766 /* '+' */
6767 case '+':
6768 set1->val.num += set2->val.num;
6769 break;
6770
6771 /* '-' */
6772 case '-':
6773 set1->val.num -= set2->val.num;
6774 break;
6775
6776 /* '*' */
6777 case '*':
6778 set1->val.num *= set2->val.num;
6779 break;
6780
6781 /* 'div' */
6782 case 'd':
6783 set1->val.num /= set2->val.num;
6784 break;
6785
6786 /* 'mod' */
6787 case 'm':
6788 set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num);
6789 break;
6790
6791 default:
6792 LOGINT_RET(set1->ctx);
6793 }
6794
6795 return LY_SUCCESS;
6796}
6797
Michal Vasko03ff5a72019-09-11 13:49:33 +02006798/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02006799 * @brief Evaluate Predicate. Logs directly on error.
6800 *
Michal Vaskod3678892020-05-21 10:06:58 +02006801 * [9] Predicate ::= '[' Expr ']'
Michal Vasko03ff5a72019-09-11 13:49:33 +02006802 *
6803 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006804 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02006805 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02006806 * @param[in] options XPath options.
6807 * @param[in] parent_pos_pred Whether parent predicate was a positional one.
6808 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
6809 */
6810static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02006811eval_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options, ly_bool parent_pos_pred)
Michal Vasko03ff5a72019-09-11 13:49:33 +02006812{
6813 LY_ERR rc;
Michal Vasko1fdd8fa2021-01-08 09:21:45 +01006814 uint16_t orig_exp;
6815 uint32_t i, orig_pos, orig_size;
Michal Vasko5c4e5892019-11-14 12:31:38 +01006816 int32_t pred_in_ctx;
aPiecekfff4dca2021-10-07 10:59:53 +02006817 struct lyxp_set set2 = {0};
Michal Vasko03ff5a72019-09-11 13:49:33 +02006818 struct lyd_node *orig_parent;
6819
6820 /* '[' */
aPiecek8b0cc152021-05-31 16:40:31 +02006821 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02006822 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006823 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006824
aPiecek8b0cc152021-05-31 16:40:31 +02006825 if (options & LYXP_SKIP_EXPR) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006826only_parse:
aPiecek8b0cc152021-05-31 16:40:31 +02006827 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006828 LY_CHECK_RET(rc);
6829 } else if (set->type == LYXP_SET_NODE_SET) {
6830 /* 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 +01006831 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02006832
6833 /* empty set, nothing to evaluate */
6834 if (!set->used) {
6835 goto only_parse;
6836 }
6837
Michal Vasko004d3152020-06-11 19:59:22 +02006838 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006839 orig_pos = 0;
6840 orig_size = set->used;
6841 orig_parent = NULL;
Michal Vasko39dbf352020-05-21 10:08:59 +02006842 for (i = 0; i < set->used; ++i) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006843 set_init(&set2, set);
6844 set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0);
6845 /* remember the node context position for position() and context size for last(),
6846 * predicates should always be evaluated with respect to the child axis (since we do
6847 * not support explicit axes) so we assign positions based on their parents */
Michal Vasko9e685082021-01-29 14:49:09 +01006848 if (parent_pos_pred && (lyd_parent(set->val.nodes[i].node) != orig_parent)) {
6849 orig_parent = lyd_parent(set->val.nodes[i].node);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006850 orig_pos = 1;
6851 } else {
6852 ++orig_pos;
6853 }
6854
6855 set2.ctx_pos = orig_pos;
6856 set2.ctx_size = orig_size;
Michal Vasko004d3152020-06-11 19:59:22 +02006857 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006858
Michal Vasko004d3152020-06-11 19:59:22 +02006859 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006860 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006861 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006862 return rc;
6863 }
6864
6865 /* number is a position */
6866 if (set2.type == LYXP_SET_NUMBER) {
6867 if ((long long)set2.val.num == orig_pos) {
6868 set2.val.num = 1;
6869 } else {
6870 set2.val.num = 0;
6871 }
6872 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006873 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006874
6875 /* predicate satisfied or not? */
Michal Vasko004d3152020-06-11 19:59:22 +02006876 if (!set2.val.bln) {
Michal Vasko2caefc12019-11-14 16:07:56 +01006877 set_remove_node_none(set, i);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006878 }
6879 }
Michal Vasko2caefc12019-11-14 16:07:56 +01006880 set_remove_nodes_none(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006881
6882 } else if (set->type == LYXP_SET_SCNODE_SET) {
6883 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006884 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02006885 /* there is a currently-valid node */
6886 break;
6887 }
6888 }
6889 /* empty set, nothing to evaluate */
6890 if (i == set->used) {
6891 goto only_parse;
6892 }
6893
Michal Vasko004d3152020-06-11 19:59:22 +02006894 orig_exp = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006895
Michal Vasko03ff5a72019-09-11 13:49:33 +02006896 /* set special in_ctx to all the valid snodes */
6897 pred_in_ctx = set_scnode_new_in_ctx(set);
6898
6899 /* use the valid snodes one-by-one */
6900 for (i = 0; i < set->used; ++i) {
6901 if (set->val.scnodes[i].in_ctx != pred_in_ctx) {
6902 continue;
6903 }
Radek Krejcif13b87b2020-12-01 22:02:17 +01006904 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006905
Michal Vasko004d3152020-06-11 19:59:22 +02006906 *tok_idx = orig_exp;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006907
Michal Vasko004d3152020-06-11 19:59:22 +02006908 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006909 LY_CHECK_RET(rc);
6910
6911 set->val.scnodes[i].in_ctx = pred_in_ctx;
6912 }
6913
6914 /* restore the state as it was before the predicate */
6915 for (i = 0; i < set->used; ++i) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006916 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
Michal Vasko1a09b212021-05-06 13:00:10 +02006917 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006918 } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) {
Radek Krejcif13b87b2020-12-01 22:02:17 +01006919 set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006920 }
6921 }
6922
6923 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02006924 set2.type = LYXP_SET_NODE_SET;
Michal Vasko03ff5a72019-09-11 13:49:33 +02006925 set_fill_set(&set2, set);
6926
Michal Vasko004d3152020-06-11 19:59:22 +02006927 rc = eval_expr_select(exp, tok_idx, 0, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006928 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02006929 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006930 return rc;
6931 }
6932
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01006933 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko004d3152020-06-11 19:59:22 +02006934 if (!set2.val.bln) {
Michal Vaskod3678892020-05-21 10:06:58 +02006935 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006936 }
Michal Vaskod3678892020-05-21 10:06:58 +02006937 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006938 }
6939
6940 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02006941 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2);
aPiecek8b0cc152021-05-31 16:40:31 +02006942 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02006943 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006944 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02006945
6946 return LY_SUCCESS;
6947}
6948
6949/**
Michal Vaskod3678892020-05-21 10:06:58 +02006950 * @brief Evaluate Literal. Logs directly on error.
6951 *
6952 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02006953 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02006954 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
6955 */
6956static void
Michal Vasko40308e72020-10-20 16:38:40 +02006957eval_literal(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vaskod3678892020-05-21 10:06:58 +02006958{
6959 if (set) {
Michal Vasko004d3152020-06-11 19:59:22 +02006960 if (exp->tok_len[*tok_idx] == 2) {
Michal Vaskod3678892020-05-21 10:06:58 +02006961 set_fill_string(set, "", 0);
6962 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02006963 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 +02006964 }
6965 }
6966 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02006967 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02006968 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02006969}
6970
6971/**
Michal Vasko004d3152020-06-11 19:59:22 +02006972 * @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 +02006973 *
Michal Vasko004d3152020-06-11 19:59:22 +02006974 * @param[in] exp Full parsed XPath expression.
6975 * @param[in,out] tok_idx Index in @p exp at the beginning of the predicate, is updated on success.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006976 * @param[in] ctx_node Found schema node as the context for the predicate.
6977 * @param[in] cur_mod Current module for the expression.
6978 * @param[in] cur_node Current (original context) node.
Michal Vasko004d3152020-06-11 19:59:22 +02006979 * @param[in] format Format of any prefixes in key names/values.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006980 * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix).
Michal Vasko004d3152020-06-11 19:59:22 +02006981 * @param[out] predicates Parsed predicates.
6982 * @param[out] pred_type Type of @p predicates.
6983 * @return LY_SUCCESS on success,
6984 * @return LY_ERR on any error.
Michal Vaskod3678892020-05-21 10:06:58 +02006985 */
6986static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02006987eval_name_test_try_compile_predicates(const struct lyxp_expr *exp, uint16_t *tok_idx, const struct lysc_node *ctx_node,
Radek Krejci8df109d2021-04-23 12:19:08 +02006988 const struct lys_module *cur_mod, const struct lysc_node *cur_node, LY_VALUE_FORMAT format, void *prefix_data,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006989 struct ly_path_predicate **predicates, enum ly_path_pred_type *pred_type)
Michal Vaskod3678892020-05-21 10:06:58 +02006990{
Michal Vasko004d3152020-06-11 19:59:22 +02006991 LY_ERR ret = LY_SUCCESS;
6992 uint16_t key_count, e_idx, pred_idx = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02006993 const struct lysc_node *key;
Michal Vasko004d3152020-06-11 19:59:22 +02006994 size_t pred_len;
Radek Krejci1deb5be2020-08-26 16:43:36 +02006995 uint32_t prev_lo;
Michal Vasko004d3152020-06-11 19:59:22 +02006996 struct lyxp_expr *exp2 = NULL;
Michal Vaskod3678892020-05-21 10:06:58 +02006997
Michal Vasko5d24f6c2020-10-13 13:49:06 +02006998 assert(ctx_node->nodetype & (LYS_LIST | LYS_LEAFLIST));
Michal Vaskod3678892020-05-21 10:06:58 +02006999
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007000 if (ctx_node->nodetype == LYS_LIST) {
Michal Vasko004d3152020-06-11 19:59:22 +02007001 /* get key count */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007002 if (ctx_node->flags & LYS_KEYLESS) {
Michal Vasko004d3152020-06-11 19:59:22 +02007003 return LY_EINVAL;
7004 }
Michal Vasko544e58a2021-01-28 14:33:41 +01007005 for (key_count = 0, key = lysc_node_child(ctx_node); key && (key->flags & LYS_KEY); key = key->next, ++key_count) {}
Michal Vasko004d3152020-06-11 19:59:22 +02007006 assert(key_count);
Michal Vaskod3678892020-05-21 10:06:58 +02007007
Michal Vasko004d3152020-06-11 19:59:22 +02007008 /* learn where the predicates end */
7009 e_idx = *tok_idx;
7010 while (key_count) {
7011 /* '[' */
7012 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
7013 return LY_EINVAL;
7014 }
7015 ++e_idx;
7016
Michal Vasko3354d272021-04-06 09:40:06 +02007017 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_NAMETEST)) {
7018 /* definitely not a key */
7019 return LY_EINVAL;
7020 }
7021
Michal Vasko004d3152020-06-11 19:59:22 +02007022 /* ']' */
7023 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
7024 ++e_idx;
7025 }
7026 ++e_idx;
7027
7028 /* another presumably key predicate parsed */
7029 --key_count;
7030 }
Michal Vasko004d3152020-06-11 19:59:22 +02007031 } else {
7032 /* learn just where this single predicate ends */
7033 e_idx = *tok_idx;
7034
Michal Vaskod3678892020-05-21 10:06:58 +02007035 /* '[' */
Michal Vasko004d3152020-06-11 19:59:22 +02007036 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) {
7037 return LY_EINVAL;
7038 }
7039 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02007040
Michal Vasko3354d272021-04-06 09:40:06 +02007041 if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_DOT)) {
7042 /* definitely not the value */
7043 return LY_EINVAL;
7044 }
7045
Michal Vaskod3678892020-05-21 10:06:58 +02007046 /* ']' */
Michal Vasko004d3152020-06-11 19:59:22 +02007047 while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) {
7048 ++e_idx;
7049 }
7050 ++e_idx;
Michal Vaskod3678892020-05-21 10:06:58 +02007051 }
7052
Michal Vasko004d3152020-06-11 19:59:22 +02007053 /* get the joined length of all the keys predicates/of the single leaf-list predicate */
7054 pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx];
7055
7056 /* turn logging off */
7057 prev_lo = ly_log_options(0);
7058
7059 /* parse the predicate(s) */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007060 LY_CHECK_GOTO(ret = ly_path_parse_predicate(ctx_node->module->ctx, ctx_node, exp->expr + exp->tok_pos[*tok_idx],
7061 pred_len, LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup);
Michal Vasko004d3152020-06-11 19:59:22 +02007062
7063 /* compile */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007064 ret = ly_path_compile_predicate(ctx_node->module->ctx, cur_node, cur_mod, ctx_node, exp2, &pred_idx, format,
7065 prefix_data, predicates, pred_type);
Michal Vasko004d3152020-06-11 19:59:22 +02007066 LY_CHECK_GOTO(ret, cleanup);
7067
7068 /* success, the predicate must include all the needed information for hash-based search */
7069 *tok_idx = e_idx;
7070
7071cleanup:
7072 ly_log_options(prev_lo);
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007073 lyxp_expr_free(ctx_node->module->ctx, exp2);
Michal Vasko004d3152020-06-11 19:59:22 +02007074 return ret;
Michal Vaskod3678892020-05-21 10:06:58 +02007075}
7076
7077/**
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007078 * @brief Search for/check the next schema node that could be the only matching schema node meaning the
7079 * data node(s) could be found using a single hash-based search.
7080 *
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007081 * @param[in] ctx libyang context.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007082 * @param[in] node Next context node to check.
7083 * @param[in] name Expected node name.
7084 * @param[in] name_len Length of @p name.
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007085 * @param[in] moveto_mod Expected node module, can be NULL for JSON format with no prefix.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007086 * @param[in] root_type XPath root type.
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007087 * @param[in] format Prefix format.
7088 * @param[in,out] found Previously found node, is updated.
7089 * @return LY_SUCCESS on success,
7090 * @return LY_ENOT if the whole check failed and hashes cannot be used.
7091 */
7092static LY_ERR
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007093eval_name_test_with_predicate_get_scnode(const struct ly_ctx *ctx, const struct lyd_node *node, const char *name,
Radek Krejci8df109d2021-04-23 12:19:08 +02007094 uint16_t name_len, const struct lys_module *moveto_mod, enum lyxp_node_type root_type, LY_VALUE_FORMAT format,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007095 const struct lysc_node **found)
7096{
7097 const struct lysc_node *scnode;
7098 const struct lys_module *mod;
7099 uint32_t idx = 0;
7100
Radek Krejci8df109d2021-04-23 12:19:08 +02007101 assert((format == LY_VALUE_JSON) || moveto_mod);
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007102
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007103continue_search:
Michal Vasko7d1d0912020-10-16 08:38:30 +02007104 scnode = NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007105 if (!node) {
Radek Krejci8df109d2021-04-23 12:19:08 +02007106 if ((format == LY_VALUE_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007107 /* search all modules for a single match */
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007108 while ((mod = ly_ctx_get_module_iter(ctx, &idx))) {
Michal Vasko35a3b1d2021-07-14 09:34:16 +02007109 if (!mod->implemented) {
7110 continue;
7111 }
7112
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007113 scnode = lys_find_child(NULL, mod, name, name_len, 0, 0);
7114 if (scnode) {
7115 /* we have found a match */
7116 break;
7117 }
7118 }
7119
Michal Vasko7d1d0912020-10-16 08:38:30 +02007120 if (!scnode) {
7121 /* all modules searched */
7122 idx = 0;
7123 }
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007124 } else {
7125 /* search in top-level */
7126 scnode = lys_find_child(NULL, moveto_mod, name, name_len, 0, 0);
7127 }
7128 } else if (!*found || (lysc_data_parent(*found) != node->schema)) {
Radek Krejci8df109d2021-04-23 12:19:08 +02007129 if ((format == LY_VALUE_JSON) && !moveto_mod) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007130 /* we must adjust the module to inherit the one from the context node */
7131 moveto_mod = node->schema->module;
7132 }
7133
7134 /* search in children, do not repeat the same search */
7135 scnode = lys_find_child(node->schema, moveto_mod, name, name_len, 0, 0);
Michal Vasko7d1d0912020-10-16 08:38:30 +02007136 } /* else skip redundant search */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007137
7138 /* additional context check */
7139 if (scnode && (root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) {
7140 scnode = NULL;
7141 }
7142
7143 if (scnode) {
7144 if (*found) {
7145 /* we found a schema node with the same name but at different level, give up, too complicated
7146 * (more hash-based searches would be required, not supported) */
7147 return LY_ENOT;
7148 } else {
7149 /* remember the found schema node and continue to make sure it can be used */
7150 *found = scnode;
7151 }
7152 }
7153
7154 if (idx) {
7155 /* continue searching all the following models */
7156 goto continue_search;
7157 }
7158
7159 return LY_SUCCESS;
7160}
7161
7162/**
Michal Vasko4ad69e72021-10-26 16:25:55 +02007163 * @brief Generate message when no matching schema nodes were found for a path segment.
7164 *
7165 * @param[in] set XPath set.
7166 * @param[in] scparent Previous schema parent in the context, if only one.
7167 * @param[in] ncname XPath NCName being evaluated.
7168 * @param[in] ncname_len Length of @p ncname.
7169 * @param[in] expr Whole XPath expression.
7170 * @param[in] options XPath options.
7171 */
7172static void
7173eval_name_test_scnode_no_match_msg(struct lyxp_set *set, const struct lyxp_set_scnode *scparent, const char *ncname,
7174 uint16_t ncname_len, const char *expr, uint32_t options)
7175{
7176 const char *format;
7177 char *path = NULL, *ppath = NULL;
7178
7179 path = lysc_path(set->cur_scnode, LYSC_PATH_LOG, NULL, 0);
7180 if (scparent) {
7181 /* generate path for the parent */
7182 if (scparent->type == LYXP_NODE_ELEM) {
7183 ppath = lysc_path(scparent->scnode, LYSC_PATH_LOG, NULL, 0);
7184 } else if (scparent->type == LYXP_NODE_ROOT) {
7185 ppath = strdup("<root>");
7186 } else if (scparent->type == LYXP_NODE_ROOT_CONFIG) {
7187 ppath = strdup("<config-root>");
7188 }
7189 }
7190 if (ppath) {
7191 format = "Schema node \"%.*s\" for parent \"%s\" not found; in expr \"%.*s\" with context node \"%s\".";
7192 if (options & LYXP_SCNODE_ERROR) {
7193 LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path);
7194 } else {
7195 LOGWRN(set->ctx, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path);
7196 }
7197 } else {
7198 format = "Schema node \"%.*s\" not found; in expr \"%.*s\" with context node \"%s\".";
7199 if (options & LYXP_SCNODE_ERROR) {
7200 LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path);
7201 } else {
7202 LOGWRN(set->ctx, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path);
7203 }
7204 }
7205 free(path);
7206 free(ppath);
7207}
7208
7209/**
Michal Vaskod3678892020-05-21 10:06:58 +02007210 * @brief Evaluate NameTest and any following Predicates. Logs directly on error.
7211 *
7212 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7213 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7214 * [7] NameTest ::= '*' | NCName ':' '*' | QName
7215 *
7216 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007217 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007218 * @param[in] attr_axis Whether to search attributes or standard nodes.
7219 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02007220 * @param[in,out] set Context and result set.
Michal Vaskod3678892020-05-21 10:06:58 +02007221 * @param[in] options XPath options.
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007222 * @return LY_ERR (LY_EINCOMPLETE on unresolved when, LY_ENOT for not found schema node)
Michal Vaskod3678892020-05-21 10:06:58 +02007223 */
7224static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007225eval_name_test_with_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool attr_axis, ly_bool all_desc,
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007226 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007227{
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007228 LY_ERR rc = LY_SUCCESS, r;
Michal Vasko004d3152020-06-11 19:59:22 +02007229 const char *ncname, *ncname_dict = NULL;
7230 uint16_t ncname_len;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007231 const struct lys_module *moveto_mod = NULL;
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007232 const struct lysc_node *scnode = NULL;
Michal Vasko004d3152020-06-11 19:59:22 +02007233 struct ly_path_predicate *predicates = NULL;
7234 enum ly_path_pred_type pred_type = 0;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007235 int scnode_skip_pred = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02007236
aPiecek8b0cc152021-05-31 16:40:31 +02007237 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007238 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007239 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007240
aPiecek8b0cc152021-05-31 16:40:31 +02007241 if (options & LYXP_SKIP_EXPR) {
Michal Vaskod3678892020-05-21 10:06:58 +02007242 goto moveto;
7243 }
7244
Michal Vasko004d3152020-06-11 19:59:22 +02007245 ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]];
7246 ncname_len = exp->tok_len[*tok_idx - 1];
Michal Vaskod3678892020-05-21 10:06:58 +02007247
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007248 if ((ncname[0] == '*') && (ncname_len == 1)) {
7249 /* all nodes will match */
7250 goto moveto;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007251 }
7252
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007253 /* parse (and skip) module name */
7254 rc = moveto_resolve_model(&ncname, &ncname_len, set, NULL, &moveto_mod);
Michal Vaskod3678892020-05-21 10:06:58 +02007255 LY_CHECK_GOTO(rc, cleanup);
7256
Radek Krejci8df109d2021-04-23 12:19:08 +02007257 if (((set->format == LY_VALUE_JSON) || moveto_mod) && !attr_axis && !all_desc && (set->type == LYXP_SET_NODE_SET)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007258 /* find the matching schema node in some parent in the context */
Radek Krejci1deb5be2020-08-26 16:43:36 +02007259 for (uint32_t i = 0; i < set->used; ++i) {
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007260 if (eval_name_test_with_predicate_get_scnode(set->ctx, set->val.nodes[i].node, ncname, ncname_len,
7261 moveto_mod, set->root_type, set->format, &scnode)) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007262 /* check failed */
7263 scnode = NULL;
7264 break;
Michal Vaskod3678892020-05-21 10:06:58 +02007265 }
7266 }
7267
Michal Vasko004d3152020-06-11 19:59:22 +02007268 if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) {
7269 /* try to create the predicates */
Michal Vasko5d24f6c2020-10-13 13:49:06 +02007270 if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->cur_mod, set->cur_node ?
7271 set->cur_node->schema : NULL, set->format, set->prefix_data, &predicates, &pred_type)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007272 /* hashes cannot be used */
Michal Vaskod3678892020-05-21 10:06:58 +02007273 scnode = NULL;
7274 }
7275 }
7276 }
7277
Michal Vaskoc71c37b2021-01-11 13:40:02 +01007278 if (!scnode) {
7279 /* we are not able to match based on a schema node and not all the modules match ("*"),
Michal Vasko004d3152020-06-11 19:59:22 +02007280 * use dictionary for efficient comparison */
Radek Krejci011e4aa2020-09-04 15:22:31 +02007281 LY_CHECK_GOTO(rc = lydict_insert(set->ctx, ncname, ncname_len, &ncname_dict), cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007282 }
7283
7284moveto:
7285 /* move to the attribute(s), data node(s), or schema node(s) */
7286 if (attr_axis) {
aPiecek8b0cc152021-05-31 16:40:31 +02007287 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007288 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskod3678892020-05-21 10:06:58 +02007289 } else {
7290 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01007291 rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007292 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02007293 rc = moveto_attr(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007294 }
7295 LY_CHECK_GOTO(rc, cleanup);
7296 }
7297 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02007298 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +02007299 int64_t i;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007300 const struct lyxp_set_scnode *scparent = NULL;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007301
7302 /* remember parent if there is only one, to print in the warning */
7303 for (i = 0; i < set->used; ++i) {
7304 if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) {
7305 if (!scparent) {
7306 /* remember the context node */
7307 scparent = &set->val.scnodes[i];
7308 } else {
7309 /* several context nodes, no reasonable error possible */
7310 scparent = NULL;
7311 break;
7312 }
7313 }
7314 }
Radek Krejci1deb5be2020-08-26 16:43:36 +02007315
Michal Vaskod3678892020-05-21 10:06:58 +02007316 if (all_desc) {
Michal Vasko004d3152020-06-11 19:59:22 +02007317 rc = moveto_scnode_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007318 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007319 rc = moveto_scnode(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007320 }
7321 LY_CHECK_GOTO(rc, cleanup);
7322
7323 for (i = set->used - 1; i > -1; --i) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007324 if (set->val.scnodes[i].in_ctx > LYXP_SET_SCNODE_ATOM_NODE) {
Michal Vaskod3678892020-05-21 10:06:58 +02007325 break;
7326 }
7327 }
7328 if (i == -1) {
Michal Vasko4ad69e72021-10-26 16:25:55 +02007329 /* generate message */
7330 eval_name_test_scnode_no_match_msg(set, scparent, ncname, ncname_len, exp->expr, options);
7331
7332 if (options & LYXP_SCNODE_ERROR) {
7333 /* error */
7334 rc = LY_EVALID;
7335 goto cleanup;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007336 }
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007337
7338 /* skip the predicates and the rest of this path to not generate invalid warnings */
7339 rc = LY_ENOT;
7340 scnode_skip_pred = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02007341 }
7342 } else {
7343 if (all_desc) {
Michal Vaskocdad7122020-11-09 21:04:44 +01007344 rc = moveto_node_alldesc(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007345 } else {
7346 if (scnode) {
7347 /* we can find the nodes using hashes */
Michal Vaskocdad7122020-11-09 21:04:44 +01007348 rc = moveto_node_hash(set, scnode, predicates, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007349 } else {
Michal Vaskocdad7122020-11-09 21:04:44 +01007350 rc = moveto_node(set, moveto_mod, ncname_dict, options);
Michal Vaskod3678892020-05-21 10:06:58 +02007351 }
7352 }
7353 LY_CHECK_GOTO(rc, cleanup);
7354 }
7355 }
7356
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007357 if (scnode_skip_pred) {
7358 /* skip predicates */
7359 options |= LYXP_SKIP_EXPR;
7360 }
7361
Michal Vaskod3678892020-05-21 10:06:58 +02007362 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007363 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007364 r = eval_predicate(exp, tok_idx, set, options, 1);
7365 LY_CHECK_ERR_GOTO(r, rc = r, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007366 }
7367
7368cleanup:
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007369 if (scnode_skip_pred) {
7370 /* restore options */
7371 options &= ~LYXP_SKIP_EXPR;
7372 }
aPiecek8b0cc152021-05-31 16:40:31 +02007373 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007374 lydict_remove(set->ctx, ncname_dict);
Michal Vaskof7e16e22020-10-21 09:24:39 +02007375 ly_path_predicates_free(set->ctx, pred_type, predicates);
Michal Vaskodb51a8d2020-05-27 15:22:29 +02007376 }
Michal Vaskod3678892020-05-21 10:06:58 +02007377 return rc;
7378}
7379
7380/**
7381 * @brief Evaluate NodeType and any following Predicates. Logs directly on error.
7382 *
7383 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
7384 * [6] NodeTest ::= NameTest | NodeType '(' ')'
7385 * [8] NodeType ::= 'text' | 'node'
7386 *
7387 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007388 * @param[in] tok_idx Position in the expression @p exp.
Michal Vaskod3678892020-05-21 10:06:58 +02007389 * @param[in] attr_axis Whether to search attributes or standard nodes.
7390 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02007391 * @param[in,out] set Context and result set.
Michal Vaskod3678892020-05-21 10:06:58 +02007392 * @param[in] options XPath options.
7393 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7394 */
7395static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007396eval_node_type_with_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool attr_axis, ly_bool all_desc,
Radek Krejci1deb5be2020-08-26 16:43:36 +02007397 struct lyxp_set *set, uint32_t options)
Michal Vaskod3678892020-05-21 10:06:58 +02007398{
7399 LY_ERR rc;
7400
7401 /* TODO */
7402 (void)attr_axis;
7403 (void)all_desc;
7404
aPiecek8b0cc152021-05-31 16:40:31 +02007405 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko004d3152020-06-11 19:59:22 +02007406 assert(exp->tok_len[*tok_idx] == 4);
Michal Vaskod3678892020-05-21 10:06:58 +02007407 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007408 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
aPiecek8b0cc152021-05-31 16:40:31 +02007409 options |= LYXP_SKIP_EXPR;
Michal Vaskod3678892020-05-21 10:06:58 +02007410 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007411 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) {
Michal Vaskod3678892020-05-21 10:06:58 +02007412 rc = xpath_node(NULL, 0, set, options);
7413 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007414 assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4));
Michal Vaskod3678892020-05-21 10:06:58 +02007415 rc = xpath_text(NULL, 0, set, options);
7416 }
7417 LY_CHECK_RET(rc);
7418 }
7419 }
aPiecek8b0cc152021-05-31 16:40:31 +02007420 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007421 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007422 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007423
7424 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007425 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
aPiecek8b0cc152021-05-31 16:40:31 +02007426 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007427 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007428 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007429
7430 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007431 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02007432 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007433 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007434 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007435
7436 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007437 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
7438 rc = eval_predicate(exp, tok_idx, set, options, 1);
Michal Vaskod3678892020-05-21 10:06:58 +02007439 LY_CHECK_RET(rc);
7440 }
7441
7442 return LY_SUCCESS;
7443}
7444
7445/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007446 * @brief Evaluate RelativeLocationPath. Logs directly on error.
7447 *
7448 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
7449 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
Michal Vaskod3678892020-05-21 10:06:58 +02007450 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007451 *
7452 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007453 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007454 * @param[in] all_desc Whether to search all the descendants or children only.
aPiecek8b0cc152021-05-31 16:40:31 +02007455 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007456 * @param[in] options XPath options.
7457 * @return LY_ERR (YL_EINCOMPLETE on unresolved when)
7458 */
7459static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007460eval_relative_location_path(const struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool all_desc, struct lyxp_set *set,
7461 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007462{
Radek Krejci857189e2020-09-01 13:26:36 +02007463 ly_bool attr_axis;
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007464 LY_ERR rc = LY_SUCCESS;
7465 int scnode_skip_path = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007466
7467 goto step;
7468 do {
7469 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02007470 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007471 all_desc = 0;
7472 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02007473 assert(exp->tok_len[*tok_idx] == 2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007474 all_desc = 1;
7475 }
aPiecek8b0cc152021-05-31 16:40:31 +02007476 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007477 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007478 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007479
7480step:
Michal Vaskod3678892020-05-21 10:06:58 +02007481 /* evaluate abbreviated axis '@'? if any */
Michal Vasko004d3152020-06-11 19:59:22 +02007482 if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) {
Michal Vaskod3678892020-05-21 10:06:58 +02007483 attr_axis = 1;
7484
aPiecek8b0cc152021-05-31 16:40:31 +02007485 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007486 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007487 ++(*tok_idx);
Michal Vaskod3678892020-05-21 10:06:58 +02007488 } else {
7489 attr_axis = 0;
7490 }
7491
Michal Vasko03ff5a72019-09-11 13:49:33 +02007492 /* Step */
Michal Vasko004d3152020-06-11 19:59:22 +02007493 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007494 case LYXP_TOKEN_DOT:
7495 /* evaluate '.' */
aPiecek8b0cc152021-05-31 16:40:31 +02007496 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007497 rc = moveto_scnode_self(set, all_desc, options);
7498 } else {
7499 rc = moveto_self(set, all_desc, options);
7500 }
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007501 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007502 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007503 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007504 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007505 break;
7506
7507 case LYXP_TOKEN_DDOT:
7508 /* evaluate '..' */
aPiecek8b0cc152021-05-31 16:40:31 +02007509 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007510 rc = moveto_scnode_parent(set, all_desc, options);
7511 } else {
7512 rc = moveto_parent(set, all_desc, options);
7513 }
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007514 LY_CHECK_GOTO(rc, cleanup);
aPiecek8b0cc152021-05-31 16:40:31 +02007515 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007516 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007517 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007518 break;
7519
Michal Vasko03ff5a72019-09-11 13:49:33 +02007520 case LYXP_TOKEN_NAMETEST:
Michal Vaskod3678892020-05-21 10:06:58 +02007521 /* evaluate NameTest Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007522 rc = eval_name_test_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007523 if (rc == LY_ENOT) {
7524 assert(options & LYXP_SCNODE_ALL);
7525 /* skip the rest of this path */
7526 rc = LY_SUCCESS;
7527 scnode_skip_path = 1;
7528 options |= LYXP_SKIP_EXPR;
7529 }
7530 LY_CHECK_GOTO(rc, cleanup);
Michal Vaskod3678892020-05-21 10:06:58 +02007531 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007532
Michal Vaskod3678892020-05-21 10:06:58 +02007533 case LYXP_TOKEN_NODETYPE:
7534 /* evaluate NodeType Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02007535 rc = eval_node_type_with_predicate(exp, tok_idx, attr_axis, all_desc, set, options);
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007536 LY_CHECK_GOTO(rc, cleanup);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007537 break;
7538
7539 default:
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007540 LOGINT(set->ctx);
7541 rc = LY_EINT;
7542 goto cleanup;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007543 }
Michal Vasko004d3152020-06-11 19:59:22 +02007544 } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007545
Michal Vaskoa036a6b2021-10-12 16:05:23 +02007546cleanup:
7547 if (scnode_skip_path) {
7548 options &= ~LYXP_SKIP_EXPR;
7549 }
7550 return rc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007551}
7552
7553/**
7554 * @brief Evaluate AbsoluteLocationPath. Logs directly on error.
7555 *
7556 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
7557 *
7558 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007559 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02007560 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007561 * @param[in] options XPath options.
7562 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7563 */
7564static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007565eval_absolute_location_path(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007566{
Radek Krejci857189e2020-09-01 13:26:36 +02007567 ly_bool all_desc;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007568
aPiecek8b0cc152021-05-31 16:40:31 +02007569 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007570 /* no matter what tokens follow, we need to be at the root */
Michal Vaskob0099a92020-08-31 14:55:23 +02007571 LY_CHECK_RET(moveto_root(set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007572 }
7573
7574 /* '/' RelativeLocationPath? */
Michal Vasko004d3152020-06-11 19:59:22 +02007575 if (exp->tok_len[*tok_idx] == 1) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007576 /* evaluate '/' - deferred */
7577 all_desc = 0;
aPiecek8b0cc152021-05-31 16:40:31 +02007578 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007579 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007580 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007581
Michal Vasko004d3152020-06-11 19:59:22 +02007582 if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007583 return LY_SUCCESS;
7584 }
Michal Vasko004d3152020-06-11 19:59:22 +02007585 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007586 case LYXP_TOKEN_DOT:
7587 case LYXP_TOKEN_DDOT:
7588 case LYXP_TOKEN_AT:
7589 case LYXP_TOKEN_NAMETEST:
7590 case LYXP_TOKEN_NODETYPE:
Michal Vaskob0099a92020-08-31 14:55:23 +02007591 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007592 break;
7593 default:
7594 break;
7595 }
7596
Michal Vasko03ff5a72019-09-11 13:49:33 +02007597 } else {
Radek Krejcif6a11002020-08-21 13:29:07 +02007598 /* '//' RelativeLocationPath */
Michal Vasko03ff5a72019-09-11 13:49:33 +02007599 /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */
7600 all_desc = 1;
aPiecek8b0cc152021-05-31 16:40:31 +02007601 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007602 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007603 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007604
Michal Vaskob0099a92020-08-31 14:55:23 +02007605 LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007606 }
7607
7608 return LY_SUCCESS;
7609}
7610
7611/**
7612 * @brief Evaluate FunctionCall. Logs directly on error.
7613 *
Michal Vaskod3678892020-05-21 10:06:58 +02007614 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
Michal Vasko03ff5a72019-09-11 13:49:33 +02007615 *
7616 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007617 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02007618 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007619 * @param[in] options XPath options.
7620 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7621 */
7622static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007623eval_function_call(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007624{
7625 LY_ERR rc;
Michal Vasko69730152020-10-09 16:30:07 +02007626
Radek Krejci1deb5be2020-08-26 16:43:36 +02007627 LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, uint32_t) = NULL;
Michal Vasko0cbf54f2019-12-16 10:01:06 +01007628 uint16_t arg_count = 0, i;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007629 struct lyxp_set **args = NULL, **args_aux;
7630
aPiecek8b0cc152021-05-31 16:40:31 +02007631 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007632 /* FunctionName */
Michal Vasko004d3152020-06-11 19:59:22 +02007633 switch (exp->tok_len[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007634 case 3:
Michal Vasko004d3152020-06-11 19:59:22 +02007635 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007636 xpath_func = &xpath_not;
Michal Vasko004d3152020-06-11 19:59:22 +02007637 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007638 xpath_func = &xpath_sum;
7639 }
7640 break;
7641 case 4:
Michal Vasko004d3152020-06-11 19:59:22 +02007642 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007643 xpath_func = &xpath_lang;
Michal Vasko004d3152020-06-11 19:59:22 +02007644 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007645 xpath_func = &xpath_last;
Michal Vasko004d3152020-06-11 19:59:22 +02007646 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007647 xpath_func = &xpath_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007648 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007649 xpath_func = &xpath_true;
7650 }
7651 break;
7652 case 5:
Michal Vasko004d3152020-06-11 19:59:22 +02007653 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007654 xpath_func = &xpath_count;
Michal Vasko004d3152020-06-11 19:59:22 +02007655 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007656 xpath_func = &xpath_false;
Michal Vasko004d3152020-06-11 19:59:22 +02007657 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007658 xpath_func = &xpath_floor;
Michal Vasko004d3152020-06-11 19:59:22 +02007659 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007660 xpath_func = &xpath_round;
Michal Vasko004d3152020-06-11 19:59:22 +02007661 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007662 xpath_func = &xpath_deref;
7663 }
7664 break;
7665 case 6:
Michal Vasko004d3152020-06-11 19:59:22 +02007666 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007667 xpath_func = &xpath_concat;
Michal Vasko004d3152020-06-11 19:59:22 +02007668 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007669 xpath_func = &xpath_number;
Michal Vasko004d3152020-06-11 19:59:22 +02007670 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007671 xpath_func = &xpath_string;
7672 }
7673 break;
7674 case 7:
Michal Vasko004d3152020-06-11 19:59:22 +02007675 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007676 xpath_func = &xpath_boolean;
Michal Vasko004d3152020-06-11 19:59:22 +02007677 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007678 xpath_func = &xpath_ceiling;
Michal Vasko004d3152020-06-11 19:59:22 +02007679 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007680 xpath_func = &xpath_current;
7681 }
7682 break;
7683 case 8:
Michal Vasko004d3152020-06-11 19:59:22 +02007684 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007685 xpath_func = &xpath_contains;
Michal Vasko004d3152020-06-11 19:59:22 +02007686 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007687 xpath_func = &xpath_position;
Michal Vasko004d3152020-06-11 19:59:22 +02007688 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007689 xpath_func = &xpath_re_match;
7690 }
7691 break;
7692 case 9:
Michal Vasko004d3152020-06-11 19:59:22 +02007693 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007694 xpath_func = &xpath_substring;
Michal Vasko004d3152020-06-11 19:59:22 +02007695 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007696 xpath_func = &xpath_translate;
7697 }
7698 break;
7699 case 10:
Michal Vasko004d3152020-06-11 19:59:22 +02007700 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007701 xpath_func = &xpath_local_name;
Michal Vasko004d3152020-06-11 19:59:22 +02007702 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007703 xpath_func = &xpath_enum_value;
Michal Vasko004d3152020-06-11 19:59:22 +02007704 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007705 xpath_func = &xpath_bit_is_set;
7706 }
7707 break;
7708 case 11:
Michal Vasko004d3152020-06-11 19:59:22 +02007709 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007710 xpath_func = &xpath_starts_with;
7711 }
7712 break;
7713 case 12:
Michal Vasko004d3152020-06-11 19:59:22 +02007714 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007715 xpath_func = &xpath_derived_from;
7716 }
7717 break;
7718 case 13:
Michal Vasko004d3152020-06-11 19:59:22 +02007719 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007720 xpath_func = &xpath_namespace_uri;
Michal Vasko004d3152020-06-11 19:59:22 +02007721 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007722 xpath_func = &xpath_string_length;
7723 }
7724 break;
7725 case 15:
Michal Vasko004d3152020-06-11 19:59:22 +02007726 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007727 xpath_func = &xpath_normalize_space;
Michal Vasko004d3152020-06-11 19:59:22 +02007728 } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007729 xpath_func = &xpath_substring_after;
7730 }
7731 break;
7732 case 16:
Michal Vasko004d3152020-06-11 19:59:22 +02007733 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007734 xpath_func = &xpath_substring_before;
7735 }
7736 break;
7737 case 20:
Michal Vasko004d3152020-06-11 19:59:22 +02007738 if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007739 xpath_func = &xpath_derived_from_or_self;
7740 }
7741 break;
7742 }
7743
7744 if (!xpath_func) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007745 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 +02007746 return LY_EVALID;
7747 }
7748 }
7749
aPiecek8b0cc152021-05-31 16:40:31 +02007750 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007751 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007752 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007753
7754 /* '(' */
Michal Vasko004d3152020-06-11 19:59:22 +02007755 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1);
aPiecek8b0cc152021-05-31 16:40:31 +02007756 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007757 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007758 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007759
7760 /* ( Expr ( ',' Expr )* )? */
Michal Vasko004d3152020-06-11 19:59:22 +02007761 if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) {
aPiecek8b0cc152021-05-31 16:40:31 +02007762 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007763 args = malloc(sizeof *args);
7764 LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7765 arg_count = 1;
7766 args[0] = set_copy(set);
7767 if (!args[0]) {
7768 rc = LY_EMEM;
7769 goto cleanup;
7770 }
7771
Michal Vasko004d3152020-06-11 19:59:22 +02007772 rc = eval_expr_select(exp, tok_idx, 0, args[0], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007773 LY_CHECK_GOTO(rc, cleanup);
7774 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02007775 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007776 LY_CHECK_GOTO(rc, cleanup);
7777 }
7778 }
Michal Vasko004d3152020-06-11 19:59:22 +02007779 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) {
aPiecek8b0cc152021-05-31 16:40:31 +02007780 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007781 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007782 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007783
aPiecek8b0cc152021-05-31 16:40:31 +02007784 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007785 ++arg_count;
7786 args_aux = realloc(args, arg_count * sizeof *args);
7787 LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup);
7788 args = args_aux;
7789 args[arg_count - 1] = set_copy(set);
7790 if (!args[arg_count - 1]) {
7791 rc = LY_EMEM;
7792 goto cleanup;
7793 }
7794
Michal Vasko004d3152020-06-11 19:59:22 +02007795 rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007796 LY_CHECK_GOTO(rc, cleanup);
7797 } else {
aPiecek8b0cc152021-05-31 16:40:31 +02007798 rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007799 LY_CHECK_GOTO(rc, cleanup);
7800 }
7801 }
7802
7803 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007804 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02007805 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007806 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007807 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007808
aPiecek8b0cc152021-05-31 16:40:31 +02007809 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007810 /* evaluate function */
7811 rc = xpath_func(args, arg_count, set, options);
7812
7813 if (options & LYXP_SCNODE_ALL) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007814 /* merge all nodes from arg evaluations */
7815 for (i = 0; i < arg_count; ++i) {
Michal Vasko1a09b212021-05-06 13:00:10 +02007816 set_scnode_clear_ctx(args[i], LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01007817 lyxp_set_scnode_merge(set, args[i]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007818 }
7819 }
7820 } else {
7821 rc = LY_SUCCESS;
7822 }
7823
7824cleanup:
7825 for (i = 0; i < arg_count; ++i) {
7826 lyxp_set_free(args[i]);
7827 }
7828 free(args);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007829 return rc;
7830}
7831
7832/**
7833 * @brief Evaluate Number. Logs directly on error.
7834 *
7835 * @param[in] ctx Context for errors.
7836 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007837 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007838 * @param[in,out] set Context and result set. On NULL the rule is only parsed.
7839 * @return LY_ERR
7840 */
7841static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007842eval_number(struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007843{
7844 long double num;
7845 char *endptr;
7846
7847 if (set) {
7848 errno = 0;
Michal Vasko004d3152020-06-11 19:59:22 +02007849 num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007850 if (errno) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007851 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
7852 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).",
Michal Vasko69730152020-10-09 16:30:07 +02007853 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno));
Michal Vasko03ff5a72019-09-11 13:49:33 +02007854 return LY_EVALID;
Michal Vasko004d3152020-06-11 19:59:22 +02007855 } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) {
Radek Krejci2efc45b2020-12-22 16:25:44 +01007856 LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]);
7857 LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.",
Michal Vasko69730152020-10-09 16:30:07 +02007858 exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007859 return LY_EVALID;
7860 }
7861
7862 set_fill_number(set, num);
7863 }
7864
7865 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02007866 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007867 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007868 return LY_SUCCESS;
7869}
7870
aPiecekdf23eee2021-10-07 12:21:50 +02007871LY_ERR
7872lyxp_vars_find(struct lyxp_var *vars, const char *name, size_t name_len, struct lyxp_var **var)
7873{
7874 LY_ERR ret = LY_ENOTFOUND;
7875 LY_ARRAY_COUNT_TYPE u;
7876
7877 assert(vars && name);
7878
7879 name_len = name_len ? name_len : strlen(name);
7880
7881 LY_ARRAY_FOR(vars, u) {
7882 if (!strncmp(vars[u].name, name, name_len)) {
7883 ret = LY_SUCCESS;
7884 break;
7885 }
7886 }
7887
7888 if (var && !ret) {
7889 *var = &vars[u];
7890 }
7891
7892 return ret;
7893}
7894
Michal Vasko03ff5a72019-09-11 13:49:33 +02007895/**
aPiecekfba75362021-10-07 12:39:48 +02007896 * @brief Evaluate VariableReference.
7897 *
7898 * @param[in] exp Parsed XPath expression.
7899 * @param[in] tok_idx Position in the expression @p exp.
7900 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
7901 * @param[in,out] set Context and result set.
7902 * @param[in] options XPath options.
7903 * @return LY_ERR value.
7904 */
7905static LY_ERR
7906eval_variable_reference(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
7907{
7908 LY_ERR ret;
7909 const char *name;
7910 struct lyxp_var *var;
7911 const struct lyxp_var *vars;
7912 struct lyxp_expr *tokens = NULL;
7913 uint16_t token_index;
7914
7915 vars = set->vars;
7916
7917 /* Find out the name and value of the variable. */
7918 name = &exp->expr[exp->tok_pos[*tok_idx]];
7919 ret = lyxp_vars_find((struct lyxp_var *)vars, name, exp->tok_len[*tok_idx], &var);
7920 LY_CHECK_ERR_RET(ret, LOGERR(set->ctx, ret,
7921 "XPath variable \"%s\" not defined.", name), ret);
7922
7923 /* Parse value. */
7924 ret = lyxp_expr_parse(set->ctx, var->value, 0, 1, &tokens);
7925 LY_CHECK_GOTO(ret, cleanup);
7926
7927 /* Evaluate value. */
7928 token_index = 0;
7929 ret = eval_expr_select(tokens, &token_index, 0, set, options);
7930 LY_CHECK_GOTO(ret, cleanup);
7931
7932cleanup:
7933 lyxp_expr_free(set->ctx, tokens);
7934
7935 return ret;
7936}
7937
7938/**
Michal Vasko03ff5a72019-09-11 13:49:33 +02007939 * @brief Evaluate PathExpr. Logs directly on error.
7940 *
Michal Vaskod3678892020-05-21 10:06:58 +02007941 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Michal Vasko03ff5a72019-09-11 13:49:33 +02007942 * | PrimaryExpr Predicate* '/' RelativeLocationPath
7943 * | PrimaryExpr Predicate* '//' RelativeLocationPath
7944 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
aPiecekfba75362021-10-07 12:39:48 +02007945 * [10] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall
Michal Vasko03ff5a72019-09-11 13:49:33 +02007946 *
7947 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02007948 * @param[in] tok_idx Position in the expression @p exp.
aPiecek8b0cc152021-05-31 16:40:31 +02007949 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02007950 * @param[in] options XPath options.
7951 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
7952 */
7953static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02007954eval_path_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02007955{
Radek Krejci857189e2020-09-01 13:26:36 +02007956 ly_bool all_desc, parent_pos_pred;
Michal Vasko03ff5a72019-09-11 13:49:33 +02007957 LY_ERR rc;
7958
Michal Vasko004d3152020-06-11 19:59:22 +02007959 switch (exp->tokens[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02007960 case LYXP_TOKEN_PAR1:
7961 /* '(' Expr ')' */
7962
7963 /* '(' */
aPiecek8b0cc152021-05-31 16:40:31 +02007964 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007965 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007966 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007967
7968 /* Expr */
Michal Vasko004d3152020-06-11 19:59:22 +02007969 rc = eval_expr_select(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007970 LY_CHECK_RET(rc);
7971
7972 /* ')' */
Michal Vasko004d3152020-06-11 19:59:22 +02007973 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2);
aPiecek8b0cc152021-05-31 16:40:31 +02007974 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02007975 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02007976 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007977
7978 parent_pos_pred = 0;
7979 goto predicate;
7980
7981 case LYXP_TOKEN_DOT:
7982 case LYXP_TOKEN_DDOT:
7983 case LYXP_TOKEN_AT:
7984 case LYXP_TOKEN_NAMETEST:
7985 case LYXP_TOKEN_NODETYPE:
7986 /* RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02007987 rc = eval_relative_location_path(exp, tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02007988 LY_CHECK_RET(rc);
7989 break;
7990
aPiecekfba75362021-10-07 12:39:48 +02007991 case LYXP_TOKEN_VARREF:
7992 /* VariableReference */
7993 rc = eval_variable_reference(exp, tok_idx, set, options);
7994 LY_CHECK_RET(rc);
7995 ++(*tok_idx);
7996
7997 parent_pos_pred = 1;
7998 goto predicate;
7999
Michal Vasko03ff5a72019-09-11 13:49:33 +02008000 case LYXP_TOKEN_FUNCNAME:
8001 /* FunctionCall */
aPiecek8b0cc152021-05-31 16:40:31 +02008002 rc = eval_function_call(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008003 LY_CHECK_RET(rc);
8004
8005 parent_pos_pred = 1;
8006 goto predicate;
8007
Michal Vasko3e48bf32020-06-01 08:39:07 +02008008 case LYXP_TOKEN_OPER_PATH:
8009 case LYXP_TOKEN_OPER_RPATH:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008010 /* AbsoluteLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008011 rc = eval_absolute_location_path(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008012 LY_CHECK_RET(rc);
8013 break;
8014
8015 case LYXP_TOKEN_LITERAL:
8016 /* Literal */
aPiecek8b0cc152021-05-31 16:40:31 +02008017 if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) {
8018 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008019 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008020 }
Michal Vasko004d3152020-06-11 19:59:22 +02008021 eval_literal(exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008022 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008023 eval_literal(exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008024 }
8025
8026 parent_pos_pred = 1;
8027 goto predicate;
8028
8029 case LYXP_TOKEN_NUMBER:
8030 /* Number */
aPiecek8b0cc152021-05-31 16:40:31 +02008031 if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) {
8032 if (!(options & LYXP_SKIP_EXPR)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008033 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008034 }
Michal Vasko004d3152020-06-11 19:59:22 +02008035 rc = eval_number(NULL, exp, tok_idx, NULL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008036 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008037 rc = eval_number(set->ctx, exp, tok_idx, set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008038 }
8039 LY_CHECK_RET(rc);
8040
8041 parent_pos_pred = 1;
8042 goto predicate;
8043
8044 default:
Radek Krejci2efc45b2020-12-22 16:25:44 +01008045 LOGVAL(set->ctx, LY_VCODE_XP_INTOK, lyxp_print_token(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008046 return LY_EVALID;
8047 }
8048
8049 return LY_SUCCESS;
8050
8051predicate:
8052 /* Predicate* */
Michal Vasko004d3152020-06-11 19:59:22 +02008053 while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) {
8054 rc = eval_predicate(exp, tok_idx, set, options, parent_pos_pred);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008055 LY_CHECK_RET(rc);
8056 }
8057
8058 /* ('/' or '//') RelativeLocationPath */
Michal Vasko004d3152020-06-11 19:59:22 +02008059 if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008060
8061 /* evaluate '/' or '//' */
Michal Vasko004d3152020-06-11 19:59:22 +02008062 if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008063 all_desc = 0;
8064 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008065 all_desc = 1;
8066 }
8067
aPiecek8b0cc152021-05-31 16:40:31 +02008068 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008069 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008070 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008071
Michal Vasko004d3152020-06-11 19:59:22 +02008072 rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008073 LY_CHECK_RET(rc);
8074 }
8075
8076 return LY_SUCCESS;
8077}
8078
8079/**
8080 * @brief Evaluate UnionExpr. Logs directly on error.
8081 *
Michal Vaskod3678892020-05-21 10:06:58 +02008082 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008083 *
8084 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008085 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008086 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008087 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008088 * @param[in] options XPath options.
8089 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8090 */
8091static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008092eval_union_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008093{
8094 LY_ERR rc = LY_SUCCESS;
8095 struct lyxp_set orig_set, set2;
8096 uint16_t i;
8097
8098 assert(repeat);
8099
8100 set_init(&orig_set, set);
8101 set_init(&set2, set);
8102
8103 set_fill_set(&orig_set, set);
8104
Michal Vasko004d3152020-06-11 19:59:22 +02008105 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008106 LY_CHECK_GOTO(rc, cleanup);
8107
8108 /* ('|' PathExpr)* */
8109 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008110 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI);
aPiecek8b0cc152021-05-31 16:40:31 +02008111 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008112 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008113 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008114
aPiecek8b0cc152021-05-31 16:40:31 +02008115 if (options & LYXP_SKIP_EXPR) {
8116 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008117 LY_CHECK_GOTO(rc, cleanup);
8118 continue;
8119 }
8120
8121 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008122 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008123 LY_CHECK_GOTO(rc, cleanup);
8124
8125 /* eval */
8126 if (options & LYXP_SCNODE_ALL) {
Michal Vaskoecd62de2019-11-13 12:35:11 +01008127 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008128 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008129 rc = moveto_union(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008130 LY_CHECK_GOTO(rc, cleanup);
8131 }
8132 }
8133
8134cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008135 lyxp_set_free_content(&orig_set);
8136 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008137 return rc;
8138}
8139
8140/**
8141 * @brief Evaluate UnaryExpr. Logs directly on error.
8142 *
Michal Vaskod3678892020-05-21 10:06:58 +02008143 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008144 *
8145 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008146 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008147 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008148 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008149 * @param[in] options XPath options.
8150 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8151 */
8152static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008153eval_unary_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008154{
8155 LY_ERR rc;
8156 uint16_t this_op, i;
8157
8158 assert(repeat);
8159
8160 /* ('-')+ */
Michal Vasko004d3152020-06-11 19:59:22 +02008161 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008162 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008163 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 +02008164
aPiecek8b0cc152021-05-31 16:40:31 +02008165 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008166 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008167 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008168 }
8169
Michal Vasko004d3152020-06-11 19:59:22 +02008170 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008171 LY_CHECK_RET(rc);
8172
aPiecek8b0cc152021-05-31 16:40:31 +02008173 if (!(options & LYXP_SKIP_EXPR) && (repeat % 2)) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008174 if (options & LYXP_SCNODE_ALL) {
8175 warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]);
8176 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008177 rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008178 LY_CHECK_RET(rc);
8179 }
8180 }
8181
8182 return LY_SUCCESS;
8183}
8184
8185/**
8186 * @brief Evaluate MultiplicativeExpr. Logs directly on error.
8187 *
Michal Vaskod3678892020-05-21 10:06:58 +02008188 * [18] MultiplicativeExpr ::= UnaryExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008189 * | MultiplicativeExpr '*' UnaryExpr
8190 * | MultiplicativeExpr 'div' UnaryExpr
8191 * | MultiplicativeExpr 'mod' UnaryExpr
8192 *
8193 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008194 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008195 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008196 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008197 * @param[in] options XPath options.
8198 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8199 */
8200static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008201eval_multiplicative_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set,
8202 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008203{
8204 LY_ERR rc;
8205 uint16_t this_op;
8206 struct lyxp_set orig_set, set2;
8207 uint16_t i;
8208
8209 assert(repeat);
8210
8211 set_init(&orig_set, set);
8212 set_init(&set2, set);
8213
8214 set_fill_set(&orig_set, set);
8215
Michal Vasko004d3152020-06-11 19:59:22 +02008216 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008217 LY_CHECK_GOTO(rc, cleanup);
8218
8219 /* ('*' / 'div' / 'mod' UnaryExpr)* */
8220 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008221 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008222
Michal Vasko004d3152020-06-11 19:59:22 +02008223 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
aPiecek8b0cc152021-05-31 16:40:31 +02008224 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008225 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008226 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008227
aPiecek8b0cc152021-05-31 16:40:31 +02008228 if (options & LYXP_SKIP_EXPR) {
8229 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008230 LY_CHECK_GOTO(rc, cleanup);
8231 continue;
8232 }
8233
8234 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008235 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008236 LY_CHECK_GOTO(rc, cleanup);
8237
8238 /* eval */
8239 if (options & LYXP_SCNODE_ALL) {
8240 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008241 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02008242 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008243 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008244 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008245 LY_CHECK_GOTO(rc, cleanup);
8246 }
8247 }
8248
8249cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008250 lyxp_set_free_content(&orig_set);
8251 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008252 return rc;
8253}
8254
8255/**
8256 * @brief Evaluate AdditiveExpr. Logs directly on error.
8257 *
Michal Vaskod3678892020-05-21 10:06:58 +02008258 * [17] AdditiveExpr ::= MultiplicativeExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008259 * | AdditiveExpr '+' MultiplicativeExpr
8260 * | AdditiveExpr '-' MultiplicativeExpr
8261 *
8262 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008263 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008264 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008265 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008266 * @param[in] options XPath options.
8267 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8268 */
8269static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008270eval_additive_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008271{
8272 LY_ERR rc;
8273 uint16_t this_op;
8274 struct lyxp_set orig_set, set2;
8275 uint16_t i;
8276
8277 assert(repeat);
8278
8279 set_init(&orig_set, set);
8280 set_init(&set2, set);
8281
8282 set_fill_set(&orig_set, set);
8283
Michal Vasko004d3152020-06-11 19:59:22 +02008284 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008285 LY_CHECK_GOTO(rc, cleanup);
8286
8287 /* ('+' / '-' MultiplicativeExpr)* */
8288 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008289 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008290
Michal Vasko004d3152020-06-11 19:59:22 +02008291 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008292 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"),
Michal Vasko69730152020-10-09 16:30:07 +02008293 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008294 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008295
aPiecek8b0cc152021-05-31 16:40:31 +02008296 if (options & LYXP_SKIP_EXPR) {
8297 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008298 LY_CHECK_GOTO(rc, cleanup);
8299 continue;
8300 }
8301
8302 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008303 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008304 LY_CHECK_GOTO(rc, cleanup);
8305
8306 /* eval */
8307 if (options & LYXP_SCNODE_ALL) {
8308 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008309 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02008310 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008311 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008312 rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008313 LY_CHECK_GOTO(rc, cleanup);
8314 }
8315 }
8316
8317cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008318 lyxp_set_free_content(&orig_set);
8319 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008320 return rc;
8321}
8322
8323/**
8324 * @brief Evaluate RelationalExpr. Logs directly on error.
8325 *
Michal Vaskod3678892020-05-21 10:06:58 +02008326 * [16] RelationalExpr ::= AdditiveExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008327 * | RelationalExpr '<' AdditiveExpr
8328 * | RelationalExpr '>' AdditiveExpr
8329 * | RelationalExpr '<=' AdditiveExpr
8330 * | RelationalExpr '>=' AdditiveExpr
8331 *
8332 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008333 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008334 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008335 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008336 * @param[in] options XPath options.
8337 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8338 */
8339static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008340eval_relational_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008341{
8342 LY_ERR rc;
8343 uint16_t this_op;
8344 struct lyxp_set orig_set, set2;
8345 uint16_t i;
8346
8347 assert(repeat);
8348
8349 set_init(&orig_set, set);
8350 set_init(&set2, set);
8351
8352 set_fill_set(&orig_set, set);
8353
Michal Vasko004d3152020-06-11 19:59:22 +02008354 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008355 LY_CHECK_GOTO(rc, cleanup);
8356
8357 /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */
8358 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008359 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008360
Michal Vasko004d3152020-06-11 19:59:22 +02008361 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP);
aPiecek8b0cc152021-05-31 16:40:31 +02008362 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008363 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008364 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008365
aPiecek8b0cc152021-05-31 16:40:31 +02008366 if (options & LYXP_SKIP_EXPR) {
8367 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008368 LY_CHECK_GOTO(rc, cleanup);
8369 continue;
8370 }
8371
8372 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008373 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008374 LY_CHECK_GOTO(rc, cleanup);
8375
8376 /* eval */
8377 if (options & LYXP_SCNODE_ALL) {
8378 warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008379 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02008380 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008381 } else {
8382 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8383 LY_CHECK_GOTO(rc, cleanup);
8384 }
8385 }
8386
8387cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008388 lyxp_set_free_content(&orig_set);
8389 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008390 return rc;
8391}
8392
8393/**
8394 * @brief Evaluate EqualityExpr. Logs directly on error.
8395 *
Michal Vaskod3678892020-05-21 10:06:58 +02008396 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008397 * | EqualityExpr '!=' RelationalExpr
8398 *
8399 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008400 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008401 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008402 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008403 * @param[in] options XPath options.
8404 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8405 */
8406static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008407eval_equality_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008408{
8409 LY_ERR rc;
8410 uint16_t this_op;
8411 struct lyxp_set orig_set, set2;
8412 uint16_t i;
8413
8414 assert(repeat);
8415
8416 set_init(&orig_set, set);
8417 set_init(&set2, set);
8418
8419 set_fill_set(&orig_set, set);
8420
Michal Vasko004d3152020-06-11 19:59:22 +02008421 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008422 LY_CHECK_GOTO(rc, cleanup);
8423
8424 /* ('=' / '!=' RelationalExpr)* */
8425 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008426 this_op = *tok_idx;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008427
Michal Vasko004d3152020-06-11 19:59:22 +02008428 assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL));
aPiecek8b0cc152021-05-31 16:40:31 +02008429 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008430 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008431 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008432
aPiecek8b0cc152021-05-31 16:40:31 +02008433 if (options & LYXP_SKIP_EXPR) {
8434 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008435 LY_CHECK_GOTO(rc, cleanup);
8436 continue;
8437 }
8438
8439 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008440 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008441 LY_CHECK_GOTO(rc, cleanup);
8442
8443 /* eval */
8444 if (options & LYXP_SCNODE_ALL) {
8445 warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]);
Michal Vasko004d3152020-06-11 19:59:22 +02008446 warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1);
8447 warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008448 lyxp_set_scnode_merge(set, &set2);
Michal Vasko1a09b212021-05-06 13:00:10 +02008449 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008450 } else {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008451 rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options);
8452 LY_CHECK_GOTO(rc, cleanup);
8453 }
8454 }
8455
8456cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008457 lyxp_set_free_content(&orig_set);
8458 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008459 return rc;
8460}
8461
8462/**
8463 * @brief Evaluate AndExpr. Logs directly on error.
8464 *
Michal Vaskod3678892020-05-21 10:06:58 +02008465 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008466 *
8467 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008468 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008469 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008470 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008471 * @param[in] options XPath options.
8472 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8473 */
8474static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008475eval_and_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008476{
8477 LY_ERR rc;
8478 struct lyxp_set orig_set, set2;
8479 uint16_t i;
8480
8481 assert(repeat);
8482
8483 set_init(&orig_set, set);
8484 set_init(&set2, set);
8485
8486 set_fill_set(&orig_set, set);
8487
Michal Vasko004d3152020-06-11 19:59:22 +02008488 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008489 LY_CHECK_GOTO(rc, cleanup);
8490
8491 /* cast to boolean, we know that will be the final result */
aPiecek8b0cc152021-05-31 16:40:31 +02008492 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008493 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008494 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008495 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008496 }
8497
8498 /* ('and' EqualityExpr)* */
8499 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008500 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
aPiecek8b0cc152021-05-31 16:40:31 +02008501 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || !set->val.bln ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008502 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008503 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008504
8505 /* lazy evaluation */
aPiecek8b0cc152021-05-31 16:40:31 +02008506 if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) {
8507 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008508 LY_CHECK_GOTO(rc, cleanup);
8509 continue;
8510 }
8511
8512 set_fill_set(&set2, &orig_set);
Michal Vasko004d3152020-06-11 19:59:22 +02008513 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008514 LY_CHECK_GOTO(rc, cleanup);
8515
8516 /* eval - just get boolean value actually */
8517 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008518 set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008519 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008520 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008521 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008522 set_fill_set(set, &set2);
8523 }
8524 }
8525
8526cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008527 lyxp_set_free_content(&orig_set);
8528 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008529 return rc;
8530}
8531
8532/**
8533 * @brief Evaluate OrExpr. Logs directly on error.
8534 *
Michal Vaskod3678892020-05-21 10:06:58 +02008535 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
Michal Vasko03ff5a72019-09-11 13:49:33 +02008536 *
8537 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008538 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008539 * @param[in] repeat How many times this expression is repeated.
aPiecek8b0cc152021-05-31 16:40:31 +02008540 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008541 * @param[in] options XPath options.
8542 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8543 */
8544static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008545eval_or_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008546{
8547 LY_ERR rc;
8548 struct lyxp_set orig_set, set2;
8549 uint16_t i;
8550
8551 assert(repeat);
8552
8553 set_init(&orig_set, set);
8554 set_init(&set2, set);
8555
8556 set_fill_set(&orig_set, set);
8557
Michal Vasko004d3152020-06-11 19:59:22 +02008558 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008559 LY_CHECK_GOTO(rc, cleanup);
8560
8561 /* cast to boolean, we know that will be the final result */
aPiecek8b0cc152021-05-31 16:40:31 +02008562 if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008563 set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008564 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008565 lyxp_set_cast(set, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008566 }
8567
8568 /* ('or' AndExpr)* */
8569 for (i = 0; i < repeat; ++i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008570 assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG);
aPiecek8b0cc152021-05-31 16:40:31 +02008571 LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || set->val.bln ? "skipped" : "parsed"),
Michal Vasko69730152020-10-09 16:30:07 +02008572 lyxp_print_token(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]);
Michal Vasko004d3152020-06-11 19:59:22 +02008573 ++(*tok_idx);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008574
8575 /* lazy evaluation */
aPiecek8b0cc152021-05-31 16:40:31 +02008576 if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) {
8577 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options | LYXP_SKIP_EXPR);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008578 LY_CHECK_GOTO(rc, cleanup);
8579 continue;
8580 }
8581
8582 set_fill_set(&set2, &orig_set);
8583 /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one),
8584 * but it does not matter */
Michal Vasko004d3152020-06-11 19:59:22 +02008585 rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008586 LY_CHECK_GOTO(rc, cleanup);
8587
8588 /* eval - just get boolean value actually */
8589 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vasko1a09b212021-05-06 13:00:10 +02008590 set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE);
Michal Vaskoecd62de2019-11-13 12:35:11 +01008591 lyxp_set_scnode_merge(set, &set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008592 } else {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008593 lyxp_set_cast(&set2, LYXP_SET_BOOLEAN);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008594 set_fill_set(set, &set2);
8595 }
8596 }
8597
8598cleanup:
Michal Vaskod3678892020-05-21 10:06:58 +02008599 lyxp_set_free_content(&orig_set);
8600 lyxp_set_free_content(&set2);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008601 return rc;
8602}
8603
8604/**
Michal Vasko004d3152020-06-11 19:59:22 +02008605 * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008606 *
8607 * @param[in] exp Parsed XPath expression.
Michal Vasko004d3152020-06-11 19:59:22 +02008608 * @param[in] tok_idx Position in the expression @p exp.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008609 * @param[in] etype Expression type to evaluate.
aPiecek8b0cc152021-05-31 16:40:31 +02008610 * @param[in,out] set Context and result set.
Michal Vasko03ff5a72019-09-11 13:49:33 +02008611 * @param[in] options XPath options.
8612 * @return LY_ERR (LY_EINCOMPLETE on unresolved when)
8613 */
8614static LY_ERR
Michal Vasko40308e72020-10-20 16:38:40 +02008615eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set,
8616 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008617{
8618 uint16_t i, count;
8619 enum lyxp_expr_type next_etype;
8620 LY_ERR rc;
8621
8622 /* process operator repeats */
Michal Vasko004d3152020-06-11 19:59:22 +02008623 if (!exp->repeat[*tok_idx]) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008624 next_etype = LYXP_EXPR_NONE;
8625 } else {
8626 /* find etype repeat */
Radek Krejci1e008d22020-08-17 11:37:37 +02008627 for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008628
8629 /* select one-priority lower because etype expression called us */
8630 if (i) {
Michal Vasko004d3152020-06-11 19:59:22 +02008631 next_etype = exp->repeat[*tok_idx][i - 1];
Michal Vasko03ff5a72019-09-11 13:49:33 +02008632 /* count repeats for that expression */
Radek Krejci1e008d22020-08-17 11:37:37 +02008633 for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {}
Michal Vasko03ff5a72019-09-11 13:49:33 +02008634 } else {
8635 next_etype = LYXP_EXPR_NONE;
8636 }
8637 }
8638
8639 /* decide what expression are we parsing based on the repeat */
8640 switch (next_etype) {
8641 case LYXP_EXPR_OR:
Michal Vasko004d3152020-06-11 19:59:22 +02008642 rc = eval_or_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008643 break;
8644 case LYXP_EXPR_AND:
Michal Vasko004d3152020-06-11 19:59:22 +02008645 rc = eval_and_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008646 break;
8647 case LYXP_EXPR_EQUALITY:
Michal Vasko004d3152020-06-11 19:59:22 +02008648 rc = eval_equality_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008649 break;
8650 case LYXP_EXPR_RELATIONAL:
Michal Vasko004d3152020-06-11 19:59:22 +02008651 rc = eval_relational_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008652 break;
8653 case LYXP_EXPR_ADDITIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008654 rc = eval_additive_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008655 break;
8656 case LYXP_EXPR_MULTIPLICATIVE:
Michal Vasko004d3152020-06-11 19:59:22 +02008657 rc = eval_multiplicative_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008658 break;
8659 case LYXP_EXPR_UNARY:
Michal Vasko004d3152020-06-11 19:59:22 +02008660 rc = eval_unary_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008661 break;
8662 case LYXP_EXPR_UNION:
Michal Vasko004d3152020-06-11 19:59:22 +02008663 rc = eval_union_expr(exp, tok_idx, count, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008664 break;
8665 case LYXP_EXPR_NONE:
Michal Vasko004d3152020-06-11 19:59:22 +02008666 rc = eval_path_expr(exp, tok_idx, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008667 break;
8668 default:
8669 LOGINT_RET(set->ctx);
8670 }
8671
8672 return rc;
8673}
8674
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008675/**
8676 * @brief Get root type.
8677 *
8678 * @param[in] ctx_node Context node.
8679 * @param[in] ctx_scnode Schema context node.
8680 * @param[in] options XPath options.
8681 * @return Root type.
8682 */
8683static enum lyxp_node_type
Radek Krejci1deb5be2020-08-26 16:43:36 +02008684lyxp_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 +01008685{
Michal Vasko6b26e742020-07-17 15:02:10 +02008686 const struct lysc_node *op;
8687
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008688 if (options & LYXP_SCNODE_ALL) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008689 /* schema */
Radek Krejci1e008d22020-08-17 11:37:37 +02008690 for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008691
8692 if (op || (options & LYXP_SCNODE)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008693 /* general root that can access everything */
8694 return LYXP_NODE_ROOT;
8695 } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) {
8696 /* root context node can access only config data (because we said so, it is unspecified) */
8697 return LYXP_NODE_ROOT_CONFIG;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008698 }
Michal Vasko6b26e742020-07-17 15:02:10 +02008699 return LYXP_NODE_ROOT;
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008700 }
8701
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008702 /* data */
Michal Vasko6b26e742020-07-17 15:02:10 +02008703 op = ctx_node ? ctx_node->schema : NULL;
Michal Vaskod989ba02020-08-24 10:59:24 +02008704 for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {}
Michal Vasko6b26e742020-07-17 15:02:10 +02008705
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008706 if (op || !(options & LYXP_SCHEMA)) {
8707 /* general root that can access everything */
8708 return LYXP_NODE_ROOT;
Christian Hoppsb6ecaea2021-02-06 09:45:38 -05008709 } else if (!ctx_node || !ctx_node->schema || (ctx_node->schema->flags & LYS_CONFIG_W)) {
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008710 /* root context node can access only config data (because we said so, it is unspecified) */
8711 return LYXP_NODE_ROOT_CONFIG;
8712 }
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008713 return LYXP_NODE_ROOT;
8714}
8715
Michal Vasko03ff5a72019-09-11 13:49:33 +02008716LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01008717lyxp_eval(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Radek Krejci8df109d2021-04-23 12:19:08 +02008718 LY_VALUE_FORMAT format, void *prefix_data, const struct lyd_node *ctx_node, const struct lyd_node *tree,
aPiecekfba75362021-10-07 12:39:48 +02008719 const struct lyxp_var *vars, struct lyxp_set *set, uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008720{
Michal Vasko004d3152020-06-11 19:59:22 +02008721 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008722 LY_ERR rc;
8723
Michal Vasko400e9672021-01-11 13:39:17 +01008724 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Radek Krejci8df109d2021-04-23 12:19:08 +02008725 if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008726 LOGARG(NULL, "Current module must be set if schema format is used.");
8727 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02008728 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008729
Michal Vaskod3bb12f2020-12-04 14:33:09 +01008730 if (tree) {
8731 /* adjust the pointer to be the first top-level sibling */
8732 while (tree->parent) {
8733 tree = lyd_parent(tree);
8734 }
8735 tree = lyd_first_sibling(tree);
8736 }
8737
Michal Vasko03ff5a72019-09-11 13:49:33 +02008738 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02008739 memset(set, 0, sizeof *set);
Michal Vaskod3678892020-05-21 10:06:58 +02008740 set->type = LYXP_SET_NODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008741 set->root_type = lyxp_get_root_type(ctx_node, NULL, options);
8742 set_insert_node(set, (struct lyd_node *)ctx_node, 0, ctx_node ? LYXP_NODE_ELEM : set->root_type, 0);
8743
Michal Vasko400e9672021-01-11 13:39:17 +01008744 set->ctx = (struct ly_ctx *)ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008745 set->cur_node = ctx_node;
8746 for (set->context_op = ctx_node ? ctx_node->schema : NULL;
Radek Krejci0f969882020-08-21 16:56:47 +02008747 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
8748 set->context_op = set->context_op->parent) {}
Michal Vaskof03ed032020-03-04 13:31:44 +01008749 set->tree = tree;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008750 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008751 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02008752 set->prefix_data = prefix_data;
aPiecekfba75362021-10-07 12:39:48 +02008753 set->vars = vars;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008754
Radek Krejciddace2c2021-01-08 11:30:56 +01008755 LOG_LOCSET(NULL, set->cur_node, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01008756
Michal Vasko03ff5a72019-09-11 13:49:33 +02008757 /* evaluate */
Michal Vasko004d3152020-06-11 19:59:22 +02008758 rc = eval_expr_select(exp, &tok_idx, 0, set, options);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008759 if (rc != LY_SUCCESS) {
Michal Vaskod3678892020-05-21 10:06:58 +02008760 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008761 }
8762
Radek Krejciddace2c2021-01-08 11:30:56 +01008763 LOG_LOCBACK(0, 1, 0, 0);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008764 return rc;
8765}
8766
8767#if 0
8768
8769/* full xml printing of set elements, not used currently */
8770
8771void
8772lyxp_set_print_xml(FILE *f, struct lyxp_set *set)
8773{
8774 uint32_t i;
8775 char *str_num;
8776 struct lyout out;
8777
8778 memset(&out, 0, sizeof out);
8779
8780 out.type = LYOUT_STREAM;
8781 out.method.f = f;
8782
8783 switch (set->type) {
8784 case LYXP_SET_EMPTY:
Michal Vasko5233e962020-08-14 14:26:20 +02008785 ly_print_(&out, "Empty XPath set\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008786 break;
8787 case LYXP_SET_BOOLEAN:
Michal Vasko5233e962020-08-14 14:26:20 +02008788 ly_print_(&out, "Boolean XPath set:\n");
8789 ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008790 break;
8791 case LYXP_SET_STRING:
Michal Vasko5233e962020-08-14 14:26:20 +02008792 ly_print_(&out, "String XPath set:\n");
8793 ly_print_(&out, "\"%s\"\n\n", set->value.str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008794 break;
8795 case LYXP_SET_NUMBER:
Michal Vasko5233e962020-08-14 14:26:20 +02008796 ly_print_(&out, "Number XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008797
8798 if (isnan(set->value.num)) {
8799 str_num = strdup("NaN");
8800 } else if ((set->value.num == 0) || (set->value.num == -0.0f)) {
8801 str_num = strdup("0");
8802 } else if (isinf(set->value.num) && !signbit(set->value.num)) {
8803 str_num = strdup("Infinity");
8804 } else if (isinf(set->value.num) && signbit(set->value.num)) {
8805 str_num = strdup("-Infinity");
8806 } else if ((long long)set->value.num == set->value.num) {
8807 if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) {
8808 str_num = NULL;
8809 }
8810 } else {
8811 if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) {
8812 str_num = NULL;
8813 }
8814 }
8815 if (!str_num) {
8816 LOGMEM;
8817 return;
8818 }
Michal Vasko5233e962020-08-14 14:26:20 +02008819 ly_print_(&out, "%s\n\n", str_num);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008820 free(str_num);
8821 break;
8822 case LYXP_SET_NODE_SET:
Michal Vasko5233e962020-08-14 14:26:20 +02008823 ly_print_(&out, "Node XPath set:\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008824
8825 for (i = 0; i < set->used; ++i) {
Michal Vasko5233e962020-08-14 14:26:20 +02008826 ly_print_(&out, "%d. ", i + 1);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008827 switch (set->node_type[i]) {
8828 case LYXP_NODE_ROOT_ALL:
Michal Vasko5233e962020-08-14 14:26:20 +02008829 ly_print_(&out, "ROOT all\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008830 break;
8831 case LYXP_NODE_ROOT_CONFIG:
Michal Vasko5233e962020-08-14 14:26:20 +02008832 ly_print_(&out, "ROOT config\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008833 break;
8834 case LYXP_NODE_ROOT_STATE:
Michal Vasko5233e962020-08-14 14:26:20 +02008835 ly_print_(&out, "ROOT state\n\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008836 break;
8837 case LYXP_NODE_ROOT_NOTIF:
Michal Vasko5233e962020-08-14 14:26:20 +02008838 ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008839 break;
8840 case LYXP_NODE_ROOT_RPC:
Michal Vasko5233e962020-08-14 14:26:20 +02008841 ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008842 break;
8843 case LYXP_NODE_ROOT_OUTPUT:
Michal Vasko5233e962020-08-14 14:26:20 +02008844 ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008845 break;
8846 case LYXP_NODE_ELEM:
Michal Vasko5233e962020-08-14 14:26:20 +02008847 ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008848 xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT);
Michal Vasko5233e962020-08-14 14:26:20 +02008849 ly_print_(&out, "\n");
Michal Vasko03ff5a72019-09-11 13:49:33 +02008850 break;
8851 case LYXP_NODE_TEXT:
Michal Vasko5233e962020-08-14 14:26:20 +02008852 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 +02008853 break;
8854 case LYXP_NODE_ATTR:
Michal Vasko5233e962020-08-14 14:26:20 +02008855 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 +02008856 break;
8857 }
8858 }
8859 break;
8860 }
8861}
8862
8863#endif
8864
8865LY_ERR
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008866lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008867{
8868 long double num;
8869 char *str;
8870 LY_ERR rc;
8871
8872 if (!set || (set->type == target)) {
8873 return LY_SUCCESS;
8874 }
8875
8876 /* it's not possible to convert anything into a node set */
Michal Vaskod3678892020-05-21 10:06:58 +02008877 assert(target != LYXP_SET_NODE_SET);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008878
8879 if (set->type == LYXP_SET_SCNODE_SET) {
Michal Vaskod3678892020-05-21 10:06:58 +02008880 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008881 return LY_EINVAL;
8882 }
8883
8884 /* to STRING */
Michal Vaskod3678892020-05-21 10:06:58 +02008885 if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008886 switch (set->type) {
8887 case LYXP_SET_NUMBER:
8888 if (isnan(set->val.num)) {
8889 set->val.str = strdup("NaN");
8890 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8891 } else if ((set->val.num == 0) || (set->val.num == -0.0f)) {
8892 set->val.str = strdup("0");
8893 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8894 } else if (isinf(set->val.num) && !signbit(set->val.num)) {
8895 set->val.str = strdup("Infinity");
8896 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8897 } else if (isinf(set->val.num) && signbit(set->val.num)) {
8898 set->val.str = strdup("-Infinity");
8899 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1);
8900 } else if ((long long)set->val.num == set->val.num) {
8901 if (asprintf(&str, "%lld", (long long)set->val.num) == -1) {
8902 LOGMEM_RET(set->ctx);
8903 }
8904 set->val.str = str;
8905 } else {
8906 if (asprintf(&str, "%03.1Lf", set->val.num) == -1) {
8907 LOGMEM_RET(set->ctx);
8908 }
8909 set->val.str = str;
8910 }
8911 break;
8912 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008913 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008914 set->val.str = strdup("true");
8915 } else {
8916 set->val.str = strdup("false");
8917 }
8918 LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM);
8919 break;
8920 case LYXP_SET_NODE_SET:
Michal Vasko03ff5a72019-09-11 13:49:33 +02008921 /* we need the set sorted, it affects the result */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008922 assert(!set_sort(set));
Michal Vasko03ff5a72019-09-11 13:49:33 +02008923
Michal Vasko5e0e6eb2019-11-06 15:47:50 +01008924 rc = cast_node_set_to_string(set, &str);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008925 LY_CHECK_RET(rc);
Michal Vaskod3678892020-05-21 10:06:58 +02008926 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008927 set->val.str = str;
8928 break;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008929 default:
8930 LOGINT_RET(set->ctx);
8931 }
8932 set->type = LYXP_SET_STRING;
8933 }
8934
8935 /* to NUMBER */
8936 if (target == LYXP_SET_NUMBER) {
8937 switch (set->type) {
8938 case LYXP_SET_STRING:
8939 num = cast_string_to_number(set->val.str);
Michal Vaskod3678892020-05-21 10:06:58 +02008940 lyxp_set_free_content(set);
Michal Vasko03ff5a72019-09-11 13:49:33 +02008941 set->val.num = num;
8942 break;
8943 case LYXP_SET_BOOLEAN:
Michal Vasko004d3152020-06-11 19:59:22 +02008944 if (set->val.bln) {
Michal Vasko03ff5a72019-09-11 13:49:33 +02008945 set->val.num = 1;
8946 } else {
8947 set->val.num = 0;
8948 }
8949 break;
8950 default:
8951 LOGINT_RET(set->ctx);
8952 }
8953 set->type = LYXP_SET_NUMBER;
8954 }
8955
8956 /* to BOOLEAN */
8957 if (target == LYXP_SET_BOOLEAN) {
8958 switch (set->type) {
8959 case LYXP_SET_NUMBER:
8960 if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) {
Michal Vasko004d3152020-06-11 19:59:22 +02008961 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008962 } else {
Michal Vasko004d3152020-06-11 19:59:22 +02008963 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008964 }
8965 break;
8966 case LYXP_SET_STRING:
8967 if (set->val.str[0]) {
Michal Vaskod3678892020-05-21 10:06:58 +02008968 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008969 set->val.bln = 1;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008970 } else {
Michal Vaskod3678892020-05-21 10:06:58 +02008971 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008972 set->val.bln = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02008973 }
8974 break;
8975 case LYXP_SET_NODE_SET:
Michal Vaskod3678892020-05-21 10:06:58 +02008976 if (set->used) {
8977 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008978 set->val.bln = 1;
Michal Vaskod3678892020-05-21 10:06:58 +02008979 } else {
8980 lyxp_set_free_content(set);
Michal Vasko004d3152020-06-11 19:59:22 +02008981 set->val.bln = 0;
Michal Vaskod3678892020-05-21 10:06:58 +02008982 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02008983 break;
8984 default:
8985 LOGINT_RET(set->ctx);
8986 }
8987 set->type = LYXP_SET_BOOLEAN;
8988 }
8989
Michal Vasko03ff5a72019-09-11 13:49:33 +02008990 return LY_SUCCESS;
8991}
8992
8993LY_ERR
Michal Vasko400e9672021-01-11 13:39:17 +01008994lyxp_atomize(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Radek Krejci8df109d2021-04-23 12:19:08 +02008995 LY_VALUE_FORMAT format, void *prefix_data, const struct lysc_node *ctx_scnode, struct lyxp_set *set,
Michal Vasko400e9672021-01-11 13:39:17 +01008996 uint32_t options)
Michal Vasko03ff5a72019-09-11 13:49:33 +02008997{
Radek Krejci2efc45b2020-12-22 16:25:44 +01008998 LY_ERR ret;
Michal Vasko004d3152020-06-11 19:59:22 +02008999 uint16_t tok_idx = 0;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009000
Michal Vasko400e9672021-01-11 13:39:17 +01009001 LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL);
Radek Krejci8df109d2021-04-23 12:19:08 +02009002 if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009003 LOGARG(NULL, "Current module must be set if schema format is used.");
9004 return LY_EINVAL;
Michal Vasko004d3152020-06-11 19:59:22 +02009005 }
Michal Vasko03ff5a72019-09-11 13:49:33 +02009006
9007 /* prepare set for evaluation */
Michal Vasko03ff5a72019-09-11 13:49:33 +02009008 memset(set, 0, sizeof *set);
9009 set->type = LYXP_SET_SCNODE_SET;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009010 set->root_type = lyxp_get_root_type(NULL, ctx_scnode, options);
9011 LY_CHECK_RET(lyxp_set_scnode_insert_node(set, ctx_scnode, ctx_scnode ? LYXP_NODE_ELEM : set->root_type, NULL));
Radek Krejcif13b87b2020-12-01 22:02:17 +01009012 set->val.scnodes[0].in_ctx = LYXP_SET_SCNODE_START;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009013
Michal Vasko400e9672021-01-11 13:39:17 +01009014 set->ctx = (struct ly_ctx *)ctx;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009015 set->cur_scnode = ctx_scnode;
Michal Vasko6b26e742020-07-17 15:02:10 +02009016 for (set->context_op = ctx_scnode;
Radek Krejci0f969882020-08-21 16:56:47 +02009017 set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF));
9018 set->context_op = set->context_op->parent) {}
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009019 set->cur_mod = cur_mod;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009020 set->format = format;
Michal Vasko5d24f6c2020-10-13 13:49:06 +02009021 set->prefix_data = prefix_data;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009022
Radek Krejciddace2c2021-01-08 11:30:56 +01009023 LOG_LOCSET(set->cur_scnode, NULL, NULL, NULL);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009024
Michal Vasko03ff5a72019-09-11 13:49:33 +02009025 /* evaluate */
Radek Krejci2efc45b2020-12-22 16:25:44 +01009026 ret = eval_expr_select(exp, &tok_idx, 0, set, options);
9027
Radek Krejciddace2c2021-01-08 11:30:56 +01009028 LOG_LOCBACK(1, 0, 0, 0);
Radek Krejci2efc45b2020-12-22 16:25:44 +01009029 return ret;
Michal Vasko03ff5a72019-09-11 13:49:33 +02009030}
Michal Vaskod43d71a2020-08-07 14:54:58 +02009031
9032API const char *
9033lyxp_get_expr(const struct lyxp_expr *path)
9034{
9035 if (!path) {
9036 return NULL;
9037 }
9038
9039 return path->expr;
9040}